aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris2019-09-03 21:01:53 +0200
committerJoris2019-09-03 21:04:40 +0200
commit5cedcecd6ae31e2485dcab2ddd74c74a4779545d (patch)
treebb54b8f1bbf1f5baaf94c28e4443fb17321d5fc7
parent8d14cb80170a8a15a0ced13bc7fe5cd16b908974 (diff)
downloadad-listener-5cedcecd6ae31e2485dcab2ddd74c74a4779545d.tar.gz
ad-listener-5cedcecd6ae31e2485dcab2ddd74c74a4779545d.tar.bz2
ad-listener-5cedcecd6ae31e2485dcab2ddd74c74a4779545d.zip
Make LBC to work
Use request headers to simulate a normal browser
-rw-r--r--.envrc1
-rw-r--r--.gitignore3
-rw-r--r--.tmuxinator.yml10
-rw-r--r--Makefile21
-rw-r--r--README.md4
-rw-r--r--ad-listener.cabal3
-rw-r--r--application.conf4
-rw-r--r--shell.nix (renamed from default.nix)1
-rw-r--r--src/executable/haskell/Conf.hs6
-rw-r--r--src/executable/haskell/Main.hs7
-rw-r--r--src/executable/haskell/Service/AdListener.hs64
-rw-r--r--src/executable/haskell/Service/MailService.hs29
-rw-r--r--src/lib/haskell/FetchAd.hs20
-rw-r--r--src/lib/haskell/Parser/LeboncoinParser.hs17
-rw-r--r--src/lib/haskell/Utils/HTTP.hs52
-rw-r--r--src/test/haskell/Ads.hs73
-rw-r--r--src/test/haskell/Main.hs69
-rw-r--r--src/test/resources/leboncoin.html7004
18 files changed, 322 insertions, 7066 deletions
diff --git a/.envrc b/.envrc
new file mode 100644
index 0000000..051d09d
--- /dev/null
+++ b/.envrc
@@ -0,0 +1 @@
+eval "$(lorri direnv)"
diff --git a/.gitignore b/.gitignore
index 3b450ca..f8908b1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
ad-listener.nix
-dist/
+dist-newstyle/
local.conf
+.ghc.environment.*
diff --git a/.tmuxinator.yml b/.tmuxinator.yml
index 9b60f7f..94a744e 100644
--- a/.tmuxinator.yml
+++ b/.tmuxinator.yml
@@ -1,8 +1,8 @@
name: ad-listener
+startup_window: app
windows:
- - main:
- layout: fff4,119x58,0,0{94x58,0,0,0,24x58,95,0,1}
- panes:
- - # Empty
- - make clean build watch
+ - console:
+ - # Empty
+ - app:
+ - make clean watch
diff --git a/Makefile b/Makefile
index f8eeb77..33b5b20 100644
--- a/Makefile
+++ b/Makefile
@@ -2,31 +2,28 @@ all: build
# Dev commands
-dev-start:
+start:
@nix-shell --command "tmuxinator local"
-dev-stop:
+stop:
@nix-shell --command "tmuxinator stop ad-listener"
# Other commands
clean:
- @cabal clean > /dev/null
+ @cabal new-clean > /dev/null
-install:
- @cabal2nix --shell . > ad-listener.nix
-
-watch:
- @make install && nix-shell ad-listener.nix --run "nodemon --watch src --delay 0.2 -e hs,conf --exec 'clear && make build-and-launch'"
+watch: build
+ @nodemon --watch src --delay 0.2 -e hs,conf --exec 'clear && make build-and-launch'
build-and-launch:
- @(pkill ad-listener || true) && (cabal run || true)
+ @(pkill ad-listener || true) && (nix-shell -p zlib --command "cabal new-run ad-listener" || true)
build:
- @make install && nix-shell ad-listener.nix --run "cabal build || true"
+ @nix-shell -p zlib --command "cabal new-build"
repl:
- @make install && nix-shell ad-listener.nix --run "cabal repl"
+ @cabal new-repl
test:
- @make install && nix-shell ad-listener.nix --run "cabal test"
+ @nix-shell -p zlib --command "cabal new-test"
diff --git a/README.md b/README.md
index b9f3dc2..7555455 100644
--- a/README.md
+++ b/README.md
@@ -11,8 +11,8 @@ Then, it send a mail whenever a new ad come up.
## Getting started
1. Install [nix](https://nixos.org/nix/),
-2. launch `make dev-start`,
-3. later, stop the project with `make dev-stop`.
+2. launch `make start`,
+3. later, stop the project with `make stop`.
## Build executable
diff --git a/ad-listener.cabal b/ad-listener.cabal
index 793fd5a..65da10b 100644
--- a/ad-listener.cabal
+++ b/ad-listener.cabal
@@ -22,6 +22,7 @@ Library
, http-conduit
, tagsoup
, text
+ , http-types
Exposed-modules:
FetchAd
@@ -57,6 +58,7 @@ Executable ad-listener
, tagsoup
, text
, time
+ , http-conduit
Other-modules:
Conf
@@ -81,6 +83,7 @@ Test-suite test
, hspec
, ad-listener
, text
+ , http-conduit
Other-modules:
Ads
diff --git a/application.conf b/application.conf
index c7fc10c..f470b7b 100644
--- a/application.conf
+++ b/application.conf
@@ -6,8 +6,8 @@ mailFrom = "ad-listener@mail.com"
mailTo = []
-listenInterval = 1 minute
+mailMock = False
-devMode = False
+listenInterval = 20 minute
importMaybe "local.conf"
diff --git a/default.nix b/shell.nix
index 9758361..0585615 100644
--- a/default.nix
+++ b/shell.nix
@@ -3,7 +3,6 @@ with import <nixpkgs> {}; {
name = "env";
buildInputs = with nodePackages; with haskellPackages; [
cabal-install
- cabal2nix
nodemon
stylish-haskell
tmux
diff --git a/src/executable/haskell/Conf.hs b/src/executable/haskell/Conf.hs
index e6bd4ca..df26ea0 100644
--- a/src/executable/haskell/Conf.hs
+++ b/src/executable/haskell/Conf.hs
@@ -16,8 +16,8 @@ data Conf = Conf
, seLogerUrls :: [URL]
, mailFrom :: Text
, mailTo :: [Text]
+ , mailMock :: Bool
, listenInterval :: NominalDiffTime
- , devMode :: Bool
} deriving Show
parse :: FilePath -> IO Conf
@@ -31,8 +31,8 @@ parse path = do
Conf.lookup "seLogerUrls" conf <*>
Conf.lookup "mailFrom" conf <*>
Conf.lookup "mailTo" conf <*>
- Conf.lookup "listenInterval" conf <*>
- Conf.lookup "devMode" conf
+ Conf.lookup "mailMock" conf <*>
+ Conf.lookup "listenInterval" conf
)
case conf of
Left msg -> error (T.unpack msg)
diff --git a/src/executable/haskell/Main.hs b/src/executable/haskell/Main.hs
index fa1388c..d082b94 100644
--- a/src/executable/haskell/Main.hs
+++ b/src/executable/haskell/Main.hs
@@ -2,10 +2,13 @@ module Main
( main
) where
+import qualified Network.HTTP.Conduit as H
+
import qualified Conf
-import qualified Service.AdListener as AdListener
+import qualified Service.AdListener as AdListener
main :: IO ()
main = do
conf <- Conf.parse "application.conf"
- AdListener.start conf
+ manager <- H.newManager H.tlsManagerSettings
+ AdListener.start conf manager
diff --git a/src/executable/haskell/Service/AdListener.hs b/src/executable/haskell/Service/AdListener.hs
index bbd06d9..5cf26d1 100644
--- a/src/executable/haskell/Service/AdListener.hs
+++ b/src/executable/haskell/Service/AdListener.hs
@@ -2,62 +2,64 @@ module Service.AdListener
( start
) where
-import Control.Concurrent (threadDelay)
-import qualified Data.Text.IO as T
-import Prelude hiding (error)
+import Control.Concurrent (threadDelay)
+import qualified Data.Text as T
+import qualified Data.Text.IO as T
+import Network.HTTP.Conduit (Manager)
+import Prelude hiding (error)
-import Conf (Conf)
+import Conf (Conf)
import qualified Conf
import qualified FetchAd
-import Model.Ad (Ad)
-import qualified Model.Ad as Ad
-import Model.Mail (Mail (Mail))
-import Model.URL (URL)
-import qualified Service.MailService as MailService
-import qualified Utils.Time as TimeUtils
-import qualified View.Ad as Ad
+import Model.Ad (Ad)
+import qualified Model.Ad as Ad
+import Model.Mail (Mail (Mail))
+import Model.URL (URL)
+import qualified Service.MailService as MailService
+import qualified Utils.Time as TimeUtils
+import qualified View.Ad as Ad
-start :: Conf -> IO ()
-start conf = do
- ads <- fetchAds conf
+start :: Conf -> Manager -> IO ()
+start conf manager = do
+ ads <- fetchAds conf manager
let newURLs = map Ad.url ads
T.putStrLn "Listening to new ads…"
waitListenInterval conf
- listenToNewAdsWithViewedURLs conf newURLs
+ listenToNewAdsWithViewedURLs conf manager newURLs
-listenToNewAdsWithViewedURLs :: Conf -> [URL] -> IO ()
-listenToNewAdsWithViewedURLs conf viewedURLs = do
- ads <- fetchAds conf
+listenToNewAdsWithViewedURLs :: Conf -> Manager -> [URL] -> IO ()
+listenToNewAdsWithViewedURLs conf manager viewedURLs = do
+ ads <- fetchAds conf manager
let (newURLs, newAds) = Ad.getNewAds viewedURLs ads
time <- TimeUtils.getCurrentFormattedTime
if not (null newAds)
then
do
_ <- T.putStrLn (Ad.renderConsoleAds time newAds)
- if Conf.devMode conf
- then return ()
- else sendMail conf newAds
+ sendMail conf newAds
else
return ()
waitListenInterval conf
- listenToNewAdsWithViewedURLs conf (viewedURLs ++ newURLs)
+ listenToNewAdsWithViewedURLs conf manager (viewedURLs ++ newURLs)
-fetchAds :: Conf -> IO [Ad]
-fetchAds conf = do
- leboncoinAds <- FetchAd.leboncoin (Conf.leboncoinUrls conf)
- ouestFranceAds <- FetchAd.ouestFrance (Conf.ouestFranceUrls conf)
- seLogerAds <- FetchAd.seLoger (Conf.seLogerUrls conf)
+fetchAds :: Conf -> Manager -> IO [Ad]
+fetchAds conf manager = do
+ leboncoinAds <- FetchAd.leboncoin manager (Conf.leboncoinUrls conf)
+ ouestFranceAds <- FetchAd.ouestFrance manager (Conf.ouestFranceUrls conf)
+ seLogerAds <- FetchAd.seLoger manager (Conf.seLogerUrls conf)
let results = leboncoinAds ++ ouestFranceAds ++ seLogerAds
- if null results
- then T.putStrLn "Parsed 0 results!"
- else return ()
+ T.putStrLn . T.concat $
+ [ "Parsed "
+ , T.pack . show $ length results
+ , " results"
+ ]
return results
sendMail :: Conf -> [Ad] -> IO ()
sendMail conf ads =
let (title, plainBody) = Ad.renderAds ads
mail = Mail (Conf.mailFrom conf) (Conf.mailTo conf) title plainBody
- in MailService.send mail >> return ()
+ in MailService.send (Conf.mailMock conf) mail >> return ()
waitListenInterval :: Conf -> IO ()
waitListenInterval = threadDelay . (*) 1000000 . round . Conf.listenInterval
diff --git a/src/executable/haskell/Service/MailService.hs b/src/executable/haskell/Service/MailService.hs
index 955dea1..cb61c47 100644
--- a/src/executable/haskell/Service/MailService.hs
+++ b/src/executable/haskell/Service/MailService.hs
@@ -4,9 +4,9 @@ module Service.MailService
import Control.Arrow (left)
import Control.Exception (SomeException, try)
-import Data.Either (isLeft)
import Data.Text (Text)
import qualified Data.Text as T
+import qualified Data.Text.IO as T
import qualified Data.Text.Lazy as LT
import Data.Text.Lazy.Builder (fromText, toLazyText)
import qualified Network.Mail.Mime as Mime
@@ -14,13 +14,26 @@ import qualified Network.Mail.Mime as Mime
import Model.Mail (Mail)
import qualified Model.Mail as Mail
-send :: Mail -> IO (Either Text ())
-send mail = do
- result <- left (T.pack . show) <$> (try (Mime.renderSendMail . getMimeMail $ mail) :: IO (Either SomeException ()))
- if isLeft result
- then putStrLn ("Error sending the following email:" ++ (show mail))
- else return ()
- return result
+send :: Bool -> Mail -> IO (Either Text ())
+send isMock mail =
+ if isMock then do
+ putStrLn $ "MOCK sending mail " ++ (show mail)
+ return . Right $ ()
+ else do
+ result <-
+ left (T.pack . show) <$>
+ (try (Mime.renderSendMail . getMimeMail $ mail) :: IO (Either SomeException ()))
+ case result of
+ Left err ->
+ T.putStrLn . T.concat $
+ [ "Error sending the following email ("
+ , T.pack . show $ mail
+ , ":\n"
+ , err
+ ]
+ Right _ ->
+ return ()
+ return result
getMimeMail :: Mail -> Mime.Mail
getMimeMail mail =
diff --git a/src/lib/haskell/FetchAd.hs b/src/lib/haskell/FetchAd.hs
index a206181..1708fe4 100644
--- a/src/lib/haskell/FetchAd.hs
+++ b/src/lib/haskell/FetchAd.hs
@@ -5,7 +5,7 @@ module FetchAd
) where
import Data.Either (rights)
-import Data.Text.Encoding as T
+import Network.HTTP.Conduit (Manager)
import Model.Ad (Ad)
import Model.URL (URL)
@@ -14,23 +14,23 @@ import qualified Parser.OuestFranceParser as OuestFranceParser
import qualified Parser.SeLogerParser as SeLogerParser
import qualified Utils.HTTP as HTTP
-leboncoin :: [URL] -> IO [Ad]
-leboncoin urls =
+leboncoin :: Manager -> [URL] -> IO [Ad]
+leboncoin manager urls =
fmap (concat . map LeboncoinParser.parse . rights)
. sequence
- . map (HTTP.get T.decodeLatin1)
+ . map (HTTP.get manager)
$ urls
-ouestFrance :: [URL] -> IO [Ad]
-ouestFrance urls =
+ouestFrance :: Manager -> [URL] -> IO [Ad]
+ouestFrance manager urls =
fmap (concat . map OuestFranceParser.parse . rights)
. sequence
- . map (HTTP.get T.decodeUtf8)
+ . map (HTTP.get manager)
$ urls
-seLoger :: [URL] -> IO [Ad]
-seLoger urls =
+seLoger :: Manager -> [URL] -> IO [Ad]
+seLoger manager urls =
fmap (concat . map SeLogerParser.parse . rights)
. sequence
- . map (HTTP.get T.decodeUtf8)
+ . map (HTTP.get manager)
$ urls
diff --git a/src/lib/haskell/Parser/LeboncoinParser.hs b/src/lib/haskell/Parser/LeboncoinParser.hs
index 77213cb..99d8116 100644
--- a/src/lib/haskell/Parser/LeboncoinParser.hs
+++ b/src/lib/haskell/Parser/LeboncoinParser.hs
@@ -11,14 +11,19 @@ import Model.Ad (Ad (Ad))
import Parser.Utils
parse :: Text -> [Ad]
-parse page =
- catMaybes . fmap parseAd $ partitions (~== (T.unpack "<a>")) tags
- where tags = getTagsBetween "<li itemtype=http://schema.org/Offer>" "<div class=information-immo_content>" (parseTags page)
+parse =
+ catMaybes
+ . fmap parseAd
+ . partitions (~== (T.unpack "<li>"))
+ . parseTags
parseAd :: [Tag Text] -> Maybe Ad
parseAd tags = do
- name <- getTagTextAfter "<h2 class=item_title>" tags
- location <- getTagAttribute "<meta itemprop=address>" "content" tags
- let price = getTagTextAfter "<h3 class=item_price>" tags
+ name <- getTagTextAfter "<span data-qa-id=aditem_title>" tags
+ location <- getTagTextAfter "<p data-qa-id=aditem_location>" tags
+ let price =
+ case getTagsBetween "<span itemprop=priceCurrency>" "</span>" tags of
+ [] -> Nothing
+ xs -> Just $ innerText xs
url <- getTagAttribute "<a>" "href" tags
return (Ad name location price (T.concat ["https:", url]))
diff --git a/src/lib/haskell/Utils/HTTP.hs b/src/lib/haskell/Utils/HTTP.hs
index 87635ce..9bcf5f0 100644
--- a/src/lib/haskell/Utils/HTTP.hs
+++ b/src/lib/haskell/Utils/HTTP.hs
@@ -2,21 +2,47 @@ module Utils.HTTP
( get
) where
-import Control.Exception (SomeException, try)
-import Data.ByteString (ByteString)
-import qualified Data.ByteString.Lazy as BS
-import Data.Text (Text)
-import qualified Data.Text as T
-import Network.HTTP.Conduit
+import qualified Data.ByteString.Lazy as BS
+import Data.Text (Text)
+import qualified Data.Text as T
+import Data.Text.Encoding as T
+import Data.Text.IO as T
+import Network.HTTP.Conduit (Manager)
+import qualified Network.HTTP.Conduit as H
+import qualified Network.HTTP.Simple as HS
+import qualified Network.HTTP.Types.Status as Status
import Model.URL
-get :: (ByteString -> Text) -> URL -> IO (Either Text Text)
-get decode url = mapLeft (T.pack . show) <$> (try (unsafeGetPage decode url) :: IO (Either SomeException Text))
+get :: Manager -> URL -> IO (Either Text Text)
+get manager url = do
+ request <- H.parseRequest (T.unpack url)
-unsafeGetPage :: (ByteString -> Text) -> URL -> IO Text
-unsafeGetPage decode url = (decode . BS.toStrict) <$> simpleHttp (T.unpack url)
+ response <- H.httpLbs (HS.setRequestHeaders requestHeaders request) manager
+ let body = T.decodeUtf8 . BS.toStrict . H.responseBody $ response
+ let statusCode = Status.statusCode . H.responseStatus $ response
-mapLeft :: (a -> c) -> Either a b -> Either c b
-mapLeft f (Left l) = Left (f l)
-mapLeft _ (Right r) = (Right r)
+ if statusCode >= 200 && statusCode < 300 then
+ return . Right $ body
+ else do
+ T.putStrLn . T.concat $
+ [ "Got status "
+ , T.pack . show $ statusCode
+ , " while fetching "
+ , url
+ , ":\n"
+ , body
+ ]
+ return . Left $ body
+
+ where
+ requestHeaders =
+ [ ("User-Agent", "Mozilla/5.0 (X11; Linux x86_64; rv:69.0) Gecko/20100101 Firefox/69.0")
+ , ("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
+ , ("Accept-Language", "en-US,en;fr;q=0.5")
+ , ("Accept-Encoding", "gzip, deflate, br")
+ , ("Referer", "https://duckduckgo.com/")
+ , ("DNT", "1")
+ , ("Connection", "keep-alive")
+ , ("Upgrade-Insecure-Requests", "1")
+ ]
diff --git a/src/test/haskell/Ads.hs b/src/test/haskell/Ads.hs
index 85a5471..fc934e1 100644
--- a/src/test/haskell/Ads.hs
+++ b/src/test/haskell/Ads.hs
@@ -8,41 +8,44 @@ import Model.Ad (Ad (..))
leboncoin :: [Ad]
leboncoin =
- [ Ad {name = "Chambre style hotel", location = "Dinan", price = Just "265 €", url = "https://www.leboncoin.fr/locations/1450271298.htm?ca=6_s"}
- , Ad {name = "Centre ville", location = "Brest", price = Just "420 €", url = "https://www.leboncoin.fr/locations/1450271056.htm?ca=6_s"}
- , Ad {name = "T3, Morlaix proche centre ville et port plaisance", location = "Morlaix", price = Just "395 €", url = "https://www.leboncoin.fr/locations/1407544500.htm?ca=6_s"}
- , Ad {name = "Appartement meuble", location = "Rennes", price = Just "565 €", url = "https://www.leboncoin.fr/locations/1377975959.htm?ca=6_s"}
- , Ad {name = "A louer T3", location = "La Chapelle-Janson", price = Just "420 €", url = "https://www.leboncoin.fr/locations/1450270098.htm?ca=6_s"}
- , Ad {name = "locations garage / garde meuble", location = "Landerneau", price = Just "50 €", url = "https://www.leboncoin.fr/locations/1450174538.htm?ca=6_s"}
- , Ad {name = "Studio meublé", location = "Lanester", price = Just "290 €", url = "https://www.leboncoin.fr/locations/1450268170.htm?ca=6_s"}
- , Ad {name = "Ergué-Gabéric - Maison - 3 chambres -", location = "Ergué-Gabéric", price = Just "655 €", url = "https://www.leboncoin.fr/locations/1450267530.htm?ca=6_s"}
- , Ad {name = "Studio meublé à 2 mn de la gare", location = "Rennes", price = Just "475 €", url = "https://www.leboncoin.fr/locations/1450267333.htm?ca=6_s"}
- , Ad {name = "Chambre à louer chez l,habitant", location = "Rennes", price = Just "450 €", url = "https://www.leboncoin.fr/locations/1450266273.htm?ca=6_s"}
- , Ad {name = "Appartement 3 pièces 63 m\178", location = "Brest", price = Just "600 €", url = "https://www.leboncoin.fr/locations/1426927284.htm?ca=6_s"}
- , Ad {name = "recherche location", location = "Plaintel", price = Just "550 €", url = "https://www.leboncoin.fr/locations/1450265866.htm?ca=6_s"}
- , Ad {name = "Studio rénové - Centre Ville Lorient", location = "Lorient", price = Just "360 €", url = "https://www.leboncoin.fr/locations/1450265154.htm?ca=6_s"}
- , Ad {name = "Centre historique, t2 meuble", location = "Vannes", price = Just "440 €", url = "https://www.leboncoin.fr/locations/1450263864.htm?ca=6_s"}
- , Ad {name = "appartement t3 parking privé", location = "Pontrieux", price = Just "390 €", url = "https://www.leboncoin.fr/locations/1450251207.htm?ca=6_s"}
- , Ad {name = "T1 Bis espace couchage indépendant", location = "Brest", price = Just "360 €", url = "https://www.leboncoin.fr/locations/1450263863.htm?ca=6_s"}
- , Ad {name = "Grand T2 boulevard Gambetta", location = "Brest", price = Just "400 €", url = "https://www.leboncoin.fr/locations/1450263306.htm?ca=6_s"}
- , Ad {name = "chambre meublée", location = "Bourg-des-Comptes", price = Just "300 €", url = "https://www.leboncoin.fr/locations/1450246530.htm?ca=6_s"}
- , Ad {name = "Un studio de charme au centre de Landerneau", location = "Landerneau", price = Just "310 €", url = "https://www.leboncoin.fr/locations/1433376198.htm?ca=6_s"}
- , Ad {name = "Appartement T2 plein centre.", location = "Pluméliau", price = Just "385 €", url = "https://www.leboncoin.fr/locations/1450262744.htm?ca=6_s"}
- , Ad {name = "Recherche l'appartement parfait", location = "Rennes", price = Just "360 €", url = "https://www.leboncoin.fr/locations/1450260894.htm?ca=6_s"}
- , Ad {name = "Location appartement meuble", location = "Saint-Malo", price = Just "510 €", url = "https://www.leboncoin.fr/locations/1421964890.htm?ca=6_s"}
- , Ad {name = "Maison neuve Lambezelec", location = "Plabennec", price = Just "900 €", url = "https://www.leboncoin.fr/locations/1450259912.htm?ca=6_s"}
- , Ad {name = "Chambre kitchenette chez l'habitant", location = "Brest", price = Just "320 €", url = "https://www.leboncoin.fr/locations/1450258838.htm?ca=6_s"}
- , Ad {name = "Studio 20m2 Rennes Ouest", location = "Rennes", price = Just "395 €", url = "https://www.leboncoin.fr/locations/1450258223.htm?ca=6_s"}
- , Ad {name = "Maison Ploufragan", location = "Ploufragan", price = Just "680 €", url = "https://www.leboncoin.fr/locations/1450257866.htm?ca=6_s"}
- , Ad {name = "Studio centre villes Rennes", location = "Rennes", price = Just "425 €", url = "https://www.leboncoin.fr/locations/1450257277.htm?ca=6_s"}
- , Ad {name = "Grand T2 Saint-Brieuc proche Renan", location = "Saint-Brieuc", price = Just "375 €", url = "https://www.leboncoin.fr/locations/1450257042.htm?ca=6_s"}
- , Ad {name = "Location maison T3", location = "Langueux", price = Just "569 €", url = "https://www.leboncoin.fr/locations/1439054110.htm?ca=6_s"}
- , Ad {name = "Chambre", location = "Vannes", price = Just "150 €", url = "https://www.leboncoin.fr/locations/1450255229.htm?ca=6_s"}
- , Ad {name = "Appartement meublé 2 ch centre Brest", location = "Brest", price = Just "750 €", url = "https://www.leboncoin.fr/locations/1450255216.htm?ca=6_s"}
- , Ad {name = "Brest Base Navale/porte Caffa - possible meublé", location = "Brest", price = Just "390 €", url = "https://www.leboncoin.fr/locations/1433862279.htm?ca=6_s"}
- , Ad {name = "Appartement Rennes", location = "Rennes", price = Just "390 €", url = "https://www.leboncoin.fr/locations/1450254830.htm?ca=6_s"}
- , Ad {name = "Location Appartement Villejean", location = "Rennes", price = Just "400 €", url = "https://www.leboncoin.fr/locations/1450253542.htm?ca=6_s"}
- , Ad {name = "Maison de bourg 3 chambres Bédée", location = "Bédée", price = Just "570 €", url = "https://www.leboncoin.fr/locations/1450252631.htm?ca=6_s"}
+ [ Ad {name = "Appartement libre de suite", location = "Meaux 77100", price = Just "870 €", url = "https:/locations/1666147031.htm/"}
+ , Ad {name = "Appartement 2 pièces aux Clayes sous Bois", location = "Les Clayes-sous-Bois 78340", price = Just "790 €", url = "https:/locations/1669740131.htm/"}
+ , Ad {name = "APPARTEMENT T2 - 33 m\178 - MONTROUGE (92)", location = "Montrouge 92120", price = Just "960 €", url = "https:/locations/1669731506.htm/"}
+ , Ad {name = "2 chambres à louer / Sèvres (92) proche Paris", location = "Sèvres 92310", price = Just "490 €", url = "https:/locations/1665328647.htm/"}
+ , Ad {name = "Location Appartement Montreuil", location = "Montreuil 93100", price = Just "970 €", url = "https:/locations/1669739489.htm/"}
+ , Ad {name = "Chambre pour étudiante dans appartement Cergy préf", location = "Cergy 95000", price = Just "480 €", url = "https:/locations/1669738832.htm/"}
+ , Ad {name = "Transporteur déménagement", location = "Paris 75019", price = Just "1 €", url = "https:/locations/1669738226.htm/"}
+ , Ad {name = "Loue appartement", location = "Condécourt 95450", price = Just "750 €", url = "https:/locations/1669737696.htm/"}
+ , Ad {name = "Place de parking VERSAILLES RIVE DROITE", location = "Versailles 78000", price = Just "70 €", url = "https:/locations/1669737014.htm/"}
+ , Ad {name = "Recherche chambre à louer", location = "Lognes 77185", price = Just "300 €", url = "https:/locations/1669737144.htm/"}
+ , Ad {name = "Appartement 2 pièce splendide 36m2 Paris 13", location = "Paris 75013", price = Just "910 €", url = "https:/locations/1669616026.htm/"}
+ , Ad {name = "Place de parking sécurisée", location = "Issy-les-Moulineaux 92130", price = Just "100 €", url = "https:/locations/1666255917.htm/"}
+ , Ad {name = "2 pièces 35m2 meublé 800 Euro(s) CC 8 mois max", location = "Argenteuil 95100", price = Just "800 €", url = "https:/locations/1669735875.htm/"}
+ , Ad {name = "Parking à louer rue st maur", location = "Paris 75011", price = Just "108 €", url = "https:/locations/1657100196.htm/"}
+ , Ad {name = "Box 13m2 securisé", location = "Bagnolet 93170", price = Just "95 €", url = "https:/locations/1669735007.htm/"}
+ , Ad {name = "Chambre en rez de chaussée", location = "Maisons-Laffitte 78600", price = Just "425 €", url = "https:/locations/1669734792.htm/"}
+ , Ad {name = "A louer maison f4", location = "Champagne-sur-Oise 95660", price = Just "1 350 €", url = "https:/locations/1669734636.htm/"}
+ , Ad {name = "2 pièces à Paris 20ème 36m2 Libre de suite", location = "Paris 75020", price = Just "950 €", url = "https:/locations/1669240126.htm/"}
+ , Ad {name = "Loue box garage", location = "Les Clayes-sous-Bois 78340", price = Just "130 €", url = "https:/locations/1669733972.htm/"}
+ , Ad {name = "Mets en sous location F2 dans le récents", location = "Créteil 94000", price = Just "980 €", url = "https:/locations/1669733841.htm/"}
+ , Ad {name = "Parking à 5mn de l'aéroport chez particulier", location = "Orly 94310", price = Just "5 €", url = "https:/locations/1669733667.htm/"}
+ , Ad {name = "2 pieces gare de l est", location = "Paris 75010", price = Just "1 015 €", url = "https:/locations/1669619541.htm/"}
+ , Ad {name = "Chambre meublée pr étudiant saison univ2019-2020", location = "Saint-Ouen-l'Aumône 95310", price = Just "430 €", url = "https:/locations/1669730619.htm/"}
+ , Ad {name = "Location studio à Levallois", location = "Levallois-Perret 92300", price = Just "700 €", url = "https:/locations/1669729351.htm/"}
+ , Ad {name = "Coloc à 3 val de fontenay recherche femme", location = "Fontenay-sous-Bois 94120", price = Just "500 €", url = "https:/locations/1669729707.htm/"}
+ , Ad {name = "Cave cimenté et seche dans résidence récente", location = "Pantin 93500", price = Just "70 €", url = "https:/locations/1669729874.htm/"}
+ , Ad {name = "bel appartement lumineux avec jardin", location = "Corbeil-Essonnes 91100", price = Just "850 €", url = "https:/locations/1669729645.htm/"}
+ , Ad {name = "Pavillon", location = "Igny 91430", price = Just "1 500 €", url = "https:/locations/1669627532.htm/"}
+ , Ad {name = "Parking à louer rue de Tocqueville 75017", location = "Paris 75017", price = Just "170 €", url = "https:/locations/1669728766.htm/"}
+ , Ad {name = "Studio duplex", location = "Montlhéry 91310", price = Just "660 €", url = "https:/locations/1669728747.htm/"}
+ , Ad {name = "Appartement F2 à Bois D'Arcy", location = "Bois-d'Arcy 78390", price = Just "730 €", url = "https:/locations/1669728345.htm/"}
+ , Ad {name = "maison 2 pièces 50 m2", location = "Epinay-sur-Seine 93800", price = Just "800 €", url = "https:/locations/1669728424.htm/"}
+ , Ad {name = "Appartement 3 pièces 80m\178", location = "Brunoy 91800", price = Just "1 242 €", url = "https:/locations/1639808089.htm/"}
+ , Ad {name = "Location appartement refait à neuf proche Paris", location = "Montreuil 93100", price = Just "900 €", url = "https:/locations/1669727321.htm/"}
+ , Ad {name = "Location Studio Photo Video", location = "Ivry-sur-Seine 94200", price = Just "350 €", url = "https:/locations/1669727197.htm/"}
+ , Ad {name = "Maison avec jardinet", location = "Champagne-sur-Seine 77430", price = Nothing, url = "https:/locations/1667510230.htm/"}
+ , Ad {name = "Parking proche Place Gambetta Paris 20", location = "Paris 75020", price = Nothing, url = "https:/locations/1640071173.htm/"}
+ , Ad {name = "Appt 80m2.3/4 pièces.75013 limite 75005", location = "Paris 75005", price = Nothing, url = "https:/locations/1665224562.htm/"}
]
ouestFrance :: [Ad]
diff --git a/src/test/haskell/Main.hs b/src/test/haskell/Main.hs
index a8cfae9..ba6d466 100644
--- a/src/test/haskell/Main.hs
+++ b/src/test/haskell/Main.hs
@@ -1,16 +1,19 @@
-import Data.Maybe (catMaybes)
-import qualified Data.Text.IO as T
+import Data.Maybe (catMaybes)
+import qualified Data.Text.IO as T
+import qualified Network.HTTP.Conduit as H
import Test.Hspec
import qualified Ads
import qualified FetchAd
-import Model.Ad (Ad (..))
-import qualified Parser.LeboncoinParser as LeboncoinParser
-import qualified Parser.OuestFranceParser as OuestFranceParser
-import qualified Parser.SeLogerParser as SeLogerParser
+import Model.Ad (Ad (..))
+import qualified Parser.LeboncoinParser as LeboncoinParser
+-- import qualified Parser.OuestFranceParser as OuestFranceParser
+-- import qualified Parser.SeLogerParser as SeLogerParser
main :: IO ()
main = do
+ manager <- H.newManager H.tlsManagerSettings
+
hspec $ do
describe "LeboncoinParser" $ do
@@ -22,34 +25,36 @@ main = do
LeboncoinParser.parse ads `shouldBe` Ads.leboncoin
it "should parse ads from remote page" $ do
- ads <- FetchAd.leboncoin ["https://www.leboncoin.fr/locations/offres/ile_de_france/?th=1"]
- checkAds ads
-
- describe "OuestFranceParser" $ do
-
- it "should parse no results from empty string" $ do
- OuestFranceParser.parse "" `shouldBe` []
-
- it "should parse ads from page" $ do
- rawOuestFranceAds <- T.readFile "src/test/resources/ouestFrance.html"
- OuestFranceParser.parse rawOuestFranceAds `shouldBe` Ads.ouestFrance
-
- it "should parse ads from remote page" $ do
- ads <- FetchAd.ouestFrance ["https://www.ouestfrance-immo.com/louer/appartement/rennes-35-35000/"]
+ ads <- FetchAd.leboncoin
+ manager
+ ["https://www.leboncoin.fr/annonces/offres/ile_de_france/"]
checkAds ads
- describe "SeLogerParser" $ do
-
- it "should parse no results from empty string" $ do
- SeLogerParser.parse "" `shouldBe` []
-
- it "should parse ads from page" $ do
- ads <- T.readFile "src/test/resources/seLoger.html"
- SeLogerParser.parse ads `shouldBe` Ads.seLoger
-
- it "should parse ads from remote page" $ do
- ads <- FetchAd.seLoger ["https://www.seloger.com/list.htm?tri=initial&idtypebien=2,1&idtt=2,5&naturebien=1,2,4&ci=690123"]
- checkAds ads
+ -- describe "OuestFranceParser" $ do
+ --
+ -- it "should parse no results from empty string" $ do
+ -- OuestFranceParser.parse "" `shouldBe` []
+ --
+ -- it "should parse ads from page" $ do
+ -- rawOuestFranceAds <- T.readFile "src/test/resources/ouestFrance.html"
+ -- OuestFranceParser.parse rawOuestFranceAds `shouldBe` Ads.ouestFrance
+ --
+ -- it "should parse ads from remote page" $ do
+ -- ads <- FetchAd.ouestFrance ["https://www.ouestfrance-immo.com/louer/appartement/rennes-35-35000/"]
+ -- checkAds ads
+ --
+ -- describe "SeLogerParser" $ do
+ --
+ -- it "should parse no results from empty string" $ do
+ -- SeLogerParser.parse "" `shouldBe` []
+ --
+ -- it "should parse ads from page" $ do
+ -- ads <- T.readFile "src/test/resources/seLoger.html"
+ -- SeLogerParser.parse ads `shouldBe` Ads.seLoger
+ --
+ -- it "should parse ads from remote page" $ do
+ -- ads <- FetchAd.seLoger ["https://www.seloger.com/list.htm?tri=initial&idtypebien=2,1&idtt=2,5&naturebien=1,2,4&ci=690123"]
+ -- checkAds ads
checkAds :: [Ad] -> IO ()
checkAds ads = do
diff --git a/src/test/resources/leboncoin.html b/src/test/resources/leboncoin.html
index 6d03afd..0e195bb 100644
--- a/src/test/resources/leboncoin.html
+++ b/src/test/resources/leboncoin.html
@@ -1,6930 +1,128 @@
<!DOCTYPE html>
+<html lang="fr">
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
+ <title data-react-helmet="true">Locations immobilières Ile-de-France - nos annonces leboncoin</title>
+
+ <meta data-react-helmet="true" name="google-site-verification" content="hd1IKIFS52UgrLBhQ7e0y6sP6cVp4QbHvmkfgHP0TnI"/><meta data-react-helmet="true" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/><meta data-react-helmet="true" name="theme-color" content="#f56b2a"/><meta data-react-helmet="true" property="og:locale" content="fr_FR"/><meta data-react-helmet="true" property="og:site_name" content="leboncoin"/><meta data-react-helmet="true" name="twitter:site" content="leboncoin"/><meta data-react-helmet="true" http-equiv="P3P" content="CP=&quot;This is not a P3P policy&quot;"/><meta data-react-helmet="true" name="description" content="Toutes nos annonces gratuites Locations immobilières Ile-de-France. Consultez nos 25867 annonces de particuliers et professionnels sur leboncoin"/>
+
+
+
+ <script data-react-helmet="true" type="text/javascript" src="//try.abtasty.com/09643a1c5bc909059579da8aac99e8f1.js"></script><script data-react-helmet="true" async="true" src="https://www.googletagmanager.com/gtag/js?id=AW-837584793"></script><script data-react-helmet="true" >
+ window.dataLayer = window.dataLayer || [];
+ function gtag(){dataLayer.push(arguments);}
+ gtag('js', new Date());
+
+ gtag('config', 'AW-837584793');
+ gtag('config', 'AW-766292687');
+ gtag('config', 'DC-4167650');
+ </script><script data-react-helmet="true" type="text/javascript" src="https://cdn.admo.tv/leboncoin/script.min.js" async="true"></script><script data-react-helmet="true" src="//tag.aticdn.net/598455/smarttag.js"></script><script data-react-helmet="true" >
+ (function(window, document) {
+ /*
+ * Initialise Tracking
+ */
+ if (!window.trackingPreRequest) {
+ window.trackingPreRequest = []
+ }
+ const ref = document.location.pathname
+
+ if (ref === '/') {
+ window.trackingPreRequest.push('accueil|'+Date.now()+'|'+encodeURIComponent(document.referrer))
+ }
+
+ if (
+ ref.indexOf('offres') !== -1 ||
+ ref.indexOf('demandes') !== -1 ||
+ ref.indexOf('recherche') !== -1 ||
+ ref.indexOf('annonces') !== -1
+ ) {
+ window.trackingPreRequest.push('ad_search|'+Date.now()+'|'+encodeURIComponent(document.referrer))
+ }
+
+ if (ref.indexOf('.htm') !== -1) {
+ window.trackingPreRequest.push('ad_view::detail|'+Date.now()+'|'+encodeURIComponent(document.referrer))
+ }
+
+ /**
+ * CMP FOR IAB
+ */
+ if (!window.__cmp) {
+ window.__cmp = (function() {
+ var commandQueue = []
+ var cmp = function(command, parameter, callback) {
+ if (command === 'ping') {
+ if (callback) {
+ callback({
+ gdprAppliesGlobally: !!(window.__cmp && window.__cmp.config && window.__cmp.config.storeConsentGlobally),
+ cmpLoaded: false
+ });
+ }
+ } else {
+ commandQueue.push({
+ command: command,
+ parameter: parameter,
+ callback: callback
+ });
+ }
+ }
+ cmp.commandQueue = commandQueue
+ cmp.config = { storeConsentGlobally: false }
+ return cmp;
+ }());
+ }
+ })(window, document);
+ </script><script data-react-helmet="true" type="text/javascript" src="//static.criteo.net/js/px.js?ch=1"></script><script data-react-helmet="true" type="text/javascript" src="//static.criteo.net/js/px.js?ch=2"></script><script data-react-helmet="true" async="async" src="https://www.google.com/adsense/search/ads.js"></script><script data-react-helmet="true" >
+ (function(g,o){g[o]=g[o]||function(){(g[o]['q']=g[o]['q']||[]).push(
+ arguments)},g[o]['t']=1*new Date})(window,'_googCsa');
+ </script>
+ <link data-react-helmet="true" type="image/png" rel="apple-touch-icon" href="//static-rav.leboncoin.fr/favicon-apple-touch.png"/><link data-react-helmet="true" rel="manifest" href="//static-rav.leboncoin.fr/manifest.json"/><link data-react-helmet="true" type="application/opensearchdescription+xml" rel="search" href="//static-rav.leboncoin.fr/opensearch.xml"/><link data-react-helmet="true" rel="icon" type="image/png" href="//static-rav.leboncoin.fr/1cf19bbb9823291e038de93823ddc00d.png" sizes="16x16"/><link data-react-helmet="true" rel="icon" type="image/png" href="//static-rav.leboncoin.fr/57e0765787306aab96864ee4846e9c1f.png" sizes="32x32"/><link data-react-helmet="true" rel="canonical" href="https://www.leboncoin.fr/locations/offres/ile_de_france/"/>
-<html class="no-js">
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
-
-
- <!-- We're hiring. Now.
- / \
- / \ Want to code in Go, Python, PostgreSQL, PHP, ReactJS/Redux, Java?
- / \ Play with NoSQL, microservices, Redis, Kafka, Raspberry Pi?
- |\ /| Docker, Puppet, Ansible, NewRelic, Datadog?
- | \ / | We are a friendly, pragmatic group, working in nice offices in Paris-Gare de l'Est.
- | \ / | Some of us brew their own beer, some are demanding when it comes to tea or coffee.
- | | | Others organize coding sessions for kids, talk at conferences, play in rock bands,
- \ | / watch cult movies, share their children pictures, run together, or enjoy silly animated GIFs.
- \ | /
- \ / Want to change people's lives with us? Check out https://corporate.leboncoin.fr/nos-offres/
- -->
- <!--[if lt IE 9]>
- <script>
- document.createElement("header");
- document.createElement("nav");
- </script>
- <![endif]-->
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <link rel="alternate" href="android-app://fr.leboncoin/http///www.leboncoin.fr/locations/offres/bretagne/" />
-
-
- <link rel="icon" type="image/png" href="//static.leboncoin.fr/img/favicon-beta.png" sizes="16x16">
- <link rel="icon" type="image/png" href="//static.leboncoin.fr/img/favicon-beta-32.png" sizes="32x32">
- <link rel="apple-touch-icon" type="image/png" href="//static.leboncoin.fr/img/favicon-beta-touch.png">
-
- <link rel="stylesheet" type="text/css" href="//static.leboncoin.fr/css/beta_layout_71364.css">
- <link rel="stylesheet" type="text/css" href="//static.leboncoin.fr/css/beta_styles_71364.css">
-
-
- <script type="text/javascript" src="//static.leboncoin.fr/js/mobile-detect.min.js"></script>
-
-
- <script type="text/javascript" src="//www.leboncoin.fr/templates/common/arrays.js?71364"></script>
- <script type="text/javascript" src="//static.leboncoin.fr/js/beta_base_71364.js"></script>
-
- <script type="text/javascript">
- var baseUrlApi = "https://api.leboncoin.fr",
- hereUrl = "http://1.base.maps.api.here.com/maptile/2.1/",
- hereUrlAerial = "http://1.aerial.maps.api.here.com/maptile/2.1/",
- hereAppID = "AX0qTYPn65pnj14wDAAW",
- hereAppCode = "0_qKOBAY2USElJzaHsu-eA",
- apiAppKey = "e3f533055f5bab5548a4125f2c983204",
- baseUrlImgs = "//static.leboncoin.fr",
- baseUrlParrot = "https://api.leboncoin.fr",
- baseUrlApiAccount = "https://api.leboncoin.fr";
- baseUrlApiMessaging = "https://api.leboncoin.fr/messaging/proxy/";
-
- </script>
-
-
-
-
-
-
-
-
-
-<meta charset="utf-8">
-<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
-<meta name="format-detection" content="telephone=no">
-<meta name="theme-color" content="#F56B2A">
-<meta name="msapplication-navbutton-color" content="#F56B2A">
-<meta name="apple-mobile-web-app-status-bar-style" content="#F56B2A">
-
-
-
-
-
-
-
-
-
-<title>
-
- Location immobilière : nos annonces - Bretagne - leboncoin
-
-
-</title>
-
-
-
-
-
-
-
-
-
-
- <meta name="description" content="A la recherche d'une location meublée ou non meublée - Bretagne ? Consultez nos 18432 annonces de location sur leboncoin !">
-
-
-
-
-
-
-
- <style type="text/css">
- @font-face {
- font-family: 'OpenSans';
- src: url(//static.leboncoin.fr/fonts/opensans-regular-webfont.eot);
- src: url(//static.leboncoin.fr/fonts/opensans-regular-webfont.eot?#iefix) format("embedded-opentype"), url(//static.leboncoin.fr/fonts/opensans-regular-webfont.woff) format("woff"), url(//static.leboncoin.fr/fonts/opensans-regular-webfont.ttf) format("truetype"), url(//static.leboncoin.fr/fonts/opensans-regular-webfont.svg#open_sansregular) format("svg");
- font-weight: 400;
- font-style: normal;
- }
- @font-face {
- font-family: 'OpenSansSemibold';
- src: url(//static.leboncoin.fr/fonts/opensans-semibold-webfont.eot);
- src: url(//static.leboncoin.fr/fonts/opensans-semibold-webfont.eot?#iefix) format("embedded-opentype"), url(//static.leboncoin.fr/fonts/opensans-semibold-webfont.woff2) format("woff2"), url(//static.leboncoin.fr/fonts/opensans-semibold-webfont.woff) format("woff"), url(//static.leboncoin.fr/fonts/opensans-semibold-webfont.ttf) format("truetype"), url(//static.leboncoin.fr/fonts/opensans-semibold-webfont.svg#open_sanssemibold) format("svg");
- font-weight: 600;
- font-style: normal;
- }
- @font-face {
- font-family: 'OpenSansBold';
- src: url(//static.leboncoin.fr/fonts/opensans-bold-webfont.eot);
- src: url(//static.leboncoin.fr/fonts/opensans-bold-webfont.eot?#iefix) format("embedded-opentype"), url(//static.leboncoin.fr/fonts/opensans-bold-webfont.woff2) format("woff2"), url(//static.leboncoin.fr/fonts/opensans-bold-webfont.woff) format("woff"), url(//static.leboncoin.fr/fonts/opensans-bold-webfont.ttf) format("truetype"), url(//static.leboncoin.fr/fonts/opensans-bold-webfont.svg#open_sansbold) format("svg");
- font-weight: 700;
- font-style: normal;
- }
- @font-face {
- font-family: 'icomoon';
- src: url(//static.leboncoin.fr/fonts/icomoon.eot);
- src: url(//static.leboncoin.fr/fonts/icomoon.eot) format("embedded-opentype"), url(//static.leboncoin.fr/fonts/icomoon.ttf) format("truetype"), url(//static.leboncoin.fr/fonts/icomoon.woff) format("woff"), url(//static.leboncoin.fr/fonts/icomoon.svg) format("svg");
- font-weight: normal;
- font-style: normal;
- }
- .layout,
- .interstitial,
- .tutorialLayout {
- background: url(//static.leboncoin.fr/img/loader-background.png) repeat;
- }
- .loaderGif {
- background: url(//static.leboncoin.fr/img/loader.svg) no-repeat center center transparent;
- }
- .flag {
- background-image: url(//static.leboncoin.fr/img/flag.png);
- background-repeat: no-repeat;
- }
- .logo-site {
- background: url(//static.leboncoin.fr/img/logo.svg) no-repeat center;
- }
- .headerNav .logo-site {
- background-size: auto 45%;
- }
- .ui-icon, input.edit {
- background-image: url(//static.leboncoin.fr/img/jquery_datepicker.png);
- }
-
- .selectWrapper {
- background: #ffffff url(//static.leboncoin.fr/img/arrow-select.png) no-repeat right;
- }
- .selectWrapper.blue {
- background: #ffffff url(//static.leboncoin.fr/img/arrow-select-blue.png) no-repeat right;
- }
-
- #main.page404 .lostSection-top {
- background: url(//static.leboncoin.fr/img/beta-404-background.svg) no-repeat right top;
- }
-
- #backgroundSnow {
- background-image:url(//static.leboncoin.fr/img/neige2.png);
- }
-
- #backgroundSnowInner {
- background-image:url(//static.leboncoin.fr/img/neige.png);
- }
-
- .ua_IE8 .logo-site {
- background-image: none;
- filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=//static.leboncoin.fr/img/logo-mobile.png,sizingMethod='scale');
- -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=//static.leboncoin.fr/img/logo-mobile.png,sizingMethod='scale')";
- }
-
- /* fix z-index problem on ie with transparent background */
- .searchbox #searchboxToggleCategory {
- background: url(//static.leboncoin.fr/img/trans-1px.gif);
- }
-
- @media (max-width: 971px) {
- .headerNav .logo-site {
- background: url("//static.leboncoin.fr/img/logo.svg") no-repeat center #f56b2a;
- }
- }
-
- @media (max-width: 768px) {
- #adreply .mobileLoader {
- background: url('//static.leboncoin.fr/img/loader.svg') no-repeat rgba(0,0,0,.8) 50% 50%;
- }
- }
-
- #adview .item_image.empty {
- background: #f2f2f2 url('//static.leboncoin.fr/img/no-picture-adview.png') no-repeat center;
- }
-
- #adview .boutiquePanel {
- background: url('//static.leboncoin.fr/img/bg-boutique-adview.jpg') no-repeat;
- }
-
- .loaderGif-small {
- background: url('//static.leboncoin.fr/img/beta_loader_small.svg') no-repeat center center transparent;
- background-size: 22px 22px;
- }
-
- #christmas2016 #banner {
- background-image:url('//static.leboncoin.fr/img/top-bg.png')
- }
-
- </style>
-
-
-
-
-
-
-<script type="text/javascript" src="//try.abtasty.com/09643a1c5bc909059579da8aac99e8f1.js"></script>
-
- <script type="text/javascript" src="//static.leboncoin.fr/js/abtasty.js"></script>
- <link rel="canonical" href="https://www.leboncoin.fr/locations/offres/bretagne/">
+ <link rel="stylesheet" href="//static-rav.leboncoin.fr/app.bb9ef9d8cbc26ac2a8da.css">
- <script>var cookieDefault = new Cookies('.leboncoin.fr');</script>
</head>
- <body id="all" class="ua_FIR">
-
-
- <script type="text/javascript" src="//static.leboncoin.fr/js/datalayer-functions.js"></script>
-
-
- <script type='text/javascript' src='https://static.criteo.net/js/px.js?ch=1'></script>
- <script type='text/javascript' src='https://static.criteo.net/js/px.js?ch=2'></script>
-
- <script type="text/javascript">
- var utag_data = {
- environnement : "prod",
- device : getDevice(),
- displaytype : getDisplay($(window).innerWidth()),
- pagename : "listing",
- pagetype : "recherche",
- eventname : "ad_search",
- compte : "0",
- consent_comp : "1",
- consent_geo : "1",
- uab : window.abp ? 'true' : 'false',
- cat : "immobilier",
- cat_id : "8",
- subcat : "locations",
- subcat_id : "10",
- oas_cat : "immobilier",
- oas_subcat : "locations",
- region : "bretagne",
- oas_region : "6",
- ad_type : "offres",
- titre_only : "0",
- parrot_enable : "0",
- parrot_used : "0",
- urgent_only : "0",
- pagenumber : "1",
- sort_price : "0",
- nbresultat_displayed : "35",
- nbresultat : "18432",
- nbresultat_part : "9589",
- nbresultat_pro : "8843",
- search_filters : {
- loyermin : null,
- loyermax : null,
- surfacemin : null,
- surfacemax : null,
- piecesmin : null,
- piecesmax : null,
- type : null,
- meuble : null
- },
- photosup : "0"
- }
- </script>
- <script type="text/javascript" src="//tags.tiqcdn.com/utag/schibsted/leboncoin-responsive/prod/utag.js"></script>
-
-
-
-
-
- <script type="text/javascript">
- jQuery(document).ready(function($) {
- var appnexus = new Appnexus();
- });
- </script>
-
-
-
-
-
- <div class="popin-shadow"></div>
- <a href="" title="Fermer le menu" class="mobileMenuHoverlay"><i class="icon-close-circle-outline icon-4x nomargin"></i></a>
- <section id="container" data-pagename="listing">
-
-
-
-<div class="apn-hbl apn-hb">
- <div id="hbl-m" class="teal-apn"></div>
- <div id="hbl-l" class="teal-apn"></div>
- <div id="hbl-xl" class="teal-apn"></div>
-</div>
-
-
-
-
-
-
-<div id="appsDownload" class="pts pbs hidden medium-hidden large-hidden">
- <div class="content-center">
- <a id="appRedirect" target="_blank" class="button-blue fr trackable" data-info='{"event_name" : "bandeau::ad_search::utiliser", "event_type" : "click", "click_type" : "N", "event_s2" : "8"}'>Utiliser</a>
- <img class="fl" id="logoApp" src="//static.leboncoin.fr/img/favicon-beta-touch.png"/>
- <div>
- <p class="semibold">L'application <strong>Leboncoin</strong></p>
- <div id="stars">
-
-
-
- <img id="full0" src="//static.leboncoin.fr/img/star.svg"><img id="full1" src="//static.leboncoin.fr/img/star.svg"><img id="full2" src="//static.leboncoin.fr/img/star.svg"><img id="full3" src="//static.leboncoin.fr/img/star.svg"><img src="//static.leboncoin.fr/img/star-half.svg">
-
- </div>
- </div>
- </div>
-</div>
-
-<script>
-var banner = document.getElementById("appsDownload");
-
-if (
- /Android/i.test(navigator.userAgent) &&
- /Windows Phone/i.test(navigator.userAgent) == false &&
- /iemobile/i.test(navigator.userAgent) == false &&
- /WPDesktop/i.test(navigator.userAgent) == false
-) {
- document.getElementById('appRedirect').href = 'https://play.google.com/store/apps/details?id=fr.leboncoin&hl=en';
- banner.classList.remove('hidden');
-} else if (/iPhone|iPad|iPod/i.test(navigator.userAgent)) {
- document.getElementById('appRedirect').href = 'https://itunes.apple.com/app/apple-store/id484115113?pt=606791&ct=BandeauAudience&mt=8';
- banner.classList.remove('hidden');
-} else {
- banner.parentNode.removeChild(banner);
-}
-</script>
-
-
-
-
-
-<header id="header" role="banner" class="no-fix ">
- <section class="headerContent">
-
-
-
-
-
- <section class="content-center clearfix">
- <a class="displayMenu button-white-mobile custom-large-hidden">MENU<span class="newMessagesNotif"></span></a>
-
- <a href="//www.leboncoin.fr/" class="logo-site trackable" data-info='{"event_name" : "header::logo::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'></a>
- <nav class="headerNav" role="navigation">
- <!-- LOGO -->
- <a href="" class="logo-site trackable custom-large-hidden" data-info='{"event_name" : "header::logo::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'></a>
-
- <p class="logo-site hidden"></p>
- <!-- MENU DESKTOP -->
- <ul class="headerNav_main">
- <li><a href="//www.leboncoin.fr/ai?ca=6_s" title="D&eacute;poser une annonce" class="trackable" data-info='{"event_name" : "header::navbar::deposer_une_annonce::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>d&eacute;poser une annonce</a></li><!--
-
-
- --><li><a href="//www.leboncoin.fr/locations/offres/bretagne/" title="Offres" class="trackable active" data-info='{"event_name" : "header::navbar::offres::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>offres</a></li><!--
- --><li><a href="//www.leboncoin.fr/locations/demandes/bretagne/" title="Demandes" class="trackable" data-info='{"event_name" : "header::navbar::demandes::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>demandes</a></li><!--
-
- --><li><a href="//www.leboncoin.fr/aw?ca=6_s" title="Mes favoris" class="trackable custom-small-hidden " data-info='{"event_name" : "header::navbar::mes_annonces::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>mes favoris</a></li><!--
- --><li><a href="//www.leboncoin.fr/aw?ca=6_s&amp;selected=backup" title="Mes annonces" class="trackable custom-large-hidden" data-info='{"event_name" : "header::navbar::mes_annonces_sauvegardees::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>mes annonces sauvegard&eacute;es</a></li><!--
- --><li><a href="//www.leboncoin.fr/aw?ca=6_s&amp;selected=search" title="Mes annonces" class="trackable custom-large-hidden" data-info='{"event_name" : "header::navbar::mes_recherches_automatiques::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>mes recherches automatiques</a></li><!--
-
-
- --><li> <a onclick="return xt_click(this,'C','33','onglet_boutiques','N')" href="//www.leboncoin.fr/boutiques/tout_secteur_d_activite/toutes_categories/bretagne/">Boutiques</a></li><!--
-
-
-
-
-
- --><li><a id="messageLink" title="Messages" onclick="xt_med('C', '11', 'header::navbar::messaging', 'N')" data-popin-type="general" data-popin-template="connexion" data-popin-context="messaging" class="popin-hideHoverlay popin-open" href="#">Messages</a></li><!--
-
-
- --><li class="custom-large-hidden">
- <button class="popin-hideHoverlay popin-open custom-large-hidden trackable" data-popin-type="general" data-popin-template="connexion" data-info='{"event_name" : "header::navbar::se_connecter::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Se connecter</button>
- </li><!--
-
- --><li class="custom-large-hidden"><a href="" title="Informations pratiques" class="showFooterLinks">Informations pratiques<i class="icon-chevron-right icon-2x nomargin"></i></a></li><!--
-
- -->
- </ul>
-
- <!-- MENU FOOTER MOBILE -->
- <nav class="headerNav_footer hidden">
- <ul>
- <li><a href="" title="" class="hideFooterLinks"><i class="icon-chevron-left icon-2x"></i>Retour menu</a></li>
- <li><a class="trackable " href="https://corporate.leboncoin.fr/" target="_blank" title="Qui sommes-nous ?" data-info='{"event_name" : "footer::a_propos_du_bon_coin::qui_sommes_nous::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>Qui sommes-nous ?</a></li>
-
- <li><a class="trackable" href="//www.leboncoin.fr/recrutement.htm?ca=6_s&c=0&w=3" title="Nous rejoindre" data-info='{"event_name" : "footer::a_propos_du_bon_coin::recrutement::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Nous rejoindre</a></li>
-
- <li><a title="Impact environnemental" class="trackable" href="http://secondhandeffect.leboncoin.fr/" data-info='{"event_name" : "footer\:\:a_propos_du_bon_coin\:\:impact_environnemental\:\:recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Impact environnemental</a></li>
- <li><a href="//www.leboncoin.fr/legal.htm?ca=6_s" title="CGU" class="trackable" data-info='{"event_name" : "footer::informations_legales::conditions_generales_d_utilisation::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>CGU</a></li>
- <li><a href="//www.leboncoin.fr/regles.htm?ca=6_s" title="R&egrave;gles de diffusion" class="trackable" data-info='{"event_name" : "footer::informations_legales::regles_de_diffusion::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>R&egrave;gles de diffusion</a></li>
- <li><a href="//www.leboncoin.fr/cgv_general.htm?ca=6_s" title="CGV" class="trackable" data-info='{"event_name" : "footer::informations_legales::conditions_generales_de_vente::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>CGV</a></li>
-
- <li><a href="//www.leboncoin.fr/cookies/" title="Vie priv&eacute;e / cookies" class="trackable" data-info='{"event_name" : "footer::informations_legales::vie_privee_cookies::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Vie priv&eacute;e / cookies</a></li>
- <li><a href="//www2.leboncoin.fr/pub/form/?ca=6_s" title="Publicit&eacute;" class="trackable" data-info='{"event_name" : "footer::professionnels::publicite::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Publicit&eacute;</a></li>
-
- <li><a href="//www2.leboncoin.fr/dc/vos_droits_et_obligations?ca=6_s" title="Vos droits et obligations">Vos droits et obligations</a></li>
-
-
- <li><a href="https://comptepro.leboncoin.fr/immobilier/?ca=6_s" title="Professionnels de l'immobilier" class="trackable" data-info='{"event_name" : "footer::professionnels::professionnels_de_l_immobilier::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Professionnels de l'immobilier</a></li>
-
-
- <li><a title="Vos recrutements" class="trackable" data-info='{"event_name" : "support::professionnels_emploi::formulaire::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}' href="//www.leboncoin.fr/vos-recrutements">Vos recrutements</a></li>
-
-
- <li><a title="Toutes nos solutions pros" target="_blank" class="trackable" data-info='{"event_name" : "footer::professionnels::solutions_pros::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}' href="http://www.leboncoinpro.fr/">Toutes nos solutions pros</a></li>
-
- <li><a href="//www.leboncoin.fr/aide.htm?ca=6_s" title="Aide" class="trackable" data-info='{"event_name" : "footer::des_questions::aide::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Aide</a></li>
- <li><a href="//www2.leboncoin.fr/support/form/0?id=1&amp;ca=6_s" class="trackable" title="Support" data-info='{"event_name" : "footer::des_questions::nous_contacter::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Nous contacter</a></li>
- </ul>
- </nav>
- </nav>
-
- <!-- Search button && Connexion button -->
- <aside class="header_aside clearfix">
- <!--
-
- --><span class="searchbar toggleElement button-white-mobile custom-large-hidden" data-element="" data-elementhide="customSelect_categories" data-toggleclass="searchbar-open"><i class="icon-magnify icon-2x nomargin"></i></span><!--
-
- --><button class="button-flat button-secondary popin-open trackable custom-small-hidden" title="Acc&eacute;der &agrave; mon compte" data-popin-type="general" data-popin-template="connexion" data-info='{"event_name" : "header::navbar::se_connecter::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'><i class="icon-account"></i>Se connecter</button>
-
- </aside>
-
- <div class="headerEmpty_content">
- <a class="displayMenu button-white-mobile custom-large-hidden hidden">MENU</a>
- <p class="logo-site"></p>
-
-
- <a href="//www.leboncoin.fr/ai?ca=6_s" title="Retour" class="linkBack custom-small-hidden"><i class="icon-chevron-left"></i>Retour</a>
- </div>
- </section>
- </section>
-</header>
-
-
-
-
-<div class="apn-hbl apn-hb">
- <div id="hbl-s" class="teal-apn"></div>
-</div>
-
-
-
-
-
-
- <section id="searchbox" class="custom-small-hidden">
- <div class="content-center">
-
-
-
-
-
-
-
- <section class="content-center searchboxCategories">
- <section class="customSelect customSelect_categories">
- <section class="grid-5">
- <!-- LIST CATEGORIES -->
- <div>
- <ul><li class="title"><a href="" data-category="0">Toutes cat&eacute;gories</a></li></ul>
- <ul>
-
-
- <li class="title"><a href="" data-category="71" class="">
- EMPLOI
- </a></li>
-
- <li><a href="" data-category="33" class="">
- Offres d'emploi
- </a></li>
-
-
- <li class="title"><a href="" data-category="1" class="">
- VEHICULES
- </a></li>
-
- <li><a href="" data-category="2" class="">
- Voitures
- </a></li>
- <li><a href="" data-category="3" class="">
- Motos
- </a></li>
- <li><a href="" data-category="4" class="">
- Caravaning
- </a></li>
- <li><a href="" data-category="5" class="">
- Utilitaires
- </a></li>
- <li><a href="" data-category="6" class="">
- Equipement Auto
- </a></li>
- <li><a href="" data-category="44" class="">
- Equipement Moto
- </a></li>
- <li><a href="" data-category="50" class="">
- Equipement Caravaning
- </a></li>
- <li><a href="" data-category="7" class="">
- Nautisme
- </a></li>
- <li><a href="" data-category="51" class="">
- Equipement Nautisme
- </a></li>
-
- </ul></div><div><ul>
- <li class="title"><a href="" data-category="8" class="">
- IMMOBILIER
- </a></li>
-
- <li><a href="" data-category="9" class="">
- Ventes immobilières
- </a></li>
- <li><a href="" data-category="10" class="selected">
- Locations
- </a></li>
- <li><a href="" data-category="11" class="">
- Colocations
- </a></li>
- <li><a href="" data-category="13" class="">
- Bureaux &amp; Commerces
- </a></li>
-
-
- <li class="title"><a href="" data-category="66" class="">
- VACANCES
- </a></li>
-
- <li><a href="" data-category="12" class="">
- Locations &amp; Gîtes
- </a></li>
- <li><a href="" data-category="67" class="">
- Chambres d'hôtes
- </a></li>
- <li><a href="" data-category="68" class="">
- Campings
- </a></li>
- <li><a href="" data-category="69" class="">
- Hôtels
- </a></li>
- <li><a href="" data-category="70" class="">
- Hébergements insolites
- </a></li>
-
- </ul></div><div><ul>
- <li class="title"><a href="" data-category="14" class="">
- MULTIMEDIA
- </a></li>
-
- <li><a href="" data-category="15" class="">
- Informatique
- </a></li>
- <li><a href="" data-category="43" class="">
- Consoles &amp; Jeux vidéo
- </a></li>
- <li><a href="" data-category="16" class="">
- Image &amp; Son
- </a></li>
- <li><a href="" data-category="17" class="">
- Téléphonie
- </a></li>
-
-
- <li class="title"><a href="" data-category="24" class="">
- LOISIRS
- </a></li>
-
- <li><a href="" data-category="25" class="">
- DVD / Films
- </a></li>
- <li><a href="" data-category="26" class="">
- CD / Musique
- </a></li>
- <li><a href="" data-category="27" class="">
- Livres
- </a></li>
- <li><a href="" data-category="28" class="">
- Animaux
- </a></li>
- <li><a href="" data-category="55" class="">
- Vélos
- </a></li>
- <li><a href="" data-category="29" class="">
- Sports &amp; Hobbies
- </a></li>
- <li><a href="" data-category="30" class="">
- Instruments de musique
- </a></li>
- <li><a href="" data-category="40" class="">
- Collection
- </a></li>
- <li><a href="" data-category="41" class="">
- Jeux &amp; Jouets
- </a></li>
- <li><a href="" data-category="48" class="">
- Vins &amp; Gastronomie
- </a></li>
-
- </ul></div><div><ul>
- <li class="title"><a href="" data-category="56" class="">
- MATERIEL PROFESSIONNEL
- </a></li>
-
- <li><a href="" data-category="57" class="">
- Matériel Agricole
- </a></li>
- <li><a href="" data-category="58" class="">
- Transport - Manutention
- </a></li>
- <li><a href="" data-category="59" class="">
- BTP - Chantier Gros-oeuvre
- </a></li>
- <li><a href="" data-category="60" class="">
- Outillage - Matériaux 2nd-oeuvre
- </a></li>
- <li><a href="" data-category="32" class="">
- Équipements Industriels
- </a></li>
- <li><a href="" data-category="61" class="">
- Restauration - Hôtellerie
- </a></li>
- <li><a href="" data-category="62" class="">
- Fournitures de Bureau
- </a></li>
- <li><a href="" data-category="63" class="">
- Commerces &amp; Marchés
- </a></li>
- <li><a href="" data-category="64" class="">
- Matériel Médical
- </a></li>
-
-
- <li class="title"><a href="" data-category="31" class="">
- SERVICES
- </a></li>
-
- <li><a href="" data-category="34" class="">
- Prestations de services
- </a></li>
- <li><a href="" data-category="35" class="">
- Billetterie
- </a></li>
- <li><a href="" data-category="49" class="">
- Evénements
- </a></li>
- <li><a href="" data-category="36" class="">
- Cours particuliers
- </a></li>
- <li><a href="" data-category="65" class="">
- Covoiturage
- </a></li>
-
- </ul></div><div><ul>
- <li class="title"><a href="" data-category="18" class="">
- MAISON
- </a></li>
-
- <li><a href="" data-category="19" class="">
- Ameublement
- </a></li>
- <li><a href="" data-category="20" class="">
- Electroménager
- </a></li>
- <li><a href="" data-category="45" class="">
- Arts de la table
- </a></li>
- <li><a href="" data-category="39" class="">
- Décoration
- </a></li>
- <li><a href="" data-category="46" class="">
- Linge de maison
- </a></li>
- <li><a href="" data-category="21" class="">
- Bricolage
- </a></li>
- <li><a href="" data-category="52" class="">
- Jardinage
- </a></li>
- <li><a href="" data-category="22" class="">
- Vêtements
- </a></li>
- <li><a href="" data-category="53" class="">
- Chaussures
- </a></li>
- <li><a href="" data-category="47" class="">
- Accessoires &amp; Bagagerie
- </a></li>
- <li><a href="" data-category="42" class="">
- Montres &amp; Bijoux
- </a></li>
- <li><a href="" data-category="23" class="">
- Equipement bébé
- </a></li>
- <li><a href="" data-category="54" class="">
- Vêtements bébé
- </a></li>
-
-
-
- <li class="title"><a href="" data-category="37" class="">Autres</a></li>
-
- <li><a href="" data-category="38" class="">
- Autres
- </a></li>
-
- </ul>
- </div>
-
- </section>
- </section>
- </section>
-
- <form id="search_box" name="f" action="//www.leboncoin.fr/li" method="GET" class="searchbox" data-region="6" data-type="s" data-regionname="Bretagne" data-searchbox="listing" data-friendly-enabled="1">
- <div class="grid-3-1">
- <div>
- <section class="searchbox_main">
- <div class="grid-2-1">
- <div>
- <div class="searchbox_row">
-
- <input type="text" name="q" value="" maxlength="500" id="searchtext" class="input full medium" placeholder="Que recherchez-vous ?" />
-
- <ul id="suggestTypo" class="hidden"></ul>
- <input name="ca" id="ca" value="6_s" type="hidden">
- <input name="reg_or_dpt" value="reg" type="hidden" />
- <input name="reg" value="6" type="hidden">
- <input name="nbofSuggestionLocale" value="5" type="hidden">
- <input name="l" value="0" type="hidden" />
-
-
- <input name="th" value="1" type="hidden" />
-
- <input name="zz" id="zipcoded" type="hidden">
-
-
- </div>
- </div>
- <div class="custom-small-hidden">
- <div class="searchbox_row seachbox_categories">
-
- <input type="text" id="inputSearchboxCategory" autocomplete="off"/>
-
- <div class="selectWrapper selectCategory">
- <span id="searchboxToggleCategory" class="select toggleElement" data-element="customSelect_categories"> Locations </span>
- <input type="hidden" id="search_category" name="c" value="10" class="custom-small-hidden" />
- </div>
- </div>
- </div>
- </div>
- <div class="grid-2-1 line">
- <div>
- <div class="searchbox_row">
- <section class="grid-2">
- <div>
-
- <label class="checkbox"><input type="checkbox" id="ctitle" name="it" value="1" class="trackable" />Recherche dans le titre uniquement</label>
-
- <label class="checkbox"><input type="checkbox" id="curgent" name="ur" value="1" class="trackable" />Annonces <span class="orange semibold"><i class="icon-star smallmargin"></i>Urgentes</span> uniquement</label>
- </div>
- <div class="selectWrapper custom-large-hidden">
- <select name="c" id="search_category" class="select">
- <option value="0" >Toutes cat&eacute;gories</option>
-
- <option style="background-color:#dcdcc3;" value="71" >
- -- EMPLOI --
- </option>
- <option value="33" >
- Offres d'emploi
- </option>
-
- <option style="background-color:#dcdcc3;" value="1" >
- -- VEHICULES --
- </option>
- <option value="2" >
- Voitures
- </option>
- <option value="3" >
- Motos
- </option>
- <option value="4" >
- Caravaning
- </option>
- <option value="5" >
- Utilitaires
- </option>
- <option value="6" >
- Equipement Auto
- </option>
- <option value="44" >
- Equipement Moto
- </option>
- <option value="50" >
- Equipement Caravaning
- </option>
- <option value="7" >
- Nautisme
- </option>
- <option value="51" >
- Equipement Nautisme
- </option>
-
- <option style="background-color:#dcdcc3;" value="8" >
- -- IMMOBILIER --
- </option>
- <option value="9" >
- Ventes immobilières
- </option>
- <option value="10" selected>
- Locations
- </option>
- <option value="11" >
- Colocations
- </option>
- <option value="13" >
- Bureaux &amp; Commerces
- </option>
-
- <option style="background-color:#dcdcc3;" value="66" >
- -- VACANCES --
- </option>
- <option value="12" >
- Locations &amp; Gîtes
- </option>
- <option value="67" >
- Chambres d'hôtes
- </option>
- <option value="68" >
- Campings
- </option>
- <option value="69" >
- Hôtels
- </option>
- <option value="70" >
- Hébergements insolites
- </option>
-
- <option style="background-color:#dcdcc3;" value="14" >
- -- MULTIMEDIA --
- </option>
- <option value="15" >
- Informatique
- </option>
- <option value="43" >
- Consoles &amp; Jeux vidéo
- </option>
- <option value="16" >
- Image &amp; Son
- </option>
- <option value="17" >
- Téléphonie
- </option>
-
- <option style="background-color:#dcdcc3;" value="18" >
- -- MAISON --
- </option>
- <option value="19" >
- Ameublement
- </option>
- <option value="20" >
- Electroménager
- </option>
- <option value="45" >
- Arts de la table
- </option>
- <option value="39" >
- Décoration
- </option>
- <option value="46" >
- Linge de maison
- </option>
- <option value="21" >
- Bricolage
- </option>
- <option value="52" >
- Jardinage
- </option>
- <option value="22" >
- Vêtements
- </option>
- <option value="53" >
- Chaussures
- </option>
- <option value="47" >
- Accessoires &amp; Bagagerie
- </option>
- <option value="42" >
- Montres &amp; Bijoux
- </option>
- <option value="23" >
- Equipement bébé
- </option>
- <option value="54" >
- Vêtements bébé
- </option>
-
- <option style="background-color:#dcdcc3;" value="24" >
- -- LOISIRS --
- </option>
- <option value="25" >
- DVD / Films
- </option>
- <option value="26" >
- CD / Musique
- </option>
- <option value="27" >
- Livres
- </option>
- <option value="28" >
- Animaux
- </option>
- <option value="55" >
- Vélos
- </option>
- <option value="29" >
- Sports &amp; Hobbies
- </option>
- <option value="30" >
- Instruments de musique
- </option>
- <option value="40" >
- Collection
- </option>
- <option value="41" >
- Jeux &amp; Jouets
- </option>
- <option value="48" >
- Vins &amp; Gastronomie
- </option>
-
- <option style="background-color:#dcdcc3;" value="56" >
- -- MATERIEL PROFESSIONNEL --
- </option>
- <option value="57" >
- Matériel Agricole
- </option>
- <option value="58" >
- Transport - Manutention
- </option>
- <option value="59" >
- BTP - Chantier Gros-oeuvre
- </option>
- <option value="60" >
- Outillage - Matériaux 2nd-oeuvre
- </option>
- <option value="32" >
- Équipements Industriels
- </option>
- <option value="61" >
- Restauration - Hôtellerie
- </option>
- <option value="62" >
- Fournitures de Bureau
- </option>
- <option value="63" >
- Commerces &amp; Marchés
- </option>
- <option value="64" >
- Matériel Médical
- </option>
-
- <option style="background-color:#dcdcc3;" value="31" >
- -- SERVICES --
- </option>
- <option value="34" >
- Prestations de services
- </option>
- <option value="35" >
- Billetterie
- </option>
- <option value="49" >
- Evénements
- </option>
- <option value="36" >
- Cours particuliers
- </option>
- <option value="65" >
- Covoiturage
- </option>
-
-
- <option style="background-color:#dcdcc3;" value="37" >
- --
- </option>
-
- <option value="38" >
- Autres
- </option>
-
- </select>
- </div>
- <div class="selectWrapper select_location">
- <select name="w" id="searcharea" class="select" autocomplete="off">
-
- <option value="4" >Autour de moi</option>
-
- <option value="1" selected>Bretagne</option>
-
-
- <option value="2" >R&eacute;gions voisines</option>
-
-
- <option value="3" >Toute la France</option>
-
-
- <option style="background-color:#dcdcc3;" value="0">-- DEPARTEMENT --</option>
- <option value="122" >
- Côtes-d'Armor
- </option>
-
-
-
- <option value="129" >
- Finistère
- </option>
-
-
-
- <option value="135" >
- Ille-et-Vilaine
- </option>
-
-
-
- <option value="156" >
- Morbihan
- </option>
-
-
- </select>
- <span class="icon_geoloc">&#xe102</span>
- </div>
- </section>
- </div>
- </div>
- <div>
- <script type="text/javascript">
-
- var numberOfLocation = 0;
- var numberOfAuthorizedLocation = 3;
- </script>
- <div class="searchbox_row location-container">
- <div class="inputWrapper clearfix">
-
- <input type="text" class="nude" name="location_p" placeholder="Ville ou code postal" autocomplete="off">
- <input type="hidden" name="location">
- <script type="text/javascript">
- var citySearchboxMultipleLocation = new MultipleLocation('input[name="location_p"]', numberOfLocation, numberOfAuthorizedLocation);
- </script>
- </div>
- <ul class="location-list"></ul>
-
- </div>
- <input type="hidden" name="latitude" value="48.46038" />
- <input type="hidden" name="longitude" value="-2.039149" />
- <div class="searchbox_row radiusContainer hidden">
- <span class="mrs">Dans un rayon de</span>
- <div class="selectWrapper xsmall">
- <select name="radius" id="radius" class="select">
- <option value="10000" >10 km</option>
- <option value="20000" >20 km</option>
- <option value="30000" selected>30 km</option>
- <option value="50000" >50 km</option>
- <option value="100000" >100 km</option>
- <option value="200000" >200 km</option>
- </select>
- </div>
- </div>
- </div>
- </div>
- </section>
- </div>
- <div>
- <input id="searchbutton" value="Rechercher" type="submit" class="button-blue full searchbox_row trackable" data-info='{"event_name": "ad_search::rechercher", "event_type": "click", "event_s2":"8", "click_type":"N"}' />
-
- </div>
- </div>
-
-
-
-
-
-
-
-
-
-
-
- <section id="searchboxCategories" class="searchbox_params clearfix">
-
- <div id="subtypes" class="searchbox_row">
- <span class="searchbox_rowText">Type</span>
- <label class="radio" for="type_all"><input id="type_all" type="radio" name="st" value="a" checked>&nbsp;Tous</label>
- <label class="radio" for="type_sell">
- <input id="type_sell" type="radio" name="st" value="s" >&nbsp;Ventes
- </label>
- <label class="radio" for="type_for_rent">
- <input id="type_for_rent" type="radio" name="st" value="u" >&nbsp;Locations
- </label>
- </div>
-
- <div id="pricelist" class="searchbox_row">
- <span class="searchbox_rowText">Prix entre</span>
- <div class="selectWrapper small">
-
- <select name="ps" id="ps" class="select">
- <option value="" selected="selected">Prix min</option>
-
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
- <div class="selectWrapper small">
-
- <select name="pe" id="pe" class="select">
- <option value="" selected="selected">Prix max</option>
-
- </select>
- </div>
- <span class="label-error" data-for="ps"></span>
- </div>
-
- <div id="regdatelist" class="searchbox_row">
- <span class="searchbox_rowText">Ann&eacute;e entre</span>
-
- <div class="selectWrapper small">
- <select name="rs" id="rs" class="select">
- <option value="" selected="selected">Ann&eacute;e min</option>
-
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
-
- <div class="selectWrapper small">
- <select name="re" id="re" class="select">
- <option value="" selected="selected">Ann&eacute;e max</option>
-
- </select>
- </div>
- <span class="label-error" data-for="rs"></span>
- </div>
-
- <div id="monthly_rate" class="searchbox_row">
- <span class="searchbox_rowText">Loyer entre</span>
-
- <div class="selectWrapper small">
- <select name="mrs" id="mrs" class="select">
- <option value="" selected="selected">Loyer min</option>
-
- <option value="0">
- 0
- </option>
-
- <option value="50">
- 50
- </option>
-
- <option value="100">
- 100
- </option>
-
- <option value="150">
- 150
- </option>
-
- <option value="200">
- 200
- </option>
-
- <option value="250">
- 250
- </option>
-
- <option value="300">
- 300
- </option>
-
- <option value="350">
- 350
- </option>
-
- <option value="400">
- 400
- </option>
-
- <option value="450">
- 450
- </option>
-
- <option value="500">
- 500
- </option>
-
- <option value="550">
- 550
- </option>
-
- <option value="600">
- 600
- </option>
-
- <option value="650">
- 650
- </option>
-
- <option value="700">
- 700
- </option>
-
- <option value="750">
- 750
- </option>
-
- <option value="800">
- 800
- </option>
-
- <option value="850">
- 850
- </option>
-
- <option value="900">
- 900
- </option>
+<body >
- <option value="950">
- 950
- </option>
- <option value="1000">
- 1 000
- </option>
- <option value="1100">
- 1 100
- </option>
-
- <option value="1200">
- 1 200
- </option>
-
- <option value="1300">
- 1 300
- </option>
-
- <option value="1400">
- 1 400
- </option>
-
- <option value="1500">
- 1 500
- </option>
-
- <option value="1600">
- 1 600
- </option>
-
- <option value="1700">
- 1 700
- </option>
-
- <option value="1800">
- 1 800
- </option>
-
- <option value="2000">
- 2 000
- </option>
-
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
-
- <div class="selectWrapper small">
- <select name="mre" id="mre" class="select">
- <option value="" selected="selected">Loyer max</option>
- <option value="50" >
- 50
- </option>
- <option value="100" >
- 100
- </option>
- <option value="150" >
- 150
- </option>
- <option value="200" >
- 200
- </option>
- <option value="250" >
- 250
- </option>
- <option value="300" >
- 300
- </option>
- <option value="350" >
- 350
- </option>
- <option value="400" >
- 400
- </option>
- <option value="450" >
- 450
- </option>
- <option value="500" >
- 500
- </option>
- <option value="550" >
- 550
- </option>
- <option value="600" >
- 600
- </option>
- <option value="650" >
- 650
- </option>
- <option value="700" >
- 700
- </option>
- <option value="750" >
- 750
- </option>
- <option value="800" >
- 800
- </option>
- <option value="850" >
- 850
- </option>
- <option value="900" >
- 900
- </option>
- <option value="950" >
- 950
- </option>
- <option value="1000" >
- 1 000
- </option>
- <option value="1100" >
- 1 100
- </option>
- <option value="1200" >
- 1 200
- </option>
- <option value="1300" >
- 1 300
- </option>
- <option value="1400" >
- 1 400
- </option>
- <option value="1500" >
- 1 500
- </option>
- <option value="1600" >
- 1 600
- </option>
- <option value="1700" >
- 1 700
- </option>
- <option value="1800" >
- 1 800
- </option>
- <option value="2000" >
- 2 000
- </option>
- <option value="999999" >
- Plus de 2000
- </option>
-
- </select>
- </div>
- <span class="label-error" data-for="mrs"></span>
- </div>
-
- <div id="squarelist" class="searchbox_row">
- <span class="searchbox_rowText">Surface entre</span>
-
- <div class="selectWrapper small">
- <select name="sqs" id="sqs" class="select">
- <option value="" selected="selected">Surface min</option>
-
- <option value="0">
- 0
- </option>
-
- <option value="1">
- 20
- </option>
-
- <option value="2">
- 25
- </option>
-
- <option value="3">
- 30
- </option>
-
- <option value="4">
- 35
- </option>
-
- <option value="5">
- 40
- </option>
-
- <option value="6">
- 50
- </option>
-
- <option value="7">
- 60
- </option>
-
- <option value="8">
- 70
- </option>
-
- <option value="9">
- 80
- </option>
-
- <option value="10">
- 90
- </option>
-
- <option value="11">
- 100
- </option>
-
- <option value="12">
- 110
- </option>
-
- <option value="13">
- 120
- </option>
-
- <option value="14">
- 150
- </option>
-
- <option value="15">
- 300
- </option>
-
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
-
- <div class="selectWrapper small">
- <select name="sqe" id="sqe" class="select">
- <option value="" selected="selected">Surface max</option>
-
- <option value="1">
- 20
- </option>
-
- <option value="2">
- 25
- </option>
-
- <option value="3">
- 30
- </option>
-
- <option value="4">
- 35
- </option>
-
- <option value="5">
- 40
- </option>
-
- <option value="6">
- 50
- </option>
-
- <option value="7">
- 60
- </option>
-
- <option value="8">
- 70
- </option>
-
- <option value="9">
- 80
- </option>
-
- <option value="10">
- 90
- </option>
-
- <option value="11">
- 100
- </option>
-
- <option value="12">
- 110
- </option>
-
- <option value="13">
- 120
- </option>
-
- <option value="14">
- 150
- </option>
-
- <option value="15">
- 300
- </option>
-
- <option value="16">
- Plus de 300
- </option>
-
- </select>
- </div>
- <span class="label-error" data-for="sqs"></span>
- </div>
-
- <div id="mileagelist" class="searchbox_row clear">
- <span class="searchbox_rowText">Kilom&egrave;tres</span>
-
- <div class="selectWrapper small">
- <select name="ms" id="ms" class="select" disabled>
- <option value="" selected>Kilom&egrave;tres min</option>
-
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
-
- <div class="selectWrapper small">
- <select name="me" id="me" class="select" disabled>
- <option value="" selected>Kilom&egrave;tres max</option>
-
- </select>
- </div>
- <span class="label-error" data-for="ms"></span>
- </div>
-
-
-
- <div id="availability" class="searchbox_row">
- <span class="searchbox_rowText">Dates</span>
-
-
-
-
-
- <div id="datepickerContainerA"></div>
- <span class="isDatepickerSeparator"></span>
- <div id="datepickerContainerB"></div>
- <script type="text/javascript">
- $("#datepickerContainerA").replaceWith('<span class="isDatepicker"><input name="ds_datepicker" id="availability_ds_datepicker" autocomplete="off" value="" type="text" maxlengh="10" class="input" placeholder="du" readonly="true" /></span>');
- $("#datepickerContainerB").replaceWith('<input name="ds" id="availability_ds" type="hidden" maxlength="8" value="" readonly="true" /></span>');
- </script>
-
- <script type="text/javascript">
- var davailability_conf = {date_min: 0, date_max: 730, date_delta: 1}
- </script>
-
- <div id="datepickerContainerA"></div>
-
- <div id="datepickerContainerB"></div>
- <script type="text/javascript">
- $("#datepickerContainerA").replaceWith('<span class="isDatepicker"><input name="de_datepicker" id="availability_de_datepicker" autocomplete="off" value="" type="text" maxlengh="10" class="input" placeholder="au" readonly="true" /></span>');
- $("#datepickerContainerB").replaceWith('<input name="de" id="availability_de" type="hidden" maxlength="8" value="" readonly="true" /></span>');
- </script>
-
- <script type="text/javascript">
- var davailability_conf = {date_min: 0, date_max: 730, date_delta: 1}
- </script>
-
- </div>
-
-
-
- <div id="cubic_capacity" class="searchbox_row">
- <span class="searchbox_rowText">Cylindr&eacute;e entre</span>
- <div class="selectWrapper small">
- <select name="ccs" id="cubic_capacity_ccs" class="select">
- <option value="" selected="selected">Cylindr&eacute;e min</option>
- <option value="0">
- 0
- </option>
- <option value="50">
- 50
- </option>
- <option value="80">
- 80
- </option>
- <option value="125">
- 125
- </option>
- <option value="250">
- 250
- </option>
- <option value="500">
- 500
- </option>
- <option value="600">
- 600
- </option>
- <option value="750">
- 750
- </option>
- <option value="1000">
- 1 000
- </option>
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
- <div class="selectWrapper small">
- <select name="cce" id="cubic_capacity_cce" class="select">
- <option value="" selected="selected">Cylindr&eacute;e max</option>
- <option value="50">
- 50
- </option>
- <option value="80">
- 80
- </option>
- <option value="125">
- 125
- </option>
- <option value="250">
- 250
- </option>
- <option value="500">
- 500
- </option>
- <option value="600">
- 600
- </option>
- <option value="750">
- 750
- </option>
- <option value="1000">
- 1 000
- </option>
- <option value="999999">
- Plus de 1 000
- </option>
- </select>
- </div>
- <span class="label-error" data-for="ccs"></span>
- </div>
-
- <div id="rooms" class="searchbox_row clear">
- <span class="searchbox_rowText">Pi&egrave;ces entre</span>
- <div class="selectWrapper small">
- <select name="ros" id="rooms_ros" class="select">
- <option value="" selected="selected">Pi&egrave;ces min</option>
- <option value="1">
- 1
- </option>
- <option value="2">
- 2
- </option>
- <option value="3">
- 3
- </option>
- <option value="4">
- 4
- </option>
- <option value="5">
- 5
- </option>
- <option value="6">
- 6
- </option>
- <option value="7">
- 7
- </option>
- <option value="8">
- 8
- </option>
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
- <div class="selectWrapper small">
- <select name="roe" id="rooms_roe" class="select">
- <option value="" selected="selected">Pi&egrave;ces max</option>
- <option value="1">
- 1
- </option>
- <option value="2">
- 2
- </option>
- <option value="3">
- 3
- </option>
- <option value="4">
- 4
- </option>
- <option value="5">
- 5
- </option>
- <option value="6">
- 6
- </option>
- <option value="7">
- 7
- </option>
- <option value="8">
- 8
- </option>
- <option value="999999">
- Plus de 8
- </option>
- </select>
- </div>
- <span class="label-error" data-for="ros"></span>
- </div>
-
- <div id="capacity" class="searchbox_row">
- <span class="searchbox_rowText">Personnes</span>
- <div class="selectWrapper small">
- <select name="cs" id="capacity_cs" class="select">
- <option value="" selected="selected">Capacit&eacute; min</option>
- <option value="0">
- 0
- </option>
- <option value="1">
- 1
- </option>
- <option value="2">
- 2
- </option>
- <option value="3">
- 3
- </option>
- <option value="4">
- 4
- </option>
- <option value="5">
- 5
- </option>
- <option value="6">
- 6
- </option>
- <option value="7">
- 7
- </option>
- <option value="8">
- 8
- </option>
- <option value="9">
- 9
- </option>
- <option value="10">
- 10
- </option>
- <option value="11">
- 11
- </option>
- <option value="12">
- 12
- </option>
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
- <div class="selectWrapper small">
- <select name="ce" id="capacity_ce" class="select">
- <option value="" selected="selected">Capacit&eacute; max</option>
- <option value="0">
- 0
- </option>
- <option value="1">
- 1
- </option>
- <option value="2">
- 2
- </option>
- <option value="3">
- 3
- </option>
- <option value="4">
- 4
- </option>
- <option value="5">
- 5
- </option>
- <option value="6">
- 6
- </option>
- <option value="7">
- 7
- </option>
- <option value="8">
- 8
- </option>
- <option value="9">
- 9
- </option>
- <option value="10">
- 10
- </option>
- <option value="11">
- 11
- </option>
- <option value="12">
- 12
- </option>
- <option value="999999">
- Plus de 12
- </option>
- </select>
- </div>
- <span class="label-error" data-for="cs"></span>
- </div>
-
- <div id="bedrooms" class="searchbox_row">
- <span class="searchbox_rowText">Chambres</span>
- <div class="selectWrapper small">
- <select name="bros" class="select">
- <option value="" selected="selected">Chambres min</option>
- <option value="0">
- 0
- </option>
- <option value="1">
- 1
- </option>
- <option value="2">
- 2
- </option>
- <option value="3">
- 3
- </option>
- <option value="4">
- 4
- </option>
- <option value="5">
- 5
- </option>
- <option value="6">
- 6
- </option>
- </select>
- </div>
- <span class="searchbox_rowText small">et</span>
- <div class="selectWrapper small">
- <select name="broe" class="select">
- <option value="" selected="selected">Chambres max</option>
- <option value="0">
- 0
- </option>
- <option value="1">
- 1
- </option>
- <option value="2">
- 2
- </option>
- <option value="3">
- 3
- </option>
- <option value="4">
- 4
- </option>
- <option value="5">
- 5
- </option>
- <option value="6">
- 6
- </option>
- <option value="999999">
- Plus de 6
- </option>
- </select>
- </div>
- <span class="label-error" data-for="bros"></span>
- </div>
-
-
-
- <div id="baby_age" class="searchbox_row">
-
- <div class="selectWrapper small single">
- <select name="bage" id="baby_aged" class="select">
- <option value="">Taille</option>
- <option value="p" >
- Pr&eacute;matur&eacute;
- </option>
- <option value="0" >
- 0 mois
- </option>
- <option value="1" >
- 1 mois
- </option>
- <option value="3" >
- 3 mois
- </option>
- <option value="6" >
- 6 mois
- </option>
- <option value="9" >
- 9 mois
- </option>
- <option value="12" >
- 12 mois
- </option>
- <option value="18" >
- 18 mois
- </option>
- <option value="24" >
- 24 mois
- </option>
- <option value="36" >
- 36 mois
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="brand" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="brd" class="select" id="brand_select">
- <option value="">Marque</option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="model" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="mdl" class="select" id="model_select">
- <option value="">Mod&egrave;le</option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="fuel" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="fu" id="fueld" class="select">
- <option value="">Energie</option>
- <option value="1" >
- Essence
- </option>
- <option value="2" >
- Diesel
- </option>
- <option value="3" >
- GPL
- </option>
- <option value="4" >
- Electrique
- </option>
- <option value="6" >
- Hybride
- </option>
- <option value="5" >
- Autre
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="gearbox" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="gb" class="select" id="gearboxd">
- <option value="">Bo&icirc;te de vitesse</option>
- <option value="1" >
- Manuelle
- </option>
- <option value="2" >
- Automatique
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="swimming_pool" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="swp" class="select" id="swimming_poold">
- <option value="">Piscine</option>
- <option value="1" >
- Oui
- </option>
- <option value="2" >
- Non
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="shoe_type" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="shoet" id="shoe_typed" class="select">
- <option value="">Type</option>
- <option value="1" >
- Femme
- </option>
- <option value="2" >
- Homme
- </option>
- <option value="3" >
- Enfant
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="shoe_size" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="shoes" id="shoe_sized" class="select">
- <option value="">Pointure</option>
- <option value="1" >
- 16
- </option>
- <option value="2" >
- 17
- </option>
- <option value="3" >
- 18
- </option>
- <option value="4" >
- 19
- </option>
- <option value="5" >
- 20
- </option>
- <option value="6" >
- 21
- </option>
- <option value="7" >
- 22
- </option>
- <option value="8" >
- 23
- </option>
- <option value="9" >
- 24
- </option>
- <option value="10" >
- 25
- </option>
- <option value="11" >
- 26
- </option>
- <option value="12" >
- 27
- </option>
- <option value="13" >
- 28
- </option>
- <option value="14" >
- 29
- </option>
- <option value="15" >
- 30
- </option>
- <option value="16" >
- 31
- </option>
- <option value="17" >
- 32
- </option>
- <option value="18" >
- 33
- </option>
- <option value="19" >
- 34
- </option>
- <option value="20" >
- 35
- </option>
- <option value="21" >
- 36
- </option>
- <option value="22" >
- 37
- </option>
- <option value="23" >
- 38
- </option>
- <option value="24" >
- 39
- </option>
- <option value="25" >
- 40
- </option>
- <option value="26" >
- 41
- </option>
- <option value="27" >
- 42
- </option>
- <option value="28" >
- 43
- </option>
- <option value="29" >
- 44
- </option>
- <option value="30" >
- 45
- </option>
- <option value="31" >
- 46
- </option>
- <option value="32" >
- 47
- </option>
- <option value="33" >
- 48
- </option>
- <option value="34" >
- 49
- </option>
- <option value="35" >
- 50 et plus
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="clothing_type" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="ct" id="clothing_typed" class="select" onchange="showClothingSize('s', 'clothing_typed','null');">
- <option value="">Type</option>
- <option value="1" >
- Femme
- </option>
- <option value="2" >
- Femme enceinte
- </option>
- <option value="3" >
- Homme
- </option>
- <option value="4" >
- Enfant
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="clothing_st" class="searchbox_row">
- <div class="selectWrapper small single disabled">
- <select name="clos" class="select" id="clothing_std" disabled="true">
- <option value="">Taille</option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="animal_type" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="anit" id="animal_typed" class="select">
- <option value="">Type de l'offre</option>
- <option value="1" >
- Chiens &amp; Chats
- </option>
- <option value="2" >
- Autres animaux
- </option>
- <option value="3" >
- Accessoires
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="animal_offer_nature" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="anioffnat" id="animal_natured" class="select">
- <option value="">Nature de l'offre</option>
- <option value="1" >
- Vente
- </option>
- <option value="2" >
- Don (gratuit)
- </option>
- <option value="3" >
- Saillie
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="real_estate_type" class="searchbox_row">
- <span class="searchbox_rowText">Type</span>
- <label class="checkbox" for="ret_1">
- <input type="checkbox" name="ret" value="1" id="ret_1">Maison
- </label><label class="checkbox" for="ret_2">
- <input type="checkbox" name="ret" value="2" id="ret_2">Appartement
- </label><label class="checkbox" for="ret_3">
- <input type="checkbox" name="ret" value="3" id="ret_3">Terrain
- </label><label class="checkbox" for="ret_4">
- <input type="checkbox" name="ret" value="4" id="ret_4">Parking
- </label><label class="checkbox" for="ret_5">
- <input type="checkbox" name="ret" value="5" id="ret_5">Autre
- </label>
- </div>
-
-
-
-
- <div id="furnished" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="furn" class="select" id="furn">
- <option value="">Meubl&eacute; / Non meubl&eacute;</option>
- <option value="1" >
- Meubl&eacute;
- </option>
- <option value="2" >
- Non meubl&eacute;
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="jobcontract" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="jobc" id="jobcontractd" class="select">
- <option value="">Type de contrat</option>
- <option value="1" >
- CDD
- </option>
- <option value="2" >
- CDI
- </option>
- <option value="3" >
- Int&eacute;rim
- </option>
- <option value="4" >
- Ind&eacute;pendant/Franchise
- </option>
- <option value="6" >
- Apprentissage
- </option>
- <option value="5" >
- Stage/Alternance
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="jobduty" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="jobd" id="jobdutyd" class="select">
- <option value="">Fonction</option>
- <option value="1" >
- Administration/Services g&eacute;n&eacute;raux
- </option>
- <option value="2" >
- Commercial/Vente
- </option>
- <option value="3" >
- Comptabilit&eacute;/Gestion/Finance
- </option>
- <option value="4" >
- Conseil/Audit
- </option>
- <option value="5" >
- Direction G&eacute;n&eacute;rale
- </option>
- <option value="16" >
- Etudes/Recherches/Ing&eacute;nieries
- </option>
- <option value="15" >
- Formation/Education
- </option>
- <option value="7" >
- H&ocirc;tellerie/Restauration
- </option>
- <option value="8" >
- Informatique/Internet
- </option>
- <option value="9" >
- Juridique
- </option>
- <option value="10" >
- Logistique/Achat/Transport
- </option>
- <option value="11" >
- Marketing/Communication
- </option>
- <option value="18" >
- M&eacute;decine/Sant&eacute;
- </option>
- <option value="12" >
- M&eacute;nage/Entretien
- </option>
- <option value="17" >
- Ouvrier/Artisan
- </option>
- <option value="19" >
- Production/Op&eacute;rations
- </option>
- <option value="13" >
- Ressources Humaines/Formation
- </option>
- <option value="6" >
- S&eacute;curit&eacute;/D&eacute;fense/Gardiennage
- </option>
- <option value="14" >
- Services &agrave; la personne
- </option>
- <option value="20" >
- Service Client/Accueil
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="jobexp" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="jobe" id="jobexpd" class="select">
- <option value="">Exp&eacute;rience</option>
- <option value="1" >
- 0 &agrave; 2 ans
- </option>
- <option value="3" >
- 2 &agrave; 5 ans
- </option>
- <option value="5" >
- 5 ans et plus
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="jobfield" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="jobf" id="jobfieldd" class="select">
- <option value="">Secteur d'activit&eacute;</option>
- <option value="1" >
- Agriculture
- </option>
- <option value="4" >
- Banque/Assurance/Finance
- </option>
- <option value="2" >
- BTP/Construction
- </option>
- <option value="3" >
- Commerce/Distribution
- </option>
- <option value="13" >
- H&ocirc;tellerie/Restauration
- </option>
- <option value="6" >
- Immobilier
- </option>
- <option value="5" >
- Industrie/Environnement
- </option>
- <option value="8" >
- M&eacute;decine/Sant&eacute;
- </option>
- <option value="9" >
- Services
- </option>
- <option value="16" >
- Services &agrave; la personne
- </option>
- <option value="7" >
- Services publics/Administrations
- </option>
- <option value="15" >
- Sport
- </option>
- <option value="10" >
- T&eacute;l&eacute;com/Internet/M&eacute;dias
- </option>
- <option value="14" >
- Textile/Mode/Luxe
- </option>
- <option value="11" >
- Tourisme
- </option>
- <option value="12" >
- Transport/Logistique
- </option>
-
- </select>
- </div>
- </div>
-
-
-
- <div id="jobstudy" class="searchbox_row">
- <div class="selectWrapper small single">
- <select name="jobs" id="jobstudyd" class="select">
- <option value="">Niveau d'&eacute;tudes</option>
- <option value="1" >
- Sans dipl&ocirc;me
- </option>
- <option value="2" >
- BEP/CAP
- </option>
- <option value="3" >
- Employ&eacute;/Ouvrier sp&eacute;cialis&eacute;/Bac
- </option>
- <option value="4" >
- Technicien/Employ&eacute;/Bac+2
- </option>
- <option value="5" >
- Agent de ma&icirc;trise/Bac+3
- </option>
- <option value="6" >
- Ing&eacute;nieur/Cadre/Bac+5 ou plus
- </option>
-
- </select>
- </div>
- </div>
-
-
-
-
- <div id="jobtime" class="searchbox_row">
- <div class="selectWrapper medium single">
- <select name="jobt" id="jobtimed" class="select">
- <option value="">Temps plein/partiel</option>
- <option value="1" >
- Temps plein
- </option>
- <option value="2" >
- Temps partiel
- </option>
-
- </select>
- </div>
- </div>
-
-
- </section>
<script>
- var fieldObject = {
- 'select[name="ps"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="pe"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="mrs"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="mre"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="rs"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="re"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="ms"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="me"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="ccs"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="cce"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="sqs"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="sqe"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="ros"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="roe"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="cs"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="ce"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- },
- 'select[name="bros"]': {
- 'verifyValue' : {
- 'compareWith' : 'select[name="broe"]',
- 'rule' : 'underequal',
- 'errorMessage' : 'Le minimum est sup&eacute;rieur au maximum.'
- }
- }
- };
-
- searchboxForm = new Form('#search_box', '#search_box .input', fieldObject, true, false);
+ !(function(a, b, c, d, e, f) {
+ a.ddjskey = e
+ a.ddoptions = f || null
+ var m = b.createElement(c),
+ n = b.getElementsByTagName(c)[0]
+ ;(m.async = 1), (m.src = d), n.parentNode.insertBefore(m, n)
+ })(window,
+ document,
+ 'script',
+ '//js.datadome.co/tags.js',
+ '05B30BD9055986BD2EE8F5A199D973',
+ { ajaxListenerPath: 'api.leboncoin.fr' })
</script>
+<div id="application"><div data-reactroot="" data-reactid="1" data-react-checksum="-1918284644"><!-- react-empty: 2 --><div data-reactid="3"><!-- react-empty: 4 --><!-- react-empty: 5 --><section id="container" data-reactid="6"><!-- react-empty: 7 --><!-- react-empty: 8 --><main class="_2ketD" role="main" data-reactid="9"><div data-reactid="10"><div class="_1Ob0P" data-reactid="11"><header class="Nbrvg" role="banner" data-reactid="12"><div class="_2zoz9" data-reactid="13"><div class="_3txcS" data-reactid="14"><span class="_1oSml _334NS _3FKvu" data-reactid="15"><svg width="1em" height="1em" viewBox="0 0 20 14" data-reactid="16"><path d="M1.111 14H18.89C19.5 14 20 13.475 20 12.833c0-.641-.5-1.166-1.111-1.166H1.11C.5 11.667 0 12.192 0 12.833 0 13.475.5 14 1.111 14zm0-5.833H18.89C19.5 8.167 20 7.642 20 7s-.5-1.167-1.111-1.167H1.11C.5 5.833 0 6.358 0 7s.5 1.167 1.111 1.167zM0 1.167c0 .641.5 1.166 1.111 1.166H18.89C19.5 2.333 20 1.808 20 1.167 20 .525 19.5 0 18.889 0H1.11C.5 0 0 .525 0 1.167z" fill="#1A1A1A" fill-rule="evenodd" data-reactid="17"></path></svg></span></div><nav class="_2_L_T" data-reactid="18"><div class="GkC3g" data-reactid="19"><a data-test-id="link" class="trackable" href="/" data-reactid="20"><div class="_2qvq6" data-reactid="21"><span class="_1oSml _334NS _3FKvu" data-reactid="22"><svg width="1em" height="1em" viewBox="0 0 230 45" data-reactid="23"><path d="M58.29 36.625c3.604-.006 5.83-2.864 5.83-7.11 0-4.25-2.22-7.1-5.82-7.1s-5.81 2.84-5.81 7.1c0 4.256 2.206 7.104 5.8 7.11zm2.7-21.1c6.87 0 11.4 5.92 11.5 13.89 0 8.1-4.74 14.1-11.69 14.1a10 10 0 0 1-8.66-4.63h-.11v4.11h-7.54V6.915c0-2.75 1.83-4.47 4-4.47s4 1.72 4 4.47v12.86h.11a10.212 10.212 0 0 1 8.39-4.25zm27.76 21.1c3.61 0 5.81-2.86 5.81-7.11s-2.2-7.1-5.81-7.1c-3.61 0-5.81 2.84-5.81 7.1s2.2 7.11 5.81 7.11zm0-21.1c8.5 0 14 5.81 14 14 0 8.19-5.49 14-14 14s-14-5.81-14-14c0-8.19 5.49-14 14-14zm106.85 0c2.2 0 4.03 1.72 4.07 4.47v23h-8.07v-23c0-2.75 1.79-4.47 4-4.47zm0-14.05a4.9 4.9 0 0 1 0 9.8h-.002a4.9 4.9 0 1 1 .003-9.8zm25.24 14.05c5.6 0 8.61 3.98 8.61 10.01v17.46h-8.07v-15.2c0-3.55-1.67-4.73-3.77-4.73-3.12 0-5.49 2.63-5.49 8.23v11.7h-8.07v-23.25c0-2.64 1.73-4.2 3.77-4.2s3.76 1.56 3.76 4.2v1h.11a10.637 10.637 0 0 1 9.15-5.22zm-46.67 21.1c3.61 0 5.82-2.86 5.82-7.11s-2.219-7.1-5.82-7.1c-3.6 0-5.81 2.84-5.81 7.1s2.21 7.11 5.81 7.11zm0-21.1c8.511 0 14 5.81 14 14 0 8.19-5.489 14-14 14-8.51 0-14-5.81-14-14 0-8.19 5.5-14 14-14zm-25.94 7c-3.5 0-5.65 2.58-5.65 7s2.15 7 5.65 7a5.407 5.407 0 0 0 4.9-2.69h.1l5.87 3.77c-2.04 3.98-6.3 5.92-11.14 5.92-8.4 0-13.57-5.81-13.57-14 0-8.19 5.17-14 13.57-14 4.84 0 9.14 1.92 11.14 5.92l-5.87 3.77h-.1a5.406 5.406 0 0 0-4.9-2.69zm-25.46-7c5.6 0 8.61 3.98 8.63 10.01v17.46h-8.07v-15.2c0-3.55-1.67-4.73-3.77-4.73-3.12 0-5.49 2.63-5.49 8.23v11.7h-8.08v-23.27c0-2.64 1.7-4.18 3.75-4.18s3.77 1.56 3.77 4.2v1h.11a10.627 10.627 0 0 1 9.15-5.22zm-100.23 12.4a9.966 9.966 0 0 0 .54 3.01l9-6.67a4.48 4.48 0 0 0-4.12-2.34c-2.55 0-5.42 1.92-5.42 6zm7.82 9a8.32 8.32 0 0 0 6.89-4.44l5.31 3.84c-2.03 4.13-6.17 7.19-13.17 7.19a13.68 13.68 0 0 1-9-3.4c-3.52 2.34-6.52 3.34-9.52 3.34-6.05 0-10.32-4.05-10.32-10.13V6.845c0-2.74 1.82-4.46 4-4.46 2.18 0 4 1.72 4 4.46v25.81c0 2.6 1.14 4 3.53 4 1.3 0 2.71-.75 4.54-1.75a16.647 16.647 0 0 1-1.3-6.57c0-5.71 4.07-12.81 12.62-12.81 7.41 0 11.39 4.31 13.05 9.72l-14.27 10.24a5.181 5.181 0 0 0 3.64 1.44z" fill="#000" fill-rule="evenodd" data-reactid="24"></path></svg></span></div></a><a href="https://www.leboncoin.fr/ai" class="_21T6_ trackable" data-qa-id="header_newad_link" title="Déposer une annonce" data-test-id="link" data-reactid="25"><div class="_3yYSR _3MR3R" data-reactid="26"><div class="_1-7jO" data-reactid="27"><span class="_1oSml _1vO9p wnMxI" data-reactid="28"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="29"><path d="M17.33 10.67h-4v-4a1.33 1.33 0 1 0-2.66 0v4h-4a1.33 1.33 0 1 0 0 2.66h4v4a1.33 1.33 0 1 0 2.66 0v-4h4a1.33 1.33 0 1 0 0-2.66z" data-reactid="30"></path><path d="M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v19.2A2.41 2.41 0 0 0 2.4 24h19.2a2.41 2.41 0 0 0 2.4-2.4V2.4A2.41 2.41 0 0 0 21.6 0zm0 20.4a1.2 1.2 0 0 1-1.2 1.2H3.6a1.2 1.2 0 0 1-1.2-1.2V3.6a1.2 1.2 0 0 1 1.2-1.2h16.8a1.2 1.2 0 0 1 1.2 1.2v16.8z" data-reactid="31"></path></svg></span></div><span data-text="Déposer une annonce" data-reactid="32">Déposer une annonce</span></div></a><a title="Rechercher" data-test-id="link" class="trackable" href="/annonces/offres/bretagne/" data-reactid="33"><div class="_3yYSR _1L8rT" data-reactid="34"><div class="_1-7jO" data-reactid="35"><span class="_1oSml _1vO9p _1UZDG" data-reactid="36"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="37"><path d="M23.58 21.45l-7-7a9.42 9.42 0 0 0 1.62-6.87A9.13 9.13 0 0 0 10.34.07a9.25 9.25 0 0 0-2.81 18.27 9.25 9.25 0 0 0 7-1.76l7 7a1.54 1.54 0 0 0 2.11 0 1.56 1.56 0 0 0-.06-2.13zM9.22 15.5a6.37 6.37 0 1 1 6.33-6.37 6.33 6.33 0 0 1-6.33 6.37z" data-reactid="38"></path></svg></span></div><span data-text="Rechercher" data-reactid="39">Rechercher</span></div></a></div><div class="GkC3g" data-reactid="40"><a title="Mes recherches" data-test-id="link" class="trackable" href="/mes-recherches/" data-reactid="41"><div class="_3yYSR _3Vavx" data-reactid="42"><div class="_1-7jO" data-reactid="43"><span class="_1oSml _1vO9p _1UZDG" data-reactid="44"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="45"><path d="M12 24a2.49 2.49 0 0 0 2.5-2.46h-5A2.48 2.48 0 0 0 12 24zM21.13 18.2l-1.62-1.58v-6.16c0-3.78-2.05-6.94-5.63-7.78v-.83a1.88 1.88 0 0 0-3.76 0v.83c-3.59.84-5.63 4-5.63 7.78v6.16L2.87 18.2a1.23 1.23 0 0 0 .88 2.11h16.49a1.23 1.23 0 0 0 .89-2.11zM17 17.85H7v-7.39c0-3.05 1.89-5.54 5-5.54s5 2.49 5 5.54z" data-reactid="46"></path></svg></span></div><span data-text="Mes recherches" data-reactid="47">Mes recherches</span></div></a><a title="Mes favoris" data-test-id="link" class="trackable" href="/mes-annonces/" data-reactid="48"><div class="_3yYSR _3Vavx" data-reactid="49"><div class="_1-7jO" data-reactid="50"><span class="_1oSml _1vO9p _1UZDG" data-reactid="51"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="52"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="53"></path></svg></span></div><span data-text="Mes favoris" data-reactid="54">Mes favoris</span></div></a><a title="Messages" data-test-id="link" class="trackable" href="/messages/" data-reactid="55"><div class="_3yYSR _3Vavx" data-reactid="56"><div class="_1-7jO" data-reactid="57"><span class="_1oSml _1vO9p _1UZDG" data-reactid="58"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="59"><path d="M18 12h-7.2a1.13 1.13 0 0 0-1.2 1.2 1.13 1.13 0 0 0 1.2 1.2H18a1.2 1.2 0 0 0 0-2.4zM6 7.2h12A1.13 1.13 0 0 0 19.2 6 1.13 1.13 0 0 0 18 4.8H6a1.2 1.2 0 0 0 0 2.4z" data-reactid="60"></path><path d="M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v14.4a2.41 2.41 0 0 0 2.4 2.4h16.8L24 24V2.4A2.41 2.41 0 0 0 21.6 0zm0 18.24l-1.44-1.44H2.4V2.4h19.2z" data-reactid="61"></path><path d="M6 10.8h12a1.13 1.13 0 0 0 1.2-1.2A1.13 1.13 0 0 0 18 8.4H6a1.2 1.2 0 1 0 0 2.4z" data-reactid="62"></path></svg></span></div><span data-text="Messages" data-reactid="63">Messages</span></div></a><div class="_3yYSR _3Vavx" data-reactid="64"><div class="_1-7jO" data-reactid="65"><span class="_1oSml _1vO9p _1UZDG" data-reactid="66"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="67"><path d="M12 12a5.92 5.92 0 0 0 5.86-6A5.93 5.93 0 0 0 12 0a5.93 5.93 0 0 0-5.86 6A5.92 5.92 0 0 0 12 12zm0-9a3 3 0 1 1-2.93 3A3 3 0 0 1 12 3zM22.46 22.13a10.68 10.68 0 0 0-10.46-8 10.68 10.68 0 0 0-10.46 8A1.5 1.5 0 0 0 2.61 24a1.46 1.46 0 0 0 1.78-1.08A7.72 7.72 0 0 1 12 17.09a7.72 7.72 0 0 1 7.61 5.78A1.48 1.48 0 0 0 21 24a1.12 1.12 0 0 0 .36-.05 1.5 1.5 0 0 0 1.1-1.82z" data-reactid="68"></path></svg></span></div><span data-text="[object Object]" data-reactid="69"><div data-reactid="70"><span class="_1xNum" data-reactid="71">.</span><span class="_1xNum" data-reactid="72">.</span><span class="_1xNum" data-reactid="73">.</span></div></span></div></div></nav><div class="_3txcS" data-reactid="74"><span class="_1oSml _1Cvux _3FKvu" data-reactid="75"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="76"><path d="M23.58 21.45l-7-7a9.42 9.42 0 0 0 1.62-6.87A9.13 9.13 0 0 0 10.34.07a9.25 9.25 0 0 0-2.81 18.27 9.25 9.25 0 0 0 7-1.76l7 7a1.54 1.54 0 0 0 2.11 0 1.56 1.56 0 0 0-.06-2.13zM9.22 15.5a6.37 6.37 0 1 1 6.33-6.37 6.33 6.33 0 0 1-6.33 6.37z" data-reactid="77"></path></svg></span></div></div><div class="hiqJJ" data-reactid="78"><div class="_3oH8M" data-reactid="79"></div><div class="_3coq2" data-reactid="80"><span class="_1oSml _1Cvux wnMxI" data-reactid="81"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="82"><path d="M23.47 20.9l-8.9-8.9 8.9-8.9A1.81 1.81 0 0 0 20.9.55L12 9.43 3.1.53A1.82 1.82 0 0 0 .53 3.1l8.9 8.9-8.9 8.9a1.82 1.82 0 0 0 2.57 2.57l8.9-8.9 8.9 8.9a1.82 1.82 0 0 0 2.57-2.57z" data-reactid="83"></path></svg></span></div><div class="_1WBQn" data-reactid="84"><div class="myDvm" data-reactid="85"><a data-test-id="link" class="trackable" href="/" data-reactid="86"><div class="_2qvq6" data-reactid="87"><span class="_1oSml _334NS _3FKvu" data-reactid="88"><svg width="1em" height="1em" viewBox="0 0 230 45" data-reactid="89"><path d="M58.29 36.625c3.604-.006 5.83-2.864 5.83-7.11 0-4.25-2.22-7.1-5.82-7.1s-5.81 2.84-5.81 7.1c0 4.256 2.206 7.104 5.8 7.11zm2.7-21.1c6.87 0 11.4 5.92 11.5 13.89 0 8.1-4.74 14.1-11.69 14.1a10 10 0 0 1-8.66-4.63h-.11v4.11h-7.54V6.915c0-2.75 1.83-4.47 4-4.47s4 1.72 4 4.47v12.86h.11a10.212 10.212 0 0 1 8.39-4.25zm27.76 21.1c3.61 0 5.81-2.86 5.81-7.11s-2.2-7.1-5.81-7.1c-3.61 0-5.81 2.84-5.81 7.1s2.2 7.11 5.81 7.11zm0-21.1c8.5 0 14 5.81 14 14 0 8.19-5.49 14-14 14s-14-5.81-14-14c0-8.19 5.49-14 14-14zm106.85 0c2.2 0 4.03 1.72 4.07 4.47v23h-8.07v-23c0-2.75 1.79-4.47 4-4.47zm0-14.05a4.9 4.9 0 0 1 0 9.8h-.002a4.9 4.9 0 1 1 .003-9.8zm25.24 14.05c5.6 0 8.61 3.98 8.61 10.01v17.46h-8.07v-15.2c0-3.55-1.67-4.73-3.77-4.73-3.12 0-5.49 2.63-5.49 8.23v11.7h-8.07v-23.25c0-2.64 1.73-4.2 3.77-4.2s3.76 1.56 3.76 4.2v1h.11a10.637 10.637 0 0 1 9.15-5.22zm-46.67 21.1c3.61 0 5.82-2.86 5.82-7.11s-2.219-7.1-5.82-7.1c-3.6 0-5.81 2.84-5.81 7.1s2.21 7.11 5.81 7.11zm0-21.1c8.511 0 14 5.81 14 14 0 8.19-5.489 14-14 14-8.51 0-14-5.81-14-14 0-8.19 5.5-14 14-14zm-25.94 7c-3.5 0-5.65 2.58-5.65 7s2.15 7 5.65 7a5.407 5.407 0 0 0 4.9-2.69h.1l5.87 3.77c-2.04 3.98-6.3 5.92-11.14 5.92-8.4 0-13.57-5.81-13.57-14 0-8.19 5.17-14 13.57-14 4.84 0 9.14 1.92 11.14 5.92l-5.87 3.77h-.1a5.406 5.406 0 0 0-4.9-2.69zm-25.46-7c5.6 0 8.61 3.98 8.63 10.01v17.46h-8.07v-15.2c0-3.55-1.67-4.73-3.77-4.73-3.12 0-5.49 2.63-5.49 8.23v11.7h-8.08v-23.27c0-2.64 1.7-4.18 3.75-4.18s3.77 1.56 3.77 4.2v1h.11a10.627 10.627 0 0 1 9.15-5.22zm-100.23 12.4a9.966 9.966 0 0 0 .54 3.01l9-6.67a4.48 4.48 0 0 0-4.12-2.34c-2.55 0-5.42 1.92-5.42 6zm7.82 9a8.32 8.32 0 0 0 6.89-4.44l5.31 3.84c-2.03 4.13-6.17 7.19-13.17 7.19a13.68 13.68 0 0 1-9-3.4c-3.52 2.34-6.52 3.34-9.52 3.34-6.05 0-10.32-4.05-10.32-10.13V6.845c0-2.74 1.82-4.46 4-4.46 2.18 0 4 1.72 4 4.46v25.81c0 2.6 1.14 4 3.53 4 1.3 0 2.71-.75 4.54-1.75a16.647 16.647 0 0 1-1.3-6.57c0-5.71 4.07-12.81 12.62-12.81 7.41 0 11.39 4.31 13.05 9.72l-14.27 10.24a5.181 5.181 0 0 0 3.64 1.44z" fill="#000" fill-rule="evenodd" data-reactid="90"></path></svg></span></div></a></div><div class="_3f6Od" data-reactid="91"><a href="https://www.leboncoin.fr/ai" data-test-id="link" data-qa-id="mobile_newad_link" title="Déposer une annonce" class="trackable" data-reactid="92"><div class="_2ji3Y _2HOIF _2TAtu Ozueg" data-reactid="93"><div class="JS9Uj" data-reactid="94"><span class="_1oSml _1Cvux _1UZDG" data-reactid="95"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="96"><path d="M17.33 10.67h-4v-4a1.33 1.33 0 1 0-2.66 0v4h-4a1.33 1.33 0 1 0 0 2.66h4v4a1.33 1.33 0 1 0 2.66 0v-4h4a1.33 1.33 0 1 0 0-2.66z" data-reactid="97"></path><path d="M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v19.2A2.41 2.41 0 0 0 2.4 24h19.2a2.41 2.41 0 0 0 2.4-2.4V2.4A2.41 2.41 0 0 0 21.6 0zm0 20.4a1.2 1.2 0 0 1-1.2 1.2H3.6a1.2 1.2 0 0 1-1.2-1.2V3.6a1.2 1.2 0 0 1 1.2-1.2h16.8a1.2 1.2 0 0 1 1.2 1.2v16.8z" data-reactid="98"></path></svg></span></div><!-- react-text: 99 -->Déposer une annonce<!-- /react-text --></div></a><a title="Rechercher" data-test-id="link" class="trackable" href="/annonces/offres/bretagne/" data-reactid="100"><div class="_2ji3Y _2HOIF _2TAtu Ozueg W7-JQ" data-reactid="101"><div class="JS9Uj" data-reactid="102"><span class="_1oSml _1Cvux _1UZDG" data-reactid="103"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="104"><path d="M23.58 21.45l-7-7a9.42 9.42 0 0 0 1.62-6.87A9.13 9.13 0 0 0 10.34.07a9.25 9.25 0 0 0-2.81 18.27 9.25 9.25 0 0 0 7-1.76l7 7a1.54 1.54 0 0 0 2.11 0 1.56 1.56 0 0 0-.06-2.13zM9.22 15.5a6.37 6.37 0 1 1 6.33-6.37 6.33 6.33 0 0 1-6.33 6.37z" data-reactid="105"></path></svg></span></div><!-- react-text: 106 -->Rechercher<!-- /react-text --></div></a></div><div class="_2HkVh" data-reactid="107"></div><div class="_3f6Od" data-reactid="108"><div class="_1fA1E" data-reactid="109">Mon espace</div><a title="Mes recherches" data-test-id="link" class="trackable" href="/mes-recherches/" data-reactid="110"><div class="_2ji3Y _2HOIF _2TAtu Ozueg" data-reactid="111"><div class="JS9Uj" data-reactid="112"><span class="_1oSml _1Cvux _1UZDG" data-reactid="113"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="114"><path d="M12 24a2.49 2.49 0 0 0 2.5-2.46h-5A2.48 2.48 0 0 0 12 24zM21.13 18.2l-1.62-1.58v-6.16c0-3.78-2.05-6.94-5.63-7.78v-.83a1.88 1.88 0 0 0-3.76 0v.83c-3.59.84-5.63 4-5.63 7.78v6.16L2.87 18.2a1.23 1.23 0 0 0 .88 2.11h16.49a1.23 1.23 0 0 0 .89-2.11zM17 17.85H7v-7.39c0-3.05 1.89-5.54 5-5.54s5 2.49 5 5.54z" data-reactid="115"></path></svg></span></div><!-- react-text: 116 -->Mes recherches<!-- /react-text --></div></a><a title="Mes favoris" data-test-id="link" class="trackable" href="/mes-annonces/" data-reactid="117"><div class="_2ji3Y _2HOIF _2TAtu Ozueg" data-reactid="118"><div class="JS9Uj" data-reactid="119"><span class="_1oSml _1Cvux _1UZDG" data-reactid="120"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="121"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="122"></path></svg></span></div><!-- react-text: 123 -->Mes favoris<!-- /react-text --></div></a><a title="Messages" data-test-id="link" class="trackable" href="/messages/" data-reactid="124"><div class="_2ji3Y _2HOIF _2TAtu Ozueg" data-reactid="125"><div class="JS9Uj" data-reactid="126"><span class="_1oSml _1Cvux _1UZDG" data-reactid="127"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="128"><path d="M18 12h-7.2a1.13 1.13 0 0 0-1.2 1.2 1.13 1.13 0 0 0 1.2 1.2H18a1.2 1.2 0 0 0 0-2.4zM6 7.2h12A1.13 1.13 0 0 0 19.2 6 1.13 1.13 0 0 0 18 4.8H6a1.2 1.2 0 0 0 0 2.4z" data-reactid="129"></path><path d="M21.6 0H2.4A2.41 2.41 0 0 0 0 2.4v14.4a2.41 2.41 0 0 0 2.4 2.4h16.8L24 24V2.4A2.41 2.41 0 0 0 21.6 0zm0 18.24l-1.44-1.44H2.4V2.4h19.2z" data-reactid="130"></path><path d="M6 10.8h12a1.13 1.13 0 0 0 1.2-1.2A1.13 1.13 0 0 0 18 8.4H6a1.2 1.2 0 1 0 0 2.4z" data-reactid="131"></path></svg></span></div><!-- react-text: 132 -->Messages<!-- /react-text --></div></a></div><div class="_3f6Od _2FbRA" data-reactid="133"><div data-qa-id="mobile_login" class="trackable" data-reactid="134"><div class="_2ji3Y tkKD0 _2TAtu Ozueg" data-reactid="135"><!-- react-text: 136 -->Se connecter<!-- /react-text --></div></div><div class="_2HkVh" data-reactid="137"></div><div class="_2ji3Y _2HOIF nPuTz _1Qmaj" data-reactid="138"><div class="JS9Uj" data-reactid="139"><span class="_1oSml _1Cvux _1UZDG" data-reactid="140"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="141"><path d="M18.38 10.49L8.62.63a2.1 2.1 0 0 0-3 0 2.15 2.15 0 0 0 0 3L13.87 12l-8.25 8.32a2.2 2.2 0 0 0 0 3.05 2.1 2.1 0 0 0 3 0l9.76-9.86a2.14 2.14 0 0 0 0-3.02z" data-reactid="142"></path></svg></span></div><!-- react-text: 143 -->Informations pratiques<!-- /react-text --></div></div></div></div></header></div><noscript data-reactid="144"><div class="_20fZ0"><div class="_2Kpxj _2yDC9"><div class="_1jIsn"><span class="_1BHQN">Attention : </span></div><div>Activez JavaScript pour profiter de toutes les fonctionnalités de leboncoin</div></div></div></noscript><div class="_3iQ0i" style="pointer-events:inherit;" data-reactid="145"><div class="_2RDLE" data-reactid="146"><div class="_35NoS" data-reactid="147"></div></div><div class="_25dyu" data-reactid="148"><div class="MoDD-" data-reactid="149"><div class="_2Dlhe" data-reactid="150"></div><div class="_1l3a3" data-reactid="151"><div class="EKyRm" data-reactid="152"><div class="_3ydA9" data-reactid="153"><div class="_1ZqmT" data-reactid="154"><div class="_3P8eC" data-reactid="155"><div class="" data-reactid="156"><span class="_3QymC" data-reactid="157"><label class="_1eJm6" data-qa-id="checkbox-offer-desktop" data-reactid="158"><div class="_3AULu" data-reactid="159"><input type="radio" readonly="" class="Qj29x" checked="" value="offer" name="b0a1bc89-f2d3-4f1e-a4a8-c4c75ca17fdd" data-reactid="160"/><span class="ilgNk" data-reactid="161"></span></div><span class="_15dHU" data-qa-id="text-offer-desktop" data-reactid="162">Offres</span></label></span><span class="_3QymC" data-reactid="163"><label class="_1eJm6" data-qa-id="checkbox-demand-desktop" data-reactid="164"><div class="_3AULu" data-reactid="165"><input type="radio" readonly="" class="Qj29x" value="demand" name="b0a1bc89-f2d3-4f1e-a4a8-c4c75ca17fdd" data-reactid="166"/><span class="ilgNk" data-reactid="167"></span></div><span class="_15dHU" data-qa-id="text-demand-desktop" data-reactid="168">Demandes</span></label></span></div></div></div><div class="_1ZqmT" data-reactid="169"><div class="AMvwu" data-reactid="170"><div class="_2iHTL" data-reactid="171"><div class="_35BGx _317mu" data-qa-id="cta-categories-desktop" data-reactid="172"><div class="_2R1iV" data-reactid="173"><span class="_3FBMo" data-qa-id="text-categories-desktop" data-reactid="174">Locations</span><div class="_1T1rO" data-reactid="175"><span class="_1oSml _3_8LY _q4sd _1kYvL" data-reactid="176"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="177"><path d="M23.37 5.62a2.15 2.15 0 0 0-3 0L12 13.87 3.68 5.62a2.2 2.2 0 0 0-3.05 0 2.1 2.1 0 0 0 0 3l9.86 9.76a2.14 2.14 0 0 0 3 0l9.86-9.76a2.1 2.1 0 0 0 .02-3z" data-reactid="178"></path></svg></span></div></div><div class="tRPGO" tabindex="-1" data-reactid="179"></div></div></div><div class="_2mki1" data-reactid="180"></div><div class="nViEw" data-reactid="181"><div class="ORFqH" data-reactid="182"><div class="" data-reactid="183"><div class="_1Ih-Y" data-reactid="184"><span class="_2zWJq" data-reactid="185"><span class="_1oSml _3_8LY _q4sd" data-reactid="186"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="187"><path d="M23.58 21.45l-7-7a9.42 9.42 0 0 0 1.62-6.87A9.13 9.13 0 0 0 10.34.07a9.25 9.25 0 0 0-2.81 18.27 9.25 9.25 0 0 0 7-1.76l7 7a1.54 1.54 0 0 0 2.11 0 1.56 1.56 0 0 0-.06-2.13zM9.22 15.5a6.37 6.37 0 1 1 6.33-6.37 6.33 6.33 0 0 1-6.33 6.37z" data-reactid="188"></path></svg></span></span><input type="text" maxlength="500" placeholder="Que recherchez-vous ?" data-qa-id="input-keywords-desktop" value="" data-reactid="189"/></div></div></div></div></div><div class="_2upc4" data-reactid="190"><div class="_3SfqP" data-reactid="191"><div class="_3o4NM" tabindex="0" data-qa-id="cta-locations_summary-desktop" data-reactid="192"><div class="_2LHrY" data-reactid="193"><div class="_39IKm" data-reactid="194"><div class="_pbJp _2cuwS" data-qa-id="cta-locations_value-desktop" data-reactid="195"><span class="UFXbL" data-reactid="196"><span class="_3u0LW" data-qa-id="text-locations_value-desktop" data-reactid="197">Ile-de-France</span><span class="_1sDHT" data-reactid="198"><span class="_3FvJf" title="Ile-de-France" data-reactid="199">Ile-de-France</span></span></span><span class="_3ywV2 _1EHuI" data-qa-id="cta-locations_value_delete-desktop" data-reactid="200"><span class="_1oSml _3_8LY _q4sd" data-reactid="201"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="202"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm4.8 13.2h-3.6v3.6a1.2 1.2 0 0 1-2.4 0v-3.6H7.2a1.2 1.2 0 1 1 0-2.4h3.6V7.2a1.2 1.2 0 1 1 2.4 0v3.6h3.6a1.2 1.2 0 0 1 0 2.4z" data-reactid="203"></path></svg></span></span></div></div></div><div data-test-id="icon-wrapper" data-reactid="204"><span class="_1oSml _1Cvux _q4sd" data-reactid="205"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="206"><path d="M23.37 5.62a2.15 2.15 0 0 0-3 0L12 13.87 3.68 5.62a2.2 2.2 0 0 0-3.05 0 2.1 2.1 0 0 0 0 3l9.86 9.76a2.14 2.14 0 0 0 3 0l9.86-9.76a2.1 2.1 0 0 0 .02-3z" data-reactid="207"></path></svg></span></div></div></div></div></div><div class="xmk4u" data-reactid="208"><div class="_3EQpo" data-reactid="209"><div class="_pbJp _2OW75" data-qa-id="cta-filter_chip_real_estate_type-desktop" data-reactid="210"><span class="UFXbL" data-reactid="211"><span class="_3u0LW" data-qa-id="text-filter_chip_real_estate_type-desktop" data-reactid="212">Type de bien</span><span class="_1sDHT" data-reactid="213"><span class="_3FvJf" title="Type de bien" data-reactid="214">Type de bien</span></span></span><div class="tRPGO" tabindex="-1" data-reactid="215"></div></div></div><div class="_3EQpo" data-reactid="216"><div class="_pbJp _2OW75" data-qa-id="cta-filter_chip_price-desktop" data-reactid="217"><span class="UFXbL" data-reactid="218"><span class="_3u0LW" data-qa-id="text-filter_chip_price-desktop" data-reactid="219">Loyer</span><span class="_1sDHT" data-reactid="220"><span class="_3FvJf" title="Loyer" data-reactid="221">Loyer</span></span></span><div class="tRPGO" tabindex="-1" data-reactid="222"></div></div></div><div class="_3EQpo" data-reactid="223"><div class="_pbJp _2OW75" data-qa-id="cta-filter_chip_rooms-desktop" data-reactid="224"><span class="UFXbL" data-reactid="225"><span class="_3u0LW" data-qa-id="text-filter_chip_rooms-desktop" data-reactid="226">Pièces</span><span class="_1sDHT" data-reactid="227"><span class="_3FvJf" title="Pièces" data-reactid="228">Pièces</span></span></span><div class="tRPGO" tabindex="-1" data-reactid="229"></div></div></div><div class="_3EQpo" data-reactid="230"><div class="_pbJp _2OW75" data-qa-id="cta-filter_chip_furnished-desktop" data-reactid="231"><span class="UFXbL" data-reactid="232"><span class="_3u0LW" data-qa-id="text-filter_chip_furnished-desktop" data-reactid="233">Meublé ou non meublé</span><span class="_1sDHT" data-reactid="234"><span class="_3FvJf" title="Meublé ou non meublé" data-reactid="235">Meublé ou non meublé</span></span></span><div class="tRPGO" tabindex="-1" data-reactid="236"></div></div></div><div class="_3EQpo" data-reactid="237"><div class="_pbJp _2OW75" data-qa-id="cta-filter_chip_square-desktop" data-reactid="238"><span class="UFXbL" data-reactid="239"><span class="_3u0LW" data-qa-id="text-filter_chip_square-desktop" data-reactid="240">Surface</span><span class="_1sDHT" data-reactid="241"><span class="_3FvJf" title="Surface" data-reactid="242">Surface</span></span></span><div class="tRPGO" tabindex="-1" data-reactid="243"></div></div></div></div><div class="_1ZqmT _24Hvv" data-reactid="244"><div data-reactid="245"><div class="_3R_-w" data-reactid="246"><div class="_1cvnc" data-qa-id="cta-save_search-desktop" data-reactid="247"><span class="_1oSml _3_8LY _3-_hz" data-reactid="248"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="249"><path d="M12 24a2.49 2.49 0 0 0 2.5-2.46h-5A2.48 2.48 0 0 0 12 24zM21.13 18.2l-1.62-1.58v-6.16c0-3.78-2.05-6.94-5.63-7.78v-.83a1.88 1.88 0 0 0-3.76 0v.83c-3.59.84-5.63 4-5.63 7.78v6.16L2.87 18.2a1.23 1.23 0 0 0 .88 2.11h16.49a1.23 1.23 0 0 0 .89-2.11zM17 17.85H7v-7.39c0-3.05 1.89-5.54 5-5.54s5 2.49 5 5.54z" data-reactid="250"></path></svg></span><div class="_2kKQY" data-qa-id="text-save_search-desktop" data-reactid="251">Sauvegarder la recherche</div></div></div></div></div><div class="EZIGB" data-reactid="252"><div class="NjlTm" data-reactid="253"><button class="_2JQAM _2gtZe _2tJk2 EsTCR _78wR-" data-qa-id="cta-search_submit-desktop" type="button" data-reactid="254">Rechercher</button></div></div></div></div></div></div></div><div class="_1A3Qu" data-reactid="255"><!-- react-empty: 256 --></div><!-- react-empty: 257 --><div class="_2Dlhe" data-reactid="258"><div data-reactid="259"><div class="_1rsrl" data-reactid="260"><div class="_2Ezn5 _1uhX7 _3EHbf _2pQqi" data-reactid="261"><div class="pWIkc" style="max-height:auto;" data-reactid="262"><div class="_pbJp sMU1c _108p6 _2OW75" data-reactid="263"><span class="_3ywV2" data-reactid="264"><span class="_1oSml _3_8LY _1UZDG" data-reactid="265"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="266"><path d="M12 0a8.81 8.81 0 0 0-9 8.63c0 5.14 5.68 12.23 8 14.93a1.32 1.32 0 0 0 2 0c2.33-2.7 8-9.79 8-14.93A8.81 8.81 0 0 0 12 0zm0 11.71a3.15 3.15 0 0 1-3.21-3.08A3.15 3.15 0 0 1 12 5.55a3.15 3.15 0 0 1 3.21 3.08A3.15 3.15 0 0 1 12 11.71z" data-reactid="267"></path></svg></span></span><span class="UFXbL" data-reactid="268"><span class="_3u0LW" data-reactid="269">Ile-de-France</span><span class="_1sDHT" data-reactid="270"><span class="_3FvJf" title="Ile-de-France" data-reactid="271">Ile-de-France</span></span></span></div><div class="_pbJp sMU1c _1Vlbj _2OW75" data-reactid="272"><span class="UFXbL" data-reactid="273"><span class="_3u0LW" data-reactid="274">Filtres</span><span class="_1sDHT" data-reactid="275"><span class="_3FvJf" title="Filtres" data-reactid="276">Filtres</span></span></span><span class="_1BiBF" data-reactid="277"><span class="_2PEaT" data-reactid="278">1</span></span></div><div class="" data-reactid="279"><div class="_pbJp _2OW75" data-reactid="280"><span class="UFXbL" data-reactid="281"><span class="_3u0LW" data-reactid="282">Tri : Plus récentes</span><span class="_1sDHT" data-reactid="283"><span class="_3FvJf" title="Tri : Plus récentes" data-reactid="284">Tri : Plus récentes</span></span></span></div></div></div><div class="_2RLoL" data-reactid="285"></div></div><div class="tRPGO" tabindex="-1" data-reactid="286"></div></div></div></div><div class="l17WS bgMain" data-reactid="287"><div data-reactid="288"><div class="_1AG_j" data-reactid="289"><h1 class="" data-reactid="290">Annonces Locations immobilières : Ile-de-France</h1></div><div class="apn-lt" data-reactid="291"><span id="lt-l" class="teal-apn" data-reactid="292"></span><span id="lt-xl" class="teal-apn" data-reactid="293"></span></div><div class="apn-b" data-reactid="294"><span id="b1-s" class="teal-apn" data-reactid="295"></span><span id="b1-m" class="teal-apn" data-reactid="296"></span><span id="b2-m" class="teal-apn" data-reactid="297"></span><span id="b1-l" class="teal-apn" data-reactid="298"></span><span id="b2-l" class="teal-apn" data-reactid="299"></span><span id="b3-l" class="teal-apn" data-reactid="300"></span><span id="b1-xl" class="teal-apn" data-reactid="301"></span><span id="b2-xl" class="teal-apn" data-reactid="302"></span><span id="b3-xl" class="teal-apn" data-reactid="303"></span><span id="b4-xl" class="teal-apn" data-reactid="304"></span><div style="clear:both;" data-reactid="305"></div></div><div class="apn-mb" data-reactid="306"><span id="mb-s" class="teal-apn" data-reactid="307"></span><span id="mb-m" class="teal-apn" data-reactid="308"></span><span id="mb-l" class="teal-apn" data-reactid="309"></span><span id="mb-xl" class="teal-apn" data-reactid="310"></span></div><div class="apn-lt" data-reactid="311"><span id="lt-s" class="teal-apn" data-reactid="312"></span><span id="lt-m" class="teal-apn" data-reactid="313"></span></div><div class="_1wSdk" data-reactid="314"><div class="tdmkO" data-reactid="315"><span class="_3ZZS7" data-reactid="316">Annonces : 25 867</span></div><div class="_1rjhB _2u1ti" data-reactid="317"><div class="_1_IRP _35ixp" data-reactid="318"><div data-qa-id="part_filter" class="_2FLbM" data-reactid="319"><div data-reactid="320"><label class="_2BJZq" data-reactid="321"><span class="_1SRTJ" data-reactid="322"><div data-reactid="323"><!-- react-text: 324 -->Particuliers <!-- /react-text --><span class="_1JFGS" data-reactid="325">12 878</span></div></span><input type="checkbox" name="private" checked="" data-reactid="326"/><span class="R3YOB" data-reactid="327"></span></label></div></div><div data-qa-id="pro_filter" class="_2FLbM" data-reactid="328"><div data-reactid="329"><label class="_2BJZq" data-reactid="330"><span class="_1SRTJ" data-reactid="331"><div data-reactid="332"><!-- react-text: 333 -->Professionnels <!-- /react-text --><span class="_1JFGS" data-reactid="334">12 989</span></div></span><input type="checkbox" name="pro" checked="" data-reactid="335"/><span class="R3YOB" data-reactid="336"></span></label></div></div></div><div data-qa-id="urgent_filter" class="_35ixp" data-reactid="337"><div data-reactid="338"><label class="_2BJZq" data-reactid="339"><span class="_1SRTJ" data-reactid="340"><div class="_3R0Sk" data-reactid="341"><span class="_1oSml pz0m1 _3FKvu" data-reactid="342"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="343"><path d="M22.66 8l-6.75-.59L13.23.87a1.35 1.35 0 0 0-2.53 0L8 7.43 1.28 8a1.55 1.55 0 0 0-.84 2.62l5.2 4.66-1.55 6.87a1.44 1.44 0 0 0 2.11 1.61l5.8-3.65 5.76 3.65a1.41 1.41 0 0 0 2.11-1.61L18.3 15.3l5.2-4.66A1.51 1.51 0 0 0 22.66 8z" data-reactid="344"></path></svg></span><span class="o8gbC" data-reactid="345">Urgentes</span></div></span><input type="checkbox" name="urgent" data-reactid="346"/><span class="R3YOB" data-reactid="347"></span></label></div></div></div><div class="_1rjhB _1u8Yi" data-reactid="348"><div class="_1_IRP _35ixp" data-reactid="349"><div data-qa-id="part_filter" class="_2FLbM" data-reactid="350"><div data-reactid="351"><label class="_2BJZq" data-reactid="352"><span class="_1SRTJ" data-reactid="353"><div data-reactid="354"><!-- react-text: 355 -->Particuliers <!-- /react-text --><span class="_1JFGS" data-reactid="356">12 878</span></div></span><input type="checkbox" name="private" checked="" data-reactid="357"/><span class="R3YOB" data-reactid="358"></span></label></div></div><div data-qa-id="pro_filter" class="_2FLbM" data-reactid="359"><div data-reactid="360"><label class="_2BJZq" data-reactid="361"><span class="_1SRTJ" data-reactid="362"><div data-reactid="363"><!-- react-text: 364 -->Professionnels <!-- /react-text --><span class="_1JFGS" data-reactid="365">12 989</span></div></span><input type="checkbox" name="pro" checked="" data-reactid="366"/><span class="R3YOB" data-reactid="367"></span></label></div></div></div><div data-qa-id="urgent_filter" class="_35ixp" data-reactid="368"><div data-reactid="369"><label class="_2BJZq" data-reactid="370"><span class="_1SRTJ" data-reactid="371"><div class="_3R0Sk" data-reactid="372"><span class="_1oSml pz0m1 _3FKvu" data-reactid="373"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="374"><path d="M22.66 8l-6.75-.59L13.23.87a1.35 1.35 0 0 0-2.53 0L8 7.43 1.28 8a1.55 1.55 0 0 0-.84 2.62l5.2 4.66-1.55 6.87a1.44 1.44 0 0 0 2.11 1.61l5.8-3.65 5.76 3.65a1.41 1.41 0 0 0 2.11-1.61L18.3 15.3l5.2-4.66A1.51 1.51 0 0 0 22.66 8z" data-reactid="375"></path></svg></span><span class="o8gbC" data-reactid="376">Urgentes</span></div></span><input type="checkbox" name="urgent" data-reactid="377"/><span class="R3YOB" data-reactid="378"></span></label></div></div><div class="_3mUDW _35ixp" data-reactid="379"><div data-reactid="380"><div class="_3cUqr" data-reactid="381"><div class="B_rjc" data-reactid="382"><span class="_1oSml _1ySRy" data-reactid="383"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="384"><path d="M23.37 5.62a2.15 2.15 0 0 0-3 0L12 13.87 3.68 5.62a2.2 2.2 0 0 0-3.05 0 2.1 2.1 0 0 0 0 3l9.86 9.76a2.14 2.14 0 0 0 3 0l9.86-9.76a2.1 2.1 0 0 0 .02-3z" data-reactid="385"></path></svg></span></div><div class="cCelU" data-reactid="386"><select data-reactid="387"><option selected="" value="time-desc" data-reactid="388">Tri : Plus récentes</option><option value="time-asc" data-reactid="389">Tri : Plus anciennes</option><option value="price-asc" data-reactid="390">Tri : Prix croissants</option><option value="price-desc" data-reactid="391">Tri : Prix décroissants</option></select></div></div></div></div></div></div><div class="_2Njaz _3GLp9" data-reactid="392"><div class="_358dQ" data-reactid="393"><div class="_2r1q3" data-reactid="394"><div data-reactid="395"><ul class="undefined" data-reactid="396"><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="397"><div data-reactid="398"><div data-reactid="399"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="400"><div data-reactid="401"><div class="_3C4to" data-reactid="402"><div class="_3xQS8" data-reactid="403"><span class="_1vK7W" name="heartoutline" data-reactid="404"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="405"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="406"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="407"></div></div><a title="Appartement libre de suite" class="clearfix trackable" rel="nofollow" href="/locations/1666147031.htm/" data-reactid="408"><div class="_3dPxM" data-reactid="409"><span class="_a3cT" data-reactid="410"><div class="LazyLoad" data-reactid="411"></div></span><span class="_2lY3w" data-reactid="412"><span class="_1vK7W _1eOK1" name="camera" data-reactid="413"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="414"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="415"></path></svg></span><span data-reactid="416">6</span></span></div><section class="_2EDA9" data-reactid="417"><div data-reactid="418"><p class="_2tubl" data-reactid="419"><span itemprop="name" data-qa-id="aditem_title" data-reactid="420">Appartement libre de suite</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="421"><meta itemprop="priceCurrency" content="EUR" data-reactid="422"/><span class="_1JRvz" data-reactid="423"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="424"><!-- react-text: 425 -->870<!-- /react-text --><!-- react-text: 426 --> €<!-- /react-text --></span></span></div></div><div data-reactid="427"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="428"><!-- react-text: 429 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="430">Meaux 77100</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:46" data-reactid="431">Aujourd&#x27;hui, 20:46</p></div></section></a><div class="yrUdB" data-reactid="432"><div data-reactid="433"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_0" data-id="tooltip" data-reactid="434"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="435"><div data-reactid="436"><div data-reactid="437"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="438"><div data-reactid="439"><div class="_3C4to" data-reactid="440"><div class="_3xQS8" data-reactid="441"><span class="_1vK7W" name="heartoutline" data-reactid="442"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="443"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="444"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="445"></div></div><a title="Appartement 2 pièces aux Clayes sous Bois" class="clearfix trackable" rel="nofollow" href="/locations/1669740131.htm/" data-reactid="446"><div class="_3dPxM" data-reactid="447"><span class="_a3cT" data-reactid="448"><div class="LazyLoad" data-reactid="449"></div></span><span class="_2lY3w" data-reactid="450"><span class="_1vK7W _1eOK1" name="camera" data-reactid="451"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="452"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="453"></path></svg></span><span data-reactid="454">3</span></span></div><section class="_2EDA9" data-reactid="455"><div data-reactid="456"><p class="_2tubl" data-reactid="457"><span itemprop="name" data-qa-id="aditem_title" data-reactid="458">Appartement 2 pièces aux Clayes sous Bois</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="459"><meta itemprop="priceCurrency" content="EUR" data-reactid="460"/><span class="_1JRvz" data-reactid="461"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="462"><!-- react-text: 463 -->790<!-- /react-text --><!-- react-text: 464 --> €<!-- /react-text --></span></span></div></div><div data-reactid="465"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="466"><!-- react-text: 467 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="468">Les Clayes-sous-Bois 78340</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:45" data-reactid="469">Aujourd&#x27;hui, 20:45</p></div></section></a><div class="yrUdB" data-reactid="470"><div data-reactid="471"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_1" data-id="tooltip" data-reactid="472"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="473"><div data-reactid="474"><div data-reactid="475"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="476"><div data-reactid="477"><div class="_3C4to" data-reactid="478"><div class="_3xQS8" data-reactid="479"><span class="_1vK7W" name="heartoutline" data-reactid="480"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="481"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="482"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="483"></div></div><a title="APPARTEMENT T2 - 33 m² - MONTROUGE (92)" class="clearfix trackable" rel="nofollow" href="/locations/1669731506.htm/" data-reactid="484"><div class="_3dPxM" data-reactid="485"><span class="_a3cT" data-reactid="486"><div class="LazyLoad" data-reactid="487"></div></span><span class="_2lY3w" data-reactid="488"><span class="_1vK7W _1eOK1" name="camera" data-reactid="489"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="490"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="491"></path></svg></span><span data-reactid="492">3</span></span></div><section class="_2EDA9" data-reactid="493"><div data-reactid="494"><p class="_2tubl" data-reactid="495"><span itemprop="name" data-qa-id="aditem_title" data-reactid="496">APPARTEMENT T2 - 33 m² - MONTROUGE (92)</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="497"><meta itemprop="priceCurrency" content="EUR" data-reactid="498"/><span class="_1JRvz" data-reactid="499"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="500"><!-- react-text: 501 -->960<!-- /react-text --><!-- react-text: 502 --> €<!-- /react-text --></span></span></div></div><div data-reactid="503"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="504"><!-- react-text: 505 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="506">Montrouge 92120</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:45" data-reactid="507">Aujourd&#x27;hui, 20:45</p></div></section></a><div class="yrUdB" data-reactid="508"><div data-reactid="509"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_2" data-id="tooltip" data-reactid="510"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="511"><div data-reactid="512"><div data-reactid="513"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="514"><div data-reactid="515"><div class="_3C4to" data-reactid="516"><div class="_3xQS8" data-reactid="517"><span class="_1vK7W" name="heartoutline" data-reactid="518"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="519"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="520"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="521"></div></div><a title="2 chambres à louer / Sèvres (92) proche Paris" class="clearfix trackable" rel="nofollow" href="/locations/1665328647.htm/" data-reactid="522"><div class="_3dPxM" data-reactid="523"><span class="_a3cT" data-reactid="524"><div class="LazyLoad" data-reactid="525"></div></span><span class="_2lY3w" data-reactid="526"><span class="_1vK7W _1eOK1" name="camera" data-reactid="527"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="528"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="529"></path></svg></span><span data-reactid="530">3</span></span></div><section class="_2EDA9" data-reactid="531"><div data-reactid="532"><p class="_2tubl" data-reactid="533"><span itemprop="name" data-qa-id="aditem_title" data-reactid="534">2 chambres à louer / Sèvres (92) proche Paris</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="535"><meta itemprop="priceCurrency" content="EUR" data-reactid="536"/><span class="_1JRvz" data-reactid="537"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="538"><!-- react-text: 539 -->490<!-- /react-text --><!-- react-text: 540 --> €<!-- /react-text --></span></span></div></div><div data-reactid="541"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="542"><!-- react-text: 543 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="544">Sèvres 92310</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:43" data-reactid="545">Aujourd&#x27;hui, 20:43</p></div></section></a><div class="yrUdB" data-reactid="546"><div data-reactid="547"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_3" data-id="tooltip" data-reactid="548"></div></li><li data-reactid="549"><div class="apn-na" data-reactid="550"><span id="na1-s" class="teal-apn" data-reactid="551"></span><span id="na1-m" class="teal-apn" data-reactid="552"></span><span id="na1-l" class="teal-apn" data-reactid="553"></span><span id="na1-xl" class="teal-apn" data-reactid="554"></span><span id="na3-s" class="teal-apn" data-reactid="555"></span><span id="na3-m" class="teal-apn" data-reactid="556"></span><span id="na3-l" class="teal-apn" data-reactid="557"></span><span id="na3-xl" class="teal-apn" data-reactid="558"></span></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="559"><div data-reactid="560"><div data-reactid="561"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="562"><div data-reactid="563"><div class="_3C4to" data-reactid="564"><div class="_3xQS8" data-reactid="565"><span class="_1vK7W" name="heartoutline" data-reactid="566"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="567"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="568"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="569"></div></div><a title="Location Appartement Montreuil" class="clearfix trackable" rel="nofollow" href="/locations/1669739489.htm/" data-reactid="570"><div class="_3dPxM" data-reactid="571"><span class="_a3cT" data-reactid="572"><div class="LazyLoad" data-reactid="573"></div></span><span class="_2lY3w" data-reactid="574"><span class="_1vK7W _1eOK1" name="camera" data-reactid="575"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="576"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="577"></path></svg></span><span data-reactid="578">3</span></span></div><section class="_2EDA9" data-reactid="579"><div data-reactid="580"><p class="_2tubl" data-reactid="581"><span itemprop="name" data-qa-id="aditem_title" data-reactid="582">Location Appartement Montreuil</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="583"><meta itemprop="priceCurrency" content="EUR" data-reactid="584"/><span class="_1JRvz" data-reactid="585"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="586"><!-- react-text: 587 -->970<!-- /react-text --><!-- react-text: 588 --> €<!-- /react-text --></span></span></div></div><div data-reactid="589"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="590"><!-- react-text: 591 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="592">Montreuil 93100</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:43" data-reactid="593">Aujourd&#x27;hui, 20:43</p></div></section></a><div class="yrUdB" data-reactid="594"><div data-reactid="595"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_4" data-id="tooltip" data-reactid="596"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="597"><div data-reactid="598"><div data-reactid="599"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="600"><div data-reactid="601"><div class="_3C4to" data-reactid="602"><div class="_3xQS8" data-reactid="603"><span class="_1vK7W" name="heartoutline" data-reactid="604"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="605"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="606"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="607"></div></div><a title="Chambre pour étudiante dans appartement Cergy préf" class="clearfix trackable" rel="nofollow" href="/locations/1669738832.htm/" data-reactid="608"><div class="_3dPxM" data-reactid="609"><span class="_a3cT" data-reactid="610"><div class="LazyLoad" data-reactid="611"></div></span><span class="_2lY3w" data-reactid="612"><span class="_1vK7W _1eOK1" name="camera" data-reactid="613"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="614"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="615"></path></svg></span><span data-reactid="616">3</span></span></div><section class="_2EDA9" data-reactid="617"><div data-reactid="618"><p class="_2tubl" data-reactid="619"><span itemprop="name" data-qa-id="aditem_title" data-reactid="620">Chambre pour étudiante dans appartement Cergy préf</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="621"><meta itemprop="priceCurrency" content="EUR" data-reactid="622"/><span class="_1JRvz" data-reactid="623"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="624"><!-- react-text: 625 -->480<!-- /react-text --><!-- react-text: 626 --> €<!-- /react-text --></span></span></div></div><div data-reactid="627"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="628"><!-- react-text: 629 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="630">Cergy 95000</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:42" data-reactid="631">Aujourd&#x27;hui, 20:42</p></div></section></a><div class="yrUdB" data-reactid="632"><div data-reactid="633"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_5" data-id="tooltip" data-reactid="634"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="635"><div data-reactid="636"><div data-reactid="637"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="638"><div data-reactid="639"><div class="_3C4to" data-reactid="640"><div class="_3xQS8" data-reactid="641"><span class="_1vK7W" name="heartoutline" data-reactid="642"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="643"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="644"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="645"></div></div><a title="Transporteur déménagement" class="clearfix trackable" rel="nofollow" href="/locations/1669738226.htm/" data-reactid="646"><div class="_3dPxM" data-reactid="647"><span class="_a3cT" data-reactid="648"><div class="LazyLoad" data-reactid="649"></div></span><span class="_2lY3w" data-reactid="650"><span class="_1vK7W _1eOK1" name="camera" data-reactid="651"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="652"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="653"></path></svg></span><span data-reactid="654">1</span></span></div><section class="_2EDA9" data-reactid="655"><div data-reactid="656"><p class="_2tubl" data-reactid="657"><span itemprop="name" data-qa-id="aditem_title" data-reactid="658">Transporteur déménagement</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="659"><meta itemprop="priceCurrency" content="EUR" data-reactid="660"/><span class="_1JRvz" data-reactid="661"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="662"><!-- react-text: 663 -->1<!-- /react-text --><!-- react-text: 664 --> €<!-- /react-text --></span></span></div></div><div data-reactid="665"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="666"><!-- react-text: 667 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="668">Paris 75019</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:40" data-reactid="669">Aujourd&#x27;hui, 20:40</p></div></section></a><div class="yrUdB" data-reactid="670"><div data-reactid="671"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_6" data-id="tooltip" data-reactid="672"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="673"><div data-reactid="674"><div data-reactid="675"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="676"><div data-reactid="677"><div class="_3C4to" data-reactid="678"><div class="_3xQS8" data-reactid="679"><span class="_1vK7W" name="heartoutline" data-reactid="680"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="681"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="682"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="683"></div></div><a title="Loue appartement" class="clearfix trackable" rel="nofollow" href="/locations/1669737696.htm/" data-reactid="684"><div class="_3dPxM" data-reactid="685"><span class="_a3cT" data-reactid="686"><div class="LazyLoad" data-reactid="687"></div></span><span class="_2lY3w" data-reactid="688"><span class="_1vK7W _1eOK1" name="camera" data-reactid="689"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="690"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="691"></path></svg></span><span data-reactid="692">1</span></span></div><section class="_2EDA9" data-reactid="693"><div data-reactid="694"><p class="_2tubl" data-reactid="695"><span itemprop="name" data-qa-id="aditem_title" data-reactid="696">Loue appartement</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="697"><meta itemprop="priceCurrency" content="EUR" data-reactid="698"/><span class="_1JRvz" data-reactid="699"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="700"><!-- react-text: 701 -->750<!-- /react-text --><!-- react-text: 702 --> €<!-- /react-text --></span></span></div></div><div data-reactid="703"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="704"><!-- react-text: 705 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="706">Condécourt 95450</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:39" data-reactid="707">Aujourd&#x27;hui, 20:39</p></div></section></a><div class="yrUdB" data-reactid="708"><div data-reactid="709"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_7" data-id="tooltip" data-reactid="710"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="711"><div data-reactid="712"><div data-reactid="713"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="714"><div data-reactid="715"><div class="_3C4to" data-reactid="716"><div class="_3xQS8" data-reactid="717"><span class="_1vK7W" name="heartoutline" data-reactid="718"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="719"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="720"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="721"></div></div><a title="Place de parking VERSAILLES RIVE DROITE" class="clearfix trackable" rel="nofollow" href="/locations/1669737014.htm/" data-reactid="722"><div class="_3dPxM" data-reactid="723"><span class="_a3cT" data-reactid="724"><div class="LazyLoad" data-reactid="725"></div></span><span class="_2lY3w" data-reactid="726"><span class="_1vK7W _1eOK1" name="camera" data-reactid="727"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="728"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="729"></path></svg></span><span data-reactid="730">1</span></span></div><section class="_2EDA9" data-reactid="731"><div data-reactid="732"><p class="_2tubl" data-reactid="733"><span itemprop="name" data-qa-id="aditem_title" data-reactid="734">Place de parking VERSAILLES RIVE DROITE</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="735"><meta itemprop="priceCurrency" content="EUR" data-reactid="736"/><span class="_1JRvz" data-reactid="737"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="738"><!-- react-text: 739 -->70<!-- /react-text --><!-- react-text: 740 --> €<!-- /react-text --></span></span></div></div><div data-reactid="741"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="742"><!-- react-text: 743 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="744">Versailles 78000</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:38" data-reactid="745">Aujourd&#x27;hui, 20:38</p></div></section></a><div class="yrUdB" data-reactid="746"><div data-reactid="747"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_8" data-id="tooltip" data-reactid="748"></div></li><!-- react-empty: 749 --><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="750"><div data-reactid="751"><div data-reactid="752"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="753"><div data-reactid="754"><div class="_3C4to" data-reactid="755"><div class="_3xQS8" data-reactid="756"><span class="_1vK7W" name="heartoutline" data-reactid="757"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="758"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="759"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="760"></div></div><a title="Recherche chambre à louer" class="clearfix trackable" rel="nofollow" href="/locations/1669737144.htm/" data-reactid="761"><div class="_3dPxM" data-reactid="762"><div class="_3OW-W" data-reactid="763"></div><!-- react-text: 764 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="765"><div data-reactid="766"><p class="_2tubl" data-reactid="767"><span itemprop="name" data-qa-id="aditem_title" data-reactid="768">Recherche chambre à louer</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="769"><meta itemprop="priceCurrency" content="EUR" data-reactid="770"/><span class="_1JRvz" data-reactid="771"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="772"><!-- react-text: 773 -->300<!-- /react-text --><!-- react-text: 774 --> €<!-- /react-text --></span></span></div></div><div data-reactid="775"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="776"><!-- react-text: 777 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="778">Lognes 77185</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:38" data-reactid="779">Aujourd&#x27;hui, 20:38</p></div></section></a><div class="yrUdB" data-reactid="780"><div data-reactid="781"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_9" data-id="tooltip" data-reactid="782"></div></li><li data-reactid="783"><div class="vl" data-reactid="784"><span id="vl-s" class="teal-apn" data-reactid="785"></span><span id="vl-m" class="teal-apn" data-reactid="786"></span><span id="vl-l" class="teal-apn" data-reactid="787"></span><span id="vl-xl" class="teal-apn" data-reactid="788"></span></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="789"><div data-reactid="790"><div data-reactid="791"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="792"><div data-reactid="793"><div class="_3C4to" data-reactid="794"><div class="_3xQS8" data-reactid="795"><span class="_1vK7W" name="heartoutline" data-reactid="796"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="797"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="798"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="799"></div></div><a title="Appartement 2 pièce splendide 36m2 Paris 13" class="clearfix trackable" rel="nofollow" href="/locations/1669616026.htm/" data-reactid="800"><div class="_3dPxM" data-reactid="801"><span class="_a3cT" data-reactid="802"><div class="LazyLoad" data-reactid="803"></div></span><span class="_2lY3w" data-reactid="804"><span class="_1vK7W _1eOK1" name="camera" data-reactid="805"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="806"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="807"></path></svg></span><span data-reactid="808">4</span></span></div><section class="_2EDA9" data-reactid="809"><div data-reactid="810"><p class="_2tubl" data-reactid="811"><span itemprop="name" data-qa-id="aditem_title" data-reactid="812">Appartement 2 pièce splendide 36m2 Paris 13</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="813"><meta itemprop="priceCurrency" content="EUR" data-reactid="814"/><span class="_1JRvz" data-reactid="815"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="816"><!-- react-text: 817 -->910<!-- /react-text --><!-- react-text: 818 --> €<!-- /react-text --></span></span></div></div><div data-reactid="819"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="820"><span class="_1HeL0" data-reactid="821">(Pro) </span><!-- react-text: 822 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="823">Paris 75013</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:35" data-reactid="824">Aujourd&#x27;hui, 20:35</p></div></section></a><div class="yrUdB" data-reactid="825"><div data-reactid="826"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_10" data-id="tooltip" data-reactid="827"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="828"><div data-reactid="829"><div data-reactid="830"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="831"><div data-reactid="832"><div class="_3C4to" data-reactid="833"><div class="_3xQS8" data-reactid="834"><span class="_1vK7W" name="heartoutline" data-reactid="835"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="836"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="837"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="838"></div></div><a title="Place de parking sécurisée" class="clearfix trackable" rel="nofollow" href="/locations/1666255917.htm/" data-reactid="839"><div class="_3dPxM" data-reactid="840"><span class="_a3cT" data-reactid="841"><div class="LazyLoad" data-reactid="842"></div></span><span class="_2lY3w" data-reactid="843"><span class="_1vK7W _1eOK1" name="camera" data-reactid="844"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="845"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="846"></path></svg></span><span data-reactid="847">3</span></span></div><section class="_2EDA9" data-reactid="848"><div data-reactid="849"><p class="_2tubl" data-reactid="850"><span itemprop="name" data-qa-id="aditem_title" data-reactid="851">Place de parking sécurisée</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="852"><meta itemprop="priceCurrency" content="EUR" data-reactid="853"/><span class="_1JRvz" data-reactid="854"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="855"><!-- react-text: 856 -->100<!-- /react-text --><!-- react-text: 857 --> €<!-- /react-text --></span></span></div></div><div data-reactid="858"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="859"><!-- react-text: 860 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="861">Issy-les-Moulineaux 92130</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:35" data-reactid="862">Aujourd&#x27;hui, 20:35</p></div></section></a><div class="yrUdB" data-reactid="863"><div data-reactid="864"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_11" data-id="tooltip" data-reactid="865"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="866"><div data-reactid="867"><div data-reactid="868"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="869"><div data-reactid="870"><div class="_3C4to" data-reactid="871"><div class="_3xQS8" data-reactid="872"><span class="_1vK7W" name="heartoutline" data-reactid="873"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="874"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="875"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="876"></div></div><a title="2 pièces 35m2 meublé 800 Euro(s) CC 8 mois max" class="clearfix trackable" rel="nofollow" href="/locations/1669735875.htm/" data-reactid="877"><div class="_3dPxM" data-reactid="878"><span class="_a3cT" data-reactid="879"><div class="LazyLoad" data-reactid="880"></div></span><span class="_2lY3w" data-reactid="881"><span class="_1vK7W _1eOK1" name="camera" data-reactid="882"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="883"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="884"></path></svg></span><span data-reactid="885">3</span></span></div><section class="_2EDA9" data-reactid="886"><div data-reactid="887"><p class="_2tubl" data-reactid="888"><span itemprop="name" data-qa-id="aditem_title" data-reactid="889">2 pièces 35m2 meublé 800 Euro(s) CC 8 mois max</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="890"><meta itemprop="priceCurrency" content="EUR" data-reactid="891"/><span class="_1JRvz" data-reactid="892"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="893"><!-- react-text: 894 -->800<!-- /react-text --><!-- react-text: 895 --> €<!-- /react-text --></span></span></div></div><div data-reactid="896"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="897"><!-- react-text: 898 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="899">Argenteuil 95100</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:34" data-reactid="900">Aujourd&#x27;hui, 20:34</p></div></section></a><div class="yrUdB" data-reactid="901"><div data-reactid="902"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_12" data-id="tooltip" data-reactid="903"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="904"><div data-reactid="905"><div data-reactid="906"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="907"><div data-reactid="908"><div class="_3C4to" data-reactid="909"><div class="_3xQS8" data-reactid="910"><span class="_1vK7W" name="heartoutline" data-reactid="911"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="912"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="913"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="914"></div></div><a title="Parking à louer rue st maur" class="clearfix trackable" rel="nofollow" href="/locations/1657100196.htm/" data-reactid="915"><div class="_3dPxM" data-reactid="916"><div class="_3OW-W" data-reactid="917"></div><!-- react-text: 918 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="919"><div data-reactid="920"><p class="_2tubl" data-reactid="921"><span itemprop="name" data-qa-id="aditem_title" data-reactid="922">Parking à louer rue st maur</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="923"><meta itemprop="priceCurrency" content="EUR" data-reactid="924"/><span class="_1JRvz" data-reactid="925"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="926"><!-- react-text: 927 -->108<!-- /react-text --><!-- react-text: 928 --> €<!-- /react-text --></span></span></div></div><div data-reactid="929"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="930"><!-- react-text: 931 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="932">Paris 75011</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:34" data-reactid="933">Aujourd&#x27;hui, 20:34</p></div></section></a><div class="yrUdB" data-reactid="934"><div data-reactid="935"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_13" data-id="tooltip" data-reactid="936"></div></li><li data-reactid="937"><div class="apn-na" data-reactid="938"><span id="na2-s" class="teal-apn" data-reactid="939"></span><span id="na2-m" class="teal-apn" data-reactid="940"></span><span id="na2-l" class="teal-apn" data-reactid="941"></span><span id="na2-xl" class="teal-apn" data-reactid="942"></span></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="943"><div data-reactid="944"><div data-reactid="945"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="946"><div data-reactid="947"><div class="_3C4to" data-reactid="948"><div class="_3xQS8" data-reactid="949"><span class="_1vK7W" name="heartoutline" data-reactid="950"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="951"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="952"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="953"></div></div><a title="Box 13m2 securisé" class="clearfix trackable" rel="nofollow" href="/locations/1669735007.htm/" data-reactid="954"><div class="_3dPxM" data-reactid="955"><span class="_a3cT" data-reactid="956"><div class="LazyLoad" data-reactid="957"></div></span><span class="_2lY3w" data-reactid="958"><span class="_1vK7W _1eOK1" name="camera" data-reactid="959"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="960"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="961"></path></svg></span><span data-reactid="962">1</span></span></div><section class="_2EDA9" data-reactid="963"><div data-reactid="964"><p class="_2tubl" data-reactid="965"><span itemprop="name" data-qa-id="aditem_title" data-reactid="966">Box 13m2 securisé</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="967"><meta itemprop="priceCurrency" content="EUR" data-reactid="968"/><span class="_1JRvz" data-reactid="969"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="970"><!-- react-text: 971 -->95<!-- /react-text --><!-- react-text: 972 --> €<!-- /react-text --></span></span></div></div><div data-reactid="973"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="974"><!-- react-text: 975 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="976">Bagnolet 93170</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:33" data-reactid="977">Aujourd&#x27;hui, 20:33</p></div></section></a><div class="yrUdB" data-reactid="978"><div data-reactid="979"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_14" data-id="tooltip" data-reactid="980"></div></li><!-- react-empty: 981 --><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="982"><div data-reactid="983"><div data-reactid="984"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="985"><div data-reactid="986"><div class="_3C4to" data-reactid="987"><div class="_3xQS8" data-reactid="988"><span class="_1vK7W" name="heartoutline" data-reactid="989"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="990"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="991"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="992"></div></div><a title="Chambre en rez de chaussée" class="clearfix trackable" rel="nofollow" href="/locations/1669734792.htm/" data-reactid="993"><div class="_3dPxM" data-reactid="994"><div class="_3OW-W" data-reactid="995"></div><!-- react-text: 996 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="997"><div data-reactid="998"><p class="_2tubl" data-reactid="999"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1000">Chambre en rez de chaussée</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1001"><meta itemprop="priceCurrency" content="EUR" data-reactid="1002"/><span class="_1JRvz" data-reactid="1003"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1004"><!-- react-text: 1005 -->425<!-- /react-text --><!-- react-text: 1006 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1007"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1008"><!-- react-text: 1009 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1010">Maisons-Laffitte 78600</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:32" data-reactid="1011">Aujourd&#x27;hui, 20:32</p></div></section></a><div class="yrUdB" data-reactid="1012"><div data-reactid="1013"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_15" data-id="tooltip" data-reactid="1014"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1015"><div data-reactid="1016"><div data-reactid="1017"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1018"><div data-reactid="1019"><div class="_3C4to" data-reactid="1020"><div class="_3xQS8" data-reactid="1021"><span class="_1vK7W" name="heartoutline" data-reactid="1022"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1023"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1024"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1025"></div></div><a title="A louer maison f4" class="clearfix trackable" rel="nofollow" href="/locations/1669734636.htm/" data-reactid="1026"><div class="_3dPxM" data-reactid="1027"><div class="_3OW-W" data-reactid="1028"></div><!-- react-text: 1029 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="1030"><div data-reactid="1031"><p class="_2tubl" data-reactid="1032"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1033">A louer maison f4</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1034"><meta itemprop="priceCurrency" content="EUR" data-reactid="1035"/><span class="_1JRvz" data-reactid="1036"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1037"><!-- react-text: 1038 -->1 350<!-- /react-text --><!-- react-text: 1039 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1040"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1041"><!-- react-text: 1042 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1043">Champagne-sur-Oise 95660</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:31" data-reactid="1044">Aujourd&#x27;hui, 20:31</p></div></section></a><div class="yrUdB" data-reactid="1045"><div data-reactid="1046"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_16" data-id="tooltip" data-reactid="1047"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1048"><div data-reactid="1049"><div data-reactid="1050"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1051"><div data-reactid="1052"><div class="_3C4to" data-reactid="1053"><div class="_3xQS8" data-reactid="1054"><span class="_1vK7W" name="heartoutline" data-reactid="1055"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1056"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1057"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1058"></div></div><a title="2 pièces à Paris 20ème 36m2 Libre de suite" class="clearfix trackable" rel="nofollow" href="/locations/1669240126.htm/" data-reactid="1059"><div class="_3dPxM" data-reactid="1060"><span class="_a3cT" data-reactid="1061"><div class="LazyLoad" data-reactid="1062"></div></span><span class="_2lY3w" data-reactid="1063"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1064"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1065"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1066"></path></svg></span><span data-reactid="1067">5</span></span></div><section class="_2EDA9 undefined" data-reactid="1068"><div data-reactid="1069"><p class="_2tubl" data-reactid="1070"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1071">2 pièces à Paris 20ème 36m2 Libre de suite</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1072"><meta itemprop="priceCurrency" content="EUR" data-reactid="1073"/><span class="_1JRvz" data-reactid="1074"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1075"><!-- react-text: 1076 -->950<!-- /react-text --><!-- react-text: 1077 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1078"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1079"><!-- react-text: 1080 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1081">Paris 75020</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:31" data-reactid="1082">Aujourd&#x27;hui, 20:31</p><span class="lN2Ir" data-qa-id="listitem_urgent" data-reactid="1083"><span class="_1vK7W K5CQx" name="star" data-reactid="1084"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1085"><path d="M22.66 8l-6.75-.59L13.23.87a1.35 1.35 0 0 0-2.53 0L8 7.43 1.28 8a1.55 1.55 0 0 0-.84 2.62l5.2 4.66-1.55 6.87a1.44 1.44 0 0 0 2.11 1.61l5.8-3.65 5.76 3.65a1.41 1.41 0 0 0 2.11-1.61L18.3 15.3l5.2-4.66A1.51 1.51 0 0 0 22.66 8z" data-reactid="1086"></path></svg></span><!-- react-text: 1087 -->Urgent<!-- /react-text --></span></div></section></a><div class="yrUdB" data-reactid="1088"><div data-reactid="1089"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_17" data-id="tooltip" data-reactid="1090"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1091"><div data-reactid="1092"><div data-reactid="1093"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1094"><div data-reactid="1095"><div class="_3C4to" data-reactid="1096"><div class="_3xQS8" data-reactid="1097"><span class="_1vK7W" name="heartoutline" data-reactid="1098"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1099"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1100"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1101"></div></div><a title="Loue box garage" class="clearfix trackable" rel="nofollow" href="/locations/1669733972.htm/" data-reactid="1102"><div class="_3dPxM" data-reactid="1103"><div class="_3OW-W" data-reactid="1104"></div><!-- react-text: 1105 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="1106"><div data-reactid="1107"><p class="_2tubl" data-reactid="1108"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1109">Loue box garage</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1110"><meta itemprop="priceCurrency" content="EUR" data-reactid="1111"/><span class="_1JRvz" data-reactid="1112"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1113"><!-- react-text: 1114 -->130<!-- /react-text --><!-- react-text: 1115 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1116"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1117"><!-- react-text: 1118 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1119">Les Clayes-sous-Bois 78340</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:30" data-reactid="1120">Aujourd&#x27;hui, 20:30</p></div></section></a><div class="yrUdB" data-reactid="1121"><div data-reactid="1122"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_18" data-id="tooltip" data-reactid="1123"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1124"><div data-reactid="1125"><div data-reactid="1126"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1127"><div data-reactid="1128"><div class="_3C4to" data-reactid="1129"><div class="_3xQS8" data-reactid="1130"><span class="_1vK7W" name="heartoutline" data-reactid="1131"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1132"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1133"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1134"></div></div><a title="Mets en sous location F2 dans le récents" class="clearfix trackable" rel="nofollow" href="/locations/1669733841.htm/" data-reactid="1135"><div class="_3dPxM" data-reactid="1136"><span class="_a3cT" data-reactid="1137"><div class="LazyLoad" data-reactid="1138"></div></span><span class="_2lY3w" data-reactid="1139"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1140"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1141"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1142"></path></svg></span><span data-reactid="1143">3</span></span></div><section class="_2EDA9" data-reactid="1144"><div data-reactid="1145"><p class="_2tubl" data-reactid="1146"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1147">Mets en sous location F2 dans le récents</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1148"><meta itemprop="priceCurrency" content="EUR" data-reactid="1149"/><span class="_1JRvz" data-reactid="1150"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1151"><!-- react-text: 1152 -->980<!-- /react-text --><!-- react-text: 1153 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1154"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1155"><!-- react-text: 1156 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1157">Créteil 94000</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:30" data-reactid="1158">Aujourd&#x27;hui, 20:30</p></div></section></a><div class="yrUdB" data-reactid="1159"><div data-reactid="1160"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_19" data-id="tooltip" data-reactid="1161"></div></li><li data-reactid="1162"><div class="apn-autopromo_listing" data-reactid="1163"><span id="autopromo_listing-s" class="teal-apn" data-reactid="1164"></span><span id="autopromo_listing-m" class="teal-apn" data-reactid="1165"></span><span id="autopromo_listing-l" class="teal-apn" data-reactid="1166"></span><span id="autopromo_listing-xl" class="teal-apn" data-reactid="1167"></span></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1168"><div data-reactid="1169"><div data-reactid="1170"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1171"><div data-reactid="1172"><div class="_3C4to" data-reactid="1173"><div class="_3xQS8" data-reactid="1174"><span class="_1vK7W" name="heartoutline" data-reactid="1175"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1176"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1177"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1178"></div></div><a title="Parking à 5mn de l&#x27;aéroport chez particulier" class="clearfix trackable" rel="nofollow" href="/locations/1669733667.htm/" data-reactid="1179"><div class="_3dPxM" data-reactid="1180"><span class="_a3cT" data-reactid="1181"><div class="LazyLoad" data-reactid="1182"></div></span><span class="_2lY3w" data-reactid="1183"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1184"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1185"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1186"></path></svg></span><span data-reactid="1187">1</span></span></div><section class="_2EDA9" data-reactid="1188"><div data-reactid="1189"><p class="_2tubl" data-reactid="1190"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1191">Parking à 5mn de l&#x27;aéroport chez particulier</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1192"><meta itemprop="priceCurrency" content="EUR" data-reactid="1193"/><span class="_1JRvz" data-reactid="1194"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1195"><!-- react-text: 1196 -->5<!-- /react-text --><!-- react-text: 1197 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1198"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1199"><!-- react-text: 1200 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1201">Orly 94310</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:30" data-reactid="1202">Aujourd&#x27;hui, 20:30</p></div></section></a><div class="yrUdB" data-reactid="1203"><div data-reactid="1204"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_20" data-id="tooltip" data-reactid="1205"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1206"><div data-reactid="1207"><div data-reactid="1208"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1209"><div data-reactid="1210"><div class="_3C4to" data-reactid="1211"><div class="_3xQS8" data-reactid="1212"><span class="_1vK7W" name="heartoutline" data-reactid="1213"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1214"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1215"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1216"></div></div><a title="2 pieces gare de l est" class="clearfix trackable" rel="nofollow" href="/locations/1669619541.htm/" data-reactid="1217"><div class="_3dPxM" data-reactid="1218"><span class="_a3cT" data-reactid="1219"><div class="LazyLoad" data-reactid="1220"></div></span><span class="_2lY3w" data-reactid="1221"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1222"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1223"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1224"></path></svg></span><span data-reactid="1225">4</span></span></div><section class="_2EDA9" data-reactid="1226"><div data-reactid="1227"><p class="_2tubl" data-reactid="1228"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1229">2 pieces gare de l est</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1230"><meta itemprop="priceCurrency" content="EUR" data-reactid="1231"/><span class="_1JRvz" data-reactid="1232"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1233"><!-- react-text: 1234 -->1 015<!-- /react-text --><!-- react-text: 1235 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1236"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1237"><span class="_1HeL0" data-reactid="1238">(Pro) </span><!-- react-text: 1239 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1240">Paris 75010</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:25" data-reactid="1241">Aujourd&#x27;hui, 20:25</p></div></section></a><div class="yrUdB" data-reactid="1242"><div data-reactid="1243"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_21" data-id="tooltip" data-reactid="1244"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1245"><div data-reactid="1246"><div data-reactid="1247"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1248"><div data-reactid="1249"><div class="_3C4to" data-reactid="1250"><div class="_3xQS8" data-reactid="1251"><span class="_1vK7W" name="heartoutline" data-reactid="1252"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1253"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1254"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1255"></div></div><a title="Chambre meublée pr étudiant saison univ2019-2020" class="clearfix trackable" rel="nofollow" href="/locations/1669730619.htm/" data-reactid="1256"><div class="_3dPxM" data-reactid="1257"><span class="_a3cT" data-reactid="1258"><div class="LazyLoad" data-reactid="1259"></div></span><span class="_2lY3w" data-reactid="1260"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1261"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1262"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1263"></path></svg></span><span data-reactid="1264">3</span></span></div><section class="_2EDA9" data-reactid="1265"><div data-reactid="1266"><p class="_2tubl" data-reactid="1267"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1268">Chambre meublée pr étudiant saison univ2019-2020</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1269"><meta itemprop="priceCurrency" content="EUR" data-reactid="1270"/><span class="_1JRvz" data-reactid="1271"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1272"><!-- react-text: 1273 -->430<!-- /react-text --><!-- react-text: 1274 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1275"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1276"><!-- react-text: 1277 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1278">Saint-Ouen-l&#x27;Aumône 95310</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:22" data-reactid="1279">Aujourd&#x27;hui, 20:22</p></div></section></a><div class="yrUdB" data-reactid="1280"><div data-reactid="1281"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_22" data-id="tooltip" data-reactid="1282"></div></li><!-- react-empty: 1283 --><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1284"><div data-reactid="1285"><div data-reactid="1286"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1287"><div data-reactid="1288"><div class="_3C4to" data-reactid="1289"><div class="_3xQS8" data-reactid="1290"><span class="_1vK7W" name="heartoutline" data-reactid="1291"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1292"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1293"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1294"></div></div><a title="Location studio à Levallois" class="clearfix trackable" rel="nofollow" href="/locations/1669729351.htm/" data-reactid="1295"><div class="_3dPxM" data-reactid="1296"><span class="_a3cT" data-reactid="1297"><div class="LazyLoad" data-reactid="1298"></div></span><span class="_2lY3w" data-reactid="1299"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1300"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1301"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1302"></path></svg></span><span data-reactid="1303">7</span></span></div><section class="_2EDA9" data-reactid="1304"><div data-reactid="1305"><p class="_2tubl" data-reactid="1306"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1307">Location studio à Levallois</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1308"><meta itemprop="priceCurrency" content="EUR" data-reactid="1309"/><span class="_1JRvz" data-reactid="1310"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1311"><!-- react-text: 1312 -->700<!-- /react-text --><!-- react-text: 1313 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1314"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1315"><!-- react-text: 1316 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1317">Levallois-Perret 92300</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:21" data-reactid="1318">Aujourd&#x27;hui, 20:21</p></div></section></a><div class="yrUdB" data-reactid="1319"><div data-reactid="1320"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_23" data-id="tooltip" data-reactid="1321"></div></li><li data-reactid="1322"><div class="apn-na" data-reactid="1323"><span id="na4-s" class="teal-apn" data-reactid="1324"></span><span id="na4-m" class="teal-apn" data-reactid="1325"></span><span id="na4-l" class="teal-apn" data-reactid="1326"></span><span id="na4-xl" class="teal-apn" data-reactid="1327"></span></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1328"><div data-reactid="1329"><div data-reactid="1330"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1331"><div data-reactid="1332"><div class="_3C4to" data-reactid="1333"><div class="_3xQS8" data-reactid="1334"><span class="_1vK7W" name="heartoutline" data-reactid="1335"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1336"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1337"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1338"></div></div><a title="Coloc à 3 val de fontenay recherche femme" class="clearfix trackable" rel="nofollow" href="/locations/1669729707.htm/" data-reactid="1339"><div class="_3dPxM" data-reactid="1340"><span class="_a3cT" data-reactid="1341"><div class="LazyLoad" data-reactid="1342"></div></span><span class="_2lY3w" data-reactid="1343"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1344"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1345"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1346"></path></svg></span><span data-reactid="1347">3</span></span></div><section class="_2EDA9" data-reactid="1348"><div data-reactid="1349"><p class="_2tubl" data-reactid="1350"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1351">Coloc à 3 val de fontenay recherche femme</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1352"><meta itemprop="priceCurrency" content="EUR" data-reactid="1353"/><span class="_1JRvz" data-reactid="1354"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1355"><!-- react-text: 1356 -->500<!-- /react-text --><!-- react-text: 1357 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1358"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1359"><!-- react-text: 1360 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1361">Fontenay-sous-Bois 94120</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:20" data-reactid="1362">Aujourd&#x27;hui, 20:20</p></div></section></a><div class="yrUdB" data-reactid="1363"><div data-reactid="1364"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_24" data-id="tooltip" data-reactid="1365"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1366"><div data-reactid="1367"><div data-reactid="1368"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1369"><div data-reactid="1370"><div class="_3C4to" data-reactid="1371"><div class="_3xQS8" data-reactid="1372"><span class="_1vK7W" name="heartoutline" data-reactid="1373"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1374"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1375"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1376"></div></div><a title="Cave cimenté et seche dans résidence récente" class="clearfix trackable" rel="nofollow" href="/locations/1669729874.htm/" data-reactid="1377"><div class="_3dPxM" data-reactid="1378"><div class="_3OW-W" data-reactid="1379"></div><!-- react-text: 1380 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="1381"><div data-reactid="1382"><p class="_2tubl" data-reactid="1383"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1384">Cave cimenté et seche dans résidence récente</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1385"><meta itemprop="priceCurrency" content="EUR" data-reactid="1386"/><span class="_1JRvz" data-reactid="1387"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1388"><!-- react-text: 1389 -->70<!-- /react-text --><!-- react-text: 1390 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1391"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1392"><!-- react-text: 1393 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1394">Pantin 93500</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:20" data-reactid="1395">Aujourd&#x27;hui, 20:20</p></div></section></a><div class="yrUdB" data-reactid="1396"><div data-reactid="1397"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_25" data-id="tooltip" data-reactid="1398"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1399"><div data-reactid="1400"><div data-reactid="1401"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1402"><div data-reactid="1403"><div class="_3C4to" data-reactid="1404"><div class="_3xQS8" data-reactid="1405"><span class="_1vK7W" name="heartoutline" data-reactid="1406"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1407"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1408"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1409"></div></div><a title="bel appartement lumineux avec jardin" class="clearfix trackable" rel="nofollow" href="/locations/1669729645.htm/" data-reactid="1410"><div class="_3dPxM" data-reactid="1411"><span class="_a3cT" data-reactid="1412"><div class="LazyLoad" data-reactid="1413"></div></span><span class="_2lY3w" data-reactid="1414"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1415"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1416"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1417"></path></svg></span><span data-reactid="1418">2</span></span></div><section class="_2EDA9" data-reactid="1419"><div data-reactid="1420"><p class="_2tubl" data-reactid="1421"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1422">bel appartement lumineux avec jardin</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1423"><meta itemprop="priceCurrency" content="EUR" data-reactid="1424"/><span class="_1JRvz" data-reactid="1425"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1426"><!-- react-text: 1427 -->850<!-- /react-text --><!-- react-text: 1428 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1429"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1430"><!-- react-text: 1431 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1432">Corbeil-Essonnes 91100</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:19" data-reactid="1433">Aujourd&#x27;hui, 20:19</p></div></section></a><div class="yrUdB" data-reactid="1434"><div data-reactid="1435"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_26" data-id="tooltip" data-reactid="1436"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1437"><div data-reactid="1438"><div data-reactid="1439"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1440"><div data-reactid="1441"><div class="_3C4to" data-reactid="1442"><div class="_3xQS8" data-reactid="1443"><span class="_1vK7W" name="heartoutline" data-reactid="1444"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1445"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1446"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1447"></div></div><a title="Pavillon" class="clearfix trackable" rel="nofollow" href="/locations/1669627532.htm/" data-reactid="1448"><div class="_3dPxM" data-reactid="1449"><span class="_a3cT" data-reactid="1450"><div class="LazyLoad" data-reactid="1451"></div></span><span class="_2lY3w" data-reactid="1452"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1453"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1454"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1455"></path></svg></span><span data-reactid="1456">5</span></span></div><section class="_2EDA9" data-reactid="1457"><div data-reactid="1458"><p class="_2tubl" data-reactid="1459"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1460">Pavillon</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1461"><meta itemprop="priceCurrency" content="EUR" data-reactid="1462"/><span class="_1JRvz" data-reactid="1463"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1464"><!-- react-text: 1465 -->1 500<!-- /react-text --><!-- react-text: 1466 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1467"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1468"><span class="_1HeL0" data-reactid="1469">(Pro) </span><!-- react-text: 1470 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1471">Igny 91430</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:19" data-reactid="1472">Aujourd&#x27;hui, 20:19</p></div></section></a><div class="yrUdB" data-reactid="1473"><div data-reactid="1474"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_27" data-id="tooltip" data-reactid="1475"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1476"><div data-reactid="1477"><div data-reactid="1478"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1479"><div data-reactid="1480"><div class="_3C4to" data-reactid="1481"><div class="_3xQS8" data-reactid="1482"><span class="_1vK7W" name="heartoutline" data-reactid="1483"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1484"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1485"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1486"></div></div><a title="Parking à louer rue de Tocqueville 75017" class="clearfix trackable" rel="nofollow" href="/locations/1669728766.htm/" data-reactid="1487"><div class="_3dPxM" data-reactid="1488"><div class="_3OW-W" data-reactid="1489"></div><!-- react-text: 1490 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="1491"><div data-reactid="1492"><p class="_2tubl" data-reactid="1493"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1494">Parking à louer rue de Tocqueville 75017</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1495"><meta itemprop="priceCurrency" content="EUR" data-reactid="1496"/><span class="_1JRvz" data-reactid="1497"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1498"><!-- react-text: 1499 -->170<!-- /react-text --><!-- react-text: 1500 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1501"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1502"><!-- react-text: 1503 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1504">Paris 75017</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:18" data-reactid="1505">Aujourd&#x27;hui, 20:18</p></div></section></a><div class="yrUdB" data-reactid="1506"><div data-reactid="1507"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_28" data-id="tooltip" data-reactid="1508"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1509"><div data-reactid="1510"><div data-reactid="1511"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1512"><div data-reactid="1513"><div class="_3C4to" data-reactid="1514"><div class="_3xQS8" data-reactid="1515"><span class="_1vK7W" name="heartoutline" data-reactid="1516"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1517"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1518"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1519"></div></div><a title="Studio duplex" class="clearfix trackable" rel="nofollow" href="/locations/1669728747.htm/" data-reactid="1520"><div class="_3dPxM" data-reactid="1521"><span class="_a3cT" data-reactid="1522"><div class="LazyLoad" data-reactid="1523"></div></span><span class="_2lY3w" data-reactid="1524"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1525"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1526"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1527"></path></svg></span><span data-reactid="1528">3</span></span></div><section class="_2EDA9" data-reactid="1529"><div data-reactid="1530"><p class="_2tubl" data-reactid="1531"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1532">Studio duplex</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1533"><meta itemprop="priceCurrency" content="EUR" data-reactid="1534"/><span class="_1JRvz" data-reactid="1535"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1536"><!-- react-text: 1537 -->660<!-- /react-text --><!-- react-text: 1538 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1539"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1540"><!-- react-text: 1541 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1542">Montlhéry 91310</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:18" data-reactid="1543">Aujourd&#x27;hui, 20:18</p></div></section></a><div class="yrUdB" data-reactid="1544"><div data-reactid="1545"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_29" data-id="tooltip" data-reactid="1546"></div></li><li data-reactid="1547"><div class="apn-na" data-reactid="1548"><span id="na5-s" class="teal-apn" data-reactid="1549"></span><span id="na5-m" class="teal-apn" data-reactid="1550"></span><span id="na5-l" class="teal-apn" data-reactid="1551"></span><span id="na5-xl" class="teal-apn" data-reactid="1552"></span></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1553"><div data-reactid="1554"><div data-reactid="1555"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1556"><div data-reactid="1557"><div class="_3C4to" data-reactid="1558"><div class="_3xQS8" data-reactid="1559"><span class="_1vK7W" name="heartoutline" data-reactid="1560"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1561"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1562"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1563"></div></div><a title="Appartement F2 à Bois D&#x27;Arcy" class="clearfix trackable" rel="nofollow" href="/locations/1669728345.htm/" data-reactid="1564"><div class="_3dPxM" data-reactid="1565"><div class="_3OW-W" data-reactid="1566"></div><!-- react-text: 1567 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="1568"><div data-reactid="1569"><p class="_2tubl" data-reactid="1570"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1571">Appartement F2 à Bois D&#x27;Arcy</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1572"><meta itemprop="priceCurrency" content="EUR" data-reactid="1573"/><span class="_1JRvz" data-reactid="1574"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1575"><!-- react-text: 1576 -->730<!-- /react-text --><!-- react-text: 1577 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1578"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1579"><!-- react-text: 1580 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1581">Bois-d&#x27;Arcy 78390</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:16" data-reactid="1582">Aujourd&#x27;hui, 20:16</p></div></section></a><div class="yrUdB" data-reactid="1583"><div data-reactid="1584"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_30" data-id="tooltip" data-reactid="1585"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1586"><div data-reactid="1587"><div data-reactid="1588"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1589"><div data-reactid="1590"><div class="_3C4to" data-reactid="1591"><div class="_3xQS8" data-reactid="1592"><span class="_1vK7W" name="heartoutline" data-reactid="1593"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1594"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1595"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1596"></div></div><a title="maison 2 pièces 50 m2" class="clearfix trackable" rel="nofollow" href="/locations/1669728424.htm/" data-reactid="1597"><div class="_3dPxM" data-reactid="1598"><span class="_a3cT" data-reactid="1599"><div class="LazyLoad" data-reactid="1600"></div></span><span class="_2lY3w" data-reactid="1601"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1602"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1603"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1604"></path></svg></span><span data-reactid="1605">3</span></span></div><section class="_2EDA9" data-reactid="1606"><div data-reactid="1607"><p class="_2tubl" data-reactid="1608"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1609">maison 2 pièces 50 m2</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1610"><meta itemprop="priceCurrency" content="EUR" data-reactid="1611"/><span class="_1JRvz" data-reactid="1612"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1613"><!-- react-text: 1614 -->800<!-- /react-text --><!-- react-text: 1615 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1616"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1617"><!-- react-text: 1618 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1619">Epinay-sur-Seine 93800</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:16" data-reactid="1620">Aujourd&#x27;hui, 20:16</p></div></section></a><div class="yrUdB" data-reactid="1621"><div data-reactid="1622"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_31" data-id="tooltip" data-reactid="1623"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1624"><div data-reactid="1625"><div data-reactid="1626"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1627"><div data-reactid="1628"><div class="_3C4to" data-reactid="1629"><div class="_3xQS8" data-reactid="1630"><span class="_1vK7W" name="heartoutline" data-reactid="1631"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1632"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1633"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1634"></div></div><a title="Appartement 3 pièces 80m²" class="clearfix trackable" rel="nofollow" href="/locations/1639808089.htm/" data-reactid="1635"><div class="_3dPxM" data-reactid="1636"><div class="_3OW-W" data-reactid="1637"></div><!-- react-text: 1638 --><!-- /react-text --></div><section class="_2EDA9" data-reactid="1639"><div data-reactid="1640"><p class="_2tubl" data-reactid="1641"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1642">Appartement 3 pièces 80m²</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1643"><meta itemprop="priceCurrency" content="EUR" data-reactid="1644"/><span class="_1JRvz" data-reactid="1645"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1646"><!-- react-text: 1647 -->1 242<!-- /react-text --><!-- react-text: 1648 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1649"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1650"><span class="_1HeL0" data-reactid="1651">(Pro) </span><!-- react-text: 1652 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1653">Brunoy 91800</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:16" data-reactid="1654">Aujourd&#x27;hui, 20:16</p></div></section></a><div class="yrUdB" data-reactid="1655"><div data-reactid="1656"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_32" data-id="tooltip" data-reactid="1657"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1658"><div data-reactid="1659"><div data-reactid="1660"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1661"><div data-reactid="1662"><div class="_3C4to" data-reactid="1663"><div class="_3xQS8" data-reactid="1664"><span class="_1vK7W" name="heartoutline" data-reactid="1665"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1666"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1667"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1668"></div></div><a title="Location appartement refait à neuf proche Paris" class="clearfix trackable" rel="nofollow" href="/locations/1669727321.htm/" data-reactid="1669"><div class="_3dPxM" data-reactid="1670"><span class="_a3cT" data-reactid="1671"><div class="LazyLoad" data-reactid="1672"></div></span><span class="_2lY3w" data-reactid="1673"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1674"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1675"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1676"></path></svg></span><span data-reactid="1677">3</span></span></div><section class="_2EDA9" data-reactid="1678"><div data-reactid="1679"><p class="_2tubl" data-reactid="1680"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1681">Location appartement refait à neuf proche Paris</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1682"><meta itemprop="priceCurrency" content="EUR" data-reactid="1683"/><span class="_1JRvz" data-reactid="1684"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1685"><!-- react-text: 1686 -->900<!-- /react-text --><!-- react-text: 1687 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1688"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1689"><!-- react-text: 1690 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1691">Montreuil 93100</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:14" data-reactid="1692">Aujourd&#x27;hui, 20:14</p></div></section></a><div class="yrUdB" data-reactid="1693"><div data-reactid="1694"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_33" data-id="tooltip" data-reactid="1695"></div></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3DFQ-" data-qa-id="aditem_container" data-reactid="1696"><div data-reactid="1697"><div data-reactid="1698"><div class="W5Mie" data-qa-id="listitem_save_ad" data-reactid="1699"><div data-reactid="1700"><div class="_3C4to" data-reactid="1701"><div class="_3xQS8" data-reactid="1702"><span class="_1vK7W" name="heartoutline" data-reactid="1703"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1704"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1705"></path></svg></span></div></div></div></div></div><div class="aYw-j" data-reactid="1706"></div></div><a title="Location Studio Photo Video" class="clearfix trackable" rel="nofollow" href="/locations/1669727197.htm/" data-reactid="1707"><div class="_3dPxM" data-reactid="1708"><span class="_a3cT" data-reactid="1709"><div class="LazyLoad" data-reactid="1710"></div></span><span class="_2lY3w" data-reactid="1711"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1712"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1713"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1714"></path></svg></span><span data-reactid="1715">3</span></span></div><section class="_2EDA9" data-reactid="1716"><div data-reactid="1717"><p class="_2tubl" data-reactid="1718"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1719">Location Studio Photo Video</span></p><div class="_2OJ8g" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1720"><meta itemprop="priceCurrency" content="EUR" data-reactid="1721"/><span class="_1JRvz" data-reactid="1722"><span itemprop="priceCurrency" content="EUR" class="_1NfL7" data-reactid="1723"><!-- react-text: 1724 -->350<!-- /react-text --><!-- react-text: 1725 --> €<!-- /react-text --></span></span></div></div><div data-reactid="1726"><p class="CZbT3" itemprop="alternateName" data-qa-id="aditem_category" content="Locations" data-reactid="1727"><!-- react-text: 1728 -->Locations<!-- /react-text --></p><p class="_2qeuk" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1729">Ivry-sur-Seine 94200</p><p class="mAnae" itemprop="availabilityStarts" data-qa-id="listitem_date" content="Aujourd&#x27;hui, 20:14" data-reactid="1730">Aujourd&#x27;hui, 20:14</p></div></section></a><div class="yrUdB" data-reactid="1731"><div data-reactid="1732"></div></div><div class="__react_component_tooltip place-top type-dark " id="toggleSavedAd_34" data-id="tooltip" data-reactid="1733"></div></li><div class="_4cOP1" data-reactid="1734"><!-- react-empty: 1735 --><button class="_2sNbI _1xIyN _2xk2l _2B6ae _1Q7d5 _2qyUu" data-reactid="1736"><span class="_1vK7W _1eOK1 QKFCn _2-_jT" name="notifoutline" data-reactid="1737"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1738"><path d="M12 24a2.49 2.49 0 0 0 2.5-2.46h-5A2.48 2.48 0 0 0 12 24zM21.13 18.2l-1.62-1.58v-6.16c0-3.78-2.05-6.94-5.63-7.78v-.83a1.88 1.88 0 0 0-3.76 0v.83c-3.59.84-5.63 4-5.63 7.78v6.16L2.87 18.2a1.23 1.23 0 0 0 .88 2.11h16.49a1.23 1.23 0 0 0 .89-2.11zM17 17.85H7v-7.39c0-3.05 1.89-5.54 5-5.54s5 2.49 5 5.54z" data-reactid="1739"></path></svg></span><span class="_3bnUw" data-reactid="1740">Sauvegarder la recherche</span></button></div></ul></div><div data-reactid="1741"><ins id="pagesJaunesListingBas" data-reactid="1742"></ins></div><div class="_1evK6" data-reactid="1743"><nav class="nMaRG" data-reactid="1744"><div data-reactid="1745"><ul class="_25feg" data-reactid="1746"><li class="_2zwVR" data-reactid="1747"><span class="_1f-eo _8osi3" data-reactid="1748"><span class="_1vK7W K5CQx _Od24" name="chevronleft" data-reactid="1749"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1750"><path d="M10.13 12l8.25-8.33a2.15 2.15 0 0 0 0-3 2.1 2.1 0 0 0-3 0l-9.76 9.82a2.14 2.14 0 0 0 0 3l9.76 9.86a2.1 2.1 0 0 0 3 0 2.2 2.2 0 0 0 0-3.05z" data-reactid="1751"></path></svg></span></span></li><li class="_2zwVR" data-reactid="1752"><span class="_1f-eo _2nsY3" data-reactid="1753">1</span></li><li class="_2zwVR" data-reactid="1754"><a class="_1f-eo" href="/locations/offres/ile_de_france/p-2/" data-reactid="1755">2</a></li><li class="_2zwVR" data-reactid="1756"><a class="_1f-eo" href="/locations/offres/ile_de_france/p-3/" data-reactid="1757">3</a></li><li class="_2zwVR" data-reactid="1758"><a class="_1f-eo" href="/locations/offres/ile_de_france/p-4/" data-reactid="1759">4</a></li><li class="_2zwVR" data-reactid="1760"><a class="_1f-eo" href="/locations/offres/ile_de_france/p-5/" data-reactid="1761">5</a></li><li class="_2zwVR" data-reactid="1762"><a class="_1f-eo" href="/locations/offres/ile_de_france/p-2/" data-reactid="1763"><span class="_1vK7W K5CQx _Od24" name="chevronright" data-reactid="1764"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1765"><path d="M18.38 10.49L8.62.63a2.1 2.1 0 0 0-3 0 2.15 2.15 0 0 0 0 3L13.87 12l-8.25 8.32a2.2 2.2 0 0 0 0 3.05 2.1 2.1 0 0 0 3 0l9.76-9.86a2.14 2.14 0 0 0 0-3.02z" data-reactid="1766"></path></svg></span></a></li></ul></div><!-- react-empty: 1767 --></nav></div></div></div><div class="_2qwGs" data-reactid="1768"><div data-reactid="1769"><div class="_2_etK" data-reactid="1770"><ul data-reactid="1771"><li itemscope="" itemtype="http://schema.org/Offer" class="_3eDdy" data-reactid="1772"><div class="_3Zm0x" data-qa-id="listitem_save_ad" data-reactid="1773"><div data-reactid="1774"><div class="_3C4to" data-reactid="1775"><div class="" data-reactid="1776"><span class="_1vK7W" name="heartoutline" data-reactid="1777"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1778"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1779"></path></svg></span></div></div></div></div><a title="Maison avec jardinet" class="_2fKRW" data-qa-id="aditem_container" href="/locations/1667510230.htm/" data-reactid="1780"><span class="_1sbqp" data-reactid="1781">À LA UNE</span><div class="_2-jsN" data-reactid="1782"><div class="LazyLoad" data-reactid="1783"></div><span class="_3R0AG" data-reactid="1784"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1785"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1786"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1787"></path></svg></span><span data-reactid="1788">10</span></span></div><div class="_3beID" data-reactid="1789"><section class="irAof" data-reactid="1790"><div data-reactid="1791"><p class="_3ZfBw" data-reactid="1792"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1793">Maison avec jardinet</span></p><div class="CeFtS" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1794"><meta itemprop="priceCurrency" content="EUR" data-reactid="1795"/><div class="CeFtS" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1796"><span class="_1_bNq" data-reactid="1797"><span itemprop="price" data-reactid="1798">810</span><!-- react-text: 1799 --> €<!-- /react-text --></span></div></div></div><div data-reactid="1800"><p class="_2a7dC" itemprop="alternateName" content="Locations" data-qa-id="aditem_category" data-reactid="1801"><!-- react-text: 1802 -->Locations<!-- /react-text --></p><p class="_1s5WJ" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1803">Champagne-sur-Seine 77430</p></div></section><div class="_3A9T7" data-reactid="1804"></div></div></a></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3eDdy" data-reactid="1805"><div class="_3Zm0x" data-qa-id="listitem_save_ad" data-reactid="1806"><div data-reactid="1807"><div class="_3C4to" data-reactid="1808"><div class="" data-reactid="1809"><span class="_1vK7W" name="heartoutline" data-reactid="1810"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1811"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1812"></path></svg></span></div></div></div></div><a title="Parking proche Place Gambetta Paris 20" class="_2fKRW" data-qa-id="aditem_container" href="/locations/1640071173.htm/" data-reactid="1813"><span class="_1sbqp" data-reactid="1814">À LA UNE</span><div class="_2-jsN" data-reactid="1815"><div class="LazyLoad" data-reactid="1816"></div><span class="_3R0AG" data-reactid="1817"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1818"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1819"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1820"></path></svg></span><span data-reactid="1821">3</span></span></div><div class="_3beID" data-reactid="1822"><section class="irAof" data-reactid="1823"><div data-reactid="1824"><p class="_3ZfBw" data-reactid="1825"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1826">Parking proche Place Gambetta Paris 20</span></p><div class="CeFtS" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1827"><meta itemprop="priceCurrency" content="EUR" data-reactid="1828"/><div class="CeFtS" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1829"><span class="_1_bNq" data-reactid="1830"><span itemprop="price" data-reactid="1831">100</span><!-- react-text: 1832 --> €<!-- /react-text --></span></div></div></div><div data-reactid="1833"><p class="_2a7dC" itemprop="alternateName" content="Locations" data-qa-id="aditem_category" data-reactid="1834"><!-- react-text: 1835 -->Locations<!-- /react-text --></p><p class="_1s5WJ" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1836">Paris 75020</p></div></section><div class="_3A9T7" data-reactid="1837"></div></div></a></li><li itemscope="" itemtype="http://schema.org/Offer" class="_3eDdy" data-reactid="1838"><div class="_3Zm0x" data-qa-id="listitem_save_ad" data-reactid="1839"><div data-reactid="1840"><div class="_3C4to" data-reactid="1841"><div class="" data-reactid="1842"><span class="_1vK7W" name="heartoutline" data-reactid="1843"><svg viewBox="0 0 24 24" data-name="Calque 1" focusable="false" data-reactid="1844"><path d="M21.19 2.24A6.76 6.76 0 0 0 12 3.61a6.76 6.76 0 0 0-9.19-1.37A6.89 6.89 0 0 0 0 7.58c-.16 4.84 4 8.72 10.26 14.66l.12.12a2.32 2.32 0 0 0 3.23 0l.13-.12C20 16.29 24.15 12.41 24 7.57a6.89 6.89 0 0 0-2.81-5.33zm-9.07 18.15l-.12.12-.12-.12C6.17 15 2.4 11.46 2.4 7.86a4.18 4.18 0 0 1 4.2-4.37 4.68 4.68 0 0 1 4.28 3h2.25a4.66 4.66 0 0 1 4.27-3 4.18 4.18 0 0 1 4.2 4.37c0 3.6-3.77 7.14-9.48 12.53z" data-reactid="1845"></path></svg></span></div></div></div></div><a title="Appt 80m2.3/4 pièces.75013 limite 75005" class="_2fKRW" data-qa-id="aditem_container" href="/locations/1665224562.htm/" data-reactid="1846"><span class="_1sbqp" data-reactid="1847">À LA UNE</span><div class="_2-jsN" data-reactid="1848"><div class="LazyLoad" data-reactid="1849"></div><span class="_3R0AG" data-reactid="1850"><span class="_1vK7W _1eOK1" name="camera" data-reactid="1851"><svg height="22" width="24" viewBox="0 0 24 22" focusable="false" data-reactid="1852"><path d="M12 8.556c1.988 0 3.6 1.642 3.6 3.667 0 2.024-1.612 3.666-3.6 3.666s-3.6-1.642-3.6-3.666c0-2.025 1.612-3.667 3.6-3.667zm0 9.778c3.313 0 6-2.738 6-6.111 0-3.375-2.687-6.112-6-6.112-3.312 0-6 2.737-6 6.112 0 3.373 2.688 6.11 6 6.11zm9.6-15.89c1.32 0 2.4 1.1 2.4 2.444v14.667C24 20.9 22.92 22 21.6 22H2.4C1.08 22 0 20.9 0 19.555V4.89c0-1.345 1.08-2.445 2.4-2.445h3.804L7.68.795A2.415 2.415 0 0 1 9.456 0h5.088c.672 0 1.32.294 1.764.794l1.488 1.65H21.6z" fill="#000" data-reactid="1853"></path></svg></span><span data-reactid="1854">10</span></span></div><div class="_3beID" data-reactid="1855"><section class="irAof" data-reactid="1856"><div data-reactid="1857"><p class="_3ZfBw" data-reactid="1858"><span itemprop="name" data-qa-id="aditem_title" data-reactid="1859">Appt 80m2.3/4 pièces.75013 limite 75005</span></p><div class="CeFtS" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1860"><meta itemprop="priceCurrency" content="EUR" data-reactid="1861"/><div class="CeFtS" itemprop="priceSpecification" itemscope="" itemtype="http://schema.org/PriceSpecification" data-qa-id="aditem_price" data-reactid="1862"><span class="_1_bNq" data-reactid="1863"><span itemprop="price" data-reactid="1864">2 300</span><!-- react-text: 1865 --> €<!-- /react-text --></span></div></div></div><div data-reactid="1866"><p class="_2a7dC" itemprop="alternateName" content="Locations" data-qa-id="aditem_category" data-reactid="1867"><!-- react-text: 1868 -->Locations<!-- /react-text --></p><p class="_1s5WJ" itemprop="availableAtOrFrom" data-qa-id="aditem_location" data-reactid="1869">Paris 75005</p></div></section><div class="_3A9T7" data-reactid="1870"></div></div></a></li></ul></div></div><div class="advertisingSkyscraper" data-reactid="1871"><div class="initPosition" data-reactid="1872"><div class="_39t72" data-reactid="1873"><div class="apn-sk skyscraper _3beIN _3O6XM" data-reactid="1874"><span id="sk-l" class="teal-apn" data-reactid="1875"></span><span id="sk-xl" class="teal-apn" data-reactid="1876"></span></div></div></div></div></div><div class="_2joc2 apn-sk skyscraper" data-reactid="1877"><span id="sk-m" class="teal-apn" data-reactid="1878"></span></div></div></div></div><div class="_-o_FS" data-reactid="1879"><section class="_3f6Yo" data-reactid="1880"><div class="_1i0e0 _3-IRH" data-reactid="1881"><div class="_3r6oA" data-reactid="1882"><ul data-reactid="1883"><li class="_2mlAz" data-reactid="1884">Top villes</li><li data-reactid="1885"><a title="Achat appartement Versailles" class="trackable" href="/s/87cf43f9-achat-appartement-versailles/" data-reactid="1886">Achat appartement Versailles</a></li><li data-reactid="1887"><a title="Location appartement Neuilly-sur-Seine" class="trackable" href="/s/9f69556b-location-appartement-neuilly-sur-seine/" data-reactid="1888">Location appartement Neuilly-sur-Seine</a></li><li data-reactid="1889"><a title="Location appartement Montrouge" class="trackable" href="/s/550a8167-location-appartement-montrouge/" data-reactid="1890">Location appartement Montrouge</a></li><li data-reactid="1891"><a title="Location appartement Levallois-Perret" class="trackable" href="/s/6a59a6b1-location-appartement-levallois-perret/" data-reactid="1892">Location appartement Levallois-Perret</a></li></ul></div><div class="_3r6oA" data-reactid="1893"><ul data-reactid="1894"><li class="_2mlAz" data-reactid="1895">Top département</li><li data-reactid="1896"><a title="Immobilier dans les Yvelines" class="trackable" href="/_immobilier_/offres/ile_de_france/yvelines/" data-reactid="1897">Immobilier dans les Yvelines</a></li><li data-reactid="1898"><a title="Immobilier en Seine-et-Marne" class="trackable" href="/_immobilier_/offres/ile_de_france/seine_et_marne/" data-reactid="1899">Immobilier en Seine-et-Marne</a></li><li data-reactid="1900"><a title="Locations à Paris" class="trackable" href="/locations/offres/ile_de_france/paris/" data-reactid="1901">Locations à Paris</a></li><li data-reactid="1902"><a title="Ventes immobilières dans le Val de Marne" class="trackable" href="/ventes_immobilieres/offres/ile_de_france/val_de_marne/" data-reactid="1903">Ventes immobilières dans le Val de Marne</a></li></ul></div><div class="_3r6oA" data-reactid="1904"><ul data-reactid="1905"><li class="_2mlAz" data-reactid="1906">Dans la région</li><li data-reactid="1907"><a title="Immobilier en Ile-de-France" class="trackable" href="/_immobilier_/offres/ile_de_france/" data-reactid="1908">Immobilier en Ile-de-France</a></li><li data-reactid="1909"><a title="Ventes immobilières en Ile-de-France" class="trackable" href="/ventes_immobilieres/offres/ile_de_france/" data-reactid="1910">Ventes immobilières en Ile-de-France</a></li><li data-reactid="1911"><a title="Location parking en Ile-de-France" class="trackable" href="/s/cab5c39c-location-parking-en-ile-de-france/" data-reactid="1912">Location parking en Ile-de-France</a></li><li data-reactid="1913"><a title="Achat terrain en Ile-de-France" class="trackable" href="/s/0cb29443-achat-terrain-en-ile-de-france/" data-reactid="1914">Achat terrain en Ile-de-France</a></li></ul></div><div class="_3r6oA" data-reactid="1915"><ul data-reactid="1916"><li class="_2mlAz" data-reactid="1917">Voir aussi</li><li data-reactid="1918"><a title="Vente maison" class="trackable" href="/ventes_immobilieres/offres/" data-reactid="1919">Vente maison</a></li><li data-reactid="1920"><a title="Location appartement" class="trackable" href="/locations/offres/" data-reactid="1921">Location appartement</a></li><li data-reactid="1922"><a title="Vente terrain" class="trackable" href="/s/1d103745-achat-terrain/" data-reactid="1923">Vente terrain</a></li><li data-reactid="1924"><a title="Louer parking" class="trackable" href="/s/13a11f1a-location-parking/" data-reactid="1925">Louer parking</a></li></ul></div></div></section></div><!-- react-empty: 1926 --><!-- react-empty: 1927 --></div><footer class="_2TcK4" data-reactid="1928"><div class="_2cF5E" data-reactid="1929"><div class="_1u8Yi" data-reactid="1930"><div class="_9cgJE" data-reactid="1931"><div class="_3WCKP" data-reactid="1932"><ul class="_3WCKP" data-reactid="1933"><li class="_1qFBk" data-reactid="1934">à propos du boncoin</li><li class="_3TyPP" data-reactid="1935"><a href="https://corporate.leboncoin.fr/" target="_blank" rel="noopener" title="Qui sommes-nous ?" class="trackable" data-reactid="1936">Qui sommes-nous ?</a></li><li class="_3TyPP" data-reactid="1937"><a href="https://www.leboncoin.fr/recrutement.htm" title="Nous rejoindre" class="trackable" data-reactid="1938">Nous rejoindre</a></li></ul><ul class="_3WCKP" data-reactid="1939"><li class="_1qFBk" data-reactid="1940">Nos applications</li><li class="_3TyPP" data-reactid="1941"><div class="HSQRj" data-reactid="1942"><a class="_3WeLY" rel="nofollow noopener" href="https://itunes.apple.com/fr/app/leboncoin/id484115113" title="Télécharger l’application iOS" target="_blank" data-reactid="1943"><div class="LazyLoad" data-reactid="1944"></div></a><a class="_3WeLY" rel="nofollow noopener" href="https://play.google.com/store/apps/details?id=fr.leboncoin" title="Télécharger l’application Android" target="_blank" data-reactid="1945"><div class="LazyLoad" data-reactid="1946"></div></a></div></li></ul></div><ul class="_3WCKP" data-reactid="1947"><li class="_1qFBk" data-reactid="1948">Informations légales</li><li class="_3TyPP" data-reactid="1949"><a href="https://www.leboncoin.fr/dc/cgu/" rel="nofollow" title="Conditions générales d’utilisation" class="trackable" data-reactid="1950">Conditions générales d’utilisation</a></li><li class="_3TyPP" data-reactid="1951"><a href="https://www.leboncoin.fr/dc/rules/" rel="nofollow" title="Règles de diffusion, de référencement et de déréférencement" class="trackable" data-reactid="1952">Règles de diffusion, de référencement et de déréférencement</a></li><li class="_3TyPP" data-reactid="1953"><a href="https://www.leboncoin.fr/dc/cgv/" rel="nofollow" title="Conditions générales de vente" class="trackable" data-reactid="1954">Conditions Générales de Vente</a></li><li class="_3TyPP" data-reactid="1955"><a href="https://www.leboncoin.fr/dc/cookies/" rel="nofollow" title="Vie privée / cookies" class="trackable" data-reactid="1956">Vie privée / cookies</a></li><li class="_3TyPP" data-reactid="1957"><a href="https://www.leboncoin.fr/dc/vos_droits_et_obligations/" rel="nofollow" title="Vos droits et obligations" class="trackable" data-reactid="1958">Vos droits et obligations</a></li><li class="_3TyPP" data-reactid="1959"><a href="https://www.leboncoin.fr/dc/rules#critere_classement_annonces" rel="nofollow" title="Critères de classement" class="trackable" data-reactid="1960">Critères de classement</a></li></ul><ul class="_3WCKP" data-reactid="1961"><li class="_1qFBk" data-reactid="1962">Professionnels</li><li class="_3TyPP" data-reactid="1963"><a href="/pub" title="Publicité" class="trackable" data-reactid="1964">Publicité</a></li><li class="_3TyPP" data-reactid="1965"><a href="/immobilier" rel="nofollow" title="Professionnels de l’immobilier" class="trackable" data-reactid="1966">Professionnels de l’immobilier</a></li><li class="_3TyPP" data-reactid="1967"><a href="/vos-recrutements" title="Vos recrutements" class="trackable" data-reactid="1968">Vos recrutements</a></li><li class="_3TyPP" data-reactid="1969"><a href="https://pro.leboncoin.fr/" target="_blank" rel="noopener" title="Toutes nos solutions pros" class="trackable" data-reactid="1970">Toutes nos solutions pros</a></li></ul><div class="_3WCKP" data-reactid="1971"><ul class="_3WCKP" data-reactid="1972"><li class="_1qFBk" data-reactid="1973">Des questions ?</li><li class="_3TyPP" data-reactid="1974"><a href="https://assistance.leboncoin.info/hc/fr" title="Aide" class="trackable" data-reactid="1975">Aide</a></li></ul><ul class="_3WCKP" data-reactid="1976"><li class="_1qFBk" data-reactid="1977">Vous êtes à l’étranger ?</li><li class="_3TyPP" data-reactid="1978"><div class="_169dp" data-reactid="1979"><div class="_2XLzw _3Culc" data-reactid="1980"><div class="_2Gf3M" data-reactid="1981"><span class="_1oSml _1Cvux sMU1c" data-reactid="1982"><svg width="1em" height="1em" viewBox="0 0 512 336" data-reactid="1983"><g fill-rule="nonzero" fill="none" data-reactid="1984"><path d="M170.667 335.724H8.828A8.829 8.829 0 0 1 0 326.896V9.103A8.829 8.829 0 0 1 8.828.275h161.839v335.449z" fill="#41479B" data-reactid="1985"></path><path fill="#F5F5F5" d="M170.67.276h170.67v335.448H170.67z" data-reactid="1986"></path><path d="M503.172 335.724H341.333V.276h161.839A8.829 8.829 0 0 1 512 9.104v317.793a8.828 8.828 0 0 1-8.828 8.827z" fill="#FF4B55" data-reactid="1987"></path></g></svg></span><!-- react-text: 1988 -->France<!-- /react-text --></div><span class="_1oSml pz0m1 _12oyt" data-reactid="1989"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="1990"><path d="M23.37 5.62a2.15 2.15 0 0 0-3 0L12 13.87 3.68 5.62a2.2 2.2 0 0 0-3.05 0 2.1 2.1 0 0 0 0 3l9.86 9.76a2.14 2.14 0 0 0 3 0l9.86-9.76a2.1 2.1 0 0 0 .02-3z" data-reactid="1991"></path></svg></span></div></div></li></ul></div></div><ul class="_2hEW9" data-reactid="1992"><li class="_1de9x _2hArU" data-reactid="1993">Partenaires : </li><li class="_1de9x" data-reactid="1994"><a href="http://www.younited-credit.com" target="_blank" rel="noopener" title="Younited Credit" class="trackable" data-reactid="1995">Younited Credit</a></li><li class="_1de9x" data-reactid="1996"><a href="https://emploicadres.leboncoin.fr/?utm_source=leboncoin&amp;utm_medium=footer&amp;utm_campaign=permanent" target="_blank" rel="noopener" title="leboncoin Emploi Cadres" class="trackable" data-reactid="1997">leboncoin Emploi Cadres</a></li><li class="_1de9x" data-reactid="1998"><a href="http://www.agriaffaires.com/?utm_source=partner_lbc" target="_blank" rel="noopener" title="Agriaffaires" class="trackable" data-reactid="1999">Agriaffaires</a></li><li class="_1de9x" data-reactid="2000"><a href="http://www.machineryzone.fr/?utm_source=partner_lbc" target="_blank" rel="noopener" title="MachineryZone" class="trackable" data-reactid="2001">MachineryZone</a></li><li class="_1de9x" data-reactid="2002"><a href="http://www.ledenicheur.fr" target="_blank" rel="noopener" title="leDénicheur" class="trackable" data-reactid="2003">leDénicheur</a></li><li class="_1de9x" data-reactid="2004"><a href="https://www.avendrealouer.fr" target="_blank" rel="noopener" title="AVendreALouer" class="trackable" data-reactid="2005">AVendreALouer</a></li><li class="_1de9x" data-reactid="2006"><a href="https://immobilierneuf.leboncoin.fr" target="_blank" rel="noopener" title="leboncoin Immobilier Neuf" class="trackable" data-reactid="2007">leboncoin Immobilier Neuf</a></li><li class="_1de9x" data-reactid="2008"><a href="https://www.videdressing.com/" target="_blank" rel="noopener" title="Luxe et Tendance" class="trackable" data-reactid="2009">Luxe et Tendance</a></li><li class="_1de9x" data-reactid="2010"><a href="https://www.locasun.fr/" target="_blank" rel="noopener" title="Locasun - Les locations vacances" class="trackable" data-reactid="2011">Locasun</a></li><li class="_1de9x" data-reactid="2012"><a href="https://www.locasun-vp.fr/" target="_blank" rel="noopener" title="Locasun-vp - Ventes privées de locations vacances et weekends" class="trackable" data-reactid="2013">Locasun-vp</a></li><li class="_1de9x" data-reactid="2014"><a href="https://www.paycar.fr/" target="_blank" rel="noopener" title="Paycar" class="trackable" data-reactid="2015">Paycar</a></li></ul></div><div class="_1-1SA" data-reactid="2016"><span data-reactid="2017">leboncoin 2006 - 2019</span><div class="_1JqBX" data-reactid="2018"><span class="_1u8Yi _3klmW" data-reactid="2019">Retrouvez-nous sur</span><a href="https://www.facebook.com/leboncoin-1565057520410527/" target="_blank" rel="noopener nofollow" class="trackable" data-reactid="2020"><span class="_1oSml _1vO9p wnMxI sMU1c" data-reactid="2021"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="2022"><path d="M22.68 0H1.32A1.32 1.32 0 0 0 0 1.32v21.36A1.32 1.32 0 0 0 1.32 24h11.51v-9.28H9.7v-3.63h3.13V8.41c0-3.1 1.88-4.79 4.65-4.79H18.87c.47 0 .93.06 1.4.11V7h-1.92a3 3 0 0 0-.71.07c-.87.21-1.07.84-1.07 1.69v2.31h3.6l-.47 3.63h-3.15V24h6.13A1.32 1.32 0 0 0 24 22.68V1.32A1.32 1.32 0 0 0 22.68 0z" data-reactid="2023"></path></svg></span></a><a href="https://twitter.com/leboncoin/" target="_blank" rel="noopener nofollow" class="trackable" data-reactid="2024"><span class="_1oSml _1vO9p wnMxI" data-reactid="2025"><svg data-name="Calque 1" viewBox="0 0 24 24" width="1em" height="1em" data-reactid="2026"><path d="M22.67 0H1.33A1.32 1.32 0 0 0 0 1.33v21.34A1.32 1.32 0 0 0 1.33 24h21.34A1.32 1.32 0 0 0 24 22.67V1.33A1.32 1.32 0 0 0 22.67 0zM18.4 8.78c-.11 5.53-3.6 9.38-8.9 9.62A8.77 8.77 0 0 1 4.33 17 6.4 6.4 0 0 0 9 15.64a3.25 3.25 0 0 1-3-2.29 4.84 4.84 0 0 0 1.32 0 3.27 3.27 0 0 1-2.51-3.25 2.42 2.42 0 0 0 1.32.36 3.55 3.55 0 0 1-1-4.33 9.5 9.5 0 0 0 6.65 3.37c-.78-3.37 3.74-5.17 5.54-2.89a8.17 8.17 0 0 0 2.05-.72 3.32 3.32 0 0 1-1.32 1.8 6.46 6.46 0 0 0 1.68-.48c-.12.61-.73 1.09-1.33 1.57z" data-reactid="2027"></path></svg></span></a></div></div></div></footer></div></main><!-- react-empty: 2028 --><div class="_3kopx" data-reactid="2029"></div><div class="_2kvEo" data-reactid="2030"></div><!-- react-empty: 2031 --></section><span hidden="" class="hidden" data-reactid="2032">version: 2019-09-03.24780</span><script src="//rum-static.pingdom.net/pa-5d6ce5179623b000080002de.js" async="" data-reactid="2033"></script></div></div></div>
-
- <script>
- var regions_departements = {
-
- "1" : {
- 67 : "Bas-Rhin",
- 68 : "Haut-Rhin",
-
- },
-
- "2" : {
- 24 : "Dordogne",
- 33 : "Gironde",
- 40 : "Landes",
- 47 : "Lot-et-Garonne",
- 64 : "Pyrénées-Atlantiques",
-
- },
-
- "3" : {
- 3 : "Allier",
- 15 : "Cantal",
- 43 : "Haute-Loire",
- 63 : "Puy-de-Dôme",
-
- },
-
- "4" : {
- 14 : "Calvados",
- 50 : "Manche",
- 61 : "Orne",
-
- },
-
- "5" : {
- 21 : "Côte-d'Or",
- 58 : "Nièvre",
- 71 : "Saône-et-Loire",
- 89 : "Yonne",
-
- },
-
- "6" : {
- 22 : "Côtes-d'Armor",
- 29 : "Finistère",
- 35 : "Ille-et-Vilaine",
- 56 : "Morbihan",
-
- },
-
- "7" : {
- 18 : "Cher",
- 28 : "Eure-et-Loir",
- 36 : "Indre",
- 37 : "Indre-et-Loire",
- 41 : "Loir-et-Cher",
- 45 : "Loiret",
-
- },
-
- "8" : {
- 8 : "Ardennes",
- 10 : "Aube",
- 51 : "Marne",
- 52 : "Haute-Marne",
-
- },
-
- "10" : {
- 25 : "Doubs",
- 39 : "Jura",
- 70 : "Haute-Saône",
- 90 : "Territoire de Belfort",
-
- },
-
- "11" : {
- 27 : "Eure",
- 76 : "Seine-Maritime",
-
- },
-
- "12" : {
- 75 : "Paris",
- 77 : "Seine-et-Marne",
- 78 : "Yvelines",
- 91 : "Essonne",
- 92 : "Hauts-de-Seine",
- 93 : "Seine-Saint-Denis",
- 94 : "Val-de-Marne",
- 95 : "Val-d'Oise",
-
- },
-
- "13" : {
- 11 : "Aude",
- 30 : "Gard",
- 34 : "Hérault",
- 48 : "Lozère",
- 66 : "Pyrénées-Orientales",
-
- },
-
- "14" : {
- 19 : "Corrèze",
- 23 : "Creuse",
- 87 : "Haute-Vienne",
-
- },
-
- "15" : {
- 54 : "Meurthe-et-Moselle",
- 55 : "Meuse",
- 57 : "Moselle",
- 88 : "Vosges",
-
- },
-
- "16" : {
- 9 : "Ariège",
- 12 : "Aveyron",
- 31 : "Haute-Garonne",
- 32 : "Gers",
- 46 : "Lot",
- 65 : "Hautes-Pyrénées",
- 81 : "Tarn",
- 82 : "Tarn-et-Garonne",
-
- },
-
- "17" : {
- 59 : "Nord",
- 62 : "Pas-de-Calais",
-
- },
-
- "18" : {
- 44 : "Loire-Atlantique",
- 49 : "Maine-et-Loire",
- 53 : "Mayenne",
- 72 : "Sarthe",
- 85 : "Vendée",
-
- },
-
- "19" : {
- 2 : "Aisne",
- 60 : "Oise",
- 80 : "Somme",
-
- },
-
- "20" : {
- 16 : "Charente",
- 17 : "Charente-Maritime",
- 79 : "Deux-Sèvres",
- 86 : "Vienne",
-
- },
-
- "21" : {
- 4 : "Alpes-de-Haute-Provence",
- 5 : "Hautes-Alpes",
- 6 : "Alpes-Maritimes",
- 13 : "Bouches-du-Rhône",
- 83 : "Var",
- 84 : "Vaucluse",
-
- },
-
- "22" : {
- 1 : "Ain",
- 7 : "Ardèche",
- 26 : "Drôme",
- 38 : "Isère",
- 42 : "Loire",
- 69 : "Rhône",
- 73 : "Savoie",
- 74 : "Haute-Savoie",
-
- },
-
-};
-
- </script>
- </form>
- <script>
-
- jQuery(document).ready(function() {
- searchboxAds = new SearchboxAds('/li');
- searchboxAds.regionsDepartments = regions_departements;
-
- if (($('input[name="c"]').length) && ($('input[name="c"]').val() != 0))
- searchboxAds.showParams($('.customSelect_categories a[data-category="' + $('input[name="c"]').val() + '"]'));
-
- searchboxAds.eventTrackers();
-
- if($('body').hasClass('ua_IE8')) {
- $('#searcharea').find('option[value="4"]').remove();
- }
-
- if($('body').hasClass('ua_IE8') == false && 1 == 1) {
- searchboxAdsKeyboard = new SearchboxKeyboard();
- }
- });
-
- </script>
-
-
-
-
-
- </div>
- </section>
-
-
- <main id="main" role="main">
- <section class="content-center">
-
-
-
-
-
-
-
-
-
-
-<h1 class="grey small no-border">Annonces
-
- Locations
- :
-Bretagne </h1><!--
---><div class="apn-lt">
- <div id="lt-l" class="teal-apn"></div>
- <div id="lt-xl" class="teal-apn"></div>
-</div>
-
-
-
-
-
-
-
-<div class="apn-b">
- <div id="b1-s" class="teal-apn"></div>
- <div id="b1-m" class="teal-apn"></div><!--
- --><div id="b2-m" class="teal-apn"></div>
- <div id="b1-l" class="teal-apn"></div><!--
- --><div id="b2-l" class="teal-apn"></div><!--
- --><div id="b3-l" class="teal-apn"></div>
- <div id="b1-xl" class="teal-apn"></div><!--
- --><div id="b2-xl" class="teal-apn"></div><!--
- --><div id="b3-xl" class="teal-apn"></div><!--
- --><div id="b4-xl" class="teal-apn"></div>
- <div class="clear"></div>
-</div>
-
-
-<div class="apn-mb">
- <div id="mb-s" class="teal-apn"></div>
- <div id="mb-m" class="teal-apn"></div>
- <div id="mb-l" class="teal-apn"></div>
- <div id="mb-xl" class="teal-apn"></div>
-</div>
-
-
-
-
-
-<!-- Main container for listing and ALU -->
-<section id="listingAds" class="grid-3-1" >
- <!-- Listing -->
- <section class="list mainList tabs">
-
-<div class="apn-lt" id="lt_1">
- <div id="lt-s" class="teal-apn"></div>
- <div id="lt-m" class="teal-apn"></div>
-</div>
-
- <!-- Listing filters -->
-
- <header class="tabsHeader clearfix">
- <nav class="fl">
- <a href="//www.leboncoin.fr/locations/offres/bretagne/?" title="Afficher toutes les annonces" class="tabsSwitch trackable active" data-info='{"event_name" : "ad_search::onglet::toutes_les_annonces", "event_type" : "click", "event_s2" : "8", "click_type" : "N"}'>Toutes<span class="tabsSwitchNumbers small-hidden tiny-hidden"> 18 432</span></a>
-
-
- <a href="//www.leboncoin.fr/locations/offres/bretagne/?f=p" title="Afficher uniquement les annonces de Particuliers" class="tabsSwitch trackable" data-info='{"event_name" : "ad_search::onglet::particuliers", "event_type" : "click", "event_s2" : "8", "click_type" : "N"}'>Part<span class="custom-medium-hidden">iculiers</span><span class="tabsSwitchNumbers small-hidden tiny-hidden"> 9 589</span></a>
-
- <a href="//www.leboncoin.fr/locations/offres/bretagne/?f=c" title="Afficher uniquement les annonces de Professionnels" class="tabsSwitch trackable" data-info='{"event_name" : "ad_search::onglet::professionnels", "event_type" : "click", "event_s2" : "8", "click_type" : "N"}'>Pro<span class="custom-medium-hidden">fessionnels</span><span class="tabsSwitchNumbers small-hidden tiny-hidden"> 8 843</span></a>
-
- </nav>
- <article class="list_properties">
-
-
- <div class="selectWrapper blue">
- <select id="listSorting" class="select" onchange="listSortingChange(this); xt_click(this,'C','8','ad_search::'+this.options[this.selectedIndex].getAttribute('data-value'),'N');">
- <option value="//www.leboncoin.fr/locations/offres/bretagne/?sp=0" data-value="trier_par_date" selected>Trier par : Date</option>
- <option value="//www.leboncoin.fr/locations/offres/bretagne/?sp=1" data-value="trier_par_prix" >Trier par : Prix</option>
- </select>
- </div>
-
- </article>
- </header>
-
-
- <script>
- var lazyloadListing = new Lazyload(".tabsContent ul", 2, "//static.leboncoin.fr/img/no-picture.png");
- </script>
-
- <!-- Listing list -->
- <section class="tabsContent block-white dontSwitch">
- <ul>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450271298.htm?ca=6_s" title="Chambre style hotel" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450271298", "ad_location" : "list_content", "ad_position" : "1", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img0.leboncoin.fr/ad-thumb/283365b13667037ca1a6db3eb6e570f4ae3b6727.jpg" data-imgAlt="Chambre style hotel"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450271298">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Chambre style hotel
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Dinan
-
- /
-
- <meta itemprop="address" content="Dinan" />
-
-
- Côtes-d'Armor
- <meta itemprop="address" content="Côtes-d'Armor" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="265">
- 265&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:37
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450271056.htm?ca=6_s" title="Centre ville" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450271056", "ad_location" : "list_content", "ad_position" : "2", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img5.leboncoin.fr/ad-thumb/0a220e36711b21a896224976fabc72eebd652682.jpg" data-imgAlt="Centre ville"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450271056">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Centre ville
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Brest
-
- /
-
- <meta itemprop="address" content="Brest" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="420">
- 420&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:37
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1407544500.htm?ca=6_s" title="T3, Morlaix proche centre ville et port plaisance" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1407544500", "ad_location" : "list_content", "ad_position" : "3", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|photosup|sub_toplist|"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img4.leboncoin.fr/ad-thumb/1fd222b666e7339d414dbbe5956d3f09e2ab0c81.jpg" data-imgAlt="T3, Morlaix proche centre ville et port plaisance"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>5</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1407544500">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- T3, Morlaix proche centre ville et port plaisance
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Morlaix
-
- /
-
- <meta itemprop="address" content="Morlaix" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="395">
- 395&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:37
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1377975959.htm?ca=6_s" title="Appartement meuble" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1377975959", "ad_location" : "list_content", "ad_position" : "4", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|daily_bump|"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img1.leboncoin.fr/ad-thumb/4b14c8cabdecaa313efff53d5654bbf1eb2b5406.jpg" data-imgAlt="Appartement meuble"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1377975959">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Appartement meuble
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="565">
- 565&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:36
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
- <div class="apn-na">
- <div id="na1-s" class="teal-apn"></div>
- <div id="na1-m" class="teal-apn"></div>
- <div id="na1-l" class="teal-apn"></div>
- <div id="na1-xl" class="teal-apn"></div>
- <div id="na3-s" class="teal-apn"></div>
- <div id="na3-m" class="teal-apn"></div>
- <div id="na3-l" class="teal-apn"></div>
- <div id="na3-xl" class="teal-apn"></div>
- </div>
-
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450270098.htm?ca=6_s" title="A louer T3" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450270098", "ad_location" : "list_content", "ad_position" : "5", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img3.leboncoin.fr/ad-thumb/63fabb1d8cab1f5922dc77ec571c82c25cad490b.jpg" data-imgAlt="A louer T3"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>2</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450270098">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- A louer T3
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- La Chapelle-Janson
-
- /
-
- <meta itemprop="address" content="La Chapelle-Janson" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="420">
- 420&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:35
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450174538.htm?ca=6_s" title="locations garage / garde meuble" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450174538", "ad_location" : "list_content", "ad_position" : "6", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
- <span class="item_imagePic" style="background:url('//static.leboncoin.fr/img/no-picture.png') center no-repeat;">
- </span>
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450174538">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- locations garage / garde meuble
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Landerneau
-
- /
-
- <meta itemprop="address" content="Landerneau" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="50">
- 50&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:33
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450268170.htm?ca=6_s" title="Studio meubl&eacute;" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450268170", "ad_location" : "list_content", "ad_position" : "7", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img7.leboncoin.fr/ad-thumb/9c68474e7dfadbb56a1c16fe1f13448bf546291f.jpg" data-imgAlt="Studio meubl&eacute;"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>2</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450268170">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Studio meubl&eacute;
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Lanester
-
- /
-
- <meta itemprop="address" content="Lanester" />
-
-
- Morbihan
- <meta itemprop="address" content="Morbihan" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="290">
- 290&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:32
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450267530.htm?ca=6_s" title="Ergu&eacute;&#45;Gab&eacute;ric &#45; Maison &#45; 3 chambres &#45;" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450267530", "ad_location" : "list_content", "ad_position" : "8", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img6.leboncoin.fr/ad-thumb/e838f85a4f6c9015e86304a2f9d213d181a39242.jpg" data-imgAlt="Ergu&eacute;&#45;Gab&eacute;ric &#45; Maison &#45; 3 chambres &#45;"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450267530">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Ergu&eacute;&#45;Gab&eacute;ric &#45; Maison &#45; 3 chambres &#45;
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Ergué-Gabéric
-
- /
-
- <meta itemprop="address" content="Ergué-Gabéric" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="655">
- 655&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:31
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450267333.htm?ca=6_s" title="Studio meubl&eacute; &agrave; 2 mn de la gare" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450267333", "ad_location" : "list_content", "ad_position" : "9", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img7.leboncoin.fr/ad-thumb/09a7a3dbbce433558089c782fd0e093439f12937.jpg" data-imgAlt="Studio meubl&eacute; &agrave; 2 mn de la gare"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450267333">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Studio meubl&eacute; &agrave; 2 mn de la gare
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="475">
- 475&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:31
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450266273.htm?ca=6_s" title="Chambre &agrave; louer chez l,habitant " class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450266273", "ad_location" : "list_content", "ad_position" : "10", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img2.leboncoin.fr/ad-thumb/b55699efe4c73edace158b61377d286be6a8e8cd.jpg" data-imgAlt="Chambre &agrave; louer chez l,habitant "></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450266273">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Chambre &agrave; louer chez l,habitant
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="450">
- 450&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:29
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
- <div class="vl">
- <div id="vl-s" class="teal-apn"></div>
- <div id="vl-m" class="teal-apn"></div>
- <div id="vl-l" class="teal-apn"></div>
- <div id="vl-xl" class="teal-apn"></div>
- </div>
-
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1426927284.htm?ca=6_s" title="Appartement 3 pi&egrave;ces 63 m&sup2;" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1426927284", "ad_location" : "list_content", "ad_position" : "11", "ad_type" : "offres", "ad_offres" : "pro", "ad_options" : "|photosup|"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img2.leboncoin.fr/ad-thumb/e457c102f920cd1ab8f00e0b01468c7202229bc6.jpg" data-imgAlt="Appartement 3 pi&egrave;ces 63 m&sup2;"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>6</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1426927284">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Appartement 3 pi&egrave;ces 63 m&sup2;
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
- <span class="ispro">(pro)</span>
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Brest
-
- /
-
- <meta itemprop="address" content="Brest" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="600">
- 600&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:28
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450265866.htm?ca=6_s" title="recherche location" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450265866", "ad_location" : "list_content", "ad_position" : "12", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
- <span class="item_imagePic" style="background:url('//static.leboncoin.fr/img/no-picture.png') center no-repeat;">
- </span>
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450265866">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- recherche location
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Plaintel
-
- /
-
- <meta itemprop="address" content="Plaintel" />
-
-
- Côtes-d'Armor
- <meta itemprop="address" content="Côtes-d'Armor" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="550">
- 550&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:28
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450265154.htm?ca=6_s" title="Studio r&eacute;nov&eacute; &#45; Centre Ville Lorient" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450265154", "ad_location" : "list_content", "ad_position" : "13", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img2.leboncoin.fr/ad-thumb/fc0557743b129ac08bd4fd442bb038042af4dc0c.jpg" data-imgAlt="Studio r&eacute;nov&eacute; &#45; Centre Ville Lorient"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>2</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450265154">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Studio r&eacute;nov&eacute; &#45; Centre Ville Lorient
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Lorient
-
- /
-
- <meta itemprop="address" content="Lorient" />
-
-
- Morbihan
- <meta itemprop="address" content="Morbihan" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="360">
- 360&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:27
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450263864.htm?ca=6_s" title="Centre historique, t2 meuble" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450263864", "ad_location" : "list_content", "ad_position" : "14", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|photosup|"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img3.leboncoin.fr/ad-thumb/c6070561e8b00cf1ef9a00fa6df7b798f793ea09.jpg" data-imgAlt="Centre historique, t2 meuble"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>5</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450263864">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Centre historique, t2 meuble
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Vannes
-
- /
-
- <meta itemprop="address" content="Vannes" />
-
-
- Morbihan
- <meta itemprop="address" content="Morbihan" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="440">
- 440&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:25
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
-<div class="apn-na">
- <div id="na2-s" class="teal-apn"></div>
- <div id="na2-m" class="teal-apn"></div>
- <div id="na2-l" class="teal-apn"></div>
- <div id="na2-xl" class="teal-apn"></div>
-</div>
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450251207.htm?ca=6_s" title="appartement t3 parking priv&eacute;" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450251207", "ad_location" : "list_content", "ad_position" : "15", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
- <span class="item_imagePic" style="background:url('//static.leboncoin.fr/img/no-picture.png') center no-repeat;">
- </span>
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450251207">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- appartement t3 parking priv&eacute;
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Pontrieux
-
- /
-
- <meta itemprop="address" content="Pontrieux" />
-
-
- Côtes-d'Armor
- <meta itemprop="address" content="Côtes-d'Armor" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="390">
- 390&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:25
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450263863.htm?ca=6_s" title="T1 Bis espace couchage ind&eacute;pendant" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450263863", "ad_location" : "list_content", "ad_position" : "16", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img4.leboncoin.fr/ad-thumb/1549bab28a1c54b03d8f788c3c6d22c7f1e10d14.jpg" data-imgAlt="T1 Bis espace couchage ind&eacute;pendant"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450263863">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- T1 Bis espace couchage ind&eacute;pendant
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Brest
-
- /
-
- <meta itemprop="address" content="Brest" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="360">
- 360&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:25
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450263306.htm?ca=6_s" title="Grand T2 boulevard Gambetta" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450263306", "ad_location" : "list_content", "ad_position" : "17", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img5.leboncoin.fr/ad-thumb/5eb4fa81de39271473a68cc9e04d5b429ea58dae.jpg" data-imgAlt="Grand T2 boulevard Gambetta"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450263306">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Grand T2 boulevard Gambetta
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Brest
-
- /
-
- <meta itemprop="address" content="Brest" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="400">
- 400&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:24
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450246530.htm?ca=6_s" title="chambre meubl&eacute;e" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450246530", "ad_location" : "list_content", "ad_position" : "18", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img0.leboncoin.fr/ad-thumb/18a26692a4703aabd3afcebcd0742fdadbbee0b3.jpg" data-imgAlt="chambre meubl&eacute;e"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450246530">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- chambre meubl&eacute;e
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Bourg-des-Comptes
-
- /
-
- <meta itemprop="address" content="Bourg-des-Comptes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="300">
- 300&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:23
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1433376198.htm?ca=6_s" title="Un studio de charme au centre de Landerneau" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1433376198", "ad_location" : "list_content", "ad_position" : "19", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img6.leboncoin.fr/ad-thumb/90040ac898b689fd7dcb5188953732a6d11db932.jpg" data-imgAlt="Un studio de charme au centre de Landerneau"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1433376198">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Un studio de charme au centre de Landerneau
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Landerneau
-
- /
-
- <meta itemprop="address" content="Landerneau" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="310">
- 310&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:23
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450262744.htm?ca=6_s" title="Appartement T2 plein centre." class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450262744", "ad_location" : "list_content", "ad_position" : "20", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img4.leboncoin.fr/ad-thumb/0daa57c6c2ca4f2bf9054ac9f4afe3db9642e852.jpg" data-imgAlt="Appartement T2 plein centre."></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450262744">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Appartement T2 plein centre.
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Pluméliau
-
- /
-
- <meta itemprop="address" content="Pluméliau" />
-
-
- Morbihan
- <meta itemprop="address" content="Morbihan" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="385">
- 385&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:23
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450260894.htm?ca=6_s" title="Recherche l'appartement parfait" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450260894", "ad_location" : "list_content", "ad_position" : "21", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
- <span class="item_imagePic" style="background:url('//static.leboncoin.fr/img/no-picture.png') center no-repeat;">
- </span>
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450260894">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Recherche l'appartement parfait
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="360">
- 360&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:20
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1421964890.htm?ca=6_s" title="Location appartement meuble" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1421964890", "ad_location" : "list_content", "ad_position" : "22", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|daily_bump|"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img7.leboncoin.fr/ad-thumb/b1003377f1f5c15e20930bd106d9b512037e2d3d.jpg" data-imgAlt="Location appartement meuble"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1421964890">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Location appartement meuble
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Saint-Malo
-
- /
-
- <meta itemprop="address" content="Saint-Malo" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="510">
- 510&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:19
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450259912.htm?ca=6_s" title="Maison neuve Lambezelec" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450259912", "ad_location" : "list_content", "ad_position" : "23", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img6.leboncoin.fr/ad-thumb/3931e5ea1b2c3210fef53027fbf712acde28d985.jpg" data-imgAlt="Maison neuve Lambezelec"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450259912">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Maison neuve Lambezelec
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Plabennec
-
- /
-
- <meta itemprop="address" content="Plabennec" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="900">
- 900&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:18
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450258838.htm?ca=6_s" title="Chambre kitchenette chez l'habitant" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450258838", "ad_location" : "list_content", "ad_position" : "24", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img4.leboncoin.fr/ad-thumb/8334b956045a24707b008feaa4d191122cdf6ff5.jpg" data-imgAlt="Chambre kitchenette chez l'habitant"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450258838">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Chambre kitchenette chez l'habitant
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Brest
-
- /
-
- <meta itemprop="address" content="Brest" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="320">
- 320&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:16
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
-
-<div class="apn-na">
- <div id="na4-s" class="teal-apn"></div>
- <div id="na4-m" class="teal-apn"></div>
- <div id="na4-l" class="teal-apn"></div>
- <div id="na4-xl" class="teal-apn"></div>
-</div>
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450258223.htm?ca=6_s" title="Studio 20m2 Rennes Ouest" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450258223", "ad_location" : "list_content", "ad_position" : "25", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img1.leboncoin.fr/ad-thumb/948635e14a9462161b435e37b40b90d2a4379901.jpg" data-imgAlt="Studio 20m2 Rennes Ouest"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450258223">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Studio 20m2 Rennes Ouest
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="395">
- 395&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:15
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450257866.htm?ca=6_s" title="Maison Ploufragan" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450257866", "ad_location" : "list_content", "ad_position" : "26", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img3.leboncoin.fr/ad-thumb/fafd97b9152c1f0fc01835299d2c0d24a345d733.jpg" data-imgAlt="Maison Ploufragan"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>2</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450257866">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Maison Ploufragan
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Ploufragan
-
- /
-
- <meta itemprop="address" content="Ploufragan" />
-
-
- Côtes-d'Armor
- <meta itemprop="address" content="Côtes-d'Armor" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="680">
- 680&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:14
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450257277.htm?ca=6_s" title="Studio centre villes Rennes" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450257277", "ad_location" : "list_content", "ad_position" : "27", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img1.leboncoin.fr/ad-thumb/a26fcf4ca4ea7b67e781cfb926d87a882d8eb7fc.jpg" data-imgAlt="Studio centre villes Rennes"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450257277">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Studio centre villes Rennes
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="425">
- 425&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:14
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450257042.htm?ca=6_s" title="Grand T2 Saint&#45;Brieuc proche Renan" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450257042", "ad_location" : "list_content", "ad_position" : "28", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img3.leboncoin.fr/ad-thumb/5c22d7bb1ed95811a46ea083dfea830897750d2b.jpg" data-imgAlt="Grand T2 Saint&#45;Brieuc proche Renan"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450257042">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Grand T2 Saint&#45;Brieuc proche Renan
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Saint-Brieuc
-
- /
-
- <meta itemprop="address" content="Saint-Brieuc" />
-
-
- Côtes-d'Armor
- <meta itemprop="address" content="Côtes-d'Armor" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="375">
- 375&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:13
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1439054110.htm?ca=6_s" title="Location maison T3" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1439054110", "ad_location" : "list_content", "ad_position" : "29", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|gallery|photosup|daily_bump|"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img0.leboncoin.fr/ad-thumb/6dcf763cd83ec17856ee920fb7be89ce0d31b5b6.jpg" data-imgAlt="Location maison T3"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>5</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1439054110">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Location maison T3
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Langueux
-
- /
-
- <meta itemprop="address" content="Langueux" />
-
-
- Côtes-d'Armor
- <meta itemprop="address" content="Côtes-d'Armor" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="569">
- 569&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:13
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450255229.htm?ca=6_s" title="Chambre" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450255229", "ad_location" : "list_content", "ad_position" : "30", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
- <span class="item_imagePic" style="background:url('//static.leboncoin.fr/img/no-picture.png') center no-repeat;">
- </span>
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450255229">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Chambre
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Vannes
-
- /
-
- <meta itemprop="address" content="Vannes" />
-
-
- Morbihan
- <meta itemprop="address" content="Morbihan" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="150">
- 150&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:10
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450255216.htm?ca=6_s" title="Appartement meubl&eacute; 2 ch centre Brest" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450255216", "ad_location" : "list_content", "ad_position" : "31", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img2.leboncoin.fr/ad-thumb/9f1194cec06de633970c2a33774efa2f7264bd7c.jpg" data-imgAlt="Appartement meubl&eacute; 2 ch centre Brest"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>1</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450255216">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Appartement meubl&eacute; 2 ch centre Brest
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Brest
-
- /
-
- <meta itemprop="address" content="Brest" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="750">
- 750&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:10
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1433862279.htm?ca=6_s" title="Brest Base Navale/porte Caffa &#45; possible meubl&eacute;" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1433862279", "ad_location" : "list_content", "ad_position" : "32", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|daily_bump|"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img2.leboncoin.fr/ad-thumb/979407c72e25cd15395bf575a74358d61b64484a.jpg" data-imgAlt="Brest Base Navale/porte Caffa &#45; possible meubl&eacute;"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1433862279">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Brest Base Navale/porte Caffa &#45; possible meubl&eacute;
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Brest
-
- /
-
- <meta itemprop="address" content="Brest" />
-
-
- Finistère
- <meta itemprop="address" content="Finistère" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="390">
- 390&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:10
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450254830.htm?ca=6_s" title="Appartement Rennes " class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450254830", "ad_location" : "list_content", "ad_position" : "33", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img5.leboncoin.fr/ad-thumb/b7ad34e10f1121c8e5e39970c9c595a2977c0ef3.jpg" data-imgAlt="Appartement Rennes "></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450254830">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Appartement Rennes
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="390">
- 390&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:09
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450253542.htm?ca=6_s" title="Location Appartement Villejean" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450253542", "ad_location" : "list_content", "ad_position" : "34", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img7.leboncoin.fr/ad-thumb/cdd569611db0465fbe13a0ce82128532ef9c46b4.jpg" data-imgAlt="Location Appartement Villejean"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450253542">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Location Appartement Villejean
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Rennes
-
- /
-
- <meta itemprop="address" content="Rennes" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="400">
- 400&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:07
- </p>
- </aside>
- </section>
- </a>
- </li>
-
-
-
-
-
- <li itemscope itemtype="http://schema.org/Offer">
- <a href="//www.leboncoin.fr/locations/1450252631.htm?ca=6_s" title="Maison de bourg 3 chambres B&eacute;d&eacute;e" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1450252631", "ad_location" : "list_content", "ad_position" : "35", "ad_type" : "offres", "ad_offres" : "part"}'>
- <!-- Listing item image -->
-
- <div class="item_image">
-
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img6.leboncoin.fr/ad-thumb/fc1351f75074eb984088b2394b76c61b6dba2745.jpg" data-imgAlt="Maison de bourg 3 chambres B&eacute;d&eacute;e"></span>
-
- </span>
-
-
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
-
-
- </div>
-
- <!-- Save ad (Mes annonces) -->
- <div title="" class="saveAd" data-savead-id="1450252631">
- <div class="saveMsg"><i class="showTip mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Sauvegarder l'annonce"></i></div>
- <div class="savedMsg"><i class="showTip red icon-heart icon-2x nomargin" data-position="left" data-text="Annonce sauvegard&eacute;e"></i></div>
- <div class="disabledLink"><i class="showTip disabled mediumgrey icon-heart icon-2x nomargin" data-position="left" data-text="Le nombre maximum d'annonces sauvegard&eacute;es a &eacute;t&eacute; atteint."></i></div>
- <div class="failedMsg"><i class="showTip disabled mediumgrey icon-heart-outline icon-2x nomargin" data-position="left" data-text="Fonctionnalit&eacute; indisponible pour le moment."></i></div>
- </div>
-
- <!-- Listing item info -->
- <section class="item_infos">
- <h2 class="item_title" itemprop="name">
- Maison de bourg 3 chambres B&eacute;d&eacute;e
-
-
- </h2>
-
- <p class="item_supp" itemprop="category" content="">
-
-
- </p>
-
- <p class="item_supp" itemprop="availableAtOrFrom" itemscope itemtype="http://schema.org/Place">
-
-
-
-
-
-
- Bédée
-
- /
-
- <meta itemprop="address" content="Bédée" />
-
-
- Ille-et-Vilaine
- <meta itemprop="address" content="Ille-et-Vilaine" />
-
-
- </p>
- <meta itemprop="priceCurrency" content="EUR" />
-
-
- <h3 class="item_price" itemprop="price" content="570">
- 570&nbsp;&euro;
-
- <span class="font-size-initial semibold grey">C.C.</span>
-
- </h3>
-
-
-
-
- <aside class="item_absolute">
- <p class="item_supp" itemprop="availabilityStarts" content="2018-06-17">
-
- Aujourd'hui, 21:05
- </p>
- </aside>
- </section>
- </a>
- </li>
-
- </ul>
- </section>
-
- <!-- Check the utility of this part -->
-
-
-
-
-
-
-
-
-
- <div class="information-immo clearfix">
- <i class="icon-bell icon-4x"></i>
- <div class="information-immo_content">
- <div class="desktop_version">
- <h2 class="tiny-hidden small-hidden">Cr&eacute;ez une alerte</h2>
- <p><span class="tiny-hidden small-hidden">et</span> <span class="tiny-hidden small-hidden">r</span><span class="medium-hidden large-hidden">R</span>ecevez par mail les annonces correspondant &agrave; votre recherche !</p>
- </div>
- </div>
- <a href="https://compteperso.leboncoin.fr/account/my-alerts.html?ca=6_s&fromlisting=1&c=10&company_ad=0&location=&company_ad=1&private_ad=1&region=6&type=s" class="button-orange">Cr&eacute;ez une alerte</a>
- </div>
-
-
-
-
-
-
-
- <!-- Google Adsense -->
-
-
-
-
-
-
-<script type="text/javascript">
- function hasAdblocker() {
- return false;
- }
-</script>
-<div id="google_ads" class="google" style="display:block!important">
-
- <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
- <!-- test-listing-search-ads -->
- <ins
- id="afc-main" class="adsbygoogle"
- data-ad-client="ca-pub-5173402840022387"
- data-ad-slot="4958852922" style="height:155px;">
- </ins>
- <script>
- if ( hasAdblocker() || getDevice() == 'smartphone') {
- document.getElementById('google_ads').style.display = 'none';
- } else {
- (adsbygoogle = window.adsbygoogle || []).push({});
- }
- </script>
-
-</div>
-
-
-
-
-
- <script type="text/javascript">
- jQuery(document).ready(function() {
- var savead = new SaveAd(".leboncoin.fr");
- });
- </script>
-
-
- <!-- Pagination -->
-
-
-
-
-
-
-
-
-
-<footer class="pagination clearfix">
-
-
- <!--Pagination links-->
- <div class="pagination_links clearfix small-hidden tiny-hidden">
- <div class="pagination_links_container">
-
- <!-- First page -->
- <span class="element page static link-like disabled" id="begin"><i class="icon-chevron-double-left nomargin"></i></span>
-
-
- <!-- Previous page -->
- <span class="element page static link-like disabled" id="previous"><i class="icon-chevron-left nomargin"></i></span>
-
-
- <!-- Loop for generate pages -->
-
- <span class="element page selected">1</span>
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=2">2</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=3">3</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=4">4</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=5">5</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=6">6</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=7">7</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=8">8</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=9">9</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=10">10</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=11">11</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=12">12</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=13">13</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=14">14</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=15">15</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=16">16</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=17">17</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=18">18</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=19">19</a>
-
-
- <a class="element page" href="//www.leboncoin.fr/locations/offres/bretagne/?o=20">20</a>
-
-
-
- <!-- Next page -->
-
-
- <a href="//www.leboncoin.fr/locations/offres/bretagne/?o=2" class="element page static" id="next"><i class="icon-chevron-right nomargin"></i></a>
-
-
-
- <!-- Last page -->
-
-
- <a href="//www.leboncoin.fr/locations/offres/bretagne/?o=527" class="element page static" id="last"><i class="icon-chevron-double-right nomargin"></i></a>
-
-
-
- </div>
- </div>
-
- <!--Pagination Form-->
- <nav class="pagination_content clearfix large-hidden medium-hidden">
- <!-- First page -->
- <span class="element page static link-like disabled" id="begin"><i class="icon-chevron-double-left nomargin"></i></span>
-
-
- <!-- Previous page -->
- <span class="element page static link-like disabled" id="previous"><i class="icon-chevron-left nomargin"></i></span>
-
-
-
- <div class="pagination_selectPage">
- <form action="" method="" id="changePage">
- <div class="field-wrapper">
- <input type="number" id="selectPage" name="selectPage" value="1" class="input" />
- </div>
- / <span class="total_page">527</span>
- </form>
- </div>
-
-
- <!-- Next page -->
-
-
- <a href="//www.leboncoin.fr/locations/offres/bretagne/?o=2" class="element page static link-like" id="next"><i class="icon-chevron-right nomargin"></i></a>
-
-
-
- <!-- Last page -->
-
-
- <a href="//www.leboncoin.fr/locations/offres/bretagne/?o=527" class="element page static link-like" id="last"><i class="icon-chevron-double-right nomargin"></i></a>
-
-
-
- <span class="label-error full" data-for="selectPage"></span>
- </nav>
-
-</footer>
-
-<script type="text/javascript">
- var paginationLink = new Pagination('pagination_links', 30, 2);
- setTimeout(function() {
- paginationLink.howMany();
- }, 200);
-
- var totalPage = Number($('.total_page').text());
- var fieldObject = {
- 'input[name="selectPage"]': {
- 'required' : {
- 'value' : true,
- 'errorMessage' : 'Veuillez saisir un chiffre.'
- },
- 'notZero' : {
- 'value' : true,
- 'errorMessage' : 'Veuillez saisir un chiffre valide.'
- },
- 'verifyValue' : {
- 'rule' : 'underequalSolid',
- 'valueSolid' : totalPage,
- 'errorMessage' : 'Veuillez saisir un chiffre valide.'
- },
- 'regexp' : {
- 'value' : /^[0-9]+$/g,
- 'errorMessage' : 'Veuillez saisir un chiffre valide.'
- }
- }
- };
-
- var formPagination = new FormPagination('.pagination_selectPage #changePage', '.pagination_selectPage .input', fieldObject, false);
-
- $('body')
- .on('focus', '#selectPage', function() {
- $('.pagination_selectPage').addClass('focused');
- })
- .on('change', '#selectPage', function() {
- formPagination.setAction('#selectPage');
- });
-
- formPagination.setAction('#selectPage');
+<script>
+ window.ROC_CONFIG = {"runtime":{"startBundle":"build\u002Fserver\u002Fapp.js","debug":{"server":"roc:*","client":"roc:*"},"port":3004,"https":{"port":3050},"serve":["public","build\u002Fclient"],"koa":{"lowercase":{"enabled":false,"defer":true},"normalize":{"enabled":true,"defer":false},"trailingSlashes":{"enabled":true,"defer":true},"staticServe":{"maxage":600000}},"stats":"build\u002Fclient\u002Fwebpack-stats.production.json","applicationName":"leboncoin, site de petites annonces gratuites","head":{"htmlAttributes":{"lang":"fr"},"meta":[{"name":"google-site-verification","content":"hd1IKIFS52UgrLBhQ7e0y6sP6cVp4QbHvmkfgHP0TnI"},{"name":"viewport","content":"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"}],"link":[{"type":"image\u002Fpng","rel":"apple-touch-icon","href":"\u002F\u002Fstatic-rav.leboncoin.fr\u002Ffavicon-apple-touch.png"}],"base":{"href":"ROC_PATH"},"script":[],"style":[]},"ssr":true,"template":{"path":"views","name":"main.html","root":false},"history":{},"configWhitelistProperty":"appConfig","fetch":{"server":["fetch"],"client":{"beforeTransition":["fetch"],"afterTransition":["defer"],"parallel":false}}}}
</script>
-
-
-
-
- </section>
-
- <!-- ALU -->
-
-
-
-
-<aside class="sidebar" role="complementary">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <section class="box-orange topSelling">
- <p class="title align-center">Annonces A la Une</p>
- <div class="container">
- <ul class="list">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <li>
-
-
-
- <a href="//www.leboncoin.fr/rd?id=1440978785&amp;event=gallery&amp;ca=6_s&amp;beta=1" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1440978785", "ad_location" : "list_topselling", "ad_position" : "1", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|gallery|sub_toplist|"}'>
- <div class="item_image">
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img4.leboncoin.fr/ad-thumb/94ced8100e22adcf0468cb92f5318eaf8d6b6fea.jpg" data-imgAlt="Brest studio meuble etudiant proche facultes ubo">
-
- </span>
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>3</span>
- </span>
- </div>
- <section class="item_infos">
- <p class="item_title">
- Brest studio meuble etudiant proche facultes ubo
- </p>
-
- <p class="item_price">355&nbsp;&euro;</p>
-
-
-
- </section>
- </a>
-</li>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <li>
-
-
-
- <a href="//www.leboncoin.fr/rd?id=1386428621&amp;event=gallery&amp;ca=6_s&amp;beta=1" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1386428621", "ad_location" : "list_topselling", "ad_position" : "2", "ad_type" : "offres", "ad_offres" : "pro", "ad_options" : "|gallery|photosup|daily_bump|"}'>
- <div class="item_image">
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img4.leboncoin.fr/ad-thumb/579757398193a9f33abbf66327cb00b1539cd1cd.jpg" data-imgAlt="Appartement 4 pièces 76 m²">
-
- </span>
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>6</span>
- </span>
- </div>
- <section class="item_infos">
- <p class="item_title">
- Appartement 4 pièces 76 m²
- </p>
-
- <p class="item_price">531&nbsp;&euro;</p>
-
-
-
- </section>
- </a>
-</li>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <li>
-
-
-
- <a href="//www.leboncoin.fr/rd?id=1448601671&amp;event=gallery&amp;ca=6_s&amp;beta=1" class="list_item clearfix trackable" data-info='{"event_type" : "selfpromotion", "campaign" : "ad_search", "ad_listid" : "1448601671", "ad_location" : "list_topselling", "ad_position" : "3", "ad_type" : "offres", "ad_offres" : "part", "ad_options" : "|gallery|photosup|daily_bump|urgent|"}'>
- <div class="item_image">
- <span class="item_imagePic">
-
- <span class="lazyload" style="display:block; width:100%; height:100%;" data-imgSrc="https://img3.leboncoin.fr/ad-thumb/e6aa8e7955331e709392fbee8a8a032de9db9407.jpg" data-imgAlt="A louer tres beau t1 b 32 m2 meuble centre rennes">
-
- </span>
- <span class="item_imageNumber">
- <i class="icon-camera icon-2x nomargin"></i>
- <span>6</span>
- </span>
- </div>
- <section class="item_infos">
- <p class="item_title">
- A louer tres beau t1 b 32 m2 meuble centre rennes
- </p>
-
- <p class="item_price">550&nbsp;&euro;</p>
-
-
-
- <p class="item_supp emergency"><i class="icon-star"></i>Urgent</p>
-
- </section>
- </a>
-</li>
-
-
-
- </ul>
- </div>
-
- <script>
- var lazyloadAlu = new Lazyload(".sidebar ul.list", 2, "//static.leboncoin.fr/img/no-picture.png");
- </script>
-
- <a class="title tiny-hidden small-hidden align-center" href="javascript:;" onClick="window.open('//www.leboncoin.fr/popup_gallery.htm','Gallery','scrollbars=no,width=660,height=720');">En savoir plus</a>
- </section>
-
-
-
-
-
-
-
-<div class="apn-sk skyscraper">
- <div id="sk-m" class="teal-apn"></div>
- <div id="sk-l" class="teal-apn"></div>
- <div id="sk-xl" class="teal-apn"></div>
-</div>
-
-
-</aside>
-
-
-
-
-
-
-</section>
-
-
-
-
-<a class="backtotop custom-small-hidden" href="#all" title="Haut de page"><i class="icon-chevron-up"></i></a>
<script>
-jQuery(document).ready(function($) {
- var scrollToTop = new ScrollTop('.backtotop');
- scrollToTop.load();
-});
+ window.APP_CONFIG = {"UNAUTHENTICATED_REDIRECT_URI":"\u002F","FEATURES":{"MY_SHOPPING_ENABLED":false,"P2PPAYMENT_ENABLED":true,"P2P_BUYER_OFFER_ENABLED":true,"PAYMENT_CB_ENABLED":false,"PRO_DASHBOARD_ENABLED":false,"SEARCHFORM_SEARCHLOCATION_LISTING_ENABLED":false,"NEW_AD_ENABLED":true,"NEW_AD_EDIT_ENABLED":true,"NEW_RESA_PAGE_ENABLED":true,"GUEST_BOOKINGS_ENABLED":true,"TRACKING_RELOADED_ENABLED":true,"PACK_BOOSTER_SUBSCRIPTION_ENABLED":false,"NEW_AD_ACTION_ENABLED":false,"BATCH_AD_ACTION_ENABLED":false,"DIRECT_DEAL_ENABLED":true,"DIRECT_DEAL_ADVIEW_ENABLED":true,"ESCROW_D1_ENABLED":true,"ESCROW_PAYOUT_ENABLED":true,"JOB_CANDIDATE_RESUME_ENABLED":true,"REAL_ESTATE_TRENDS_ENABLED":false,"PRO_PAGE_CONTACT_ENABLED":false},"MESSAGING_INTEGRATIONS_NAMES":{"P2P":"fr.leboncoin.p2p","VACATIONRENTALS":"fr.leboncoin.vacationrentals","BUYEROFFER":"fr.leboncoin.buyer_offer","RATING":"fr.leboncoin.rating"},"DIRECT_DEAL":{"CATEGORIES_WHITE_LIST":{"MONDIAL_RELAY":[15,16,22,25,26,27,39,41,42,43,45,46,47,53,54],"DISTANCE":[]}},"ADYEN":{"ADYEN_SCRIPT_SRC_P2P":"https:\u002F\u002Flive.adyen.com\u002Fhpp\u002Fcse\u002Fjs\u002F4115318382451111.shtml","KEY_P2P":"10001|A94FFF35C60A2F4BEFC475321586A68F352A7B648A3EA41F4415B85FFE9ED789745C7D7577449FF79635825A5F178E4499C16133811179389190D84283C24AC4355B474D18D442A8B52471E22F3153A9CCA7C0E5D081E12558089CB7FCCB9299CE5702924D4C197D9041DDA49BD3CFA591F20F6E129089DCDC9CD39BA99E0A14035291B4EA028BE6FF62CB3ECB4E033FFA38693A68107254A00CA5B4BC0CC0392EB3743A69FA1C8B6F18C4AD59EBC34EC630F9D100B00D2F909A3C31A09BEA62B59679C1E99346EC3CE7DFE146105D131B417425F59D5EC6CBFBFE3826381589501ECB69B75985B6CD8D95FABF907B8C742A7FBD7CDEAC2A7272C48EEAFC446F","ADYEN_SCRIPT_SRC_PRIVATE":"https:\u002F\u002Flive.adyen.com\u002Fhpp\u002Fcse\u002Fjs\u002F4115335573263758.shtml","KEY_PRIVATE":"10001|92BB95D348DB40D8F6D73F69B32ADD4DA86FF4F697BE1B2D66F75C26952537BBA6E3EBA5DE2DCECB40515CD953096A9F58D2DF6B30DBA702D87DFA72EBAB399B08559EE486975C4C205B4940E703D8469D31C83C76B7E6C55BCE1C6C47E95AA3DC454735F2306032314B4AA4DD749106FA06A24F3318ACBD25DDC7C910EFA7682B771A654B8B8868FAE785DE8E928FE977CC7463D4FCDB73CB1EACDD3F47CEBBD4DD1B22FAB9E03DDF4EB556603C822A456957593B8870ED162ADDDA983B2CDC8AC079B02E384CA197FEA5C590A481B88B697508123611BCB1ECFA3C242AC251ACBA0E06F8943A0568120A07923820F7F39C9ED5EF206322E6265A7E99B2E48F","ADYEN_SCRIPT_SRC_PRO":"https:\u002F\u002Flive.adyen.com\u002Fhpp\u002Fcse\u002Fjs\u002F4115335573263758.shtml","KEY_PRO":"10001|92BB95D348DB40D8F6D73F69B32ADD4DA86FF4F697BE1B2D66F75C26952537BBA6E3EBA5DE2DCECB40515CD953096A9F58D2DF6B30DBA702D87DFA72EBAB399B08559EE486975C4C205B4940E703D8469D31C83C76B7E6C55BCE1C6C47E95AA3DC454735F2306032314B4AA4DD749106FA06A24F3318ACBD25DDC7C910EFA7682B771A654B8B8868FAE785DE8E928FE977CC7463D4FCDB73CB1EACDD3F47CEBBD4DD1B22FAB9E03DDF4EB556603C822A456957593B8870ED162ADDDA983B2CDC8AC079B02E384CA197FEA5C590A481B88B697508123611BCB1ECFA3C242AC251ACBA0E06F8943A0568120A07923820F7F39C9ED5EF206322E6265A7E99B2E48F","ADYEN_SCRIPT_SRC_LDV":"https:\u002F\u002Flive.adyen.com\u002Fhpp\u002Fcse\u002Fjs\u002F4115433199970706.shtml","KEY_LDV":"10001|FA21D1E03356EBAE421EB0665C9418B43E43D57A79EF5C45B5AE6B284ABEDA4011B40F7635B45DBBC26516451CA0B21A9D3314E458A6C382E286E93252AD4DC4A757F072EBE768B95F61CC1016751B24F7625D6122C144E524A6410B729EE88DF83460BBAC26EE5FC96327E69206F1CFF9364AFB657BAB32AC1008C53829746067EE3E9BFF191D006E57BDD09CD7C312C8DDD40152CD0934A2D6B9DD50B2C33B6E8E205E92E391B92E0A2C866703FA2B581AC7C48A54224C4D4789E550D045CF7F6C1BE2997BD96500E42D9B1DEF2512E58269559487FF447DD9D4AFB39AD97FCF85516B9041A024F17FBA69B9A20F69FADE4EBD3372A3A1CF4BB6B2FE45498D"},"API":{"URL":"https:\u002F\u002Fapi.leboncoin.fr","TRUST_REPUTATION_URL":"https:\u002F\u002Fprofile-api-lbc.trust-pro.mpi-internal.com","TRUST_REPUTATION_FEEDBACK_URL":"https:\u002F\u002Ffeedback-api-lbc.trust-pro.mpi-internal.com","KEY":"ba0c2dad52b3ec","KEY_JSON":"54bb0281238b45a03f0ee695f73e704f"},"PRICING_TOOL":{"API_KEY":"ieshee7og4veegh9fakoighai3nit4fa4foobueThieKi9ooFetief3mae9see3hee9pohcha9Joochu"},"API_BASE_PATH":{"ACCOUNT":"\u002Fapi\u002Faccounts\u002Fv1\u002Faccounts","DASHBOARD":"\u002Fapi\u002Fdashboard\u002Fv1","AD_GEOLOC":"\u002Fapi\u002Fad-geoloc\u002Fv1","AD_REPLY":"\u002Fapi\u002Fadreply\u002Fv1\u002Fclassified","ADS":"\u002Fapi\u002Fads","AUTH":"\u002Fapi\u002Foauth\u002Fv1","BOOKING":"\u002Fapi\u002Fbooking-api\u002Fv1","BOOSTER":"\u002Fapi\u002Fbooster\u002Fv1\u002Faccounts","CLASSIFIED":"\u002Fapi\u002Fclassified\u002Fv1\u002Fclassified","CLASSIFIED_REPLY":"\u002Fapi\u002Ffrontend\u002Fv1\u002Fclassified","CLASSIFIED_REPLY_ATTACHMENT":"\u002Fapi\u002Fattachments\u002Fv1\u002Fupload","CLASSIFIED_REPLY_ATTACHMENT_DEFAULT":"\u002Fapi\u002Fattachments\u002Fv1\u002Fme\u002Fdefault","DATA":"\u002Fapi\u002Ffrontend\u002Fv1\u002Fdata","DYNAMIC_CONTENT":"\u002Fapi\u002Ftools\u002Fcms\u002Fv2\u002Fpage","DEAL":"\u002Fapi\u002Fdeal-api\u002Fv1","OFFER":"\u002Fapi\u002Foffer-api\u002Fv1","DELIVERY":"\u002Fapi\u002Fshippingproxy\u002Fv1","EVENTS":"\u002Fapi\u002Fevents\u002Fv1","FOLLOWME":"\u002Fapi\u002Ffollowme\u002Fv1","HOLIDAYS":"\u002Fapi\u002Fsoyouz\u002Fv1","HOLIDAYS_PROPERTY":"\u002Fapi\u002Fvacationrentals\u002Fv1\u002Fproperty","HOLIDAYS_GUEST_BOOKINGS":"\u002Fapi\u002Fvacationrentals\u002Fv1\u002Fguest\u002Fme\u002Fbookings","MESSAGING_CLASSIFIED":"\u002Fapi\u002Fclassified\u002Fv1\u002Fmessaging\u002Fclassified","MESSAGING_PROXY":"\u002Fmessaging\u002Fproxy","MY_SEARCH":"\u002Fapi\u002Fmysearch\u002Fv1\u002Fsearches","PARROT":"\u002Fapi\u002Fparrot","PRICING_TOOL":"\u002Fapi\u002Fpricingtool\u002Fv1","P2P_CLASSIFIED":"\u002Fapi\u002Fclassified\u002Fv1\u002Fp2p","PINTAD":"\u002Fapi\u002Fpintad\u002Fv1\u002Fpublic","PAYMENT_ORDER":"\u002Fapi\u002Fpublic\u002Fpayment\u002Forder","PAYMENT_IBAN":"\u002Fapi\u002Fpublic\u002Fpayment\u002Fiban\u002Fme","CREDITS":"\u002Fapi\u002Fpublic\u002Fcredits","PAYMENT_HISTORY":"\u002Fapi\u002Fpublic\u002Fpaymenthistory\u002Fv1","P2P_PAYMENT":"\u002Fapi\u002Fpublic\u002Fpayment\u002Fdeal\u002F","FINDER":"\u002Ffinder","SEARCH_CONFIG":"\u002Fapi\u002Fsearch-config\u002Fv1","SEO":"\u002Fapi\u002Fseo\u002Fv1","SHIPPING":"\u002Fapi\u002Fshippingproxy\u002Fv1","SIMILAR_ADS":"\u002Fapi\u002Fsame\u002Fv1\u002Fsearch","SOYOUZ":"\u002Fapi\u002Fsoyouz\u002Fv1\u002Fapi\u002Flbc\u002Fv0.1\u002Favailabilities","STATS":"\u002Fapi\u002Fstats\u002Faccount","STATS_V2":"\u002Fapi\u002Fstats\u002Fproxy\u002Fv2\u002Faccount","STORES":"\u002Fv1\u002Faccounts","UTILS":"\u002Fapi\u002Futils","TAKEOUT":"\u002Fapi\u002Ftakeout\u002Fv1","KYC":{"V1":"\u002Fapi\u002Fkyc\u002Fv1\u002Fuser\u002Fkyc","V2":"\u002Fapi\u002Fkyc\u002Fv2\u002Fuser\u002Fkyc"},"USER":"\u002Fapi\u002Fusers\u002Fv1\u002Fusers","RATING":"\u002Fapi\u002Fratings\u002Fv1\u002Fdeals","TRUST_REPUTATION_PROFILE":"\u002Fprofile","AUTHENTICATOR_API":"\u002Fapi\u002Fauthenticator\u002Fv1","NEW_AD":"\u002Fapi\u002Fadsubmit","NEW_AD_FILES":"\u002Fapi\u002Fpintad\u002Fv1\u002Fpublic","VACATIONRENTALS":"\u002Fapi\u002Fvacationrentals\u002Fv1","AD_OPTIONS":"\u002Fapi\u002Foptions\u002Fv1\u002Fpricing\u002Fad","AD_OPTIONS_BATCH":"\u002Fapi\u002Foptions\u002Fv1\u002Fpricing\u002Fads","ACCOUNT_OPTIONS":"\u002Fapi\u002Foptions\u002Fv1\u002Fpricing\u002Faccount","ACCOUNT_OPTION_SUBSCRIPTION":"\u002Fapi\u002Foptions\u002Fv1\u002Fpayment\u002Faccount\u002Fme","ESCROW_ACCOUNTS":"\u002Fapi\u002Fescrow-accounts\u002Fv1","INQUIRY":"\u002Fapi\u002Fsalescontact\u002Fv1\u002Finquiry","ONLINE_STORE":"\u002Fapi\u002Fonlinestores\u002Fv1\u002Fonline_stores","NOTIFICATIONS":"\u002Fapi\u002Fnotifications\u002Fv1"},"ASSETS_PUBLIC_PATH":"\u002F\u002Fstatic-rav.leboncoin.fr","ASSET_PREFIX":"\u002F\u002Frav-next-static.leboncoin.fr","BASE_URL":"https:\u002F\u002Fwww.leboncoin.fr","CLIENT_ID":"frontweb","COOKIE_DOMAIN":".leboncoin.fr","COOKIE_LIFETIME":183,"FAQ_URL":"https:\u002F\u002Fassistance.leboncoin.info\u002Fhc\u002Ffr","ACCOUNT_EDIT_URI":"\u002Fcompte\u002Fedit","ACCOUNT_CV_URI":"\u002Fcompte\u002Fpart\u002Fcv","ACCOUNT_PART_CREATION_URI":"\u002Fcompte\u002Fpart\u002Fcreation","ACCOUNT_PART_CONFIRMATION_URI":"\u002Fcompte\u002Fpart\u002Fconfirmation","ACCOUNT_PART_DASHBOARD_URI":"\u002Fcompte\u002Fpart\u002Fmes-annonces","ACCOUNT_PRO_CREATION_URI":"\u002Fcompte\u002Fpro\u002Fcreation","ACCOUNT_PRO_CONFIRMATION_URI":"\u002Fcompte\u002Fpro\u002Fconfirmation","ACCOUNT_BOOKINGS_URI":"\u002Fcompte\u002Fbookings","LEGACY_ACCOUNT_URL":"https:\u002F\u002Fcompteperso.leboncoin.fr","LEGACY_EDIT_AD_URL":"https:\u002F\u002Fwww.leboncoin.fr\u002Fai\u002Fform\u002F","LEGACY_MANAGE_AD_URL":"https:\u002F\u002Fwww.leboncoin.fr\u002Fai\u002Fload\u002F","LEGACY_SINGLE_BUMP_AD_URL":"https:\u002F\u002Fcompteperso.leboncoin.fr\u002Fstore\u002Fmain?cmd=top_list","LEGACY_BUMP_AD_URL":"https:\u002F\u002Fcompteperso.leboncoin.fr\u002Fstore\u002Fmain?cmd=sub_toplist","LEGACY_ALU_AD_URL":"https:\u002F\u002Fcompteperso.leboncoin.fr\u002Fstore\u002Fmain?cmd=gallery","LEGACY_URGENT_AD_URL":"https:\u002F\u002Fcompteperso.leboncoin.fr\u002Fstore\u002Fmain?cmd=urgent","LEGACY_DELETE_AD_URL":"https:\u002F\u002Fcompteperso.leboncoin.fr\u002Fstore\u002Fmain?cmd=adservices","LEGACY_ACCOUNT_PRO_URL":"https:\u002F\u002Fcomptepro.leboncoin.fr","SOYOUZ_URL":"https:\u002F\u002Fvacances.leboncoin.fr\u002Ftripper\u002Flanding\u002F","SOYOUZ_CHECK_URL":"https:\u002F\u002Fvacances.leboncoin.fr\u002Fonboarding\u002Fcheck\u002F","SOYOUZ_BOOKING_SUMMARY":"https:\u002F\u002Fvacances.leboncoin.fr\u002Ftripper\u002FbookingSummary\u002F","HERE_PROXY_URL":"https:\u002F\u002Fproxytile-{s}.leboncoin.fr\u002Fmaptile\u002F2.1\u002F{type}\u002F{mapID}\u002F{scheme}\u002F{z}\u002F{x}\u002F{y}\u002F{size}\u002F{format}?lg={language}","GUEST_BOOKING_CANCELLATION_TERMS_URI":"https:\u002F\u002Fvcs.leboncoin.fr\u002Faide\u002Fquelles-sont-les-conditions-dannulation","ADVIEW_BOX2HOME_IFRAME_URL":"https:\u002F\u002Flbc.box2home.fr\u002F?utm_source=leboncoin&utm_medium=iframe&utm_campaign=","COOKIE_KEYS":{"uuid":"uuid","access":"luat","refresh":"srt","savedAd":"watch_ads","legacyLoggedState":"s","currentRegion":"sq","saveOnboarding":"saveOnboarding","bookableOnboarding":"bookableOnboarding"},"USER":{"ACCOUNT_DASHBOARD_INFO_ALERT":"","ACCOUNT_TYPE":{"ACCOUNT_PART":1,"ACCOUNT_PRO":2},"SECTOR_IDS":{"EMPLOYER":8,"REAL_ESTATE":2},"PERF_DASHBOARD_ACTIVITY_SECTOR_IDS":{"EMPLOI":8,"VEHICULES":1,"IMMOBILIER":2}},"APP_NEXUS_MEMBER_ID":3296,"TEALIUM_SCRIPT_URL":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-responsive\u002Fprod\u002Futag.js","TEALIUM_SCRIPT_URL_WEBVIEW":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-mobile\u002Fprod\u002Futag.js","TEALIUM_ENV":{"PROD":{"URL":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-responsive\u002Fprod\u002Futag.js","URL_WEBVIEW":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-mobile\u002Fprod\u002Futag.js","ID":3296},"QA":{"URL":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-responsive\u002Fdev\u002Futag.js","URL_WEBVIEW":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-mobile\u002Fdev\u002Futag.js","ID":3397},"DEV":{"URL":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-responsive\u002Fdev\u002Futag.js","URL_WEBVIEW":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-mobile\u002Fdev\u002Futag.js","ID":3397},"SANDBOX":{"URL":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-responsive-sandbox\u002Fdev\u002Futag.js","URL_WEBVIEW":"\u002F\u002Ftags.tiqcdn.com\u002Futag\u002Fschibsted\u002Fleboncoin-mobile\u002Fdev\u002Futag.js","ID":3397}},"SMART_TAG_ID":562498,"AD_LIST":{"DISPLAY_META_NB_RESULT_LIMIT":2,"COUNT_PER_PAGE":35,"LIMIT_SAVED_AD":100,"ALU_COUNT_PER_PAGE":3,"ALU_POSITIONS":[11,19,28],"NATIVEADS_POSITIONS":[5,12,17,29,36],"AUTOPROMO_POSITIONS":[24],"DEMANDS":"demandes","OFFERS":"offres","LIMIT_SEARCH_LOCATION":10},"MOMENT_LOCALE":{"fr":{"monthsShort":["jan","fév","mars","avr","mai","juin","juillet","août","sept","oct","nov","déc"],"calendar":{"lastDay":"[Hier], HH:mm","sameDay":"[Aujourd'hui], HH:mm","lastWeek":null,"nextDay":null,"nextWeek":null,"sameElse":"DD MMM, HH:mm"}}},"DEFAULT_REGION_ID":"12","DEFAULT_ALL_REGIONS":true,"SAVED_SEARCH_LIMIT":50,"WIDGET_MESSAGING_ENV":"pro","ROLLBAR_ENV":"production","FETCH_CACHE_DURATION":300,"FETCH_CACHE_STORAGE_PREFIX":"cache:","DATADOME_ON_FETCH_ENABLED":true,"PANDA_ENV":"pro","NEW_AD_OPEN_CATEGORIES":{"private":["2","3","4","5","6","7","9","10","11","13","15","16","17","19","20","21","22","23","25","26","27","29","30","32","33","34","35","36","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","57","58","59","60","61","62","63","64","65"],"pro":["2","3","4","5","6","7","9","10","11","13","15","16","19","20","21","23","25","26","27","29","30","32","34","39","40","41","44","45","46","48","49","50","51","52","54","55","57","58","59","60","61","62","63","64"]},"EDIT_AD_OPEN_CATEGORIES":{"private":["2","3","4","5","6","7","9","10","11","13","15","16","17","19","20","21","22","23","25","26","27","29","30","32","33","34","35","36","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","57","58","59","60","61","62","63","64","65"],"pro":["2","3","4","5","6","7","9","10","11","13","15","16","17","19","20","21","25","26","27","29","30","32","34","39","40","41","43","44","45","46","48","49","50","51","52","55","57","58","59","60","61","62","63","64"]},"AD_ACTION_OPEN_CATEGORIES":{"private":["25","65"],"pro":[]},"BATCH_AD_ACTION_OPEN_ACTIVITY_SECTORS":[],"ABTASTY_SCRIPT_URL":"\u002F\u002Ftry.abtasty.com\u002F09643a1c5bc909059579da8aac99e8f1.js","DATADOME_ENABLED":true,"GOOGLE_TAG_ENABLED":true,"ADEMO_TAG_ENABLED":true,"PINGDOM_ENABLED":true,"PINGDOM_ID":"5d6ce5179623b000080002de","EMPLOI_CADRE_STORE_ID":"39890991"}
</script>
-
-
-
- </section>
- </main>
-
-
-<footer id="footer" role="contentinfo" >
- <section class="footerCategories custom-small-hidden">
- <div class="content-center">
-
-
-
-
-<section class="grid-4">
- <div>
- <ul>
-
-
-
-
- <li class="title"><a href="//www.leboncoin.fr/_emploi_/offres/bretagne/" title="EMPLOI" class="trackable" data-info='{"event_name": "footer::emploi::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- EMPLOI
- </a></li>
-
- <li><a href="//www.leboncoin.fr/offres_d_emploi/offres/bretagne/" title="Offres d'emploi" class="trackable" data-info='{"event_name": "footer::offres_emploi::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Offres d'emploi
- </a></li>
-
-
- <li class="title"><a href="//www.leboncoin.fr/_vehicules_/offres/bretagne/" title="VEHICULES" class="trackable" data-info='{"event_name": "footer::vehicules::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- VEHICULES
- </a></li>
-
- <li><a href="//www.leboncoin.fr/voitures/offres/bretagne/" title="Voitures" class="trackable" data-info='{"event_name": "footer::voitures::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Voitures
- </a></li>
- <li><a href="//www.leboncoin.fr/motos/offres/bretagne/" title="Motos" class="trackable" data-info='{"event_name": "footer::motos::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Motos
- </a></li>
- <li><a href="//www.leboncoin.fr/caravaning/offres/bretagne/" title="Caravaning" class="trackable" data-info='{"event_name": "footer::caravaning::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Caravaning
- </a></li>
- <li><a href="//www.leboncoin.fr/utilitaires/offres/bretagne/" title="Utilitaires" class="trackable" data-info='{"event_name": "footer::utilitaires::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Utilitaires
- </a></li>
- <li><a href="//www.leboncoin.fr/equipement_auto/offres/bretagne/" title="Equipement Auto" class="trackable" data-info='{"event_name": "footer::equipement_auto::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Equipement Auto
- </a></li>
- <li><a href="//www.leboncoin.fr/equipement_moto/offres/bretagne/" title="Equipement Moto" class="trackable" data-info='{"event_name": "footer::equipement_moto::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Equipement Moto
- </a></li>
- <li><a href="//www.leboncoin.fr/equipement_caravaning/offres/bretagne/" title="Equipement Caravaning" class="trackable" data-info='{"event_name": "footer::equipement_caravaning::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Equipement Caravaning
- </a></li>
- <li><a href="//www.leboncoin.fr/nautisme/offres/bretagne/" title="Nautisme" class="trackable" data-info='{"event_name": "footer::nautisme::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Nautisme
- </a></li>
- <li><a href="//www.leboncoin.fr/equipement_nautisme/offres/bretagne/" title="Equipement Nautisme" class="trackable" data-info='{"event_name": "footer::equipement_nautisme::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Equipement Nautisme
- </a></li>
-
-
- <li class="title"><a href="//www.leboncoin.fr/_immobilier_/offres/bretagne/" title="IMMOBILIER" class="trackable" data-info='{"event_name": "footer::immobilier::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- IMMOBILIER
- </a></li>
-
- <li><a href="//www.leboncoin.fr/ventes_immobilieres/offres/bretagne/" title="Ventes immobilières" class="trackable" data-info='{"event_name": "footer::ventes_immobilieres::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Ventes immobilières
- </a></li>
- <li><a href="//www.leboncoin.fr/locations/offres/bretagne/" title="Locations" class="trackable" data-info='{"event_name": "footer::locations::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Locations
- </a></li>
- <li><a href="//www.leboncoin.fr/colocations/offres/bretagne/" title="Colocations" class="trackable" data-info='{"event_name": "footer::colocations::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Colocations
- </a></li>
- <li><a href="//www.leboncoin.fr/bureaux_commerces/offres/bretagne/" title="Bureaux &amp; Commerces" class="trackable" data-info='{"event_name": "footer::bureaux_commerces::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Bureaux &amp; Commerces
- </a></li>
-
- </ul></div><div><ul>
- <li class="title"><a href="//www.leboncoin.fr/_vacances_/offres/bretagne/" title="VACANCES" class="trackable" data-info='{"event_name": "footer::vacances::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- VACANCES
- </a></li>
-
- <li><a href="//www.leboncoin.fr/locations_gites/offres/bretagne/" title="Locations &amp; Gîtes" class="trackable" data-info='{"event_name": "footer::locations_gites::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Locations &amp; Gîtes
- </a></li>
- <li><a href="//www.leboncoin.fr/chambres_d_hotes/offres/bretagne/" title="Chambres d'hôtes" class="trackable" data-info='{"event_name": "footer::chambres_hotes::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Chambres d'hôtes
- </a></li>
- <li><a href="//www.leboncoin.fr/campings/offres/bretagne/" title="Campings" class="trackable" data-info='{"event_name": "footer::campings::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Campings
- </a></li>
- <li><a href="//www.leboncoin.fr/hotels/offres/bretagne/" title="Hôtels" class="trackable" data-info='{"event_name": "footer::hotels::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Hôtels
- </a></li>
- <li><a href="//www.leboncoin.fr/hebergements_insolites/offres/bretagne/" title="Hébergements insolites" class="trackable" data-info='{"event_name": "footer::hebergements_insolites::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Hébergements insolites
- </a></li>
-
-
- <li class="title"><a href="//www.leboncoin.fr/_maison_/offres/bretagne/" title="MAISON" class="trackable" data-info='{"event_name": "footer::maison::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- MAISON
- </a></li>
-
- <li><a href="//www.leboncoin.fr/ameublement/offres/bretagne/" title="Ameublement" class="trackable" data-info='{"event_name": "footer::ameublement::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Ameublement
- </a></li>
- <li><a href="//www.leboncoin.fr/electromenager/offres/bretagne/" title="Electroménager" class="trackable" data-info='{"event_name": "footer::electromenager::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Electroménager
- </a></li>
- <li><a href="//www.leboncoin.fr/arts_de_la_table/offres/bretagne/" title="Arts de la table" class="trackable" data-info='{"event_name": "footer::arts_table::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Arts de la table
- </a></li>
- <li><a href="//www.leboncoin.fr/decoration/offres/bretagne/" title="Décoration" class="trackable" data-info='{"event_name": "footer::decoration::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Décoration
- </a></li>
- <li><a href="//www.leboncoin.fr/linge_de_maison/offres/bretagne/" title="Linge de maison" class="trackable" data-info='{"event_name": "footer::linge_maison::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Linge de maison
- </a></li>
- <li><a href="//www.leboncoin.fr/bricolage/offres/bretagne/" title="Bricolage" class="trackable" data-info='{"event_name": "footer::bricolage::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Bricolage
- </a></li>
- <li><a href="//www.leboncoin.fr/jardinage/offres/bretagne/" title="Jardinage" class="trackable" data-info='{"event_name": "footer::jardinage::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Jardinage
- </a></li>
- <li><a href="//www.leboncoin.fr/vetements/offres/bretagne/" title="Vêtements" class="trackable" data-info='{"event_name": "footer::vetements::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Vêtements
- </a></li>
- <li><a href="//www.leboncoin.fr/chaussures/offres/bretagne/" title="Chaussures" class="trackable" data-info='{"event_name": "footer::chaussures::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Chaussures
- </a></li>
- <li><a href="//www.leboncoin.fr/accessoires_bagagerie/offres/bretagne/" title="Accessoires &amp; Bagagerie" class="trackable" data-info='{"event_name": "footer::accessoires_bagagerie::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Accessoires &amp; Bagagerie
- </a></li>
- <li><a href="//www.leboncoin.fr/montres_bijoux/offres/bretagne/" title="Montres &amp; Bijoux" class="trackable" data-info='{"event_name": "footer::montres_bijoux::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Montres &amp; Bijoux
- </a></li>
- <li><a href="//www.leboncoin.fr/equipement_bebe/offres/bretagne/" title="Equipement bébé" class="trackable" data-info='{"event_name": "footer::equipement_bebe::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Equipement bébé
- </a></li>
- <li><a href="//www.leboncoin.fr/vetements_bebe/offres/bretagne/" title="Vêtements bébé" class="trackable" data-info='{"event_name": "footer::vetements_bebe::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Vêtements bébé
- </a></li>
-
- </ul></div><div><ul>
- <li class="title"><a href="//www.leboncoin.fr/_multimedia_/offres/bretagne/" title="MULTIMEDIA" class="trackable" data-info='{"event_name": "footer::multimedia::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- MULTIMEDIA
- </a></li>
-
- <li><a href="//www.leboncoin.fr/informatique/offres/bretagne/" title="Informatique" class="trackable" data-info='{"event_name": "footer::informatique::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Informatique
- </a></li>
- <li><a href="//www.leboncoin.fr/consoles_jeux_video/offres/bretagne/" title="Consoles &amp; Jeux vidéo" class="trackable" data-info='{"event_name": "footer::consoles_jeux_video::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Consoles &amp; Jeux vidéo
- </a></li>
- <li><a href="//www.leboncoin.fr/image_son/offres/bretagne/" title="Image &amp; Son" class="trackable" data-info='{"event_name": "footer::image_son::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Image &amp; Son
- </a></li>
- <li><a href="//www.leboncoin.fr/telephonie/offres/bretagne/" title="Téléphonie" class="trackable" data-info='{"event_name": "footer::telephonie::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Téléphonie
- </a></li>
-
-
- <li class="title"><a href="//www.leboncoin.fr/_loisirs_/offres/bretagne/" title="LOISIRS" class="trackable" data-info='{"event_name": "footer::loisirs::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- LOISIRS
- </a></li>
-
- <li><a href="//www.leboncoin.fr/dvd_films/offres/bretagne/" title="DVD / Films" class="trackable" data-info='{"event_name": "footer::dvd_films::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- DVD / Films
- </a></li>
- <li><a href="//www.leboncoin.fr/cd_musique/offres/bretagne/" title="CD / Musique" class="trackable" data-info='{"event_name": "footer::cd_musique::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- CD / Musique
- </a></li>
- <li><a href="//www.leboncoin.fr/livres/offres/bretagne/" title="Livres" class="trackable" data-info='{"event_name": "footer::livres::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Livres
- </a></li>
- <li><a href="//www.leboncoin.fr/animaux/offres/bretagne/" title="Animaux" class="trackable" data-info='{"event_name": "footer::animaux::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Animaux
- </a></li>
- <li><a href="//www.leboncoin.fr/velos/offres/bretagne/" title="Vélos" class="trackable" data-info='{"event_name": "footer::velos::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Vélos
- </a></li>
- <li><a href="//www.leboncoin.fr/sports_hobbies/offres/bretagne/" title="Sports &amp; Hobbies" class="trackable" data-info='{"event_name": "footer::sports_hobbies::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Sports &amp; Hobbies
- </a></li>
- <li><a href="//www.leboncoin.fr/instruments_de_musique/offres/bretagne/" title="Instruments de musique" class="trackable" data-info='{"event_name": "footer::instruments_musique::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Instruments de musique
- </a></li>
- <li><a href="//www.leboncoin.fr/collection/offres/bretagne/" title="Collection" class="trackable" data-info='{"event_name": "footer::collection::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Collection
- </a></li>
- <li><a href="//www.leboncoin.fr/jeux_jouets/offres/bretagne/" title="Jeux &amp; Jouets" class="trackable" data-info='{"event_name": "footer::jeux_jouets::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Jeux &amp; Jouets
- </a></li>
- <li><a href="//www.leboncoin.fr/vins_gastronomie/offres/bretagne/" title="Vins &amp; Gastronomie" class="trackable" data-info='{"event_name": "footer::vins_gastronomie::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Vins &amp; Gastronomie
- </a></li>
-
- </ul></div><div><ul>
- <li class="title"><a href="//www.leboncoin.fr/_materiel_professionnel_/offres/bretagne/" title="MATERIEL PROFESSIONNEL" class="trackable" data-info='{"event_name": "footer::materiel_professionnel::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- MATERIEL PROFESSIONNEL
- </a></li>
-
- <li><a href="//www.leboncoin.fr/materiel_agricole/offres/bretagne/" title="Matériel Agricole" class="trackable" data-info='{"event_name": "footer::materiel_agricole::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Matériel Agricole
- </a></li>
- <li><a href="//www.leboncoin.fr/transport_manutention/offres/bretagne/" title="Transport - Manutention" class="trackable" data-info='{"event_name": "footer::transport_manutention::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Transport - Manutention
- </a></li>
- <li><a href="//www.leboncoin.fr/btp_chantier_gros_oeuvre/offres/bretagne/" title="BTP - Chantier Gros-oeuvre" class="trackable" data-info='{"event_name": "footer::btp_chantier_gros_oeuvre::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- BTP - Chantier Gros-oeuvre
- </a></li>
- <li><a href="//www.leboncoin.fr/outillage_materiaux_2nd_oeuvre/offres/bretagne/" title="Outillage - Matériaux 2nd-oeuvre" class="trackable" data-info='{"event_name": "footer::outillage_materiaux_2nd_oeuvre::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Outillage - Matériaux 2nd-oeuvre
- </a></li>
- <li><a href="//www.leboncoin.fr/equipements_industriels/offres/bretagne/" title="Équipements Industriels" class="trackable" data-info='{"event_name": "footer::equipements_industriels::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Équipements Industriels
- </a></li>
- <li><a href="//www.leboncoin.fr/restauration_hotellerie/offres/bretagne/" title="Restauration - Hôtellerie" class="trackable" data-info='{"event_name": "footer::restauration_hotellerie::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Restauration - Hôtellerie
- </a></li>
- <li><a href="//www.leboncoin.fr/fournitures_de_bureau/offres/bretagne/" title="Fournitures de Bureau" class="trackable" data-info='{"event_name": "footer::fournitures_bureau::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Fournitures de Bureau
- </a></li>
- <li><a href="//www.leboncoin.fr/commerces_marches/offres/bretagne/" title="Commerces &amp; Marchés" class="trackable" data-info='{"event_name": "footer::commerces_marches::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Commerces &amp; Marchés
- </a></li>
- <li><a href="//www.leboncoin.fr/materiel_medical/offres/bretagne/" title="Matériel Médical" class="trackable" data-info='{"event_name": "footer::materiel_medical::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Matériel Médical
- </a></li>
-
-
- <li class="title"><a href="//www.leboncoin.fr/_services_/offres/bretagne/" title="SERVICES" class="trackable" data-info='{"event_name": "footer::services::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- SERVICES
- </a></li>
-
- <li><a href="//www.leboncoin.fr/prestations_de_services/offres/bretagne/" title="Prestations de services" class="trackable" data-info='{"event_name": "footer::prestations_services::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Prestations de services
- </a></li>
- <li><a href="//www.leboncoin.fr/billetterie/offres/bretagne/" title="Billetterie" class="trackable" data-info='{"event_name": "footer::billetterie::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Billetterie
- </a></li>
- <li><a href="//www.leboncoin.fr/evenements/offres/bretagne/" title="Evénements" class="trackable" data-info='{"event_name": "footer::evenements::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Evénements
- </a></li>
- <li><a href="//www.leboncoin.fr/cours_particuliers/offres/bretagne/" title="Cours particuliers" class="trackable" data-info='{"event_name": "footer::cours_particuliers::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Cours particuliers
- </a></li>
- <li><a href="//www.leboncoin.fr/covoiturage/offres/bretagne/" title="Covoiturage" class="trackable" data-info='{"event_name": "footer::covoiturage::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Covoiturage
- </a></li>
-
-
-
- <li class="title"><a href="//www.leboncoin.fr/autres/offres/bretagne/" title="Autres" class="trackable" data-info='{"event_name": "footer::divers::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>Autres</a></li>
-
- <li><a href="//www.leboncoin.fr/autres/offres/bretagne/" title="Autres" class="trackable" data-info='{"event_name": "footer::autres::recherche", "event_type": "click", "event_s2": "9", "click_type": "N"}'>
- Autres
- </a></li>
-
- </ul>
- </div>
-</section>
-
-
-
- </div>
- </section>
-
- <section class="footer_content">
- <div class="content-center">
- <section class="grid-4 custom-small-hidden">
- <nav class="footerNav">
- <h3>&Agrave; propos du boncoin</h3>
- <ul>
- <li><a title="Qui&nbsp;sommes-nous&nbsp;?" class="trackable" href="https://corporate.leboncoin.fr/" target="_blank" data-info='{"event_name" : "footer::a_propos_du_bon_coin::qui_sommes_nous::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>Qui&nbsp;sommes-nous&nbsp;?</a></li>
-
- <li><a title="Nous rejoindre" class="trackable" href="//www.leboncoin.fr/recrutement.htm?ca=6_s&c=0&w=3" data-info='{"event_name" : "footer::a_propos_du_bon_coin::recrutement::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Nous rejoindre</a></li>
- <li><a title="Impact environnemental" class="trackable" href="http://secondhandeffect.leboncoin.fr/" data-info='{"event_name" : "footer::a_propos_du_bon_coin::impact_environnemental::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Impact environnemental</a></li>
-
- </ul>
- <h3>Nos applications</h3>
- <ul class="badgeApp">
- <li>
- <a href="https://itunes.apple.com/fr/app/leboncoin/id484115113?mt=8" title="T&eacute;l&eacute;charger l'application Iphone/Ipad" target="_blank" class="trackable" data-info='{"event_name" : "telecharger_application::ios::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><img alt="T&eacute;l&eacute;charger l'application Iphone/Ipad" src="//static.leboncoin.fr/img/download_on_app_store.png" /></a>
- <a href="https://play.google.com/store/apps/details?id=fr.leboncoin" title="T&eacute;l&eacute;charger l'application Android" target="_blank" class="trackable" data-info='{"event_name" : "telecharger_application::android::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><img alt="T&eacute;l&eacute;charger l'application Android" src="//static.leboncoin.fr/img/download_on_google_play.png" /></a>
- </li>
- </ul>
- </nav>
- <nav class="footerNav">
- <h3>Informations l&eacute;gales</h3>
- <ul>
- <li><a title="Conditions g&eacute;n&eacute;rales d'utilisation" class="" href="//www.leboncoin.fr/legal.htm?ca=6_s">Conditions g&eacute;n&eacute;rales d'utilisation</a></li>
- <li><a title="R&egrave;gles de diffusion" class="" href="//www.leboncoin.fr/regles.htm?ca=6_s">R&egrave;gles&nbsp;de&nbsp;diffusion</a></li>
- <li><a title="Conditions G&eacute;n&eacute;rales de vente" class="" href="//www.leboncoin.fr/cgv_general.htm?ca=6_s">Conditions&nbsp;G&eacute;n&eacute;rales&nbsp;de&nbsp;Vente</a></li>
-
- <li><a title="Vie priv&eacute;e et cookies" href="//www.leboncoin.fr/cookies">Vie priv&eacute;e et cookies</a></li>
-
- <li><a href="//www2.leboncoin.fr/dc/vos_droits_et_obligations?ca=6_s" title="Vos droits et obligations" class="" >Vos droits et obligations</a></li>
-
- </ul>
- </nav>
- <nav class="footerNav">
- <h3>Professionnels</h3>
- <ul>
- <li><a title="Publicit&eacute;" class="trackable" href="//www2.leboncoin.fr/pub/form/?ca=6_s" data-info='{"event_name" : "footer::professionnels::publicite::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Publicit&eacute;</a></li>
-
-
- <li><a title="Professionnels de l'immobilier" href="https://comptepro.leboncoin.fr/immobilier/?ca=6_s" class="trackable" data-info='{"event_name" : "footer::professionnels::professionnels_de_l_immobilier::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Professionnels de l'immobilier</a></li>
-
-
- <li><a title="Vos recrutements" class="trackable" data-info='{"event_name" : "support::professionnels_emploi::formulaire::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}' href="//www.leboncoin.fr/vos-recrutements">Vos recrutements</a></li>
-
-
- <li><a title="Toutes nos solutions pros" target="_blank" class="trackable" data-info='{"event_name" : "footer::professionnels::solutions_pros::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}' href="http://www.leboncoinpro.fr/">Toutes nos solutions pros</a></li>
-
- </ul>
- </nav>
- <nav class="footerNav">
- <h3>Des questions ?</h3>
- <ul>
- <li><a title="Aide" href="//www.leboncoin.fr/aide.htm?ca=6_s" class="trackable" data-info='{"event_name" : "footer::des_questions::aide::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Aide</a></li>
- <li><a title="Nous contacter" rel="nofollow" href="//www.leboncoin.fr/support/form?id=1&amp;ca=6_s" class="trackable" data-info='{"event_name" : "footer::des_questions::nous_contacter::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "N"}'>Nous contacter</a></li>
- </ul>
- <h3>Vous &ecirc;tes &agrave; l'&eacute;tranger ?</h3>
- <div class="field-wrapper">
- <article class="selectWrapper selectCountry">
- <button class="select toggleElement" data-element="customSelect_country"><span class="flag flag_fra"></span>France</button>
- </article>
- </div>
- </nav>
- </section>
- <section class="customSelect customSelect_country">
- <ul class="clearfix">
-
-
-
-
-
-
-
- <li><a href="http://www.willhaben.at/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::autriche::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_aut"></span>Autriche</a></li>
- <li><a href="http://ekhanei.com/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::bangladesh::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_ban"></span>Bangladesh</a></li>
- <li><a href="http://www.kapaza.be/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::belgique::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_bel"></span>Belgique</a></li>
- <li><a href="http://www.kufar.by/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::bielorussie::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_bie"></span>Bi&eacute;lorussie</a></li>
- <li><a href="http://www.olx.com.br/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::bresil::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_bre"></span>Br&eacute;sil</a></li>
- <li><a href="http://www.yapo.cl/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::chili::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_chi"></span>Chili</a></li>
- <li><a href="http://www.fincaraiz.com.co/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::colombie::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_col"></span>Colombie</a></li>
- <li><a href="http://www.segundamano.es/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::espagne::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_esp"></span>Espagne</a></li>
- <li><a href="http://www.tori.fi/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::finlande::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_fin"></span>Finlande</a></li>
- <li><a href="http://www.jofogas.hu/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::hongrie::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_hon"></span>Hongrie</a></li>
- <li><a href="http://olx.co.id/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::indonesie::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_ind"></span>Indon&eacute;sie</a></li>
- <li><a href="http://www.donedeal.ie/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::irlande::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_irl"></span>Irlande</a></li>
- <li><a href="http://www.subito.it/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::italie::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_ita"></span>Italie</a></li>
- <li><a href="http://www.mudah.my/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::malaisie::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_mal"></span>Malaisie</a></li>
- <li><a href="http://www.avito.ma/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::maroc::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_mar"></span>Maroc</a></li>
- <li><a href="http://www.segundamano.mx/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::mexique::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_mex"></span>Mexique</a></li>
- <li><a href="http://www.custojusto.pt/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::portugal::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_por"></span>Portugal</a></li>
- <li><a href="http://www.corotos.com.do/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::republique_dominicaine::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_rep"></span>R&eacute;publique Dominicaine</a></li>
- <li><a href="http://www.blocket.se/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::suede::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_sue"></span>Su&egrave;de</a></li>
- <li><a href="http://www.tutti.ch/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::suisse::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_sui"></span>Suisse</a></li>
- <li><a href="http://www.tayara.tn/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::tunisie::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_tun"></span>Tunisie</a></li>
- <li><a href="http://www.chotot.vn/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::vietnam::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_vie"></span>Vietnam</a></li>
-
-
- <li><a href="http://www.kaidee.com/" target="_blank" class="trackable" data-info='{"event_name" : "footer::vous_etes_a_l_etranger::thailande::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><span class="flag flag_tha"></span>Thailande</a></li>
-
- </ul>
- </section>
-
-
-
- <article class="partners custom-small-hidden">
- <p>Partenaires :
-
- <a href="https://www.younited-credit.com" title="Younited Credit" target="_blank" class="trackable" data-info='{"event_name" : "footer::partenaires::younited_credit::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>Younited Credit</a> -
-
- <a href="https://emploicadres.leboncoin.fr/?utm_source=leboncoin&utm_medium=footer&utm_campaign=permanent" title="Leboncoin Emploi Cadres" target="_blank" class="trackable" data-info='{"event_name" : "footer::partenaires::leboncoin_emploi_cadres::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>Leboncoin Emploi Cadres</a> -
-
- <a href="http://www.agriaffaires.com/?utm_source=partner_lbc" title="Agriaffaires" target="_blank" class="trackable" data-info='{"event_name" : "footer::partenaires::agriaffaires::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>Agriaffaires</a> -
-
- <a href="http://www.machineryzone.fr/?utm_source=partner_lbc" title="MachineryZone" target="_blank" class="trackable" data-info='{"event_name" : "footer::partenaires::machineryzone::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>MachineryZone</a> -
-
- <a href="https://ledenicheur.fr/" title="leD&eacute;nicheur" target="_blank" class="trackable" data-info='{"event_name" : "footer::partenaires::ledenicheur::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>leD&eacute;nicheur</a> -
-
- <a href="https://www.avendrealouer.fr/" title="AVendreALouer" target="_blank" class="trackable" data-info='{"event_name" : "footer::partenaires::avendrealouer::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'>AVendreALouer</a>
-
- </p>
- </article>
-
-
- <section class="clearfix">
- <p class="copyright">leboncoin 2006 - 2018</p>
- <article class="social">
- <p>
- <span class="fl custom-small-hidden">Retrouvez-nous sur :</span>
- <a href="https://www.facebook.com/pages/leboncoin/1565057520410527" title="Retrouvez-nous sur Facebook" class="facebook share trackable" target="_blank" data-info='{"event_name" : "reseaux_sociaux::facebook::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><i class="icon-facebook nomargin"></i></a>
- <a href="https://twitter.com/leboncoin/" title="Retrouvez-nous sur Twitter" class="twitter share trackable" target="_blank" data-info='{"event_name" : "reseaux_sociaux::twitter::recherche", "event_type" : "click", "event_s2" : "9", "click_type" : "S"}'><i class="icon-twitter nomargin"></i></a>
- </p>
- </article>
- </section>
- </div>
- </section>
-</footer>
-
-
- </section>
-
-
-
- <!--[if IE]>
- <script src="//static.leboncoin.fr/js/beta_ie.js"></script>
- <![endif]-->
- <!--[if gt IE 10]><!--><script src="//static.leboncoin.fr/js/jquery.mobile-1.4.5.min.js"></script><!--<![endif]-->
-
-
<script>
- env=12579;
- </script>
-
+ window.FLUX_STATE = {"routing":{"locationBeforeTransitions":{"pathname":"\u002Flocations\u002Foffres\u002File_de_france\u002F","search":"","hash":"","action":"POP","key":null,"query":{}}},"account":{"isFetching":false},"adSearch":{"dataFetched":true,"lastReq":{"limit":35,"limit_alu":3,"filters":{"category":{"id":"10"},"enums":{"ad_type":["offer"]},"location":{"locations":[{"locationType":"region","label":"Ile-de-France","region_id":"12"}]},"keywords":{},"ranges":{}}}},"adview":{"bookingPrice":0,"isBookingPriceFetching":false,"isFetching":false},"app":{"serverError":false,"isFetchingData":true,"regionId":"6"},"cart":{"isFetching":false,"items":[]},"datalayer":{"event_name":"","isUtagReady":false},"dynamicContent":{"showAllToggles":false},"holidays":{"booking":{}},"lbcData":{"regions":{"isFetching":false,"data":[{"id":"1","name":"Alsace","channel":"alsace","neighbours":["1","10","15"],"departments":["67","68"]},{"id":"2","name":"Aquitaine","channel":"aquitaine","neighbours":["2","14","16","20"],"departments":["24","33","40","47","64"]},{"id":"3","name":"Auvergne","channel":"auvergne","neighbours":["3","5","7","13","14","16","22"],"departments":["3","15","43","63"]},{"id":"30","name":"Auvergne-Rhône-Alpes","channel":"auvergne_rhone_alpes","neighbours":["30"],"departments":[]},{"id":"4","name":"Basse-Normandie","channel":"basse_normandie","neighbours":["4","6","7","11","18"],"departments":["14","50","61"]},{"id":"5","name":"Bourgogne","channel":"bourgogne","neighbours":["5","3","7","8","10","12","22"],"departments":["21","58","71","89"]},{"id":"31","name":"Bourgogne-Franche-Comté","channel":"bourgogne_franche_comte","neighbours":["31"],"departments":[]},{"id":"6","name":"Bretagne","channel":"bretagne","neighbours":["6","4","18"],"departments":["22","29","35","56"]},{"id":"7","name":"Centre","channel":"centre","neighbours":["7","3","4","5","11","12","14","18","20"],"departments":["18","28","36","37","41","45"]},{"id":"8","name":"Champagne-Ardenne","channel":"champagne_ardenne","neighbours":["8","5","10","12","15","19"],"departments":["8","10","51","52"]},{"id":"9","name":"Corse","channel":"corse","neighbours":["9"],"departments":[]},{"id":"10","name":"Franche-Comté","channel":"franche_comte","neighbours":["10","1","5","8","15","22"],"departments":["25","39","70","90"]},{"id":"33","name":"Grand Est","channel":"grand_est","neighbours":["33"],"departments":[]},{"id":"23","name":"Guadeloupe","channel":"guadeloupe","neighbours":["23"],"departments":[]},{"id":"25","name":"Guyane","channel":"guyane","neighbours":["25"],"departments":[]},{"id":"11","name":"Haute-Normandie","channel":"haute_normandie","neighbours":["11","4","7","12","19"],"departments":["27","76"]},{"id":"32","name":"Hauts-de-France","channel":"hauts_de_france","neighbours":["32"],"departments":[]},{"id":"12","name":"Ile-de-France","channel":"ile_de_france","neighbours":["12","5","7","8","11","19"],"departments":["75","77","78","91","92","93","94","95"]},{"id":"13","name":"Languedoc-Roussillon","channel":"languedoc_roussillon","neighbours":["13","3","16","21","22"],"departments":["11","30","34","48","66"]},{"id":"14","name":"Limousin","channel":"limousin","neighbours":["14","2","3","7","16","20"],"departments":["19","23","87"]},{"id":"15","name":"Lorraine","channel":"lorraine","neighbours":["15","1","8","10"],"departments":["54","55","57","88"]},{"id":"24","name":"Martinique","channel":"martinique","neighbours":["24"],"departments":[]},{"id":"16","name":"Midi-Pyrénées","channel":"midi_pyrenees","neighbours":["16","2","3","13","14"],"departments":["9","12","31","32","46","65","81","82"]},{"id":"17","name":"Nord-Pas-de-Calais","channel":"nord_pas_de_calais","neighbours":["17","19"],"departments":["59","62"]},{"id":"34","name":"Normandie","channel":"normandie","neighbours":["34"],"departments":[]},{"id":"35","name":"Nouvelle-Aquitaine","channel":"nouvelle_aquitaine","neighbours":["35"],"departments":[]},{"id":"36","name":"Occitanie","channel":"occitanie","neighbours":["36"],"departments":[]},{"id":"18","name":"Pays de la Loire","channel":"pays_de_la_loire","neighbours":["18","4","6","7","20"],"departments":["44","49","53","72","85"]},{"id":"19","name":"Picardie","channel":"picardie","neighbours":["19","8","11","12","17"],"departments":["2","60","80"]},{"id":"20","name":"Poitou-Charentes","channel":"poitou_charentes","neighbours":["20","2","7","14","18"],"departments":["16","17","79","86"]},{"id":"21","name":"Provence-Alpes-Côte d'Azur","channel":"provence_alpes_cote_d_azur","neighbours":["21","13","22"],"departments":["4","5","6","13","83","84"]},{"id":"22","name":"Rhône-Alpes","channel":"rhone_alpes","neighbours":["22","3","5","10","13","21"],"departments":["1","7","26","38","42","69","73","74"]},{"id":"26","name":"Réunion","channel":"reunion","neighbours":["26"],"departments":[]},{"id":"30","name":"Occitanie","channel":"occitanie","neighbours":["30"],"departments":[]}],"byId":{"1":{"id":"1","name":"Alsace","channel":"alsace","neighbours":["1","10","15"],"departments":["67","68"]},"2":{"id":"2","name":"Aquitaine","channel":"aquitaine","neighbours":["2","14","16","20"],"departments":["24","33","40","47","64"]},"3":{"id":"3","name":"Auvergne","channel":"auvergne","neighbours":["3","5","7","13","14","16","22"],"departments":["3","15","43","63"]},"4":{"id":"4","name":"Basse-Normandie","channel":"basse_normandie","neighbours":["4","6","7","11","18"],"departments":["14","50","61"]},"5":{"id":"5","name":"Bourgogne","channel":"bourgogne","neighbours":["5","3","7","8","10","12","22"],"departments":["21","58","71","89"]},"6":{"id":"6","name":"Bretagne","channel":"bretagne","neighbours":["6","4","18"],"departments":["22","29","35","56"]},"7":{"id":"7","name":"Centre","channel":"centre","neighbours":["7","3","4","5","11","12","14","18","20"],"departments":["18","28","36","37","41","45"]},"8":{"id":"8","name":"Champagne-Ardenne","channel":"champagne_ardenne","neighbours":["8","5","10","12","15","19"],"departments":["8","10","51","52"]},"9":{"id":"9","name":"Corse","channel":"corse","neighbours":["9"],"departments":[]},"10":{"id":"10","name":"Franche-Comté","channel":"franche_comte","neighbours":["10","1","5","8","15","22"],"departments":["25","39","70","90"]},"11":{"id":"11","name":"Haute-Normandie","channel":"haute_normandie","neighbours":["11","4","7","12","19"],"departments":["27","76"]},"12":{"id":"12","name":"Ile-de-France","channel":"ile_de_france","neighbours":["12","5","7","8","11","19"],"departments":["75","77","78","91","92","93","94","95"]},"13":{"id":"13","name":"Languedoc-Roussillon","channel":"languedoc_roussillon","neighbours":["13","3","16","21","22"],"departments":["11","30","34","48","66"]},"14":{"id":"14","name":"Limousin","channel":"limousin","neighbours":["14","2","3","7","16","20"],"departments":["19","23","87"]},"15":{"id":"15","name":"Lorraine","channel":"lorraine","neighbours":["15","1","8","10"],"departments":["54","55","57","88"]},"16":{"id":"16","name":"Midi-Pyrénées","channel":"midi_pyrenees","neighbours":["16","2","3","13","14"],"departments":["9","12","31","32","46","65","81","82"]},"17":{"id":"17","name":"Nord-Pas-de-Calais","channel":"nord_pas_de_calais","neighbours":["17","19"],"departments":["59","62"]},"18":{"id":"18","name":"Pays de la Loire","channel":"pays_de_la_loire","neighbours":["18","4","6","7","20"],"departments":["44","49","53","72","85"]},"19":{"id":"19","name":"Picardie","channel":"picardie","neighbours":["19","8","11","12","17"],"departments":["2","60","80"]},"20":{"id":"20","name":"Poitou-Charentes","channel":"poitou_charentes","neighbours":["20","2","7","14","18"],"departments":["16","17","79","86"]},"21":{"id":"21","name":"Provence-Alpes-Côte d'Azur","channel":"provence_alpes_cote_d_azur","neighbours":["21","13","22"],"departments":["4","5","6","13","83","84"]},"22":{"id":"22","name":"Rhône-Alpes","channel":"rhone_alpes","neighbours":["22","3","5","10","13","21"],"departments":["1","7","26","38","42","69","73","74"]},"23":{"id":"23","name":"Guadeloupe","channel":"guadeloupe","neighbours":["23"],"departments":[]},"24":{"id":"24","name":"Martinique","channel":"martinique","neighbours":["24"],"departments":[]},"25":{"id":"25","name":"Guyane","channel":"guyane","neighbours":["25"],"departments":[]},"26":{"id":"26","name":"Réunion","channel":"reunion","neighbours":["26"],"departments":[]},"30":{"id":"30","name":"Occitanie","channel":"occitanie","neighbours":["30"],"departments":[]},"31":{"id":"31","name":"Bourgogne-Franche-Comté","channel":"bourgogne_franche_comte","neighbours":["31"],"departments":[]},"32":{"id":"32","name":"Hauts-de-France","channel":"hauts_de_france","neighbours":["32"],"departments":[]},"33":{"id":"33","name":"Grand Est","channel":"grand_est","neighbours":["33"],"departments":[]},"34":{"id":"34","name":"Normandie","channel":"normandie","neighbours":["34"],"departments":[]},"35":{"id":"35","name":"Nouvelle-Aquitaine","channel":"nouvelle_aquitaine","neighbours":["35"],"departments":[]},"36":{"id":"36","name":"Occitanie","channel":"occitanie","neighbours":["36"],"departments":[]}},"urlSlugs":{"alsace":"1","aquitaine":"2","auvergne":"3","auvergne_rhone_alpes":"30","basse_normandie":"4","bourgogne":"5","bourgogne_franche_comte":"31","bretagne":"6","centre":"7","champagne_ardenne":"8","corse":"9","franche_comte":"10","grand_est":"33","guadeloupe":"23","guyane":"25","haute_normandie":"11","hauts_de_france":"32","ile_de_france":"12","languedoc_roussillon":"13","limousin":"14","lorraine":"15","martinique":"24","midi_pyrenees":"16","nord_pas_de_calais":"17","normandie":"34","nouvelle_aquitaine":"35","occitanie":"30","pays_de_la_loire":"18","picardie":"19","poitou_charentes":"20","provence_alpes_cote_d_azur":"21","rhone_alpes":"22","reunion":"26"}},"departments":{"isFetching":false,"data":[{"id":"1","name":"Ain","channel":"ain","region_id":"22","neighbours":["1","38","39","69","71","73","74"]},{"id":"2","name":"Aisne","channel":"aisne","region_id":"19","neighbours":["2","8","51","59","60","77","80"]},{"id":"3","name":"Allier","channel":"allier","region_id":"3","neighbours":["3","18","23","42","58","63","71"]},{"id":"6","name":"Alpes-Maritimes","channel":"alpes_maritimes","region_id":"21","neighbours":["6","4","83"]},{"id":"4","name":"Alpes-de-Haute-Provence","channel":"alpes_de_haute_provence","region_id":"21","neighbours":["4","5","6","26","83","84"]},{"id":"8","name":"Ardennes","channel":"ardennes","region_id":"8","neighbours":["8","2","51","55"]},{"id":"7","name":"Ardèche","channel":"ardeche","region_id":"22","neighbours":["7","26","30","38","42","43","48","84"]},{"id":"9","name":"Ariège","channel":"ariege","region_id":"16","neighbours":["9","11","31","66"]},{"id":"10","name":"Aube","channel":"aube","region_id":"8","neighbours":["10","21","51","52","77","89"]},{"id":"11","name":"Aude","channel":"aude","region_id":"13","neighbours":["11","9","31","34","66","81"]},{"id":"12","name":"Aveyron","channel":"aveyron","region_id":"16","neighbours":["12","15","30","34","46","48","81","82"]},{"id":"67","name":"Bas-Rhin","channel":"bas_rhin","region_id":"1","neighbours":["67","57","68","88"]},{"id":"13","name":"Bouches-du-Rhône","channel":"bouches_du_rhone","region_id":"21","neighbours":["13","30","83","84"]},{"id":"14","name":"Calvados","channel":"calvados","region_id":"4","neighbours":["14","27","50","61","76"]},{"id":"15","name":"Cantal","channel":"cantal","region_id":"3","neighbours":["15","12","19","43","46","48","63"]},{"id":"16","name":"Charente","channel":"charente","region_id":"20","neighbours":["16","17","24","79","86","87"]},{"id":"17","name":"Charente-Maritime","channel":"charente_maritime","region_id":"20","neighbours":["17","16","24","33","79","85"]},{"id":"18","name":"Cher","channel":"cher","region_id":"7","neighbours":["18","3","36","41","45","58"]},{"id":"19","name":"Corrèze","channel":"correze","region_id":"14","neighbours":["19","15","23","24","46","63","87"]},{"id":"23","name":"Creuse","channel":"creuse","region_id":"14","neighbours":["23","3","19","36","63","87"]},{"id":"21","name":"Côte-d'Or","channel":"cote_d_or","region_id":"5","neighbours":["21","10","39","52","58","70","71","89"]},{"id":"22","name":"Côtes-d'Armor","channel":"cotes_d_armor","region_id":"6","neighbours":["22","29","35","56"]},{"id":"79","name":"Deux-Sèvres","channel":"deux_sevres","region_id":"20","neighbours":["79","16","17","49","85","86"]},{"id":"24","name":"Dordogne","channel":"dordogne","region_id":"2","neighbours":["24","16","17","19","33","46","47","87"]},{"id":"25","name":"Doubs","channel":"doubs","region_id":"10","neighbours":["25","39","70","90"]},{"id":"26","name":"Drôme","channel":"drome","region_id":"22","neighbours":["26","4","5","7","38","84"]},{"id":"91","name":"Essonne","channel":"essonne","region_id":"12","neighbours":["91","28","45","77","78","92","94"]},{"id":"27","name":"Eure","channel":"eure","region_id":"11","neighbours":["27","14","28","60","61","76","78","95"]},{"id":"28","name":"Eure-et-Loir","channel":"eure_et_loir","region_id":"7","neighbours":["28","27","41","45","61","72","78","91"]},{"id":"29","name":"Finistère","channel":"finistere","region_id":"6","neighbours":["29","22","56"]},{"id":"30","name":"Gard","channel":"gard","region_id":"13","neighbours":["30","7","12","13","34","48","84"]},{"id":"32","name":"Gers","channel":"gers","region_id":"16","neighbours":["32","31","40","47","64","65","82"]},{"id":"33","name":"Gironde","channel":"gironde","region_id":"2","neighbours":["33","17","24","40","47"]},{"id":"68","name":"Haut-Rhin","channel":"haut_rhin","region_id":"1","neighbours":["68","67","88","90"]},{"id":"31","name":"Haute-Garonne","channel":"haute_garonne","region_id":"16","neighbours":["31","9","11","32","65","81","82"]},{"id":"43","name":"Haute-Loire","channel":"haute_loire","region_id":"3","neighbours":["43","7","15","42","48","63"]},{"id":"52","name":"Haute-Marne","channel":"haute_marne","region_id":"8","neighbours":["52","10","21","51","55","70","88"]},{"id":"74","name":"Haute-Savoie","channel":"haute_savoie","region_id":"22","neighbours":["74","1","73"]},{"id":"70","name":"Haute-Saône","channel":"haute_saone","region_id":"10","neighbours":["70","21","25","52","88","90"]},{"id":"87","name":"Haute-Vienne","channel":"haute_vienne","region_id":"14","neighbours":["87","16","19","23","24","36","86"]},{"id":"5","name":"Hautes-Alpes","channel":"hautes_alpes","region_id":"21","neighbours":["5","4","26","38","73"]},{"id":"65","name":"Hautes-Pyrénées","channel":"hautes_pyrenees","region_id":"16","neighbours":["65","31","32","64"]},{"id":"92","name":"Hauts-de-Seine","channel":"hauts_de_seine","region_id":"12","neighbours":["92","75","78","91","95","94"]},{"id":"34","name":"Hérault","channel":"herault","region_id":"13","neighbours":["34","11","12","30","81"]},{"id":"35","name":"Ille-et-Vilaine","channel":"ille_et_vilaine","region_id":"6","neighbours":["35","22","44","49","50","53","56"]},{"id":"36","name":"Indre","channel":"indre","region_id":"7","neighbours":["36","3","18","23","37","41","86","87"]},{"id":"37","name":"Indre-et-Loire","channel":"indre_et_loire","region_id":"7","neighbours":["37","36","41","49","72","86"]},{"id":"38","name":"Isère","channel":"isere","region_id":"22","neighbours":["38","1","5","7","26","42","69","73"]},{"id":"39","name":"Jura","channel":"jura","region_id":"10","neighbours":["39","1","21","25","70","71"]},{"id":"40","name":"Landes","channel":"landes","region_id":"2","neighbours":["40","32","33","47","64"]},{"id":"41","name":"Loir-et-Cher","channel":"loir_et_cher","region_id":"7","neighbours":["41","18","28","36","37","45","72"]},{"id":"42","name":"Loire","channel":"loire","region_id":"22","neighbours":["42","3","7","26","38","43","63","69","71"]},{"id":"44","name":"Loire-Atlantique","channel":"loire_atlantique","region_id":"18","neighbours":["44","35","49","56","85"]},{"id":"45","name":"Loiret","channel":"loiret","region_id":"7","neighbours":["45","18","28","41","58","77","89","91"]},{"id":"46","name":"Lot","channel":"lot","region_id":"16","neighbours":["46","12","15","19","24","47","82"]},{"id":"47","name":"Lot-et-Garonne","channel":"lot_et_garonne","region_id":"2","neighbours":["47","24","32","33","40","46","82"]},{"id":"48","name":"Lozère","channel":"lozere","region_id":"13","neighbours":["48","7","12","15","30","43"]},{"id":"49","name":"Maine-et-Loire","channel":"maine_et_loire","region_id":"18","neighbours":["49","35","37","44","53","72","79","85","86"]},{"id":"50","name":"Manche","channel":"manche","region_id":"4","neighbours":["50","14","35","53","61"]},{"id":"51","name":"Marne","channel":"marne","region_id":"8","neighbours":["51","2","8","10","52","55","77"]},{"id":"53","name":"Mayenne","channel":"mayenne","region_id":"18","neighbours":["53","35","49","50","61","72"]},{"id":"54","name":"Meurthe-et-Moselle","channel":"meurthe_et_moselle","region_id":"15","neighbours":["54","55","57","88"]},{"id":"55","name":"Meuse","channel":"meuse","region_id":"15","neighbours":["55","8","51","52","54","88"]},{"id":"56","name":"Morbihan","channel":"morbihan","region_id":"6","neighbours":["56","22","29","35","44"]},{"id":"57","name":"Moselle","channel":"moselle","region_id":"15","neighbours":["57","54","67"]},{"id":"58","name":"Nièvre","channel":"nievre","region_id":"5","neighbours":["58","3","18","21","45","71","89"]},{"id":"59","name":"Nord","channel":"nord","region_id":"17","neighbours":["59","2","80","62"]},{"id":"60","name":"Oise","channel":"oise","region_id":"19","neighbours":["60","2","27","76","77","80","95"]},{"id":"61","name":"Orne","channel":"orne","region_id":"4","neighbours":["61","14","27","28","50","53","72"]},{"id":"75","name":"Paris","channel":"paris","region_id":"12","neighbours":["75","92","93","94"]},{"id":"62","name":"Pas-de-Calais","channel":"pas_de_calais","region_id":"17","neighbours":["62","59","80"]},{"id":"63","name":"Puy-de-Dôme","channel":"puy_de_dome","region_id":"3","neighbours":["63","3","15","19","23","42","43"]},{"id":"64","name":"Pyrénées-Atlantiques","channel":"pyrenees_atlantiques","region_id":"2","neighbours":["64","32","40","65"]},{"id":"66","name":"Pyrénées-Orientales","channel":"pyrenees_orientales","region_id":"13","neighbours":["66","9","11"]},{"id":"69","name":"Rhône","channel":"rhone","region_id":"22","neighbours":["69","1","38","42","71"]},{"id":"72","name":"Sarthe","channel":"sarthe","region_id":"18","neighbours":["72","28","37","41","49","53","61"]},{"id":"73","name":"Savoie","channel":"savoie","region_id":"22","neighbours":["73","1","5","38","74"]},{"id":"71","name":"Saône-et-Loire","channel":"saone_et_loire","region_id":"5","neighbours":["71","1","3","21","39","42","58","69"]},{"id":"76","name":"Seine-Maritime","channel":"seine_maritime","region_id":"11","neighbours":["76","14","27","60","80"]},{"id":"93","name":"Seine-Saint-Denis","channel":"seine_saint_denis","region_id":"12","neighbours":["93","75","77","92","94","95"]},{"id":"77","name":"Seine-et-Marne","channel":"seine_et_marne","region_id":"12","neighbours":["77","2","10","45","51","60","89","91","93","94","95"]},{"id":"80","name":"Somme","channel":"somme","region_id":"19","neighbours":["80","2","60","62","76"]},{"id":"81","name":"Tarn","channel":"tarn","region_id":"16","neighbours":["81","11","12","31","34","82"]},{"id":"82","name":"Tarn-et-Garonne","channel":"tarn_et_garonne","region_id":"16","neighbours":["82","12","31","32","46","47","81"]},{"id":"90","name":"Territoire de Belfort","channel":"territoire_de_belfort","region_id":"10","neighbours":["90","25","68","70"]},{"id":"95","name":"Val-d'Oise","channel":"val_d_oise","region_id":"12","neighbours":["95","27","60","77","78","92","93"]},{"id":"94","name":"Val-de-Marne","channel":"val_de_marne","region_id":"12","neighbours":["94","75","77","91","92","93"]},{"id":"83","name":"Var","channel":"var","region_id":"21","neighbours":["83","4","6","13","84"]},{"id":"84","name":"Vaucluse","channel":"vaucluse","region_id":"21","neighbours":["84","4","7","13","26","30","83"]},{"id":"85","name":"Vendée","channel":"vendee","region_id":"18","neighbours":["85","17","44","49","79"]},{"id":"86","name":"Vienne","channel":"vienne","region_id":"20","neighbours":["86","16","37","36","49","79","87"]},{"id":"88","name":"Vosges","channel":"vosges","region_id":"15","neighbours":["88","52","54","55","67","68","70"]},{"id":"89","name":"Yonne","channel":"yonne","region_id":"5","neighbours":["89","10","21","45","58","77"]},{"id":"78","name":"Yvelines","channel":"yvelines","region_id":"12","neighbours":["78","27","28","91","92","95"]}],"byId":{"1":{"id":"1","name":"Ain","channel":"ain","region_id":"22","neighbours":["1","38","39","69","71","73","74"]},"2":{"id":"2","name":"Aisne","channel":"aisne","region_id":"19","neighbours":["2","8","51","59","60","77","80"]},"3":{"id":"3","name":"Allier","channel":"allier","region_id":"3","neighbours":["3","18","23","42","58","63","71"]},"4":{"id":"4","name":"Alpes-de-Haute-Provence","channel":"alpes_de_haute_provence","region_id":"21","neighbours":["4","5","6","26","83","84"]},"5":{"id":"5","name":"Hautes-Alpes","channel":"hautes_alpes","region_id":"21","neighbours":["5","4","26","38","73"]},"6":{"id":"6","name":"Alpes-Maritimes","channel":"alpes_maritimes","region_id":"21","neighbours":["6","4","83"]},"7":{"id":"7","name":"Ardèche","channel":"ardeche","region_id":"22","neighbours":["7","26","30","38","42","43","48","84"]},"8":{"id":"8","name":"Ardennes","channel":"ardennes","region_id":"8","neighbours":["8","2","51","55"]},"9":{"id":"9","name":"Ariège","channel":"ariege","region_id":"16","neighbours":["9","11","31","66"]},"10":{"id":"10","name":"Aube","channel":"aube","region_id":"8","neighbours":["10","21","51","52","77","89"]},"11":{"id":"11","name":"Aude","channel":"aude","region_id":"13","neighbours":["11","9","31","34","66","81"]},"12":{"id":"12","name":"Aveyron","channel":"aveyron","region_id":"16","neighbours":["12","15","30","34","46","48","81","82"]},"13":{"id":"13","name":"Bouches-du-Rhône","channel":"bouches_du_rhone","region_id":"21","neighbours":["13","30","83","84"]},"14":{"id":"14","name":"Calvados","channel":"calvados","region_id":"4","neighbours":["14","27","50","61","76"]},"15":{"id":"15","name":"Cantal","channel":"cantal","region_id":"3","neighbours":["15","12","19","43","46","48","63"]},"16":{"id":"16","name":"Charente","channel":"charente","region_id":"20","neighbours":["16","17","24","79","86","87"]},"17":{"id":"17","name":"Charente-Maritime","channel":"charente_maritime","region_id":"20","neighbours":["17","16","24","33","79","85"]},"18":{"id":"18","name":"Cher","channel":"cher","region_id":"7","neighbours":["18","3","36","41","45","58"]},"19":{"id":"19","name":"Corrèze","channel":"correze","region_id":"14","neighbours":["19","15","23","24","46","63","87"]},"21":{"id":"21","name":"Côte-d'Or","channel":"cote_d_or","region_id":"5","neighbours":["21","10","39","52","58","70","71","89"]},"22":{"id":"22","name":"Côtes-d'Armor","channel":"cotes_d_armor","region_id":"6","neighbours":["22","29","35","56"]},"23":{"id":"23","name":"Creuse","channel":"creuse","region_id":"14","neighbours":["23","3","19","36","63","87"]},"24":{"id":"24","name":"Dordogne","channel":"dordogne","region_id":"2","neighbours":["24","16","17","19","33","46","47","87"]},"25":{"id":"25","name":"Doubs","channel":"doubs","region_id":"10","neighbours":["25","39","70","90"]},"26":{"id":"26","name":"Drôme","channel":"drome","region_id":"22","neighbours":["26","4","5","7","38","84"]},"27":{"id":"27","name":"Eure","channel":"eure","region_id":"11","neighbours":["27","14","28","60","61","76","78","95"]},"28":{"id":"28","name":"Eure-et-Loir","channel":"eure_et_loir","region_id":"7","neighbours":["28","27","41","45","61","72","78","91"]},"29":{"id":"29","name":"Finistère","channel":"finistere","region_id":"6","neighbours":["29","22","56"]},"30":{"id":"30","name":"Gard","channel":"gard","region_id":"13","neighbours":["30","7","12","13","34","48","84"]},"31":{"id":"31","name":"Haute-Garonne","channel":"haute_garonne","region_id":"16","neighbours":["31","9","11","32","65","81","82"]},"32":{"id":"32","name":"Gers","channel":"gers","region_id":"16","neighbours":["32","31","40","47","64","65","82"]},"33":{"id":"33","name":"Gironde","channel":"gironde","region_id":"2","neighbours":["33","17","24","40","47"]},"34":{"id":"34","name":"Hérault","channel":"herault","region_id":"13","neighbours":["34","11","12","30","81"]},"35":{"id":"35","name":"Ille-et-Vilaine","channel":"ille_et_vilaine","region_id":"6","neighbours":["35","22","44","49","50","53","56"]},"36":{"id":"36","name":"Indre","channel":"indre","region_id":"7","neighbours":["36","3","18","23","37","41","86","87"]},"37":{"id":"37","name":"Indre-et-Loire","channel":"indre_et_loire","region_id":"7","neighbours":["37","36","41","49","72","86"]},"38":{"id":"38","name":"Isère","channel":"isere","region_id":"22","neighbours":["38","1","5","7","26","42","69","73"]},"39":{"id":"39","name":"Jura","channel":"jura","region_id":"10","neighbours":["39","1","21","25","70","71"]},"40":{"id":"40","name":"Landes","channel":"landes","region_id":"2","neighbours":["40","32","33","47","64"]},"41":{"id":"41","name":"Loir-et-Cher","channel":"loir_et_cher","region_id":"7","neighbours":["41","18","28","36","37","45","72"]},"42":{"id":"42","name":"Loire","channel":"loire","region_id":"22","neighbours":["42","3","7","26","38","43","63","69","71"]},"43":{"id":"43","name":"Haute-Loire","channel":"haute_loire","region_id":"3","neighbours":["43","7","15","42","48","63"]},"44":{"id":"44","name":"Loire-Atlantique","channel":"loire_atlantique","region_id":"18","neighbours":["44","35","49","56","85"]},"45":{"id":"45","name":"Loiret","channel":"loiret","region_id":"7","neighbours":["45","18","28","41","58","77","89","91"]},"46":{"id":"46","name":"Lot","channel":"lot","region_id":"16","neighbours":["46","12","15","19","24","47","82"]},"47":{"id":"47","name":"Lot-et-Garonne","channel":"lot_et_garonne","region_id":"2","neighbours":["47","24","32","33","40","46","82"]},"48":{"id":"48","name":"Lozère","channel":"lozere","region_id":"13","neighbours":["48","7","12","15","30","43"]},"49":{"id":"49","name":"Maine-et-Loire","channel":"maine_et_loire","region_id":"18","neighbours":["49","35","37","44","53","72","79","85","86"]},"50":{"id":"50","name":"Manche","channel":"manche","region_id":"4","neighbours":["50","14","35","53","61"]},"51":{"id":"51","name":"Marne","channel":"marne","region_id":"8","neighbours":["51","2","8","10","52","55","77"]},"52":{"id":"52","name":"Haute-Marne","channel":"haute_marne","region_id":"8","neighbours":["52","10","21","51","55","70","88"]},"53":{"id":"53","name":"Mayenne","channel":"mayenne","region_id":"18","neighbours":["53","35","49","50","61","72"]},"54":{"id":"54","name":"Meurthe-et-Moselle","channel":"meurthe_et_moselle","region_id":"15","neighbours":["54","55","57","88"]},"55":{"id":"55","name":"Meuse","channel":"meuse","region_id":"15","neighbours":["55","8","51","52","54","88"]},"56":{"id":"56","name":"Morbihan","channel":"morbihan","region_id":"6","neighbours":["56","22","29","35","44"]},"57":{"id":"57","name":"Moselle","channel":"moselle","region_id":"15","neighbours":["57","54","67"]},"58":{"id":"58","name":"Nièvre","channel":"nievre","region_id":"5","neighbours":["58","3","18","21","45","71","89"]},"59":{"id":"59","name":"Nord","channel":"nord","region_id":"17","neighbours":["59","2","80","62"]},"60":{"id":"60","name":"Oise","channel":"oise","region_id":"19","neighbours":["60","2","27","76","77","80","95"]},"61":{"id":"61","name":"Orne","channel":"orne","region_id":"4","neighbours":["61","14","27","28","50","53","72"]},"62":{"id":"62","name":"Pas-de-Calais","channel":"pas_de_calais","region_id":"17","neighbours":["62","59","80"]},"63":{"id":"63","name":"Puy-de-Dôme","channel":"puy_de_dome","region_id":"3","neighbours":["63","3","15","19","23","42","43"]},"64":{"id":"64","name":"Pyrénées-Atlantiques","channel":"pyrenees_atlantiques","region_id":"2","neighbours":["64","32","40","65"]},"65":{"id":"65","name":"Hautes-Pyrénées","channel":"hautes_pyrenees","region_id":"16","neighbours":["65","31","32","64"]},"66":{"id":"66","name":"Pyrénées-Orientales","channel":"pyrenees_orientales","region_id":"13","neighbours":["66","9","11"]},"67":{"id":"67","name":"Bas-Rhin","channel":"bas_rhin","region_id":"1","neighbours":["67","57","68","88"]},"68":{"id":"68","name":"Haut-Rhin","channel":"haut_rhin","region_id":"1","neighbours":["68","67","88","90"]},"69":{"id":"69","name":"Rhône","channel":"rhone","region_id":"22","neighbours":["69","1","38","42","71"]},"70":{"id":"70","name":"Haute-Saône","channel":"haute_saone","region_id":"10","neighbours":["70","21","25","52","88","90"]},"71":{"id":"71","name":"Saône-et-Loire","channel":"saone_et_loire","region_id":"5","neighbours":["71","1","3","21","39","42","58","69"]},"72":{"id":"72","name":"Sarthe","channel":"sarthe","region_id":"18","neighbours":["72","28","37","41","49","53","61"]},"73":{"id":"73","name":"Savoie","channel":"savoie","region_id":"22","neighbours":["73","1","5","38","74"]},"74":{"id":"74","name":"Haute-Savoie","channel":"haute_savoie","region_id":"22","neighbours":["74","1","73"]},"75":{"id":"75","name":"Paris","channel":"paris","region_id":"12","neighbours":["75","92","93","94"]},"76":{"id":"76","name":"Seine-Maritime","channel":"seine_maritime","region_id":"11","neighbours":["76","14","27","60","80"]},"77":{"id":"77","name":"Seine-et-Marne","channel":"seine_et_marne","region_id":"12","neighbours":["77","2","10","45","51","60","89","91","93","94","95"]},"78":{"id":"78","name":"Yvelines","channel":"yvelines","region_id":"12","neighbours":["78","27","28","91","92","95"]},"79":{"id":"79","name":"Deux-Sèvres","channel":"deux_sevres","region_id":"20","neighbours":["79","16","17","49","85","86"]},"80":{"id":"80","name":"Somme","channel":"somme","region_id":"19","neighbours":["80","2","60","62","76"]},"81":{"id":"81","name":"Tarn","channel":"tarn","region_id":"16","neighbours":["81","11","12","31","34","82"]},"82":{"id":"82","name":"Tarn-et-Garonne","channel":"tarn_et_garonne","region_id":"16","neighbours":["82","12","31","32","46","47","81"]},"83":{"id":"83","name":"Var","channel":"var","region_id":"21","neighbours":["83","4","6","13","84"]},"84":{"id":"84","name":"Vaucluse","channel":"vaucluse","region_id":"21","neighbours":["84","4","7","13","26","30","83"]},"85":{"id":"85","name":"Vendée","channel":"vendee","region_id":"18","neighbours":["85","17","44","49","79"]},"86":{"id":"86","name":"Vienne","channel":"vienne","region_id":"20","neighbours":["86","16","37","36","49","79","87"]},"87":{"id":"87","name":"Haute-Vienne","channel":"haute_vienne","region_id":"14","neighbours":["87","16","19","23","24","36","86"]},"88":{"id":"88","name":"Vosges","channel":"vosges","region_id":"15","neighbours":["88","52","54","55","67","68","70"]},"89":{"id":"89","name":"Yonne","channel":"yonne","region_id":"5","neighbours":["89","10","21","45","58","77"]},"90":{"id":"90","name":"Territoire de Belfort","channel":"territoire_de_belfort","region_id":"10","neighbours":["90","25","68","70"]},"91":{"id":"91","name":"Essonne","channel":"essonne","region_id":"12","neighbours":["91","28","45","77","78","92","94"]},"92":{"id":"92","name":"Hauts-de-Seine","channel":"hauts_de_seine","region_id":"12","neighbours":["92","75","78","91","95","94"]},"93":{"id":"93","name":"Seine-Saint-Denis","channel":"seine_saint_denis","region_id":"12","neighbours":["93","75","77","92","94","95"]},"94":{"id":"94","name":"Val-de-Marne","channel":"val_de_marne","region_id":"12","neighbours":["94","75","77","91","92","93"]},"95":{"id":"95","name":"Val-d'Oise","channel":"val_d_oise","region_id":"12","neighbours":["95","27","60","77","78","92","93"]}},"urlSlugs":{"ain":"1","aisne":"2","allier":"3","alpes_maritimes":"6","alpes_de_haute_provence":"4","ardennes":"8","ardeche":"7","ariege":"9","aube":"10","aude":"11","aveyron":"12","bas_rhin":"67","bouches_du_rhone":"13","calvados":"14","cantal":"15","charente":"16","charente_maritime":"17","cher":"18","correze":"19","creuse":"23","cote_d_or":"21","cotes_d_armor":"22","deux_sevres":"79","dordogne":"24","doubs":"25","drome":"26","essonne":"91","eure":"27","eure_et_loir":"28","finistere":"29","gard":"30","gers":"32","gironde":"33","haut_rhin":"68","haute_garonne":"31","haute_loire":"43","haute_marne":"52","haute_savoie":"74","haute_saone":"70","haute_vienne":"87","hautes_alpes":"5","hautes_pyrenees":"65","hauts_de_seine":"92","herault":"34","ille_et_vilaine":"35","indre":"36","indre_et_loire":"37","isere":"38","jura":"39","landes":"40","loir_et_cher":"41","loire":"42","loire_atlantique":"44","loiret":"45","lot":"46","lot_et_garonne":"47","lozere":"48","maine_et_loire":"49","manche":"50","marne":"51","mayenne":"53","meurthe_et_moselle":"54","meuse":"55","morbihan":"56","moselle":"57","nievre":"58","nord":"59","oise":"60","orne":"61","paris":"75","pas_de_calais":"62","puy_de_dome":"63","pyrenees_atlantiques":"64","pyrenees_orientales":"66","rhone":"69","sarthe":"72","savoie":"73","saone_et_loire":"71","seine_maritime":"76","seine_saint_denis":"93","seine_et_marne":"77","somme":"80","tarn":"81","tarn_et_garonne":"82","territoire_de_belfort":"90","val_d_oise":"95","val_de_marne":"94","var":"83","vaucluse":"84","vendee":"85","vienne":"86","vosges":"88","yonne":"89","yvelines":"78"}},"categories":{"isFetching":false,"data":[{"id":"71","label":"EMPLOI","name":"Emploi","channel":"_emploi_","subcategories":[{"id":"33","label":"Offres d'emploi","name":"Offres d'emploi","channel":"offres_d_emploi","rights":{"private":{"buy":true},"pro":{"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un emploi."},"sell":{"label":"Offre","description":"Vous proposez un poste à pourvoir."}}}]},{"id":"1","label":"VÉHICULES","name":"Véhicules","channel":"_vehicules_","subcategories":[{"id":"2","label":"Voitures","name":"Voitures","channel":"voitures","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une voiture."},"sell":{"label":"Offre","description":"Vous vendez une voiture."}}},{"id":"3","label":"Motos","name":"Motos","channel":"motos","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une moto."},"sell":{"label":"Offre","description":"Vous vendez une moto."}}},{"id":"4","label":"Caravaning","name":"Caravaning","channel":"caravaning","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une caravane."},"sell":{"label":"Offre","description":"Vous vendez une caravane."}}},{"id":"5","label":"Utilitaires","name":"Utilitaires","channel":"utilitaires","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un utilitaire."},"sell":{"label":"Offre","description":"Vous vendez un utilitaire."}}},{"id":"7","label":"Nautisme","name":"Nautisme","channel":"nautisme","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien nautique."},"sell":{"label":"Offre","description":"Vous vendez un bien nautique."}}},{"id":"6","label":"Équipement auto","name":"Équipement auto","channel":"equipement_auto","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement auto."},"sell":{"label":"Offre","description":"Vous vendez un équipement auto."}}},{"id":"44","label":"Équipement moto","name":"Équipement moto","channel":"equipement_moto","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement moto."},"sell":{"label":"Offre","description":"Vous vendez un équipement moto."}}},{"id":"50","label":"Équipement caravaning","name":"Équipement caravaning","channel":"equipement_caravaning","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement caravaning."},"sell":{"label":"Offre","description":"Vous vendez un équipement caravaning."}}},{"id":"51","label":"Équipement nautisme","name":"Équipement nautisme","channel":"equipement_nautisme","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement nautique."},"sell":{"label":"Offre","description":"Vous vendez un équipement nautique."}}}]},{"id":"8","label":"IMMOBILIER","name":"Immobilier","channel":"_immobilier_","subcategories":[{"id":"9","label":"Ventes immobilières","name":"Ventes immobilières","channel":"ventes_immobilieres","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien immobilier."},"sell":{"label":"Offre","description":"Vous vendez un bien immobilier."}}},{"id":"10","label":"Locations","name":"Locations","channel":"locations","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en location."},"rent":{"label":"Demande","description":"Vous recherchez un bien à louer."}}},{"id":"11","label":"Colocations","name":"Colocations","channel":"colocations","rights":{"private":{"let":true,"rent":true},"pro":{}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en colocation."},"rent":{"label":"Demande","description":"Vous recherchez une colocation."}}},{"id":"13","label":"Bureaux & Commerces","name":"Bureaux & Commerces","channel":"bureaux_commerces","rights":{"private":{"buy":true,"let":true,"sell":true},"pro":{"buy":true,"let":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien à vendre ou à louer."},"let":{"label":"Location","description":"Vous proposez un bien à louer."},"sell":{"label":"Vente","description":"Vous proposez un bien à vendre."}}}]},{"id":"66","label":"VACANCES","name":"Vacances","channel":"_vacances_","subcategories":[{"id":"12","label":"Locations & Gîtes","name":"Locations & Gîtes","channel":"locations_gites","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez une location de vacances ou un gîte."},"rent":{"label":"Demande","description":"Vous recherchez une location de vacances ou un gîte."}}},{"id":"67","label":"Chambres d'hôtes","name":"Chambres d'hôtes","channel":"chambres_d_hotes","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez une chambre d'hôtes."},"rent":{"label":"Demande","description":"Vous recherchez une chambre d'hôtes."}}},{"id":"68","label":"Campings","name":"Campings","channel":"campings","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en location."},"rent":{"label":"Demande","description":"Vous recherchez un bien à louer."}}},{"id":"69","label":"Hôtels","name":"Hôtels","channel":"hotels","rights":{"private":{},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez des chambres d'hôtel."},"rent":{"label":"Demande","description":"Vous recherchez une chambre d'hôtel."}}},{"id":"70","label":"Hébergements insolites","name":"Hébergements insolites","channel":"hebergements_insolites","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un hébergement insolite."},"rent":{"label":"Demande","description":"Vous recherchez un hébergement insolite."}}}]},{"id":"14","label":"MULTIMÉDIA","name":"Multimédia","channel":"_multimedia_","subcategories":[{"id":"15","label":"Informatique","name":"Informatique","channel":"informatique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien informatique."},"sell":{"label":"Offre","description":"Vous vendez un bien informatique."}}},{"id":"43","label":"Consoles & Jeux vidéo","name":"Consoles & Jeux vidéo","channel":"consoles_jeux_video","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une console ou un jeu vidéo."},"sell":{"label":"Offre","description":"Vous vendez une console ou un jeu vidéo."}}},{"id":"16","label":"Image & Son","name":"Image & Son","channel":"image_son","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"17","label":"Téléphonie","name":"Téléphonie","channel":"telephonie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}}]},{"id":"18","label":"MAISON","name":"Maison","channel":"_maison_","subcategories":[{"id":"19","label":"Ameublement","name":"Ameublement","channel":"ameublement","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un meuble."},"sell":{"label":"Offre","description":"Vous proposez un meuble."}}},{"id":"20","label":"Électroménager","name":"Électroménager","channel":"electromenager","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez de l'électroménager."},"sell":{"label":"Offre","description":"Vous vendez de l'électroménager."}}},{"id":"45","label":"Arts de la table","name":"Arts de la table","channel":"arts_de_la_table","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un objet d'art de la table."},"sell":{"label":"Offre","description":"Vous vendez un objet d'art de la table."}}},{"id":"39","label":"Décoration","name":"Décoration","channel":"decoration","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un objet de décoration."},"sell":{"label":"Offre","description":"Vous proposez un objet de décoration."}}},{"id":"46","label":"Linge de maison","name":"Linge de maison","channel":"linge_de_maison","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du linge de maison."},"sell":{"label":"Offre","description":"Vous vendez du linge de maison."}}},{"id":"21","label":"Bricolage","name":"Bricolage","channel":"bricolage","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"52","label":"Jardinage","name":"Jardinage","channel":"jardinage","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}}]},{"id":"72","label":"MODE","name":"Mode","channel":"_mode_","subcategories":[{"id":"22","label":"Vêtements","name":"Vêtements","channel":"vetements","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vêtement."},"sell":{"label":"Offre","description":"Vous vendez un vêtement."}}},{"id":"53","label":"Chaussures","name":"Chaussures","channel":"chaussures","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des chaussures."},"sell":{"label":"Offre","description":"Vous vendez des chaussures."}}},{"id":"47","label":"Accessoires & Bagagerie","name":"Accessoires & Bagagerie","channel":"accessoires_bagagerie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un accessoire ou un bagage."},"sell":{"label":"Offre","description":"Vous proposez un accessoire ou un bagage."}}},{"id":"42","label":"Montres & Bijoux","name":"Montres & Bijoux","channel":"montres_bijoux","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"23","label":"Équipement bébé","name":"Équipement bébé","channel":"equipement_bebe","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des objets pour bébé."},"sell":{"label":"Offre","description":"Vous vendez des objets pour bébé."}}},{"id":"54","label":"Vêtements bébé","name":"Vêtements bébé","channel":"vetements_bebe","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vêtement pour bébé."},"sell":{"label":"Offre","description":"Vous vendez un vêtement pour bébé."}}}]},{"id":"24","label":"LOISIRS","name":"Loisirs","channel":"_loisirs_","subcategories":[{"id":"25","label":"DVD - Films","name":"DVD - Films","channel":"dvd_films","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"26","label":"CD - Musique","name":"CD - Musique","channel":"cd_musique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"27","label":"Livres","name":"Livres","channel":"livres","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un livre."},"sell":{"label":"Offre","description":"Vous vendez un livre."}}},{"id":"28","label":"Animaux","name":"Animaux","channel":"animaux","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous cherchez à acheter un animal."},"sell":{"label":"Offre","description":"Vous vendez un animal."}}},{"id":"55","label":"Vélos","name":"Vélos","channel":"velos","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vélo."},"sell":{"label":"Offre","description":"Vous vendez un vélo."}}},{"id":"29","label":"Sports & Hobbies","name":"Sports & Hobbies","channel":"sports_hobbies","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"30","label":"Instruments de musique","name":"Instruments de musique","channel":"instruments_de_musique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un instrument."},"sell":{"label":"Offre","description":"Vous vendez un instrument."}}},{"id":"40","label":"Collection","name":"Collection","channel":"collection","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"41","label":"Jeux & Jouets","name":"Jeux & Jouets","channel":"jeux_jouets","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"48","label":"Vins & Gastronomie","name":"Vins & Gastronomie","channel":"vins_gastronomie","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}}]},{"id":"56","label":"MATÉRIEL PROFESSIONNEL","name":"Matériel professionnel","channel":"_materiel_professionnel_","subcategories":[{"id":"57","label":"Matériel agricole","name":"Matériel agricole","channel":"materiel_agricole","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel agricole."},"sell":{"label":"Offre","description":"Vous vendez du matériel agricole."}}},{"id":"58","label":"Transport - Manutention","name":"Transport - Manutention","channel":"transport_manutention","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de transport ou de manutention."},"sell":{"label":"Offre","description":"Vous vendez du matériel de transport ou de manutention."}}},{"id":"59","label":"BTP - Chantier gros-oeuvre","name":"BTP - Chantier gros-oeuvre","channel":"btp_chantier_gros_oeuvre","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel BTP."},"sell":{"label":"Offre","description":"Vous vendez du matériel BTP."}}},{"id":"60","label":"Outillage - Matériaux 2nd-oeuvre","name":"Outillage - Matériaux 2nd-oeuvre","channel":"outillage_materiaux_2nd_oeuvre","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez de l'outillage ou du matériel 2nd-oeuvre."},"sell":{"label":"Offre","description":"Vous vendez de l'outillage ou du matériel 2nd-oeuvre."}}},{"id":"32","label":"Équipements industriels","name":"Équipements industriels","channel":"equipements_industriels","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des équipements industriels."},"sell":{"label":"Offre","description":"Vous vendez des équipements industriels."}}},{"id":"61","label":"Restauration - Hôtellerie","name":"Restauration - Hôtellerie","channel":"restauration_hotellerie","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de restauration - hôtellerie."},"sell":{"label":"Offre","description":"Vous vendez du matériel de restauration - hôtellerie."}}},{"id":"62","label":"Fournitures de bureau","name":"Fournitures de bureau","channel":"fournitures_de_bureau","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des fournitures de bureau."},"sell":{"label":"Offre","description":"Vous vendez des fournitures de bureau."}}},{"id":"63","label":"Commerces & Marchés","name":"Commerces & Marchés","channel":"commerces_marches","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de commerces & marchés."},"sell":{"label":"Offre","description":"Vous vendez du matériel de commerces & marchés."}}},{"id":"64","label":"Matériel médical","name":"Matériel médical","channel":"materiel_medical","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel médical."},"sell":{"label":"Offre","description":"Vous vendez du matériel médical."}}}]},{"id":"31","label":"SERVICES","name":"Services","channel":"_services_","subcategories":[{"id":"34","label":"Prestations de services","name":"Prestations de services","channel":"prestations_de_services","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une aide."},"sell":{"label":"Offre","description":"Vous proposez vos services."}}},{"id":"35","label":"Billetterie","name":"Billetterie","channel":"billetterie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un billet."},"sell":{"label":"Offre","description":"Vous proposez un billet."}}},{"id":"49","label":"Évènements","name":"Évènements","channel":"evenements","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un évènement."},"sell":{"label":"Offre","description":"Vous proposez un évènement."}}},{"id":"36","label":"Cours particuliers","name":"Cours particuliers","channel":"cours_particuliers","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un professeur de cours particuliers."},"sell":{"label":"Offre","description":"Vous proposez de donner des cours particuliers."}}},{"id":"65","label":"Covoiturage","name":"Covoiturage","channel":"covoiturage","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un covoiturage."},"sell":{"label":"Offre","description":"Vous proposez un covoiturage."}}}]},{"id":"37","label":"DIVERS","name":"Divers","channel":"_divers_","subcategories":[{"id":"38","label":"Autres","name":"Autres","channel":"autres","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}}]}],"byId":{"1":{"id":"1","label":"VÉHICULES","name":"Véhicules","channel":"_vehicules_","subcategories":[{"id":"2","label":"Voitures","name":"Voitures","channel":"voitures","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une voiture."},"sell":{"label":"Offre","description":"Vous vendez une voiture."}}},{"id":"3","label":"Motos","name":"Motos","channel":"motos","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une moto."},"sell":{"label":"Offre","description":"Vous vendez une moto."}}},{"id":"4","label":"Caravaning","name":"Caravaning","channel":"caravaning","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une caravane."},"sell":{"label":"Offre","description":"Vous vendez une caravane."}}},{"id":"5","label":"Utilitaires","name":"Utilitaires","channel":"utilitaires","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un utilitaire."},"sell":{"label":"Offre","description":"Vous vendez un utilitaire."}}},{"id":"7","label":"Nautisme","name":"Nautisme","channel":"nautisme","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien nautique."},"sell":{"label":"Offre","description":"Vous vendez un bien nautique."}}},{"id":"6","label":"Équipement auto","name":"Équipement auto","channel":"equipement_auto","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement auto."},"sell":{"label":"Offre","description":"Vous vendez un équipement auto."}}},{"id":"44","label":"Équipement moto","name":"Équipement moto","channel":"equipement_moto","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement moto."},"sell":{"label":"Offre","description":"Vous vendez un équipement moto."}}},{"id":"50","label":"Équipement caravaning","name":"Équipement caravaning","channel":"equipement_caravaning","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement caravaning."},"sell":{"label":"Offre","description":"Vous vendez un équipement caravaning."}}},{"id":"51","label":"Équipement nautisme","name":"Équipement nautisme","channel":"equipement_nautisme","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement nautique."},"sell":{"label":"Offre","description":"Vous vendez un équipement nautique."}}}]},"2":{"id":"2","label":"Voitures","name":"Voitures","channel":"voitures","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une voiture."},"sell":{"label":"Offre","description":"Vous vendez une voiture."}}},"3":{"id":"3","label":"Motos","name":"Motos","channel":"motos","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une moto."},"sell":{"label":"Offre","description":"Vous vendez une moto."}}},"4":{"id":"4","label":"Caravaning","name":"Caravaning","channel":"caravaning","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une caravane."},"sell":{"label":"Offre","description":"Vous vendez une caravane."}}},"5":{"id":"5","label":"Utilitaires","name":"Utilitaires","channel":"utilitaires","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un utilitaire."},"sell":{"label":"Offre","description":"Vous vendez un utilitaire."}}},"6":{"id":"6","label":"Équipement auto","name":"Équipement auto","channel":"equipement_auto","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement auto."},"sell":{"label":"Offre","description":"Vous vendez un équipement auto."}}},"7":{"id":"7","label":"Nautisme","name":"Nautisme","channel":"nautisme","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien nautique."},"sell":{"label":"Offre","description":"Vous vendez un bien nautique."}}},"8":{"id":"8","label":"IMMOBILIER","name":"Immobilier","channel":"_immobilier_","subcategories":[{"id":"9","label":"Ventes immobilières","name":"Ventes immobilières","channel":"ventes_immobilieres","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien immobilier."},"sell":{"label":"Offre","description":"Vous vendez un bien immobilier."}}},{"id":"10","label":"Locations","name":"Locations","channel":"locations","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en location."},"rent":{"label":"Demande","description":"Vous recherchez un bien à louer."}}},{"id":"11","label":"Colocations","name":"Colocations","channel":"colocations","rights":{"private":{"let":true,"rent":true},"pro":{}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en colocation."},"rent":{"label":"Demande","description":"Vous recherchez une colocation."}}},{"id":"13","label":"Bureaux & Commerces","name":"Bureaux & Commerces","channel":"bureaux_commerces","rights":{"private":{"buy":true,"let":true,"sell":true},"pro":{"buy":true,"let":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien à vendre ou à louer."},"let":{"label":"Location","description":"Vous proposez un bien à louer."},"sell":{"label":"Vente","description":"Vous proposez un bien à vendre."}}}]},"9":{"id":"9","label":"Ventes immobilières","name":"Ventes immobilières","channel":"ventes_immobilieres","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien immobilier."},"sell":{"label":"Offre","description":"Vous vendez un bien immobilier."}}},"10":{"id":"10","label":"Locations","name":"Locations","channel":"locations","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en location."},"rent":{"label":"Demande","description":"Vous recherchez un bien à louer."}}},"11":{"id":"11","label":"Colocations","name":"Colocations","channel":"colocations","rights":{"private":{"let":true,"rent":true},"pro":{}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en colocation."},"rent":{"label":"Demande","description":"Vous recherchez une colocation."}}},"12":{"id":"12","label":"Locations & Gîtes","name":"Locations & Gîtes","channel":"locations_gites","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez une location de vacances ou un gîte."},"rent":{"label":"Demande","description":"Vous recherchez une location de vacances ou un gîte."}}},"13":{"id":"13","label":"Bureaux & Commerces","name":"Bureaux & Commerces","channel":"bureaux_commerces","rights":{"private":{"buy":true,"let":true,"sell":true},"pro":{"buy":true,"let":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien à vendre ou à louer."},"let":{"label":"Location","description":"Vous proposez un bien à louer."},"sell":{"label":"Vente","description":"Vous proposez un bien à vendre."}}},"14":{"id":"14","label":"MULTIMÉDIA","name":"Multimédia","channel":"_multimedia_","subcategories":[{"id":"15","label":"Informatique","name":"Informatique","channel":"informatique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien informatique."},"sell":{"label":"Offre","description":"Vous vendez un bien informatique."}}},{"id":"43","label":"Consoles & Jeux vidéo","name":"Consoles & Jeux vidéo","channel":"consoles_jeux_video","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une console ou un jeu vidéo."},"sell":{"label":"Offre","description":"Vous vendez une console ou un jeu vidéo."}}},{"id":"16","label":"Image & Son","name":"Image & Son","channel":"image_son","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"17","label":"Téléphonie","name":"Téléphonie","channel":"telephonie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}}]},"15":{"id":"15","label":"Informatique","name":"Informatique","channel":"informatique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien informatique."},"sell":{"label":"Offre","description":"Vous vendez un bien informatique."}}},"16":{"id":"16","label":"Image & Son","name":"Image & Son","channel":"image_son","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},"17":{"id":"17","label":"Téléphonie","name":"Téléphonie","channel":"telephonie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},"18":{"id":"18","label":"MAISON","name":"Maison","channel":"_maison_","subcategories":[{"id":"19","label":"Ameublement","name":"Ameublement","channel":"ameublement","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un meuble."},"sell":{"label":"Offre","description":"Vous proposez un meuble."}}},{"id":"20","label":"Électroménager","name":"Électroménager","channel":"electromenager","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez de l'électroménager."},"sell":{"label":"Offre","description":"Vous vendez de l'électroménager."}}},{"id":"45","label":"Arts de la table","name":"Arts de la table","channel":"arts_de_la_table","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un objet d'art de la table."},"sell":{"label":"Offre","description":"Vous vendez un objet d'art de la table."}}},{"id":"39","label":"Décoration","name":"Décoration","channel":"decoration","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un objet de décoration."},"sell":{"label":"Offre","description":"Vous proposez un objet de décoration."}}},{"id":"46","label":"Linge de maison","name":"Linge de maison","channel":"linge_de_maison","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du linge de maison."},"sell":{"label":"Offre","description":"Vous vendez du linge de maison."}}},{"id":"21","label":"Bricolage","name":"Bricolage","channel":"bricolage","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"52","label":"Jardinage","name":"Jardinage","channel":"jardinage","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}}]},"19":{"id":"19","label":"Ameublement","name":"Ameublement","channel":"ameublement","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un meuble."},"sell":{"label":"Offre","description":"Vous proposez un meuble."}}},"20":{"id":"20","label":"Électroménager","name":"Électroménager","channel":"electromenager","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez de l'électroménager."},"sell":{"label":"Offre","description":"Vous vendez de l'électroménager."}}},"21":{"id":"21","label":"Bricolage","name":"Bricolage","channel":"bricolage","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},"22":{"id":"22","label":"Vêtements","name":"Vêtements","channel":"vetements","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vêtement."},"sell":{"label":"Offre","description":"Vous vendez un vêtement."}}},"23":{"id":"23","label":"Équipement bébé","name":"Équipement bébé","channel":"equipement_bebe","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des objets pour bébé."},"sell":{"label":"Offre","description":"Vous vendez des objets pour bébé."}}},"24":{"id":"24","label":"LOISIRS","name":"Loisirs","channel":"_loisirs_","subcategories":[{"id":"25","label":"DVD - Films","name":"DVD - Films","channel":"dvd_films","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"26","label":"CD - Musique","name":"CD - Musique","channel":"cd_musique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"27","label":"Livres","name":"Livres","channel":"livres","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un livre."},"sell":{"label":"Offre","description":"Vous vendez un livre."}}},{"id":"28","label":"Animaux","name":"Animaux","channel":"animaux","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous cherchez à acheter un animal."},"sell":{"label":"Offre","description":"Vous vendez un animal."}}},{"id":"55","label":"Vélos","name":"Vélos","channel":"velos","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vélo."},"sell":{"label":"Offre","description":"Vous vendez un vélo."}}},{"id":"29","label":"Sports & Hobbies","name":"Sports & Hobbies","channel":"sports_hobbies","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"30","label":"Instruments de musique","name":"Instruments de musique","channel":"instruments_de_musique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un instrument."},"sell":{"label":"Offre","description":"Vous vendez un instrument."}}},{"id":"40","label":"Collection","name":"Collection","channel":"collection","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"41","label":"Jeux & Jouets","name":"Jeux & Jouets","channel":"jeux_jouets","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},{"id":"48","label":"Vins & Gastronomie","name":"Vins & Gastronomie","channel":"vins_gastronomie","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}}]},"25":{"id":"25","label":"DVD - Films","name":"DVD - Films","channel":"dvd_films","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},"26":{"id":"26","label":"CD - Musique","name":"CD - Musique","channel":"cd_musique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},"27":{"id":"27","label":"Livres","name":"Livres","channel":"livres","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un livre."},"sell":{"label":"Offre","description":"Vous vendez un livre."}}},"28":{"id":"28","label":"Animaux","name":"Animaux","channel":"animaux","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous cherchez à acheter un animal."},"sell":{"label":"Offre","description":"Vous vendez un animal."}}},"29":{"id":"29","label":"Sports & Hobbies","name":"Sports & Hobbies","channel":"sports_hobbies","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},"30":{"id":"30","label":"Instruments de musique","name":"Instruments de musique","channel":"instruments_de_musique","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un instrument."},"sell":{"label":"Offre","description":"Vous vendez un instrument."}}},"31":{"id":"31","label":"SERVICES","name":"Services","channel":"_services_","subcategories":[{"id":"34","label":"Prestations de services","name":"Prestations de services","channel":"prestations_de_services","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une aide."},"sell":{"label":"Offre","description":"Vous proposez vos services."}}},{"id":"35","label":"Billetterie","name":"Billetterie","channel":"billetterie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un billet."},"sell":{"label":"Offre","description":"Vous proposez un billet."}}},{"id":"49","label":"Évènements","name":"Évènements","channel":"evenements","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un évènement."},"sell":{"label":"Offre","description":"Vous proposez un évènement."}}},{"id":"36","label":"Cours particuliers","name":"Cours particuliers","channel":"cours_particuliers","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un professeur de cours particuliers."},"sell":{"label":"Offre","description":"Vous proposez de donner des cours particuliers."}}},{"id":"65","label":"Covoiturage","name":"Covoiturage","channel":"covoiturage","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un covoiturage."},"sell":{"label":"Offre","description":"Vous proposez un covoiturage."}}}]},"32":{"id":"32","label":"Équipements industriels","name":"Équipements industriels","channel":"equipements_industriels","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des équipements industriels."},"sell":{"label":"Offre","description":"Vous vendez des équipements industriels."}}},"33":{"id":"33","label":"Offres d'emploi","name":"Offres d'emploi","channel":"offres_d_emploi","rights":{"private":{"buy":true},"pro":{"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un emploi."},"sell":{"label":"Offre","description":"Vous proposez un poste à pourvoir."}}},"34":{"id":"34","label":"Prestations de services","name":"Prestations de services","channel":"prestations_de_services","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une aide."},"sell":{"label":"Offre","description":"Vous proposez vos services."}}},"35":{"id":"35","label":"Billetterie","name":"Billetterie","channel":"billetterie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un billet."},"sell":{"label":"Offre","description":"Vous proposez un billet."}}},"36":{"id":"36","label":"Cours particuliers","name":"Cours particuliers","channel":"cours_particuliers","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un professeur de cours particuliers."},"sell":{"label":"Offre","description":"Vous proposez de donner des cours particuliers."}}},"37":{"id":"37","label":"DIVERS","name":"Divers","channel":"_divers_","subcategories":[{"id":"38","label":"Autres","name":"Autres","channel":"autres","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}}]},"38":{"id":"38","label":"Autres","name":"Autres","channel":"autres","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},"39":{"id":"39","label":"Décoration","name":"Décoration","channel":"decoration","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un objet de décoration."},"sell":{"label":"Offre","description":"Vous proposez un objet de décoration."}}},"40":{"id":"40","label":"Collection","name":"Collection","channel":"collection","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},"41":{"id":"41","label":"Jeux & Jouets","name":"Jeux & Jouets","channel":"jeux_jouets","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},"42":{"id":"42","label":"Montres & Bijoux","name":"Montres & Bijoux","channel":"montres_bijoux","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},"43":{"id":"43","label":"Consoles & Jeux vidéo","name":"Consoles & Jeux vidéo","channel":"consoles_jeux_video","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez une console ou un jeu vidéo."},"sell":{"label":"Offre","description":"Vous vendez une console ou un jeu vidéo."}}},"44":{"id":"44","label":"Équipement moto","name":"Équipement moto","channel":"equipement_moto","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement moto."},"sell":{"label":"Offre","description":"Vous vendez un équipement moto."}}},"45":{"id":"45","label":"Arts de la table","name":"Arts de la table","channel":"arts_de_la_table","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un objet d'art de la table."},"sell":{"label":"Offre","description":"Vous vendez un objet d'art de la table."}}},"46":{"id":"46","label":"Linge de maison","name":"Linge de maison","channel":"linge_de_maison","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du linge de maison."},"sell":{"label":"Offre","description":"Vous vendez du linge de maison."}}},"47":{"id":"47","label":"Accessoires & Bagagerie","name":"Accessoires & Bagagerie","channel":"accessoires_bagagerie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un accessoire ou un bagage."},"sell":{"label":"Offre","description":"Vous proposez un accessoire ou un bagage."}}},"48":{"id":"48","label":"Vins & Gastronomie","name":"Vins & Gastronomie","channel":"vins_gastronomie","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous vendez un bien."}}},"49":{"id":"49","label":"Évènements","name":"Évènements","channel":"evenements","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un évènement."},"sell":{"label":"Offre","description":"Vous proposez un évènement."}}},"50":{"id":"50","label":"Équipement caravaning","name":"Équipement caravaning","channel":"equipement_caravaning","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement caravaning."},"sell":{"label":"Offre","description":"Vous vendez un équipement caravaning."}}},"51":{"id":"51","label":"Équipement nautisme","name":"Équipement nautisme","channel":"equipement_nautisme","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un équipement nautique."},"sell":{"label":"Offre","description":"Vous vendez un équipement nautique."}}},"52":{"id":"52","label":"Jardinage","name":"Jardinage","channel":"jardinage","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},"53":{"id":"53","label":"Chaussures","name":"Chaussures","channel":"chaussures","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des chaussures."},"sell":{"label":"Offre","description":"Vous vendez des chaussures."}}},"54":{"id":"54","label":"Vêtements bébé","name":"Vêtements bébé","channel":"vetements_bebe","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vêtement pour bébé."},"sell":{"label":"Offre","description":"Vous vendez un vêtement pour bébé."}}},"55":{"id":"55","label":"Vélos","name":"Vélos","channel":"velos","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vélo."},"sell":{"label":"Offre","description":"Vous vendez un vélo."}}},"56":{"id":"56","label":"MATÉRIEL PROFESSIONNEL","name":"Matériel professionnel","channel":"_materiel_professionnel_","subcategories":[{"id":"57","label":"Matériel agricole","name":"Matériel agricole","channel":"materiel_agricole","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel agricole."},"sell":{"label":"Offre","description":"Vous vendez du matériel agricole."}}},{"id":"58","label":"Transport - Manutention","name":"Transport - Manutention","channel":"transport_manutention","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de transport ou de manutention."},"sell":{"label":"Offre","description":"Vous vendez du matériel de transport ou de manutention."}}},{"id":"59","label":"BTP - Chantier gros-oeuvre","name":"BTP - Chantier gros-oeuvre","channel":"btp_chantier_gros_oeuvre","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel BTP."},"sell":{"label":"Offre","description":"Vous vendez du matériel BTP."}}},{"id":"60","label":"Outillage - Matériaux 2nd-oeuvre","name":"Outillage - Matériaux 2nd-oeuvre","channel":"outillage_materiaux_2nd_oeuvre","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez de l'outillage ou du matériel 2nd-oeuvre."},"sell":{"label":"Offre","description":"Vous vendez de l'outillage ou du matériel 2nd-oeuvre."}}},{"id":"32","label":"Équipements industriels","name":"Équipements industriels","channel":"equipements_industriels","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des équipements industriels."},"sell":{"label":"Offre","description":"Vous vendez des équipements industriels."}}},{"id":"61","label":"Restauration - Hôtellerie","name":"Restauration - Hôtellerie","channel":"restauration_hotellerie","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de restauration - hôtellerie."},"sell":{"label":"Offre","description":"Vous vendez du matériel de restauration - hôtellerie."}}},{"id":"62","label":"Fournitures de bureau","name":"Fournitures de bureau","channel":"fournitures_de_bureau","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des fournitures de bureau."},"sell":{"label":"Offre","description":"Vous vendez des fournitures de bureau."}}},{"id":"63","label":"Commerces & Marchés","name":"Commerces & Marchés","channel":"commerces_marches","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de commerces & marchés."},"sell":{"label":"Offre","description":"Vous vendez du matériel de commerces & marchés."}}},{"id":"64","label":"Matériel médical","name":"Matériel médical","channel":"materiel_medical","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel médical."},"sell":{"label":"Offre","description":"Vous vendez du matériel médical."}}}]},"57":{"id":"57","label":"Matériel agricole","name":"Matériel agricole","channel":"materiel_agricole","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel agricole."},"sell":{"label":"Offre","description":"Vous vendez du matériel agricole."}}},"58":{"id":"58","label":"Transport - Manutention","name":"Transport - Manutention","channel":"transport_manutention","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de transport ou de manutention."},"sell":{"label":"Offre","description":"Vous vendez du matériel de transport ou de manutention."}}},"59":{"id":"59","label":"BTP - Chantier gros-oeuvre","name":"BTP - Chantier gros-oeuvre","channel":"btp_chantier_gros_oeuvre","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel BTP."},"sell":{"label":"Offre","description":"Vous vendez du matériel BTP."}}},"60":{"id":"60","label":"Outillage - Matériaux 2nd-oeuvre","name":"Outillage - Matériaux 2nd-oeuvre","channel":"outillage_materiaux_2nd_oeuvre","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez de l'outillage ou du matériel 2nd-oeuvre."},"sell":{"label":"Offre","description":"Vous vendez de l'outillage ou du matériel 2nd-oeuvre."}}},"61":{"id":"61","label":"Restauration - Hôtellerie","name":"Restauration - Hôtellerie","channel":"restauration_hotellerie","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de restauration - hôtellerie."},"sell":{"label":"Offre","description":"Vous vendez du matériel de restauration - hôtellerie."}}},"62":{"id":"62","label":"Fournitures de bureau","name":"Fournitures de bureau","channel":"fournitures_de_bureau","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des fournitures de bureau."},"sell":{"label":"Offre","description":"Vous vendez des fournitures de bureau."}}},"63":{"id":"63","label":"Commerces & Marchés","name":"Commerces & Marchés","channel":"commerces_marches","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel de commerces & marchés."},"sell":{"label":"Offre","description":"Vous vendez du matériel de commerces & marchés."}}},"64":{"id":"64","label":"Matériel médical","name":"Matériel médical","channel":"materiel_medical","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez du matériel médical."},"sell":{"label":"Offre","description":"Vous vendez du matériel médical."}}},"65":{"id":"65","label":"Covoiturage","name":"Covoiturage","channel":"covoiturage","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un covoiturage."},"sell":{"label":"Offre","description":"Vous proposez un covoiturage."}}},"66":{"id":"66","label":"VACANCES","name":"Vacances","channel":"_vacances_","subcategories":[{"id":"12","label":"Locations & Gîtes","name":"Locations & Gîtes","channel":"locations_gites","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez une location de vacances ou un gîte."},"rent":{"label":"Demande","description":"Vous recherchez une location de vacances ou un gîte."}}},{"id":"67","label":"Chambres d'hôtes","name":"Chambres d'hôtes","channel":"chambres_d_hotes","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez une chambre d'hôtes."},"rent":{"label":"Demande","description":"Vous recherchez une chambre d'hôtes."}}},{"id":"68","label":"Campings","name":"Campings","channel":"campings","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en location."},"rent":{"label":"Demande","description":"Vous recherchez un bien à louer."}}},{"id":"69","label":"Hôtels","name":"Hôtels","channel":"hotels","rights":{"private":{},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez des chambres d'hôtel."},"rent":{"label":"Demande","description":"Vous recherchez une chambre d'hôtel."}}},{"id":"70","label":"Hébergements insolites","name":"Hébergements insolites","channel":"hebergements_insolites","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un hébergement insolite."},"rent":{"label":"Demande","description":"Vous recherchez un hébergement insolite."}}}]},"67":{"id":"67","label":"Chambres d'hôtes","name":"Chambres d'hôtes","channel":"chambres_d_hotes","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez une chambre d'hôtes."},"rent":{"label":"Demande","description":"Vous recherchez une chambre d'hôtes."}}},"68":{"id":"68","label":"Campings","name":"Campings","channel":"campings","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un bien en location."},"rent":{"label":"Demande","description":"Vous recherchez un bien à louer."}}},"69":{"id":"69","label":"Hôtels","name":"Hôtels","channel":"hotels","rights":{"private":{},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez des chambres d'hôtel."},"rent":{"label":"Demande","description":"Vous recherchez une chambre d'hôtel."}}},"70":{"id":"70","label":"Hébergements insolites","name":"Hébergements insolites","channel":"hebergements_insolites","rights":{"private":{"let":true,"rent":true},"pro":{"let":true,"rent":true}},"ad_types":{"let":{"label":"Offre","description":"Vous proposez un hébergement insolite."},"rent":{"label":"Demande","description":"Vous recherchez un hébergement insolite."}}},"71":{"id":"71","label":"EMPLOI","name":"Emploi","channel":"_emploi_","subcategories":[{"id":"33","label":"Offres d'emploi","name":"Offres d'emploi","channel":"offres_d_emploi","rights":{"private":{"buy":true},"pro":{"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un emploi."},"sell":{"label":"Offre","description":"Vous proposez un poste à pourvoir."}}}]},"72":{"id":"72","label":"MODE","name":"Mode","channel":"_mode_","subcategories":[{"id":"22","label":"Vêtements","name":"Vêtements","channel":"vetements","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vêtement."},"sell":{"label":"Offre","description":"Vous vendez un vêtement."}}},{"id":"53","label":"Chaussures","name":"Chaussures","channel":"chaussures","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des chaussures."},"sell":{"label":"Offre","description":"Vous vendez des chaussures."}}},{"id":"47","label":"Accessoires & Bagagerie","name":"Accessoires & Bagagerie","channel":"accessoires_bagagerie","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un accessoire ou un bagage."},"sell":{"label":"Offre","description":"Vous proposez un accessoire ou un bagage."}}},{"id":"42","label":"Montres & Bijoux","name":"Montres & Bijoux","channel":"montres_bijoux","rights":{"private":{"buy":true,"sell":true},"pro":{}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un bien."},"sell":{"label":"Offre","description":"Vous proposez un bien."}}},{"id":"23","label":"Équipement bébé","name":"Équipement bébé","channel":"equipement_bebe","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez des objets pour bébé."},"sell":{"label":"Offre","description":"Vous vendez des objets pour bébé."}}},{"id":"54","label":"Vêtements bébé","name":"Vêtements bébé","channel":"vetements_bebe","rights":{"private":{"buy":true,"sell":true},"pro":{"buy":true,"sell":true}},"ad_types":{"buy":{"label":"Demande","description":"Vous recherchez un vêtement pour bébé."},"sell":{"label":"Offre","description":"Vous vendez un vêtement pour bébé."}}}]}},"urlSlugs":{"_emploi_":"71","offres_d_emploi":"33","_vehicules_":"1","voitures":"2","motos":"3","caravaning":"4","utilitaires":"5","nautisme":"7","equipement_auto":"6","equipement_moto":"44","equipement_caravaning":"50","equipement_nautisme":"51","_immobilier_":"8","ventes_immobilieres":"9","locations":"10","colocations":"11","bureaux_commerces":"13","_vacances_":"66","locations_gites":"12","chambres_d_hotes":"67","campings":"68","hotels":"69","hebergements_insolites":"70","_multimedia_":"14","informatique":"15","consoles_jeux_video":"43","image_son":"16","telephonie":"17","_maison_":"18","ameublement":"19","electromenager":"20","arts_de_la_table":"45","decoration":"39","linge_de_maison":"46","bricolage":"21","jardinage":"52","_mode_":"72","vetements":"22","chaussures":"53","accessoires_bagagerie":"47","montres_bijoux":"42","equipement_bebe":"23","vetements_bebe":"54","_loisirs_":"24","dvd_films":"25","cd_musique":"26","livres":"27","animaux":"28","velos":"55","sports_hobbies":"29","instruments_de_musique":"30","collection":"40","jeux_jouets":"41","vins_gastronomie":"48","_materiel_professionnel_":"56","materiel_agricole":"57","transport_manutention":"58","btp_chantier_gros_oeuvre":"59","outillage_materiaux_2nd_oeuvre":"60","equipements_industriels":"32","restauration_hotellerie":"61","fournitures_de_bureau":"62","commerces_marches":"63","materiel_medical":"64","_services_":"31","prestations_de_services":"34","billetterie":"35","evenements":"49","cours_particuliers":"36","covoiturage":"65","_divers_":"37","autres":"38"}},"searchParams":{"isFetching":false,"data":{"2":{"brand":{"values":[{"value":"Audi","label":"Audi"},{"value":"Bmw","label":"Bmw"},{"value":"Citroen","label":"Citroen"},{"value":"Fiat","label":"Fiat"},{"value":"Ford","label":"Ford"},{"value":"Mercedes","label":"Mercedes"},{"value":"Opel","label":"Opel"},{"value":"Peugeot","label":"Peugeot"},{"value":"Renault","label":"Renault"},{"value":"Volkswagen","label":"Volkswagen"},{"value":"Abarth","label":"Abarth"},{"value":"Aixam","label":"Aixam"},{"value":"Aleko","label":"Aleko"},{"value":"Alfa Romeo","label":"Alfa Romeo"},{"value":"Alpina","label":"Alpina"},{"value":"Aro","label":"Aro"},{"value":"Artega","label":"Artega"},{"value":"Aston Martin","label":"Aston Martin"},{"value":"Autobianchi","label":"Autobianchi"},{"value":"Auverland","label":"Auverland"},{"value":"Bellier","label":"Bellier"},{"value":"Bentley","label":"Bentley"},{"value":"Bertone","label":"Bertone"},{"value":"Bluecar Groupe Bollore","label":"Bluecar Groupe Bollore"},{"value":"Buick","label":"Buick"},{"value":"Cadillac","label":"Cadillac"},{"value":"Chevrolet","label":"Chevrolet"},{"value":"Chrysler","label":"Chrysler"},{"value":"Corvette","label":"Corvette"},{"value":"Dacia","label":"Dacia"},{"value":"Daewoo","label":"Daewoo"},{"value":"Daihatsu","label":"Daihatsu"},{"value":"Dangel","label":"Dangel"},{"value":"De La Chapelle","label":"De La Chapelle"},{"value":"Dodge","label":"Dodge"},{"value":"Donkervoort","label":"Donkervoort"},{"value":"Dr","label":"Dr"},{"value":"Ds","label":"Ds"},{"value":"Ferrari","label":"Ferrari"},{"value":"Fisker","label":"Fisker"},{"value":"Gme","label":"Gme"},{"value":"Grecav","label":"Grecav"},{"value":"Honda","label":"Honda"},{"value":"Hummer","label":"Hummer"},{"value":"Hyundai","label":"Hyundai"},{"value":"Infiniti","label":"Infiniti"},{"value":"Innocenti","label":"Innocenti"},{"value":"Isuzu","label":"Isuzu"},{"value":"Iveco","label":"Iveco"},{"value":"Jaguar","label":"Jaguar"},{"value":"Jeep","label":"Jeep"},{"value":"Kia","label":"Kia"},{"value":"Lada","label":"Lada"},{"value":"Lamborghini","label":"Lamborghini"},{"value":"Lancia","label":"Lancia"},{"value":"Land Rover","label":"Land Rover"},{"value":"Lexus","label":"Lexus"},{"value":"Ligier","label":"Ligier"},{"value":"Little","label":"Little"},{"value":"Lotus","label":"Lotus"},{"value":"Mahindra","label":"Mahindra"},{"value":"Maruti","label":"Maruti"},{"value":"Maserati","label":"Maserati"},{"value":"Mastretta","label":"Mastretta"},{"value":"Maybach","label":"Maybach"},{"value":"Mazda","label":"Mazda"},{"value":"Mclaren","label":"Mclaren"},{"value":"Mega","label":"Mega"},{"value":"Mg","label":"Mg"},{"value":"Mia","label":"Mia"},{"value":"Microcar","label":"Microcar"},{"value":"Mini","label":"Mini"},{"value":"Mini Hummer","label":"Mini Hummer"},{"value":"Mitsubishi","label":"Mitsubishi"},{"value":"Morgan","label":"Morgan"},{"value":"Nissan","label":"Nissan"},{"value":"Pgo","label":"Pgo"},{"value":"Piaggio","label":"Piaggio"},{"value":"Polski\u002Ffso","label":"Polski\u002Ffso"},{"value":"Pontiac","label":"Pontiac"},{"value":"Porsche","label":"Porsche"},{"value":"Proton","label":"Proton"},{"value":"Rolls-royce","label":"Rolls-royce"},{"value":"Rover","label":"Rover"},{"value":"Saab","label":"Saab"},{"value":"Santana","label":"Santana"},{"value":"Savel","label":"Savel"},{"value":"Seat","label":"Seat"},{"value":"Shuanghuan","label":"Shuanghuan"},{"value":"Simpa JDM","label":"Simpa JDM"},{"value":"Skoda","label":"Skoda"},{"value":"Smart","label":"Smart"},{"value":"Ssangyong","label":"Ssangyong"},{"value":"Subaru","label":"Subaru"},{"value":"Suzuki","label":"Suzuki"},{"value":"Talbot","label":"Talbot"},{"value":"Tavria","label":"Tavria"},{"value":"Tesla","label":"Tesla"},{"value":"Toyota","label":"Toyota"},{"value":"Tvr","label":"Tvr"},{"value":"Venturi","label":"Venturi"},{"value":"Volvo","label":"Volvo"},{"value":"Autres","label":"Autres"}]},"fuel":{"values":[{"value":"1","label":"Essence"},{"value":"2","label":"Diesel"},{"value":"6","label":"Hybride"},{"value":"4","label":"Electrique"},{"value":"3","label":"GPL"},{"value":"5","label":"Autre"}]},"gearbox":{"values":[{"value":"1","label":"Manuelle"},{"value":"2","label":"Automatique"}]},"mileage":{"values":[{"label":"0"},{"value":"10000","label":"10 000"},{"value":"20000","label":"20 000"},{"value":"30000","label":"30 000"},{"value":"40000","label":"40 000"},{"value":"50000","label":"50 000"},{"value":"60000","label":"60 000"},{"value":"70000","label":"70 000"},{"value":"80000","label":"80 000"},{"value":"90000","label":"90 000"},{"value":"100000","label":"100 000"},{"value":"125000","label":"125 000"},{"value":"150000","label":"150 000"},{"value":"175000","label":"175 000"},{"value":"200000","label":"200 000"},{"value":"225000","label":"225 000"},{"value":"250000","label":"250 000"},{"label":"250 000 +"}]},"model":{"values":[{"value":"100","label":"100","if":{"brand":"Audi"}},{"value":"200","label":"200","if":{"brand":"Audi"}},{"value":"80","label":"80","if":{"brand":"Audi"}},{"value":"90","label":"90","if":{"brand":"Audi"}},{"value":"A1","label":"A1","if":{"brand":"Audi"}},{"value":"A2","label":"A2","if":{"brand":"Audi"}},{"value":"A3","label":"A3","if":{"brand":"Audi"}},{"value":"A4","label":"A4","if":{"brand":"Audi"}},{"value":"A5","label":"A5","if":{"brand":"Audi"}},{"value":"A6","label":"A6","if":{"brand":"Audi"}},{"value":"A6\u002Fs6","label":"A6\u002Fs6","if":{"brand":"Audi"}},{"value":"A7","label":"A7","if":{"brand":"Audi"}},{"value":"A8","label":"A8","if":{"brand":"Audi"}},{"value":"Allroad","label":"Allroad","if":{"brand":"Audi"}},{"value":"Coupe","label":"Coupe","if":{"brand":"Audi"}},{"value":"Q2","label":"Q2","if":{"brand":"Audi"}},{"value":"Q3","label":"Q3","if":{"brand":"Audi"}},{"value":"Q5","label":"Q5","if":{"brand":"Audi"}},{"value":"Q7","label":"Q7","if":{"brand":"Audi"}},{"value":"R8","label":"R8","if":{"brand":"Audi"}},{"value":"Rs3","label":"Rs3","if":{"brand":"Audi"}},{"value":"Rs4","label":"Rs4","if":{"brand":"Audi"}},{"value":"Rs5","label":"Rs5","if":{"brand":"Audi"}},{"value":"Rs7","label":"Rs7","if":{"brand":"Audi"}},{"value":"S4","label":"S4","if":{"brand":"Audi"}},{"value":"S4 Avant","label":"S4 Avant","if":{"brand":"Audi"}},{"value":"S4 Cabriolet","label":"S4 Cabriolet","if":{"brand":"Audi"}},{"value":"S5","label":"S5","if":{"brand":"Audi"}},{"value":"S7","label":"S7","if":{"brand":"Audi"}},{"value":"S8","label":"S8","if":{"brand":"Audi"}},{"value":"Tt","label":"Tt","if":{"brand":"Audi"}},{"value":"Tts","label":"Tts","if":{"brand":"Audi"}},{"value":"V8","label":"V8","if":{"brand":"Audi"}},{"value":"Autres","label":"Autres","if":{"brand":"Audi"}},{"value":"I3","label":"I3","if":{"brand":"Bmw"}},{"value":"I8","label":"I8","if":{"brand":"Bmw"}},{"value":"M3","label":"M3","if":{"brand":"Bmw"}},{"value":"M4","label":"M4","if":{"brand":"Bmw"}},{"value":"M5","label":"M5","if":{"brand":"Bmw"}},{"value":"M6","label":"M6","if":{"brand":"Bmw"}},{"value":"Serie 1","label":"Serie 1","if":{"brand":"Bmw"}},{"value":"Serie 2","label":"Serie 2","if":{"brand":"Bmw"}},{"value":"Serie 3","label":"Serie 3","if":{"brand":"Bmw"}},{"value":"Serie 4","label":"Serie 4","if":{"brand":"Bmw"}},{"value":"Serie 5","label":"Serie 5","if":{"brand":"Bmw"}},{"value":"Serie 6","label":"Serie 6","if":{"brand":"Bmw"}},{"value":"Serie 7","label":"Serie 7","if":{"brand":"Bmw"}},{"value":"Serie 8","label":"Serie 8","if":{"brand":"Bmw"}},{"value":"X1","label":"X1","if":{"brand":"Bmw"}},{"value":"X3","label":"X3","if":{"brand":"Bmw"}},{"value":"X4","label":"X4","if":{"brand":"Bmw"}},{"value":"X5","label":"X5","if":{"brand":"Bmw"}},{"value":"X6","label":"X6","if":{"brand":"Bmw"}},{"value":"Z1","label":"Z1","if":{"brand":"Bmw"}},{"value":"Z-series","label":"Z-series","if":{"brand":"Bmw"}},{"value":"Autres","label":"Autres","if":{"brand":"Bmw"}},{"value":"2cv","label":"2cv","if":{"brand":"Citroen"}},{"value":"Ax","label":"Ax","if":{"brand":"Citroen"}},{"value":"Axel","label":"Axel","if":{"brand":"Citroen"}},{"value":"Berlingo","label":"Berlingo","if":{"brand":"Citroen"}},{"value":"Bx","label":"Bx","if":{"brand":"Citroen"}},{"value":"C1","label":"C1","if":{"brand":"Citroen"}},{"value":"C15","label":"C15","if":{"brand":"Citroen"}},{"value":"C2","label":"C2","if":{"brand":"Citroen"}},{"value":"C25","label":"C25","if":{"brand":"Citroen"}},{"value":"C3","label":"C3","if":{"brand":"Citroen"}},{"value":"C3 Aircross","label":"C3 Aircross","if":{"brand":"Citroen"}},{"value":"C4","label":"C4","if":{"brand":"Citroen"}},{"value":"C5","label":"C5","if":{"brand":"Citroen"}},{"value":"C6","label":"C6","if":{"brand":"Citroen"}},{"value":"C8","label":"C8","if":{"brand":"Citroen"}},{"value":"C-crosser","label":"C-crosser","if":{"brand":"Citroen"}},{"value":"C-elysee","label":"C-elysee","if":{"brand":"Citroen"}},{"value":"Cx","label":"Cx","if":{"brand":"Citroen"}},{"value":"C-zero","label":"C-zero","if":{"brand":"Citroen"}},{"value":"Ds3","label":"Ds3","if":{"brand":"Citroen"}},{"value":"Ds4","label":"Ds4","if":{"brand":"Citroen"}},{"value":"Ds5","label":"Ds5","if":{"brand":"Citroen"}},{"value":"E-mehari","label":"E-mehari","if":{"brand":"Citroen"}},{"value":"Evasion","label":"Evasion","if":{"brand":"Citroen"}},{"value":"Gsa","label":"Gsa","if":{"brand":"Citroen"}},{"value":"Jumper","label":"Jumper","if":{"brand":"Citroen"}},{"value":"Jumpy","label":"Jumpy","if":{"brand":"Citroen"}},{"value":"Lna","label":"Lna","if":{"brand":"Citroen"}},{"value":"Mehari","label":"Mehari","if":{"brand":"Citroen"}},{"value":"Nemo Combi","label":"Nemo Combi","if":{"brand":"Citroen"}},{"value":"Saxo","label":"Saxo","if":{"brand":"Citroen"}},{"value":"Spacetourer","label":"Spacetourer","if":{"brand":"Citroen"}},{"value":"Visa","label":"Visa","if":{"brand":"Citroen"}},{"value":"Xantia","label":"Xantia","if":{"brand":"Citroen"}},{"value":"Xm","label":"Xm","if":{"brand":"Citroen"}},{"value":"Xsara","label":"Xsara","if":{"brand":"Citroen"}},{"value":"Zx","label":"Zx","if":{"brand":"Citroen"}},{"value":"Autres","label":"Autres","if":{"brand":"Citroen"}},{"value":"124 Spider","label":"124 Spider","if":{"brand":"Fiat"}},{"value":"127","label":"127","if":{"brand":"Fiat"}},{"value":"500","label":"500","if":{"brand":"Fiat"}},{"value":"600","label":"600","if":{"brand":"Fiat"}},{"value":"Argenta","label":"Argenta","if":{"brand":"Fiat"}},{"value":"Barchetta","label":"Barchetta","if":{"brand":"Fiat"}},{"value":"Bertone","label":"Bertone","if":{"brand":"Fiat"}},{"value":"Brava","label":"Brava","if":{"brand":"Fiat"}},{"value":"Bravo","label":"Bravo","if":{"brand":"Fiat"}},{"value":"Cinquecento","label":"Cinquecento","if":{"brand":"Fiat"}},{"value":"Coupe","label":"Coupe","if":{"brand":"Fiat"}},{"value":"Croma","label":"Croma","if":{"brand":"Fiat"}},{"value":"Doblo","label":"Doblo","if":{"brand":"Fiat"}},{"value":"Ducato","label":"Ducato","if":{"brand":"Fiat"}},{"value":"Fiorino","label":"Fiorino","if":{"brand":"Fiat"}},{"value":"Freemont","label":"Freemont","if":{"brand":"Fiat"}},{"value":"Fullback Vp","label":"Fullback Vp","if":{"brand":"Fiat"}},{"value":"Grande Punto","label":"Grande Punto","if":{"brand":"Fiat"}},{"value":"Idea","label":"Idea","if":{"brand":"Fiat"}},{"value":"Marea","label":"Marea","if":{"brand":"Fiat"}},{"value":"Multipla","label":"Multipla","if":{"brand":"Fiat"}},{"value":"Palio","label":"Palio","if":{"brand":"Fiat"}},{"value":"Panda","label":"Panda","if":{"brand":"Fiat"}},{"value":"Punto","label":"Punto","if":{"brand":"Fiat"}},{"value":"Punto Evo","label":"Punto Evo","if":{"brand":"Fiat"}},{"value":"Regata","label":"Regata","if":{"brand":"Fiat"}},{"value":"Scudo","label":"Scudo","if":{"brand":"Fiat"}},{"value":"Sedici","label":"Sedici","if":{"brand":"Fiat"}},{"value":"Seicento","label":"Seicento","if":{"brand":"Fiat"}},{"value":"Stilo","label":"Stilo","if":{"brand":"Fiat"}},{"value":"Talento Vp","label":"Talento Vp","if":{"brand":"Fiat"}},{"value":"Tempra","label":"Tempra","if":{"brand":"Fiat"}},{"value":"Tipo","label":"Tipo","if":{"brand":"Fiat"}},{"value":"Ulysse","label":"Ulysse","if":{"brand":"Fiat"}},{"value":"Uno","label":"Uno","if":{"brand":"Fiat"}},{"value":"Autres","label":"Autres","if":{"brand":"Fiat"}},{"value":"Aerostar","label":"Aerostar","if":{"brand":"Ford"}},{"value":"B-max","label":"B-max","if":{"brand":"Ford"}},{"value":"Capri","label":"Capri","if":{"brand":"Ford"}},{"value":"C-max","label":"C-max","if":{"brand":"Ford"}},{"value":"Cougar","label":"Cougar","if":{"brand":"Ford"}},{"value":"Courrier","label":"Courrier","if":{"brand":"Ford"}},{"value":"Ecosport","label":"Ecosport","if":{"brand":"Ford"}},{"value":"Edge","label":"Edge","if":{"brand":"Ford"}},{"value":"Escort","label":"Escort","if":{"brand":"Ford"}},{"value":"Explorer","label":"Explorer","if":{"brand":"Ford"}},{"value":"Fiesta","label":"Fiesta","if":{"brand":"Ford"}},{"value":"Focus","label":"Focus","if":{"brand":"Ford"}},{"value":"Fusion","label":"Fusion","if":{"brand":"Ford"}},{"value":"Galaxy","label":"Galaxy","if":{"brand":"Ford"}},{"value":"Granada","label":"Granada","if":{"brand":"Ford"}},{"value":"Grand C-max","label":"Grand C-max","if":{"brand":"Ford"}},{"value":"Ka","label":"Ka","if":{"brand":"Ford"}},{"value":"Kombi","label":"Kombi","if":{"brand":"Ford"}},{"value":"Kuga","label":"Kuga","if":{"brand":"Ford"}},{"value":"Maverick","label":"Maverick","if":{"brand":"Ford"}},{"value":"Minibus","label":"Minibus","if":{"brand":"Ford"}},{"value":"Mondeo","label":"Mondeo","if":{"brand":"Ford"}},{"value":"Mustang","label":"Mustang","if":{"brand":"Ford"}},{"value":"Orion","label":"Orion","if":{"brand":"Ford"}},{"value":"Probe","label":"Probe","if":{"brand":"Ford"}},{"value":"Puma","label":"Puma","if":{"brand":"Ford"}},{"value":"Scorpio","label":"Scorpio","if":{"brand":"Ford"}},{"value":"Sierra","label":"Sierra","if":{"brand":"Ford"}},{"value":"S-max","label":"S-max","if":{"brand":"Ford"}},{"value":"Streetka","label":"Streetka","if":{"brand":"Ford"}},{"value":"Tourneo","label":"Tourneo","if":{"brand":"Ford"}},{"value":"Transit","label":"Transit","if":{"brand":"Ford"}},{"value":"Autres","label":"Autres","if":{"brand":"Ford"}},{"value":"190-series","label":"190-series","if":{"brand":"Mercedes"}},{"value":"200","label":"200","if":{"brand":"Mercedes"}},{"value":"230","label":"230","if":{"brand":"Mercedes"}},{"value":"250","label":"250","if":{"brand":"Mercedes"}},{"value":"280","label":"280","if":{"brand":"Mercedes"}},{"value":"300","label":"300","if":{"brand":"Mercedes"}},{"value":"AMG GT","label":"AMG GT","if":{"brand":"Mercedes"}},{"value":"Citan Combi","label":"Citan Combi","if":{"brand":"Mercedes"}},{"value":"Classe A","label":"Classe A","if":{"brand":"Mercedes"}},{"value":"Classe B","label":"Classe B","if":{"brand":"Mercedes"}},{"value":"Classe C","label":"Classe C","if":{"brand":"Mercedes"}},{"value":"Classe Cl","label":"Classe Cl","if":{"brand":"Mercedes"}},{"value":"Classe Cla","label":"Classe Cla","if":{"brand":"Mercedes"}},{"value":"Classe Clk","label":"Classe Clk","if":{"brand":"Mercedes"}},{"value":"Classe Cls","label":"Classe Cls","if":{"brand":"Mercedes"}},{"value":"Classe E","label":"Classe E","if":{"brand":"Mercedes"}},{"value":"Classe G","label":"Classe G","if":{"brand":"Mercedes"}},{"value":"Classe Gl","label":"Classe Gl","if":{"brand":"Mercedes"}},{"value":"Classe Gla","label":"Classe Gla","if":{"brand":"Mercedes"}},{"value":"Classe GLE","label":"Classe GLE","if":{"brand":"Mercedes"}},{"value":"Classe Glk","label":"Classe Glk","if":{"brand":"Mercedes"}},{"value":"Classe M","label":"Classe M","if":{"brand":"Mercedes"}},{"value":"Classe R","label":"Classe R","if":{"brand":"Mercedes"}},{"value":"Classe S","label":"Classe S","if":{"brand":"Mercedes"}},{"value":"Classe Sl Roadster","label":"Classe Sl Roadster","if":{"brand":"Mercedes"}},{"value":"Classe V","label":"Classe V","if":{"brand":"Mercedes"}},{"value":"GLC","label":"GLC","if":{"brand":"Mercedes"}},{"value":"GLS","label":"GLS","if":{"brand":"Mercedes"}},{"value":"Sl","label":"Sl","if":{"brand":"Mercedes"}},{"value":"SLC","label":"SLC","if":{"brand":"Mercedes"}},{"value":"Slk","label":"Slk","if":{"brand":"Mercedes"}},{"value":"Slr","label":"Slr","if":{"brand":"Mercedes"}},{"value":"Sls Amg","label":"Sls Amg","if":{"brand":"Mercedes"}},{"value":"Sprinter","label":"Sprinter","if":{"brand":"Mercedes"}},{"value":"Vaneo","label":"Vaneo","if":{"brand":"Mercedes"}},{"value":"Viano","label":"Viano","if":{"brand":"Mercedes"}},{"value":"Autres","label":"Autres","if":{"brand":"Mercedes"}},{"value":"Adam","label":"Adam","if":{"brand":"Opel"}},{"value":"Agila","label":"Agila","if":{"brand":"Opel"}},{"value":"Ampera","label":"Ampera","if":{"brand":"Opel"}},{"value":"Antara","label":"Antara","if":{"brand":"Opel"}},{"value":"Ascona","label":"Ascona","if":{"brand":"Opel"}},{"value":"Astra","label":"Astra","if":{"brand":"Opel"}},{"value":"Calibra","label":"Calibra","if":{"brand":"Opel"}},{"value":"Cascada","label":"Cascada","if":{"brand":"Opel"}},{"value":"Combo","label":"Combo","if":{"brand":"Opel"}},{"value":"Corsa","label":"Corsa","if":{"brand":"Opel"}},{"value":"Crossland X","label":"Crossland X","if":{"brand":"Opel"}},{"value":"Frontera","label":"Frontera","if":{"brand":"Opel"}},{"value":"Grandland X","label":"Grandland X","if":{"brand":"Opel"}},{"value":"Gt","label":"Gt","if":{"brand":"Opel"}},{"value":"Insignia","label":"Insignia","if":{"brand":"Opel"}},{"value":"Kadett","label":"Kadett","if":{"brand":"Opel"}},{"value":"Karl","label":"Karl","if":{"brand":"Opel"}},{"value":"Manta","label":"Manta","if":{"brand":"Opel"}},{"value":"Meriva","label":"Meriva","if":{"brand":"Opel"}},{"value":"Mokka","label":"Mokka","if":{"brand":"Opel"}},{"value":"Monterey","label":"Monterey","if":{"brand":"Opel"}},{"value":"Monza","label":"Monza","if":{"brand":"Opel"}},{"value":"Movano","label":"Movano","if":{"brand":"Opel"}},{"value":"Omega","label":"Omega","if":{"brand":"Opel"}},{"value":"Rekord","label":"Rekord","if":{"brand":"Opel"}},{"value":"Senator","label":"Senator","if":{"brand":"Opel"}},{"value":"Signum","label":"Signum","if":{"brand":"Opel"}},{"value":"Sintra","label":"Sintra","if":{"brand":"Opel"}},{"value":"Speedster","label":"Speedster","if":{"brand":"Opel"}},{"value":"Tigra","label":"Tigra","if":{"brand":"Opel"}},{"value":"Vectra","label":"Vectra","if":{"brand":"Opel"}},{"value":"Vivaro","label":"Vivaro","if":{"brand":"Opel"}},{"value":"Zafira","label":"Zafira","if":{"brand":"Opel"}},{"value":"Autres","label":"Autres","if":{"brand":"Opel"}},{"value":"1007","label":"1007","if":{"brand":"Peugeot"}},{"value":"104","label":"104","if":{"brand":"Peugeot"}},{"value":"106","label":"106","if":{"brand":"Peugeot"}},{"value":"107","label":"107","if":{"brand":"Peugeot"}},{"value":"108","label":"108","if":{"brand":"Peugeot"}},{"value":"2008","label":"2008","if":{"brand":"Peugeot"}},{"value":"205","label":"205","if":{"brand":"Peugeot"}},{"value":"206","label":"206","if":{"brand":"Peugeot"}},{"value":"207","label":"207","if":{"brand":"Peugeot"}},{"value":"208","label":"208","if":{"brand":"Peugeot"}},{"value":"3008","label":"3008","if":{"brand":"Peugeot"}},{"value":"305","label":"305","if":{"brand":"Peugeot"}},{"value":"306","label":"306","if":{"brand":"Peugeot"}},{"value":"307","label":"307","if":{"brand":"Peugeot"}},{"value":"308","label":"308","if":{"brand":"Peugeot"}},{"value":"309","label":"309","if":{"brand":"Peugeot"}},{"value":"4007","label":"4007","if":{"brand":"Peugeot"}},{"value":"4008","label":"4008","if":{"brand":"Peugeot"}},{"value":"405","label":"405","if":{"brand":"Peugeot"}},{"value":"406","label":"406","if":{"brand":"Peugeot"}},{"value":"407","label":"407","if":{"brand":"Peugeot"}},{"value":"5008","label":"5008","if":{"brand":"Peugeot"}},{"value":"505","label":"505","if":{"brand":"Peugeot"}},{"value":"508","label":"508","if":{"brand":"Peugeot"}},{"value":"604","label":"604","if":{"brand":"Peugeot"}},{"value":"605","label":"605","if":{"brand":"Peugeot"}},{"value":"607","label":"607","if":{"brand":"Peugeot"}},{"value":"806","label":"806","if":{"brand":"Peugeot"}},{"value":"807","label":"807","if":{"brand":"Peugeot"}},{"value":"Bipper Tepee","label":"Bipper Tepee","if":{"brand":"Peugeot"}},{"value":"Boxer","label":"Boxer","if":{"brand":"Peugeot"}},{"value":"Combi","label":"Combi","if":{"brand":"Peugeot"}},{"value":"Expert","label":"Expert","if":{"brand":"Peugeot"}},{"value":"Expert Combi","label":"Expert Combi","if":{"brand":"Peugeot"}},{"value":"Ion","label":"Ion","if":{"brand":"Peugeot"}},{"value":"J5 Combi","label":"J5 Combi","if":{"brand":"Peugeot"}},{"value":"Partner","label":"Partner","if":{"brand":"Peugeot"}},{"value":"Rcz","label":"Rcz","if":{"brand":"Peugeot"}},{"value":"Traveller","label":"Traveller","if":{"brand":"Peugeot"}},{"value":"Autres","label":"Autres","if":{"brand":"Peugeot"}},{"value":"Alpine","label":"Alpine","if":{"brand":"Renault"}},{"value":"Avantime","label":"Avantime","if":{"brand":"Renault"}},{"value":"Captur","label":"Captur","if":{"brand":"Renault"}},{"value":"Clio","label":"Clio","if":{"brand":"Renault"}},{"value":"Espace","label":"Espace","if":{"brand":"Renault"}},{"value":"Express","label":"Express","if":{"brand":"Renault"}},{"value":"Fluence","label":"Fluence","if":{"brand":"Renault"}},{"value":"Kadjar","label":"Kadjar","if":{"brand":"Renault"}},{"value":"Kangoo","label":"Kangoo","if":{"brand":"Renault"}},{"value":"Koleos","label":"Koleos","if":{"brand":"Renault"}},{"value":"Laguna","label":"Laguna","if":{"brand":"Renault"}},{"value":"Latitude","label":"Latitude","if":{"brand":"Renault"}},{"value":"Master","label":"Master","if":{"brand":"Renault"}},{"value":"Megane","label":"Megane","if":{"brand":"Renault"}},{"value":"Modus","label":"Modus","if":{"brand":"Renault"}},{"value":"R11","label":"R11","if":{"brand":"Renault"}},{"value":"R18","label":"R18","if":{"brand":"Renault"}},{"value":"R19","label":"R19","if":{"brand":"Renault"}},{"value":"R20","label":"R20","if":{"brand":"Renault"}},{"value":"R21","label":"R21","if":{"brand":"Renault"}},{"value":"R25","label":"R25","if":{"brand":"Renault"}},{"value":"R30","label":"R30","if":{"brand":"Renault"}},{"value":"R4","label":"R4","if":{"brand":"Renault"}},{"value":"R5","label":"R5","if":{"brand":"Renault"}},{"value":"R9","label":"R9","if":{"brand":"Renault"}},{"value":"Safrane","label":"Safrane","if":{"brand":"Renault"}},{"value":"Scenic","label":"Scenic","if":{"brand":"Renault"}},{"value":"Sport Spider","label":"Sport Spider","if":{"brand":"Renault"}},{"value":"Talisman","label":"Talisman","if":{"brand":"Renault"}},{"value":"Trafic","label":"Trafic","if":{"brand":"Renault"}},{"value":"Twingo","label":"Twingo","if":{"brand":"Renault"}},{"value":"Twizy","label":"Twizy","if":{"brand":"Renault"}},{"value":"Vel Satis","label":"Vel Satis","if":{"brand":"Renault"}},{"value":"Wind","label":"Wind","if":{"brand":"Renault"}},{"value":"Zoe","label":"Zoe","if":{"brand":"Renault"}},{"value":"Autres","label":"Autres","if":{"brand":"Renault"}},{"value":"Arteon","label":"Arteon","if":{"brand":"Volkswagen"}},{"value":"Bora","label":"Bora","if":{"brand":"Volkswagen"}},{"value":"Caddy","label":"Caddy","if":{"brand":"Volkswagen"}},{"value":"California","label":"California","if":{"brand":"Volkswagen"}},{"value":"Caravelle","label":"Caravelle","if":{"brand":"Volkswagen"}},{"value":"Coccinelle","label":"Coccinelle","if":{"brand":"Volkswagen"}},{"value":"Combi","label":"Combi","if":{"brand":"Volkswagen"}},{"value":"Corrado","label":"Corrado","if":{"brand":"Volkswagen"}},{"value":"Crafter Combi","label":"Crafter Combi","if":{"brand":"Volkswagen"}},{"value":"Eos","label":"Eos","if":{"brand":"Volkswagen"}},{"value":"Fox","label":"Fox","if":{"brand":"Volkswagen"}},{"value":"Golf","label":"Golf","if":{"brand":"Volkswagen"}},{"value":"Jetta","label":"Jetta","if":{"brand":"Volkswagen"}},{"value":"Lt Combi","label":"Lt Combi","if":{"brand":"Volkswagen"}},{"value":"Lupo","label":"Lupo","if":{"brand":"Volkswagen"}},{"value":"Multivan","label":"Multivan","if":{"brand":"Volkswagen"}},{"value":"New Beetle","label":"New Beetle","if":{"brand":"Volkswagen"}},{"value":"Passat","label":"Passat","if":{"brand":"Volkswagen"}},{"value":"Phaeton","label":"Phaeton","if":{"brand":"Volkswagen"}},{"value":"Polo","label":"Polo","if":{"brand":"Volkswagen"}},{"value":"Scirocco","label":"Scirocco","if":{"brand":"Volkswagen"}},{"value":"Sharan","label":"Sharan","if":{"brand":"Volkswagen"}},{"value":"Tiguan","label":"Tiguan","if":{"brand":"Volkswagen"}},{"value":"Tiguan Allspace","label":"Tiguan Allspace","if":{"brand":"Volkswagen"}},{"value":"Touareg","label":"Touareg","if":{"brand":"Volkswagen"}},{"value":"Touran","label":"Touran","if":{"brand":"Volkswagen"}},{"value":"Transporter","label":"Transporter","if":{"brand":"Volkswagen"}},{"value":"T-roc","label":"T-roc","if":{"brand":"Volkswagen"}},{"value":"Up","label":"Up","if":{"brand":"Volkswagen"}},{"value":"Vento","label":"Vento","if":{"brand":"Volkswagen"}},{"value":"Autres","label":"Autres","if":{"brand":"Volkswagen"}},{"value":"Abarth 124 Spider","label":"Abarth 124 Spider","if":{"brand":"Abarth"}},{"value":"Abarth 500","label":"Abarth 500","if":{"brand":"Abarth"}},{"value":"Abarth Grande Punto","label":"Abarth Grande Punto","if":{"brand":"Abarth"}},{"value":"Abarth Punto Evo","label":"Abarth Punto Evo","if":{"brand":"Abarth"}},{"value":"Autres","label":"Autres","if":{"brand":"Abarth"}},{"value":"300","label":"300","if":{"brand":"Aixam"}},{"value":"400","label":"400","if":{"brand":"Aixam"}},{"value":"400.4","label":"400.4","if":{"brand":"Aixam"}},{"value":"500","label":"500","if":{"brand":"Aixam"}},{"value":"500.4","label":"500.4","if":{"brand":"Aixam"}},{"value":"500.5","label":"500.5","if":{"brand":"Aixam"}},{"value":"A540","label":"A540","if":{"brand":"Aixam"}},{"value":"A550","label":"A550","if":{"brand":"Aixam"}},{"value":"A721","label":"A721","if":{"brand":"Aixam"}},{"value":"A741","label":"A741","if":{"brand":"Aixam"}},{"value":"A751","label":"A751","if":{"brand":"Aixam"}},{"value":"City","label":"City","if":{"brand":"Aixam"}},{"value":"City S","label":"City S","if":{"brand":"Aixam"}},{"value":"Coupé","label":"Coupé","if":{"brand":"Aixam"}},{"value":"Crossline","label":"Crossline","if":{"brand":"Aixam"}},{"value":"Crossover","label":"Crossover","if":{"brand":"Aixam"}},{"value":"d-truck","label":"d-truck","if":{"brand":"Aixam"}},{"value":"GTO","label":"GTO","if":{"brand":"Aixam"}},{"value":"Mac 300","label":"Mac 300","if":{"brand":"Aixam"}},{"value":"Mac 340","label":"Mac 340","if":{"brand":"Aixam"}},{"value":"Mac 400","label":"Mac 400","if":{"brand":"Aixam"}},{"value":"Mac 500","label":"Mac 500","if":{"brand":"Aixam"}},{"value":"Minauto","label":"Minauto","if":{"brand":"Aixam"}},{"value":"Minauto GT","label":"Minauto GT","if":{"brand":"Aixam"}},{"value":"Minivan","label":"Minivan","if":{"brand":"Aixam"}},{"value":"Pick-up","label":"Pick-up","if":{"brand":"Aixam"}},{"value":"Roadline","label":"Roadline","if":{"brand":"Aixam"}},{"value":"Scouty","label":"Scouty","if":{"brand":"Aixam"}},{"value":"Super Luxe 2000","label":"Super Luxe 2000","if":{"brand":"Aixam"}},{"value":"Autres","label":"Autres","if":{"brand":"Aixam"}},{"value":"2141","label":"2141","if":{"brand":"Aleko"}},{"value":"Autres","label":"Autres","if":{"brand":"Aleko"}},{"value":"145","label":"145","if":{"brand":"Alfa Romeo"}},{"value":"146","label":"146","if":{"brand":"Alfa Romeo"}},{"value":"147","label":"147","if":{"brand":"Alfa Romeo"}},{"value":"155","label":"155","if":{"brand":"Alfa Romeo"}},{"value":"156","label":"156","if":{"brand":"Alfa Romeo"}},{"value":"159","label":"159","if":{"brand":"Alfa Romeo"}},{"value":"164","label":"164","if":{"brand":"Alfa Romeo"}},{"value":"166","label":"166","if":{"brand":"Alfa Romeo"}},{"value":"33","label":"33","if":{"brand":"Alfa Romeo"}},{"value":"4c","label":"4c","if":{"brand":"Alfa Romeo"}},{"value":"6","label":"6","if":{"brand":"Alfa Romeo"}},{"value":"75","label":"75","if":{"brand":"Alfa Romeo"}},{"value":"8c Spider","label":"8c Spider","if":{"brand":"Alfa Romeo"}},{"value":"90","label":"90","if":{"brand":"Alfa Romeo"}},{"value":"Alfasud","label":"Alfasud","if":{"brand":"Alfa Romeo"}},{"value":"Brera","label":"Brera","if":{"brand":"Alfa Romeo"}},{"value":"Crosswagon Q4","label":"Crosswagon Q4","if":{"brand":"Alfa Romeo"}},{"value":"Giulia","label":"Giulia","if":{"brand":"Alfa Romeo"}},{"value":"Giulietta","label":"Giulietta","if":{"brand":"Alfa Romeo"}},{"value":"Gtv","label":"Gtv","if":{"brand":"Alfa Romeo"}},{"value":"Mito","label":"Mito","if":{"brand":"Alfa Romeo"}},{"value":"Spider","label":"Spider","if":{"brand":"Alfa Romeo"}},{"value":"Sportwagon Q4","label":"Sportwagon Q4","if":{"brand":"Alfa Romeo"}},{"value":"Stelvio","label":"Stelvio","if":{"brand":"Alfa Romeo"}},{"value":"Zagato","label":"Zagato","if":{"brand":"Alfa Romeo"}},{"value":"Autres","label":"Autres","if":{"brand":"Alfa Romeo"}},{"value":"3-series","label":"3-series","if":{"brand":"Alpina"}},{"value":"7\u002F8-series","label":"7\u002F8-series","if":{"brand":"Alpina"}},{"value":"B4","label":"B4","if":{"brand":"Alpina"}},{"value":"B5","label":"B5","if":{"brand":"Alpina"}},{"value":"Serie 3 Touring","label":"Serie 3 Touring","if":{"brand":"Alpina"}},{"value":"Serie 5","label":"Serie 5","if":{"brand":"Alpina"}},{"value":"XD3 Biturbo","label":"XD3 Biturbo","if":{"brand":"Alpina"}},{"value":"Autres","label":"Autres","if":{"brand":"Alpina"}},{"value":"Aro 10 Trapeurs","label":"Aro 10 Trapeurs","if":{"brand":"Aro"}},{"value":"Aro 24","label":"Aro 24","if":{"brand":"Aro"}},{"value":"Aro 244 Forester","label":"Aro 244 Forester","if":{"brand":"Aro"}},{"value":"Carpat","label":"Carpat","if":{"brand":"Aro"}},{"value":"Cross Lander","label":"Cross Lander","if":{"brand":"Aro"}},{"value":"Forester","label":"Forester","if":{"brand":"Aro"}},{"value":"Spartana","label":"Spartana","if":{"brand":"Aro"}},{"value":"Trapeurs","label":"Trapeurs","if":{"brand":"Aro"}},{"value":"Autres","label":"Autres","if":{"brand":"Aro"}},{"value":"Artega","label":"Artega","if":{"brand":"Artega"}},{"value":"Autres","label":"Autres","if":{"brand":"Artega"}},{"value":"Cygnet","label":"Cygnet","if":{"brand":"Aston Martin"}},{"value":"Db11","label":"Db11","if":{"brand":"Aston Martin"}},{"value":"Db7","label":"Db7","if":{"brand":"Aston Martin"}},{"value":"Db9","label":"Db9","if":{"brand":"Aston Martin"}},{"value":"Dbs","label":"Dbs","if":{"brand":"Aston Martin"}},{"value":"Lagonda","label":"Lagonda","if":{"brand":"Aston Martin"}},{"value":"Rapide","label":"Rapide","if":{"brand":"Aston Martin"}},{"value":"V8","label":"V8","if":{"brand":"Aston Martin"}},{"value":"Vanquish","label":"Vanquish","if":{"brand":"Aston Martin"}},{"value":"Vantage","label":"Vantage","if":{"brand":"Aston Martin"}},{"value":"Virage","label":"Virage","if":{"brand":"Aston Martin"}},{"value":"Autres","label":"Autres","if":{"brand":"Aston Martin"}},{"value":"A112","label":"A112","if":{"brand":"Autobianchi"}},{"value":"Y","label":"Y","if":{"brand":"Autobianchi"}},{"value":"Autres","label":"Autres","if":{"brand":"Autobianchi"}},{"value":"A3","label":"A3","if":{"brand":"Auverland"}},{"value":"A4","label":"A4","if":{"brand":"Auverland"}},{"value":"Autres","label":"Autres","if":{"brand":"Auverland"}},{"value":"B8","label":"B8","if":{"brand":"Bellier"}},{"value":"Divane","label":"Divane","if":{"brand":"Bellier"}},{"value":"Divane II","label":"Divane II","if":{"brand":"Bellier"}},{"value":"Docker City","label":"Docker City","if":{"brand":"Bellier"}},{"value":"e-Docker City","label":"e-Docker City","if":{"brand":"Bellier"}},{"value":"e-Jade","label":"e-Jade","if":{"brand":"Bellier"}},{"value":"Jade","label":"Jade","if":{"brand":"Bellier"}},{"value":"Jade Classic","label":"Jade Classic","if":{"brand":"Bellier"}},{"value":"Jade Racing","label":"Jade Racing","if":{"brand":"Bellier"}},{"value":"Jade So Good","label":"Jade So Good","if":{"brand":"Bellier"}},{"value":"Jade Urban","label":"Jade Urban","if":{"brand":"Bellier"}},{"value":"Le Bellier","label":"Le Bellier","if":{"brand":"Bellier"}},{"value":"Opale","label":"Opale","if":{"brand":"Bellier"}},{"value":"VX 350","label":"VX 350","if":{"brand":"Bellier"}},{"value":"VX 550","label":"VX 550","if":{"brand":"Bellier"}},{"value":"VX 650","label":"VX 650","if":{"brand":"Bellier"}},{"value":"VX Vendée Globe","label":"VX Vendée Globe","if":{"brand":"Bellier"}},{"value":"Autres","label":"Autres","if":{"brand":"Bellier"}},{"value":"Arnage","label":"Arnage","if":{"brand":"Bentley"}},{"value":"Azure","label":"Azure","if":{"brand":"Bentley"}},{"value":"Bentayga","label":"Bentayga","if":{"brand":"Bentley"}},{"value":"Brooklands","label":"Brooklands","if":{"brand":"Bentley"}},{"value":"Continental","label":"Continental","if":{"brand":"Bentley"}},{"value":"Eight","label":"Eight","if":{"brand":"Bentley"}},{"value":"Flying Spur","label":"Flying Spur","if":{"brand":"Bentley"}},{"value":"Mulsanne","label":"Mulsanne","if":{"brand":"Bentley"}},{"value":"Turbo","label":"Turbo","if":{"brand":"Bentley"}},{"value":"Autres","label":"Autres","if":{"brand":"Bentley"}},{"value":"Freeclimber","label":"Freeclimber","if":{"brand":"Bertone"}},{"value":"Autres","label":"Autres","if":{"brand":"Bertone"}},{"value":"Bluecar","label":"Bluecar","if":{"brand":"Bluecar Groupe Bollore"}},{"value":"Bluesummer","label":"Bluesummer","if":{"brand":"Bluecar Groupe Bollore"}},{"value":"Autres","label":"Autres","if":{"brand":"Bluecar Groupe Bollore"}},{"value":"Park Avenue","label":"Park Avenue","if":{"brand":"Buick"}},{"value":"Autres","label":"Autres","if":{"brand":"Buick"}},{"value":"Allante","label":"Allante","if":{"brand":"Cadillac"}},{"value":"Ats","label":"Ats","if":{"brand":"Cadillac"}},{"value":"Bls","label":"Bls","if":{"brand":"Cadillac"}},{"value":"Cts","label":"Cts","if":{"brand":"Cadillac"}},{"value":"Eldorado","label":"Eldorado","if":{"brand":"Cadillac"}},{"value":"Escalade","label":"Escalade","if":{"brand":"Cadillac"}},{"value":"Fleetwood","label":"Fleetwood","if":{"brand":"Cadillac"}},{"value":"Seville","label":"Seville","if":{"brand":"Cadillac"}},{"value":"Srx","label":"Srx","if":{"brand":"Cadillac"}},{"value":"Sts","label":"Sts","if":{"brand":"Cadillac"}},{"value":"Xlr","label":"Xlr","if":{"brand":"Cadillac"}},{"value":"Autres","label":"Autres","if":{"brand":"Cadillac"}},{"value":"Alero","label":"Alero","if":{"brand":"Chevrolet"}},{"value":"Aveo","label":"Aveo","if":{"brand":"Chevrolet"}},{"value":"Blazer","label":"Blazer","if":{"brand":"Chevrolet"}},{"value":"Camaro","label":"Camaro","if":{"brand":"Chevrolet"}},{"value":"Captiva","label":"Captiva","if":{"brand":"Chevrolet"}},{"value":"Corsica","label":"Corsica","if":{"brand":"Chevrolet"}},{"value":"Corvette","label":"Corvette","if":{"brand":"Chevrolet"}},{"value":"Cruze","label":"Cruze","if":{"brand":"Chevrolet"}},{"value":"Epica","label":"Epica","if":{"brand":"Chevrolet"}},{"value":"Evanda","label":"Evanda","if":{"brand":"Chevrolet"}},{"value":"Kalos","label":"Kalos","if":{"brand":"Chevrolet"}},{"value":"Lacetti","label":"Lacetti","if":{"brand":"Chevrolet"}},{"value":"Malibu","label":"Malibu","if":{"brand":"Chevrolet"}},{"value":"Matiz","label":"Matiz","if":{"brand":"Chevrolet"}},{"value":"Nubira","label":"Nubira","if":{"brand":"Chevrolet"}},{"value":"Orlando","label":"Orlando","if":{"brand":"Chevrolet"}},{"value":"Rezzo","label":"Rezzo","if":{"brand":"Chevrolet"}},{"value":"Spark","label":"Spark","if":{"brand":"Chevrolet"}},{"value":"Tahoe","label":"Tahoe","if":{"brand":"Chevrolet"}},{"value":"Transsport","label":"Transsport","if":{"brand":"Chevrolet"}},{"value":"Trax","label":"Trax","if":{"brand":"Chevrolet"}},{"value":"Volt","label":"Volt","if":{"brand":"Chevrolet"}},{"value":"Autres","label":"Autres","if":{"brand":"Chevrolet"}},{"value":"300c","label":"300c","if":{"brand":"Chrysler"}},{"value":"300m","label":"300m","if":{"brand":"Chrysler"}},{"value":"Crossfire","label":"Crossfire","if":{"brand":"Chrysler"}},{"value":"Es","label":"Es","if":{"brand":"Chrysler"}},{"value":"Grand Voyager","label":"Grand Voyager","if":{"brand":"Chrysler"}},{"value":"Le Baron","label":"Le Baron","if":{"brand":"Chrysler"}},{"value":"Neon","label":"Neon","if":{"brand":"Chrysler"}},{"value":"New Yorker","label":"New Yorker","if":{"brand":"Chrysler"}},{"value":"Pt Cruiser","label":"Pt Cruiser","if":{"brand":"Chrysler"}},{"value":"Saratoga","label":"Saratoga","if":{"brand":"Chrysler"}},{"value":"Sebring","label":"Sebring","if":{"brand":"Chrysler"}},{"value":"Stratus","label":"Stratus","if":{"brand":"Chrysler"}},{"value":"Viper","label":"Viper","if":{"brand":"Chrysler"}},{"value":"Vision","label":"Vision","if":{"brand":"Chrysler"}},{"value":"Voyager","label":"Voyager","if":{"brand":"Chrysler"}},{"value":"Autres","label":"Autres","if":{"brand":"Chrysler"}},{"value":"Corvette","label":"Corvette","if":{"brand":"Corvette"}},{"value":"Autres","label":"Autres","if":{"brand":"Corvette"}},{"value":"Dokker","label":"Dokker","if":{"brand":"Dacia"}},{"value":"Duster","label":"Duster","if":{"brand":"Dacia"}},{"value":"Lodgy","label":"Lodgy","if":{"brand":"Dacia"}},{"value":"Logan","label":"Logan","if":{"brand":"Dacia"}},{"value":"Sandero","label":"Sandero","if":{"brand":"Dacia"}},{"value":"Autres","label":"Autres","if":{"brand":"Dacia"}},{"value":"Espero","label":"Espero","if":{"brand":"Daewoo"}},{"value":"Evanda","label":"Evanda","if":{"brand":"Daewoo"}},{"value":"Kalos","label":"Kalos","if":{"brand":"Daewoo"}},{"value":"Korando","label":"Korando","if":{"brand":"Daewoo"}},{"value":"Lacetti","label":"Lacetti","if":{"brand":"Daewoo"}},{"value":"Lanos","label":"Lanos","if":{"brand":"Daewoo"}},{"value":"Leganza","label":"Leganza","if":{"brand":"Daewoo"}},{"value":"Matiz","label":"Matiz","if":{"brand":"Daewoo"}},{"value":"Musso","label":"Musso","if":{"brand":"Daewoo"}},{"value":"Nexia","label":"Nexia","if":{"brand":"Daewoo"}},{"value":"Nubira","label":"Nubira","if":{"brand":"Daewoo"}},{"value":"Rexton","label":"Rexton","if":{"brand":"Daewoo"}},{"value":"Tacuma","label":"Tacuma","if":{"brand":"Daewoo"}},{"value":"Autres","label":"Autres","if":{"brand":"Daewoo"}},{"value":"Applause","label":"Applause","if":{"brand":"Daihatsu"}},{"value":"Charade","label":"Charade","if":{"brand":"Daihatsu"}},{"value":"Copen","label":"Copen","if":{"brand":"Daihatsu"}},{"value":"Cuore","label":"Cuore","if":{"brand":"Daihatsu"}},{"value":"Feroza","label":"Feroza","if":{"brand":"Daihatsu"}},{"value":"Gran Move","label":"Gran Move","if":{"brand":"Daihatsu"}},{"value":"Materia","label":"Materia","if":{"brand":"Daihatsu"}},{"value":"Move","label":"Move","if":{"brand":"Daihatsu"}},{"value":"Rocky","label":"Rocky","if":{"brand":"Daihatsu"}},{"value":"Sirion","label":"Sirion","if":{"brand":"Daihatsu"}},{"value":"Terios","label":"Terios","if":{"brand":"Daihatsu"}},{"value":"Trevis","label":"Trevis","if":{"brand":"Daihatsu"}},{"value":"Yrv","label":"Yrv","if":{"brand":"Daihatsu"}},{"value":"Autres","label":"Autres","if":{"brand":"Daihatsu"}},{"value":"505","label":"505","if":{"brand":"Dangel"}},{"value":"Berlingo","label":"Berlingo","if":{"brand":"Dangel"}},{"value":"C25","label":"C25","if":{"brand":"Dangel"}},{"value":"Combi","label":"Combi","if":{"brand":"Dangel"}},{"value":"Expert","label":"Expert","if":{"brand":"Dangel"}},{"value":"Jumpy","label":"Jumpy","if":{"brand":"Dangel"}},{"value":"Partner","label":"Partner","if":{"brand":"Dangel"}},{"value":"Scudo","label":"Scudo","if":{"brand":"Dangel"}},{"value":"Autres","label":"Autres","if":{"brand":"Dangel"}},{"value":"55","label":"55","if":{"brand":"De La Chapelle"}},{"value":"Atalante","label":"Atalante","if":{"brand":"De La Chapelle"}},{"value":"Cabriolet","label":"Cabriolet","if":{"brand":"De La Chapelle"}},{"value":"Roadster","label":"Roadster","if":{"brand":"De La Chapelle"}},{"value":"Tourer","label":"Tourer","if":{"brand":"De La Chapelle"}},{"value":"Autres","label":"Autres","if":{"brand":"De La Chapelle"}},{"value":"Avenger","label":"Avenger","if":{"brand":"Dodge"}},{"value":"Caliber","label":"Caliber","if":{"brand":"Dodge"}},{"value":"Journey","label":"Journey","if":{"brand":"Dodge"}},{"value":"Nitro","label":"Nitro","if":{"brand":"Dodge"}},{"value":"Viper","label":"Viper","if":{"brand":"Dodge"}},{"value":"Autres","label":"Autres","if":{"brand":"Dodge"}},{"value":"D8","label":"D8","if":{"brand":"Donkervoort"}},{"value":"Autres","label":"Autres","if":{"brand":"Donkervoort"}},{"value":"Dr Zero","label":"Dr Zero","if":{"brand":"Dr"}},{"value":"Autres","label":"Autres","if":{"brand":"Dr"}},{"value":"Ds3","label":"Ds3","if":{"brand":"Ds"}},{"value":"Ds4","label":"Ds4","if":{"brand":"Ds"}},{"value":"Ds5","label":"Ds5","if":{"brand":"Ds"}},{"value":"Ds7","label":"Ds7","if":{"brand":"Ds"}},{"value":"Autres","label":"Autres","if":{"brand":"Ds"}},{"value":"308","label":"308","if":{"brand":"Ferrari"}},{"value":"328","label":"328","if":{"brand":"Ferrari"}},{"value":"348","label":"348","if":{"brand":"Ferrari"}},{"value":"400","label":"400","if":{"brand":"Ferrari"}},{"value":"412","label":"412","if":{"brand":"Ferrari"}},{"value":"456","label":"456","if":{"brand":"Ferrari"}},{"value":"458 Italia","label":"458 Italia","if":{"brand":"Ferrari"}},{"value":"458 Speciale","label":"458 Speciale","if":{"brand":"Ferrari"}},{"value":"458 Spider","label":"458 Spider","if":{"brand":"Ferrari"}},{"value":"488","label":"488","if":{"brand":"Ferrari"}},{"value":"575","label":"575","if":{"brand":"Ferrari"}},{"value":"599","label":"599","if":{"brand":"Ferrari"}},{"value":"612","label":"612","if":{"brand":"Ferrari"}},{"value":"812 Superfast","label":"812 Superfast","if":{"brand":"Ferrari"}},{"value":"Bb 512","label":"Bb 512","if":{"brand":"Ferrari"}},{"value":"California","label":"California","if":{"brand":"Ferrari"}},{"value":"F12 Berlinetta","label":"F12 Berlinetta","if":{"brand":"Ferrari"}},{"value":"F355","label":"F355","if":{"brand":"Ferrari"}},{"value":"F360","label":"F360","if":{"brand":"Ferrari"}},{"value":"F430","label":"F430","if":{"brand":"Ferrari"}},{"value":"F550","label":"F550","if":{"brand":"Ferrari"}},{"value":"Ff","label":"Ff","if":{"brand":"Ferrari"}},{"value":"GTC4Lusso","label":"GTC4Lusso","if":{"brand":"Ferrari"}},{"value":"Mondial","label":"Mondial","if":{"brand":"Ferrari"}},{"value":"Testarossa","label":"Testarossa","if":{"brand":"Ferrari"}},{"value":"Autres","label":"Autres","if":{"brand":"Ferrari"}},{"value":"Karma","label":"Karma","if":{"brand":"Fisker"}},{"value":"Autres","label":"Autres","if":{"brand":"Fisker"}},{"value":"Midi","label":"Midi","if":{"brand":"Gme"}},{"value":"Autres","label":"Autres","if":{"brand":"Gme"}},{"value":"Eke","label":"Eke","if":{"brand":"Grecav"}},{"value":"Sonique","label":"Sonique","if":{"brand":"Grecav"}},{"value":"Autres","label":"Autres","if":{"brand":"Grecav"}},{"value":"Accord","label":"Accord","if":{"brand":"Honda"}},{"value":"Civic","label":"Civic","if":{"brand":"Honda"}},{"value":"Concerto","label":"Concerto","if":{"brand":"Honda"}},{"value":"Cr-v","label":"Cr-v","if":{"brand":"Honda"}},{"value":"Cr-z","label":"Cr-z","if":{"brand":"Honda"}},{"value":"Fr-v","label":"Fr-v","if":{"brand":"Honda"}},{"value":"Hr-v","label":"Hr-v","if":{"brand":"Honda"}},{"value":"Insight","label":"Insight","if":{"brand":"Honda"}},{"value":"Integra","label":"Integra","if":{"brand":"Honda"}},{"value":"Jazz","label":"Jazz","if":{"brand":"Honda"}},{"value":"Legend","label":"Legend","if":{"brand":"Honda"}},{"value":"Logo","label":"Logo","if":{"brand":"Honda"}},{"value":"Nsx","label":"Nsx","if":{"brand":"Honda"}},{"value":"Prelude","label":"Prelude","if":{"brand":"Honda"}},{"value":"Quintet","label":"Quintet","if":{"brand":"Honda"}},{"value":"S2000","label":"S2000","if":{"brand":"Honda"}},{"value":"Shuttle","label":"Shuttle","if":{"brand":"Honda"}},{"value":"Stream","label":"Stream","if":{"brand":"Honda"}},{"value":"Autres","label":"Autres","if":{"brand":"Honda"}},{"value":"H1","label":"H1","if":{"brand":"Hummer"}},{"value":"H2","label":"H2","if":{"brand":"Hummer"}},{"value":"H3","label":"H3","if":{"brand":"Hummer"}},{"value":"Autres","label":"Autres","if":{"brand":"Hummer"}},{"value":"Accent","label":"Accent","if":{"brand":"Hyundai"}},{"value":"Atos","label":"Atos","if":{"brand":"Hyundai"}},{"value":"Azera","label":"Azera","if":{"brand":"Hyundai"}},{"value":"Coupe","label":"Coupe","if":{"brand":"Hyundai"}},{"value":"Elantra","label":"Elantra","if":{"brand":"Hyundai"}},{"value":"Galloper","label":"Galloper","if":{"brand":"Hyundai"}},{"value":"Genesis","label":"Genesis","if":{"brand":"Hyundai"}},{"value":"Getz","label":"Getz","if":{"brand":"Hyundai"}},{"value":"I10","label":"I10","if":{"brand":"Hyundai"}},{"value":"I20","label":"I20","if":{"brand":"Hyundai"}},{"value":"I30","label":"I30","if":{"brand":"Hyundai"}},{"value":"I40","label":"I40","if":{"brand":"Hyundai"}},{"value":"Ioniq","label":"Ioniq","if":{"brand":"Hyundai"}},{"value":"Ix20","label":"Ix20","if":{"brand":"Hyundai"}},{"value":"Ix35","label":"Ix35","if":{"brand":"Hyundai"}},{"value":"Ix55","label":"Ix55","if":{"brand":"Hyundai"}},{"value":"Kona","label":"Kona","if":{"brand":"Hyundai"}},{"value":"Lantra","label":"Lantra","if":{"brand":"Hyundai"}},{"value":"Matrix","label":"Matrix","if":{"brand":"Hyundai"}},{"value":"Pony","label":"Pony","if":{"brand":"Hyundai"}},{"value":"Santa Fe","label":"Santa Fe","if":{"brand":"Hyundai"}},{"value":"Satellite","label":"Satellite","if":{"brand":"Hyundai"}},{"value":"Scoupe","label":"Scoupe","if":{"brand":"Hyundai"}},{"value":"Sonata","label":"Sonata","if":{"brand":"Hyundai"}},{"value":"Terracan","label":"Terracan","if":{"brand":"Hyundai"}},{"value":"Trajet","label":"Trajet","if":{"brand":"Hyundai"}},{"value":"Tucson","label":"Tucson","if":{"brand":"Hyundai"}},{"value":"Veloster","label":"Veloster","if":{"brand":"Hyundai"}},{"value":"Xg","label":"Xg","if":{"brand":"Hyundai"}},{"value":"Autres","label":"Autres","if":{"brand":"Hyundai"}},{"value":"Ex","label":"Ex","if":{"brand":"Infiniti"}},{"value":"Fx","label":"Fx","if":{"brand":"Infiniti"}},{"value":"G37","label":"G37","if":{"brand":"Infiniti"}},{"value":"M37","label":"M37","if":{"brand":"Infiniti"}},{"value":"Q30","label":"Q30","if":{"brand":"Infiniti"}},{"value":"Q50","label":"Q50","if":{"brand":"Infiniti"}},{"value":"Q60","label":"Q60","if":{"brand":"Infiniti"}},{"value":"Q70","label":"Q70","if":{"brand":"Infiniti"}},{"value":"QX30","label":"QX30","if":{"brand":"Infiniti"}},{"value":"Qx50","label":"Qx50","if":{"brand":"Infiniti"}},{"value":"Autres","label":"Autres","if":{"brand":"Infiniti"}},{"value":"500","label":"500","if":{"brand":"Innocenti"}},{"value":"650","label":"650","if":{"brand":"Innocenti"}},{"value":"Mini","label":"Mini","if":{"brand":"Innocenti"}},{"value":"Autres","label":"Autres","if":{"brand":"Innocenti"}},{"value":"D-max","label":"D-max","if":{"brand":"Isuzu"}},{"value":"Trooper Court","label":"Trooper Court","if":{"brand":"Isuzu"}},{"value":"Trooper Long","label":"Trooper Long","if":{"brand":"Isuzu"}},{"value":"Autres","label":"Autres","if":{"brand":"Isuzu"}},{"value":"Daily Combi","label":"Daily Combi","if":{"brand":"Iveco"}},{"value":"Autres","label":"Autres","if":{"brand":"Iveco"}},{"value":"Daimler","label":"Daimler","if":{"brand":"Jaguar"}},{"value":"E-pace","label":"E-pace","if":{"brand":"Jaguar"}},{"value":"F-pace","label":"F-pace","if":{"brand":"Jaguar"}},{"value":"F-type","label":"F-type","if":{"brand":"Jaguar"}},{"value":"Sovereign","label":"Sovereign","if":{"brand":"Jaguar"}},{"value":"S-type","label":"S-type","if":{"brand":"Jaguar"}},{"value":"V12","label":"V12","if":{"brand":"Jaguar"}},{"value":"X308","label":"X308","if":{"brand":"Jaguar"}},{"value":"Xe","label":"Xe","if":{"brand":"Jaguar"}},{"value":"Xf","label":"Xf","if":{"brand":"Jaguar"}},{"value":"Xj","label":"Xj","if":{"brand":"Jaguar"}},{"value":"Xj12","label":"Xj12","if":{"brand":"Jaguar"}},{"value":"Xj40","label":"Xj40","if":{"brand":"Jaguar"}},{"value":"Xjr","label":"Xjr","if":{"brand":"Jaguar"}},{"value":"Xj-s","label":"Xj-s","if":{"brand":"Jaguar"}},{"value":"Xk8","label":"Xk8","if":{"brand":"Jaguar"}},{"value":"Xkr","label":"Xkr","if":{"brand":"Jaguar"}},{"value":"X-type","label":"X-type","if":{"brand":"Jaguar"}},{"value":"Autres","label":"Autres","if":{"brand":"Jaguar"}},{"value":"Cherokee","label":"Cherokee","if":{"brand":"Jeep"}},{"value":"Commander","label":"Commander","if":{"brand":"Jeep"}},{"value":"Compass","label":"Compass","if":{"brand":"Jeep"}},{"value":"Compass Ii","label":"Compass Ii","if":{"brand":"Jeep"}},{"value":"Patriot","label":"Patriot","if":{"brand":"Jeep"}},{"value":"Renegade","label":"Renegade","if":{"brand":"Jeep"}},{"value":"Wrangler","label":"Wrangler","if":{"brand":"Jeep"}},{"value":"Autres","label":"Autres","if":{"brand":"Jeep"}},{"value":"Carens","label":"Carens","if":{"brand":"Kia"}},{"value":"Carnival","label":"Carnival","if":{"brand":"Kia"}},{"value":"Cee D","label":"Cee D","if":{"brand":"Kia"}},{"value":"Cerato","label":"Cerato","if":{"brand":"Kia"}},{"value":"Clarus","label":"Clarus","if":{"brand":"Kia"}},{"value":"Leo","label":"Leo","if":{"brand":"Kia"}},{"value":"Magentis","label":"Magentis","if":{"brand":"Kia"}},{"value":"Niro","label":"Niro","if":{"brand":"Kia"}},{"value":"Opirus","label":"Opirus","if":{"brand":"Kia"}},{"value":"Optima","label":"Optima","if":{"brand":"Kia"}},{"value":"Picanto","label":"Picanto","if":{"brand":"Kia"}},{"value":"Pride Break","label":"Pride Break","if":{"brand":"Kia"}},{"value":"Pro Cee D","label":"Pro Cee D","if":{"brand":"Kia"}},{"value":"Rio","label":"Rio","if":{"brand":"Kia"}},{"value":"Sephia","label":"Sephia","if":{"brand":"Kia"}},{"value":"Shuma","label":"Shuma","if":{"brand":"Kia"}},{"value":"Sorento","label":"Sorento","if":{"brand":"Kia"}},{"value":"Soul","label":"Soul","if":{"brand":"Kia"}},{"value":"Sportage","label":"Sportage","if":{"brand":"Kia"}},{"value":"Stonic","label":"Stonic","if":{"brand":"Kia"}},{"value":"Venga","label":"Venga","if":{"brand":"Kia"}},{"value":"Autres","label":"Autres","if":{"brand":"Kia"}},{"value":"110","label":"110","if":{"brand":"Lada"}},{"value":"111","label":"111","if":{"brand":"Lada"}},{"value":"112","label":"112","if":{"brand":"Lada"}},{"value":"1200","label":"1200","if":{"brand":"Lada"}},{"value":"1500","label":"1500","if":{"brand":"Lada"}},{"value":"1600","label":"1600","if":{"brand":"Lada"}},{"value":"2105","label":"2105","if":{"brand":"Lada"}},{"value":"2107","label":"2107","if":{"brand":"Lada"}},{"value":"Granta","label":"Granta","if":{"brand":"Lada"}},{"value":"Kalina","label":"Kalina","if":{"brand":"Lada"}},{"value":"Kalinka","label":"Kalinka","if":{"brand":"Lada"}},{"value":"Natacha","label":"Natacha","if":{"brand":"Lada"}},{"value":"Niva","label":"Niva","if":{"brand":"Lada"}},{"value":"Priora","label":"Priora","if":{"brand":"Lada"}},{"value":"Sagona","label":"Sagona","if":{"brand":"Lada"}},{"value":"Samara","label":"Samara","if":{"brand":"Lada"}},{"value":"Autres","label":"Autres","if":{"brand":"Lada"}},{"value":"Aventador","label":"Aventador","if":{"brand":"Lamborghini"}},{"value":"Countach","label":"Countach","if":{"brand":"Lamborghini"}},{"value":"Diablo","label":"Diablo","if":{"brand":"Lamborghini"}},{"value":"Gallardo","label":"Gallardo","if":{"brand":"Lamborghini"}},{"value":"Huracan","label":"Huracan","if":{"brand":"Lamborghini"}},{"value":"Jalpa","label":"Jalpa","if":{"brand":"Lamborghini"}},{"value":"LM","label":"LM","if":{"brand":"Lamborghini"}},{"value":"Murcielago","label":"Murcielago","if":{"brand":"Lamborghini"}},{"value":"Autres","label":"Autres","if":{"brand":"Lamborghini"}},{"value":"Beta","label":"Beta","if":{"brand":"Lancia"}},{"value":"Dedra","label":"Dedra","if":{"brand":"Lancia"}},{"value":"Delta","label":"Delta","if":{"brand":"Lancia"}},{"value":"Flavia","label":"Flavia","if":{"brand":"Lancia"}},{"value":"Gamma","label":"Gamma","if":{"brand":"Lancia"}},{"value":"Kappa","label":"Kappa","if":{"brand":"Lancia"}},{"value":"Lybra","label":"Lybra","if":{"brand":"Lancia"}},{"value":"Musa","label":"Musa","if":{"brand":"Lancia"}},{"value":"Phedra","label":"Phedra","if":{"brand":"Lancia"}},{"value":"Prisma","label":"Prisma","if":{"brand":"Lancia"}},{"value":"Thema","label":"Thema","if":{"brand":"Lancia"}},{"value":"Thesis","label":"Thesis","if":{"brand":"Lancia"}},{"value":"Trevi","label":"Trevi","if":{"brand":"Lancia"}},{"value":"Voyager","label":"Voyager","if":{"brand":"Lancia"}},{"value":"Y","label":"Y","if":{"brand":"Lancia"}},{"value":"Ypsilon","label":"Ypsilon","if":{"brand":"Lancia"}},{"value":"Zeta","label":"Zeta","if":{"brand":"Lancia"}},{"value":"Autres","label":"Autres","if":{"brand":"Lancia"}},{"value":"90","label":"90","if":{"brand":"Land Rover"}},{"value":"Defender","label":"Defender","if":{"brand":"Land Rover"}},{"value":"Discovery","label":"Discovery","if":{"brand":"Land Rover"}},{"value":"Freelander","label":"Freelander","if":{"brand":"Land Rover"}},{"value":"Range Rover","label":"Range Rover","if":{"brand":"Land Rover"}},{"value":"Range Rover Velar","label":"Range Rover Velar","if":{"brand":"Land Rover"}},{"value":"Autres","label":"Autres","if":{"brand":"Land Rover"}},{"value":"Ct","label":"Ct","if":{"brand":"Lexus"}},{"value":"Gs","label":"Gs","if":{"brand":"Lexus"}},{"value":"Lc","label":"Lc","if":{"brand":"Lexus"}},{"value":"Ls","label":"Ls","if":{"brand":"Lexus"}},{"value":"NX","label":"NX","if":{"brand":"Lexus"}},{"value":"RC","label":"RC","if":{"brand":"Lexus"}},{"value":"Rx","label":"Rx","if":{"brand":"Lexus"}},{"value":"Sc","label":"Sc","if":{"brand":"Lexus"}},{"value":"Autres","label":"Autres","if":{"brand":"Lexus"}},{"value":"161","label":"161","if":{"brand":"Ligier"}},{"value":"162","label":"162","if":{"brand":"Ligier"}},{"value":"Ambra","label":"Ambra","if":{"brand":"Ligier"}},{"value":"Be Sun Proline","label":"Be Sun Proline","if":{"brand":"Ligier"}},{"value":"Be Two","label":"Be Two","if":{"brand":"Ligier"}},{"value":"Be Up","label":"Be Up","if":{"brand":"Ligier"}},{"value":"Dué","label":"Dué","if":{"brand":"Ligier"}},{"value":"Flex L3","label":"Flex L3","if":{"brand":"Ligier"}},{"value":"Ixo","label":"Ixo","if":{"brand":"Ligier"}},{"value":"Ixo treck","label":"Ixo treck","if":{"brand":"Ligier"}},{"value":"JS RC","label":"JS RC","if":{"brand":"Ligier"}},{"value":"JS50","label":"JS50","if":{"brand":"Ligier"}},{"value":"Lyra","label":"Lyra","if":{"brand":"Ligier"}},{"value":"Nova","label":"Nova","if":{"brand":"Ligier"}},{"value":"Optima","label":"Optima","if":{"brand":"Ligier"}},{"value":"Optimax","label":"Optimax","if":{"brand":"Ligier"}},{"value":"X Cube","label":"X Cube","if":{"brand":"Ligier"}},{"value":"X-Pro","label":"X-Pro","if":{"brand":"Ligier"}},{"value":"X-Too","label":"X-Too","if":{"brand":"Ligier"}},{"value":"X-Too II","label":"X-Too II","if":{"brand":"Ligier"}},{"value":"X-Too MAX","label":"X-Too MAX","if":{"brand":"Ligier"}},{"value":"X-Too R","label":"X-Too R","if":{"brand":"Ligier"}},{"value":"X-Too RS","label":"X-Too RS","if":{"brand":"Ligier"}},{"value":"X-Too S","label":"X-Too S","if":{"brand":"Ligier"}},{"value":"Autres","label":"Autres","if":{"brand":"Ligier"}},{"value":"EBOX","label":"EBOX","if":{"brand":"Little"}},{"value":"LITTLE4","label":"LITTLE4","if":{"brand":"Little"}},{"value":"Autres","label":"Autres","if":{"brand":"Little"}},{"value":"2-eleven","label":"2-eleven","if":{"brand":"Lotus"}},{"value":"Eclat","label":"Eclat","if":{"brand":"Lotus"}},{"value":"Elan","label":"Elan","if":{"brand":"Lotus"}},{"value":"Elise","label":"Elise","if":{"brand":"Lotus"}},{"value":"Esprit","label":"Esprit","if":{"brand":"Lotus"}},{"value":"Evora","label":"Evora","if":{"brand":"Lotus"}},{"value":"Excel","label":"Excel","if":{"brand":"Lotus"}},{"value":"Exige","label":"Exige","if":{"brand":"Lotus"}},{"value":"Autres","label":"Autres","if":{"brand":"Lotus"}},{"value":"Bolero","label":"Bolero","if":{"brand":"Mahindra"}},{"value":"Goa","label":"Goa","if":{"brand":"Mahindra"}},{"value":"Autres","label":"Autres","if":{"brand":"Mahindra"}},{"value":"800","label":"800","if":{"brand":"Maruti"}},{"value":"Autres","label":"Autres","if":{"brand":"Maruti"}},{"value":"222 Coupe","label":"222 Coupe","if":{"brand":"Maserati"}},{"value":"3200 Gt","label":"3200 Gt","if":{"brand":"Maserati"}},{"value":"Biturbo","label":"Biturbo","if":{"brand":"Maserati"}},{"value":"Coupe","label":"Coupe","if":{"brand":"Maserati"}},{"value":"Ghibli","label":"Ghibli","if":{"brand":"Maserati"}},{"value":"Grancabrio","label":"Grancabrio","if":{"brand":"Maserati"}},{"value":"Granturismo","label":"Granturismo","if":{"brand":"Maserati"}},{"value":"Levante","label":"Levante","if":{"brand":"Maserati"}},{"value":"Quattroporte","label":"Quattroporte","if":{"brand":"Maserati"}},{"value":"Spider Cabriolet","label":"Spider Cabriolet","if":{"brand":"Maserati"}},{"value":"Spyder","label":"Spyder","if":{"brand":"Maserati"}},{"value":"Autres","label":"Autres","if":{"brand":"Maserati"}},{"value":"Mxt","label":"Mxt","if":{"brand":"Mastretta"}},{"value":"Autres","label":"Autres","if":{"brand":"Mastretta"}},{"value":"Maybach","label":"Maybach","if":{"brand":"Maybach"}},{"value":"Autres","label":"Autres","if":{"brand":"Maybach"}},{"value":"121","label":"121","if":{"brand":"Mazda"}},{"value":"2","label":"2","if":{"brand":"Mazda"}},{"value":"3","label":"3","if":{"brand":"Mazda"}},{"value":"323","label":"323","if":{"brand":"Mazda"}},{"value":"5","label":"5","if":{"brand":"Mazda"}},{"value":"6","label":"6","if":{"brand":"Mazda"}},{"value":"626","label":"626","if":{"brand":"Mazda"}},{"value":"929","label":"929","if":{"brand":"Mazda"}},{"value":"CX-3","label":"CX-3","if":{"brand":"Mazda"}},{"value":"Cx-5","label":"Cx-5","if":{"brand":"Mazda"}},{"value":"Cx-7","label":"Cx-7","if":{"brand":"Mazda"}},{"value":"Demio","label":"Demio","if":{"brand":"Mazda"}},{"value":"Mpv","label":"Mpv","if":{"brand":"Mazda"}},{"value":"Mx-3","label":"Mx-3","if":{"brand":"Mazda"}},{"value":"Mx-5","label":"Mx-5","if":{"brand":"Mazda"}},{"value":"Mx-6","label":"Mx-6","if":{"brand":"Mazda"}},{"value":"Premacy","label":"Premacy","if":{"brand":"Mazda"}},{"value":"Rx-7","label":"Rx-7","if":{"brand":"Mazda"}},{"value":"Rx-8","label":"Rx-8","if":{"brand":"Mazda"}},{"value":"Tribute","label":"Tribute","if":{"brand":"Mazda"}},{"value":"Xedos","label":"Xedos","if":{"brand":"Mazda"}},{"value":"Autres","label":"Autres","if":{"brand":"Mazda"}},{"value":"540C","label":"540C","if":{"brand":"Mclaren"}},{"value":"570GT","label":"570GT","if":{"brand":"Mclaren"}},{"value":"570S","label":"570S","if":{"brand":"Mclaren"}},{"value":"650S","label":"650S","if":{"brand":"Mclaren"}},{"value":"675LT","label":"675LT","if":{"brand":"Mclaren"}},{"value":"Mclaren 720s","label":"Mclaren 720s","if":{"brand":"Mclaren"}},{"value":"MP4","label":"MP4","if":{"brand":"Mclaren"}},{"value":"Autres","label":"Autres","if":{"brand":"Mclaren"}},{"value":"Break","label":"Break","if":{"brand":"Mega"}},{"value":"Cabriolet","label":"Cabriolet","if":{"brand":"Mega"}},{"value":"Club","label":"Club","if":{"brand":"Mega"}},{"value":"Concept","label":"Concept","if":{"brand":"Mega"}},{"value":"Autres","label":"Autres","if":{"brand":"Mega"}},{"value":"F","label":"F","if":{"brand":"Mg"}},{"value":"Tf","label":"Tf","if":{"brand":"Mg"}},{"value":"Zr","label":"Zr","if":{"brand":"Mg"}},{"value":"Zs","label":"Zs","if":{"brand":"Mg"}},{"value":"Zt","label":"Zt","if":{"brand":"Mg"}},{"value":"Autres","label":"Autres","if":{"brand":"Mg"}},{"value":"Mia","label":"Mia","if":{"brand":"Mia"}},{"value":"Autres","label":"Autres","if":{"brand":"Mia"}},{"value":"Cargo","label":"Cargo","if":{"brand":"Microcar"}},{"value":"Comores","label":"Comores","if":{"brand":"Microcar"}},{"value":"Dué","label":"Dué","if":{"brand":"Microcar"}},{"value":"F8C","label":"F8C","if":{"brand":"Microcar"}},{"value":"Family.1","label":"Family.1","if":{"brand":"Microcar"}},{"value":"Family.2","label":"Family.2","if":{"brand":"Microcar"}},{"value":"Lyra","label":"Lyra","if":{"brand":"Microcar"}},{"value":"M8","label":"M8","if":{"brand":"Microcar"}},{"value":"Madras","label":"Madras","if":{"brand":"Microcar"}},{"value":"MC1","label":"MC1","if":{"brand":"Microcar"}},{"value":"MC1 Family","label":"MC1 Family","if":{"brand":"Microcar"}},{"value":"MC1.1","label":"MC1.1","if":{"brand":"Microcar"}},{"value":"MC1.2","label":"MC1.2","if":{"brand":"Microcar"}},{"value":"MC2","label":"MC2","if":{"brand":"Microcar"}},{"value":"MC2.1","label":"MC2.1","if":{"brand":"Microcar"}},{"value":"MC2.2","label":"MC2.2","if":{"brand":"Microcar"}},{"value":"MGO","label":"MGO","if":{"brand":"Microcar"}},{"value":"MGO SXI","label":"MGO SXI","if":{"brand":"Microcar"}},{"value":"Sherpa électrique","label":"Sherpa électrique","if":{"brand":"Microcar"}},{"value":"Sherpa Yanmar","label":"Sherpa Yanmar","if":{"brand":"Microcar"}},{"value":"Sprint","label":"Sprint","if":{"brand":"Microcar"}},{"value":"Virgo","label":"Virgo","if":{"brand":"Microcar"}},{"value":"Virgo 2","label":"Virgo 2","if":{"brand":"Microcar"}},{"value":"Virgo 3 TQM","label":"Virgo 3 TQM","if":{"brand":"Microcar"}},{"value":"Virgo Activ","label":"Virgo Activ","if":{"brand":"Microcar"}},{"value":"Virgo Family","label":"Virgo Family","if":{"brand":"Microcar"}},{"value":"Virgo Highland","label":"Virgo Highland","if":{"brand":"Microcar"}},{"value":"Virgo Liberty","label":"Virgo Liberty","if":{"brand":"Microcar"}},{"value":"Virgo TQM","label":"Virgo TQM","if":{"brand":"Microcar"}},{"value":"Autres","label":"Autres","if":{"brand":"Microcar"}},{"value":"Mini","label":"Mini","if":{"brand":"Mini"}},{"value":"Mini Cabriolet","label":"Mini Cabriolet","if":{"brand":"Mini"}},{"value":"Autres","label":"Autres","if":{"brand":"Mini"}},{"value":"HX","label":"HX","if":{"brand":"Mini Hummer"}},{"value":"HX-T","label":"HX-T","if":{"brand":"Mini Hummer"}},{"value":"Autres","label":"Autres","if":{"brand":"Mini Hummer"}},{"value":"3000 Gt","label":"3000 Gt","if":{"brand":"Mitsubishi"}},{"value":"Asx","label":"Asx","if":{"brand":"Mitsubishi"}},{"value":"Carisma","label":"Carisma","if":{"brand":"Mitsubishi"}},{"value":"Colt","label":"Colt","if":{"brand":"Mitsubishi"}},{"value":"Galant","label":"Galant","if":{"brand":"Mitsubishi"}},{"value":"Grandis","label":"Grandis","if":{"brand":"Mitsubishi"}},{"value":"I-miev","label":"I-miev","if":{"brand":"Mitsubishi"}},{"value":"Lancer","label":"Lancer","if":{"brand":"Mitsubishi"}},{"value":"Montero","label":"Montero","if":{"brand":"Mitsubishi"}},{"value":"Outlander","label":"Outlander","if":{"brand":"Mitsubishi"}},{"value":"Pajero","label":"Pajero","if":{"brand":"Mitsubishi"}},{"value":"Pajero Pinin","label":"Pajero Pinin","if":{"brand":"Mitsubishi"}},{"value":"Space Runner","label":"Space Runner","if":{"brand":"Mitsubishi"}},{"value":"Space Star","label":"Space Star","if":{"brand":"Mitsubishi"}},{"value":"Space Wagon","label":"Space Wagon","if":{"brand":"Mitsubishi"}},{"value":"Autres","label":"Autres","if":{"brand":"Mitsubishi"}},{"value":"4\u002F4 Serie","label":"4\u002F4 Serie","if":{"brand":"Morgan"}},{"value":"Plus 4","label":"Plus 4","if":{"brand":"Morgan"}},{"value":"Plus 8","label":"Plus 8","if":{"brand":"Morgan"}},{"value":"V6","label":"V6","if":{"brand":"Morgan"}},{"value":"Autres","label":"Autres","if":{"brand":"Morgan"}},{"value":"100 Nx","label":"100 Nx","if":{"brand":"Nissan"}},{"value":"200 Sx","label":"200 Sx","if":{"brand":"Nissan"}},{"value":"350 Z Roadster","label":"350 Z Roadster","if":{"brand":"Nissan"}},{"value":"370z","label":"370z","if":{"brand":"Nissan"}},{"value":"Almera","label":"Almera","if":{"brand":"Nissan"}},{"value":"Cube","label":"Cube","if":{"brand":"Nissan"}},{"value":"Evalia","label":"Evalia","if":{"brand":"Nissan"}},{"value":"Gt-r","label":"Gt-r","if":{"brand":"Nissan"}},{"value":"Interstar","label":"Interstar","if":{"brand":"Nissan"}},{"value":"Juke","label":"Juke","if":{"brand":"Nissan"}},{"value":"Leaf","label":"Leaf","if":{"brand":"Nissan"}},{"value":"Maxima","label":"Maxima","if":{"brand":"Nissan"}},{"value":"Micra","label":"Micra","if":{"brand":"Nissan"}},{"value":"Murano","label":"Murano","if":{"brand":"Nissan"}},{"value":"Navara","label":"Navara","if":{"brand":"Nissan"}},{"value":"Note","label":"Note","if":{"brand":"Nissan"}},{"value":"Nv200","label":"Nv200","if":{"brand":"Nissan"}},{"value":"Nv300 Combi","label":"Nv300 Combi","if":{"brand":"Nissan"}},{"value":"Nv400 Combi","label":"Nv400 Combi","if":{"brand":"Nissan"}},{"value":"Pathfinder","label":"Pathfinder","if":{"brand":"Nissan"}},{"value":"Patrol","label":"Patrol","if":{"brand":"Nissan"}},{"value":"Pixo","label":"Pixo","if":{"brand":"Nissan"}},{"value":"Prairie","label":"Prairie","if":{"brand":"Nissan"}},{"value":"Primastar","label":"Primastar","if":{"brand":"Nissan"}},{"value":"Primera","label":"Primera","if":{"brand":"Nissan"}},{"value":"Pulsar","label":"Pulsar","if":{"brand":"Nissan"}},{"value":"Qashqai","label":"Qashqai","if":{"brand":"Nissan"}},{"value":"Serena","label":"Serena","if":{"brand":"Nissan"}},{"value":"Sunny","label":"Sunny","if":{"brand":"Nissan"}},{"value":"Terrano","label":"Terrano","if":{"brand":"Nissan"}},{"value":"Vanette","label":"Vanette","if":{"brand":"Nissan"}},{"value":"X-trail","label":"X-trail","if":{"brand":"Nissan"}},{"value":"Z","label":"Z","if":{"brand":"Nissan"}},{"value":"Zx","label":"Zx","if":{"brand":"Nissan"}},{"value":"Autres","label":"Autres","if":{"brand":"Nissan"}},{"value":"180 Cevennes","label":"180 Cevennes","if":{"brand":"Pgo"}},{"value":"Hemera","label":"Hemera","if":{"brand":"Pgo"}},{"value":"Speedster Ii","label":"Speedster Ii","if":{"brand":"Pgo"}},{"value":"Autres","label":"Autres","if":{"brand":"Pgo"}},{"value":"Porter Pv","label":"Porter Pv","if":{"brand":"Piaggio"}},{"value":"Autres","label":"Autres","if":{"brand":"Piaggio"}},{"value":"125","label":"125","if":{"brand":"Polski\u002Ffso"}},{"value":"1300","label":"1300","if":{"brand":"Polski\u002Ffso"}},{"value":"1500","label":"1500","if":{"brand":"Polski\u002Ffso"}},{"value":"Atou","label":"Atou","if":{"brand":"Polski\u002Ffso"}},{"value":"Caro","label":"Caro","if":{"brand":"Polski\u002Ffso"}},{"value":"Polonez","label":"Polonez","if":{"brand":"Polski\u002Ffso"}},{"value":"Autres","label":"Autres","if":{"brand":"Polski\u002Ffso"}},{"value":"Firebird","label":"Firebird","if":{"brand":"Pontiac"}},{"value":"Trans-sport","label":"Trans-sport","if":{"brand":"Pontiac"}},{"value":"Autres","label":"Autres","if":{"brand":"Pontiac"}},{"value":"911","label":"911","if":{"brand":"Porsche"}},{"value":"918","label":"918","if":{"brand":"Porsche"}},{"value":"924","label":"924","if":{"brand":"Porsche"}},{"value":"928","label":"928","if":{"brand":"Porsche"}},{"value":"944","label":"944","if":{"brand":"Porsche"}},{"value":"968","label":"968","if":{"brand":"Porsche"}},{"value":"Boxster","label":"Boxster","if":{"brand":"Porsche"}},{"value":"Carrera Gt","label":"Carrera Gt","if":{"brand":"Porsche"}},{"value":"Cayenne","label":"Cayenne","if":{"brand":"Porsche"}},{"value":"Cayman","label":"Cayman","if":{"brand":"Porsche"}},{"value":"Macan","label":"Macan","if":{"brand":"Porsche"}},{"value":"Panamera","label":"Panamera","if":{"brand":"Porsche"}},{"value":"Autres","label":"Autres","if":{"brand":"Porsche"}},{"value":"300er","label":"300er","if":{"brand":"Proton"}},{"value":"400er","label":"400er","if":{"brand":"Proton"}},{"value":"Liftback","label":"Liftback","if":{"brand":"Proton"}},{"value":"Sedan","label":"Sedan","if":{"brand":"Proton"}},{"value":"Autres","label":"Autres","if":{"brand":"Proton"}},{"value":"Camargue","label":"Camargue","if":{"brand":"Rolls-royce"}},{"value":"Corniche","label":"Corniche","if":{"brand":"Rolls-royce"}},{"value":"Flying Spur","label":"Flying Spur","if":{"brand":"Rolls-royce"}},{"value":"Ghost","label":"Ghost","if":{"brand":"Rolls-royce"}},{"value":"Park Ward","label":"Park Ward","if":{"brand":"Rolls-royce"}},{"value":"Phantom","label":"Phantom","if":{"brand":"Rolls-royce"}},{"value":"Silver","label":"Silver","if":{"brand":"Rolls-royce"}},{"value":"Touring","label":"Touring","if":{"brand":"Rolls-royce"}},{"value":"Autres","label":"Autres","if":{"brand":"Rolls-royce"}},{"value":"100","label":"100","if":{"brand":"Rover"}},{"value":"100 Cabriolet","label":"100 Cabriolet","if":{"brand":"Rover"}},{"value":"200","label":"200","if":{"brand":"Rover"}},{"value":"25","label":"25","if":{"brand":"Rover"}},{"value":"400","label":"400","if":{"brand":"Rover"}},{"value":"45","label":"45","if":{"brand":"Rover"}},{"value":"600","label":"600","if":{"brand":"Rover"}},{"value":"75","label":"75","if":{"brand":"Rover"}},{"value":"800","label":"800","if":{"brand":"Rover"}},{"value":"Maestro","label":"Maestro","if":{"brand":"Rover"}},{"value":"Metro","label":"Metro","if":{"brand":"Rover"}},{"value":"Mini","label":"Mini","if":{"brand":"Rover"}},{"value":"Montego","label":"Montego","if":{"brand":"Rover"}},{"value":"SD1","label":"SD1","if":{"brand":"Rover"}},{"value":"Streetwise","label":"Streetwise","if":{"brand":"Rover"}},{"value":"Autres","label":"Autres","if":{"brand":"Rover"}},{"value":"900","label":"900","if":{"brand":"Saab"}},{"value":"9000","label":"9000","if":{"brand":"Saab"}},{"value":"9-3","label":"9-3","if":{"brand":"Saab"}},{"value":"9-3x","label":"9-3x","if":{"brand":"Saab"}},{"value":"9-4x","label":"9-4x","if":{"brand":"Saab"}},{"value":"9-5","label":"9-5","if":{"brand":"Saab"}},{"value":"9-7x","label":"9-7x","if":{"brand":"Saab"}},{"value":"Autres","label":"Autres","if":{"brand":"Saab"}},{"value":"Nairobi","label":"Nairobi","if":{"brand":"Santana"}},{"value":"Ps 10","label":"Ps 10","if":{"brand":"Santana"}},{"value":"S 350","label":"S 350","if":{"brand":"Santana"}},{"value":"S 410","label":"S 410","if":{"brand":"Santana"}},{"value":"S 413","label":"S 413","if":{"brand":"Santana"}},{"value":"Samurai","label":"Samurai","if":{"brand":"Santana"}},{"value":"Vitara","label":"Vitara","if":{"brand":"Santana"}},{"value":"Autres","label":"Autres","if":{"brand":"Santana"}},{"value":"Agora 2","label":"Agora 2","if":{"brand":"Savel"}},{"value":"Agora 2B","label":"Agora 2B","if":{"brand":"Savel"}},{"value":"Agora Luxe 9 Kw","label":"Agora Luxe 9 Kw","if":{"brand":"Savel"}},{"value":"Spacia","label":"Spacia","if":{"brand":"Savel"}},{"value":"Spacia 2","label":"Spacia 2","if":{"brand":"Savel"}},{"value":"Vigane","label":"Vigane","if":{"brand":"Savel"}},{"value":"Autres","label":"Autres","if":{"brand":"Savel"}},{"value":"Alhambra","label":"Alhambra","if":{"brand":"Seat"}},{"value":"Altea","label":"Altea","if":{"brand":"Seat"}},{"value":"Arona","label":"Arona","if":{"brand":"Seat"}},{"value":"Arosa","label":"Arosa","if":{"brand":"Seat"}},{"value":"Ateca","label":"Ateca","if":{"brand":"Seat"}},{"value":"Cordoba","label":"Cordoba","if":{"brand":"Seat"}},{"value":"Exeo","label":"Exeo","if":{"brand":"Seat"}},{"value":"Fura","label":"Fura","if":{"brand":"Seat"}},{"value":"Ibiza","label":"Ibiza","if":{"brand":"Seat"}},{"value":"Inca","label":"Inca","if":{"brand":"Seat"}},{"value":"Leon","label":"Leon","if":{"brand":"Seat"}},{"value":"Malaga","label":"Malaga","if":{"brand":"Seat"}},{"value":"Marbella","label":"Marbella","if":{"brand":"Seat"}},{"value":"Mii","label":"Mii","if":{"brand":"Seat"}},{"value":"Ronda","label":"Ronda","if":{"brand":"Seat"}},{"value":"Terra","label":"Terra","if":{"brand":"Seat"}},{"value":"Toledo","label":"Toledo","if":{"brand":"Seat"}},{"value":"Autres","label":"Autres","if":{"brand":"Seat"}},{"value":"Ceo","label":"Ceo","if":{"brand":"Shuanghuan"}},{"value":"Autres","label":"Autres","if":{"brand":"Shuanghuan"}},{"value":"Abaca","label":"Abaca","if":{"brand":"Simpa JDM"}},{"value":"Albizia","label":"Albizia","if":{"brand":"Simpa JDM"}},{"value":"Aloes","label":"Aloes","if":{"brand":"Simpa JDM"}},{"value":"Orane","label":"Orane","if":{"brand":"Simpa JDM"}},{"value":"Roxsy","label":"Roxsy","if":{"brand":"Simpa JDM"}},{"value":"Titane","label":"Titane","if":{"brand":"Simpa JDM"}},{"value":"X5 Croisière","label":"X5 Croisière","if":{"brand":"Simpa JDM"}},{"value":"Xheos","label":"Xheos","if":{"brand":"Simpa JDM"}},{"value":"Autres","label":"Autres","if":{"brand":"Simpa JDM"}},{"value":"105","label":"105","if":{"brand":"Skoda"}},{"value":"120","label":"120","if":{"brand":"Skoda"}},{"value":"130","label":"130","if":{"brand":"Skoda"}},{"value":"Citigo","label":"Citigo","if":{"brand":"Skoda"}},{"value":"Fabia","label":"Fabia","if":{"brand":"Skoda"}},{"value":"Favorit","label":"Favorit","if":{"brand":"Skoda"}},{"value":"Felicia","label":"Felicia","if":{"brand":"Skoda"}},{"value":"Forman","label":"Forman","if":{"brand":"Skoda"}},{"value":"Karoq","label":"Karoq","if":{"brand":"Skoda"}},{"value":"Kodiaq","label":"Kodiaq","if":{"brand":"Skoda"}},{"value":"Octavia","label":"Octavia","if":{"brand":"Skoda"}},{"value":"Rapid","label":"Rapid","if":{"brand":"Skoda"}},{"value":"Roomster","label":"Roomster","if":{"brand":"Skoda"}},{"value":"Superb","label":"Superb","if":{"brand":"Skoda"}},{"value":"Yeti","label":"Yeti","if":{"brand":"Skoda"}},{"value":"Autres","label":"Autres","if":{"brand":"Skoda"}},{"value":"City","label":"City","if":{"brand":"Smart"}},{"value":"Forfour","label":"Forfour","if":{"brand":"Smart"}},{"value":"Fortwo","label":"Fortwo","if":{"brand":"Smart"}},{"value":"Roadster","label":"Roadster","if":{"brand":"Smart"}},{"value":"Autres","label":"Autres","if":{"brand":"Smart"}},{"value":"Actyon","label":"Actyon","if":{"brand":"Ssangyong"}},{"value":"Korando","label":"Korando","if":{"brand":"Ssangyong"}},{"value":"Kyron","label":"Kyron","if":{"brand":"Ssangyong"}},{"value":"Musso","label":"Musso","if":{"brand":"Ssangyong"}},{"value":"Rexton","label":"Rexton","if":{"brand":"Ssangyong"}},{"value":"Rodius","label":"Rodius","if":{"brand":"Ssangyong"}},{"value":"Tivoli","label":"Tivoli","if":{"brand":"Ssangyong"}},{"value":"Tivoli Xlv","label":"Tivoli Xlv","if":{"brand":"Ssangyong"}},{"value":"Autres","label":"Autres","if":{"brand":"Ssangyong"}},{"value":"B9 Tribeca","label":"B9 Tribeca","if":{"brand":"Subaru"}},{"value":"Brz","label":"Brz","if":{"brand":"Subaru"}},{"value":"E 12","label":"E 12","if":{"brand":"Subaru"}},{"value":"Forester","label":"Forester","if":{"brand":"Subaru"}},{"value":"G3x Justy","label":"G3x Justy","if":{"brand":"Subaru"}},{"value":"Impreza","label":"Impreza","if":{"brand":"Subaru"}},{"value":"Justy","label":"Justy","if":{"brand":"Subaru"}},{"value":"Legacy","label":"Legacy","if":{"brand":"Subaru"}},{"value":"Levorg","label":"Levorg","if":{"brand":"Subaru"}},{"value":"Svx","label":"Svx","if":{"brand":"Subaru"}},{"value":"Trezia","label":"Trezia","if":{"brand":"Subaru"}},{"value":"Tribeca","label":"Tribeca","if":{"brand":"Subaru"}},{"value":"Vanille","label":"Vanille","if":{"brand":"Subaru"}},{"value":"WRX STI","label":"WRX STI","if":{"brand":"Subaru"}},{"value":"Xv","label":"Xv","if":{"brand":"Subaru"}},{"value":"Autres","label":"Autres","if":{"brand":"Subaru"}},{"value":"Alto","label":"Alto","if":{"brand":"Suzuki"}},{"value":"Baleno","label":"Baleno","if":{"brand":"Suzuki"}},{"value":"Celerio","label":"Celerio","if":{"brand":"Suzuki"}},{"value":"Grand Vitara","label":"Grand Vitara","if":{"brand":"Suzuki"}},{"value":"Ignis","label":"Ignis","if":{"brand":"Suzuki"}},{"value":"Jimny","label":"Jimny","if":{"brand":"Suzuki"}},{"value":"Kizashi","label":"Kizashi","if":{"brand":"Suzuki"}},{"value":"Liana","label":"Liana","if":{"brand":"Suzuki"}},{"value":"Samurai","label":"Samurai","if":{"brand":"Suzuki"}},{"value":"Splash","label":"Splash","if":{"brand":"Suzuki"}},{"value":"Swift","label":"Swift","if":{"brand":"Suzuki"}},{"value":"Sx4","label":"Sx4","if":{"brand":"Suzuki"}},{"value":"Vitara","label":"Vitara","if":{"brand":"Suzuki"}},{"value":"Wagon R","label":"Wagon R","if":{"brand":"Suzuki"}},{"value":"X-90","label":"X-90","if":{"brand":"Suzuki"}},{"value":"Autres","label":"Autres","if":{"brand":"Suzuki"}},{"value":"Horizon","label":"Horizon","if":{"brand":"Talbot"}},{"value":"Murena","label":"Murena","if":{"brand":"Talbot"}},{"value":"Rancho","label":"Rancho","if":{"brand":"Talbot"}},{"value":"Samba","label":"Samba","if":{"brand":"Talbot"}},{"value":"Solara","label":"Solara","if":{"brand":"Talbot"}},{"value":"Autres","label":"Autres","if":{"brand":"Talbot"}},{"value":"1100","label":"1100","if":{"brand":"Tavria"}},{"value":"Autres","label":"Autres","if":{"brand":"Tavria"}},{"value":"Model S","label":"Model S","if":{"brand":"Tesla"}},{"value":"Model X","label":"Model X","if":{"brand":"Tesla"}},{"value":"Autres","label":"Autres","if":{"brand":"Tesla"}},{"value":"4-runner","label":"4-runner","if":{"brand":"Toyota"}},{"value":"Auris","label":"Auris","if":{"brand":"Toyota"}},{"value":"Avensis","label":"Avensis","if":{"brand":"Toyota"}},{"value":"Aygo","label":"Aygo","if":{"brand":"Toyota"}},{"value":"Camry","label":"Camry","if":{"brand":"Toyota"}},{"value":"Carina","label":"Carina","if":{"brand":"Toyota"}},{"value":"Celica","label":"Celica","if":{"brand":"Toyota"}},{"value":"C-hr","label":"C-hr","if":{"brand":"Toyota"}},{"value":"Corolla","label":"Corolla","if":{"brand":"Toyota"}},{"value":"Escape","label":"Escape","if":{"brand":"Toyota"}},{"value":"Gt86","label":"Gt86","if":{"brand":"Toyota"}},{"value":"Hi Ace","label":"Hi Ace","if":{"brand":"Toyota"}},{"value":"Iq","label":"Iq","if":{"brand":"Toyota"}},{"value":"Land Cruiser","label":"Land Cruiser","if":{"brand":"Toyota"}},{"value":"Lite-ace","label":"Lite-ace","if":{"brand":"Toyota"}},{"value":"Modele F","label":"Modele F","if":{"brand":"Toyota"}},{"value":"Mr","label":"Mr","if":{"brand":"Toyota"}},{"value":"Mr2","label":"Mr2","if":{"brand":"Toyota"}},{"value":"Paseo","label":"Paseo","if":{"brand":"Toyota"}},{"value":"Picnic","label":"Picnic","if":{"brand":"Toyota"}},{"value":"Previa","label":"Previa","if":{"brand":"Toyota"}},{"value":"Prius","label":"Prius","if":{"brand":"Toyota"}},{"value":"Proace Combi","label":"Proace Combi","if":{"brand":"Toyota"}},{"value":"Rav 4","label":"Rav 4","if":{"brand":"Toyota"}},{"value":"Starlet","label":"Starlet","if":{"brand":"Toyota"}},{"value":"Supra","label":"Supra","if":{"brand":"Toyota"}},{"value":"Tercel","label":"Tercel","if":{"brand":"Toyota"}},{"value":"Urban Cruiser","label":"Urban Cruiser","if":{"brand":"Toyota"}},{"value":"Verso","label":"Verso","if":{"brand":"Toyota"}},{"value":"Yaris","label":"Yaris","if":{"brand":"Toyota"}},{"value":"Autres","label":"Autres","if":{"brand":"Toyota"}},{"value":"350i","label":"350i","if":{"brand":"Tvr"}},{"value":"Cerbera","label":"Cerbera","if":{"brand":"Tvr"}},{"value":"Chimaera","label":"Chimaera","if":{"brand":"Tvr"}},{"value":"Griffith","label":"Griffith","if":{"brand":"Tvr"}},{"value":"S4","label":"S4","if":{"brand":"Tvr"}},{"value":"Autres","label":"Autres","if":{"brand":"Tvr"}},{"value":"Cabrio Transcup","label":"Cabrio Transcup","if":{"brand":"Venturi"}},{"value":"Coupe","label":"Coupe","if":{"brand":"Venturi"}},{"value":"Spider","label":"Spider","if":{"brand":"Venturi"}},{"value":"Autres","label":"Autres","if":{"brand":"Venturi"}},{"value":"240","label":"240","if":{"brand":"Volvo"}},{"value":"240 Break","label":"240 Break","if":{"brand":"Volvo"}},{"value":"340 \u002F 360","label":"340 \u002F 360","if":{"brand":"Volvo"}},{"value":"440 \u002F 460","label":"440 \u002F 460","if":{"brand":"Volvo"}},{"value":"480","label":"480","if":{"brand":"Volvo"}},{"value":"850","label":"850","if":{"brand":"Volvo"}},{"value":"940 \u002F Polar","label":"940 \u002F Polar","if":{"brand":"Volvo"}},{"value":"960","label":"960","if":{"brand":"Volvo"}},{"value":"C30","label":"C30","if":{"brand":"Volvo"}},{"value":"C70","label":"C70","if":{"brand":"Volvo"}},{"value":"S40","label":"S40","if":{"brand":"Volvo"}},{"value":"S60","label":"S60","if":{"brand":"Volvo"}},{"value":"S70","label":"S70","if":{"brand":"Volvo"}},{"value":"S80","label":"S80","if":{"brand":"Volvo"}},{"value":"S90","label":"S90","if":{"brand":"Volvo"}},{"value":"V40","label":"V40","if":{"brand":"Volvo"}},{"value":"V50","label":"V50","if":{"brand":"Volvo"}},{"value":"V60","label":"V60","if":{"brand":"Volvo"}},{"value":"V70","label":"V70","if":{"brand":"Volvo"}},{"value":"V90","label":"V90","if":{"brand":"Volvo"}},{"value":"Xc40","label":"Xc40","if":{"brand":"Volvo"}},{"value":"Xc60","label":"Xc60","if":{"brand":"Volvo"}},{"value":"Xc70","label":"Xc70","if":{"brand":"Volvo"}},{"value":"Xc90","label":"Xc90","if":{"brand":"Volvo"}},{"value":"Autres","label":"Autres","if":{"brand":"Volvo"}},{"value":"Autres","label":"Autres","if":{"brand":"Autres"}}]},"price":{"values":[{"label":"0"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"1500","label":"1 500"},{"value":"2000","label":"2 000"},{"value":"2500","label":"2 500"},{"value":"3000","label":"3 000"},{"value":"3500","label":"3 500"},{"value":"4000","label":"4 000"},{"value":"4500","label":"4 500"},{"value":"5000","label":"5 000"},{"value":"5500","label":"5 500"},{"value":"6000","label":"6 000"},{"value":"6500","label":"6 500"},{"value":"7000","label":"7 000"},{"value":"7500","label":"7 500"},{"value":"8000","label":"8 000"},{"value":"8500","label":"8 500"},{"value":"9000","label":"9 000"},{"value":"9500","label":"9 500"},{"value":"10000","label":"10 000"},{"value":"11000","label":"11 000"},{"value":"12000","label":"12 000"},{"value":"13000","label":"13 000"},{"value":"14000","label":"14 000"},{"value":"15000","label":"15 000"},{"value":"17500","label":"17 500"},{"value":"20000","label":"20 000"},{"value":"22500","label":"22 500"},{"value":"25000","label":"25 000"},{"value":"27500","label":"27 500"},{"value":"30000","label":"30 000"},{"value":"32500","label":"32 500"},{"value":"35000","label":"35 000"},{"value":"37500","label":"37 500"},{"value":"40000","label":"40 000"},{"value":"42500","label":"42 500"},{"value":"45000","label":"45 000"},{"value":"47500","label":"47 500"},{"value":"50000","label":"50 000"},{"label":"50 000 +"}]},"regdate":{"values":[{"value":"1960","label":"1960"},{"value":"1961","label":"1961"},{"value":"1962","label":"1962"},{"value":"1963","label":"1963"},{"value":"1964","label":"1964"},{"value":"1965","label":"1965"},{"value":"1966","label":"1966"},{"value":"1967","label":"1967"},{"value":"1968","label":"1968"},{"value":"1969","label":"1969"},{"value":"1970","label":"1970"},{"value":"1971","label":"1971"},{"value":"1972","label":"1972"},{"value":"1973","label":"1973"},{"value":"1974","label":"1974"},{"value":"1975","label":"1975"},{"value":"1976","label":"1976"},{"value":"1977","label":"1977"},{"value":"1978","label":"1978"},{"value":"1979","label":"1979"},{"value":"1980","label":"1980"},{"value":"1981","label":"1981"},{"value":"1982","label":"1982"},{"value":"1983","label":"1983"},{"value":"1984","label":"1984"},{"value":"1985","label":"1985"},{"value":"1986","label":"1986"},{"value":"1987","label":"1987"},{"value":"1988","label":"1988"},{"value":"1989","label":"1989"},{"value":"1990","label":"1990"},{"value":"1991","label":"1991"},{"value":"1992","label":"1992"},{"value":"1993","label":"1993"},{"value":"1994","label":"1994"},{"value":"1995","label":"1995"},{"value":"1996","label":"1996"},{"value":"1997","label":"1997"},{"value":"1998","label":"1998"},{"value":"1999","label":"1999"},{"value":"2000","label":"2000"},{"value":"2001","label":"2001"},{"value":"2002","label":"2002"},{"value":"2003","label":"2003"},{"value":"2004","label":"2004"},{"value":"2005","label":"2005"},{"value":"2006","label":"2006"},{"value":"2007","label":"2007"},{"value":"2008","label":"2008"},{"value":"2009","label":"2009"},{"value":"2010","label":"2010"},{"value":"2011","label":"2011"},{"value":"2012","label":"2012"},{"value":"2013","label":"2013"},{"value":"2014","label":"2014"},{"value":"2015","label":"2015"},{"value":"2016","label":"2016"},{"value":"2017","label":"2017"},{"value":"2018","label":"2018"},{"value":"2019","label":"2019"}]},"vehicle_vsp":{"values":[{"value":"avecpermis","label":"Avec permis"},{"value":"sanspermis","label":"Sans permis"}]}},"3":{"cubic_capacity":{"values":[{"label":"0"},{"value":"50","label":"50"},{"value":"80","label":"80"},{"value":"125","label":"125"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"value":"600","label":"600"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]},"mileage":{"values":[{"label":"0"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"20000","label":"20 000"},{"value":"30000","label":"30 000"},{"value":"40000","label":"40 000"},{"value":"50000","label":"50 000"},{"value":"60000","label":"60 000"},{"value":"70000","label":"70 000"},{"value":"80000","label":"80 000"},{"value":"90000","label":"90 000"},{"value":"100000","label":"100 000"},{"value":"125000","label":"125 000"},{"value":"150000","label":"150 000"},{"value":"175000","label":"175 000"},{"value":"200000","label":"200 000"},{"value":"250000","label":"250 000"},{"label":"250 000 +"}]},"moto_brand":{"values":[{"label":"Toutes"},{"value":"aprilia","label":"Aprilia"},{"value":"bmw","label":"Bmw"},{"value":"ducati","label":"Ducati"},{"value":"harley","label":"Harley Davidson"},{"value":"honda","label":"Honda"},{"value":"kawasaki","label":"Kawasaki"},{"value":"ktm","label":"KTM"},{"value":"kymco","label":"Kymco"},{"value":"peugeot","label":"Peugeot"},{"value":"piaggio","label":"Piaggio"},{"value":"suzuki","label":"Suzuki"},{"value":"triumph","label":"Triumph"},{"value":"vespa","label":"Vespa"},{"value":"yamaha","label":"Yamaha"}]},"moto_type":{"values":[{"value":"moto","label":"Moto"},{"value":"scooter","label":"Scooter"},{"value":"quad","label":"Quad"}]},"price":{"values":[{"label":"0"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"1250","label":"1 250"},{"value":"1500","label":"1 500"},{"value":"2000","label":"2 000"},{"value":"2500","label":"2 500"},{"value":"3000","label":"3 000"},{"value":"3500","label":"3 500"},{"value":"4000","label":"4 000"},{"value":"5000","label":"5 000"},{"value":"7500","label":"7 500"},{"value":"10000","label":"10 000"},{"value":"12500","label":"12 500"},{"value":"15000","label":"15 000"},{"value":"17500","label":"17 500"},{"value":"20000","label":"20 000"},{"label":"20 000 +"}]},"regdate":{"values":[{"value":"1960","label":"1960"},{"value":"1961","label":"1961"},{"value":"1962","label":"1962"},{"value":"1963","label":"1963"},{"value":"1964","label":"1964"},{"value":"1965","label":"1965"},{"value":"1966","label":"1966"},{"value":"1967","label":"1967"},{"value":"1968","label":"1968"},{"value":"1969","label":"1969"},{"value":"1970","label":"1970"},{"value":"1971","label":"1971"},{"value":"1972","label":"1972"},{"value":"1973","label":"1973"},{"value":"1974","label":"1974"},{"value":"1975","label":"1975"},{"value":"1976","label":"1976"},{"value":"1977","label":"1977"},{"value":"1978","label":"1978"},{"value":"1979","label":"1979"},{"value":"1980","label":"1980"},{"value":"1981","label":"1981"},{"value":"1982","label":"1982"},{"value":"1983","label":"1983"},{"value":"1984","label":"1984"},{"value":"1985","label":"1985"},{"value":"1986","label":"1986"},{"value":"1987","label":"1987"},{"value":"1988","label":"1988"},{"value":"1989","label":"1989"},{"value":"1990","label":"1990"},{"value":"1991","label":"1991"},{"value":"1992","label":"1992"},{"value":"1993","label":"1993"},{"value":"1994","label":"1994"},{"value":"1995","label":"1995"},{"value":"1996","label":"1996"},{"value":"1997","label":"1997"},{"value":"1998","label":"1998"},{"value":"1999","label":"1999"},{"value":"2000","label":"2000"},{"value":"2001","label":"2001"},{"value":"2002","label":"2002"},{"value":"2003","label":"2003"},{"value":"2004","label":"2004"},{"value":"2005","label":"2005"},{"value":"2006","label":"2006"},{"value":"2007","label":"2007"},{"value":"2008","label":"2008"},{"value":"2009","label":"2009"},{"value":"2010","label":"2010"},{"value":"2011","label":"2011"},{"value":"2012","label":"2012"},{"value":"2013","label":"2013"},{"value":"2014","label":"2014"},{"value":"2015","label":"2015"},{"value":"2016","label":"2016"},{"value":"2017","label":"2017"},{"value":"2018","label":"2018"},{"value":"2019","label":"2019"}]}},"4":{"mileage":{"values":[{"label":"0"},{"value":"10000","label":"10 000"},{"value":"20000","label":"20 000"},{"value":"30000","label":"30 000"},{"value":"40000","label":"40 000"},{"value":"50000","label":"50 000"},{"value":"60000","label":"60 000"},{"value":"70000","label":"70 000"},{"value":"80000","label":"80 000"},{"value":"90000","label":"90 000"},{"value":"100000","label":"100 000"},{"value":"125000","label":"125 000"},{"value":"150000","label":"150 000"},{"value":"175000","label":"175 000"},{"value":"200000","label":"200 000"},{"value":"225000","label":"225 000"},{"value":"250000","label":"250 000"},{"label":"250 000 +"}]},"price":{"values":[{"label":"0"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"1500","label":"1 500"},{"value":"2000","label":"2 000"},{"value":"2500","label":"2 500"},{"value":"3000","label":"3 000"},{"value":"4000","label":"4 000"},{"value":"5000","label":"5 000"},{"value":"6000","label":"6 000"},{"value":"7000","label":"7 000"},{"value":"8000","label":"8 000"},{"value":"9000","label":"9 000"},{"value":"10000","label":"10 000"},{"value":"11000","label":"11 000"},{"value":"12000","label":"12 000"},{"value":"13000","label":"13 000"},{"value":"14000","label":"14 000"},{"value":"15000","label":"15 000"},{"value":"17500","label":"17 500"},{"value":"20000","label":"20 000"},{"value":"22500","label":"22 500"},{"value":"25000","label":"25 000"},{"value":"27500","label":"27 500"},{"value":"30000","label":"30 000"},{"value":"35000","label":"35 000"},{"value":"40000","label":"40 000"},{"value":"45000","label":"45 000"},{"value":"50000","label":"50 000"},{"label":"50 000 +"}]},"regdate":{"values":[{"value":"1960","label":"1960"},{"value":"1961","label":"1961"},{"value":"1962","label":"1962"},{"value":"1963","label":"1963"},{"value":"1964","label":"1964"},{"value":"1965","label":"1965"},{"value":"1966","label":"1966"},{"value":"1967","label":"1967"},{"value":"1968","label":"1968"},{"value":"1969","label":"1969"},{"value":"1970","label":"1970"},{"value":"1971","label":"1971"},{"value":"1972","label":"1972"},{"value":"1973","label":"1973"},{"value":"1974","label":"1974"},{"value":"1975","label":"1975"},{"value":"1976","label":"1976"},{"value":"1977","label":"1977"},{"value":"1978","label":"1978"},{"value":"1979","label":"1979"},{"value":"1980","label":"1980"},{"value":"1981","label":"1981"},{"value":"1982","label":"1982"},{"value":"1983","label":"1983"},{"value":"1984","label":"1984"},{"value":"1985","label":"1985"},{"value":"1986","label":"1986"},{"value":"1987","label":"1987"},{"value":"1988","label":"1988"},{"value":"1989","label":"1989"},{"value":"1990","label":"1990"},{"value":"1991","label":"1991"},{"value":"1992","label":"1992"},{"value":"1993","label":"1993"},{"value":"1994","label":"1994"},{"value":"1995","label":"1995"},{"value":"1996","label":"1996"},{"value":"1997","label":"1997"},{"value":"1998","label":"1998"},{"value":"1999","label":"1999"},{"value":"2000","label":"2000"},{"value":"2001","label":"2001"},{"value":"2002","label":"2002"},{"value":"2003","label":"2003"},{"value":"2004","label":"2004"},{"value":"2005","label":"2005"},{"value":"2006","label":"2006"},{"value":"2007","label":"2007"},{"value":"2008","label":"2008"},{"value":"2009","label":"2009"},{"value":"2010","label":"2010"},{"value":"2011","label":"2011"},{"value":"2012","label":"2012"},{"value":"2013","label":"2013"},{"value":"2014","label":"2014"},{"value":"2015","label":"2015"},{"value":"2016","label":"2016"},{"value":"2017","label":"2017"},{"value":"2018","label":"2018"},{"value":"2019","label":"2019"}]}},"5":{"fuel":{"values":[{"value":"1","label":"Essence"},{"value":"2","label":"Diesel"},{"value":"6","label":"Hybride"},{"value":"4","label":"Electrique"},{"value":"3","label":"GPL"},{"value":"5","label":"Autre"}]},"gearbox":{"values":[{"value":"1","label":"Manuelle"},{"value":"2","label":"Automatique"}]},"mileage":{"values":[{"label":"0"},{"value":"10000","label":"10 000"},{"value":"20000","label":"20 000"},{"value":"30000","label":"30 000"},{"value":"40000","label":"40 000"},{"value":"50000","label":"50 000"},{"value":"60000","label":"60 000"},{"value":"70000","label":"70 000"},{"value":"80000","label":"80 000"},{"value":"90000","label":"90 000"},{"value":"100000","label":"100 000"},{"value":"125000","label":"125 000"},{"value":"150000","label":"150 000"},{"value":"175000","label":"175 000"},{"value":"200000","label":"200 000"},{"value":"225000","label":"225 000"},{"value":"250000","label":"250 000"},{"label":"250 000 +"}]},"price":{"values":[{"label":"0"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"value":"2000","label":"2 000"},{"value":"3000","label":"3 000"},{"value":"4000","label":"4 000"},{"value":"5000","label":"5 000"},{"value":"6000","label":"6 000"},{"value":"7000","label":"7 000"},{"value":"8000","label":"8 000"},{"value":"9000","label":"9 000"},{"value":"10000","label":"10 000"},{"value":"15000","label":"15 000"},{"value":"20000","label":"20 000"},{"value":"30000","label":"30 000"},{"label":"30 000 +"}]},"regdate":{"values":[{"value":"1960","label":"1960"},{"value":"1961","label":"1961"},{"value":"1962","label":"1962"},{"value":"1963","label":"1963"},{"value":"1964","label":"1964"},{"value":"1965","label":"1965"},{"value":"1966","label":"1966"},{"value":"1967","label":"1967"},{"value":"1968","label":"1968"},{"value":"1969","label":"1969"},{"value":"1970","label":"1970"},{"value":"1971","label":"1971"},{"value":"1972","label":"1972"},{"value":"1973","label":"1973"},{"value":"1974","label":"1974"},{"value":"1975","label":"1975"},{"value":"1976","label":"1976"},{"value":"1977","label":"1977"},{"value":"1978","label":"1978"},{"value":"1979","label":"1979"},{"value":"1980","label":"1980"},{"value":"1981","label":"1981"},{"value":"1982","label":"1982"},{"value":"1983","label":"1983"},{"value":"1984","label":"1984"},{"value":"1985","label":"1985"},{"value":"1986","label":"1986"},{"value":"1987","label":"1987"},{"value":"1988","label":"1988"},{"value":"1989","label":"1989"},{"value":"1990","label":"1990"},{"value":"1991","label":"1991"},{"value":"1992","label":"1992"},{"value":"1993","label":"1993"},{"value":"1994","label":"1994"},{"value":"1995","label":"1995"},{"value":"1996","label":"1996"},{"value":"1997","label":"1997"},{"value":"1998","label":"1998"},{"value":"1999","label":"1999"},{"value":"2000","label":"2000"},{"value":"2001","label":"2001"},{"value":"2002","label":"2002"},{"value":"2003","label":"2003"},{"value":"2004","label":"2004"},{"value":"2005","label":"2005"},{"value":"2006","label":"2006"},{"value":"2007","label":"2007"},{"value":"2008","label":"2008"},{"value":"2009","label":"2009"},{"value":"2010","label":"2010"},{"value":"2011","label":"2011"},{"value":"2012","label":"2012"},{"value":"2013","label":"2013"},{"value":"2014","label":"2014"},{"value":"2015","label":"2015"},{"value":"2016","label":"2016"},{"value":"2017","label":"2017"},{"value":"2018","label":"2018"},{"value":"2019","label":"2019"}]}},"6":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"7":{"price":{"values":[{"label":"0"},{"value":"100","label":"100"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"value":"7500","label":"7 500"},{"value":"10000","label":"10 000"},{"value":"30000","label":"30 000"},{"value":"50000","label":"50 000"},{"value":"60000","label":"60 000"},{"value":"70000","label":"70 000"},{"value":"80000","label":"80 000"},{"value":"90000","label":"90 000"},{"value":"100000","label":"100 000"},{"label":"100 000 +"}]}},"9":{"immo_sell_type":{"values":[{"value":"old","label":"Ancien"},{"value":"new","label":"Neuf"},{"value":"viager","label":"Viager"}]},"price":{"values":[{"label":"0"},{"value":"25000","label":"25 000"},{"value":"50000","label":"50 000"},{"value":"75000","label":"75 000"},{"value":"100000","label":"100 000"},{"value":"125000","label":"125 000"},{"value":"150000","label":"150 000"},{"value":"175000","label":"175 000"},{"value":"200000","label":"200 000"},{"value":"225000","label":"225 000"},{"value":"250000","label":"250 000"},{"value":"275000","label":"275 000"},{"value":"300000","label":"300 000"},{"value":"325000","label":"325 000"},{"value":"350000","label":"350 000"},{"value":"400000","label":"400 000"},{"value":"450000","label":"450 000"},{"value":"500000","label":"500 000"},{"value":"550000","label":"550 000"},{"value":"600000","label":"600 000"},{"value":"650000","label":"650 000"},{"value":"700000","label":"700 000"},{"value":"800000","label":"800 000"},{"value":"900000","label":"900 000"},{"value":"1000000","label":"1 000 000"},{"value":"1100000","label":"1 100 000"},{"value":"1200000","label":"1 200 000"},{"value":"1300000","label":"1 300 000"},{"value":"1400000","label":"1 400 000"},{"value":"1500000","label":"1 500 000"},{"value":"2000000","label":"2 000 000"},{"label":"2 000 000 +"}]},"real_estate_type":{"values":[{"value":"1","label":"Maison"},{"value":"2","label":"Appartement"},{"value":"3","label":"Terrain"},{"value":"4","label":"Parking"},{"value":"5","label":"Autre"}]},"rooms":{"values":[{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"value":"7","label":"7"},{"value":"8","label":"8"},{"label":"8 +"}]},"square":{"values":[{"label":"0"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"35","label":"35"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"60","label":"60"},{"value":"70","label":"70"},{"value":"80","label":"80"},{"value":"90","label":"90"},{"value":"100","label":"100"},{"value":"110","label":"110"},{"value":"120","label":"120"},{"value":"130","label":"130"},{"value":"140","label":"140"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"500","label":"500"},{"label":"500 +"}]}},"10":{"furnished":{"values":[{"value":"1","label":"Meublé"},{"value":"2","label":"Non meublé"}]},"price":{"values":[{"label":"0"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"450","label":"450"},{"value":"500","label":"500"},{"value":"550","label":"550"},{"value":"600","label":"600"},{"value":"650","label":"650"},{"value":"700","label":"700"},{"value":"750","label":"750"},{"value":"800","label":"800"},{"value":"850","label":"850"},{"value":"900","label":"900"},{"value":"950","label":"950"},{"value":"1000","label":"1 000"},{"value":"1100","label":"1 100"},{"value":"1200","label":"1 200"},{"value":"1300","label":"1 300"},{"value":"1400","label":"1 400"},{"value":"1500","label":"1 500"},{"value":"1600","label":"1 600"},{"value":"1700","label":"1 700"},{"value":"1800","label":"1 800"},{"value":"2000","label":"2 000"},{"label":"2000 +"}]},"real_estate_type":{"values":[{"value":"1","label":"Maison"},{"value":"2","label":"Appartement"},{"value":"3","label":"Terrain"},{"value":"4","label":"Parking"},{"value":"5","label":"Autre"}]},"rooms":{"values":[{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"value":"7","label":"7"},{"value":"8","label":"8"},{"label":"8 +"}]},"square":{"values":[{"label":"0"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"35","label":"35"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"60","label":"60"},{"value":"70","label":"70"},{"value":"80","label":"80"},{"value":"90","label":"90"},{"value":"100","label":"100"},{"value":"110","label":"110"},{"value":"120","label":"120"},{"value":"150","label":"150"},{"value":"300","label":"300"},{"label":"300 +"}]}},"11":{"price":{"values":[{"label":"0"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"450","label":"450"},{"value":"500","label":"500"},{"value":"600","label":"600"},{"value":"700","label":"700"},{"value":"800","label":"800"},{"value":"900","label":"900"},{"value":"1000","label":"1 000"},{"value":"1200","label":"1 200"},{"label":"1 200 +"}]}},"12":{"bedrooms":{"values":[{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"label":"6 +"}]},"bookable":{"values":[{"value":"1","label":"Annonces Paiement en ligne uniquement","highlight":"Paiement en ligne"}]},"capacity":{"values":[{"label":"0"},{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"value":"7","label":"7"},{"value":"8","label":"8"},{"value":"9","label":"9"},{"value":"10","label":"10"},{"value":"11","label":"11"},{"value":"12","label":"12"},{"label":"12 +"}]},"date":{},"price":{"values":[{"label":"0"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"450","label":"450"},{"value":"500","label":"500"},{"value":"550","label":"550"},{"value":"600","label":"600"},{"value":"700","label":"700"},{"value":"800","label":"800"},{"value":"900","label":"900"},{"value":"1000","label":"1 000"},{"value":"1200","label":"1 200"},{"value":"1400","label":"1 400"},{"value":"1600","label":"1 600"},{"value":"1800","label":"1 800"},{"value":"2000","label":"2 000"},{"value":"2500","label":"2 500"},{"value":"3000","label":"3 000"},{"value":"4000","label":"4 000"},{"label":"4 000 +"}]},"swimming_pool":{"values":[{"label":"Indifférent"},{"value":"1","label":"Avec piscine"},{"value":"2","label":"Sans piscine"}]}},"13":{"lease_type":{"values":[{"value":"sell","label":"Ventes"},{"value":"rent","label":"Locations"}]},"price":{"values":[{"label":"0"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"30000","label":"30 000"},{"value":"50000","label":"50 000"},{"value":"100000","label":"100 000"},{"value":"250000","label":"250 000"},{"value":"500000","label":"500 000"},{"label":"500 000 +"}]}},"15":{"price":{"values":[{"label":"0"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"16":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"17":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"label":"500 +"}]}},"19":{"price":{"values":[{"label":"0"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"60","label":"60"},{"value":"70","label":"70"},{"value":"80","label":"80"},{"value":"90","label":"90"},{"value":"100","label":"100"},{"value":"125","label":"125"},{"value":"150","label":"150"},{"value":"175","label":"175"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"20":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"label":"500 +"}]}},"21":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"label":"2 500 +"}]}},"22":{"clothing_brand_a":{"values":[{"value":"abercrombiefitch","label":"Abercrombie & Fitch"},{"value":"adidas","label":"Adidas"},{"value":"aigle","label":"Aigle"},{"value":"alainmanoukian","label":"Alain Manoukian"},{"value":"armani","label":"Armani"},{"value":"asos","label":"Asos"},{"value":"benetton","label":"Benetton"},{"value":"bershka","label":"Bershka"},{"value":"billabong","label":"Billabong"},{"value":"bizzbee","label":"Bizzbee"},{"value":"bonobo","label":"Bonobo"},{"value":"brice","label":"Brice"},{"value":"burberry","label":"Burberry"},{"value":"burton","label":"Burton"},{"value":"ca","label":"C&A"},{"value":"cachecache","label":"Cache Cache"},{"value":"calvinklein","label":"Calvin Klein"},{"value":"camaieu","label":"Camaieu"},{"value":"canadagoose","label":"Canada Goose"},{"value":"carhartt","label":"Carhartt"},{"value":"caroll","label":"Caroll"},{"value":"catimini","label":"Catimini"},{"value":"celio","label":"Celio"},{"value":"chevignon","label":"Chevignon"},{"value":"chipie","label":"Chipie"},{"value":"comptoirdescotonniers","label":"Comptoir Des Cotonniers"},{"value":"copcopine","label":"Cop copine"},{"value":"cyrillus","label":"Cyrillus"},{"value":"damart","label":"Damart"},{"value":"ddp","label":"Ddp"},{"value":"desigual","label":"Desigual"},{"value":"devred","label":"Devred"},{"value":"diesel","label":"Diesel"},{"value":"dpam","label":"DPAM"},{"value":"ellesse","label":"Ellesse"},{"value":"esprit","label":"Esprit"},{"value":"etam","label":"Etam"},{"value":"fredperry","label":"Fred Perry"},{"value":"gstar","label":"G-Star"},{"value":"gap","label":"Gap"},{"value":"gemo","label":"Gemo"},{"value":"graindemalice","label":"Grain de malice"},{"value":"guess","label":"Guess"},{"value":"hm","label":"H&M"},{"value":"hollister","label":"Hollister"},{"value":"hugoboss","label":"Hugo Boss"},{"value":"ikks","label":"Ikks"},{"value":"jacadi","label":"Jacadi"},{"value":"jackjones","label":"Jack & Jones"},{"value":"jacquelineriu","label":"Jacqueline Riu"},{"value":"jennyfer","label":"Jennyfer"},{"value":"jules","label":"Jules"},{"value":"kway","label":"K-Way"},{"value":"kaporal","label":"Kaporal"},{"value":"kappa","label":"Kappa"},{"value":"kenzo","label":"Kenzo"},{"value":"kookai","label":"Kookai"},{"value":"lacoste","label":"Lacoste"},{"value":"lafuma","label":"Lafuma"},{"value":"letempsdescerises","label":"Le Temps des Cerises"},{"value":"lee","label":"Lee"},{"value":"leecooper","label":"Lee Cooper"},{"value":"levis","label":"Levi's"},{"value":"mango","label":"Mango"},{"value":"mim","label":"Mim"},{"value":"morgan","label":"Morgan"},{"value":"nafnaf","label":"Naf Naf"},{"value":"napapijri","label":"Napapijri"},{"value":"nike","label":"Nike"},{"value":"oneill","label":"O'Neill"},{"value":"oakwood","label":"Oakwood"},{"value":"okaidi","label":"Okaidi"},{"value":"orchestra","label":"Orchestra"},{"value":"oxbow","label":"Oxbow"},{"value":"pepejeans","label":"Pepe Jeans"},{"value":"petitbateau","label":"Petit Bateau"},{"value":"pimkie","label":"Pimkie"},{"value":"promod","label":"Promod"},{"value":"puma","label":"Puma"},{"value":"quechua","label":"Quechua"},{"value":"quiksilver","label":"Quiksilver"},{"value":"ralphlauren","label":"Ralph Lauren"},{"value":"redskins","label":"Redskins"},{"value":"reebok","label":"Reebok"},{"value":"roxy","label":"Roxy"},{"value":"sandro","label":"Sandro"},{"value":"sergeblanco","label":"Serge Blanco"},{"value":"sergentmajor","label":"Sergent Major"},{"value":"stradivarius","label":"Stradivarius"},{"value":"superdry","label":"Superdry"},{"value":"tapealoeil","label":"Tape a loeil"},{"value":"teddysmith","label":"Teddy smith"},{"value":"thekooples","label":"The Kooples"},{"value":"thenorthface","label":"The north face"},{"value":"timberland","label":"Timberland"},{"value":"tommyhilfiger","label":"Tommy Hilfiger"},{"value":"uniqlo","label":"Uniqlo"},{"value":"versace","label":"Versace"},{"value":"vertbaudet","label":"Vertbaudet"},{"value":"zapa","label":"Zapa"},{"value":"zara","label":"Zara"},{"value":"autre","label":"Autre"}]},"clothing_color_a":{"values":[{"value":"noir","label":"Noir"},{"value":"gris","label":"Gris \u002F Anthracite"},{"value":"argente","label":"Argenté \u002F Acier"},{"value":"blanc","label":"Blanc"},{"value":"creme","label":"Crème \u002F Blanc cassé \u002F Écru"},{"value":"beige","label":"Beige \u002F Camel"},{"value":"jaune","label":"Jaune \u002F Moutarde"},{"value":"orange","label":"Orange \u002F Corail"},{"value":"rouge","label":"Rouge \u002F Bordeaux"},{"value":"rose","label":"Rose \u002F Fushia"},{"value":"violet","label":"Violet \u002F Mauve"},{"value":"lavande","label":"Lavande \u002F Lilas"},{"value":"bleu","label":"Bleu \u002F Ciel"},{"value":"marine","label":"Marine \u002F Turquoise"},{"value":"vert","label":"Vert"},{"value":"kaki","label":"Kaki"},{"value":"marron","label":"Marron"},{"value":"dore","label":"Doré \u002F Bronze \u002F Cuivre"},{"value":"multicolore","label":"Multicolore"},{"value":"imprime","label":"Imprimés multicolore"}]},"clothing_condition_a":{"values":[{"value":"5","label":"Neuf avec étiquette"},{"value":"4","label":"Neuf sans étiquette"},{"value":"3","label":"Très bon état"},{"value":"2","label":"Bon état"},{"value":"1","label":"État satisfaisant"}]},"clothing_st":{"values":[{"value":"1","label":"32 - XXS","if":{"clothing_type":"2"}},{"value":"2","label":"34 - XS","if":{"clothing_type":"2"}},{"value":"3","label":"36 - S","if":{"clothing_type":"2"}},{"value":"4","label":"38 - M","if":{"clothing_type":"2"}},{"value":"5","label":"40 - L","if":{"clothing_type":"2"}},{"value":"6","label":"42 - XL","if":{"clothing_type":"2"}},{"value":"7","label":"44 - XXL","if":{"clothing_type":"2"}},{"value":"8","label":"46 - XXXL","if":{"clothing_type":"2"}},{"value":"9","label":"48 - 4XL","if":{"clothing_type":"2"}},{"value":"10","label":"50 et plus - 5XL","if":{"clothing_type":"2"}},{"value":"1","label":"XS","if":{"clothing_type":"3"}},{"value":"2","label":"S","if":{"clothing_type":"3"}},{"value":"3","label":"M","if":{"clothing_type":"3"}},{"value":"4","label":"L","if":{"clothing_type":"3"}},{"value":"5","label":"XL","if":{"clothing_type":"3"}},{"value":"6","label":"XXL","if":{"clothing_type":"3"}},{"value":"7","label":"XXXL et plus","if":{"clothing_type":"3"}},{"value":"1","label":"3 ans","if":{"clothing_type":"4"}},{"value":"2","label":"4 ans","if":{"clothing_type":"4"}},{"value":"3","label":"5 ans","if":{"clothing_type":"4"}},{"value":"4","label":"6 ans","if":{"clothing_type":"4"}},{"value":"5","label":"8 ans","if":{"clothing_type":"4"}},{"value":"6","label":"10 ans","if":{"clothing_type":"4"}},{"value":"7","label":"12 ans","if":{"clothing_type":"4"}},{"value":"8","label":"14 ans","if":{"clothing_type":"4"}},{"value":"9","label":"16 ans","if":{"clothing_type":"4"}},{"value":"10","label":"18 ans","if":{"clothing_type":"4"}},{"value":"1","label":"32 - XXS","if":{"clothing_type":"1"}},{"value":"2","label":"34 - XS","if":{"clothing_type":"1"}},{"value":"3","label":"36 - S","if":{"clothing_type":"1"}},{"value":"4","label":"38 - M","if":{"clothing_type":"1"}},{"value":"5","label":"40 - L","if":{"clothing_type":"1"}},{"value":"6","label":"42 - XL","if":{"clothing_type":"1"}},{"value":"7","label":"44 - XXL","if":{"clothing_type":"1"}},{"value":"8","label":"46 - XXXL","if":{"clothing_type":"1"}},{"value":"9","label":"48 - 4XL","if":{"clothing_type":"1"}},{"value":"10","label":"50 et plus - 5XL","if":{"clothing_type":"1"}}]},"clothing_tag":{"values":[{"value":"robe","label":"Robes \u002F jupes"},{"value":"manteau","label":"Manteaux & Vestes"},{"value":"haut","label":"Hauts \u002F T-Shirts \u002F Polos"},{"value":"pantalon","label":"Pantalons"},{"value":"pull","label":"Pulls \u002F Gilets \u002F Mailles"},{"value":"jean","label":"Jeans"},{"value":"chemise","label":"Chemises \u002F Chemisiers"},{"value":"costume","label":"Costumes \u002F Tailleurs"},{"value":"short","label":"Shorts \u002F Pantacourts \u002F Bermudas"},{"value":"sport","label":"Sports \u002F Danse"},{"value":"maillot","label":"Maillots de bain & vêtements de plage"},{"value":"lingerie","label":"Lingerie"},{"value":"sousvetement","label":"Sous-vêtements & vêtements de nuit"},{"value":"deguisement","label":"Déguisement"},{"value":"mariage","label":"Mariage"}]},"clothing_type":{"values":[{"value":"1","label":"Femme"},{"value":"3","label":"Homme"},{"value":"4","label":"Enfant"},{"value":"2","label":"Maternité"}]},"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"23":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"label":"500 +"}]}},"25":{"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"label":"100 +"}]}},"26":{"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"label":"100 +"}]}},"27":{"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"label":"100 +"}]}},"28":{"animal_offer_nature":{"values":[{"value":"1","label":"Vente","if":{"animal_type":"1"}},{"value":"2","label":"Don (gratuit)","if":{"animal_type":"1"}},{"value":"3","label":"Saillie","if":{"animal_type":"1"}}]},"animal_type":{"values":[{"value":"1","label":"Chiens & Chats"},{"value":"2","label":"Autres animaux"},{"value":"3","label":"Accessoires"}]},"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"label":"2 500 +"}]}},"29":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"30":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"32":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"15000","label":"15 000"},{"label":"15 000 +"}]}},"33":{"jobcontract":{"values":[{"value":"1","label":"CDD"},{"value":"2","label":"CDI"},{"value":"3","label":"Intérim"},{"value":"4","label":"Indépendant\u002FFranchise"},{"value":"5","label":"Stage\u002FAlternance"},{"value":"6","label":"Apprentissage"}]},"jobduty":{"values":[{"value":"1","label":"Administration\u002FServices généraux"},{"value":"2","label":"Commercial\u002FVente"},{"value":"3","label":"Comptabilité\u002FGestion\u002FFinance"},{"value":"4","label":"Conseil\u002FAudit"},{"value":"5","label":"Direction Générale"},{"value":"6","label":"Sécurité\u002FDéfense\u002FGardiennage"},{"value":"7","label":"Hôtellerie\u002FRestauration"},{"value":"8","label":"Informatique\u002FInternet"},{"value":"9","label":"Juridique"},{"value":"10","label":"Logistique\u002FAchat\u002FTransport"},{"value":"11","label":"Marketing\u002FCommunication"},{"value":"12","label":"Ménage\u002FEntretien"},{"value":"13","label":"Ressources Humaines\u002FFormation"},{"value":"14","label":"Services à la personne"},{"value":"15","label":"Formation\u002FEducation"},{"value":"16","label":"Etudes\u002FRecherches\u002FIngénieries"},{"value":"17","label":"Ouvrier\u002FArtisan"},{"value":"18","label":"Médecine\u002FSanté"},{"value":"19","label":"Production\u002FOpérations"},{"value":"20","label":"Service Client\u002FAccueil"}]},"jobexp":{"values":[{"value":"1","label":"0 à 2 ans"},{"value":"3","label":"2 à 5 ans"},{"value":"5","label":"5 ans et plus"}]},"jobfield":{"values":[{"value":"1","label":"Agriculture"},{"value":"2","label":"BTP\u002FConstruction"},{"value":"3","label":"Commerce\u002FDistribution"},{"value":"4","label":"Banque\u002FAssurance\u002FFinance"},{"value":"5","label":"Industrie\u002FEnvironnement"},{"value":"6","label":"Immobilier"},{"value":"7","label":"Services publics\u002FAdministrations"},{"value":"8","label":"Médecine\u002FSanté"},{"value":"9","label":"Services"},{"value":"10","label":"Télécom\u002FInternet\u002FMédias"},{"value":"11","label":"Tourisme"},{"value":"12","label":"Transport\u002FLogistique"},{"value":"13","label":"Hôtellerie\u002FRestauration"},{"value":"14","label":"Textile\u002FMode\u002FLuxe"},{"value":"15","label":"Sport"},{"value":"16","label":"Services à la personne"}]},"jobstudy":{"values":[{"value":"1","label":"Sans diplôme"},{"value":"2","label":"BEP\u002FCAP"},{"value":"3","label":"Employé\u002FOuvrier spécialisé\u002FBac"},{"value":"4","label":"Technicien\u002FEmployé\u002FBac+2"},{"value":"5","label":"Agent de maîtrise\u002FBac+3"},{"value":"6","label":"Ingénieur\u002FCadre\u002FBac+5 ou plus"}]},"jobtime":{"values":[{"value":"1","label":"Temps plein"},{"value":"2","label":"Temps partiel"}]},"price":{}},"35":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"36":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"label":"100 +"}]}},"38":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"39":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"40":{"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"41":{"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"42":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"label":"500 +"}]}},"43":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"label":"500 +"}]}},"44":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"45":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"46":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"47":{"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"48":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"label":"500 +"}]}},"50":{"price":{"values":[{"label":"0"},{"value":"10","label":"10"},{"value":"25","label":"25"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"label":"1 000 +"}]}},"51":{"price":{"values":[{"label":"0"},{"value":"100","label":"100"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"label":"5 000 +"}]}},"52":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"500","label":"500"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"label":"2 500 +"}]}},"53":{"clothing_color_a":{"values":[{"value":"noir","label":"Noir"},{"value":"gris","label":"Gris \u002F Anthracite"},{"value":"argente","label":"Argenté \u002F Acier"},{"value":"blanc","label":"Blanc"},{"value":"creme","label":"Crème \u002F Blanc cassé \u002F Écru"},{"value":"beige","label":"Beige \u002F Camel"},{"value":"jaune","label":"Jaune \u002F Moutarde"},{"value":"orange","label":"Orange \u002F Corail"},{"value":"rouge","label":"Rouge \u002F Bordeaux"},{"value":"rose","label":"Rose \u002F Fushia"},{"value":"violet","label":"Violet \u002F Mauve"},{"value":"lavande","label":"Lavande \u002F Lilas"},{"value":"bleu","label":"Bleu \u002F Ciel"},{"value":"marine","label":"Marine \u002F Turquoise"},{"value":"vert","label":"Vert"},{"value":"kaki","label":"Kaki"},{"value":"marron","label":"Marron"},{"value":"dore","label":"Doré \u002F Bronze \u002F Cuivre"},{"value":"multicolore","label":"Multicolore"},{"value":"imprime","label":"Imprimés multicolore"}]},"clothing_condition_a":{"values":[{"value":"5","label":"Neuf avec étiquette"},{"value":"4","label":"Neuf sans étiquette"},{"value":"3","label":"Très bon état"},{"value":"2","label":"Bon état"},{"value":"1","label":"État satisfaisant"}]},"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]},"shoe_brand_a":{"values":[{"value":"adidas","label":"Adidas"},{"value":"aigle","label":"Aigle"},{"value":"andre","label":"Andre"},{"value":"artengo","label":"Artengo"},{"value":"ash","label":"Ash"},{"value":"asics","label":"Asics"},{"value":"azzaro","label":"Azzaro"},{"value":"balenciaga","label":"Balenciaga"},{"value":"barker","label":"Barker"},{"value":"bensimon","label":"Bensimon"},{"value":"bexley","label":"Bexley"},{"value":"calvinklein","label":"Calvin Klein"},{"value":"celio","label":"Celio"},{"value":"chanel","label":"Chanel"},{"value":"christianlouboutin","label":"Christian Louboutin"},{"value":"churchs","label":"Churchs"},{"value":"clarks","label":"Clarks"},{"value":"converse","label":"Converse"},{"value":"coqsportif","label":"Coq Sportif"},{"value":"dcshoes","label":"Dc Shoes"},{"value":"desigual","label":"Desigual"},{"value":"dior","label":"Dior"},{"value":"drmartens","label":"Dr Martens"},{"value":"ellesse","label":"Ellesse"},{"value":"faguo","label":"Faguo"},{"value":"felmini","label":"Felmini"},{"value":"freelance","label":"Free Lance"},{"value":"geox","label":"Geox"},{"value":"giuseppezanotti","label":"Giuseppe Zanotti"},{"value":"gucci","label":"Gucci"},{"value":"guess","label":"Guess"},{"value":"hm","label":"H&M"},{"value":"hugoboss","label":"Hugo Boss"},{"value":"ikks","label":"Ikks"},{"value":"isabelmarant","label":"Isabel Marant"},{"value":"jimmychoo","label":"Jimmy Choo"},{"value":"jmweston","label":"Jm Weston"},{"value":"jonak","label":"Jonak"},{"value":"kalenji","label":"Kalenji"},{"value":"kappa","label":"Kappa"},{"value":"kickers","label":"Kickers"},{"value":"lacoste","label":"Lacoste"},{"value":"letempsdescerises","label":"Le Temps Des Cerises"},{"value":"levis","label":"Levis"},{"value":"loding","label":"Loding"},{"value":"louisvuitton","label":"Louis Vuitton"},{"value":"mellowyellow","label":"Mellow Yellow"},{"value":"minelli","label":"Minelli"},{"value":"newbalance","label":"New Balance"},{"value":"nike","label":"Nike"},{"value":"palladium","label":"Palladium"},{"value":"paraboot","label":"Paraboot"},{"value":"paulsmith","label":"Paul Smith"},{"value":"prada","label":"Prada"},{"value":"puma","label":"Puma"},{"value":"quechua","label":"Quechua"},{"value":"ralphlauren","label":"Ralph Lauren"},{"value":"redskins","label":"Redskins"},{"value":"reebok","label":"Reebok"},{"value":"repetto","label":"Repetto"},{"value":"sanmarina","label":"San Marina"},{"value":"santoni","label":"Santoni"},{"value":"sezane","label":"Sezane"},{"value":"skechers","label":"Skechers"},{"value":"sparco","label":"Sparco"},{"value":"timberland","label":"Timberland"},{"value":"tods","label":"Tods"},{"value":"ugg","label":"Ugg"},{"value":"vans","label":"Vans"},{"value":"weston","label":"Weston"},{"value":"zara","label":"Zara"},{"value":"autre","label":"Autre"}]},"shoe_category_a":{"values":[{"value":"basket","label":"Baskets & Sneakers"},{"value":"lacets","label":"Chaussures à lacets"},{"value":"scratch","label":"Chaussures à scratch"},{"value":"mocassin","label":"Mocassins"},{"value":"bottine","label":"Bottines & lowboots"},{"value":"botte","label":"Bottes"},{"value":"escarpin","label":"Escarpins"},{"value":"sandale","label":"Sandales & Nu-pieds"},{"value":"chausson","label":"Chaussons & Pantoufles"},{"value":"ballerine","label":"Ballerines"},{"value":"autre","label":"Autres"}]},"shoe_size":{"values":[{"value":"1","label":"16"},{"value":"2","label":"17"},{"value":"3","label":"18"},{"value":"4","label":"19"},{"value":"5","label":"20"},{"value":"6","label":"21"},{"value":"7","label":"22"},{"value":"8","label":"23"},{"value":"9","label":"24"},{"value":"10","label":"25"},{"value":"11","label":"26"},{"value":"12","label":"27"},{"value":"13","label":"28"},{"value":"14","label":"29"},{"value":"15","label":"30"},{"value":"16","label":"31"},{"value":"17","label":"32"},{"value":"18","label":"33"},{"value":"19","label":"34"},{"value":"20","label":"35"},{"value":"21","label":"36"},{"value":"22","label":"37"},{"value":"23","label":"38"},{"value":"24","label":"39"},{"value":"25","label":"40"},{"value":"26","label":"41"},{"value":"27","label":"42"},{"value":"28","label":"43"},{"value":"29","label":"44"},{"value":"30","label":"45"},{"value":"31","label":"46"},{"value":"32","label":"47"},{"value":"33","label":"48"},{"value":"34","label":"49"},{"value":"35","label":"50+"}]},"shoe_type":{"values":[{"value":"1","label":"Femme"},{"value":"2","label":"Homme"},{"value":"3","label":"Enfant"}]}},"54":{"baby_age":{"values":[{"value":"p","label":"Prématuré"},{"value":"0","label":"0 mois"},{"value":"1","label":"1 mois"},{"value":"3","label":"3 mois"},{"value":"6","label":"6 mois"},{"value":"9","label":"9 mois"},{"value":"12","label":"12 mois"},{"value":"18","label":"18 mois"},{"value":"24","label":"2 ans"},{"value":"36","label":"3 ans"}]},"baby_clothing_brand_a":{"values":[{"value":"absorba","label":"Absorba"},{"value":"adidas","label":"Adidas"},{"value":"aigle","label":"Aigle"},{"value":"armani","label":"Armani"},{"value":"babydior","label":"Baby Dior"},{"value":"benetton","label":"Benetton"},{"value":"burberry","label":"Burberry"},{"value":"ca","label":"C&A"},{"value":"catimini","label":"Catimini"},{"value":"chipie","label":"Chipie"},{"value":"clayeux","label":"Clayeux"},{"value":"converse","label":"Converse"},{"value":"cyrillus","label":"Cyrillus"},{"value":"desigual","label":"Desigual"},{"value":"diesel","label":"Diesel"},{"value":"dpam","label":"DPAM"},{"value":"esprit","label":"Esprit"},{"value":"gap","label":"Gap"},{"value":"gemo","label":"Gemo"},{"value":"guess","label":"Guess"},{"value":"hm","label":"H&M"},{"value":"hugoboss","label":"Hugo Boss"},{"value":"ikks","label":"Ikks"},{"value":"jacadi","label":"Jacadi"},{"value":"lenzo","label":"Kenzo"},{"value":"lacoste","label":"Lacoste"},{"value":"lee","label":"Lee"},{"value":"leecooper","label":"Lee Cooper"},{"value":"levis","label":"Levis"},{"value":"liligaufrette","label":"Lili Gaufrette"},{"value":"lulucastagnette","label":"Lulu Castagnette"},{"value":"mango","label":"Mango"},{"value":"nike","label":"Nike"},{"value":"okaidi","label":"Okaidi"},{"value":"orchestra","label":"Orchestra"},{"value":"petitbateau","label":"Petit Bateau"},{"value":"pomdapi","label":"Pom Dapi"},{"value":"puma","label":"Puma"},{"value":"quechua","label":"Quechua"},{"value":"ralphlauren","label":"Ralph Lauren"},{"value":"reebok","label":"Reebok"},{"value":"roxy","label":"Roxy"},{"value":"sergentmajor","label":"Sergent Major"},{"value":"tapealoeil","label":"Tape à L'oeil"},{"value":"tartineetchocolat","label":"Tartine Et Chocolat"},{"value":"timberland","label":"Timberland"},{"value":"tommyhilfiger","label":"Tommy Hilfiger"},{"value":"ugg","label":"Ugg"},{"value":"vertbaudet","label":"Vertbaudet"},{"value":"zara","label":"Zara"},{"value":"autre","label":"Autre"}]},"baby_clothing_category_a":{"values":[{"value":"bodies","label":"Bodies"},{"value":"tshirt","label":"T-shirt & brassières"},{"value":"bermuda","label":"Bermudas & Shorts"},{"value":"pantalon","label":"Pantalons"},{"value":"jean","label":"Jeans"},{"value":"pyjama","label":"Dors-bien & Pyjamas"},{"value":"pull","label":"Pull & Gilets"},{"value":"robe","label":"Robes & Jupes"},{"value":"manteau","label":"Manteaux & Vestes"},{"value":"legging","label":"Legging & collants"},{"value":"deguisement","label":"Déguisements"},{"value":"ensemble","label":"Ensembles & Combinaisons"},{"value":"bonnet","label":"Bonnets & Chapeaux"},{"value":"maillot","label":"Maillots de bain"}]},"clothing_color_a":{"values":[{"value":"noir","label":"Noir"},{"value":"gris","label":"Gris \u002F Anthracite"},{"value":"argente","label":"Argenté \u002F Acier"},{"value":"blanc","label":"Blanc"},{"value":"creme","label":"Crème \u002F Blanc cassé \u002F Écru"},{"value":"beige","label":"Beige \u002F Camel"},{"value":"jaune","label":"Jaune \u002F Moutarde"},{"value":"orange","label":"Orange \u002F Corail"},{"value":"rouge","label":"Rouge \u002F Bordeaux"},{"value":"rose","label":"Rose \u002F Fushia"},{"value":"violet","label":"Violet \u002F Mauve"},{"value":"lavande","label":"Lavande \u002F Lilas"},{"value":"bleu","label":"Bleu \u002F Ciel"},{"value":"marine","label":"Marine \u002F Turquoise"},{"value":"vert","label":"Vert"},{"value":"kaki","label":"Kaki"},{"value":"marron","label":"Marron"},{"value":"dore","label":"Doré \u002F Bronze \u002F Cuivre"},{"value":"multicolore","label":"Multicolore"},{"value":"imprime","label":"Imprimés multicolore"}]},"clothing_condition_a":{"values":[{"value":"5","label":"Neuf avec étiquette"},{"value":"4","label":"Neuf sans étiquette"},{"value":"3","label":"Très bon état"},{"value":"2","label":"Bon état"},{"value":"1","label":"État satisfaisant"}]},"price":{"values":[{"label":"0"},{"value":"3","label":"3"},{"value":"5","label":"5"},{"value":"8","label":"8"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"250","label":"250"},{"label":"250 +"}]}},"55":{"bicycle_type":{"values":[{"value":"enfant","label":"Enfant"},{"value":"vtt","label":"VTT"},{"value":"vtc","label":"VTC"},{"value":"bmx","label":"BMX"},{"value":"course","label":"Vélo de course"},{"value":"electrique","label":"Vélo électrique"},{"value":"pliant","label":"Vélo pliant"},{"value":"fixie","label":"Pignon fixe"},{"value":"appartement","label":"Vélo d'appartement"},{"value":"tandem","label":"Tandem"},{"value":"autre","label":"Autres"}]},"bicycle_wheel_size":{"values":[{"value":"260","label":"26 \""},{"value":"275","label":"27.5 \""},{"value":"290","label":"29 \""},{"value":"700c","label":"700c"}]},"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"30","label":"30"},{"value":"40","label":"40"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"1250","label":"1 250"},{"value":"1500","label":"1 500"},{"label":"1 500 +"}]}},"57":{"price":{"values":[{"label":"0"},{"value":"35","label":"35"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"3500","label":"3 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"25000","label":"25 000"},{"value":"35000","label":"35 000"},{"value":"50000","label":"50 000"},{"label":"50 000 +"}]}},"58":{"price":{"values":[{"label":"0"},{"value":"35","label":"35"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"3500","label":"3 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"25000","label":"25 000"},{"value":"35000","label":"35 000"},{"value":"50000","label":"50 000"},{"label":"50 000 +"}]}},"59":{"price":{"values":[{"label":"0"},{"value":"35","label":"35"},{"value":"50","label":"50"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"3500","label":"3 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"25000","label":"25 000"},{"value":"35000","label":"35 000"},{"value":"50000","label":"50 000"},{"label":"50 000 +"}]}},"60":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"15000","label":"15 000"},{"label":"15 000 +"}]}},"61":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"15000","label":"15 000"},{"label":"15 000 +"}]}},"62":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"15000","label":"15 000"},{"label":"15 000 +"}]}},"63":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"15000","label":"15 000"},{"label":"15 000 +"}]}},"64":{"price":{"values":[{"label":"0"},{"value":"15","label":"15"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"300","label":"300"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"2500","label":"2 500"},{"value":"5000","label":"5 000"},{"value":"10000","label":"10 000"},{"value":"15000","label":"15 000"},{"label":"15 000 +"}]}},"65":{"price":{"values":[{"label":"0"},{"value":"5","label":"5"},{"value":"10","label":"10"},{"value":"15","label":"15"},{"value":"20","label":"20"},{"value":"25","label":"25"},{"value":"30","label":"30"},{"value":"50","label":"50"},{"value":"75","label":"75"},{"value":"100","label":"100"},{"label":"100 +"}]}},"66":{"bookable":{"values":[{"value":"1","label":"Annonces Paiement en ligne uniquement","highlight":"Paiement en ligne"}]},"date":{},"price":{"values":[{"label":"0"},{"value":"20","label":"20"},{"value":"40","label":"40"},{"value":"60","label":"60"},{"value":"80","label":"80"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"450","label":"450"},{"value":"500","label":"500"},{"value":"550","label":"550"},{"value":"600","label":"600"},{"value":"700","label":"700"},{"value":"800","label":"800"},{"value":"900","label":"900"},{"value":"1000","label":"1 000"},{"value":"1200","label":"1 200"},{"value":"1400","label":"1 400"},{"value":"1600","label":"1 600"},{"value":"1800","label":"1 800"},{"value":"2000","label":"2 000"},{"value":"2500","label":"2 500"},{"value":"3000","label":"3 000"},{"value":"4000","label":"4 000"},{"label":"4 000 +"}]}},"67":{"bedrooms":{"values":[{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"label":"6 +"}]},"bookable":{"values":[{"value":"1","label":"Annonces Paiement en ligne uniquement","highlight":"Paiement en ligne"}]},"capacity":{"values":[{"label":"0"},{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"value":"7","label":"7"},{"value":"8","label":"8"},{"value":"9","label":"9"},{"value":"10","label":"10"},{"value":"11","label":"11"},{"value":"12","label":"12"},{"label":"12 +"}]},"date":{},"price":{"values":[{"label":"0"},{"value":"20","label":"20"},{"value":"40","label":"40"},{"value":"60","label":"60"},{"value":"80","label":"80"},{"value":"100","label":"100"},{"value":"120","label":"120"},{"value":"140","label":"140"},{"value":"160","label":"160"},{"value":"180","label":"180"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"1500","label":"1 500"},{"value":"2000","label":"2 000"},{"label":"2 000 +"}]},"swimming_pool":{"values":[{"label":"Indifférent"},{"value":"1","label":"Avec piscine"},{"value":"2","label":"Sans piscine"}]}},"68":{"bedrooms":{"values":[{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"label":"6 +"}]},"bookable":{"values":[{"value":"1","label":"Annonces Paiement en ligne uniquement","highlight":"Paiement en ligne"}]},"capacity":{"values":[{"label":"0"},{"value":"1","label":"1"},{"value":"2","label":"2"},{"value":"3","label":"3"},{"value":"4","label":"4"},{"value":"5","label":"5"},{"value":"6","label":"6"},{"value":"7","label":"7"},{"value":"8","label":"8"},{"value":"9","label":"9"},{"value":"10","label":"10"},{"value":"11","label":"11"},{"value":"12","label":"12"},{"label":"12 +"}]},"date":{},"price":{"values":[{"label":"0"},{"value":"100","label":"100"},{"value":"150","label":"150"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"450","label":"450"},{"value":"500","label":"500"},{"value":"550","label":"550"},{"value":"600","label":"600"},{"value":"700","label":"700"},{"value":"800","label":"800"},{"value":"900","label":"900"},{"value":"1000","label":"1 000"},{"value":"1200","label":"1 200"},{"value":"1400","label":"1 400"},{"value":"1600","label":"1 600"},{"value":"1800","label":"1 800"},{"value":"2000","label":"2 000"},{"value":"2500","label":"2 500"},{"value":"3000","label":"3 000"},{"value":"4000","label":"4 000"},{"label":"4 000 +"}]},"swimming_pool":{"values":[{"label":"Indifférent"},{"value":"1","label":"Avec piscine"},{"value":"2","label":"Sans piscine"}]}},"69":{"bookable":{"values":[{"value":"1","label":"Annonces Paiement en ligne uniquement","highlight":"Paiement en ligne"}]},"price":{"values":[{"label":"0"},{"value":"20","label":"20"},{"value":"40","label":"40"},{"value":"60","label":"60"},{"value":"80","label":"80"},{"value":"100","label":"100"},{"value":"120","label":"120"},{"value":"140","label":"140"},{"value":"160","label":"160"},{"value":"180","label":"180"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"1500","label":"1 500"},{"value":"2000","label":"2 000"},{"label":"2 000 +"}]},"swimming_pool":{"values":[{"label":"Indifférent"},{"value":"1","label":"Avec piscine"},{"value":"2","label":"Sans piscine"}]}},"70":{"bookable":{"values":[{"value":"1","label":"Annonces Paiement en ligne uniquement","highlight":"Paiement en ligne"}]},"date":{},"price":{"values":[{"label":"0"},{"value":"20","label":"20"},{"value":"40","label":"40"},{"value":"60","label":"60"},{"value":"80","label":"80"},{"value":"100","label":"100"},{"value":"120","label":"120"},{"value":"140","label":"140"},{"value":"160","label":"160"},{"value":"180","label":"180"},{"value":"200","label":"200"},{"value":"250","label":"250"},{"value":"300","label":"300"},{"value":"350","label":"350"},{"value":"400","label":"400"},{"value":"500","label":"500"},{"value":"750","label":"750"},{"value":"1000","label":"1 000"},{"value":"1500","label":"1 500"},{"value":"2000","label":"2 000"},{"label":"2 000 +"}]},"swimming_pool":{"values":[{"label":"Indifférent"},{"value":"1","label":"Avec piscine"},{"value":"2","label":"Sans piscine"}]}}}},"searchForm":{"isFetching":false}},"p2pPayment":{"ad":null,"adCategories":[],"currentDealId":"","data":{},"isFetching":false,"purchases":[],"sales":[]},"payment":{"isFetching":false},"performanceData":{"abTest":false,"tips":{"no_contacts":[],"no_views":[],"olds":[]},"summary":{},"history":[{}],"categories":[{"subcategories":[]}],"fetched":{"abTest":false,"history":false,"categories":false,"summary":false,"tips":false},"categoryFiltering":null},"profile":{"selectedPage":1,"isFetching":false,"pages":{}},"savedAd":{"isFetching":false,"ids":[],"disabled":false,"isFetchingData":false},"myAd":{"adsCounts":{"found":0,"selected":0,"online":0},"allAdsSelected":"no","booster":{"usage":0,"slots":0,"eligible":null},"data":{"ads":[],"total":0},"error":{},"isFetching":{"ads":false,"booster":false},"params":{"context":"default","filters":{},"limit":10,"offset":0,"sort_by":"date","sort_order":"desc","include_inactive":true}},"newAd":{"category":{},"formValues":{"images":[],"attributes":{}},"error":{},"options":{}},"editAd":{"category":{},"formValues":{"images":[],"attributes":{}},"success":true,"options":{}},"adOptions":{},"savedSearch":{"list":{"loading":{"status":false},"adding":{"status":false},"editing":{"status":false},"deleting":{"status":false}}},"ui":{"lightbox":{"isOpen":false,"activeSlide":0},"searchForm":{"isOpen":false},"modal":{"isOpen":false,"type":"DEFAULT_MODAL","options":{}},"toastr":{"isOpen":false},"geolocation":{"isFetching":false,"coords":null,"error":null},"bodyClassNames":{"noScroll":false,"navBarOpen":false,"adSkin":false,"adSkinProgrammatic":false,"noGutter":false,"headerHidden":false},"bodyBackground":"","scrollbarWidth":0},"stores":{"byId":{},"error":false},"advertising":{"cleanedAt":0,"habillage":{"isAdProgrammatic":false,"creativeId":"","targetURL":"","clickDelay":0,"noGutter":false,"clickEnabled":true,"clickThrough":false,"isAdGreagre":false,"isAdHtmlGreagre":false,"isFixedGutter":false,"isStandardHb":false}},"user":{"isPro":false,"isImport":false,"isFetching":false,"isAuthenticated":null,"notifications":{"messaging":null}},"userPoc":{},"webview":{"isWebView":false},"batchAdAction":{"ads":[]},"form":{},"router":{"locationBeforeTransitions":{"pathname":"\u002Flocations\u002Foffres\u002File_de_france\u002F","search":"","hash":"","action":"POP","key":null,"query":{}}}}
+</script>
<script>
-(function(e,c,a,g,f){function d(){var b=c.createElement("script");b.async=!0;
-b.src="//radar.cedexis.com/1/"+env+"/radar.js";c.body.appendChild(b)}
-(function(){for(var b=[/\bMSIE (5|6)/i],a=b.length;a--;)if(b[a]
-.test(navigator.userAgent))return!1;return!0})()
-&&("complete"!==c.readyState?(a=e[a])?a(f,d,!1):(a=e[g])&&a("on"+f,d):d())})
-(window,document,"addEventListener","attachEvent","load");
+ window.__REDIAL_PROPS__ = [null,null,null,null,{"req":{"limit":35,"limit_alu":3,"filters":{"category":{"id":"10"},"enums":{"ad_type":["offer"]},"location":{"locations":[{"locationType":"region","label":"Ile-de-France","region_id":"12"}]},"keywords":{},"ranges":{}}},"seoBoxContent":[{"links":[{"path":"\u002Fs\u002F87cf43f9-achat-appartement-versailles\u002F","title":"Achat appartement Versailles"},{"path":"\u002Fs\u002F9f69556b-location-appartement-neuilly-sur-seine\u002F","title":"Location appartement Neuilly-sur-Seine"},{"path":"\u002Fs\u002F550a8167-location-appartement-montrouge\u002F","title":"Location appartement Montrouge"},{"path":"\u002Fs\u002F6a59a6b1-location-appartement-levallois-perret\u002F","title":"Location appartement Levallois-Perret"}],"title":"Top villes"},{"links":[{"path":"\u002F_immobilier_\u002Foffres\u002File_de_france\u002Fyvelines\u002F","title":"Immobilier dans les Yvelines"},{"path":"\u002F_immobilier_\u002Foffres\u002File_de_france\u002Fseine_et_marne\u002F","title":"Immobilier en Seine-et-Marne"},{"path":"\u002Flocations\u002Foffres\u002File_de_france\u002Fparis\u002F","title":"Locations à Paris"},{"path":"\u002Fventes_immobilieres\u002Foffres\u002File_de_france\u002Fval_de_marne\u002F","title":"Ventes immobilières dans le Val de Marne"}],"title":"Top département"},{"links":[{"path":"\u002F_immobilier_\u002Foffres\u002File_de_france\u002F","title":"Immobilier en Ile-de-France"},{"path":"\u002Fventes_immobilieres\u002Foffres\u002File_de_france\u002F","title":"Ventes immobilières en Ile-de-France"},{"path":"\u002Fs\u002Fcab5c39c-location-parking-en-ile-de-france\u002F","title":"Location parking en Ile-de-France"},{"path":"\u002Fs\u002F0cb29443-achat-terrain-en-ile-de-france\u002F","title":"Achat terrain en Ile-de-France"}],"title":"Dans la région"},{"links":[{"path":"\u002Fventes_immobilieres\u002Foffres\u002F","title":"Vente maison"},{"path":"\u002Flocations\u002Foffres\u002F","title":"Location appartement"},{"path":"\u002Fs\u002F1d103745-achat-terrain\u002F","title":"Vente terrain"},{"path":"\u002Fs\u002F13a11f1a-location-parking\u002F","title":"Louer parking"}],"title":"Voir aussi"}],"data":{"total":25867,"total_all":25867,"total_pro":12989,"total_private":12878,"total_active":0,"total_inactive":0,"pivot":"1567534452000","ads":[{"list_id":1666147031,"first_publication_date":"2019-08-27 20:44:55","expiration_date":"2019-10-26 20:44:55","index_date":"2019-09-03 20:46:26","status":"active","category_id":"10","category_name":"Locations","subject":"Appartement libre de suite","body":"cuisine équipée, salon et sam,1 chambre, 1 sdb, 1 wc , 1 balcon, 1 cave, 1 porte blindée, chauffage géothermique compris dans les charges,résidence calme, 5 mm à pied de la gare SNCF, école et centre ville, accès sécurisé par barrière, parking au pied de la résidence","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1666147031.htm","price":[870],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002F2a70732ddfb78b6b19aedef42871e277af65652e.jpg","small_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-small\u002F2a70732ddfb78b6b19aedef42871e277af65652e.jpg","nb_images":6,"urls":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002F2a70732ddfb78b6b19aedef42871e277af65652e.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002F86d899b36202d342294d2def0b9781e6bd32e8bb.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002Fb74754373af934e3ab3a7d1aca63481e5b82f1e5.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F1c4fe15f90fb13780e619c7da95f8768ef0f5fae.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002Fb2ce8707a24d1d50c6f5c2c05cff728ce225359b.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002Fe942fd598d22ea1b9740c0204c4f88fdcf237cba.jpg"],"urls_thumb":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002F2a70732ddfb78b6b19aedef42871e277af65652e.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F86d899b36202d342294d2def0b9781e6bd32e8bb.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002Fb74754373af934e3ab3a7d1aca63481e5b82f1e5.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F1c4fe15f90fb13780e619c7da95f8768ef0f5fae.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002Fb2ce8707a24d1d50c6f5c2c05cff728ce225359b.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fe942fd598d22ea1b9740c0204c4f88fdcf237cba.jpg"],"urls_large":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002F2a70732ddfb78b6b19aedef42871e277af65652e.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002F86d899b36202d342294d2def0b9781e6bd32e8bb.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002Fb74754373af934e3ab3a7d1aca63481e5b82f1e5.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F1c4fe15f90fb13780e619c7da95f8768ef0f5fae.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002Fb2ce8707a24d1d50c6f5c2c05cff728ce225359b.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002Fe942fd598d22ea1b9740c0204c4f88fdcf237cba.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"3","key_label":"Pièces","value_label":"3","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"66","key_label":"Surface","value_label":"66 m²","generic":true},{"key":"ges","value":"d","key_label":"GES","value_label":"D (de 21 à 35)","generic":true},{"key":"energy_rate","value":"e","key_label":"Classe énergie","value_label":"E (de 231 à 330)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"77","department_name":"Seine-et-Marne","city_label":"Meaux 77100","city":"Meaux","zipcode":"77100","lat":48.960603,"lng":2.871767,"source":"user","provider":"android","is_shape":false},"owner":{"store_id":"41361255","user_id":"f960889f-3f5d-454c-8dfa-ea08970dffc7","type":"private","name":"lirole77","no_salesmen":true},"options":{"has_option":true,"booster":false,"photosup":true,"urgent":false,"gallery":false,"sub_toplist":true},"has_phone":false},{"list_id":1669740131,"first_publication_date":"2019-09-03 20:45:56","expiration_date":"2019-11-02 20:45:56","index_date":"2019-09-03 20:45:56","status":"active","category_id":"10","category_name":"Locations","subject":"Appartement 2 pièces aux Clayes sous Bois","body":"Loue appartement de 2 pièces aux Clayes sous Bois de 44 m2 au 1er étage avec ascenseur.\nDans résidence de standing de 2010, sécurisé par digicode et visiophone.\nLe logement comprend :\n- 1 séjour (parquet en chêne massif) avec balcon donnant côté jardins\n- 1 cuisine ouverte semi équipée ( four, plaque vitro céramique, hotte)\n- 1 chambre ( parquet en chêne massif)\n- 1 grande salle de douche\n- WC indépendants\nChauffage électrique individuel, compteur d'eau individuel.\n- 1 cave\n- 1 place de stationné privé dans le parking en sous-sol fermé\n\nL'appartement est situé à proximité du centre ville et à 200 mètres de la gare de Villepreux-Les Clayes (ligne Montparnasse)\n\nLoyer de 790 euros charges comprises ( charges communes et eau froide)\nDisponible à partir du 28 septembre 2019","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669740131.htm","price":[790],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F2d6f2e002739a051ca65b2b88aac7bbab8e539f3.jpg","small_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-small\u002F2d6f2e002739a051ca65b2b88aac7bbab8e539f3.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F2d6f2e002739a051ca65b2b88aac7bbab8e539f3.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002F4191a36a1af5b0a8da7f8b52c50f7bad9969dc84.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F62fbff343e7c4b3279a9a8a5ba12fd9e19b02f92.jpg"],"urls_thumb":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F2d6f2e002739a051ca65b2b88aac7bbab8e539f3.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F4191a36a1af5b0a8da7f8b52c50f7bad9969dc84.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F62fbff343e7c4b3279a9a8a5ba12fd9e19b02f92.jpg"],"urls_large":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F2d6f2e002739a051ca65b2b88aac7bbab8e539f3.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002F4191a36a1af5b0a8da7f8b52c50f7bad9969dc84.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F62fbff343e7c4b3279a9a8a5ba12fd9e19b02f92.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"44","key_label":"Surface","value_label":"44 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"c","key_label":"Classe énergie","value_label":"C (de 91 à 150)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"78","department_name":"Yvelines","city_label":"Les Clayes-sous-Bois 78340","city":"Les Clayes-sous-Bois","zipcode":"78340","lat":48.82263,"lng":1.98642,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"20737296","user_id":"e2e80b16-0796-44c8-8929-e764e6d926de","type":"private","name":"zaz78","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669731506,"first_publication_date":"2019-09-03 20:45:02","expiration_date":"2019-11-02 20:45:02","index_date":"2019-09-03 20:45:02","status":"active","category_id":"10","category_name":"Locations","subject":"APPARTEMENT T2 - 33 m² - MONTROUGE (92)","body":"Bel appartement refait à neuf de type 2 pièces, calme et très lumineux, situé au 2ème étage sans ascenseur. \nIl est composé de : un séjour, une cuisine indépendante équipée, une salle de bain avec WC et une chambre.\nUne cave et un local à vélo complètent ce bien.\n\nLoyer : 960€ charges comprises\n\nProches commodités :\nMonoprix, Picard, restaurants, piscine, centre sportif à moins de 400m\nMetro 4 à 10 mn à pied\nBus 128, 68 à proximité\n\nDisponible immédiatement. Les colocations ne sont pas acceptées.\nLocation directe par propriétaire, merci d’envoyer votre dossier complet par mail :\n- Avis d’imposition 2017 et 2018\n- 3 derniers bulletins de paie\n- Type de votre contrat de travail (CDI, CDD, etc.) \n- Photocopie de votre carte d'identité\n- Garants solides","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669731506.htm","price":[960],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F2a2c0bec45e79cef3b4e9b82072cf0aebcdb3237.jpg","small_url":"https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-small\u002F2a2c0bec45e79cef3b4e9b82072cf0aebcdb3237.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F2a2c0bec45e79cef3b4e9b82072cf0aebcdb3237.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002Fdc197f4f9505a80a920b2284e17881cb12d429e4.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F5118886c9e8482ea5432054bc1c680dfc930ffc9.jpg"],"urls_thumb":["https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F2a2c0bec45e79cef3b4e9b82072cf0aebcdb3237.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002Fdc197f4f9505a80a920b2284e17881cb12d429e4.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F5118886c9e8482ea5432054bc1c680dfc930ffc9.jpg"],"urls_large":["https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F2a2c0bec45e79cef3b4e9b82072cf0aebcdb3237.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002Fdc197f4f9505a80a920b2284e17881cb12d429e4.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F5118886c9e8482ea5432054bc1c680dfc930ffc9.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"33","key_label":"Surface","value_label":"33 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"92","department_name":"Hauts-de-Seine","city_label":"Montrouge 92120","city":"Montrouge","zipcode":"92120","lat":48.81847,"lng":2.3198,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"44149043","user_id":"f1f0a092-e612-4743-8469-94e7c3a4698f","type":"private","name":"Carves Location","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1665328647,"first_publication_date":"2019-08-26 09:24:43","expiration_date":"2019-10-25 09:24:43","index_date":"2019-09-03 20:43:58","status":"active","category_id":"10","category_name":"Locations","subject":"2 chambres à louer \u002F Sèvres (92) proche Paris","body":"Nous louons 2 chambres dans notre maison, à des ETUDIANTES, pour l'année scolaire 2019-20.\nChambres situées à un étage indépendant de la maison (rez-de chaussée demi-enterré).\nFenêtres donnant sur jardin, chambres exposées l'une sud, l'autre ouest.\nChaque chambre est meublée (lit double, bureau, commode, lampes) et décorée sobrement. Accès WIFI.\n \nA partager entre les 2 étudiantes :\n- Mini-kitchenette\n- Salle de bain (douche et double vasque)\n- WC indépendants\n- Accès à la lingerie familiale.\n\nLieu : Sèvres (92), rue Brancas. Quartier résidentiel, très \"vert\", calme et très sûr, à deux pas du Parc de Saint Cloud, et à 5mn des commerces du centre-ville et du cinéma.\nProche de Paris centre : à 15mn à pied du métro Pont de Sèvres (ligne 9) et à 10 minutes de la gare Sèvres Ville d'Avray (15mn de La Défense et 20mn de St Lazare).\nLe prix de 490€ est pour une chambre, charges comprises. \n\nIMPORTANT : Non étudiantes, s'abstenir.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1665328647.htm","price":[490],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fd76f6e65d1e75b4182683093ee21c94f0d427d18.jpg","small_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-small\u002Fd76f6e65d1e75b4182683093ee21c94f0d427d18.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002Fd76f6e65d1e75b4182683093ee21c94f0d427d18.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002Fc8375876a275ad6fdb64e57e91d3760a33020760.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F20fe0a3a17f017d59c250ee15376de7fdd9c5792.jpg"],"urls_thumb":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fd76f6e65d1e75b4182683093ee21c94f0d427d18.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002Fc8375876a275ad6fdb64e57e91d3760a33020760.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F20fe0a3a17f017d59c250ee15376de7fdd9c5792.jpg"],"urls_large":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002Fd76f6e65d1e75b4182683093ee21c94f0d427d18.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002Fc8375876a275ad6fdb64e57e91d3760a33020760.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F20fe0a3a17f017d59c250ee15376de7fdd9c5792.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"5","key_label":"Type de bien","value_label":"Autre","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"20","key_label":"Surface","value_label":"20 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"92","department_name":"Hauts-de-Seine","city_label":"Sèvres 92310","city":"Sèvres","zipcode":"92310","lat":48.82623,"lng":2.2106,"source":"user","provider":"lbc","is_shape":false},"owner":{"store_id":"7212388","user_id":"a6fb3d45-c215-481c-8262-35e1388181f6","type":"private","name":"Lespinasse","no_salesmen":true},"options":{"has_option":true,"booster":false,"photosup":false,"urgent":false,"gallery":true,"sub_toplist":true},"has_phone":false},{"list_id":1669739489,"first_publication_date":"2019-09-03 20:43:32","expiration_date":"2019-11-02 20:43:32","index_date":"2019-09-03 20:43:32","status":"active","category_id":"10","category_name":"Locations","subject":"Location Appartement Montreuil","body":"APPARTEMENT T3 AVEC BALCON ET PARKING Nous vous proposons un appartement neuf (livré le 19 Septembre 2019) au 2ème étage d'une résidence neuve et sécurisée. \nAdresse: Boulevard Boissière, 93100 MONTREUIL .\nUn appartement de 56 m2 avec un séjour et cuisine ouverte sur le séjour, deux chambres dont 1 avec dressing, une salle de bain avec douche et WC, un balcon ensoleillé de 5 m2 ( donnant sur le salon) et une place de parking en sous-sol sécurisé. Aucun travaux à prévoir .\nLoyer 970 Euro(s) HC ,parking inclus et 120 Euro(s) mensuel de provision sur charge avec révision annuelle (les charges comprendront bien le chauffage collectif et la consommation d'eau).","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669739489.htm","price":[970],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002Fc88c89e8e20c7967e6d17de2d436ffb351fa1ed7.jpg","small_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-small\u002Fc88c89e8e20c7967e6d17de2d436ffb351fa1ed7.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002Fc88c89e8e20c7967e6d17de2d436ffb351fa1ed7.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002F737956b2e92f9c1883fc8e7f1fd2e92085ee9106.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F169ba9ade832f27242d9ac816d768d9ea1c96bef.jpg"],"urls_thumb":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002Fc88c89e8e20c7967e6d17de2d436ffb351fa1ed7.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F737956b2e92f9c1883fc8e7f1fd2e92085ee9106.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F169ba9ade832f27242d9ac816d768d9ea1c96bef.jpg"],"urls_large":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002Fc88c89e8e20c7967e6d17de2d436ffb351fa1ed7.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002F737956b2e92f9c1883fc8e7f1fd2e92085ee9106.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F169ba9ade832f27242d9ac816d768d9ea1c96bef.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"3","key_label":"Pièces","value_label":"3","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"56","key_label":"Surface","value_label":"56 m²","generic":true},{"key":"ges","value":"a","key_label":"GES","value_label":"A (moins de 5)","generic":true},{"key":"energy_rate","value":"a","key_label":"Classe énergie","value_label":"A (moins de 50)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"93","department_name":"Seine-Saint-Denis","city_label":"Montreuil 93100","city":"Montreuil","zipcode":"93100","lat":48.86453,"lng":2.44266,"source":"city","provider":"lbc","is_shape":true},"owner":{"store_id":"3299659","user_id":"7a8748a5-a289-4a0c-8d58-9aabef43282b","type":"private","name":"mselati","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1669738832,"first_publication_date":"2019-09-03 20:42:33","expiration_date":"2019-11-02 20:42:33","index_date":"2019-09-03 20:42:33","status":"active","category_id":"10","category_name":"Locations","subject":"Chambre pour étudiante dans appartement Cergy préf","body":"Location d'une chambre meublée de14 m2 à l'attention d'une étudiante dans un appartement d'une surface totale de 70 m2 à partager avec 2 autres colocataires étudiantes (baux séparés).\n\nLoyer mensuel de 480 € charges comprises.\n\nAppartement au sein de la résidence calme et recherchée du Chemin Dupuis de Cergy-préfecture.\n\nEn commun : grand couloir avec de nombreux rangement, cuisine aménagée, salle de bain, toilette séparé.\n\nCuisine : four micro-ondes, plaques halogène, réfrigérateur, machine à laver, couverts, assiettes, casseroles ...\nSalle de bain : vasque, baignoire, miroir, armoire, nombreux rangements ...\nCouloir\u002Frangements : aspirateur, étendoir, bassines, balais, balais brosse ...\n\nChambre privative (fermeture à clé) : lit, chevet, armoire, bureau, chaise, commode, table basse, pouf, psyché ...\n\nPossibilité de louer en sus, une place de parking en sous-sol au sein de la résidence.\n\nA 2 min à pied des premiers commerces de proximité (boulangerie, épicerie, pharmacie …), de la piscine, de la patinoire, du club de gym, ...\nA 5 min à pied de l'ESSEC, de l'EISTI, de l'ENSEA, de l'ESCOM, de l'IUFM, de l'institut polytechnique Saint Louis (EBI, EPMI, ISTOM, IPSL, EPSS ...), de l'université de Cergy-Pontoise UCP, de l'école nationale d'arts ENSAPC...\nA 5 min à pied de la préfecture, de la station de vélo2, de la gare de Cergy Préfecture (lignes RER A et Saint Lazare), de la bibliothèque, du parc de la préfecture, A 5 min à pied du centre commercial régional des 3 fontaines.\nA 10 min à pied du bois (jogging, vélo, activités de plein air), de Port Cergy (bars, restaurants ...), de la base des loisirs de Cergy-Neuville (jogging, balade, baignade, accrobranche, sports en eaux vives...) et du club de gym.\nA 10 min en bus de la gare de Pontoise (lignes RER C et Gare du Nord).\n\nPossibilité d’APL.\nDépôt de garantie de 1 mois.\nPossibilité de réserver ou de louer à distance dans le cas où le postulant habite en province ou à l'étranger.\n\nFurnished room to rent in Cergy (Préfecture area) : 480 € per month.\nRoom (14 m2) in an appartement (total surface : 70 m2) with 2 other room mates (separate contracts).\nPossible to make a reservation if you live outside France, for further information, contact : +33 6 61 70 90 64.\n\nPour toute informations complémentaires ou photos supplémentaires, contact au 06 61 70 90 64.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669738832.htm","price":[480],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Ffd517853f98acc1613e58f54f8979014601b419d.jpg","small_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-small\u002Ffd517853f98acc1613e58f54f8979014601b419d.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002Ffd517853f98acc1613e58f54f8979014601b419d.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002Fdcb74e31d01ef931828f872bae39a63e10a3792c.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002Ffde63a3015530a85c197131d3d731bfd612d5c8b.jpg"],"urls_thumb":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Ffd517853f98acc1613e58f54f8979014601b419d.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002Fdcb74e31d01ef931828f872bae39a63e10a3792c.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002Ffde63a3015530a85c197131d3d731bfd612d5c8b.jpg"],"urls_large":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002Ffd517853f98acc1613e58f54f8979014601b419d.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002Fdcb74e31d01ef931828f872bae39a63e10a3792c.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002Ffde63a3015530a85c197131d3d731bfd612d5c8b.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"11","key_label":"Surface","value_label":"11 m²","generic":true},{"key":"ges","value":"d","key_label":"GES","value_label":"D (de 21 à 35)","generic":true},{"key":"energy_rate","value":"d","key_label":"Classe énergie","value_label":"D (de 151 à 230)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"95","department_name":"Val-d'Oise","city_label":"Cergy 95000","city":"Cergy","zipcode":"95000","lat":49.03522,"lng":2.07984,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"13004607","user_id":"42dc93ac-f74a-4d44-8fb6-88091b3aa009","type":"private","name":"toff.95","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669738226,"first_publication_date":"2019-09-03 20:40:50","expiration_date":"2019-11-02 20:40:50","index_date":"2019-09-03 20:40:50","status":"active","category_id":"10","category_name":"Locations","subject":"Transporteur déménagement","body":"Bonjour,0650741902\n \nJe vous propose mes services de transport avec mon camion de 20m3 pour vous aider à transporter vos achats ou autres en Ile-de-France.\nRéponse uniquement par téléphone, appelez pour un devis et fixer un rendez-vous. \nAcheter en magasin, point relais, particulier ou autres.\n \nNous livrons vos colis mais aussi vos meubles et électroménager\nNous sommes là pour vous aider pour vos déménagements.\n \nNous transportons tous types d’objets avec ou sans manutention comme des canapés ou frigo mais aussi des armoires, table, machine à laver, salon marocain et canapé aussi box garage et dés garage box mais aussi des garde de meuble,ou garde meuble des ,location, colocation \n \nNous transportons aussi vos tapis de courses, meuble cuisine, réfrigérateur, commode, TV, congélateur, four encastrable, planche, douche, lit, chevet, cuisine, frigidaire, matelas, sommier, contreplaque, plan de travail, carrelage, chambre, bureau… déménagement urgent ,urgence,piano,palette,carton,diable,roulette,chariot,manutention,manutentionnaire,yamaha,pas cher,discount,disponible,déménagement le jour même,rapide,professionnel,grand camion,camion,utilitaire,transport,transporteur,électroménager,américain,ameublement,cuisine équipe,loue,loué,location,vide,déchèterie,jardinage,prestation,colocation,vente immobilière,service,lourd,emballage,20m3,hayon,déchargement,fenêtre,parpaing,planche,sol,parquet,carlage ,encombrant, livraison,","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669738226.htm","price":[1],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F1aa3175a0fe2f19cd82c2683f95c8ad7f8c9da64.jpg","small_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-small\u002F1aa3175a0fe2f19cd82c2683f95c8ad7f8c9da64.jpg","nb_images":1,"urls":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002F1aa3175a0fe2f19cd82c2683f95c8ad7f8c9da64.jpg"],"urls_thumb":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F1aa3175a0fe2f19cd82c2683f95c8ad7f8c9da64.jpg"],"urls_large":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002F1aa3175a0fe2f19cd82c2683f95c8ad7f8c9da64.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"3","key_label":"Pièces","value_label":"3","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"40","key_label":"Surface","value_label":"40 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"c","key_label":"Classe énergie","value_label":"C (de 91 à 150)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75019","city":"Paris","zipcode":"75019","lat":48.882381439208984,"lng":2.3823299407958984,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"43492612","user_id":"15a13188-eea5-4845-8142-bd18550f510d","type":"private","name":"camion","no_salesmen":false},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669737696,"first_publication_date":"2019-09-03 20:39:43","expiration_date":"2019-11-02 20:39:43","index_date":"2019-09-03 20:39:43","status":"active","category_id":"10","category_name":"Locations","subject":"Loue appartement","body":"LOUE APPARTEMENT AU REZ DE CHAUSSEE\nCUISINE FERMEE, SALLE A MANGER\u002FSALON, 2 CHAMBRES, 1 SALLE DE BAINS, 1 GRAND COULOIR\nAVEC COURETTE ET RANGEMENT\nCHAUFFAGE ELECTRIQUE, EAU ET ELECTRICITE A LA CHARGE DU LOCATAIRE FENETRES DOUBLE VITRAGE\nAPPARTEMENT VILLAGE CALME, TERRAIN DE JEUX POUR LES ENFANTS, ECOLE CANTINE ET GARDERIE A 400 M, COLLEGE A 5 KM AVEC TRANSPORT PREVU POUR LE COLLEGE\n\n750 euros y compris participation aux frais d'ordures ménagères\nDEPOT DE GARANTIE 750.00 EUROS\n\nDISPONIBLE DES LE 1 OCTOBFE 2019","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669737696.htm","price":[750],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F7a860de742164ce361381f63bb262dffb47ddcce.jpg","small_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-small\u002F7a860de742164ce361381f63bb262dffb47ddcce.jpg","nb_images":1,"urls":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002F7a860de742164ce361381f63bb262dffb47ddcce.jpg"],"urls_thumb":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F7a860de742164ce361381f63bb262dffb47ddcce.jpg"],"urls_large":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002F7a860de742164ce361381f63bb262dffb47ddcce.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"4","key_label":"Pièces","value_label":"4","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"65","key_label":"Surface","value_label":"65 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"95","department_name":"Val-d'Oise","city_label":"Condécourt 95450","city":"Condécourt","zipcode":"95450","lat":49.04426,"lng":1.94312,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"14554296","user_id":"4cb6fa36-fb7e-4de6-90eb-9a7ce74387dd","type":"private","name":"ma","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669737014,"first_publication_date":"2019-09-03 20:38:15","expiration_date":"2019-11-02 20:38:15","index_date":"2019-09-03 20:38:15","status":"active","category_id":"10","category_name":"Locations","subject":"Place de parking VERSAILLES RIVE DROITE","body":"Très proche gare Versailles Rive Droite,\nplace de parking à louer de dimension 1,90 m X 4,20 m,\nau sous-sol d'une copropriété de standing, avec gardienne.\nAccès sécurisé. Entrée par télécommande à distance.\nLibre immédiatement.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669737014.htm","price":[70],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F0153d999f288f7730f5f378e7883e1798c32a7b1.jpg","small_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-small\u002F0153d999f288f7730f5f378e7883e1798c32a7b1.jpg","nb_images":1,"urls":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002F0153d999f288f7730f5f378e7883e1798c32a7b1.jpg"],"urls_thumb":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F0153d999f288f7730f5f378e7883e1798c32a7b1.jpg"],"urls_large":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002F0153d999f288f7730f5f378e7883e1798c32a7b1.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"4","key_label":"Type de bien","value_label":"Parking","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"8","key_label":"Surface","value_label":"8 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"78","department_name":"Yvelines","city_label":"Versailles 78000","city":"Versailles","zipcode":"78000","lat":48.81102,"lng":2.1391,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"18528812","user_id":"81a41e77-8352-46d6-ae10-0afe665eefc7","type":"private","name":"sylvie300860","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1669737144,"first_publication_date":"2019-09-03 20:38:14","expiration_date":"2019-11-02 20:38:14","index_date":"2019-09-03 20:38:14","status":"active","category_id":"10","category_name":"Locations","subject":"Recherche chambre à louer","body":"Bonsoir\nJeune femme sérieuse cherche chambre à louer. \nLoyer 300 euros \u002F mois .\nPas de caution .\nPas sérieux s'abstenir .","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669737144.htm","price":[300],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"5","key_label":"Type de bien","value_label":"Autre","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"10","key_label":"Surface","value_label":"10 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"77","department_name":"Seine-et-Marne","city_label":"Lognes 77185","city":"Lognes","zipcode":"77185","lat":48.83764,"lng":2.63241,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"36278665","user_id":"e5506a0a-5ddf-4a4f-953a-6f6bb12f0acb","type":"private","name":"Farida Mokeddem","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669616026,"first_publication_date":"2019-09-03 20:35:44","expiration_date":"2019-11-02 20:35:44","index_date":"2019-09-03 20:35:44","status":"active","category_id":"10","category_name":"Locations","subject":"Appartement 2 pièce splendide 36m2 Paris 13","body":"Agréable appartement Avenue d’Italie proche du métro . Refait à neuf en juin ,situé au 2eme étages sans ascenseur d’un petit immeuble comprenant un couloir desservant une cuisine indépendante une salle de douche, un WC un salon et une chambre\nPossibilité de garer un vélo, cave. \nLoyer mensuel charges comprises 910","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669616026.htm","price":[910],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F6e885fa70b4ef86bc1355f33ebe1c2ab48390f35.jpg","small_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-small\u002F6e885fa70b4ef86bc1355f33ebe1c2ab48390f35.jpg","nb_images":4,"urls":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002F6e885fa70b4ef86bc1355f33ebe1c2ab48390f35.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F8cf310e23320ba6876e78bb41032cd194d073450.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F881deec0b3708b55b15c0d0ea25afcd8e0040501.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002Fac1d7402044ea4f706fcfa938306d5ac72379102.jpg"],"urls_thumb":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F6e885fa70b4ef86bc1355f33ebe1c2ab48390f35.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F8cf310e23320ba6876e78bb41032cd194d073450.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F881deec0b3708b55b15c0d0ea25afcd8e0040501.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002Fac1d7402044ea4f706fcfa938306d5ac72379102.jpg"],"urls_large":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002F6e885fa70b4ef86bc1355f33ebe1c2ab48390f35.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F8cf310e23320ba6876e78bb41032cd194d073450.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F881deec0b3708b55b15c0d0ea25afcd8e0040501.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002Fac1d7402044ea4f706fcfa938306d5ac72379102.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"38","key_label":"Surface","value_label":"38 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"c","key_label":"Classe énergie","value_label":"C (de 91 à 150)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75013","city":"Paris","zipcode":"75013","lat":48.82267,"lng":2.35836,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"44128119","user_id":"d6d88766-b628-4536-8344-bb0a051dae07","type":"pro","name":"IMMOBILIER DE MONTPARNASSE","siren":"349907501","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1666255917,"first_publication_date":"2019-08-27 22:35:24","expiration_date":"2019-10-26 22:35:24","index_date":"2019-09-03 20:35:24","status":"active","category_id":"10","category_name":"Locations","subject":"Place de parking sécurisée","body":"Une ou 2 places de parking disponibles au N-1 dans une immeuble de grand standing sécurisé situé à l’angle entre rue du viaduc et rue Jean Pierre Timbaud à Issy les Moulineaux.\n\nA 5 min à pied du Tram 2 “Les Moulineaux” et du centre commercial “Les 3 Moulins”. \n\nPrix: 100€ ( charges trimestrielles comprises)","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1666255917.htm","price":[100],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002Fd54cb81f9d037e8ddd77d69be6439762d2707cb9.jpg","small_url":"https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-small\u002Fd54cb81f9d037e8ddd77d69be6439762d2707cb9.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002Fd54cb81f9d037e8ddd77d69be6439762d2707cb9.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002Fd8fc782785e585095b548ab3c4d9eb37a024d426.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F17b3171c129a75a94d72a2070eabd151cf514e48.jpg"],"urls_thumb":["https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002Fd54cb81f9d037e8ddd77d69be6439762d2707cb9.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002Fd8fc782785e585095b548ab3c4d9eb37a024d426.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F17b3171c129a75a94d72a2070eabd151cf514e48.jpg"],"urls_large":["https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002Fd54cb81f9d037e8ddd77d69be6439762d2707cb9.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002Fd8fc782785e585095b548ab3c4d9eb37a024d426.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F17b3171c129a75a94d72a2070eabd151cf514e48.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"4","key_label":"Type de bien","value_label":"Parking","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"12","key_label":"Surface","value_label":"12 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"92","department_name":"Hauts-de-Seine","city_label":"Issy-les-Moulineaux 92130","city":"Issy-les-Moulineaux","zipcode":"92130","lat":48.821231842041016,"lng":2.251610040664673,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"1799714","user_id":"3c0385c1-d35d-446e-942f-31b575db7f21","type":"private","name":"ROUILLEAUX","no_salesmen":false},"options":{"has_option":true,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":true},"has_phone":true},{"list_id":1669735875,"first_publication_date":"2019-09-03 20:34:59","expiration_date":"2019-11-02 20:34:59","index_date":"2019-09-03 20:34:59","status":"active","category_id":"10","category_name":"Locations","subject":"2 pièces 35m2 meublé 800 Euro(s) CC 8 mois max","body":"Pour 8 mois maximum\n2 pièces de 35 m2 entièrement meublé à louer au centre ville d'argenteuil dans un petit immeuble calme.\nTélé, frigo, canapé, lit 2 places, bureau commode, four, machine à laver....\nLa plupart du mobilier est neuf.\nLibre de suite.\n\n800 euros toutes charges comprises (eau électricité, gaz et internet) \n\nEnvoyer par mail pour chaque occupant:\nNom et prénom\nType de contrat et salaire net\nAvis d'imposition\n\nIdem pour le garant","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669735875.htm","price":[800],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F22ab810f936a863ad36d0d2d78827b4fd6e18a2a.jpg","small_url":"https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-small\u002F22ab810f936a863ad36d0d2d78827b4fd6e18a2a.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002F22ab810f936a863ad36d0d2d78827b4fd6e18a2a.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002Fe3c801896ceaa06551b7c846eff1c119391efe3e.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002F71b33066bb2d3677a68e3387807219409d1b9791.jpg"],"urls_thumb":["https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F22ab810f936a863ad36d0d2d78827b4fd6e18a2a.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002Fe3c801896ceaa06551b7c846eff1c119391efe3e.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F71b33066bb2d3677a68e3387807219409d1b9791.jpg"],"urls_large":["https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002F22ab810f936a863ad36d0d2d78827b4fd6e18a2a.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002Fe3c801896ceaa06551b7c846eff1c119391efe3e.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002F71b33066bb2d3677a68e3387807219409d1b9791.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"35","key_label":"Surface","value_label":"35 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"c","key_label":"Classe énergie","value_label":"C (de 91 à 150)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"95","department_name":"Val-d'Oise","city_label":"Argenteuil 95100","city":"Argenteuil","zipcode":"95100","lat":48.945579,"lng":2.248389,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"16204402","user_id":"b768e67a-9ae7-4cc3-9e9b-fe63750fcd39","type":"private","name":"jp","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1657100196,"first_publication_date":"2019-08-08 20:34:20","expiration_date":"2019-10-07 20:34:20","index_date":"2019-09-03 20:34:59","status":"active","category_id":"10","category_name":"Locations","subject":"Parking à louer rue st maur","body":"Parking à louer libre de suite au 171 rue st Maur dans immeuble avec accès sécurisé emplacement situé au 2ieme sous sol .Prix 108,00€ par mois charges comprises.\nMe contacter au : 06 70 28 65 41.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1657100196.htm","price":[108],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"4","key_label":"Type de bien","value_label":"Parking","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"7","key_label":"Surface","value_label":"7 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75011","city":"Paris","zipcode":"75011","lat":48.87008,"lng":2.3731,"source":"user","provider":"lbc","is_shape":false},"owner":{"store_id":"43665000","user_id":"1799cbfb-86fb-4bac-8f47-583340252d25","type":"private","name":"Germe","no_salesmen":true},"options":{"has_option":true,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":true},"has_phone":true},{"list_id":1669735007,"first_publication_date":"2019-09-03 20:33:24","expiration_date":"2019-11-02 20:33:24","index_date":"2019-09-03 20:33:24","status":"active","category_id":"10","category_name":"Locations","subject":"Box 13m2 securisé","body":"A louer, box 13m2. Idéal pour un véhicule ou un stockage d'affaires. Accès limité en hauteur à 1,80m. Sécurisé par bip et gardien 24\u002F24. Situé à Bagnolet, secteur LA NOUE. A proximité de la porte de Bagnolet, près du métro. Pour plus de renseignement, n'hésitez pas à me contacter.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669735007.htm","price":[95],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F15f605552237d3853e0c5b64441053fde591cb36.jpg","small_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-small\u002F15f605552237d3853e0c5b64441053fde591cb36.jpg","nb_images":1,"urls":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F15f605552237d3853e0c5b64441053fde591cb36.jpg"],"urls_thumb":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F15f605552237d3853e0c5b64441053fde591cb36.jpg"],"urls_large":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F15f605552237d3853e0c5b64441053fde591cb36.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"4","key_label":"Type de bien","value_label":"Parking","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"13","key_label":"Surface","value_label":"13 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"93","department_name":"Seine-Saint-Denis","city_label":"Bagnolet 93170","city":"Bagnolet","zipcode":"93170","lat":48.86605,"lng":2.42514,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"11988381","user_id":"4061df97-81bc-41ce-9b6d-070727a11d76","type":"private","name":"Pierre","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669734792,"first_publication_date":"2019-09-03 20:32:39","expiration_date":"2019-11-02 20:32:39","index_date":"2019-09-03 20:32:39","status":"active","category_id":"10","category_name":"Locations","subject":"Chambre en rez de chaussée","body":"Maisons Laffitte , 78600, proche centre ville, RER A et Francilien , particulier loue dans résidence avec gardien , chambre en rez de chaussée , surface 14 m², avec grande fenêtre sur cour. Chauffage collectif, lavabo , sanitaires et WC partagés. Libre fin septembre\nPour renseignements complémentaires et visite : 06 03 91 40 90","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669734792.htm","price":[425],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"14","key_label":"Surface","value_label":"14 m²","generic":true},{"key":"ges","value":"d","key_label":"GES","value_label":"D (de 21 à 35)","generic":true},{"key":"energy_rate","value":"d","key_label":"Classe énergie","value_label":"D (de 151 à 230)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"78","department_name":"Yvelines","city_label":"Maisons-Laffitte 78600","city":"Maisons-Laffitte","zipcode":"78600","lat":48.94585,"lng":2.14512,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"5623995","user_id":"8ba3c05e-1094-4fb3-a36a-cbc0cfe91c22","type":"private","name":"wetzler","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669734636,"first_publication_date":"2019-09-03 20:31:51","expiration_date":"2019-11-02 20:31:51","index_date":"2019-09-03 20:31:51","status":"active","category_id":"10","category_name":"Locations","subject":"A louer maison f4","body":"Maison à louer à Champagne-sur-Oise situé proche de toutes commodités composé au rez-de-chaussée d’un salon, salle à manger cuisine, un wc ainsi qu’un dressing. Au premier étage 2 chambres spacieuse, 1 salle de bain Avec un wc ainsi qu’une troisième chambre dans les combles. Un jardin, une terrasse ainsi que 2 place de parkings privés. Disponible fin septembre début octobre","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669734636.htm","price":[1350],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"1","key_label":"Type de bien","value_label":"Maison","generic":true},{"key":"rooms","value":"4","key_label":"Pièces","value_label":"4","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"100","key_label":"Surface","value_label":"100 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"95","department_name":"Val-d'Oise","city_label":"Champagne-sur-Oise 95660","city":"Champagne-sur-Oise","zipcode":"95660","lat":49.12855,"lng":2.21868,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"16579825","user_id":"acb19abb-31b2-463e-a312-a081d3aa48a6","type":"private","name":"antoniolaetitia","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669240126,"first_publication_date":"2019-09-02 20:37:22","expiration_date":"2019-11-01 20:37:22","index_date":"2019-09-03 20:31:10","status":"active","category_id":"10","category_name":"Locations","subject":"2 pièces à Paris 20ème 36m2 Libre de suite","body":"Proche métros Pelleport et Gambetta. Au 5ème étage avec ascenseur, appartement 2 pièces de 36 m² comprenant: entrée, séjour, chambre, cuisine équipée, salle de bain avec WC, grand placard\u002Fdressing. Chauffage collectif et eau chaude individuel électrique. Libre de suite.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669240126.htm","price":[950],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F36983702484104f007e58a978dc2b8270b85337d.jpg","small_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-small\u002F36983702484104f007e58a978dc2b8270b85337d.jpg","nb_images":5,"urls":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002F36983702484104f007e58a978dc2b8270b85337d.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F85e959bc7080e34fd72dbe7c32341d1e4f420878.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002Fe8e6dfd0f9b2167a0efec7df28a8612a27cb701b.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002Fe4336b1c74eea98d823380077656bcedb3ff6536.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002F90ab9e90a97f37faedafd9db4a470ed4347e401c.jpg"],"urls_thumb":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F36983702484104f007e58a978dc2b8270b85337d.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F85e959bc7080e34fd72dbe7c32341d1e4f420878.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fe8e6dfd0f9b2167a0efec7df28a8612a27cb701b.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Fe4336b1c74eea98d823380077656bcedb3ff6536.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F90ab9e90a97f37faedafd9db4a470ed4347e401c.jpg"],"urls_large":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002F36983702484104f007e58a978dc2b8270b85337d.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F85e959bc7080e34fd72dbe7c32341d1e4f420878.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002Fe8e6dfd0f9b2167a0efec7df28a8612a27cb701b.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002Fe4336b1c74eea98d823380077656bcedb3ff6536.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002F90ab9e90a97f37faedafd9db4a470ed4347e401c.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"36","key_label":"Surface","value_label":"36 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"c","key_label":"Classe énergie","value_label":"C (de 91 à 150)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75020","city":"Paris","zipcode":"75020","lat":48.86646,"lng":2.39999,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"44129465","user_id":"19264819-92c1-4a1d-9dae-e58fd961d715","type":"private","name":"marcel","no_salesmen":true},"options":{"has_option":true,"booster":false,"photosup":true,"urgent":true,"gallery":true,"sub_toplist":true},"has_phone":true},{"list_id":1669733972,"first_publication_date":"2019-09-03 20:30:19","expiration_date":"2019-11-02 20:30:19","index_date":"2019-09-03 20:30:19","status":"active","category_id":"10","category_name":"Locations","subject":"Loue box garage","body":"bonjour je loue mon garage aux clayes sous bois si intéressée me contacter","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669733972.htm","price":[130],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"5","key_label":"Type de bien","value_label":"Autre","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"30","key_label":"Surface","value_label":"30 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"78","department_name":"Yvelines","city_label":"Les Clayes-sous-Bois 78340","city":"Les Clayes-sous-Bois","zipcode":"78340","lat":48.82925,"lng":1.98959,"source":"user","provider":"lbc","is_shape":false},"owner":{"store_id":"30563887","user_id":"4e28ddc2-a54b-46ab-acfd-870acef044bc","type":"private","name":"linda","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1669733841,"first_publication_date":"2019-09-03 20:30:11","expiration_date":"2019-11-02 20:30:11","index_date":"2019-09-03 20:30:11","status":"active","category_id":"10","category_name":"Locations","subject":"Mets en sous location F2 dans le récents","body":"Bonsoir je remets mon annonce en ligne pour mon appartement en sous location de type F2 au val Pompidou il est totalement équipé frigo gazinière micro onde machine à laver de grande marque je mettrais un canapé angle au niveau de la salle à manger toute les charges sont bien attendues comprises sur le prix demander gaz électricité impôt locaux free la wifi etc....","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669733841.htm","price":[980],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Fa84e20b94683fe0057a3a9ee36d131d821ac3440.jpg","small_url":"https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-small\u002Fa84e20b94683fe0057a3a9ee36d131d821ac3440.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002Fa84e20b94683fe0057a3a9ee36d131d821ac3440.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F28d49af4746c37c6e5b85bc200ebb79a7d011beb.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002Fc3086047135bc6b4e33b9e7536f6a1eb4fe8e104.jpg"],"urls_thumb":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Fa84e20b94683fe0057a3a9ee36d131d821ac3440.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F28d49af4746c37c6e5b85bc200ebb79a7d011beb.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002Fc3086047135bc6b4e33b9e7536f6a1eb4fe8e104.jpg"],"urls_large":["https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002Fa84e20b94683fe0057a3a9ee36d131d821ac3440.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F28d49af4746c37c6e5b85bc200ebb79a7d011beb.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002Fc3086047135bc6b4e33b9e7536f6a1eb4fe8e104.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"49","key_label":"Surface","value_label":"49 m²","generic":true},{"key":"ges","value":"b","key_label":"GES","value_label":"B (de 6 à 10)","generic":true},{"key":"energy_rate","value":"a","key_label":"Classe énergie","value_label":"A (moins de 50)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"94","department_name":"Val-de-Marne","city_label":"Créteil 94000","city":"Créteil","zipcode":"94000","lat":48.77745,"lng":2.45519,"source":"city","provider":"lbc","is_shape":false},"owner":{"store_id":"35454361","user_id":"262d5ff6-8951-4a18-a6e6-e72db7b64d6e","type":"private","name":"MIRA","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669733667,"first_publication_date":"2019-09-03 20:30:00","expiration_date":"2019-11-02 20:30:00","index_date":"2019-09-03 20:30:00","status":"active","category_id":"10","category_name":"Locations","subject":"Parking à 5mn de l'aéroport chez particulier","body":"Location places de parking sécurisées à 5 minutes de l’aéroport d’Orly, transferts possible 24h\u002F24h et 7j \u002F7j\nStationnement sécurisé \nPrix : 5€\u002Fjour\nTel 07 67 54 94 15","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669733667.htm","price":[5],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F1de8d7624ec6ed95ba49305f3382e594e57fd8f9.jpg","small_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-small\u002F1de8d7624ec6ed95ba49305f3382e594e57fd8f9.jpg","nb_images":1,"urls":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002F1de8d7624ec6ed95ba49305f3382e594e57fd8f9.jpg"],"urls_thumb":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F1de8d7624ec6ed95ba49305f3382e594e57fd8f9.jpg"],"urls_large":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002F1de8d7624ec6ed95ba49305f3382e594e57fd8f9.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"4","key_label":"Type de bien","value_label":"Parking","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"400","key_label":"Surface","value_label":"400 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"94","department_name":"Val-de-Marne","city_label":"Orly 94310","city":"Orly","zipcode":"94310","lat":48.74305,"lng":2.4014,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"20929223","user_id":"120c5b19-4e99-4a5a-90b1-f44d3a0aa008","type":"private","name":"Robert","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669619541,"first_publication_date":"2019-09-03 20:25:05","expiration_date":"2019-11-02 20:25:05","index_date":"2019-09-03 20:25:05","status":"active","category_id":"10","category_name":"Locations","subject":"2 pieces gare de l est","body":"Au 4 ème étage sans ascenseur d'un immeuble début du siècle rénové, nous vous proposons un petit 2 pièces : Séjour avec cuisine ouverte équipée. chambre avec placards , salle de bain et wc séparés.\nVue dégagée.\nFenêtres double vitrage\nEau chaude et chauffage individuels électriques.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669619541.htm","price":[1015],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F1ac72c4ec40403d532490edc887614536f887062.jpg","small_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-small\u002F1ac72c4ec40403d532490edc887614536f887062.jpg","nb_images":4,"urls":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002F1ac72c4ec40403d532490edc887614536f887062.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F8396806e3fd148dc16eb6b025c8afeb153ff74c3.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002F26b6952dec61e032495346dabb71204ca2878514.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002Ff61db5764c1deee47051a25952afa1f61d195487.jpg"],"urls_thumb":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F1ac72c4ec40403d532490edc887614536f887062.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F8396806e3fd148dc16eb6b025c8afeb153ff74c3.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F26b6952dec61e032495346dabb71204ca2878514.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Ff61db5764c1deee47051a25952afa1f61d195487.jpg"],"urls_large":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002F1ac72c4ec40403d532490edc887614536f887062.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F8396806e3fd148dc16eb6b025c8afeb153ff74c3.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002F26b6952dec61e032495346dabb71204ca2878514.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002Ff61db5764c1deee47051a25952afa1f61d195487.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"33","key_label":"Surface","value_label":"33 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75010","city":"Paris","zipcode":"75010","lat":48.87563,"lng":2.35916,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"23403018","user_id":"767eea5c-26a2-4e7a-b3c7-000ab74dfd8f","type":"pro","name":"l'immobilière du parc","siren":"400018453","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1669730619,"first_publication_date":"2019-09-03 20:22:12","expiration_date":"2019-11-02 20:22:12","index_date":"2019-09-03 20:22:12","status":"active","category_id":"10","category_name":"Locations","subject":"Chambre meublée pr étudiant saison univ2019-2020","body":"ANNONCE EN LIGNE = chambre disponible\n\nUNIQUEMENT pour ÉTUDIANT ou LYCÉEN pour saison universitaire de septembre 2019 à juin 2020 UNIQUEMENT.\n\nChambre meublée tout confort pour étudiant disponible pour la saison universitaire 2019-2020 (de septembre à juin ) d'une capacité d'une seule personne permanente, équipé cuisine micro onde, mini four, plaque de cuisson, cafetière, frigo, lit une personne, salle d'eau, douche lavabo, WC, TV et Internet WIFI.\nLa chambre est indépendante dans un pavillon chez l’habitant au 1er à 100- 150m de la gare RER C et ligne C et H, stations des bus et des commerces divers.\n\nSupermarché LECLERC à 300m ouvert 6j\u002F7 et dimanche matin. Pharmacie, boulangerie etc\n\nA 45 mN de la Porte Maillot par le RER C\n\nStation vélo lib à 100-150m à coté des bus et train, RER.\n\nNon fumeur, présence des parents indispensables.\n\nLoyer 430 euros \u002F mois (charges comprises)\n\nphotos supplémentaires sur demande\n\nÉlectricité en supplément","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669730619.htm","price":[430],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fe51ebda201dbf3678bf80bec9da256de614e4b86.jpg","small_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-small\u002Fe51ebda201dbf3678bf80bec9da256de614e4b86.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002Fe51ebda201dbf3678bf80bec9da256de614e4b86.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002Fde558f0ff1a8ca49286b3914f9935c13efb29c50.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002F404caf7358c279eb5051961f611b7a1a2bfdce51.jpg"],"urls_thumb":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fe51ebda201dbf3678bf80bec9da256de614e4b86.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fde558f0ff1a8ca49286b3914f9935c13efb29c50.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F404caf7358c279eb5051961f611b7a1a2bfdce51.jpg"],"urls_large":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002Fe51ebda201dbf3678bf80bec9da256de614e4b86.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002Fde558f0ff1a8ca49286b3914f9935c13efb29c50.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002F404caf7358c279eb5051961f611b7a1a2bfdce51.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"16","key_label":"Surface","value_label":"16 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"95","department_name":"Val-d'Oise","city_label":"Saint-Ouen-l'Aumône 95310","city":"Saint-Ouen-l'Aumône","zipcode":"95310","lat":49.04636,"lng":2.10594,"source":"user","provider":"lbc","is_shape":false},"owner":{"store_id":"20940030","user_id":"78e4528f-81d7-48fe-b3cb-bd1f210f2e42","type":"private","name":"annonce","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1669729351,"first_publication_date":"2019-09-03 20:21:55","expiration_date":"2019-11-02 20:21:55","index_date":"2019-09-03 20:21:55","status":"active","category_id":"10","category_name":"Locations","subject":"Location studio à Levallois","body":"Je loue un studio meublé dans un immeuble en copropriété, 4eme étage, en très bon état comprenant une pièce principale avec une kitchenette (réfrigérateur, évier, placard sous évier et 2 plaques électriques), une salle de douche avec toilettes et vasque.\nChauffage électrique avec radiateur. Eau chaude par ballon. Boite aux lettres individuelle. A 4 minutes de la gare Levallois . Nombreux commerces et restaurants .","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669729351.htm","price":[700],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F90db63668a5c3be2d5a15375387035dfa3fcd901.jpg","small_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-small\u002F90db63668a5c3be2d5a15375387035dfa3fcd901.jpg","nb_images":7,"urls":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002F90db63668a5c3be2d5a15375387035dfa3fcd901.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F4cf0b47c3b2fb1cb46b1e7e42b0a01747b1fbcac.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F48c80a6586e6cea3497ef98556112d4592cb491b.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F4a68fd6a779162c23ea13a4e155e3922150b1a9a.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002Fa17a34770f8ad9d38131fe1a1c6eb469fd969978.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002F83db05b8474496d4f48c8bd78e9b070d41d367ec.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002Fbd0c30c7b1337e4926c30c4550e0d7ad493c60e8.jpg"],"urls_thumb":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F90db63668a5c3be2d5a15375387035dfa3fcd901.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F4cf0b47c3b2fb1cb46b1e7e42b0a01747b1fbcac.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F48c80a6586e6cea3497ef98556112d4592cb491b.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F4a68fd6a779162c23ea13a4e155e3922150b1a9a.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002Fa17a34770f8ad9d38131fe1a1c6eb469fd969978.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F83db05b8474496d4f48c8bd78e9b070d41d367ec.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Fbd0c30c7b1337e4926c30c4550e0d7ad493c60e8.jpg"],"urls_large":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002F90db63668a5c3be2d5a15375387035dfa3fcd901.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F4cf0b47c3b2fb1cb46b1e7e42b0a01747b1fbcac.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F48c80a6586e6cea3497ef98556112d4592cb491b.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F4a68fd6a779162c23ea13a4e155e3922150b1a9a.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002Fa17a34770f8ad9d38131fe1a1c6eb469fd969978.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002F83db05b8474496d4f48c8bd78e9b070d41d367ec.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002Fbd0c30c7b1337e4926c30c4550e0d7ad493c60e8.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"15","key_label":"Surface","value_label":"15 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"d","key_label":"Classe énergie","value_label":"D (de 151 à 230)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"92","department_name":"Hauts-de-Seine","city_label":"Levallois-Perret 92300","city":"Levallois-Perret","zipcode":"92300","lat":48.893550872802734,"lng":2.2895898818969727,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"2367879","user_id":"d0dcaf06-5a88-4b8c-8765-771bcd39e71f","type":"private","name":"gares","no_salesmen":false},"options":{"has_option":true,"booster":false,"photosup":true,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669729707,"first_publication_date":"2019-09-03 20:20:42","expiration_date":"2019-11-02 20:20:42","index_date":"2019-09-03 20:20:42","status":"active","category_id":"10","category_name":"Locations","subject":"Coloc à 3 val de fontenay recherche femme","body":"Hello !\n\nNous recherchons une femme pour fin septembre qui souhaite rester minimum 1 an.\n\nUne chambre meublée d’un lit de 9.5 m2 (avec grande armoire extérieur aménagée) se libère dans notre coloc de 76 m2 avec grand balcon, située à Fontenay sous Bois (7 minutes à pieds de l’arrêt RER Val de Fontenay – centre commercial juste à côté). \nC’est au 17ème étage, oui je sais c’est haut et mieux vaut ne pas avoir le vertige mais au moins c’est lumineux et sans vis-à-vis et ça c’est plutôt canon :)\n\nLe loyer est à 502€ charges comprise (eau, chauffage, électricité, internet).\n\nL'appartement est plutôt bien agencé et d’actualité. L’insonorisation est top. La cuisine est équipée : frigo, lave-vaisselle (ça, ça fait plaisir !), four, micro-ondes et plein de gadgets trop cool pour les amateurs de cuisine.\nLa machine à laver est dans la salle de bain.\nEn gros, le seul truc qu’il n’y a plus car il est à l’ancienne coloc c’est la télé donc on croise les doigts pour que tu aies ça sous la main. En effet l’appartement n’est pas meublé à la base donc c’est par nos soins.\n\nDans la coloc il y a Hélène, 29 ans, prof d'EPS et Nicolas, 30 ans, consultant. \nNous cherchons une coloc pour emménager fin septembre.\nL’agence a quelques critères :\n- CDI\n- Salaire 3 fois supérieur au montant du loyer\n- 150 euros pour la rédaction du bail et 1 mois de caution sans charges.\n\nNous concernant, ce que l’on recherche vraiment, c’est un feeling avant tout. Une personne sympa, sociable, respectueuse avec qui on puisse partager un repas et autre de temps en temps et qui ne rechigne pas à faire le ménage (c’est, je l’espère, du bon sens pour toi mais c’est toujours mieux de le préciser :))\n\nOn attend ton message, ta visite, et ton arrivée ! \nEt n'oublie pas de nous laisser tes cordonnées pour qu'on puisse te rappeler :)\n\nHélène et Nicolas","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669729707.htm","price":[500],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fc327320cddc6b580afef7804562de9e801ddd6ab.jpg","small_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-small\u002Fc327320cddc6b580afef7804562de9e801ddd6ab.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002Fc327320cddc6b580afef7804562de9e801ddd6ab.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002Fa2e9202ede1b8e2f86f9f4643aebcd45fea2bc74.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F1a183ab64c0d06932423da43bd286483a547d529.jpg"],"urls_thumb":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fc327320cddc6b580afef7804562de9e801ddd6ab.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fa2e9202ede1b8e2f86f9f4643aebcd45fea2bc74.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F1a183ab64c0d06932423da43bd286483a547d529.jpg"],"urls_large":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002Fc327320cddc6b580afef7804562de9e801ddd6ab.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002Fa2e9202ede1b8e2f86f9f4643aebcd45fea2bc74.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F1a183ab64c0d06932423da43bd286483a547d529.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"4","key_label":"Pièces","value_label":"4","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"76","key_label":"Surface","value_label":"76 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"94","department_name":"Val-de-Marne","city_label":"Fontenay-sous-Bois 94120","city":"Fontenay-sous-Bois","zipcode":"94120","lat":48.85098,"lng":2.47471,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"23170419","user_id":"60e80ff5-9793-4ea1-90cf-3088a96c91ff","type":"private","name":"Hélène","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669729874,"first_publication_date":"2019-09-03 20:20:28","expiration_date":"2019-11-02 20:20:28","index_date":"2019-09-03 20:20:28","status":"active","category_id":"10","category_name":"Locations","subject":"Cave cimenté et seche dans résidence récente","body":"Je loue une cave entièrement sèche et cimenté dans une résidence calme et sécurisée.\n\nDeux accès possibles sur le lieu de stockage ; par le parking ou la résidence.\n\nDedans, vous trouverez un éclairage à détecteur de mouvement et ã proximité une prise électrique.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669729874.htm","price":[70],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"5","key_label":"Type de bien","value_label":"Autre","generic":true},{"key":"rooms","value":"1","key_label":"Pièces","value_label":"1","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"7","key_label":"Surface","value_label":"7 m²","generic":true},{"key":"ges","value":"a","key_label":"GES","value_label":"A (moins de 5)","generic":true},{"key":"energy_rate","value":"a","key_label":"Classe énergie","value_label":"A (moins de 50)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"93","department_name":"Seine-Saint-Denis","city_label":"Pantin 93500","city":"Pantin","zipcode":"93500","lat":48.888722,"lng":2.414198,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"10095213","user_id":"1646182e-77ab-4346-9665-d2f0cedfc00b","type":"private","name":"okabe","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1669729645,"first_publication_date":"2019-09-03 20:19:54","expiration_date":"2019-11-02 20:19:54","index_date":"2019-09-03 20:19:54","status":"active","category_id":"10","category_name":"Locations","subject":"bel appartement lumineux avec jardin","body":"Dans résidence calme, proche transports.\nBel appartement de 2 chambres, cuisine aménagée donnant sur séjour, salle de bains, toilettes séparées et rangements.\nBeau jardin de 100 m2 avec terrasse.\nParking sous sol.\nA saisir !","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669729645.htm","price":[850],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fa6192d95e6dc21ac6593c538b9177f50eb7ad8e8.jpg","small_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-small\u002Fa6192d95e6dc21ac6593c538b9177f50eb7ad8e8.jpg","nb_images":2,"urls":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002Fa6192d95e6dc21ac6593c538b9177f50eb7ad8e8.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F2d41edb294105c1c90788d9e3c5907e31a75ba56.jpg"],"urls_thumb":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fa6192d95e6dc21ac6593c538b9177f50eb7ad8e8.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F2d41edb294105c1c90788d9e3c5907e31a75ba56.jpg"],"urls_large":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002Fa6192d95e6dc21ac6593c538b9177f50eb7ad8e8.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F2d41edb294105c1c90788d9e3c5907e31a75ba56.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"3","key_label":"Pièces","value_label":"3","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"63","key_label":"Surface","value_label":"63 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"b","key_label":"Classe énergie","value_label":"B (de 51 à 90)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"91","department_name":"Essonne","city_label":"Corbeil-Essonnes 91100","city":"Corbeil-Essonnes","zipcode":"91100","lat":48.601642,"lng":2.48108,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"16014417","user_id":"9934e8f0-8dbc-454a-92a1-5af49f21b2f9","type":"private","name":"LILI","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669627532,"first_publication_date":"2019-09-03 20:19:43","expiration_date":"2019-11-02 20:19:43","index_date":"2019-09-03 20:19:43","status":"active","category_id":"10","category_name":"Locations","subject":"Pavillon","body":"Dans un ensemble immobilier comprenant deux pavillons, situé dans un environnement de qualité, proche des écoles et sans nuisance, nous vous proposons ce pavillon édifié sur une cave complète avec petite cour et emplacement extérieur privatif pour véhicule. Il se divise en un salon donnant sur une cour, une cuisine ouverte, un wc. Aux étages, trois chambres, deux salles de bains, 2 wc. Le chauffage est au gaz de ville. Jardin indépendant privatif.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669627532.htm","price":[1500],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F9c3ac60e6aa6f16d2815d8c8fa61b6e46c20e17b.jpg","small_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-small\u002F9c3ac60e6aa6f16d2815d8c8fa61b6e46c20e17b.jpg","nb_images":5,"urls":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F9c3ac60e6aa6f16d2815d8c8fa61b6e46c20e17b.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F0b1e8d270fb364333ec7e094a2516802477aa9b8.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002F11891b5ca321206a036e04685b14b58e217e5dde.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002Fa8549fc3dbc65bdf4f3bd0fd76dff45836730afb.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002F4f31ac30275a26dc9b910aec280de2844cb95bb3.jpg"],"urls_thumb":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F9c3ac60e6aa6f16d2815d8c8fa61b6e46c20e17b.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F0b1e8d270fb364333ec7e094a2516802477aa9b8.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F11891b5ca321206a036e04685b14b58e217e5dde.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002Fa8549fc3dbc65bdf4f3bd0fd76dff45836730afb.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002F4f31ac30275a26dc9b910aec280de2844cb95bb3.jpg"],"urls_large":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F9c3ac60e6aa6f16d2815d8c8fa61b6e46c20e17b.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F0b1e8d270fb364333ec7e094a2516802477aa9b8.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002F11891b5ca321206a036e04685b14b58e217e5dde.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002Fa8549fc3dbc65bdf4f3bd0fd76dff45836730afb.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002F4f31ac30275a26dc9b910aec280de2844cb95bb3.jpg"]},"attributes":[{"key":"charges_included","value":"2","key_label":"Charges comprises","value_label":"Non","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"4","key_label":"Pièces","value_label":"4","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"80","key_label":"Surface","value_label":"80 m²","generic":true},{"key":"ges","value":"a","key_label":"GES","value_label":"A (moins de 5)","generic":true},{"key":"energy_rate","value":"a","key_label":"Classe énergie","value_label":"A (moins de 50)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"91","department_name":"Essonne","city_label":"Igny 91430","city":"Igny","zipcode":"91430","lat":48.73022,"lng":2.22707,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"226043","user_id":"d3395862-8068-47cd-9887-36030b1f1d1a","type":"pro","name":"agence de la ferme","siren":"452785660","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669728766,"first_publication_date":"2019-09-03 20:18:08","expiration_date":"2019-11-02 20:18:08","index_date":"2019-09-03 20:18:08","status":"active","category_id":"10","category_name":"Locations","subject":"Parking à louer rue de Tocqueville 75017","body":"Loue 1 place de parking au 140 rue de Tocqueville \n1er sous sol – accès très facile par rampe large –\nAccès sécurisé par bip, ascenceurs \nDisponible de suite","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669728766.htm","price":[170],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"4","key_label":"Type de bien","value_label":"Parking","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"10","key_label":"Surface","value_label":"10 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75017","city":"Paris","zipcode":"75017","lat":48.8893,"lng":2.30529,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"4645754","user_id":"732a32d5-65e9-4d7d-a4e4-414568490e11","type":"private","name":"vidal","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669728747,"first_publication_date":"2019-09-03 20:18:08","expiration_date":"2019-11-02 20:18:08","index_date":"2019-09-03 20:18:08","status":"active","category_id":"10","category_name":"Locations","subject":"Studio duplex","body":"Duplex 28 m2 ,660 euros charges comprises.Entré, salon ,salle à manger cuisines us équipé plaque électrique chambre à l’étage très lumineux Libre de suite ,propriété sécurisé caméra vidéo et portail électrique.1 place de parking.Contact 0664646909 François ne répond pas au sms ni mail","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669728747.htm","price":[660],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F4540b456dad36142f961f52125ba4ceebb0e12a6.jpg","small_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-small\u002F4540b456dad36142f961f52125ba4ceebb0e12a6.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002F4540b456dad36142f961f52125ba4ceebb0e12a6.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002Fb9e8ff55b8d83768c3fb5e3fd5af62d36f258028.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002F320be0e944dd4a4dbf8e93da894b7aae6e76e057.jpg"],"urls_thumb":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F4540b456dad36142f961f52125ba4ceebb0e12a6.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Fb9e8ff55b8d83768c3fb5e3fd5af62d36f258028.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002F320be0e944dd4a4dbf8e93da894b7aae6e76e057.jpg"],"urls_large":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002F4540b456dad36142f961f52125ba4ceebb0e12a6.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002Fb9e8ff55b8d83768c3fb5e3fd5af62d36f258028.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002F320be0e944dd4a4dbf8e93da894b7aae6e76e057.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"28","key_label":"Surface","value_label":"28 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"d","key_label":"Classe énergie","value_label":"D (de 151 à 230)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"91","department_name":"Essonne","city_label":"Montlhéry 91310","city":"Montlhéry","zipcode":"91310","lat":48.6403694152832,"lng":2.2728500366210938,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"17386829","user_id":"a3b9b30d-ee19-4d6e-abf8-678a887b7a1e","type":"private","name":"francois","no_salesmen":false},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669728345,"first_publication_date":"2019-09-03 20:16:57","expiration_date":"2019-11-02 20:16:57","index_date":"2019-09-03 20:16:57","status":"active","category_id":"10","category_name":"Locations","subject":"Appartement F2 à Bois D'Arcy","body":"Loue appartement F2 à Bois d'Arcy , résidence neuve ( septembre 2019) Le Clos de La Grange . Superficie totale 43m2 :\n- surface totale habitable : 38m2\n- loggia : 5 m2\n\nCuisine à aménager . Disponible à partir de fin septembre .","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669728345.htm","price":[730],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"38","key_label":"Surface","value_label":"38 m²","generic":true},{"key":"ges","value":"v","key_label":"GES","value_label":"Vierge","generic":true},{"key":"energy_rate","value":"v","key_label":"Classe énergie","value_label":"Vierge","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"78","department_name":"Yvelines","city_label":"Bois-d'Arcy 78390","city":"Bois-d'Arcy","zipcode":"78390","lat":48.79845,"lng":2.02356,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"8485874","user_id":"731c9922-a947-4ced-9a2f-c3d20e484373","type":"private","name":"brossolette","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669728424,"first_publication_date":"2019-09-03 20:16:55","expiration_date":"2019-11-02 20:16:55","index_date":"2019-09-03 20:16:55","status":"active","category_id":"10","category_name":"Locations","subject":"maison 2 pièces 50 m2","body":"A louer maison, 2 pièces, 50 M2, salon, cuisine, salle d'eau, une grande chambre, petite cours et jardin, quartier pavillonnaire calme, commerces et transports à proximité, disponible au 1er octobre.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669728424.htm","price":[800],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F306d597b464db5796e8b45409b804367f4c4a315.jpg","small_url":"https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-small\u002F306d597b464db5796e8b45409b804367f4c4a315.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002F306d597b464db5796e8b45409b804367f4c4a315.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002Fedf706eed8d24009b414a169414eee11a817c916.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002Fe5fb3448a9de5c0fb67a83dd42f823514574c766.jpg"],"urls_thumb":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002F306d597b464db5796e8b45409b804367f4c4a315.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002Fedf706eed8d24009b414a169414eee11a817c916.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002Fe5fb3448a9de5c0fb67a83dd42f823514574c766.jpg"],"urls_large":["https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002F306d597b464db5796e8b45409b804367f4c4a315.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002Fedf706eed8d24009b414a169414eee11a817c916.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002Fe5fb3448a9de5c0fb67a83dd42f823514574c766.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"1","key_label":"Type de bien","value_label":"Maison","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"50","key_label":"Surface","value_label":"50 m²","generic":true},{"key":"ges","value":"d","key_label":"GES","value_label":"D (de 21 à 35)","generic":true},{"key":"energy_rate","value":"e","key_label":"Classe énergie","value_label":"E (de 231 à 330)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"93","department_name":"Seine-Saint-Denis","city_label":"Epinay-sur-Seine 93800","city":"Epinay-sur-Seine","zipcode":"93800","lat":48.9577,"lng":2.302879,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"43876303","user_id":"7f9fc477-bc38-4f78-9d2a-2dd8ede34a4c","type":"private","name":"rod73","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1639808089,"first_publication_date":"2019-09-03 20:16:00","expiration_date":"2019-11-02 20:16:00","index_date":"2019-09-03 20:16:00","status":"active","category_id":"10","category_name":"Locations","subject":"Appartement 3 pièces 80m²","body":"Dans une résidence calme, sécurisée, proche de tous commerces et face gare, appartement lumineux de 3 pièces d'une superficie de 80m² situé au 1er étage avec ascenseur comprenant : une entrée avec placard, un séjour avec terrasse, deux chambres, une cuisine meublée, une salle de bains, wc, un dégagement. Chauffage individuel au gaz, un box fermé au s\u002Fsol et une cave au s\u002Fsol.\nLoyer + provisions sur charges : 1242€\nDépôt de garantie : 1082€\nHonoraires de l'Agence : 1040€ dont 240€ pour l'état des lieux","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1639808089.htm","price":[1242],"price_calendar":null,"images":{"nb_images":0},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"3","key_label":"Pièces","value_label":"3","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"80","key_label":"Surface","value_label":"80 m²","generic":true},{"key":"custom_ref","value":"lb\u002F281","key_label":"Référence","value_label":"lb\u002F281","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"pro_rates_link","value":"http:\u002F\u002Fagence-crousse.fr\u002Ftarifs.html","value_label":"http:\u002F\u002Fagence-crousse.fr\u002Ftarifs.html","generic":false},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"91","department_name":"Essonne","city_label":"Brunoy 91800","city":"Brunoy","zipcode":"91800","lat":48.6982,"lng":2.50484,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"15808590","user_id":"12a9bf32-ed90-480b-ad09-be7fe68c7bb6","type":"pro","name":"AGENCE CROUSSE FAIRWEATHER","siren":"970200218","pro_rates_link":"http:\u002F\u002Fagence-crousse.fr\u002Ftarifs.html","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true},{"list_id":1669727321,"first_publication_date":"2019-09-03 20:14:44","expiration_date":"2019-11-02 20:14:44","index_date":"2019-09-03 20:14:44","status":"active","category_id":"10","category_name":"Locations","subject":"Location appartement refait à neuf proche Paris","body":"Madame, Monsieur, \n\nJe loue un appartement refait à neuf. \n\nIl se compose de la manière suivante :\n- deux pièces \n- une entrée-cuisine \n- une salle de bain \n\nProche tous commerces.\n\nMétro Croix de Chavaux ligne 9 (à 7 minutes) \nSitué dans un secteur pavillonnaire très calme. \n\nLoyer fixé à 840 euros + 60 euros de provisions pour charges soit un total de 900 euros \n\nJe reste à votre disposition pour toutes informations complémentaires. \n\nPS: Personnes non sérieuses, s'abstenir SVP!!!\n\nBien cordialement","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669727321.htm","price":[900],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fb75fea89751bf4592451b40da3478ad2d219e20e.jpg","small_url":"https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-small\u002Fb75fea89751bf4592451b40da3478ad2d219e20e.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002Fb75fea89751bf4592451b40da3478ad2d219e20e.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F7cf9053cf074110e59fe0865dfbe9590e0e63429.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002Fdbccc480e7cfb91f375905469aee8584e4e9d701.jpg"],"urls_thumb":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fb75fea89751bf4592451b40da3478ad2d219e20e.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F7cf9053cf074110e59fe0865dfbe9590e0e63429.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002Fdbccc480e7cfb91f375905469aee8584e4e9d701.jpg"],"urls_large":["https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002Fb75fea89751bf4592451b40da3478ad2d219e20e.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F7cf9053cf074110e59fe0865dfbe9590e0e63429.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002Fdbccc480e7cfb91f375905469aee8584e4e9d701.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"37","key_label":"Surface","value_label":"37 m²","generic":true},{"key":"ges","value":"d","key_label":"GES","value_label":"D (de 21 à 35)","generic":true},{"key":"energy_rate","value":"g","key_label":"Classe énergie","value_label":"G (de 451 à 590)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"93","department_name":"Seine-Saint-Denis","city_label":"Montreuil 93100","city":"Montreuil","zipcode":"93100","lat":48.86453,"lng":2.44266,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"15220454","user_id":"19315436-1203-4704-b568-6c941dfab1be","type":"private","name":"samya","no_salesmen":true},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":false},{"list_id":1669727197,"first_publication_date":"2019-09-03 20:14:12","expiration_date":"2019-11-02 20:14:12","index_date":"2019-09-03 20:14:12","status":"active","category_id":"10","category_name":"Locations","subject":"Location Studio Photo Video","body":"Bonjour à vous \n\nAmis photographes, dans la prod, pub, et cinéma sans oublier les danseurs, un loft studio photo, pour concrétiser tous vos projets photographiques ou audiovisuels, à la journée, pour quelques jours où quelques heures.\nIdéal pour vos répétitions et tournages vidéos ou shootings photo ( Book, incrustation ou effets spéciaux ), nos fonds vert, noir et blanc ( 11m x 3,25m ) se déroulent aisément ( en L ou en U ) et accompagneront à merveille vos réalisations.\nNos sols sont également de couleurs interchangeables. Idéal pour des artistes tels que des acrobates, danseurs, cascadeurs, ...En effet, pour protéger les articulations et les chutes, nos tapis de danse ( Harlequin vert\u002F noir\u002F blanc ) recouvrent à votre convenance un sol entièrement revêtu de salle en mousse ( tatami de sport, gym, yoga....) et offre un léger amorti, souple et fluide. \n\n- 3 Rideau de fonds (Cyclo Blanc, Noir, Vert chromakey) –SHOWTEX \u002F 5000\n- 1 Rideau occultant SHOWTEX\n- 3 Projecteurs fresnel DIGISTORE \n- 4 panneaux LED PIXAPRO\n\nD'une superficie globale de 125 m2, le Rez de chaussée comprend : \n\nUn espace ouvert de 90 m2, un espace de bureau, une table de réunion ainsi qu'une cuisine équipée.\n\nSur une hauteur maximale de 5 m, des points d'accroches a 3m et 3,75 sont possibles pour des effets humain aériens ( harnais ) \n\nVous aurez également accès à internet ( Wifi ) et une machine à café.\n\nSitué à proximité de Paris, le studio est à deux pas de la station Ivry sur Seine ( RER C ) ou Mairie d'Ivry ( Metro ligne 7 )\n\nMerci","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1669727197.htm","price":[350],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002Fa5a060b1af135f0daa35868e46b67de1c94e22c5.jpg","small_url":"https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-small\u002Fa5a060b1af135f0daa35868e46b67de1c94e22c5.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002Fa5a060b1af135f0daa35868e46b67de1c94e22c5.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002Fcface4ffbd00e2df95c660003b0405e6a810b6df.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002Fed406ee21144cfb946db971c9ee845cf813a69d8.jpg"],"urls_thumb":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002Fa5a060b1af135f0daa35868e46b67de1c94e22c5.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002Fcface4ffbd00e2df95c660003b0405e6a810b6df.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002Fed406ee21144cfb946db971c9ee845cf813a69d8.jpg"],"urls_large":["https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002Fa5a060b1af135f0daa35868e46b67de1c94e22c5.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002Fcface4ffbd00e2df95c660003b0405e6a810b6df.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002Fed406ee21144cfb946db971c9ee845cf813a69d8.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"1","key_label":"Type de bien","value_label":"Maison","generic":true},{"key":"rooms","value":"2","key_label":"Pièces","value_label":"2","generic":true},{"key":"furnished","value":"1","key_label":"Meublé \u002F Non meublé","value_label":"Meublé","generic":true},{"key":"square","value":"125","key_label":"Surface","value_label":"125 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"c","key_label":"Classe énergie","value_label":"C (de 91 à 150)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"94","department_name":"Val-de-Marne","city_label":"Ivry-sur-Seine 94200","city":"Ivry-sur-Seine","zipcode":"94200","lat":48.81167984008789,"lng":2.384890079498291,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"2106977","user_id":"735680a8-02bd-479c-b34f-016449118422","type":"private","name":"WV","no_salesmen":false},"options":{"has_option":false,"booster":false,"photosup":false,"urgent":false,"gallery":false,"sub_toplist":false},"has_phone":true}],"ads_alu":[{"list_id":1667510230,"first_publication_date":"2019-08-30 15:49:19","expiration_date":"2019-10-29 15:49:19","index_date":"2019-08-31 15:15:04","status":"active","category_id":"10","category_name":"Locations","subject":"Maison avec jardinet","body":"2 chambres, 2 wc, VMC, garage, cellier, cave. \nSituée à 1800m de la gare, écoles maternelle et primaire à 200m, Carrefour Market à 600m.","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1667510230.htm","price":[810],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F2d9fd0e0f2ffa77844ef0fd414cbd78db2c34cd3.jpg","small_url":"https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-small\u002F2d9fd0e0f2ffa77844ef0fd414cbd78db2c34cd3.jpg","nb_images":10,"urls":["https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002F2d9fd0e0f2ffa77844ef0fd414cbd78db2c34cd3.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002Fca7143b4d34c9b5fbd03a20069d7e646799a9ca9.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F4d39650f7dbabdc14ee7e8375d0cf4f7d86fb30c.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F6d18a2bd6b66b06c6f7f5cefb892e0a617003335.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002F9a1c49bf954fb9bc4a3ba08558f257327aca73ad.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F0e380c1c29c5abe200cd8a433b8853aa24e1f750.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002Ffeb97bf482edab3374d9debcca5742298611bdba.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002F4f09a8798a11079092173df73c502a502231432a.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F88cf74b5fedffd24e7441056cc3458f1870e5670.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002Fde4d3116f08a6cfcb54dcc8822c8f291d290395a.jpg"],"urls_thumb":["https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F2d9fd0e0f2ffa77844ef0fd414cbd78db2c34cd3.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002Fca7143b4d34c9b5fbd03a20069d7e646799a9ca9.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F4d39650f7dbabdc14ee7e8375d0cf4f7d86fb30c.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F6d18a2bd6b66b06c6f7f5cefb892e0a617003335.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F9a1c49bf954fb9bc4a3ba08558f257327aca73ad.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F0e380c1c29c5abe200cd8a433b8853aa24e1f750.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Ffeb97bf482edab3374d9debcca5742298611bdba.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F4f09a8798a11079092173df73c502a502231432a.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F88cf74b5fedffd24e7441056cc3458f1870e5670.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002Fde4d3116f08a6cfcb54dcc8822c8f291d290395a.jpg"],"urls_large":["https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002F2d9fd0e0f2ffa77844ef0fd414cbd78db2c34cd3.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002Fca7143b4d34c9b5fbd03a20069d7e646799a9ca9.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F4d39650f7dbabdc14ee7e8375d0cf4f7d86fb30c.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F6d18a2bd6b66b06c6f7f5cefb892e0a617003335.jpg","https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002F9a1c49bf954fb9bc4a3ba08558f257327aca73ad.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F0e380c1c29c5abe200cd8a433b8853aa24e1f750.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002Ffeb97bf482edab3374d9debcca5742298611bdba.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002F4f09a8798a11079092173df73c502a502231432a.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F88cf74b5fedffd24e7441056cc3458f1870e5670.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002Fde4d3116f08a6cfcb54dcc8822c8f291d290395a.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"1","key_label":"Type de bien","value_label":"Maison","generic":true},{"key":"rooms","value":"3","key_label":"Pièces","value_label":"3","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"65","key_label":"Surface","value_label":"65 m²","generic":true},{"key":"ges","value":"d","key_label":"GES","value_label":"D (de 21 à 35)","generic":true},{"key":"energy_rate","value":"f","key_label":"Classe énergie","value_label":"F (de 331 à 450)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"77","department_name":"Seine-et-Marne","city_label":"Champagne-sur-Seine 77430","city":"Champagne-sur-Seine","zipcode":"77430","lat":48.40147,"lng":2.7986,"source":"city","provider":"here","is_shape":true},"owner":{"store_id":"1105803","user_id":"ec90f679-90e5-4109-9262-cd5993a866e1","type":"private","name":"fmu","no_salesmen":true},"options":{"has_option":true,"booster":false,"photosup":true,"urgent":false,"gallery":true,"sub_toplist":false},"has_phone":true},{"list_id":1640071173,"first_publication_date":"2019-08-30 18:49:36","expiration_date":"2019-10-29 18:49:36","index_date":"2019-08-30 18:49:36","status":"active","category_id":"10","category_name":"Locations","subject":"Parking proche Place Gambetta Paris 20","body":"Particulier loue dans la résidence \"Les Jardins de la Chine\" parking facile d\"accés\nA proximité de la Place Gambetta avec deux entrées possibles:l'une par la rue des Gatines,l'autre par la rue de la Chine.\n\nOuverture des portes par BIP à distance.\n\nLoyer mensuel toutes charges comprises : 100 EUROS\nAucun frais de dossier:de Particulier à Particulier.\nAgences s'abstenir :merci\nVisite sur rendez vous téléphonique\nContact UNIQUEMENT par téléphone 0611704090 ou SMS.Je ne réponds pas aux mails :trop d'abus","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1640071173.htm","price":[100],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002F2b123bc998710ddc54a1441b96bd883cc5fa8b69.jpg","small_url":"https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-small\u002F2b123bc998710ddc54a1441b96bd883cc5fa8b69.jpg","nb_images":3,"urls":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002F2b123bc998710ddc54a1441b96bd883cc5fa8b69.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002F74ad65cd2d524d6d2612cf878c25e5208fa3b5f4.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002F2d0a6b5676849c13c6589de7f86a138c5a3be288.jpg"],"urls_thumb":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002F2b123bc998710ddc54a1441b96bd883cc5fa8b69.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002F74ad65cd2d524d6d2612cf878c25e5208fa3b5f4.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F2d0a6b5676849c13c6589de7f86a138c5a3be288.jpg"],"urls_large":["https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002F2b123bc998710ddc54a1441b96bd883cc5fa8b69.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002F74ad65cd2d524d6d2612cf878c25e5208fa3b5f4.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002F2d0a6b5676849c13c6589de7f86a138c5a3be288.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"4","key_label":"Type de bien","value_label":"Parking","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"12","key_label":"Surface","value_label":"12 m²","generic":true},{"key":"ges","value":"Non renseigné","key_label":"GES","value_label":"Non renseigné","generic":true},{"key":"energy_rate","value":"Non renseigné","key_label":"Classe énergie","value_label":"Non renseigné","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75020","city":"Paris","zipcode":"75020","lat":48.86578,"lng":2.39832,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"14390341","user_id":"b8c7a1af-bc98-4c16-bd4f-5abd047c1ade","type":"private","name":"fanny","no_salesmen":true},"options":{"has_option":true,"booster":false,"photosup":false,"urgent":false,"gallery":true,"sub_toplist":false},"has_phone":true},{"list_id":1665224562,"first_publication_date":"2019-08-25 21:45:41","expiration_date":"2019-10-24 21:45:41","index_date":"2019-08-25 21:45:41","status":"active","category_id":"10","category_name":"Locations","subject":"Appt 80m2.3\u002F4 pièces.75013 limite 75005","body":"13ème limite 5ème.3\u002F4 pièces de 80m2au 3ème étage d'un immeuble 1978 de standing, calme , habité bourgeoisement.Clair et lumineux, double exposition.Ascenseur,parquet,doubles vitrages,porte blindée, rangements.Cuisine aménagée,double séjour sur arbres du boulevard,balcon filant,2 chambres sur jardin.Salle de bains, WC indépendant.Cave aménagée.Proximité immédiate des transports, école, de nombreux commerces,marchés.Loyer mensuel :2100euros et avance de charges de 200 euros .Tél: 06 87 35 37 87","ad_type":"offer","url":"https:\u002F\u002Fwww.leboncoin.fr\u002Flocations\u002F1665224562.htm","price":[2300],"price_calendar":null,"images":{"thumb_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F9380ee3a1ff6f9a873033b9145294e768c3f5707.jpg","small_url":"https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-small\u002F9380ee3a1ff6f9a873033b9145294e768c3f5707.jpg","nb_images":10,"urls":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-image\u002F9380ee3a1ff6f9a873033b9145294e768c3f5707.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002Ff955e5b3531e3e9401b9eebc8b424aaf9d3d0abd.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002F1617aceed194c9d53c394bdecf045a3112208ae4.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-image\u002F33b54119ae5f991aee64be8c1d3b7d061dc5a570.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-image\u002Ff48fcadb1c8a9efa6d7bc2e210effeedc4153068.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-image\u002Ffadb8d09701ef390c61c36957679d86266c296c6.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-image\u002Ff71d55e5a411eb8b659aa6858d6f8103b3c83d05.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-image\u002F10ca340d089bed9d88d9e28deda9919667282f31.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-image\u002F7e46552ec144b9dd3f4ab0663bebef2165c4f9a6.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-image\u002F28c55ccc707d07c973d7468bea1c31ec12642895.jpg"],"urls_thumb":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-thumb\u002F9380ee3a1ff6f9a873033b9145294e768c3f5707.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002Ff955e5b3531e3e9401b9eebc8b424aaf9d3d0abd.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002F1617aceed194c9d53c394bdecf045a3112208ae4.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-thumb\u002F33b54119ae5f991aee64be8c1d3b7d061dc5a570.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-thumb\u002Ff48fcadb1c8a9efa6d7bc2e210effeedc4153068.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-thumb\u002Ffadb8d09701ef390c61c36957679d86266c296c6.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-thumb\u002Ff71d55e5a411eb8b659aa6858d6f8103b3c83d05.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-thumb\u002F10ca340d089bed9d88d9e28deda9919667282f31.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-thumb\u002F7e46552ec144b9dd3f4ab0663bebef2165c4f9a6.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-thumb\u002F28c55ccc707d07c973d7468bea1c31ec12642895.jpg"],"urls_large":["https:\u002F\u002Fimg2.leboncoin.fr\u002Fad-large\u002F9380ee3a1ff6f9a873033b9145294e768c3f5707.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002Ff955e5b3531e3e9401b9eebc8b424aaf9d3d0abd.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002F1617aceed194c9d53c394bdecf045a3112208ae4.jpg","https:\u002F\u002Fimg0.leboncoin.fr\u002Fad-large\u002F33b54119ae5f991aee64be8c1d3b7d061dc5a570.jpg","https:\u002F\u002Fimg1.leboncoin.fr\u002Fad-large\u002Ff48fcadb1c8a9efa6d7bc2e210effeedc4153068.jpg","https:\u002F\u002Fimg4.leboncoin.fr\u002Fad-large\u002Ffadb8d09701ef390c61c36957679d86266c296c6.jpg","https:\u002F\u002Fimg5.leboncoin.fr\u002Fad-large\u002Ff71d55e5a411eb8b659aa6858d6f8103b3c83d05.jpg","https:\u002F\u002Fimg3.leboncoin.fr\u002Fad-large\u002F10ca340d089bed9d88d9e28deda9919667282f31.jpg","https:\u002F\u002Fimg7.leboncoin.fr\u002Fad-large\u002F7e46552ec144b9dd3f4ab0663bebef2165c4f9a6.jpg","https:\u002F\u002Fimg6.leboncoin.fr\u002Fad-large\u002F28c55ccc707d07c973d7468bea1c31ec12642895.jpg"]},"attributes":[{"key":"charges_included","value":"1","key_label":"Charges comprises","value_label":"Oui","generic":true},{"key":"real_estate_type","value":"2","key_label":"Type de bien","value_label":"Appartement","generic":true},{"key":"rooms","value":"3","key_label":"Pièces","value_label":"3","generic":true},{"key":"furnished","value":"2","key_label":"Meublé \u002F Non meublé","value_label":"Non meublé","generic":true},{"key":"square","value":"80","key_label":"Surface","value_label":"80 m²","generic":true},{"key":"ges","value":"c","key_label":"GES","value_label":"C (de 11 à 20)","generic":true},{"key":"energy_rate","value":"e","key_label":"Classe énergie","value_label":"E (de 231 à 330)","generic":true},{"key":"is_import","value":"false","value_label":"false","generic":false},{"key":"lease_type","value":"rent","value_label":"rent","generic":false}],"location":{"region_id":"12","region_name":"Ile-de-France","department_id":"75","department_name":"Paris","city_label":"Paris 75005","city":"Paris","zipcode":"75005","lat":48.84002,"lng":2.34674,"source":"address","provider":"here","is_shape":false},"owner":{"store_id":"43973610","user_id":"a27ea015-7c81-4ee2-ac18-e8ff035cc83f","type":"private","name":"grangeliz","no_salesmen":true},"options":{"has_option":true,"booster":false,"photosup":true,"urgent":false,"gallery":true,"sub_toplist":false},"has_phone":true}]},"status":"ready"}]
</script>
- <script src="//advertising.leboncoin.fr/"></script>
- <script src="//hit.leboncoin.fr/"></script>
-
-
-
-
- <script>
- (function (a,d){var s,t;s=d.createElement('script');
- s.src=a;s.async=1;
- t=d.getElementsByTagName('script')[0];
- t.parentNode.insertBefore(s,t);
- })("https://piochehartwood.melverntownville.com/overharvests.js", document);
- </script>
-
-
-
-
+<script src="//static-rav.leboncoin.fr/app.bb9ef9d8cbc26ac2a8da.js" crossorigin="anonymous"></script>
- </body>
+</body>
</html>