Gestion des données : NumPy et Pandas

Python est devenu le premier langage scientifiques. Il est ainsi possible de gérer l’ensemble des phases d’une analyse de données d’économistes.

On pourrait résumer l’analyse empirique à 3 étapes :

  • Collecte des données (sources, …)

  • Chargement des données

  • Traitement des données (valeurs manquantes, proxy, …)

  • Visualisation des données

  • Modèle statistiques

Nous commencerons directement au point numéro 2 tout en mentionnant que de nombreux modules existent afi nde récupérer des données directement sur internet via Python. Voici une liste non exhaustive:

  • import quandl

  • import dbnomics

Si il n’existe pas de module spécifique, il existe des fonctions dans le module Panda que l’on va beaucoup utiliser. Un chapitre explorera cette possibilité mais ne sera pas exposée durant ce cours.

Chargement des données : méthode open()

Répertoire de travail

Ces données peuvent se situer sur le web ou sur votre ordinateur. Lorsque vous lancer Python ou Jupyter, vous le faite dans ce qu’on appel un répertoire de travail. Le répertoire contenant le notebook ou le porgramme est le répertoire courant. Lorsqu’on indiquera à Python d’importer des données, il faudra:

  • utiliser un chemin absolu et rentrer le chemin vers le fichier de données. Un chemin absolu commence toujours par /

  • utiliser un chemin relative, l’origine sera alors le répertoire courant

Pour travailler avec différents répertoire, le module os peut-êtyre utile. Par exemple, on peut afficher dans Python le répertoire courant :

import os
cwd = os.getcwd()
print(cwd)
/home/user1/Nextcloud/Cours/Informatique/Python/intro_data_science/python_tutorial

Le module os propose plusieurs fonctions très utile.

  • La fonction chdir() permet de changer le répertoire courant

  • La fonction listdir() permet de lister tous les documents et répertoires contenus dans le répertoire courant ou dans n’importe quel répertoire si le paramètre path renseigne le chemin.

Chargement à partir d’un fichier csv

Pour charger un fichier, on utilise la fonction open() puis on fait appel à la méthode reader() du module csv. Généralement, on utilise cette fonction dans un bloc with. Un fichier ouvert dans with est automatiquement refermé à la fin. Si on n’utilise pas ce bloc, il faut impérativement refermer le fichier après les opérations faites dessus afin d’éviter d’encombrer la mémoire !

import csv
with open('./data/25.csv') as doubs:
  doubs_reader = csv.reader(doubs, delimiter=',', quotechar='"')
  data = [x for x in doubs_reader]
print(data)
print(type(data))
[['id_mutation', 'date_mutation', 'numero_disposition', 'nature_mutation', 'valeur_fonciere', 'adresse_numero', 'adresse_suffixe', 'adresse_nom_voie', 'adresse_code_voie', 'code_postal', 'code_commune', 'nom_commune', 'code_departement', 'ancien_code_commune', 'ancien_nom_commune', 'id_parcelle', 'ancien_id_parcelle', 'numero_volume', 'lot1_numero', 'lot1_surface_carrez', 'lot2_numero', 'lot2_surface_carrez', 'lot3_numero', 'lot3_surface_carrez', 'lot4_numero', 'lot4_surface_carrez', 'lot5_numero', 'lot5_surface_carrez', 'nombre_lots', 'code_type_local', 'type_local', 'surface_reelle_bati', 'nombre_pieces_principales', 'code_nature_culture', 'nature_culture', 'code_nature_culture_speciale', 'nature_culture_speciale', 'surface_terrain', 'longitude', 'latitude'], ['2019-73036', '2019-02-25', '000001', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '2260', '6.178685', '47.388526'], ['2019-73036', '2019-02-25', '000001', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2792', '6.178685', '47.388526'], ['2019-73036', '2019-02-25', '000002', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '2260', '6.178685', '47.388526'], ['2019-73036', '2019-02-25', '000002', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2792', '6.178685', '47.388526'], ['2019-73037', '2019-03-09', '000002', 'Vente', '277450', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0382', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '284', '6.010203', '47.268524'], ['2019-73037', '2019-03-09', '000002', 'Vente', '277450', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0383', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '24', '6.010258', '47.268593'], ['2019-73037', '2019-03-09', '000002', 'Vente', '277450', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0384', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.010475', '47.268349'], ['2019-73038', '2019-03-09', '000001', 'Vente', '76250', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0381', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '139', '5', 'S', 'sols', '', '', '126', '6.010398', '47.268616'], ['2019-73039', '2019-03-25', '000001', 'Vente', '251650', '5123', '', 'GRANGES DU CHAMP DU FOURNE', 'B059', '25440', '25109', 'Cessey', '25', '', '', '25109000AC0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '166', '7', 'S', 'sols', '', '', '800', '5.935817', '47.128046'], ['2019-73039', '2019-03-25', '000001', 'Vente', '251650', '5123', '', 'GRANGES DU CHAMP DU FOURNE', 'B059', '25440', '25109', 'Cessey', '25', '', '', '25109000AC0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '166', '7', 'AG', "terrains d'agrément", '', '', '852', '5.935817', '47.128046'], ['2019-73040', '2019-04-01', '000001', "Vente en l'état futur d'achèvement", '205600', '', '', 'A PRAND', 'B107', '25480', '25454', 'Pirey', '25', '', '', '25454000AH0259', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.965378', '47.258764'], ['2019-73040', '2019-04-01', '000001', "Vente en l'état futur d'achèvement", '205600', '', '', 'A PRAND', 'B107', '25480', '25454', 'Pirey', '25', '', '', '25454000AH0259', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.965378', '47.258764'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0399', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '572', '5.97357', '47.235445'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'CHE DU SANATORIUM', '4690', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0410', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '385', '5.972884', '47.235189'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0415', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '603', '5.973229', '47.235323'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0418', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '293', '5.973384', '47.235391'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0421', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '219', '5.972961', '47.235275'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0424', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1293', '5.97434', '47.235558'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '79', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '56', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '33', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '74', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73043', '2019-03-27', '000001', "Vente en l'état futur d'achèvement", '285000', '2', 'B', 'ALL DOCTEUR MAITRE', '1612', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0332', '', '', '23', '', '25', '', '7', '', '', '', '', '', '3', '2', 'Appartement', '91', '4', '', '', '', '', '', '6.020371', '47.255286'], ['2019-73044', '2019-04-08', '000001', 'Vente', '86000', '', '', 'LES ARDOTS', 'B001', '25870', '25265', 'Geneuille', '25', '', '', '25265000AD0605', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '913', '5.96775', '47.322781'], ['2019-73045', '2019-03-13', '000001', 'Vente', '159000', '10', '', 'RUE COURVOISIER', '0009', '25260', '25345', 'Longevelle-sur-Doubs', '25', '', '', '25345000ZD0221', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '121', '7', 'S', 'sols', '', '', '628', '6.649923', '47.454307'], ['2019-73045', '2019-03-13', '000001', 'Vente', '159000', '', '', 'LES CORNEILLES', 'B072', '25260', '25345', 'Longevelle-sur-Doubs', '25', '', '', '25345000ZD0245', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '170', '6.650082', '47.454321'], ['2019-73046', '2019-03-26', '000001', 'Vente', '226000', '19', '', 'RUE VOYE DE L ISLE', '0080', '25250', '25226', 'Étrappe', '25', '', '', '25226000ZA0080', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '6', 'S', 'sols', '', '', '1016', '6.578618', '47.469529'], ['2019-73047', '2019-04-05', '000001', 'Vente', '78000', '28', 'A', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0074', '', '', '11', '63.62', '31', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '4', '', '', '', '', '', '6.018239', '47.251632'], ['2019-73048', '2019-03-21', '000001', 'Vente', '81500', '17', '', 'AV CHARLES SIFFERT', '1080', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0007', '', '', '12', '101.07', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '95', '0', '', '', '', '', '', '6.015127', '47.24185'], ['2019-73048', '2019-03-21', '000001', 'Vente', '81500', '17', '', 'AV CHARLES SIFFERT', '1080', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0007', '', '', '39', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.015127', '47.24185'], ['2019-73049', '2019-03-12', '000001', 'Vente', '206000', '3', '', 'RUE DU DOCTEUR GIRARDOT', '1590', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '87', '4', 'S', 'sols', '', '', '468', '5.996263', '47.227774'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '20', '', 'AV FONTAINE ARGENT', '2030', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '53', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '11', '', 'RUE BEAUREGARD', '0380', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '50', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '20', '', 'AV FONTAINE ARGENT', '2030', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '52', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '11', '', 'RUE BEAUREGARD', '0380', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73051', '2019-03-29', '000001', 'Vente', '79750', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '4', '67.37', '5', '', '6', '', '', '', '', '', '3', '2', 'Appartement', '68', '4', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73052', '2019-04-03', '000001', 'Vente', '8000', '13', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0088', '', '', '77', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.040617', '47.253966'], ['2019-73053', '2019-04-08', '000001', 'Vente', '8000', '29', 'C', 'CHE DES MONTBOUCONS', '3500', '25000', '25056', 'Besançon', '25', '', '', '25056000NT0241', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.98984', '47.25726'], ['2019-73054', '2019-03-28', '000001', 'Vente', '8500', '10', '', 'RUE DES COURTILS', '1460', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0153', '', '', '106', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.046495', '47.2645'], ['2019-73055', '2019-04-10', '000001', 'Vente', '6200', '31', '', 'AV DE CHARDONNET', '0960', '25000', '25056', 'Besançon', '25', '', '', '25056000CZ0099', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.039858', '47.23115'], ['2019-73056', '2019-04-03', '000001', 'Vente', '155000', '5', '', 'RUE D ALSACE', '0130', '25000', '25056', 'Besançon', '25', '', '', '25056000AH0054', '', '', '13', '', '17', '68.94', '18', '', '', '', '', '', '3', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.028073', '47.239308'], ['2019-73057', '2019-04-03', '000001', 'Vente', '191933', '57', '', 'CHE DES PRES DE VAUX', '4220', '25000', '25056', 'Besançon', '25', '', '', '25056000DE0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '7', 'S', 'sols', '', '', '530', '6.054279', '47.230811'], ['2019-73057', '2019-04-03', '000001', 'Vente', '191933', '57', '', 'CHE DES PRES DE VAUX', '4220', '25000', '25056', 'Besançon', '25', '', '', '25056000DE0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '7', 'J', 'jardins', 'POTAG', 'Jardin potager', '1018', '6.054279', '47.230811'], ['2019-73057', '2019-04-03', '000001', 'Vente', '191933', '57', '', 'CHE DES PRES DE VAUX', '4220', '25000', '25056', 'Besançon', '25', '', '', '25056000DE0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '7', 'L', 'landes', '', '', '850', '6.054279', '47.230811'], ['2019-73058', '2019-04-09', '000001', 'Vente', '228000', '5', '', 'RUE CHAMP DU SEILLER', '0077', '25640', '25508', 'Roulans', '25', '', '', '25508000AB0517', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '4', 'S', 'sols', '', '', '855', '6.240416', '47.318954'], ['2019-73059', '2019-04-08', '000001', 'Vente', '150500', '1', '', 'RUE DU CHASNOT', '1130', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0457', '', '', '9', '67.04', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '79', '3', '', '', '', '', '', '6.02701', '47.247254'], ['2019-73060', '2019-04-09', '000001', 'Vente', '242000', '17', '', 'RUE DU BELVEDERE', '0150', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AX0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '5', 'S', 'sols', '', '', '500', '6.350524', '47.341083'], ['2019-73060', '2019-04-09', '000001', 'Vente', '242000', '17', '', 'RUE DU BELVEDERE', '0150', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AX0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '5', 'AG', "terrains d'agrément", '', '', '1452', '6.350524', '47.341083'], ['2019-73061', '2019-04-09', '000001', 'Vente', '115000', '23', 'B', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0575', '', '', '632', '', '692', '62.94', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.019921', '47.248271'], ['2019-73061', '2019-04-09', '000001', 'Vente', '115000', '21', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0575', '', '', '461', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019921', '47.248271'], ['2019-73062', '2019-04-08', '000001', 'Vente', '780', '', '', 'AU PAUTET', 'B106', '25320', '25287', 'Grandfontaine', '25', '', '', '25287000AB0075', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '6', '5.894675', '47.199222'], ['2019-73063', '2019-04-09', '000001', "Vente en l'état futur d'achèvement", '208400', '2', '', 'CHE DE LA PLANCHE', '0152', '25770', '25258', 'Franois', '25', '', '', '25258000AC0196', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.93859', '47.229168'], ['2019-73063', '2019-04-09', '000001', "Vente en l'état futur d'achèvement", '208400', '2', '', 'CHE DE LA PLANCHE', '0152', '25770', '25258', 'Franois', '25', '', '', '25258000AC0196', '', '', '16', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.93859', '47.229168'], ['2019-73063', '2019-04-09', '000001', "Vente en l'état futur d'achèvement", '208400', '2', '', 'CHE DE LA PLANCHE', '0152', '25770', '25258', 'Franois', '25', '', '', '25258000AC0196', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.93859', '47.229168'], ['2019-73064', '2019-03-22', '000001', 'Vente', '60000', '', '', 'VILLAGE', 'B044', '25870', '25612', 'Vieilley', '25', '', '', '25612000AB0103', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '35', '6.080034', '47.336893'], ['2019-73064', '2019-03-22', '000001', 'Vente', '60000', '10', '', 'RTE DE MARCHAUX', '0028', '25870', '25612', 'Vieilley', '25', '', '', '25612000AB0106', '', '', '10', '', '2', '135.89', '8', '', '', '', '', '', '3', '2', 'Appartement', '126', '4', '', '', '', '', '', '6.079714', '47.336808'], ['2019-73065', '2019-03-29', '000001', 'Vente', '100000', '62', '', 'GR GRANDE RUE', '0100', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0276', '', '', '3', '', '4', '8.83', '', '', '', '', '', '', '2', '2', 'Appartement', '106', '5', '', '', '', '', '', '6.233722', '47.298367'], ['2019-73065', '2019-03-29', '000001', 'Vente', '100000', '62', '', 'GR GRANDE RUE', '0100', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0276', '', '', '2', '', '8', '160.93', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '243', '0', '', '', '', '', '', '6.233722', '47.298367'], ['2019-73065', '2019-03-29', '000001', 'Vente', '100000', '', '', 'CHAMP DERRIERE LA GRANGERI', 'B020', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '409', '6.233939', '47.298448'], ['2019-73066', '2019-03-28', '000001', 'Vente', '78100', '1', '', 'RUE MARC BLOCH', '3286', '25000', '25056', 'Besançon', '25', '', '', '25056000EP0263', '', '', '99', '93.7', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '87', '4', '', '', '', '', '', '5.969947', '47.217754'], ['2019-73066', '2019-03-28', '000001', 'Vente', '78100', '1', '', 'RUE MARC BLOCH', '3286', '25000', '25056', 'Besançon', '25', '', '', '25056000EP0263', '', '', '31', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.969947', '47.217754'], ['2019-73067', '2019-03-28', '000001', 'Vente', '35183.96', '', '', 'BOIS CARRE', 'C002', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000BA0208', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '980', '6.33667', '47.352739'], ['2019-73068', '2019-02-25', '000001', 'Vente', '165000', '47', '', 'LES VERNES', 'B060', '25870', '25200', 'Devecey', '25', '', '', '25200000AI0467', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '523', '6.011204', '47.324913'], ['2019-73069', '2019-03-21', '000001', 'Vente', '1600', '', '', 'LES VAUCHES', 'B232', '25660', '25245', 'Fontain', '25', '', '', '25245000ZM0010', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '8341', '6.022924', '47.207125'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '87', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '69', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '247', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '60', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '393', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '332', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '394', '', '395', '', '396', '', '397', '', '399', '', '40', '4', 'Local industriel. commercial ou assimilé', '334', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73071', '2019-04-15', '000001', 'Vente', '20000', '', '', 'CONNOTIERE', 'B027', '25720', '25058', 'Beure', '25', '', '', '25058000AB0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '796', '6.000663', '47.211775'], ['2019-73072', '2019-04-04', '000001', 'Vente', '28000', '23', '', 'RUE 7EME ARMEE AMERICAINE', '4750', '25000', '25056', 'Besançon', '25', '', '', '25056000KR0021', '', '', '3', '33.95', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '33', '1', '', '', '', '', '', '6.01748', '47.216813'], ['2019-73073', '2019-04-11', '000001', 'Vente', '110000', '131', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0213', '', '', '576', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.036537', '47.253709'], ['2019-73073', '2019-04-11', '000001', 'Vente', '110000', '9', '', 'CITE PARC DES CHAPRAIS', '0955', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0213', '', '', '251', '', '261', '61.58', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '4', '', '', '', '', '', '6.036537', '47.253709'], ['2019-73074', '2019-04-11', '000001', 'Vente', '100000', '76', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BL0111', '', '', '135', '17.9', '136', '17.4', '144', '42.14', '172', '', '', '', '4', '4', 'Local industriel. commercial ou assimilé', '44', '0', '', '', '', '', '', '6.012625', '47.256766'], ['2019-73075', '2019-04-12', '000001', 'Vente', '254500', '2', 'B', 'RUE DES MAISONS NEUVES', '0029', '25320', '25147', 'Chemaudin et Vaux', '25', '', '', '25147000AA0231', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '5', 'S', 'sols', '', '', '719', '5.891686', '47.224765'], ['2019-73076', '2019-04-15', '000001', 'Vente', '81150', '7', '', 'AV VILLARCEAU', '5280', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0010', '', '', '24', '', '37', '53.24', '', '', '', '', '', '', '2', '2', 'Appartement', '53', '2', '', '', '', '', '', '6.008254', '47.236082'], ['2019-73076', '2019-04-15', '000001', 'Vente', '81150', '7', '', 'AV VILLARCEAU', '5280', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0010', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.008254', '47.236082'], ['2019-73077', '2019-04-12', '000001', "Vente en l'état futur d'achèvement", '5000', '2', 'B', 'ALL DOCTEUR MAITRE', '1612', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0332', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '72', '3', '', '', '', '', '', '6.020371', '47.255286'], ['2019-73078', '2019-04-11', '000001', 'Vente', '80000', '', '', 'VILLAGE', 'B044', '25870', '25612', 'Vieilley', '25', '', '', '25612000AB0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", '', '', '1294', '6.080876', '47.337844'], ['2019-73079', '2019-04-15', '000001', 'Vente', '235000', '14', '', 'RUE DE LA PEROUSE', '0109', '25660', '25395', 'Montfaucon', '25', '', '', '25395000AC0021', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '1052', '6.086699', '47.234534'], ['2019-73080', '2019-03-29', '000001', 'Vente', '91750', '22', '', 'RUE TRISTAN BERNARD', '4970', '25000', '25056', 'Besançon', '25', '', '', '25056000CT0116', '', '', '21', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '60', '4', '', '', '', '', '', '6.039429', '47.248472'], ['2019-73081', '2019-04-12', '000001', 'Vente', '222000', '1', '', 'RUE VIEILLES PERRIERES', '5230', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0080', '', '', '12', '101.5', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '104', '5', '', '', '', '', '', '6.012335', '47.234135'], ['2019-73081', '2019-04-12', '000001', 'Vente', '222000', '1', '', 'RUE VIEILLES PERRIERES', '5230', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0080', '', '', '82', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.012335', '47.234135'], ['2019-73082', '2019-04-16', '000001', 'Vente', '178300', '24', 'B', 'RUE DU BOCHET', '0004', '25170', '25332', 'Lavernay', '25', '', '', '25332000ZB0177', '', '', '1', '91.3', '', '', '', '', '', '', '', '', '1', '1', 'Maison', '83', '3', '', '', '', '', '', '5.824411', '47.249971'], ['2019-73083', '2019-04-12', '000001', 'Vente', '240000', '2', 'D', 'RUE DU QUETIS', '0054', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AC0303', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '4', 'S', 'sols', '', '', '449', '5.868202', '47.206064'], ['2019-73083', '2019-04-12', '000001', 'Vente', '240000', '', '', 'A LA NOUELLE', 'B062', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AC0336', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '197', '5.869175', '47.205804'], ['2019-73083', '2019-04-12', '000001', 'Vente', '240000', '', '', 'A LA NOUELLE', 'B062', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AC0338', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '145', '5.868669', '47.206008'], ['2019-73084', '2019-03-29', '000001', 'Vente', '136800', '', '', 'LA COMBE CONSTANTIN', 'B042', '25360', '25446', 'Passavant', '25', '', '', '25446000AD0253', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '79', '2', 'P', 'prés', '', '', '802', '6.408359', '47.287813'], ['2019-73084', '2019-03-29', '000001', 'Vente', '136800', '', '', 'LA COMBE CONSTANTIN', 'B042', '25360', '25446', 'Passavant', '25', '', '', '25446000AD0253', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '79', '2', 'S', 'sols', '', '', '600', '6.408359', '47.287813'], ['2019-73085', '2019-04-03', '000001', 'Vente', '7000', '38', 'B', 'AV DE L ILE DE FRANCE', '2750', '25000', '25056', 'Besançon', '25', '', '', '25056000LR0042', '', '', '45', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.965415', '47.221549'], ['2019-73086', '2019-04-11', '000001', 'Vente', '73100', '13', '', 'RUE PASTEUR', '3860', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0124', '', '', '206', '44.85', '210', '', '', '', '', '', '', '', '2', '2', 'Appartement', '38', '2', '', '', '', '', '', '6.022267', '47.237648'], ['2019-73087', '2019-04-12', '000001', 'Vente', '96900', '13', '', 'CITE PARC DES CHAPRAIS', '0955', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0213', '', '', '351', '', '363', '53.77', '', '', '', '', '', '', '2', '2', 'Appartement', '58', '3', '', '', '', '', '', '6.036537', '47.253709'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '119', '4', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73089', '2019-04-11', '000001', 'Vente', '142000', '70', '', 'RUE DES GRANGES', '2510', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0082', '', '', '3', '', '9', '95.16', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.026867', '47.236922'], ['2019-73090', '2019-04-11', '000001', 'Vente', '99500', '58', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0113', '', '', '46', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.014931', '47.254683'], ['2019-73090', '2019-04-11', '000001', 'Vente', '99500', '58', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0113', '', '', '23', '', '40', '73.85', '', '', '', '', '', '', '2', '2', 'Appartement', '80', '3', '', '', '', '', '', '6.014931', '47.254683'], ['2019-73091', '2019-04-08', '000001', 'Vente', '53000', '1', '', 'RUE DES ROCHES', '4530', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0235', '', '', '13', '', '48', '', '', '', '', '', '', '', '2', '2', 'Appartement', '25', '1', '', '', '', '', '', '6.035222', '47.257264'], ['2019-73091', '2019-04-08', '000001', 'Vente', '53000', '1', '', 'RUE DES ROCHES', '4530', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0235', '', '', '78', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.035222', '47.257264'], ['2019-73092', '2019-03-22', '000002', 'Vente', '500', '', '', 'AU CHATELARD', 'B040', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AD0235', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '70', '6.012482', '47.307348'], ['2019-73093', '2019-04-05', '000001', 'Vente', '155600', '17', '', 'RUE MATHIAS ULLMANN', '3381', '25000', '25056', 'Besançon', '25', '', '', '25056000HI0069', '', '', '12', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.985376', '47.254924'], ['2019-73093', '2019-04-05', '000001', 'Vente', '155600', '17', '', 'RUE MATHIAS ULLMANN', '3381', '25000', '25056', 'Besançon', '25', '', '', '25056000HI0069', '', '', '44', '57.21', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '57', '1', '', '', '', '', '', '5.985376', '47.254924'], ['2019-73094', '2019-04-15', '000001', 'Vente', '90000', '30', '', 'RUE NARCISSE LANCHY', '3630', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0237', '', '', '16', '', '23', '48.11', '', '', '', '', '', '', '2', '2', 'Appartement', '47', '2', '', '', '', '', '', '6.028518', '47.25699'], ['2019-73094', '2019-04-15', '000001', 'Vente', '90000', '30', '', 'RUE NARCISSE LANCHY', '3630', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0237', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.028518', '47.25699'], ['2019-73095', '2019-04-05', '000001', 'Vente', '254100', '12', 'C', 'RUE DU REPOS', '0150', '25720', '25058', 'Beure', '25', '', '', '25058000AI0070', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '121', '6', 'S', 'sols', '', '', '800', '6.000709', '47.205169'], ['2019-73096', '2019-04-17', '000001', 'Vente', '116000', '1', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '406', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73096', '2019-04-17', '000001', 'Vente', '116000', '3', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '145', '10.4', '275', '56.77', '', '', '', '', '', '', '2', '2', 'Appartement', '67', '3', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73096', '2019-04-17', '000001', 'Vente', '116000', '1', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73097', '2019-04-10', '000001', 'Vente', '8500', '23', '', 'RUE JEAN WYRSCH', '2860', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0050', '', '', '216', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019662', '47.258133'], ['2019-73098', '2019-04-17', '000001', 'Vente', '255000', '6', 'B', 'CHE DES RAGOTS', '4340', '25000', '25056', 'Besançon', '25', '', '', '25056000CY0221', '', '', '2', '', '34', '63.8', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.036715', '47.2369'], ['2019-73098', '2019-04-17', '000001', 'Vente', '255000', '6', 'B', 'CHE DES RAGOTS', '4340', '25000', '25056', 'Besançon', '25', '', '', '25056000CY0221', '', '', '14', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.036715', '47.2369'], ['2019-73099', '2019-03-22', '000001', 'Vente', '63990', '13', 'G', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0249', '', '', '217', '', '228', '28.5', '', '', '', '', '', '', '2', '2', 'Appartement', '31', '1', '', '', '', '', '', '6.032534', '47.24341'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0274', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1025', '5.954487', '47.264545'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0275', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1000', '5.954202', '47.264412'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0277', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1045', '5.954467', '47.26385'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0278', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2065', '5.954103', '47.263773'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '535', '5.954069', '47.26355'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0365', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1260', '5.958906', '47.26627'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AU DESSUS DE ROUGEAU', 'B063', '25480', '25454', 'Pirey', '25', '', '', '254540000A0392', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '1692', '5.958642', '47.264402'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AUX ECORCHEVEY', 'B065', '25480', '25454', 'Pirey', '25', '', '', '254540000A0634', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '2890', '5.955411', '47.270257'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AUX ORBEUX', 'B001', '25480', '25454', 'Pirey', '25', '', '', '254540000A0666', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '475', '5.959645', '47.270721'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A VIGNOLE', 'B137', '25480', '25454', 'Pirey', '25', '', '', '254540000A1422', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '870', '5.96459', '47.266804'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A LAVAUX', 'B086', '25480', '25454', 'Pirey', '25', '', '', '254540000B0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '4480', '5.973345', '47.268843'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AUX ECOULOTTES', 'B067', '25480', '25454', 'Pirey', '25', '', '', '254540000B0244', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2060', '5.969531', '47.268075'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AU BOUT DE LA COTE', 'B014', '25115', '25467', 'Pouilley-les-Vignes', '25', '', '', '254670000B0587', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3200', '5.953541', '47.273542'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUJAU', 'B180', '25115', '25467', 'Pouilley-les-Vignes', '25', '', '', '254670000C0180', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4550', '5.953727', '47.264398'], ['2019-73101', '2019-04-17', '000001', 'Vente', '6000', '11', '', 'RUE ALFRED DE VIGNY', '0085', '25000', '25056', 'Besançon', '25', '', '', '25056000EN0513', '', '', '282', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '8', '0', '', '', '', '', '', '5.9633', '47.215825'], ['2019-73102', '2019-04-11', '000001', 'Vente', '69000', '26', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0029', '', '', '20', '', '4', '66.83', '', '', '', '', '', '', '2', '2', 'Appartement', '67', '3', '', '', '', '', '', '6.02799', '47.24718'], ['2019-73103', '2019-04-18', '000001', 'Vente', '182000', '3', 'B', 'CHE DU CHATEAU DE VREGILLE', '1143', '25000', '25056', 'Besançon', '25', '', '', '25056000MZ0101', '', '', '204', '', '217', '', '', '', '', '', '', '', '2', '2', 'Appartement', '92', '4', '', '', '', '', '', '5.976546', '47.243245'], ['2019-73103', '2019-04-18', '000001', 'Vente', '182000', '3', 'B', 'CHE DU CHATEAU DE VREGILLE', '1143', '25000', '25056', 'Besançon', '25', '', '', '25056000MZ0101', '', '', '209', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.976546', '47.243245'], ['2019-73103', '2019-04-18', '000001', 'Vente', '182000', '3', 'A', 'CHE DU CHATEAU DE VREGILLE', '1143', '25000', '25056', 'Besançon', '25', '', '', '25056000MZ0101', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.976546', '47.243245'], ['2019-73104', '2019-04-15', '000001', 'Vente', '322800', '181', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '113', '6', 'S', 'sols', '', '', '1024', '6.043731', '47.258293'], ['2019-73104', '2019-04-15', '000001', 'Vente', '322800', '181', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1024', '6.043731', '47.258293'], ['2019-73105', '2019-04-18', '000001', 'Vente', '187000', '30', '', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0058', '', '', '454', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.979454', '47.241461'], ['2019-73105', '2019-04-18', '000001', 'Vente', '187000', '30', '', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0058', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '72', '3', '', '', '', '', '', '5.979454', '47.241461'], ['2019-73105', '2019-04-18', '000001', 'Vente', '187000', '30', '', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0058', '', '', '611', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.979454', '47.241461'], ['2019-73106', '2019-03-27', '000001', 'Vente', '99000', '9', '', "ALL DE L'ILE AUX MOINEAUX", '2715', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0203', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.034791', '47.239185'], ['2019-73106', '2019-03-27', '000001', 'Vente', '99000', '9', '', "ALL DE L'ILE AUX MOINEAUX", '2715', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0203', '', '', '103', '39.66', '72', '', '', '', '', '', '', '', '2', '2', 'Appartement', '39', '2', '', '', '', '', '', '6.034791', '47.239185'], ['2019-73107', '2019-03-27', '000001', 'Vente', '246200', '5123', '', 'SUR LE RANG', 'B084', '25170', '25101', 'Burgille', '25', '', '', '25101000ZB0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '165', '4', 'S', 'sols', '', '', '1505', '5.774606', '47.264855'], ['2019-73108', '2019-04-18', '000001', 'Vente', '64700', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '145', '', '171', '', '', '', '', '', '', '', '2', '2', 'Appartement', '58', '3', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73108', '2019-04-18', '000001', 'Vente', '64700', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '221', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73109', '2019-03-26', '000001', 'Vente', '43000', '16', '', 'RUE DES FRERES MERCIER', '2200', '25000', '25056', 'Besançon', '25', '', '', '25056000AZ0146', '', '', '2', '20.37', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '26', '1', '', '', '', '', '', '6.01798', '47.241755'], ['2019-73110', '2019-04-18', '000001', 'Vente', '217500', '22', '', 'RUE JACQUES PREVERT', '2756', '25000', '25056', 'Besançon', '25', '', '', '25056000LS0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '115', '5', 'S', 'sols', '', '', '596', '5.960999', '47.215006'], ['2019-73111', '2019-03-28', '000001', 'Vente', '58000', '14', '', 'RUE ISENBART', '2740', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0002', '', '', '167', '', '184', '38.88', '', '', '', '', '', '', '2', '2', 'Appartement', '41', '2', '', '', '', '', '', '6.02557', '47.245773'], ['2019-73112', '2019-03-28', '000001', 'Vente', '232000', '34', '', 'RUE DU CORDIER', '0021', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AD0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '116', '5', 'S', 'sols', '', '', '1029', '6.154422', '47.199646'], ['2019-73113', '2019-03-28', '000001', 'Vente', '18000', '17', '', 'RUE COURVOISIER', '0520', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AH0121', '', '', '1', '40.46', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '33', '1', '', '', '', '', '', '6.359259', '47.352842'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '88', '0', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '292', '0', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '75', '4', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73115', '2019-04-04', '000001', 'Vente', '120500', '2', '', 'RUE DU FAUBOURG', '0150', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AP0315', '', '', '2', '', '3', '70.79', '', '', '', '', '', '', '2', '2', 'Appartement', '70', '4', '', '', '', '', '', '5.808852', '47.180929'], ['2019-73116', '2019-03-29', '000001', 'Vente', '313350', '26', '', 'CHE DES JARDYS', '0043', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AW0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '119', '6', 'AG', "terrains d'agrément", '', '', '555', '6.000145', '47.312913'], ['2019-73116', '2019-03-29', '000001', 'Vente', '313350', '26', '', 'CHE DES JARDYS', '0043', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AW0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '119', '6', 'S', 'sols', '', '', '500', '6.000145', '47.312913'], ['2019-73117', '2019-04-12', '000001', 'Vente', '1800', '', '', 'ROIES VATAIS', 'B077', '25660', '25410', 'Morre', '25', '', '', '254100000A0315', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1030', '6.066208', '47.230868'], ['2019-73118', '2019-04-11', '000001', 'Vente', '87000', '23', 'B', 'CHE DE PALENTE', '3790', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0214', '', '', '320', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.048813', '47.267163'], ['2019-73118', '2019-04-11', '000001', 'Vente', '87000', '23', 'C', 'CHE DE PALENTE', '3790', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0214', '', '', '1', '48.93', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '48', '2', '', '', '', '', '', '6.048813', '47.267163'], ['2019-73119', '2019-04-11', '000001', 'Vente', '83500', '3', '', 'RUE GARIBALDI', '2260', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0133', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.026152', '47.247234'], ['2019-73119', '2019-04-11', '000001', 'Vente', '83500', '3', '', 'RUE GARIBALDI', '2260', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0133', '', '', '70', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.026152', '47.247234'], ['2019-73119', '2019-04-11', '000001', 'Vente', '83500', '3', '', 'RUE GARIBALDI', '2260', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0133', '', '', '71', '41.57', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '41', '2', '', '', '', '', '', '6.026152', '47.247234'], ['2019-73120', '2019-04-19', '000001', 'Vente', '46000', '10', '', 'RUE BERSOT', '0420', '25000', '25056', 'Besançon', '25', '', '', '25056000AI0006', '', '', '17', '19.24', '3', '', '', '', '', '', '', '', '2', '2', 'Appartement', '19', '1', '', '', '', '', '', '6.027954', '47.237283'], ['2019-73121', '2019-04-05', '000001', 'Vente', '114100', '5', '', 'RUE THIEBAUD', '4870', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0003', '', '', '190', '59.62', '191', '', '192', '', '', '', '', '', '3', '2', 'Appartement', '60', '4', '', '', '', '', '', '6.017091', '47.25334'], ['2019-73122', '2019-04-03', '000001', 'Vente', '122000', '4', '', 'RUE DE VERDUN', '5120', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0041', '', '', '26', '', '34', '77.87', '', '', '', '', '', '', '2', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.038693', '47.259475'], ['2019-73122', '2019-04-03', '000001', 'Vente', '122000', '2', '', 'RUE DE VERDUN', '5120', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0041', '', '', '76', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.038693', '47.259475'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'AU VILLAGE', 'B182', '25750', '25022', 'Arcey', '25', '', '', '250220000E0158', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '460', '6.658575', '47.519705'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'AU VILLAGE', 'B182', '25750', '25022', 'Arcey', '25', '', '', '250220000E0159', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '655', '6.658821', '47.519318'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0359', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '158', '6.657489', '47.519749'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0664', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '3', '6.657382', '47.519812'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0691', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1290', '6.657856', '47.519436'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0691', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '363', '6.657856', '47.519436'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1050', '6.657963', '47.519142'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '319', '8', 'P', 'prés', '', '', '1696', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '81', '0', 'P', 'prés', '', '', '1696', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '319', '8', 'S', 'sols', '', '', '1280', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '81', '0', 'S', 'sols', '', '', '1280', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'AU VILLAGE', 'B182', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0312', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '556', '6.658275', '47.519052'], ['2019-73124', '2019-03-29', '000001', 'Vente', '80000', '62', '', 'GR GRANDE RUE', '0100', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0276', '', '', '11', '', '9', '86.43', '', '', '', '', '', '', '2', '2', 'Appartement', '106', '5', '', '', '', '', '', '6.233722', '47.298367'], ['2019-73125', '2019-04-09', '000001', 'Vente', '20000', '', '', 'VERGER DU LARD', 'B120', '25360', '25278', 'Gonsans', '25', '', '', '252780000E0144', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '410', '6.299907', '47.231918'], ['2019-73126', '2019-04-17', '000001', 'Vente', '14000', '', '', 'GRANDS VERGERS', 'B081', '25640', '25508', 'Roulans', '25', '', '', '25508000AC0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '443', '6.230661', '47.316106'], ['2019-73127', '2019-04-13', '000001', 'Vente', '267000', '4', 'B', 'RUE DES CHALETS', '0810', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0212', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.033548', '47.24298'], ['2019-73127', '2019-04-13', '000001', 'Vente', '267000', '4', 'B', 'RUE DES CHALETS', '0810', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0212', '', '', '10', '', '11', '', '12', '', '13', '', '14', '', '5', '2', 'Appartement', '142', '3', '', '', '', '', '', '6.033548', '47.24298'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '253410000D0138', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '6115', '6.421109', '47.341725'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '25341000ZI0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '3840', '6.418862', '47.340572'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '25341000ZI0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '6233', '6.420326', '47.341051'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '25341000ZI0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '677', '6.420326', '47.341051'], ['2019-73129', '2019-04-19', '000001', 'Vente', '170400', '19', '', 'RUE DE LA MADELEINE', '3230', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0039', '', '', '15', '', '78', '21.45', '79', '17.12', '80', '8', '', '', '4', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.018385', '47.240618'], ['2019-73129', '2019-04-19', '000001', 'Vente', '170400', '19', '', 'RUE DE LA MADELEINE', '3230', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0039', '', '', '43', '80.85', '44', '', '45', '', '46', '', '47', '', '7', '2', 'Appartement', '84', '4', '', '', '', '', '', '6.018385', '47.240618'], ['2019-73129', '2019-04-19', '000001', 'Vente', '170400', '4', '', 'RUE DE VIGNIER', '5270', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0215', '', '', '89', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.017894', '47.240726'], ['2019-73130', '2019-04-23', '000001', 'Vente', '78000', '4', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0031', '', '', '66', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.023024', '47.249799'], ['2019-73130', '2019-04-23', '000001', 'Vente', '78000', '4', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0031', '', '', '4', '', '44', '56.76', '', '', '', '', '', '', '2', '2', 'Appartement', '58', '3', '', '', '', '', '', '6.023024', '47.249799'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '16', '', '92', '18.45', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '6', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '156', '18.17', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '18', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '187', '22.21', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '22', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '190', '18.45', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '22', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73132', '2019-04-19', '000001', 'Vente', '106000', '52', '', 'RUE DES FLUTTES AGASSES', '2010', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0076', '', '', '152', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.035107', '47.260074'], ['2019-73132', '2019-04-19', '000001', 'Vente', '106000', '52', '', 'RUE DES FLUTTES AGASSES', '2010', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0076', '', '', '65', '74.95', '66', '', '', '', '', '', '', '', '2', '2', 'Appartement', '80', '4', '', '', '', '', '', '6.035107', '47.260074'], ['2019-73133', '2019-04-16', '000001', 'Vente', '18468', '', '', 'CHAMP DU NOYER', 'B022', '25720', '25036', 'Avanne-Aveney', '25', '', '', '25036000AB0265', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '513', '5.961028', '47.210615'], ['2019-73134', '2019-04-08', '000001', 'Vente', '87800', '3', '', 'RUE MAURICE DEMEUSY', '0030', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '129', '5', 'J', 'jardins', '', '', '922', '6.353897', '47.477226'], ['2019-73134', '2019-04-08', '000001', 'Vente', '87800', '3', '', 'RUE MAURICE DEMEUSY', '0030', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '129', '5', 'S', 'sols', '', '', '55', '6.353897', '47.477226'], ['2019-73134', '2019-04-08', '000001', 'Vente', '87800', '3', '', 'RUE MAURICE DEMEUSY', '0030', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '168', '6.353751', '47.477187'], ['2019-73135', '2019-04-18', '000001', 'Vente', '185920', '6', '', 'RUE DES NOZIERES', '0034', '25770', '25542', 'Serre-les-Sapins', '25', '', '', '25542000AH0093', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '160', '0', 'S', 'sols', '', '', '1567', '5.935449', '47.23561'], ['2019-73135', '2019-04-18', '000001', 'Vente', '185920', '6', '', 'RUE DES NOZIERES', '0034', '25770', '25542', 'Serre-les-Sapins', '25', '', '', '25542000AH0093', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '160', '0', 'S', 'sols', '', '', '1567', '5.935449', '47.23561'], ['2019-73136', '2019-04-02', '000001', 'Vente', '55000', '1', '', 'RUE DU JALAN', '0032', '25250', '25553', 'Soye', '25', '', '', '255530000C0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '92', '3', 'S', 'sols', '', '', '795', '6.496536', '47.444497'], ['2019-73137', '2019-04-17', '000001', 'Vente', '1440', '', '', 'CHAMPS JEANGUY', 'B035', '25410', '25502', 'Roset-Fluans', '25', '', '', '255020000C0134', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2535', '5.841101', '47.148998'], ['2019-73137', '2019-04-17', '000001', 'Vente', '1440', '', '', 'CHAMPS JEANGUY', 'B035', '25410', '25502', 'Roset-Fluans', '25', '', '', '255020000C0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '580', '5.840677', '47.1494'], ['2019-73137', '2019-04-17', '000001', 'Vente', '1440', '', '', 'CHAMPS JEANGUY', 'B035', '25410', '25502', 'Roset-Fluans', '25', '', '', '255020000C0138', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '760', '5.84045', '47.149615'], ['2019-73138', '2019-04-23', '000001', 'Vente', '118750', '17', '', 'RUE JULES FERRY', '2930', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0199', '', '', '15', '71.89', '16', '', '', '', '', '', '', '', '2', '2', 'Appartement', '69', '4', '', '', '', '', '', '5.993222', '47.225857'], ['2019-73139', '2019-04-03', '000001', 'Vente', '100000', '35', '', 'AV CARNOT', '0670', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0243', '', '', '19', '72', '41', '', '7', '', '', '', '', '', '3', '4', 'Local industriel. commercial ou assimilé', '120', '0', '', '', '', '', '', '6.02844', '47.245223'], ['2019-73140', '2019-04-12', '000001', 'Vente', '92800', '20', '', 'RUE DES FRERES MERCIER', '2200', '25000', '25056', 'Besançon', '25', '', '', '25056000AZ0300', '', '', '10', '', '11', '', '9', '', '', '', '', '', '3', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.01806', '47.242012'], ['2019-73140', '2019-04-12', '000001', 'Vente', '92800', '20', '', 'RUE DES FRERES MERCIER', '2200', '25000', '25056', 'Besançon', '25', '', '', '25056000AZ0300', '', '', '16', '46.2', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '59', '2', '', '', '', '', '', '6.01806', '47.242012'], ['2019-73141', '2019-04-15', '000001', 'Vente', '7000', '5', '', 'RUE GRENIER', '2560', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0209', '', '', '31', '', '32', '', '', '', '', '', '', '', '2', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.009157', '47.237495'], ['2019-73142', '2019-04-15', '000001', 'Vente', '47000', '20', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0269', '', '', '23', '17.94', '32', '', '', '', '', '', '', '', '2', '2', 'Appartement', '21', '1', '', '', '', '', '', '6.040334', '47.252845'], ['2019-73143', '2019-04-11', '000001', 'Vente', '105000', '1', 'D', 'CHE DE HALAGE CASAMENE', '2605', '25000', '25056', 'Besançon', '25', '', '', '25056000DO0075', '', '', '2', '123.55', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '139', '0', '', '', '', '', '', '6.031512', '47.223464'], ['2019-73143', '2019-04-11', '000001', 'Vente', '105000', '', '', 'LES CASAMENES', 'B019', '25000', '25056', 'Besançon', '25', '', '', '25056000DO0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '94', '6.031583', '47.223466'], ['2019-73144', '2019-04-18', '000001', 'Vente', '118000', '128', 'C', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0094', '', '', '640', '', '647', '', '', '', '', '', '', '', '2', '2', 'Appartement', '62', '3', '', '', '', '', '', '6.041292', '47.255186'], ['2019-73144', '2019-04-18', '000001', 'Vente', '118000', '128', 'C', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0094', '', '', '605', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.041292', '47.255186'], ['2019-73145', '2019-04-19', '000001', 'Vente', '210000', '1', 'B', 'RUE DES SARMENTS', '0078', '25660', '25410', 'Morre', '25', '', '', '25410000AA0646', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '1', 'Maison', '100', '4', '', '', '', '', '', '6.069996', '47.227749'], ['2019-73146', '2019-04-18', '000001', 'Vente', '167500', '15', '', 'RUE DE L ETOILE', '0034', '25660', '25532', 'Saône', '25', '', '', '25532000AB0354', '', '', '12', '', '3', '', '', '', '', '', '', '', '2', '1', 'Maison', '129', '4', '', '', '', '', '', '6.12146', '47.226303'], ['2019-73147', '2019-04-12', '000001', 'Vente', '10000', '', '', 'A VERBON', 'B134', '25480', '25454', 'Pirey', '25', '', '', '25454000AE0128', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1750', '5.964772', '47.266376'], ['2019-73148', '2019-04-11', '000001', 'Vente', '109000', '56', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CK0158', '', '', '153', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.043978', '47.255462'], ['2019-73148', '2019-04-11', '000001', 'Vente', '109000', '54', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CK0158', '', '', '43', '', '57', '68', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '4', '', '', '', '', '', '6.043978', '47.255462'], ['2019-73149', '2019-04-26', '000001', 'Vente', '107000', '4', '', 'RUE CLAUDIUS GONDY', '1270', '25000', '25056', 'Besançon', '25', '', '', '25056000DY0159', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '4', 'S', 'sols', '', '', '257', '5.9998', '47.232879'], ['2019-73150', '2019-04-25', '000001', 'Vente', '159400', '4', '', 'RUE DE LA FONTAINE', '0060', '25660', '25245', 'Fontain', '25', '', '', '25245000AC0064', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '86', '3', 'S', 'sols', '', '', '80', '6.024344', '47.199537'], ['2019-73150', '2019-04-25', '000001', 'Vente', '159400', '', '', 'VILLAGE EST', 'B244', '25660', '25245', 'Fontain', '25', '', '', '25245000AC0065', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '37', '6.024433', '47.19945'], ['2019-73150', '2019-04-25', '000001', 'Vente', '159400', '', '', 'VILLAGE EST', 'B244', '25660', '25245', 'Fontain', '25', '', '', '25245000AC0249', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '18', '6.024304', '47.19959'], ['2019-73151', '2019-04-24', '000001', 'Vente', '55000', '10', '', 'RUE RIVOTTE', '4500', '25000', '25056', 'Besançon', '25', '', '', '25056000AL0028', '', '', '20', '16.26', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '25', '1', '', '', '', '', '', '6.03165', '47.234834'], ['2019-73151', '2019-04-24', '000001', 'Vente', '55000', '10', '', 'RUE RIVOTTE', '4500', '25000', '25056', 'Besançon', '25', '', '', '25056000AL0028', '', '', '19', '12.36', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '9', '0', '', '', '', '', '', '6.03165', '47.234834'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '25560000AB0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1465', '6.067967', '47.284975'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '21', '', 'RUE JEAN D ABBANS', '0140', '25220', '25560', 'Thise', '25', '', '', '25560000AB0197', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '', '', 'S', 'sols', '', '', '612', '6.068202', '47.285206'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '21', '', 'RUE JEAN D ABBANS', '0140', '25220', '25560', 'Thise', '25', '', '', '25560000AB0199', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '278', '6.068153', '47.285285'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F0200', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1426', '6.068589', '47.28517'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F0201', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '560', '6.067961', '47.284639'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F1205', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1100', '6.067676', '47.284839'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F1441', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '306', '6.067591', '47.284614'], ['2019-73153', '2019-04-18', '000001', 'Vente', '49000', '5', '', 'RUE SAINT VINCENT', '0032', '25720', '25036', 'Avanne-Aveney', '25', '', '', '25036000AI0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '2', 'S', 'sols', '', '', '131', '5.963481', '47.201216'], ['2019-73154', '2019-04-04', '000001', 'Vente', '90000', '1', '', 'RUE FREDERIC BATAILLE', '2160', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0057', '', '', '10', '60.4', '39', '', '', '', '', '', '', '', '2', '2', 'Appartement', '60', '3', '', '', '', '', '', '6.024026', '47.249824'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '1', '', 'RUE DE CULOT', '0021', '25320', '25103', 'Busy', '25', '', '', '25103000AC0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '426', '5.940775', '47.164951'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '1', '', 'RUE DE CULOT', '0021', '25320', '25103', 'Busy', '25', '', '', '25103000AC0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '105', '2', 'S', 'sols', '', '', '426', '5.940775', '47.164951'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '1', '', 'RUE DE CULOT', '0021', '25320', '25103', 'Busy', '25', '', '', '25103000AC0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '105', '2', 'S', 'sols', '', '', '426', '5.940775', '47.164951'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '', '', 'CRIANTE DU COUCHANT', 'B064', '25320', '25103', 'Busy', '25', '', '', '25103000AC0307', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '223', '5.940601', '47.165129'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '', '', 'CRIANTE DU COUCHANT', 'B064', '25320', '25103', 'Busy', '25', '', '', '25103000AC0308', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '274', '5.940669', '47.165018'], ['2019-73156', '2019-04-30', '000001', 'Vente', '380000', '25', '', 'GR GRANDE RUE', '0090', '25170', '25101', 'Burgille', '25', '', '', '251010000D0051', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '433', '5.776242', '47.267828'], ['2019-73156', '2019-04-30', '000001', 'Vente', '380000', '25', '', 'GR GRANDE RUE', '0090', '25170', '25101', 'Burgille', '25', '', '', '251010000D0051', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '100', '5.776242', '47.267828'], ['2019-73156', '2019-04-30', '000001', 'Vente', '380000', '25', '', 'GR GRANDE RUE', '0090', '25170', '25101', 'Burgille', '25', '', '', '251010000D0052', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '146', '6', 'S', 'sols', '', '', '428', '5.776294', '47.267665'], ['2019-73157', '2019-04-15', '000001', 'Vente', '170000', '1', '', 'RTE DE RAHON', '0050', '25430', '25436', 'Orve', '25', '', '', '25436000ZC0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '4', 'S', 'sols', '', '', '872', '6.553159', '47.326462'], ['2019-73157', '2019-04-15', '000001', 'Vente', '170000', '1', '', 'RTE DE RAHON', '0050', '25430', '25436', 'Orve', '25', '', '', '25436000ZC0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '4', 'T', 'terres', '', '', '6398', '6.553159', '47.326462'], ['2019-73158', '2019-04-16', '000001', 'Vente', '150600', '5', '', 'RUE DE BESANCON', '0007', '25110', '25298', 'Grosbois', '25', '', '', '25298000ZB0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '4', 'P', 'prés', '', '', '3185', '6.306349', '47.341179'], ['2019-73158', '2019-04-16', '000001', 'Vente', '150600', '5', '', 'RUE DE BESANCON', '0007', '25110', '25298', 'Grosbois', '25', '', '', '25298000ZB0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '4', 'S', 'sols', '', '', '1295', '6.306349', '47.341179'], ['2019-73159', '2019-04-19', '000001', 'Vente', '60000', '', '', 'AUX CHAMPS D OMBRE', 'B015', '25320', '25561', 'Thoraise', '25', '', '', '25561000AA0202', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1023', '5.906792', '47.171053'], ['2019-73160', '2019-04-29', '000001', 'Vente', '61000', '102', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0054', '', '', '21', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.037784', '47.252741'], ['2019-73160', '2019-04-29', '000001', 'Vente', '61000', '102', 'A', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0054', '', '', '69', '', '97', '32.52', '', '', '', '', '', '', '2', '2', 'Appartement', '33', '1', '', '', '', '', '', '6.037784', '47.252741'], ['2019-73161', '2019-05-02', '000001', 'Vente', '238000', '5', '', 'AV DE BEL AIR', '0007', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AT0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '143', '5', 'S', 'sols', '', '', '920', '6.007922', '47.304755'], ['2019-73162', '2019-04-19', '000001', 'Vente', '1500', '6', '', 'AU MOULIN BRULE', 'B173', '25340', '25276', 'Gondenans-Montby', '25', '', '', '252760000B0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '33', '2', 'S', 'sols', '', '', '680', '6.465426', '47.457301'], ['2019-73162', '2019-04-19', '000001', 'Vente', '1500', '', '', 'AU MOULIN BRULE', 'B173', '25340', '25276', 'Gondenans-Montby', '25', '', '', '252760000B0029', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '305', '6.465073', '47.45774'], ['2019-73162', '2019-04-19', '000001', 'Vente', '1500', '', '', 'AU MOULIN BRULE', 'B173', '25340', '25276', 'Gondenans-Montby', '25', '', '', '252760000B0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '800', '6.464944', '47.457669'], ['2019-73163', '2019-04-16', '000001', 'Vente', '256000', '3', '', 'RUE DES SARMENTS', '0078', '25660', '25410', 'Morre', '25', '', '', '25410000AA0656', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '126', '6', 'S', 'sols', '', '', '587', '6.070197', '47.227477'], ['2019-73163', '2019-04-16', '000001', 'Vente', '256000', '', '', 'CROIX ROUGE', 'B025', '25660', '25410', 'Morre', '25', '', '', '25410000AA0659', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '14', '6.070045', '47.22756'], ['2019-73164', '2019-04-23', '000001', 'Vente', '382000', '8', '', 'RUE CAMILLE DESMOULINS', '0597', '25000', '25056', 'Besançon', '25', '', '', '25056000CN0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '116', '5', 'S', 'sols', '', '', '1265', '6.050583', '47.248395'], ['2019-73165', '2019-04-30', '000001', 'Vente', '95800', '6', '', 'ALL DES BRUYERES', '0580', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0269', '', '', '296', '81.38', '310', '', '', '', '', '', '', '', '2', '2', 'Appartement', '81', '4', '', '', '', '', '', '6.02403', '47.257605'], ['2019-73165', '2019-04-30', '000001', 'Vente', '95800', '4', '', 'ALL DES BRUYERES', '0580', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0269', '', '', '747', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.02403', '47.257605'], ['2019-73166', '2019-04-29', '000001', 'Vente', '62000', '21', '', 'RUE D ARENES', '0210', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0109', '', '', '109', '32.7', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '36', '2', '', '', '', '', '', '6.01916', '47.239462'], ['2019-73167', '2019-04-15', '000001', 'Vente', '50000', '8', '', 'RUE BATTANT', '0330', '25000', '25056', 'Besançon', '25', '', '', '25056000AY0003', '', '', '24', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '2', '0', '', '', '', '', '', '6.020423', '47.240437'], ['2019-73167', '2019-04-15', '000001', 'Vente', '50000', '8', '', 'RUE BATTANT', '0330', '25000', '25056', 'Besançon', '25', '', '', '25056000AY0003', '', '', '23', '25.47', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.020423', '47.240437'], ['2019-73168', '2019-05-02', '000001', 'Vente', '65000', '23', '', 'RUE FREDERIC BATAILLE', '2160', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0319', '', '', '22', '44.58', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '44', '2', '', '', '', '', '', '6.023082', '47.251197'], ['2019-73169', '2019-04-19', '000001', 'Vente', '131000', '26', '', 'RUE XAVIER MARMIER', '5380', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0351', '', '', '62', '', '9', '66.14', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '3', '', '', '', '', '', '6.008819', '47.241947'], ['2019-73170', '2019-04-29', '000001', 'Vente', '146632', '23', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0319', '', '', '198', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '10', '0', '', '', '', '', '', '6.013041', '47.251206'], ['2019-73170', '2019-04-29', '000001', 'Vente', '146632', '23', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0319', '', '', '119', '42.66', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '43', '0', '', '', '', '', '', '6.013041', '47.251206'], ['2019-73171', '2019-04-24', '000001', 'Vente', '117000', '25', '', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0152', '', '', '21', '', '40', '70.42', '68', '', '', '', '', '', '3', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.033461', '47.242592'], ['2019-73172', '2019-04-29', '000001', 'Vente', '30000', '5', '', 'PL DE L EUROPE', '1914', '25000', '25056', 'Besançon', '25', '', '', '25056000EP0203', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '33', '2', '', '', '', '', '', '5.97322', '47.218679'], ['2019-73173', '2019-04-24', '000001', 'Vente', '62000', '13', '', 'RUE RONCHAUX', '4550', '25000', '25056', 'Besançon', '25', '', '', '25056000AM0009', '', '', '213', '21.64', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '22', '1', '', '', '', '', '', '6.027727', '47.234088'], ['2019-73174', '2019-04-25', '000001', 'Vente', '195250', '7', '', 'RUE DE L ECOLE LEPETIT', '0068', '25220', '25575', 'Vaire', '25', '', '', '25575576AB0005', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '4', 'S', 'sols', '', '', '912', '6.146102', '47.287722'], ['2019-73175', '2019-04-25', '000001', 'Vente', '190000', '17', '', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0248', '', '', '68', '89', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '85', '4', '', '', '', '', '', '6.032041', '47.243272'], ['2019-73175', '2019-04-25', '000001', 'Vente', '190000', '15', '', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0248', '', '', '119', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.032041', '47.243272'], ['2019-73176', '2019-04-29', '000001', 'Vente', '80000', '17', 'A', 'RUE TRIDARD', '0045', '25430', '25529', 'Sancey', '25', '', '', '255290000F0812', '', '', '8', '98.55', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.578822', '47.29429'], ['2019-73176', '2019-04-29', '000001', 'Vente', '80000', '17', 'A', 'RUE TRIDARD', '0045', '25430', '25529', 'Sancey', '25', '', '', '255290000F0812', '', '', '8', '98.55', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '95', '5', '', '', '', '', '', '6.578822', '47.29429'], ['2019-73177', '2019-04-29', '000001', 'Vente', '10950', '', '', 'LES VIGNOTTES', 'B299', '25430', '25529', 'Sancey', '25', '', '', '255295300B0171', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2190', '6.590142', '47.308756'], ['2019-73178', '2019-04-23', '000001', 'Vente', '213200', '7', '', 'CHE DES VISONS', '0312', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AN0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '6', 'S', 'sols', '', '', '644', '5.826283', '47.183122'], ['2019-73179', '2019-04-23', '000001', 'Vente', '40000', '21', 'B', 'RUE CLAUDE POUILLET', '1260', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0102', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '31', '1', '', '', '', '', '', '6.02058', '47.238744'], ['2019-73180', '2019-05-07', '000001', 'Vente', '192500', '2', '', 'RUE DES ARONDES', '0001', '25660', '25532', 'Saône', '25', '', '', '25532000AA0120', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '5', 'S', 'sols', '', '', '750', '6.117979', '47.226667'], ['2019-73181', '2019-05-10', '000001', 'Vente', '6000', '17', '', 'IMP ANTOINE FRANCOIS MOMORO', '3464', '25000', '25056', 'Besançon', '25', '', '', '25056000DY0298', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '89', '5.992945', '47.232591'], ['2019-73182', '2019-04-26', '000001', 'Vente', '107850', '18', '', 'RUE DES GRANGES', '2510', '25000', '25056', 'Besançon', '25', '', '', '25056000AD0054', '', '', '11', '33.98', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '45', '2', '', '', '', '', '', '6.024279', '47.238814'], ['2019-73183', '2019-05-09', '000001', 'Vente', '202500', '28', '', 'IMP DES CHAMPS PASSERET', '0883', '25000', '25056', 'Besançon', '25', '', '', '25056000BT0261', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '122', '6.033837', '47.262023'], ['2019-73184', '2019-05-13', '000001', 'Vente', '150000', '', '', 'LA BARRIERE', 'B001', '25170', '25448', 'Pelousey', '25', '', '', '25448000AD0014', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '2497', '5.92134', '47.276065'], ['2019-73185', '2019-05-10', '000001', 'Vente', '605000', '8', '', 'RUE DU CRETOT', '0085', '25320', '25397', 'Montferrand-le-Château', '25', '', '', '25397000AK0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '225', '8', 'S', 'sols', '', '', '500', '5.899754', '47.186223'], ['2019-73185', '2019-05-10', '000001', 'Vente', '605000', '8', '', 'RUE DU CRETOT', '0085', '25320', '25397', 'Montferrand-le-Château', '25', '', '', '25397000AK0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '225', '8', 'AG', "terrains d'agrément", 'PARC', 'Parc', '7165', '5.899754', '47.186223'], ['2019-73186', '2019-05-13', '000001', 'Vente', '133000', '2', '', 'RUE DE LA CITE', '0460', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AT0084', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '5', 'S', 'sols', '', '', '493', '6.349863', '47.351664'], ['2019-73187', '2019-05-13', '000001', 'Vente', '108540', '8', '', 'RUE DU ROUSSILLON', '4600', '25000', '25056', 'Besançon', '25', '', '', '25056000DX0005', '', '', '27', '72.54', '28', '', '', '', '', '', '', '', '2', '2', 'Appartement', '75', '4', '', '', '', '', '', '6.003222', '47.240069'], ['2019-73188', '2019-04-23', '000001', 'Vente', '2000', '', '', 'BOIS DU GRAVIER', 'B010', '25430', '25529', 'Sancey', '25', '', '', '255290000B0608', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '7135', '6.605357', '47.279686'], ['2019-73189', '2019-04-30', '000001', 'Vente', '143000', '14', '', 'RUE HENRI ET MAURICE  BAIGUE', '2630', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0309', '', '', '80', '', '96', '', '', '', '', '', '', '', '2', '2', 'Appartement', '56', '2', '', '', '', '', '', '6.025977', '47.253657'], ['2019-73189', '2019-04-30', '000001', 'Vente', '143000', '12', '', 'RUE HENRI ET MAURICE  BAIGUE', '2630', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0309', '', '', '188', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.025977', '47.253657'], ['2019-73190', '2019-04-26', '000001', 'Vente', '190000', '34', '', 'RTE NATIONALE 57', '0031', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AH0210', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '50', '2', 'S', 'sols', '', '', '1285', '6.158903', '47.197165'], ['2019-73190', '2019-04-26', '000001', 'Vente', '190000', '34', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AH0220', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '147', '6.158687', '47.197238'], ['2019-73191', '2019-04-29', '000001', 'Vente', '100000', '', '', 'DERRIERE L HOPITAL', 'B047', '25170', '25448', 'Pelousey', '25', '', '', '25448000AA0044', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '1244', '5.916709', '47.275311'], ['2019-73192', '2019-05-17', '000001', 'Vente', '4500', '13', '', 'RUE JEAN LASLANDES', '3050', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0532', '', '', '24', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.018953', '47.248307'], ['2019-73193', '2019-04-23', '000001', 'Vente', '2000', '', '', 'BOIS DU GRAVIER', 'B010', '25430', '25529', 'Sancey', '25', '', '', '255290000B0607', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '7134', '6.605872', '47.280028'], ['2019-73194', '2019-04-24', '000001', 'Vente', '215000', '18', '', 'RUE DE LA PERRIERE', '0107', '25640', '25508', 'Roulans', '25', '', '', '25508000AB0404', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '5', 'S', 'sols', '', '', '1116', '6.237843', '47.318017'], ['2019-73195', '2019-04-23', '000001', 'Vente', '231500', '34', 'B', 'CHE DES VIGNES', '0540', '25220', '25495', 'Roche-lez-Beaupré', '25', '', '', '25495000AM0228', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '140', '5', 'S', 'sols', '', '', '809', '6.105684', '47.275724'], ['2019-73196', '2019-05-21', '000001', 'Vente', '56000', '16', '', 'AV DE L ILE DE FRANCE', '2750', '25000', '25056', 'Besançon', '25', '', '', '25056000EO0042', '', '', '452', '82.1', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '82', '4', '', '', '', '', '', '5.968171', '47.222114'], ['2019-73197', '2019-04-26', '000001', 'Vente', '227500', '28', '', 'RUE DES TILLEULS', '0106', '25480', '25212', 'École-Valentin', '25', '', '', '25212000AK0536', '', '', '8', '108', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '110', '4', '', '', '', '', '', '5.984407', '47.267059'], ['2019-73197', '2019-04-26', '000001', 'Vente', '227500', '28', '', 'RUE DES TILLEULS', '0106', '25480', '25212', 'École-Valentin', '25', '', '', '25212000AK0536', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.984407', '47.267059'], ['2019-73197', '2019-04-26', '000001', 'Vente', '227500', '28', '', 'RUE DES TILLEULS', '0106', '25480', '25212', 'École-Valentin', '25', '', '', '25212000AK0536', '', '', '24', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.984407', '47.267059'], ['2019-73198', '2019-05-03', '000001', 'Vente', '75000', '28', '', 'RUE DES FLANDRES DUNKERQUE', '1980', '25000', '25056', 'Besançon', '25', '', '', '25056000ER0229', '', '', '41', '88.42', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '90', '5', '', '', '', '', '', '5.977661', '47.225393'], ['2019-73199', '2019-05-22', '000001', 'Vente', '132800', '53', '', 'RUE DES GRANGES', '2510', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0025', '', '', '10', '55.3', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '61', '1', '', '', '', '', '', '6.026284', '47.238339'], ['2019-73200', '2019-05-20', '000001', 'Vente', '275000', '23', '', 'AV FONTAINE ARGENT', '2030', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0521', '', '', '243', '', '281', '77.7', '', '', '', '', '', '', '2', '2', 'Appartement', '78', '3', '', '', '', '', '', '6.033142', '47.246357'], ['2019-73200', '2019-05-20', '000001', 'Vente', '275000', '7', '', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0521', '', '', '89', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.033142', '47.246357'], ['2019-73200', '2019-05-20', '000001', 'Vente', '275000', '7', '', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0521', '', '', '155', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.033142', '47.246357'], ['2019-73201', '2019-05-16', '000001', 'Vente', '300', '', '', 'VIGNES DES VERPILLERES', 'B101', '25250', '25264', 'Gémonval', '25', '', '', '25264000ZI0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2978', '6.570852', '47.531112'], ['2019-73202', '2019-05-02', '000001', 'Vente', '161000', '5107', '', 'SAINT NICOLE', 'B089', '25440', '25109', 'Cessey', '25', '', '', '25109000AB0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'S', 'sols', '', '', '500', '5.916181', '47.115843'], ['2019-73202', '2019-05-02', '000001', 'Vente', '161000', '5107', '', 'SAINT NICOLE', 'B089', '25440', '25109', 'Cessey', '25', '', '', '25109000AB0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'P', 'prés', '', '', '785', '5.916181', '47.115843'], ['2019-73202', '2019-05-02', '000001', 'Vente', '161000', '', '', 'SAINT NICOLE', 'B089', '25440', '25109', 'Cessey', '25', '', '', '25109000AB0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '120', '5.915815', '47.115951'], ['2019-73203', '2019-05-03', '000001', 'Vente', '278000', '2', '', 'RUE DU LOT. CHAMP LA PAULE', '0013', '25870', '25382', 'Moncey', '25', '', '', '25382000ZB0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '196', '7', 'AG', "terrains d'agrément", 'PARC', 'Parc', '531', '6.123144', '47.364828'], ['2019-73203', '2019-05-03', '000001', 'Vente', '278000', '2', '', 'RUE DU LOT. CHAMP LA PAULE', '0013', '25870', '25382', 'Moncey', '25', '', '', '25382000ZB0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '196', '7', 'S', 'sols', '', '', '500', '6.123144', '47.364828'], ['2019-73204', '2019-05-15', '000001', 'Vente', '49000', '1', '', 'RUE DE LA BUTTE', '0585', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0273', '', '', '151', '21', '31', '', '', '', '', '', '', '', '2', '2', 'Appartement', '26', '1', '', '', '', '', '', '6.011351', '47.23405'], ['2019-73204', '2019-05-15', '000001', 'Vente', '49000', '1', '', 'RUE DE LA BUTTE', '0585', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0273', '', '', '78', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.011351', '47.23405'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '10', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '6', '92.32', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '92', '4', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73206', '2019-05-16', '000001', 'Vente', '200000', '7', '', 'RUE PROUDHON', '4280', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0169', '', '', '1', '69.4', '2', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '69', '0', '', '', '', '', '', '6.027733', '47.238257'], ['2019-73207', '2019-05-20', '000001', 'Vente', '66000', '57', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0052', '', '', '19', '44.31', '21', '', '', '', '', '', '', '', '2', '2', 'Appartement', '41', '1', '', '', '', '', '', '6.014946', '47.254063'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '5', '35.11', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '18', '0', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '6', '56.26', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '6', '56.26', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '1', '', '2', '', '3', '72.51', '4', '', '', '', '4', '4', 'Local industriel. commercial ou assimilé', '104', '0', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '7', '41.6', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '53', '3', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '5', '35.11', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '36', '2', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73209', '2019-05-15', '000001', 'Vente', '138750', '50', '', 'AV DE MONTRAPON', '3530', '25000', '25056', 'Besançon', '25', '', '', '25056000HR0117', '', '', '1', '', '6', '13.83', '8', '65.73', '', '', '', '', '3', '2', 'Appartement', '77', '3', '', '', '', '', '', '6.005502', '47.248285'], ['2019-73209', '2019-05-15', '000001', 'Vente', '138750', '50', '', 'AV DE MONTRAPON', '3530', '25000', '25056', 'Besançon', '25', '', '', '25056000HR0117', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.005502', '47.248285'], ['2019-73210', '2019-05-23', '000001', 'Vente', '100900', '1', 'B', 'RUE DES VIGNERONS', '5250', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0346', '', '', '35', '49.14', '62', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '5.991132', '47.228896'], ['2019-73210', '2019-05-23', '000001', 'Vente', '100900', '1', 'B', 'RUE DES VIGNERONS', '5250', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0346', '', '', '33', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.991132', '47.228896'], ['2019-73211', '2019-05-06', '000001', 'Vente', '88350', '18', '', 'RUE DES SAULNIERS', '4720', '25000', '25056', 'Besançon', '25', '', '', '25056000EZ0178', '', '', '174', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.992315', '47.244965'], ['2019-73211', '2019-05-06', '000001', 'Vente', '88350', '20', '', 'RUE DES SAULNIERS', '4720', '25000', '25056', 'Besançon', '25', '', '', '25056000EZ0178', '', '', '135', '45.2', '84', '', '', '', '', '', '', '', '2', '2', 'Appartement', '45', '1', '', '', '', '', '', '5.992315', '47.244965'], ['2019-73212', '2019-05-20', '000001', 'Vente', '196900', '7', '', 'RUE DU CHATEAU', '0006', '25170', '25150', "Chevigney-sur-l'Ognon", '25', '', '', '25150000ZB0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '4', 'S', 'sols', '', '', '880', '5.843062', '47.29891'], ['2019-73213', '2019-05-03', '000001', 'Vente', '119000', '26', 'B', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0059', '', '', '216', '', '267', '', '', '', '', '', '', '', '2', '2', 'Appartement', '55', '2', '', '', '', '', '', '5.979867', '47.240992'], ['2019-73213', '2019-05-03', '000001', 'Vente', '119000', '26', 'D', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0059', '', '', '304', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.979867', '47.240992'], ['2019-73214', '2019-05-04', '000001', 'Vente', '123400', '5', '', 'RUE DELACOUR', '0028', '25340', '25156', 'Pays-de-Clerval', '25', '', '', '251560000A0425', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '3', 'S', 'sols', '', '', '854', '6.492251', '47.399267'], ['2019-73215', '2019-05-16', '000001', 'Vente', '58000', '46', '', 'RUE JEAN WYRSCH', '2860', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0166', '', '', '155', '', '165', '56.83', '', '', '', '', '', '', '2', '2', 'Appartement', '64', '3', '', '', '', '', '', '6.020689', '47.257354'], ['2019-73216', '2019-05-21', '000001', 'Vente', '134000', '3', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '201', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73216', '2019-05-21', '000001', 'Vente', '134000', '1', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '60', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73216', '2019-05-21', '000001', 'Vente', '134000', '3', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '297', '75.04', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '75', '4', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73217', '2019-05-23', '000001', 'Vente', '113000', '55', 'I', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0076', '', '', '126', '65.92', '196', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '4', '', '', '', '', '', '5.997447', '47.230439'], ['2019-73218', '2019-05-10', '000001', 'Vente', '379200', '5126', '', 'LOT L OREE DU BOIS', 'A045', '25870', '25557', 'Tallenay', '25', '', '', '25557000ZB0234', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '117', '6', 'S', 'sols', '', '', '1000', '6.023142', '47.303567'], ['2019-73218', '2019-05-10', '000001', 'Vente', '379200', '5126', '', 'LOT L OREE DU BOIS', 'A045', '25870', '25557', 'Tallenay', '25', '', '', '25557000ZB0234', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '117', '6', 'AG', "terrains d'agrément", '', '', '1286', '6.023142', '47.303567'], ['2019-73219', '2019-05-10', '000001', 'Vente', '391250', '13', '', 'CHE DES GRANDS BAS', '2470', '25000', '25056', 'Besançon', '25', '', '', '25056000BL0020', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '3', 'S', 'sols', '', '', '643', '6.014585', '47.257408'], ['2019-73220', '2019-05-09', '000001', 'Vente', '243000', '6', '', 'RUE HELENE BOUCHER', '0133', '25220', '25560', 'Thise', '25', '', '', '25560000AD0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '165', '7', 'S', 'sols', '', '', '546', '6.081953', '47.279621'], ['2019-73221', '2019-05-14', '000001', 'Vente', '76100', '122', 'B', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0417', '', '', '2', '43.53', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '43', '2', '', '', '', '', '', '6.040227', '47.254947'], ['2019-73222', '2019-05-11', '000001', 'Vente', '130000', '3', 'H', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0088', '', '', '1', '404.64', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '450', '0', '', '', '', '', '', '6.029247', '47.252114'], ['2019-73223', '2019-05-09', '000001', 'Vente', '8500', '102', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0332', '', '', '119', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.039732', '47.258551'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '490', '6.023667', '47.224124'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0026', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", 'SPORT', 'Terrain de sport', '648', '6.022806', '47.223727'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0026', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '5622', '6.022806', '47.223727'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '4', '5', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0027', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '182', '6', 'S', 'sols', '', '', '690', '6.02315', '47.223547'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1553', '6.024242', '47.223612'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0029', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '349', '6.023768', '47.223688'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '852', '6.024001', '47.223939'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '1523', '6.024441', '47.223833'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '1050', '6.024864', '47.223864'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0033', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '743', '6.025039', '47.223595'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '5755', '6.026211', '47.223757'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'CHE DE BOUEZ', '0485', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0035', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '5380', '6.028196', '47.223768'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '4565', '6.025171', '47.223171'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0046', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '5375', '6.023971', '47.223209'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0047', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", '', '', '849', '6.022809', '47.22326'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '46', '2', 'S', 'sols', '', '', '943', '6.02294', '47.223086'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '3', 'S', 'sols', '', '', '943', '6.02294', '47.223086'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '943', '6.02294', '47.223086'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0049', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2245', '6.023331', '47.222922'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0086', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1457', '6.024009', '47.222796'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '3955', '6.026319', '47.223342'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '820', '6.026163', '47.22315'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '628', '6.023063', '47.224097'], ['2019-73225', '2019-05-15', '000001', 'Vente', '282800', '22', '', 'RUE DE LA MALTIERE', '0017', '25660', '25267', 'Gennes', '25', '', '', '25267000AA0186', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '147', '5', 'S', 'sols', '', '', '994', '6.126046', '47.243243'], ['2019-73226', '2019-05-07', '000001', 'Vente', '228000', '6', '', 'CHE DE LA THERE', '0120', '25870', '25265', 'Geneuille', '25', '', '', '25265000ZD0398', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '3', 'S', 'sols', '', '', '1712', '5.965756', '47.321166'], ['2019-73226', '2019-05-07', '000001', 'Vente', '228000', '', '', 'CONTOUR DES COMBES', 'B018', '25870', '25265', 'Geneuille', '25', '', '', '25265000ZD0399', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '59', '5.96619', '47.321173'], ['2019-73227', '2019-05-13', '000001', 'Vente', '65200', '12', '', 'RUE DE LUXEMBOURG', '3215', '25000', '25056', 'Besançon', '25', '', '', '25056000EO0042', '', '', '223', '', '250', '', '', '', '', '', '', '', '2', '2', 'Appartement', '82', '4', '', '', '', '', '', '5.968171', '47.222114'], ['2019-73227', '2019-05-13', '000001', 'Vente', '65200', '10', '', 'RUE DE LUXEMBOURG', '3215', '25000', '25056', 'Besançon', '25', '', '', '25056000EO0262', '', '', '124', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.967401', '47.22251'], ['2019-73228', '2019-05-31', '000001', 'Vente', '182100', '15', '', 'AV EDOUARD DROZ', '1730', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0147', '', '', '194', '', '209', '111.28', '', '', '', '', '', '', '2', '2', 'Appartement', '117', '4', '', '', '', '', '', '6.03346', '47.241218'], ['2019-73228', '2019-05-31', '000001', 'Vente', '182100', '11', '', 'AV EDOUARD DROZ', '1730', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0147', '', '', '390', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.03346', '47.241218'], ['2019-73229', '2019-05-22', '000001', 'Vente', '268450', '4', '', 'RUE PLATINE', '0051', '25480', '25212', 'École-Valentin', '25', '', '', '25212581AO0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '120', '5', 'S', 'sols', '', '', '751', '5.999152', '47.274627'], ['2019-73229', '2019-05-22', '000001', 'Vente', '268450', '', '', 'LES VAUX DESSUS', 'B078', '25480', '25212', 'École-Valentin', '25', '', '', '25212581AO0155', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '508', '5.998935', '47.274638'], ['2019-73230', '2019-05-11', '000001', 'Vente', '78500', '4', '', 'RUE DU VIVARAIS', '5355', '25000', '25056', 'Besançon', '25', '', '', '25056000LR0055', '', '', '17', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '67', '3', '', '', '', '', '', '5.9635', '47.218327'], ['2019-73231', '2019-05-24', '000001', 'Vente', '50000', '14', '', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0309', '', '', '32', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.0343', '47.254431'], ['2019-73231', '2019-05-24', '000001', 'Vente', '50000', '14', '', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0309', '', '', '111', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '23', '0', '', '', '', '', '', '6.0343', '47.254431'], ['2019-73232', '2019-05-22', '000001', 'Vente', '64000', '40', '', 'RUE DE VELOTTE', '5110', '25000', '25056', 'Besançon', '25', '', '', '25056000DS0215', '', '', '38', '', '75', '28.4', '', '', '', '', '', '', '2', '2', 'Appartement', '29', '1', '', '', '', '', '', '6.013094', '47.221876'], ['2019-73232', '2019-05-22', '000001', 'Vente', '64000', '40', '', 'RUE DE VELOTTE', '5110', '25000', '25056', 'Besançon', '25', '', '', '25056000DS0215', '', '', '25', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.013094', '47.221876'], ['2019-73233', '2019-05-20', '000001', 'Vente', '67000', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '216', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73233', '2019-05-20', '000001', 'Vente', '67000', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '59', '', '60', '', '', '', '', '', '', '', '2', '2', 'Appartement', '59', '3', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '87', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '72', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '73', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '88', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73235', '2019-05-24', '000001', 'Vente', '165600', '25', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AI0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '77', '3', 'S', 'sols', '', '', '321', '6.159384', '47.196921'], ['2019-73235', '2019-05-24', '000001', 'Vente', '165600', '25', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AI0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '87', '4', 'S', 'sols', '', '', '321', '6.159384', '47.196921'], ['2019-73235', '2019-05-24', '000001', 'Vente', '165600', '25', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AI0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '321', '6.159384', '47.196921'], ['2019-73236', '2019-05-10', '000001', 'Vente', '39000', '13', '', 'RUE DES ECOLES', '0070', '25960', '25197', 'Deluz', '25', '', '', '25197000AC0090', '', '', '15', '', '26', '', '79', '', '8', '39.49', '', '', '4', '2', 'Appartement', '35', '1', '', '', '', '', '', '6.203481', '47.29477'], ['2019-73237', '2019-05-29', '000001', 'Vente', '325000', '35', '', 'RUE MIRABEAU', '3461', '25000', '25056', 'Besançon', '25', '', '', '25056000CN0389', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '153', '6', 'S', 'sols', '', '', '824', '6.052343', '47.246078'], ['2019-73237', '2019-05-29', '000001', 'Vente', '325000', '33', 'B', 'RUE MIRABEAU', '3461', '25000', '25056', 'Besançon', '25', '', '', '25056000CN0392', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '123', '6.052161', '47.246123'], ['2019-73238', '2019-06-05', '000001', 'Vente', '43100', '5', '', 'RUE DE LA TRAVERSE', '0340', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0554', '', '', '7', '73.3', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '79', '5', '', '', '', '', '', '6.355054', '47.479089'], ['2019-73239', '2019-05-22', '000001', 'Vente', '57900', '31', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0227', '', '', '17', '60.1', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '60', '2', '', '', '', '', '', '6.027769', '47.247632'], ['2019-73240', '2019-05-21', '000001', 'Vente', '188000', '137', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AL0093', '', '', '15', '67.96', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '69', '3', '', '', '', '', '', '6.029166', '47.235192'], ['2019-73241', '2019-05-29', '000001', 'Vente', '70000', '15', '', 'RUE DU TUNNEL', '5010', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0261', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.018879', '47.254797'], ['2019-73241', '2019-05-29', '000001', 'Vente', '70000', '15', '', 'RUE DU TUNNEL', '5010', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0261', '', '', '48', '42.84', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '44', '2', '', '', '', '', '', '6.018879', '47.254797'], ['2019-73242', '2019-06-07', '000001', 'Vente', '400000', '10', 'B', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0203', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '225', '0', 'S', 'sols', '', '', '5133', '5.995347', '47.240022'], ['2019-73242', '2019-06-07', '000001', 'Vente', '400000', '10', 'B', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0203', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '4144', '0', 'S', 'sols', '', '', '5133', '5.995347', '47.240022'], ['2019-73242', '2019-06-07', '000001', 'Vente', '400000', '10', 'B', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0203', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '225', '0', 'S', 'sols', '', '', '5133', '5.995347', '47.240022'], ['2019-73243', '2019-06-05', '000001', 'Vente', '85000', '5', '', 'RUE DES BROSSES', '0560', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0038', '', '', '33', '', '59', '40.61', '', '', '', '', '', '', '2', '2', 'Appartement', '40', '2', '', '', '', '', '', '6.012266', '47.247027'], ['2019-73243', '2019-06-05', '000001', 'Vente', '85000', '5', '', 'RUE DES BROSSES', '0560', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0038', '', '', '1', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.012266', '47.247027'], ['2019-73244', '2019-06-05', '000001', 'Vente', '124000', '53', '', 'RUE EMILE PICARD', '1770', '25000', '25056', 'Besançon', '25', '', '', '25056000CT0175', '', '', '1', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.041387', '47.244982'], ['2019-73244', '2019-06-05', '000001', 'Vente', '124000', '53', '', 'RUE EMILE PICARD', '1770', '25000', '25056', 'Besançon', '25', '', '', '25056000CT0175', '', '', '10', '58.63', '11', '', '3', '', '6', '', '', '', '4', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.041387', '47.244982'], ['2019-73245', '2019-05-27', '000001', 'Vente', '77500', '20', '', 'RUE OLYMPE DE GOUGES', '0016', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AV0309', '', '', '255', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.060664', '47.247635'], ['2019-73245', '2019-05-27', '000001', 'Vente', '77500', '20', '', 'RUE OLYMPE DE GOUGES', '0016', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AV0309', '', '', '141', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.060664', '47.247635'], ['2019-73245', '2019-05-27', '000001', 'Vente', '77500', '24', '', 'RUE OLYMPE DE GOUGES', '0016', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AV0309', '', '', '22', '59.65', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '60', '3', '', '', '', '', '', '6.060664', '47.247635'], ['2019-73246', '2019-05-27', '000001', 'Vente', '80500', '1', '', 'RUE DU ONZE NOVEMBRE', '3715', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0106', '', '', '88', '56.3', '89', '', '90', '', '', '', '', '', '3', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.042194', '47.258352'], ['2019-73247', '2019-05-29', '000001', 'Vente', '65000', '7', '', 'BD DIDEROT', '1553', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0310', '', '', '104', '43.03', '99', '', '', '', '', '', '', '', '2', '2', 'Appartement', '39', '1', '', '', '', '', '', '6.033775', '47.242999'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '3', '', 'IMP LES PIECES', '0043', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '1031', '5.876087', '47.134126'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '', '', 'AUX PIECES', 'B073', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0062', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '609', '5.87588', '47.134299'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '', '', 'AUX PIECES', 'B073', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0065', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '625', '5.875438', '47.134055'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '', '', 'AUX PIECES', 'B073', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0066', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '48', '5.875832', '47.134362'], ['2019-73249', '2019-05-22', '000001', 'Vente', '155200', '3', '', 'IMP DU BREUILLE', '0030', '25820', '25323', 'Laissey', '25', '', '', '25323000AC0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '4', 'J', 'jardins', '', '', '592', '6.228935', '47.297257'], ['2019-73249', '2019-05-22', '000001', 'Vente', '155200', '3', '', 'IMP DU BREUILLE', '0030', '25820', '25323', 'Laissey', '25', '', '', '25323000AC0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '4', 'S', 'sols', '', '', '500', '6.228935', '47.297257'], ['2019-73250', '2019-06-05', '000001', 'Vente', '146000', '12', 'B', 'RUE DE L INDUSTRIE', '2720', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0152', '', '', '12', '', '3', '', '9', '73.82', '', '', '', '', '3', '2', 'Appartement', '76', '5', '', '', '', '', '', '6.024802', '47.247389'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '82', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '83', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '63', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73252', '2019-05-28', '000001', 'Vente', '65550', '5', '', 'RUE MARULAZ', '3370', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0116', '', '', '112', '', '113', '31.15', '122', '', '123', '', '124', '', '5', '2', 'Appartement', '30', '1', '', '', '', '', '', '6.01788', '47.239387'], ['2019-73253', '2019-06-18', '000001', 'Vente', '24800', '', '', 'LE VERNOIS', 'B033', '25640', '25490', 'Rigney', '25', '', '', '25490000ZA0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1996', '6.170374', '47.38548'], ['2019-73254', '2019-06-19', '000001', 'Vente', '2800', '', '', 'LES PETITS PRES', 'B117', '25440', '25104', 'By', '25', '', '', '25104000ZC0011', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '18450', '5.889749', '47.003538'], ['2019-73255', '2019-06-07', '000001', 'Vente', '60000', '', '', 'BURGILLE', 'B011', '25170', '25101', 'Burgille', '25', '', '', '251010000D0184', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1003', '5.775752', '47.267121'], ['2019-73255', '2019-06-07', '000001', 'Vente', '60000', '', '', 'BURGILLE', 'B011', '25170', '25101', 'Burgille', '25', '', '', '251010000D0185', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '98', '5.775589', '47.267376'], ['2019-73256', '2019-06-24', '000001', 'Vente', '216600', '6', '', 'IMP DES BUIS', '0082', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AN0439', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '94', '5', 'S', 'sols', '', '', '505', '5.823666', '47.18401'], ['2019-73257', '2019-06-27', '000001', 'Vente', '178000', '1', '', 'RUE DU GAL CHARLES DE GAULLE', '0017', '25870', '25612', 'Vieilley', '25', '', '', '25612000AC0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '175', '6', 'S', 'sols', '', '', '1395', '6.070061', '47.337409'], ['2019-73257', '2019-06-27', '000001', 'Vente', '178000', '', '', 'LA VIE DE BONNAY', 'B043', '25870', '25612', 'Vieilley', '25', '', '', '25612000AC0340', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '377', '6.069617', '47.337375'], ['2019-73258', '2019-06-21', '000001', 'Vente', '382193.66', '9', '', 'RUE VOIRIN', '5360', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0283', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '260', '0', 'S', 'sols', '', '', '168', '6.012878', '47.242286'], ['2019-73258', '2019-06-21', '000001', 'Vente', '382193.66', '48', '', 'AV GEORGES CLEMENCEAU', '2330', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0284', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '3', '6.013169', '47.242297'], ['2019-73258', '2019-06-21', '000001', 'Vente', '382193.66', '9', '', 'RUE VOIRIN', '5360', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0287', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '362', '6.013058', '47.242288'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '2', '', 'CHE DES MERCURAUX', '0111', '25720', '25058', 'Beure', '25', '', '', '25058000AH0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '210', '6', 'S', 'sols', '', '', '1036', '6.015159', '47.206054'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '', '', 'ESSART GIROD', 'B042', '25720', '25058', 'Beure', '25', '', '', '25058000AH0120', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '368', '6.015364', '47.205954'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '', '', 'PRES DE MAILLOT', 'B080', '25720', '25058', 'Beure', '25', '', '', '25058000AH0238', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '365', '6.01479', '47.20594'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '', '', 'ESSART GIROD', 'B042', '25720', '25058', 'Beure', '25', '', '', '25058000AH0246', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '65', '6.015123', '47.205854'], ['2019-73260', '2019-06-27', '000001', 'Vente', '74000', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '137', '', '157', '45.56', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73260', '2019-06-27', '000001', 'Vente', '74000', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '255', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73261', '2019-06-13', '000001', 'Vente', '360000', '5287', '', 'RUE ARISTOTE', '0003', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AE0241', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '498', '0', 'S', 'sols', '', '', '2613', '5.879178', '47.202508'], ['2019-73262', '2019-06-17', '000001', "Vente en l'état futur d'achèvement", '10500', '23', '', 'AV DU 60EME RI', '4760', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0390', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.012115', '47.242435'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '21', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '35', '1', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '18', '', '19', '', '20', '', '', '', '', '', '3', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '34', '1', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '23', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '37', '1', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73264', '2019-06-27', '000001', 'Vente', '20000', '', '', 'BOUT D AMONT', 'B008', '25320', '25105', 'Byans-sur-Doubs', '25', '', '', '25105000AD0110', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '98', '5.859898', '47.114324'], ['2019-73264', '2019-06-27', '000001', 'Vente', '20000', '19', '', 'CHE DU BOUT D AMONT', '0015', '25320', '25105', 'Byans-sur-Doubs', '25', '', '', '25105000AD0111', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '30', '1', 'S', 'sols', '', '', '46', '5.859639', '47.114408'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '66', '4', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '72', '3', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '35', '2', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '14', '1', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73266', '2019-06-21', '000001', 'Vente', '10000', '50', '1', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0218', '', '', '131', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.009127', '47.234555'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '37', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '25', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '31', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '58', '3', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '22', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '144', '5', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '40', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '75', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '22', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '71', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '130', '5', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '45', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0177', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '250', '6.009603', '47.234502'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0190', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '197', '6.009559', '47.234622'], ['2019-73268', '2019-06-24', '000001', 'Vente', '75000', '', '', 'A PRAY', 'B054', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AR0249', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '572', '6.069728', '47.259251'], ['2019-73269', '2019-06-26', '000001', 'Vente', '83000', '8', '', 'RUE D ANVERS', '0200', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0012', '', '', '50', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.02258', '47.238199'], ['2019-73269', '2019-06-26', '000001', 'Vente', '83000', '8', '', 'RUE D ANVERS', '0200', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0012', '', '', '10', '', '50', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '105', '0', '', '', '', '', '', '6.02258', '47.238199'], ['2019-73269', '2019-06-26', '000001', 'Vente', '83000', '8', '', 'RUE D ANVERS', '0200', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0012', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.02258', '47.238199'], ['2019-73270', '2019-06-26', '000001', 'Vente', '84500', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '1', '83.54', '2', '', '3', '', '', '', '', '', '3', '2', 'Appartement', '84', '5', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73271', '2019-06-24', '000001', 'Vente', '262300', '59', '', 'RUE DE SALANS', '0020', '25410', '25502', 'Roset-Fluans', '25', '', '', '25502000ZA0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '128', '5', 'S', 'sols', '', '', '1000', '5.817583', '47.163582'], ['2019-73272', '2019-06-25', '000001', 'Vente', '94000', '18', 'B', 'RUE DE LA ROTONDE', '4590', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0209', '', '', '5', '', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '50', '3', '', '', '', '', '', '6.028318', '47.248795'], ['2019-73272', '2019-06-25', '000001', 'Vente', '94000', '18', 'B', 'RUE DE LA ROTONDE', '4590', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0209', '', '', '10', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.028318', '47.248795'], ['2019-73273', '2019-06-27', '000001', 'Vente', '6000', '102', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0054', '', '', '48', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.037784', '47.252741'], ['2019-73274', '2019-06-27', '000001', 'Vente', '44700', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '113', '22.18', '43', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '18', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73275', '2019-06-24', '000001', 'Vente', '106750', '11', 'D', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0353', '', '', '109', '', '19', '56.08', '', '', '', '', '', '', '2', '2', 'Appartement', '56', '2', '', '', '', '', '', '6.031472', '47.247769'], ['2019-73275', '2019-06-24', '000001', 'Vente', '106750', '11', 'D', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0353', '', '', '109', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.031472', '47.247769'], ['2019-73276', '2019-06-21', '000001', 'Vente', '68000', '9', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0337', '', '', '15', '', '18', '', '5', '', '', '', '', '', '3', '2', 'Appartement', '35', '2', '', '', '', '', '', '6.021595', '47.250296'], ['2019-73276', '2019-06-21', '000001', 'Vente', '68000', '9', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0337', '', '', '29', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.021595', '47.250296'], ['2019-73277', '2019-06-25', '000001', 'Vente', '272000', '10', '', 'RUE DES PERVENCHES', '0036', '25770', '25542', 'Serre-les-Sapins', '25', '', '', '25542000AC0140', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '6', 'S', 'sols', '', '', '815', '5.934635', '47.24599'], ['2019-73278', '2019-06-27', '000001', 'Vente', '80000', '', '', 'LA VAUREUGE', 'B175', '25340', '25574', 'Uzelle', '25', '', '', '255740000B0941', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1650', '6.476527', '47.469521'], ['2019-73278', '2019-06-27', '000001', 'Vente', '80000', '5074', '', 'LA VAUREUGE', 'B175', '25340', '25574', 'Uzelle', '25', '', '', '255740000B0943', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '151', '5', 'S', 'sols', '', '', '525', '6.476167', '47.469521'], ['2019-73279', '2019-06-28', '000001', 'Vente', '76000', '4', 'M', 'RUE LOUIS PERGAUD', '3180', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0184', '', '', '42', '', '43', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '60', '0', '', '', '', '', '', '6.008128', '47.235586'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '', '', 'SOUS LA ROUOTTE', 'B079', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0096', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1498', '6.625907', '47.395667'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '10', '', "RUE DE L'EGLISE", '0020', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0148', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '50', '2', 'S', 'sols', '', '', '1160', '6.626747', '47.395505'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '10', '', "RUE DE L'EGLISE", '0020', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0148', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '72', '3', 'S', 'sols', '', '', '1160', '6.626747', '47.395505'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '', '', 'AU VILLAGE', 'B092', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0149', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '112', '6.6262', '47.395559'], ['2019-73281', '2019-02-07', '000001', 'Vente', '13100', '19', '', 'RUE DU FBG SAINT PIERRE', '1750', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AV0409', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '131', '6.351215', '46.904442'], ['2019-73282', '2019-04-01', '000001', 'Vente', '261750', '23', '', 'LOT LES TILLEULS', 'A005', '25690', '25039', 'Avoudrey', '25', '', '', '25039000ZV0082', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '6', 'S', 'sols', '', '', '1145', '6.432999', '47.140224'], ['2019-73283', '2019-03-29', '000001', 'Vente', '233250', '17', '', 'RUE DU CRET', '0013', '25160', '25362', 'Malpas', '25', '', '', '253620000B0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '4', 'S', 'sols', '', '', '415', '6.289856', '46.827263'], ['2019-73284', '2019-04-05', '000001', 'Vente', '359900', '', '', 'METAU', 'B042', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '25525000AA0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", '', '', '98', '6.294621', '46.811633'], ['2019-73284', '2019-04-05', '000001', 'Vente', '359900', '8', '', 'RUE DU LEVANT', '0039', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '25525000AA0025', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '6', 'S', 'sols', '', '', '860', '6.294864', '46.811515'], ['2019-73285', '2019-03-27', '000001', 'Vente', '3700', '', '', 'AU CREUX TENDARD', 'B052', '25560', '25041', 'Bannans', '25', '', '', '250410000A0207', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '3613', '6.217589', '46.917902'], ['2019-73285', '2019-03-27', '000001', 'Vente', '3700', '', '', 'AU CREUX TENDARD', 'B052', '25560', '25041', 'Bannans', '25', '', '', '250410000A0207', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '529', '6.217589', '46.917902'], ['2019-73285', '2019-03-27', '000001', 'Vente', '3700', '', '', 'AU CREUX TENDARD', 'B052', '25560', '25041', 'Bannans', '25', '', '', '250410000A0207', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '1868', '6.217589', '46.917902'], ['2019-73286', '2019-03-29', '000001', 'Vente', '12800', '', '', 'DERRIERE MOURENBOZ', 'B111', '25560', '25259', 'Frasne', '25', '', '', '252590000D0107', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '7810', '6.133946', '46.861455'], ['2019-73287', '2019-04-02', '000001', 'Vente', '135000', '49', '', 'RUE CART BROUMET', '0011', '25240', '25413', 'Mouthe', '25', '', '', '25413000AD0281', '', '', '13', '56.5', '5', '', '', '', '', '', '', '', '2', '2', 'Appartement', '56', '3', '', '', '', '', '', '6.18813', '46.705305'], ['2019-73288', '2019-04-04', '000001', 'Vente', '34805', '', '', 'CRET DE LA RAPPE', 'B028', '25300', '25204', 'Doubs', '25', '', '', '25204000AA0362', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '243', '6.352259', '46.93198'], ['2019-73289', '2019-04-09', '000001', 'Vente', '148500', '8', 'C', 'RUE DU TELESIEGE', '0177', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0031', '', '', '236', '', '266', '54.9', '', '', '', '', '', '', '2', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.352727', '46.771683'], ['2019-73289', '2019-04-09', '000001', 'Vente', '148500', '8', 'C', 'RUE DU TELESIEGE', '0177', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0031', '', '', '241', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352727', '46.771683'], ['2019-73290', '2019-03-19', '000001', 'Vente', '10000', '', '', 'EN DESSUS DES CHEMINS', 'B123', '25290', '25434', 'Ornans', '25', '', '', '254340000F0224', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2420', '6.158976', '47.097823'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '', '', 'LA PLANTE', 'B107', '25930', '25339', 'Lods', '25', '', '', '25339000AC0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '194', '6.251337', '47.043163'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '', '', 'LA PLANTE', 'B107', '25930', '25339', 'Lods', '25', '', '', '25339000AC0211', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '75', '6.251325', '47.043071'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '4', '', 'RUE COMMANDANT VUILLEMIN', '0016', '25930', '25339', 'Lods', '25', '', '', '25339000AC0212', '', '', '4', '104.6', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.251215', '47.043084'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '4', '', 'RUE COMMANDANT VUILLEMIN', '0016', '25930', '25339', 'Lods', '25', '', '', '25339000AC0212', '', '', '7', '', '8', '', '', '', '', '', '', '', '2', '1', 'Maison', '84', '3', '', '', '', '', '', '6.251215', '47.043084'], ['2019-73292', '2019-03-21', '000001', 'Vente', '213000', '4', '', 'RUE DU CDT VALENTIN', '0520', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0247', '', '', '16', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.360446', '46.902745'], ['2019-73292', '2019-03-21', '000001', 'Vente', '213000', '4', '', 'RUE DU CDT VALENTIN', '0520', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0247', '', '', '11', '', '15', '', '', '', '', '', '', '', '2', '2', 'Appartement', '88', '4', '', '', '', '', '', '6.360446', '46.902745'], ['2019-73292', '2019-03-21', '000001', 'Vente', '213000', '4', '', 'RUE DU CDT VALENTIN', '0520', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0247', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.360446', '46.902745'], ['2019-73293', '2019-04-02', '000001', 'Vente', '355000', '6', '', 'PL DES MINIMES', '0040', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0372', '', '', '48', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '225', '4', '', '', '', '', '', '6.606871', '47.044171'], ['2019-73293', '2019-04-02', '000001', 'Vente', '355000', '6', '', 'PL DES MINIMES', '0040', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0372', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.606871', '47.044171'], ['2019-73294', '2019-03-26', '000001', 'Vente', '205000', '20', '', 'RUE DE LA REPUBLIQUE', '1650', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AH0063', '', '', '28', '', '7', '95.17', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '100', '0', '', '', '', '', '', '6.357004', '46.903224'], ['2019-73295', '2019-04-03', '000001', 'Vente', '15000', '54', '', 'ALL DU TERTRE', '0178', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0148', '', '', '38', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.351252', '46.769852'], ['2019-73296', '2019-04-10', '000001', 'Vente', '8500', '', '', 'A LA COTE GRUAND', 'B220', '25300', '25157', 'La Cluse-et-Mijoux', '25', '', '', '251570000B1125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '8850', '6.39134', '46.858313'], ['2019-73297', '2019-03-19', '000001', 'Vente', '275000', '10', '', 'RUE LA GARE', '0018', '25650', '25347', 'La Longeville', '25', '', '', '253470000B1570', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '4', 'S', 'sols', '', '', '999', '6.461807', '46.995261'], ['2019-73298', '2019-04-03', '000001', 'Vente', '17000', '5895', '', 'PL XAVIER AUTHIER', '0192', '25370', '25380', 'Métabief', '25', '', '', '25380000AI0023', '', '', '32', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.35748', '46.769716'], ['2019-73299', '2019-04-08', '000001', 'Vente', '150000', '5', 'D', 'PL XAVIER AUTHIER', '0192', '25370', '25380', 'Métabief', '25', '', '', '25380000AI0039', '', '', '158', '', '65', '47.6', '72', '', '', '', '', '', '3', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.35953', '46.770332'], ['2019-73299', '2019-04-08', '000001', 'Vente', '150000', '5', 'D', 'PL XAVIER AUTHIER', '0192', '25370', '25380', 'Métabief', '25', '', '', '25380000AI0039', '', '', '177', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.35953', '46.770332'], ['2019-73300', '2019-04-09', '000001', 'Vente', '2148.75', '', '', 'LES BAUMETTES', 'B003', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AB0012', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '191', '6.322129', '47.017736'], ['2019-73301', '2019-04-09', '000001', 'Vente', '1563.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '36', '6.321881', '47.023481'], ['2019-73301', '2019-04-09', '000001', 'Vente', '1563.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0020', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '103', '6.321677', '47.023429'], ['2019-73302', '2019-04-10', '000001', 'Vente', '243350', '1', '', 'RUE ANDRE MOCKLI', '0048', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AT0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '85', '4', 'S', 'sols', '', '', '271', '6.344602', '46.898329'], ['2019-73302', '2019-04-10', '000001', 'Vente', '243350', '14', '', 'RUE DES GRANGES', '0900', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AT0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '32', '6.345108', '46.898167'], ['2019-73302', '2019-04-10', '000001', 'Vente', '243350', '14', '', 'RUE DES GRANGES', '0900', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AT0282', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '462', '6.344519', '46.898594'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'LA FRAITE', 'B031', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZA0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '3945', '6.478258', '47.231328'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'LA FRAITE', 'B031', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZA0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '3945', '6.478258', '47.231328'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'LA FRAITE', 'B031', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZA0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '680', '6.478258', '47.231328'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'COMBE DE MEUX', 'B014', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZI0054', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '17230', '6.469269', '47.215718'], ['2019-73304', '2019-04-02', '000001', 'Vente', '65050', '5', '', 'LA GAUFFRE', 'B574', '25300', '25157', 'La Cluse-et-Mijoux', '25', '', '', '251570000B0842', '', '', '11', '43.5', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '43', '1', '', '', '', '', '', '6.371482', '46.859018'], ['2019-73305', '2019-04-04', '000001', 'Vente', '208000', '2', '', 'AV DE LA GARE', '0040', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000AC0003', '', '', '32', '1.8', '33', '110', '', '', '', '', '', '', '2', '2', 'Appartement', '115', '3', '', '', '', '', '', '6.280727', '46.773739'], ['2019-73306', '2019-04-06', '000001', 'Vente', '172192', '12', '', 'PL BUGNET', '0060', '25270', '25334', 'Levier', '25', '', '', '25334000AE0079', '', '', '39', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.11701', '46.953558'], ['2019-73306', '2019-04-06', '000001', 'Vente', '172192', '1', '', 'PL DE VERDUN', '0460', '25270', '25334', 'Levier', '25', '', '', '25334000AE0079', '', '', '29', '', '62', '110.14', '', '', '', '', '', '', '2', '2', 'Appartement', '100', '4', '', '', '', '', '', '6.11701', '46.953558'], ['2019-73307', '2019-03-28', '000001', 'Vente', '70100', '', '', 'AU VILLAGE', 'B163', '25270', '25180', 'Crouzet-Migette', '25', '', '', '25180000AB0288', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '136', '6.010442', '46.956924'], ['2019-73307', '2019-03-28', '000001', 'Vente', '70100', '5001', '', 'RUE DE L AUBERGE', '0003', '25270', '25180', 'Crouzet-Migette', '25', '', '', '25180000AB0290', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '68', '1', 'S', 'sols', '', '', '72', '6.01054', '46.956921'], ['2019-73308', '2019-04-05', '000001', 'Vente', '134000', '68', '', 'RUE DE LA REPUBLIQUE', '1650', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AB0135', '', '', '62', '76', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '80', '3', '', '', '', '', '', '6.353407', '46.90467'], ['2019-73309', '2019-04-18', '000001', 'Vente', '210000', '', '', 'LE VILLAGE', 'B039', '25690', '25342', 'Longechaux', '25', '', '', '253420000B0363', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '299', '6.431855', '47.16356'], ['2019-73309', '2019-04-18', '000001', 'Vente', '210000', '4', 'B', 'LA FAYOTTE', 'B018', '25690', '25342', 'Longechaux', '25', '', '', '253420000B0366', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '212', '4', 'S', 'sols', '', '', '456', '6.431749', '47.163626'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'CHAMPS DE LA CROIX', 'B007', '25240', '25619', 'Les Villedieu', '25', '', '', '256190000A0106', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1763', '6.275617', '46.740262'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'LA GOUTTE DOR', 'B022', '25240', '25619', 'Les Villedieu', '25', '', '', '25619000ZA0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '7315', '6.274298', '46.739414'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'LA GOUTTE DOR', 'B022', '25240', '25619', 'Les Villedieu', '25', '', '', '25619000ZA0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '7315', '6.274298', '46.739414'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'LA GOUTTE DOR', 'B022', '25240', '25619', 'Les Villedieu', '25', '', '', '25619000ZA0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3370', '6.274298', '46.739414'], ['2019-73311', '2019-04-05', '000001', "Vente en l'état futur d'achèvement", '195000', '24', '', 'RUE DE BESANCON', '0200', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0376', '', '', '53', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.350818', '46.906449'], ['2019-73311', '2019-04-05', '000001', "Vente en l'état futur d'achèvement", '195000', '24', '', 'RUE DE BESANCON', '0200', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0376', '', '', '36', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.350818', '46.906449'], ['2019-73312', '2019-04-02', '000001', 'Vente', '86000', '4', '', 'RUE EDEN ROC', '0014', '25370', '25307', 'Les Hôpitaux-Neufs', '25', '', '', '25307000AE0127', '', '', '12', '34.25', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '32', '2', '', '', '', '', '', '6.372494', '46.772553'], ['2019-73313', '2019-04-11', '000001', 'Vente', '175000', '10', '', 'RUE ANATOLE FRANCE', '0040', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AW0077', '', '', '1', '', '7', '81', '', '', '', '', '', '', '2', '2', 'Appartement', '82', '3', '', '', '', '', '', '6.347814', '46.904978'], ['2019-73314', '2019-04-15', '000001', 'Vente', '111500', '42', '', 'RUE GAMBETTA', '0830', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AC0110', '', '', '4', '', '7', '50.28', '', '', '', '', '', '', '2', '2', 'Appartement', '50', '3', '', '', '', '', '', '6.355707', '46.902949'], ['2019-73315', '2019-04-11', '000001', 'Vente', '410000', '8', '', 'SOUS LE GRAND BOIS', '0026', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AC0267', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '133', '5', 'S', 'sols', '', '', '865', '6.300982', '46.793507'], ['2019-73316', '2019-04-09', '000001', 'Vente', '3800', '23', '', 'RUE DU VILLAGE', '0183', '25370', '25380', 'Métabief', '25', '', '', '25380000AK0017', '', '', '96', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352621', '46.773831'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '55', '3', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '75', '3', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73318', '2019-04-25', '000001', 'Vente', '208900', '5', '', 'RUE DES MARRONNIERS', '0387', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0034', '', '', '103', '', '105', '', '2', '71.71', '', '', '', '', '3', '2', 'Appartement', '72', '3', '', '', '', '', '', '6.602858', '47.059065'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '61', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '65', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '65', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '59', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '61', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '60', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '59', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '60', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73320', '2019-04-23', '000001', 'Vente', '257650', '14', 'B', 'RUE DE L ETANG', '0035', '25390', '25349', 'Loray', '25', '', '', '25349000AD0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '85', '4', 'S', 'sols', '', '', '723', '6.491217', '47.152981'], ['2019-73321', '2019-04-12', '000001', 'Vente', '189000', '3', '', 'RUE DES BLEUETS', '0042', '25580', '25222', 'Étalans', '25', '', '', '25222000AC0138', '', '', '3', '114.3', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '114', '4', '', '', '', '', '', '6.267646', '47.154271'], ['2019-73322', '2019-04-25', '000001', 'Vente', '1380', '', '', 'AU VILLAGE HAUTEPIERRE', 'B639', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '25424302AB0141', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '230', '6.286283', '47.047577'], ['2019-73323', '2019-04-12', '000001', 'Vente', '6000', '', '', 'COMBE A VORBILLON', 'B075', '25620', '25558', 'Tarcenay-Foucherans', '25', '', '', '255582500C0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '5735', '6.123183', '47.146691'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '200', '6', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '100', '4', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73325', '2019-04-15', '000001', 'Vente', '188850', '3', '', 'IMP COTTI', '0127', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000ZH0217', '', '', '335', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.280772', '46.77068'], ['2019-73325', '2019-04-15', '000001', 'Vente', '188850', '3', '', 'IMP COTTI', '0127', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000ZH0217', '', '', '506', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.280772', '46.77068'], ['2019-73325', '2019-04-15', '000001', 'Vente', '188850', '3', '', 'IMP COTTI', '0127', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000ZH0217', '', '', '317', '61.87', '343', '', '', '', '', '', '', '', '2', '2', 'Appartement', '60', '3', '', '', '', '', '', '6.280772', '46.77068'], ['2019-73326', '2019-04-26', '000001', 'Vente', '154000', '6', '', 'RUE DU PONT DU DIABLE', '0820', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AD0103', '', '', '3', '73.04', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.668374', '47.062284'], ['2019-73327', '2019-04-08', '000001', 'Vente', '137280', '7', '', 'ALL DES CHAMOIS', '0045', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0353', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '29', '1', 'S', 'sols', '', '', '143', '6.350106', '46.767053'], ['2019-73328', '2019-04-18', '000001', 'Vente', '142400', '2', '', 'RUE DU FRONT DU LAC', '0030', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AD0309', '', '', '223', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.307155', '46.802197'], ['2019-73328', '2019-04-18', '000001', 'Vente', '142400', '2', '', 'RUE DU FRONT DU LAC', '0030', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AD0309', '', '', '256', '', '278', '51.07', '', '', '', '', '', '', '2', '2', 'Appartement', '51', '3', '', '', '', '', '', '6.307155', '46.802197'], ['2019-73329', '2019-04-04', '000001', 'Vente', '301600', '15', '', 'RUE DE ROCAPIN', '0047', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288000AD0011', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '138', '5', 'S', 'sols', '', '', '909', '6.568221', '47.110835'], ['2019-73330', '2019-04-08', '000001', 'Vente', '3000', '', '', 'BOIS DU TOUR', 'B016', '25500', '25160', 'Les Combes', '25', '', '', '251600000B0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '3565', '6.549005', '47.056719'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '', '', 'CHENAUX', 'B044', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0114', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '1365', '6.278129', '47.038446'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '', '', 'CHENAUX', 'B044', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0114', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.278129', '47.038446'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '', '0', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '144', '0', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '3', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '', '', 'CHENAUX', 'B044', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0116', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4005', '6.277883', '47.038041'], ['2019-73332', '2019-04-08', '000001', 'Vente', '580', '', '', 'AU VILLAGE BAS', 'B161', '25580', '25300', 'Guyans-Durnes', '25', '', '', '25300000AC0008', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '145', '6.24286', '47.121332'], ['2019-73333', '2019-04-30', '000001', 'Vente', '327500', '12', '', 'RUE DU COTEAU', '0092', '25500', '25240', 'Les Fins', '25', '', '', '25240000AI0323', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '151', '6', 'S', 'sols', '', '', '792', '6.615872', '47.069896'], ['2019-73334', '2019-04-30', '000001', 'Vente', '116000', '5', '', 'RUE DES FOURCHES', '0031', '25530', '25601', 'Vercel-Villedieu-le-Camp', '25', '', '', '25601000AC0082', '', '', '11', '', '6', '92.18', '', '', '', '', '', '', '2', '2', 'Appartement', '90', '2', '', '', '', '', '', '6.397959', '47.182652'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '8', '', 'RUE SAINT CLAUDE', '0050', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '550', '0', 'S', 'sols', '', '', '500', '6.54437', '47.095448'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '8', '', 'RUE SAINT CLAUDE', '0050', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '300', '0', 'S', 'sols', '', '', '500', '6.54437', '47.095448'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '8', '', 'RUE SAINT CLAUDE', '0050', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '80', '3', 'S', 'sols', '', '', '500', '6.54437', '47.095448'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '', '', 'A LUISANS', 'B045', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0109', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '109', '6.544438', '47.09553'], ['2019-73336', '2019-04-30', '000001', 'Vente', '145000', '9', '', 'RUE DE L HELVETIE', '0310', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0079', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.608424', '47.055204'], ['2019-73336', '2019-04-30', '000001', 'Vente', '145000', '11', '', 'RUE DE L HELVETIE', '0310', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0079', '', '', '11', '64.17', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '66', '3', '', '', '', '', '', '6.608424', '47.055204'], ['2019-73337', '2019-04-13', '000001', 'Vente', '270000', '10', '', 'RUE MAURICE DEBOIS', '0216', '25270', '25334', 'Levier', '25', '', '', '25334000AD0202', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '134', '8', 'S', 'sols', '', '', '771', '6.120949', '46.955989'], ['2019-73338', '2019-04-13', '000001', 'Vente', '3500', '', '', 'SUR LA CUCHE', 'B024', '25520', '25549', 'Sombacour', '25', '', '', '255490000C1021', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '1170', '6.230592', '46.935648'], ['2019-73338', '2019-04-13', '000001', 'Vente', '3500', '', '', 'SUR LA CUCHE', 'B024', '25520', '25549', 'Sombacour', '25', '', '', '255490000C1119', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1020', '6.230723', '46.935681'], ['2019-73339', '2019-04-15', '000001', 'Vente', '120500', '7', '', 'RUE MONTRIEUX', '1360', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AE0018', '', '', '15', '', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '48', '2', '', '', '', '', '', '6.35805', '46.901775'], ['2019-73340', '2019-04-18', '000001', 'Vente', '258000', '36', '', 'RUE EDOUARD BASTIDE', '0060', '25290', '25434', 'Ornans', '25', '', '', '25434000AK0033', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '157', '6', 'S', 'sols', '', '', '499', '6.156522', '47.102714'], ['2019-73340', '2019-04-18', '000001', 'Vente', '258000', '32', '', 'RUE EDOUARD BASTIDE', '0060', '25290', '25434', 'Ornans', '25', '', '', '25434000AK0106', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '23', '6.156638', '47.102494'], ['2019-73340', '2019-04-18', '000001', 'Vente', '258000', '36', '', 'RUE EDOUARD BASTIDE', '0060', '25290', '25434', 'Ornans', '25', '', '', '25434000AK0107', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '635', '6.156353', '47.102696'], ['2019-73341', '2019-05-13', '000001', 'Vente', '185600', '9', '', 'RUE DU MOULIN PARNET', '1420', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0268', '', '', '48', '', '84', '91.68', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.352351', '46.907365'], ['2019-73341', '2019-05-13', '000001', 'Vente', '185600', '9', '', 'RUE DU MOULIN PARNET', '1420', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0268', '', '', '65', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352351', '46.907365'], ['2019-73342', '2019-05-09', '000001', 'Vente', '410000', '1', '', 'CHE DES CHOCHEUX', '0081', '25390', '25432', 'Orchamps-Vennes', '25', '', '', '25432000AL0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '280', '10', 'S', 'sols', '', '', '1000', '6.526594', '47.128519'], ['2019-73342', '2019-05-09', '000001', 'Vente', '410000', '1', '', 'CHE DES CHOCHEUX', '0081', '25390', '25432', 'Orchamps-Vennes', '25', '', '', '25432000AL0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '280', '10', 'T', 'terres', '', '', '1833', '6.526594', '47.128519'], ['2019-73343', '2019-05-07', '000001', 'Vente', '162800', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '14', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73343', '2019-05-07', '000001', 'Vente', '162800', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '26', '64.11', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73344', '2019-05-06', '000001', 'Vente', '6210', '', '', 'LA BOUQUETTE', 'B014', '25690', '25343', 'Longemaison', '25', '', '', '25343000AB0112', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '621', '6.459892', '47.081056'], ['2019-73345', '2019-04-30', '000001', 'Vente terrain à bâtir', '30000', '37', '', 'RUE NEUVE', '0460', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0346', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '', '0', 'S', 'sols', '', '', '311', '6.601889', '47.058616'], ['2019-73346', '2019-05-13', '000001', 'Vente', '500', '', '', 'BREME COULET', 'B014', '25580', '25535', 'Saules', '25', '', '', '255350000A0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '2656', '6.209225', '47.136661'], ['2019-73346', '2019-05-13', '000001', 'Vente', '500', '', '', 'BREME COULET', 'B014', '25580', '25535', 'Saules', '25', '', '', '255350000A0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '7969', '6.209225', '47.136661'], ['2019-73347', '2019-04-24', '000001', "Vente en l'état futur d'achèvement", '313000', '1', 'B', 'LA ROCHOTTE', 'B311', '25570', '25285', "Grand'Combe-Châteleu", '25', '', '', '25285000AB0628', '', '', '13', '', '7', '', '', '', '', '', '', '', '2', '2', 'Appartement', '92', '4', '', '', '', '', '', '6.568092', '47.027826'], ['2019-73347', '2019-04-24', '000001', "Vente en l'état futur d'achèvement", '313000', '1', 'B', 'LA ROCHOTTE', 'B311', '25570', '25285', "Grand'Combe-Châteleu", '25', '', '', '25285000AB0628', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.568092', '47.027826'], ['2019-73348', '2019-04-25', '000001', 'Vente', '267940', '10', '', 'RUE DU TEMPLE', '1020', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AI0154', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '72', '4', 'S', 'sols', '', '', '473', '6.684258', '47.058597'], ['2019-73349', '2019-04-24', '000001', 'Vente', '5000', '8', '', 'CHE DU PRE BURTIN', '0196', '25290', '25434', 'Ornans', '25', '', '', '25434000AL0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '39', '6.138379', '47.10122'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '9', '', 'RTE DE PONTARLIER', '0045', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '38', '2', 'S', 'sols', '', '', '312', '6.217264', '47.064495'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '9', '', 'RTE DE PONTARLIER', '0045', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '312', '6.217264', '47.064495'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '9', '', 'RTE DE PONTARLIER', '0045', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '83', '3', 'S', 'sols', '', '', '312', '6.217264', '47.064495'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '', '', 'AU VILLAGE', 'B154', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0137', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '78', '6.217289', '47.06463'], ['2019-73351', '2019-05-03', '000001', 'Vente', '145000', '29', '', 'RUE DE LA COTE', '0130', '25500', '25411', 'Morteau', '25', '', '', '25411000AB0016', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '68', '5', 'S', 'sols', '', '', '421', '6.595158', '47.055696'], ['2019-73352', '2019-05-17', '000001', 'Vente', '66000', '', '', 'MURGER PARROT', 'B085', '25390', '25349', 'Loray', '25', '', '', '25349000AC0107', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '839', '6.492196', '47.149638'], ['2019-73353', '2019-05-07', '000001', 'Vente', '42075', '', '', 'AU VILLAGE', 'B060', '25660', '25375', 'Mérey-sous-Montrond', '25', '', '', '25375000AB0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '935', '6.068709', '47.153071'], ['2019-73354', '2019-05-23', '000001', 'Vente', '10000', '10', '', 'AV GAL PIERRE MARIE BURNEZ', '0120', '25800', '25578', 'Valdahon', '25', '', '', '25578000AD0221', '', '', '203', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.340354', '47.150847'], ['2019-73355', '2019-05-06', '000001', 'Vente', '273300', '2', '', 'RUE DES COURLIS', '0005', '25300', '25309', 'Houtaud', '25', '', '', '25309000AD0164', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '5', 'AB', 'terrains a bâtir', '', '', '732', '6.311006', '46.914808'], ['2019-73356', '2019-05-03', '000001', 'Vente', '160000', '24', '', 'RUE ANTOINE PATEL', '0050', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AZ0017', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.346816', '46.911058'], ['2019-73356', '2019-05-03', '000001', 'Vente', '160000', '24', '', 'RUE ANTOINE PATEL', '0050', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AZ0017', '', '', '2', '63.05', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.346816', '46.911058'], ['2019-73356', '2019-05-03', '000001', 'Vente', '160000', '24', '', 'RUE ANTOINE PATEL', '0050', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AZ0017', '', '', '7', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.346816', '46.911058'], ['2019-73357', '2019-05-03', '000001', 'Vente', '117700', '4', '', 'RUE DE LA SEIGNETTE', '0041', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AE0256', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '70', '3', 'S', 'sols', '', '', '222', '6.312853', '46.803962'], ['2019-73357', '2019-05-03', '000001', 'Vente', '117700', '4', '', 'RUE DE LA SEIGNETTE', '0041', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AE0256', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '130', '5', 'S', 'sols', '', '', '222', '6.312853', '46.803962'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'EN BARABAN', 'B006', '25290', '25434', 'Ornans', '25', '', '', '254340000G0388', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '8621', '6.135321', '47.086229'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0145', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1000', '6.121926', '47.099235'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '5083', '6.122161', '47.099539'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0153', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '9890', '6.122277', '47.10117'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0154', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '2873', '6.122075', '47.100135'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0155', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '16957', '6.121297', '47.100456'], ['2019-73359', '2019-05-24', '000001', 'Vente', '267000', '', '', 'AU VILLAGE', 'B093', '25240', '25131', 'Châtelblanc', '25', '', '', '25131000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '728', '6.110888', '46.672388'], ['2019-73359', '2019-05-24', '000001', 'Vente', '267000', '6', '', 'CHE DES ESSARTS', '0012', '25240', '25131', 'Châtelblanc', '25', '', '', '25131000AB0116', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '157', '7', 'S', 'sols', '', '', '490', '6.110957', '46.672352'], ['2019-73360', '2019-05-23', '000001', 'Vente', '58000', '26', 'C', 'RUE EMILE MAGNIN', '0700', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AW0023', '', '', '94', '24.58', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '28', '1', '', '', '', '', '', '6.344517', '46.905882'], ['2019-73361', '2019-05-27', '000001', 'Vente', '215800', '1', '', 'RUE DES GELINOTTES', '0448', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000BC0049', '', '', '10', '93.4', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '90', '4', '', '', '', '', '', '6.666038', '47.066147'], ['2019-73361', '2019-05-27', '000001', 'Vente', '215800', '1', '', 'RUE DES GELINOTTES', '0448', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000BC0049', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.666038', '47.066147'], ['2019-73362', '2019-05-27', '000001', 'Vente', '109000', '10', '', 'RUE SAINT EXUPERY', '0296', '25800', '25578', 'Valdahon', '25', '', '', '25578000AI0094', '', '', '11', '', '13', '64.97', '', '', '', '', '', '', '2', '2', 'Appartement', '65', '3', '', '', '', '', '', '6.352312', '47.148341'], ['2019-73362', '2019-05-27', '000001', 'Vente', '109000', '10', '', 'RUE SAINT EXUPERY', '0296', '25800', '25578', 'Valdahon', '25', '', '', '25578000AI0094', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352312', '47.148341'], ['2019-73363', '2019-05-27', '000001', 'Vente', '111000', '5', '', 'PL MAXIME CUPILLARD', '0646', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0090', '', '', '1', '', '26', '101.87', '27', '', '29', '', '44', '', '6', '2', 'Appartement', '102', '6', '', '', '', '', '', '6.670405', '47.059013'], ['2019-73364', '2019-05-23', '000001', 'Vente', '120000', '16', '', 'RUE DU CLOS JEUNE', '0113', '25500', '25411', 'Morteau', '25', '', '', '25411000AE0084', '', '', '137', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.608283', '47.056929'], ['2019-73364', '2019-05-23', '000001', 'Vente', '120000', '16', '', 'RUE DU CLOS JEUNE', '0113', '25500', '25411', 'Morteau', '25', '', '', '25411000AE0084', '', '', '63', '', '82', '50.51', '', '', '', '', '', '', '2', '2', 'Appartement', '51', '2', '', '', '', '', '', '6.608283', '47.056929'], ['2019-73365', '2019-05-23', '000001', 'Vente', '183900', '9010', '', 'RUE VICTOR HUGO', '1970', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0218', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '17', '6.348107', '46.909909'], ['2019-73365', '2019-05-23', '000001', 'Vente', '183900', '2', '', 'RUE DE LA MALADIERE', '1220', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0219', '', '', '20', '90.4', '22', '', '23', '', '', '', '', '', '3', '2', 'Appartement', '90', '4', '', '', '', '', '', '6.348077', '46.909833'], ['2019-73366', '2019-05-25', '000001', 'Vente', '162500', '5', '', 'RUE PASTEUR', '0740', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AC0430', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.667307', '47.058653'], ['2019-73366', '2019-05-25', '000001', 'Vente', '162500', '5', '', 'RUE PASTEUR', '0740', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AC0430', '', '', '23', '', '37', '73.4', '', '', '', '', '', '', '2', '2', 'Appartement', '73', '3', '', '', '', '', '', '6.667307', '47.058653'], ['2019-73367', '2019-05-20', '000001', 'Vente', '155000', '3', '', 'IMP DE LA BISE', '0012', '25290', '25434', 'Ornans', '25', '', '', '25434000AL0064', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '110', '5', 'S', 'sols', '', '', '697', '6.141537', '47.100737'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '48', '2', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '48', '2', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73369', '2019-06-07', '000001', 'Vente', '276000', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '38', '101.79', '39', '', '', '', '', '', '', '', '2', '2', 'Appartement', '102', '4', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73369', '2019-06-07', '000001', 'Vente', '276000', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '23', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73370', '2019-06-03', '000001', 'Vente', '1000', '', '', 'CHAMP DE L EPINE', 'B107', '25160', '25405', 'Montperreux', '25', '', '', '25405000AI0056', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '8050', '6.335536', '46.825222'], ['2019-73371', '2019-06-07', '000001', 'Vente', '311200', '2', '', 'LA ROCHETTE', 'A079', '25650', '25139', 'La Chaux', '25', '', '', '25139000ZE0111', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '148', '4', 'S', 'sols', '', '', '500', '6.424969', '47.02072'], ['2019-73371', '2019-06-07', '000001', 'Vente', '311200', '2', '', 'LA ROCHETTE', 'A079', '25650', '25139', 'La Chaux', '25', '', '', '25139000ZE0111', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '148', '4', 'P', 'prés', '', '', '441', '6.424969', '47.02072'], ['2019-73372', '2019-06-14', '000001', 'Vente', '259040', '3', '', 'RUE DU CHATEAU', '0016', '25300', '25110', 'Chaffois', '25', '', '', '25110000AC0172', '', '', '4', '81', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '85', '3', '', '', '', '', '', '6.269127', '46.913632'], ['2019-73372', '2019-06-14', '000001', 'Vente', '259040', '3', '', 'RUE DU CHATEAU', '0016', '25300', '25110', 'Chaffois', '25', '', '', '25110000AC0172', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.269127', '46.913632'], ['2019-73373', '2019-06-11', '000001', 'Vente', '3400', '', '', 'LES RAVIERES', 'B074', '25240', '25131', 'Châtelblanc', '25', '', '', '251310000C0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '3970', '6.12323', '46.668816'], ['2019-73374', '2019-05-25', '000001', 'Vente', '190600', '8', '', 'RUE DU DOUBS', '0021', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0352', '', '', '86', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.606049', '47.04502'], ['2019-73374', '2019-05-25', '000001', 'Vente', '190600', '8', '', 'RUE DU DOUBS', '0021', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0352', '', '', '22', '', '69', '59.27', '', '', '', '', '', '', '2', '2', 'Appartement', '62', '3', '', '', '', '', '', '6.606049', '47.04502'], ['2019-73374', '2019-05-25', '000001', 'Vente', '190600', '8', '', 'RUE DU DOUBS', '0021', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0352', '', '', '34', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.606049', '47.04502'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '675', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1880', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '17180', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '400', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2640', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1320', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '5400', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '23720', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4160', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '3400', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'DERRIERE LES TEUREY', 'B042', '25510', '25625', 'Villers-la-Combe', '25', '', '', '25625000AE0044', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '11965', '6.502807', '47.244859'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'DERRIERE LES TEUREY', 'B042', '25510', '25625', 'Villers-la-Combe', '25', '', '', '25625000AE0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '10395', '6.504113', '47.244614'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'DERRIERE LES TEUREY', 'B042', '25510', '25625', 'Villers-la-Combe', '25', '', '', '25625000AE0046', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1505', '6.504528', '47.244347'], ['2019-73376', '2019-05-13', '000001', 'Vente', '165000', '11', '', 'RUE DE LA GARE', '0050', '25690', '25039', 'Avoudrey', '25', '', '', '25039000AC0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '270', '7', 'S', 'sols', '', '', '1277', '6.435121', '47.13306'], ['2019-73377', '2019-06-07', '000001', 'Vente', '24871.02', '', '', 'CLOS OUDOT', 'B033', '25530', '25325', 'Landresse', '25', '', '', '25325000ZL0191', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '995', '6.468214', '47.25478'], ['2019-73378', '2019-06-14', '000001', 'Vente', '195000', '42', '', 'RUE DE LA COTE', '0130', '25500', '25411', 'Morteau', '25', '', '', '25411000AB0049', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '92', '5', 'S', 'sols', '', '', '264', '6.595619', '47.055712'], ['2019-73379', '2019-06-18', '000001', 'Vente', '52500', '22', '', 'RUE DU FAUBOURG', '0013', '25370', '25318', 'Jougne', '25', '', '', '25318000AB0066', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.384612', '46.766454'], ['2019-73379', '2019-06-18', '000001', 'Vente', '52500', '22', '', 'RUE DU FAUBOURG', '0013', '25370', '25318', 'Jougne', '25', '', '', '25318000AB0066', '', '', '11', '24.47', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '24', '2', '', '', '', '', '', '6.384612', '46.766454'], ['2019-73380', '2019-06-20', '000001', 'Vente', '100000', '18', '', 'RUE DU STAND', '1830', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AR0007', '', '', '85', '71.65', '93', '', '', '', '', '', '', '', '2', '2', 'Appartement', '69', '4', '', '', '', '', '', '6.352094', '46.89998'], ['2019-73381', '2019-06-13', '000001', 'Vente', '303500', '15', 'B', 'RUE DE LA SYLVE', '0049', '25300', '25204', 'Doubs', '25', '', '', '25204000AD0100', '', '', '1', '', '', '', '', '', '', '', '', '', '1', '1', 'Maison', '112', '8', '', '', '', '', '', '6.35291', '46.918636'], ['2019-73382', '2019-06-11', '000001', 'Vente', '76600', '11', '', 'RUE HENRI GRAND', '0024', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AC0554', '', '', '28', '', '5', '', '', '', '', '', '', '', '2', '2', 'Appartement', '31', '1', '', '', '', '', '', '6.298271', '46.792482'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2671', '6.443157', '46.986064'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '500', '6.443157', '46.986064'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2671', '6.443157', '46.986064'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2671', '6.443157', '46.986064'], ['2019-73384', '2019-05-31', '000001', 'Vente', '7000', '', '', 'AU MOURET', 'B193', '25270', '25334', 'Levier', '25', '', '', '25334319ZH0023', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1520', '6.09024', '46.971784'], ['2019-73384', '2019-05-31', '000001', 'Vente', '7000', '', '', 'AU MOURET', 'B193', '25270', '25334', 'Levier', '25', '', '', '25334319ZH0023', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '3480', '6.09024', '46.971784'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'PRE DE LA VERDE', 'B060', '25160', '25459', 'La Planée', '25', '', '', '254590000D0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '4880', '6.28194', '46.852952'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'A LA CORNE DE LA COTE', 'B037', '25160', '25459', 'La Planée', '25', '', '', '254590000D0036', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '4617', '6.298898', '46.853646'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'A LA CORNE DE LA COTE', 'B037', '25160', '25459', 'La Planée', '25', '', '', '254590000D0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '5023', '6.299404', '46.853632'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'AUX GRANDS PRES', 'B044', '25160', '25459', 'La Planée', '25', '', '', '254590000D0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '85381', '6.295019', '46.854275'], ['2019-73386', '2019-06-01', '000001', 'Vente', '130000', '7', '', 'RUE DES LAVAUX', '1140', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0012', '', '', '19', '89.24', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '100', '4', '', '', '', '', '', '6.359269', '46.905956'], ['2019-73387', '2019-06-03', '000001', 'Vente', '182000', '28', '', 'GR GRANDE RUE', '0023', '25300', '25515', 'Sainte-Colombe', '25', '', '', '25515000ZC0094', '', '', '11', '', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '86', '3', '', '', '', '', '', '6.263891', '46.877454'], ['2019-73387', '2019-06-03', '000001', 'Vente', '182000', '28', '', 'GR GRANDE RUE', '0023', '25300', '25515', 'Sainte-Colombe', '25', '', '', '25515000ZC0094', '', '', '8', '13.2', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.263891', '46.877454'], ['2019-73388', '2019-06-14', '000001', 'Vente', '409000', '', '', 'RUE DES COTES', '0300', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0292', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '150', '6', 'S', 'sols', '', '', '1254', '6.661945', '47.057962'], ['2019-73389', '2019-06-01', '000001', 'Vente', '219000', '7', '', 'RUE DE LA MONTAGNE', '0038', '25300', '25201', 'Dommartin', '25', '', '', '25201000AC0009', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.305465', '46.924575'], ['2019-73389', '2019-06-01', '000001', 'Vente', '219000', '7', '', 'RUE DE LA MONTAGNE', '0038', '25300', '25201', 'Dommartin', '25', '', '', '25201000AC0009', '', '', '28', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.305465', '46.924575'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '45', '1', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '103', '5', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73391', '2019-06-14', '000001', 'Vente', '157010', '4', '', 'AV DES GRANDS CHAMPS', '0110', '25370', '25380', 'Métabief', '25', '', '', '25380000AB0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '36', '2', 'S', 'sols', '', '', '301', '6.340861', '46.767161'], ['2019-73391', '2019-06-14', '000001', 'Vente', '157010', '', '', 'VISCERNOIS', 'B018', '25370', '25380', 'Métabief', '25', '', '', '25380000AB0250', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '30', '6.340836', '46.76754'], ['2019-73392', '2019-06-05', '000001', 'Vente', '1000', '', '', 'A LA BAUME', 'B007', '25560', '25202', 'Dompierre-les-Tilleuls', '25', '', '', '252020000A0245', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '4180', '6.160498', '46.899215'], ['2019-73393', '2019-06-18', '000001', 'Vente', '207720', '28', '', 'RUE DE LA COTE', '0020', '25370', '25318', 'Jougne', '25', '', '', '25318000AC0454', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '55', '3', 'S', 'sols', '', '', '582', '6.386129', '46.760382'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'PRE SENAUBEAU', 'B078', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0051', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3250', '6.304481', '46.823169'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'PRE SENAUBEAU', 'B078', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0053', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2420', '6.3049', '46.822962'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'PRE SENAUBEAU', 'B078', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0054', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3950', '6.305401', '46.82346'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'LE CREPON', 'B046', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0518', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '6600', '6.304782', '46.82442'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'CHAMP DU POMMIER', 'B004', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000A0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '5120', '6.309621', '46.818326'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'LES COTTES', 'B021', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000A0110', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '280', '6.312509', '46.819505'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'LES REVERS', 'B055', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000A0258', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '188', '6.300424', '46.814217'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'QUARTIER DE L EGLISE', 'B050', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000B0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '1045', '6.300609', '46.814562'], ['2019-73395', '2019-06-18', '000001', 'Vente', '9000', '31', '', 'RUE DYONIS ORDINAIRE', '0640', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AM0100', '', '', '186', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.362325', '46.899368'], ['2019-73396', '2019-06-18', '000001', 'Vente', '167700', '28', '', 'RUE DE JOUX', '1080', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AM0100', '', '', '11', '', '6', '71.27', '', '', '', '', '', '', '2', '2', 'Appartement', '71', '4', '', '', '', '', '', '6.362325', '46.899368'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'AUX ETROITS', 'B069', '25930', '25339', 'Lods', '25', '', '', '253390000A0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1000', '6.28752', '47.066124'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'LES EMARINS', 'B067', '25930', '25339', 'Lods', '25', '', '', '253390000A0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1605', '6.287618', '47.065949'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0008', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1250', '6.288498', '47.065764'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0009', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1940', '6.288464', '47.065912'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0010', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '705', '6.288242', '47.066275'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '6930', '6.292762', '47.067463'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1050', '6.294802', '47.067391'], ['2019-73398', '2019-06-26', '000001', 'Vente', '20000', '5', '', 'RUE DES TRONCHOTS', '0340', '25800', '25578', 'Valdahon', '25', '', '', '25578000AA0153', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '4', 'S', 'sols', '', '', '389', '6.334962', '47.152597'], ['2019-73398', '2019-06-26', '000001', 'Vente', '20000', '5', '', 'RUE DES TRONCHOTS', '0340', '25800', '25578', 'Valdahon', '25', '', '', '25578000AA0154', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '23', '6.334888', '47.15252'], ['2019-73399', '2019-06-28', '000001', 'Vente', '143800', '22', '', 'RUE PRINCIPALE', '0015', '25530', '25007', 'Adam-lès-Vercel', '25', '', '', '250070000C0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '145', '4', 'S', 'sols', '', '', '207', '6.392467', '47.168587'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '12', '', 'RUE GRANDE RUE', '0282', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0061', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '129', '4', 'S', 'sols', '', '', '615', '6.168904', '46.933765'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '312', '6.168204', '46.934467'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '313', '6.168204', '46.934467'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '95', '6.168807', '46.934179'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '390', '6.168807', '46.934179'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0294', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '106', '6.168821', '46.934108'], ['2019-73401', '2019-06-05', '000001', 'Vente', '272000', '98', '', 'RUE DES LAVAUX', '1140', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AK0024', '', '', '204', '98', '205', '98', '', '', '', '', '', '', '2', '2', 'Appartement', '95', '5', '', '', '', '', '', '6.372267', '46.906055'], ['2019-73401', '2019-06-05', '000001', 'Vente', '272000', '98', '', 'RUE DES LAVAUX', '1140', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AK0024', '', '', '219', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.372267', '46.906055'], ['2019-73402', '2019-06-07', '000001', 'Vente', '55000', '11', '', 'RUE DU LAC', '0175', '25560', '25075', 'Bonnevaux', '25', '', '', '25075000ZH0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '124', '4', 'S', 'sols', '', '', '610', '6.184904', '46.809534'], ['2019-73402', '2019-06-07', '000001', 'Vente', '55000', '', '', 'AU VILLAGE', 'B139', '25560', '25075', 'Bonnevaux', '25', '', '', '25075000ZH0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '30', '6.185239', '46.8096'], ['2019-73402', '2019-06-07', '000001', 'Vente', '55000', '', '', 'AU VILLAGE', 'B139', '25560', '25075', 'Bonnevaux', '25', '', '', '25075000ZH0294', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '28', '6.18511', '46.809455'], ['2019-73403', '2019-06-05', '000001', 'Vente', '20000', '', '', 'TASSENIERE', 'B091', '25560', '25202', 'Dompierre-les-Tilleuls', '25', '', '', '252020000B0216', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '20960', '6.173556', '46.887252'], ['2019-73404', '2019-06-24', '000001', 'Vente', '320000', '2', '', 'RUE DU CHAMP NEUF', '0026', '25300', '25024', 'Arçon', '25', '', '', '25024000AB0093', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '167', '5', 'S', 'sols', '', '', '800', '6.379998', '46.951359'], ['2019-73405', '2019-06-18', '000001', 'Vente', '4500', '', '', 'AU MOUTHRIOT', 'B104', '25560', '25493', 'La Rivière-Drugeon', '25', '', '', '254930000C0736', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '8560', '6.247441', '46.866128'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0197', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '633', '6.191296', '46.709845'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0198', '', '', '2', '', '3', '0.8', '4', '', '5', '52.07', '6', '4.92', '6', '2', 'Appartement', '138', '4', '', '', '', '', '', '6.191429', '46.709644'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0198', '', '', '7', '41.76', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '40', '1', '', '', '', '', '', '6.191429', '46.709644'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0198', '', '', '10', '58.62', '11', '58.62', '12', '58.62', '13', '44.03', '9', '57.89', '5', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.191429', '46.709644'], ['2019-73407', '2019-06-24', '000001', 'Vente', '1721.25', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0104', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '153', '6.324236', '47.021641'], ['2019-73408', '2019-06-24', '000001', 'Vente', '1338.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0056', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '119', '6.32106', '47.023053'], ['2019-73409', '2019-06-24', '000001', 'Vente', '843.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0123', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '75', '6.325223', '47.022043'], ['2019-73410', '2019-06-27', '000001', 'Vente', '150000', '', '', 'RUE DU REC', '0870', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AI0052', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1370', '6.683644', '47.058423'], ['2019-73411', '2019-06-25', '000001', 'Vente', '239400', '8', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0492', '', '', '15', '117.88', '16', '', '17', '', '5', '', '', '', '4', '2', 'Appartement', '117', '5', '', '', '', '', '', '6.603177', '47.055493'], ['2019-73411', '2019-06-25', '000001', 'Vente', '239400', '8', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0492', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.603177', '47.055493'], ['2019-73412', '2019-06-28', '000001', 'Vente terrain à bâtir', '85056', '', '', 'LE GRAND COMMUNAL', 'B152', '25500', '25160', 'Les Combes', '25', '', '', '251600000A0859', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '886', '6.542529', '47.062714'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0049', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1712', '6.485413', '47.275148'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0063', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '4768', '6.485599', '47.275537'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0090', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '103', '6.484578', '47.275046'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0096', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '3000', '6.485612', '47.274852'], ['2019-73414', '2019-06-19', '000001', 'Vente', '64500', '', '', 'LOUIERE GRANDE PART', 'B013', '25620', '25305', "L'Hôpital-du-Grosbois", '25', '', '', '25305000ZD0247', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '2500', '6.205144', '47.174723'], ['2019-73415', '2019-06-18', '000001', 'Vente', '9000', '', '', 'AU POMMEREY', 'B170', '25580', '25222', 'Étalans', '25', '', '', '252220000A0499', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'SAPIN', 'Sapins ou sapinière', '16405', '6.243286', '47.184528'], ['2019-73416', '2019-06-21', '000001', 'Vente', '4882', '', '', 'DERRIERE LE ROUCHAUD', 'B116', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000D0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '9381', '6.134061', '46.931563'], ['2019-73416', '2019-06-21', '000001', 'Vente', '4882', '', '', 'DERRIERE LE ROUCHAUD', 'B116', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000D0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'B', 'bois', '', '', '930', '6.134061', '46.931563'], ['2019-73417', '2019-06-20', '000001', 'Vente', '176000', '16', '', 'AV MAL DE LATTRE DE TASSIGNY', '0130', '25290', '25434', 'Ornans', '25', '', '', '25434000AT0649', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '4', 'S', 'sols', '', '', '1045', '6.138951', '47.106723'], ['2019-73418', '2019-06-21', '000001', 'Vente', '104000', '12', '', 'RUE VOLTA', '0315', '25290', '25434', 'Ornans', '25', '', '', '25434000AT0265', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '53', '3', 'S', 'sols', '', '', '247', '6.140718', '47.102934'], ['2019-73418', '2019-06-21', '000001', 'Vente', '104000', '55', '', 'RUE VOLTA', '0315', '25290', '25434', 'Ornans', '25', '', '', '25434000AT0306', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '48', '6.141018', '47.102717'], ['2019-73419', '2019-06-30', '000001', 'Vente', '170071.55', '', '', 'EN POUGIE', 'B062', '25800', '25578', 'Valdahon', '25', '', '', '25578000AP0266', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '249', '6.326724', '47.147908'], ['2019-73419', '2019-06-30', '000001', 'Vente', '170071.55', '', '', 'EN POUGIE', 'B062', '25800', '25578', 'Valdahon', '25', '', '', '25578000AP0268', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2413', '6.326931', '47.148034'], ['2019-73420', '2019-01-08', '000001', 'Vente', '5000', '27', 'B', 'RUE DE LA PETITE HOLLANDE', '1430', '25200', '25388', 'Montbéliard', '25', '', '', '25388000CL0057', '', '', '7', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.797619', '47.498409'], ['2019-73421', '2019-01-09', '000001', 'Vente', '145000', '35', '', 'RUE DU CDT D AIGREMONT', '0228', '25120', '25356', 'Maîche', '25', '', '', '25356000ZL0007', '', '', '25', '', '38', '', '45', '', '', '', '', '', '3', '2', 'Appartement', '83', '4', '', '', '', '', '', '6.802214', '47.246882'], ['2019-73421', '2019-01-09', '000001', 'Vente', '145000', '35', '', 'RUE DU CDT D AIGREMONT', '0228', '25120', '25356', 'Maîche', '25', '', '', '25356000ZL0007', '', '', '35', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.802214', '47.246882'], ['2019-73422', '2019-01-02', '000001', 'Vente', '35000', '69', 'B', 'RUE DE BELFORT', '0100', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BW0139', '', '', '184', '', '194', '', '203', '', '', '', '', '', '3', '2', 'Appartement', '48', '2', '', '', '', '', '', '6.800887', '47.508697'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '50', '2', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '71', '3', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'JARDINS DE LA LAVE', 'B088', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0219', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '100', '6.849997', '47.409253'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'JARDINS DE LA LAVE', 'B088', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0220', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '100', '6.850021', '47.40929'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'JARDINS DE LA LAVE', 'B088', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0353', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.850449', '47.409253'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'LA LAVE DESSUS', 'B090', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0447', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '21', '6.850018', '47.409501'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '5', '', 'RUE LOUIS PERGAUD', '0080', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0449', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '62', '4', 'S', 'sols', '', '', '797', '6.850239', '47.409329'], ['2019-73425', '2019-01-04', '000001', 'Vente', '106500', '3', '', 'RUE DES CHAMPS FESCHELINS', '0132', '25600', '25614', 'Vieux-Charmont', '25', '', '', '25614000AC0472', '', '', '17', '', '61', '', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '3', '', '', '', '', '', '6.83417', '47.52118'], ['2019-73426', '2019-01-10', '000001', 'Vente', '149000', '', '', 'LE VILLAGE', 'B102', '25190', '25503', 'Rosières-sur-Barbèche', '25', '', '', '255030000C0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '140', '6.66085', '47.317035'], ['2019-73426', '2019-01-10', '000001', 'Vente', '149000', '2', '', 'RUE DES TILLEULS', '0058', '25190', '25503', 'Rosières-sur-Barbèche', '25', '', '', '255030000C0319', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '5', 'J', 'jardins', '', '', '1239', '6.661003', '47.317272'], ['2019-73426', '2019-01-10', '000001', 'Vente', '149000', '2', '', 'RUE DES TILLEULS', '0058', '25190', '25503', 'Rosières-sur-Barbèche', '25', '', '', '255030000C0319', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '5', 'S', 'sols', '', '', '301', '6.661003', '47.317272'], ['2019-73427', '2019-01-23', '000001', 'Vente', '167050', '29', '', 'RUE DE MONTBELIARD', '0040', '25550', '25207', 'Dung', '25', '', '', '25207000AB0098', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '97', '7', 'S', 'sols', '', '', '477', '6.754559', '47.506776'], ['2019-73427', '2019-01-23', '000001', 'Vente', '167050', '29', '', 'RUE DE MONTBELIARD', '0040', '25550', '25207', 'Dung', '25', '', '', '25207000AB0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '137', '6.754684', '47.506826'], ['2019-73428', '2019-01-29', '000001', 'Vente', '81150', '25', '', 'RUE SAINT GEORGES', '1690', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0200', '', '', '11', '', '52', '', '64', '', '', '', '', '', '3', '2', 'Appartement', '57', '2', '', '', '', '', '', '6.789117', '47.50932'], ['2019-73429', '2019-01-08', '000001', 'Vente', '63000', '76', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AK0064', '', '', '121', '62.55', '131', '', '141', '', '', '', '', '', '3', '2', 'Appartement', '61', '4', '', '', '', '', '', '6.786523', '47.513927'], ['2019-73429', '2019-01-08', '000001', 'Vente', '63000', '76', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AK0064', '', '', '160', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.786523', '47.513927'], ['2019-73430', '2019-01-23', '000001', 'Vente', '39500', '1', 'B', 'RUE GRANDE', '0035', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AC0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '123', '7', 'S', 'sols', '', '', '760', '6.700499', '47.255733'], ['2019-73431', '2019-01-21', '000001', 'Vente', '10000', '18', 'B', 'RUE DE LA VIE', '0170', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '255240000E0942', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '80', '2', 'S', 'sols', '', '', '226', '6.643744', '47.440956'], ['2019-73431', '2019-01-21', '000001', 'Vente', '10000', '', '', 'SAINT MAURICE ECHELOTTE', 'B159', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '255240000E0943', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '50', '6.643887', '47.440932'], ['2019-73432', '2019-01-17', '000001', 'Vente', '99000', '5100', '', 'A MOULIN DU PLAIN', 'B222', '25470', '25314', 'Indevillers', '25', '', '', '253140000F0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '50', '3', 'S', 'sols', '', '', '360', '6.95336', '47.293638'], ['2019-73432', '2019-01-17', '000001', 'Vente', '99000', '', '', 'A MOULIN DU PLAIN', 'B222', '25470', '25314', 'Indevillers', '25', '', '', '253140000F0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '355', '6.953351', '47.293605'], ['2019-73432', '2019-01-17', '000001', 'Vente', '99000', '', '', 'A MOULIN DU PLAIN', 'B222', '25470', '25314', 'Indevillers', '25', '', '', '253140000F0160', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '68', '6.953576', '47.293463'], ['2019-73433', '2019-01-21', '000001', 'Vente', '17000', '2', '', 'ALL AUGUSTE POINTELIN', '0110', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0217', '', '', '27', '', '40', '67.69', '', '', '', '', '', '', '2', '2', 'Appartement', '73', '4', '', '', '', '', '', '6.828315', '47.478265'], ['2019-73434', '2019-02-07', '000001', 'Vente', '156750', '8', '', 'RUE DE LA CRAIE', '0013', '25470', '25174', 'Courtefontaine', '25', '', '', '251740000C0373', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '77', '5', 'S', 'sols', '', '', '1184', '6.904052', '47.320012'], ['2019-73435', '2019-02-08', '000001', 'Vente', '70000', '7', 'B', 'RUE DE LA COMBE GUENOT', '0130', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AL0463', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '71', '3', 'S', 'sols', '', '', '464', '6.871352', '47.460158'], ['2019-73436', '2019-01-29', '000001', 'Vente', '130450', '23', '', 'RUE DES CAMPENOTTES', '0140', '25550', '25048', 'Bavans', '25', '', '', '25048000AE0447', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '3', 'S', 'sols', '', '', '500', '6.736101', '47.483851'], ['2019-73436', '2019-01-29', '000001', 'Vente', '130450', '23', '', 'RUE DES CAMPENOTTES', '0140', '25550', '25048', 'Bavans', '25', '', '', '25048000AE0447', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '3', 'J', 'jardins', 'MARAI', 'Pré marais', '758', '6.736101', '47.483851'], ['2019-73437', '2019-02-01', '000001', 'Vente', '700', '', '', 'DERRIERE LE FOUR', 'B036', '25150', '25214', 'Écot', '25', '', '', '25214000ZC0194', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2805', '6.726657', '47.42824'], ['2019-73438', '2019-02-13', '000001', 'Vente', '2000', '1214', '', 'CHAMPS DES GRAVIERS', 'B026', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '25524158ZO0083', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '20', '1', 'S', 'sols', '', '', '430', '6.627874', '47.44514'], ['2019-73439', '2019-02-01', '000001', 'Vente', '235400', '5', '', 'RUE DE PARIS', '0738', '25120', '25356', 'Maîche', '25', '', '', '25356000ZI0125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '169', '6.813686', '47.248132'], ['2019-73439', '2019-02-01', '000001', 'Vente', '235400', '5', '', 'RUE DE PARIS', '0738', '25120', '25356', 'Maîche', '25', '', '', '25356000ZI0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '4', 'S', 'sols', '', '', '281', '6.813861', '47.248191'], ['2019-73440', '2019-02-08', '000001', 'Vente', '65000', '', '', 'AU VILLAGE', 'B140', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '348', '6.687841', '47.469515'], ['2019-73440', '2019-02-08', '000001', 'Vente', '65000', '', '', 'AU VILLAGE', 'B140', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0153', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '264', '6.68787', '47.469608'], ['2019-73440', '2019-02-08', '000001', 'Vente', '65000', '3', '', 'RUE DE LA ROCHETTE', '0240', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0547', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '132', '5', 'S', 'sols', '', '', '347', '6.687591', '47.469412'], ['2019-73441', '2019-02-22', '000001', 'Vente', '163500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '84', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73441', '2019-02-22', '000001', 'Vente', '163500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '133', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73441', '2019-02-22', '000001', 'Vente', '163500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '48', '', '72', '', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73442', '2019-02-08', '000001', 'Vente', '142300', '8', 'A', 'RUE GRANDE', '0036', '25150', '25216', 'Écurcey', '25', '', '', '25216000AH0021', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '948', '6.791741', '47.386595'], ['2019-73442', '2019-02-08', '000001', 'Vente', '142300', '', '', 'SOUS LA COTE', 'B096', '25150', '25216', 'Écurcey', '25', '', '', '25216000AH0219', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '97', '6.791495', '47.386394'], ['2019-73442', '2019-02-08', '000001', 'Vente', '142300', '10', '', 'RUE GRANDE', '0036', '25150', '25216', 'Écurcey', '25', '', '', '25216000AH0322', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '703', '6.791942', '47.386621'], ['2019-73443', '2019-02-25', '000001', 'Vente', '27650', '17', '', 'RUE HELENE BOUCHER', '0935', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BO0026', '', '', '4', '', '79', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.791772', '47.499209'], ['2019-73444', '2019-01-24', '000001', 'Vente', '170000', '39', '', 'RUE DES BARRES', '0130', '25700', '25580', 'Valentigney', '25', '', '', '25580000BR0460', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '416', '6.825147', '47.462794'], ['2019-73444', '2019-01-24', '000001', 'Vente', '170000', '39', 'B', 'RUE DES BARRES', '0130', '25700', '25580', 'Valentigney', '25', '', '', '25580000BR0462', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '93', '4', 'S', 'sols', '', '', '254', '6.825513', '47.462707'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0603', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '12', '6.854434', '47.476024'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0607', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '728', '6.854249', '47.475778'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0612', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '23', '6.853982', '47.475863'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0615', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.854095', '47.475643'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0616', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '32', '6.854073', '47.475562'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0618', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '6', '6.853975', '47.475639'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '13', 'D', 'RUE MARCEL PAUL', '0603', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0620', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '5', 'S', 'sols', '', '', '395', '6.853977', '47.475506'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0641', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '54', '6.853852', '47.475464'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '1', '', 'GR GRANDE RUE', '0375', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '986', '6.762696', '47.388278'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '1', '', 'GR GRANDE RUE', '0375', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '57', '3', 'S', 'sols', '', '', '986', '6.762696', '47.388278'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '1', '', 'GR GRANDE RUE', '0375', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '3', 'S', 'sols', '', '', '986', '6.762696', '47.388278'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '', '', 'LES PRES DE LA CRAYE', 'B101', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0002', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '827', '6.762286', '47.38843'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'LES GRANDES PRENES', 'B145', '25350', '25367', 'Mandeure', '25', '', '', '25367000AX0188', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '683', '6.803319', '47.446327'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'LES GRANDES PRENES', 'B145', '25350', '25367', 'Mandeure', '25', '', '', '25367000AX0190', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '377', '6.803463', '47.446443'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'CHAMPS DE LA CHAPELLE', 'B026', '25350', '25367', 'Mandeure', '25', '', '', '25367000ZB0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '340', '6.833001', '47.439732'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'AUX ARGELIERES', 'B004', '25350', '25367', 'Mandeure', '25', '', '', '25367000ZE0056', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '840', '6.812132', '47.439382'], ['2019-73448', '2019-03-04', '000001', 'Vente', '163170', '1', '', 'RUE DE FESCHES LE CHATEL', '0280', '25460', '25228', 'Étupes', '25', '', '', '25228000AB0637', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '129', '3', '', '', '', '', '', '6.861385', '47.507296'], ['2019-73448', '2019-03-04', '000001', 'Vente', '163170', '1', '1', 'RUE DE FESCHES LE CHATEL', '0280', '25460', '25228', 'Étupes', '25', '', '', '25228000AB1004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '28', '6.861491', '47.507157'], ['2019-73449', '2019-02-28', '000001', 'Vente', '148000', '3', 'B', 'RUE DES PRES', '0790', '25400', '25031', 'Audincourt', '25', '', '', '25031000AI0220', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'S', 'sols', '', '', '735', '6.842372', '47.483065'], ['2019-73450', '2019-02-13', '000001', 'Vente', '144000', '', '', 'LE GRAND CROT', 'B053', '25140', '25127', 'Charquemont', '25', '', '', '25127000AN0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '2046', '6.823115', '47.203517'], ['2019-73450', '2019-02-13', '000001', 'Vente', '144000', '', '', 'LE GRAND CROT', 'B053', '25140', '25127', 'Charquemont', '25', '', '', '25127000AN0062', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '9954', '6.823396', '47.203042'], ['2019-73451', '2019-02-20', '000001', 'Vente', '123000', '16', '', 'RUE SUR LA TOUR', '0580', '25600', '25428', 'Nommay', '25', '', '', '25428000AC0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '5', 'S', 'sols', '', '', '830', '6.845796', '47.538402'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '14', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '19', '1', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '29', '1', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73453', '2019-03-01', '000001', 'Vente', '38000', '16', '', 'RUE D ETUPES', '0200', '25490', '25190', 'Dampierre-les-Bois', '25', '', '', '25190000AE0063', '', '', '2', '', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '37', '2', '', '', '', '', '', '6.909656', '47.508469'], ['2019-73454', '2019-02-22', '000001', 'Vente', '2300', '', '', 'SOUS LE TAILLIS', 'B041', '25470', '25559', 'Thiébouhans', '25', '', '', '25559000AC0183', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4920', '6.851865', '47.277288'], ['2019-73454', '2019-02-22', '000001', 'Vente', '2300', '', '', 'SOUS LE TAILLIS', 'B041', '25470', '25559', 'Thiébouhans', '25', '', '', '25559000AC0183', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2460', '6.851865', '47.277288'], ['2019-73455', '2019-02-20', '000001', 'Vente', '1457', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0389', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '67', '6.825016', '47.466909'], ['2019-73455', '2019-02-20', '000001', 'Vente', '1457', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0399', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '218', '6.824632', '47.466315'], ['2019-73455', '2019-02-20', '000001', 'Vente', '1457', '', '', 'AUX COURBES COMBES', 'B025', '25700', '25580', 'Valentigney', '25', '', '', '25580000AT0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1172', '6.822312', '47.454046'], ['2019-73456', '2019-02-20', '000001', 'Vente', '720', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0371', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '320', '6.825135', '47.466509'], ['2019-73456', '2019-02-20', '000001', 'Vente', '720', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0372', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '400', '6.825936', '47.466356'], ['2019-73457', '2019-03-12', '000001', 'Vente', '20500', '34', '', 'RUE DU PETIT CHENOIS', '1420', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BP0008', '', '', '37', '', '95', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.799196', '47.501838'], ['2019-73458', '2019-02-18', '000001', 'Vente', '127500', '13', '', 'PL DE L HOTEL DE VILLE', '0360', '25140', '25127', 'Charquemont', '25', '', '', '25127000AE0182', '', '', '23', '88.45', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.823789', '47.212855'], ['2019-73459', '2019-02-18', '000001', 'Vente', '217483', '6', '', 'RUE DE CHAMESOL', '0020', '25190', '25393', 'Montécheroux', '25', '', '', '253930000D0414', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '272', '6.809163', '47.349334'], ['2019-73459', '2019-02-18', '000001', 'Vente', '217483', '', '', 'AUX QUEMENES', 'B132', '25190', '25393', 'Montécheroux', '25', '', '', '253930000D0417', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '500', '6.809501', '47.349079'], ['2019-73459', '2019-02-18', '000001', 'Vente', '217483', '', '', 'AUX QUEMENES', 'B132', '25190', '25393', 'Montécheroux', '25', '', '', '253930000D0417', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '1265', '6.809501', '47.349079'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '23', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '64', '3', 'VE', 'vergers', '', '', '550', '6.865479', '47.46168'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '23', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '64', '3', 'S', 'sols', '', '', '219', '6.865479', '47.46168'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '252', '6.865369', '47.461722'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.865369', '47.461722'], ['2019-73461', '2019-03-07', '000001', 'Vente', '32000', '', '', 'LES CORBIERES', 'B038', '25210', '25456', 'Plaimbois-du-Miroir', '25', '', '', '254560000B0121', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '20034', '6.611668', '47.191918'], ['2019-73462', '2019-03-06', '000001', 'Vente', '4700', '', '', 'PRE MILIERE', 'B045', '25450', '25193', 'Damprichard', '25', '', '', '251930000E0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '6400', '6.889994', '47.242137'], ['2019-73463', '2019-02-23', '000001', 'Vente', '97000', '33', '', 'GR GRANDE RUE', '0325', '25600', '25428', 'Nommay', '25', '', '', '25428000AB0229', '', '', '11', '', '15', '', '3', '102.39', '7', '', '', '', '4', '2', 'Appartement', '100', '4', '', '', '', '', '', '6.845789', '47.535874'], ['2019-73464', '2019-02-21', '000001', 'Vente', '63200', '8', '', 'RUE PARMENTIER', '1370', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0360', '', '', '178', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.793335', '47.515027'], ['2019-73464', '2019-02-21', '000001', 'Vente', '63200', '8', '', 'RUE PARMENTIER', '1370', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0360', '', '', '59', '', '88', '66.59', '', '', '', '', '', '', '2', '2', 'Appartement', '67', '3', '', '', '', '', '', '6.793335', '47.515027'], ['2019-73465', '2019-02-26', '000001', 'Vente', '5000', '', '', 'PRES DES BERTOTTES', 'B082', '25150', '25214', 'Écot', '25', '', '', '252140000C1247', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '3163', '6.719456', '47.421382'], ['2019-73465', '2019-02-26', '000001', 'Vente', '5000', '', '', 'PRES DES BERTOTTES', 'B082', '25150', '25214', 'Écot', '25', '', '', '252140000C1273', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '2450', '6.718338', '47.421039'], ['2019-73465', '2019-02-26', '000001', 'Vente', '5000', '', '', 'EN COURCELOTTE', 'B034', '25150', '25214', 'Écot', '25', '', '', '252140000C1330', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '9021', '6.718707', '47.412821'], ['2019-73466', '2019-02-20', '000002', 'Vente', '41500', '', '', 'VERS LES VIGNES', 'B101', '25150', '25033', 'Autechaux-Roide', '25', '', '', '25033000AD0170', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '1179', '6.818261', '47.394082'], ['2019-73466', '2019-02-20', '000002', 'Vente', '41500', '', '', 'VERS LES VIGNES', 'B101', '25150', '25033', 'Autechaux-Roide', '25', '', '', '25033000AD0173', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '21', '6.81794', '47.394001'], ['2019-73466', '2019-02-20', '000002', 'Vente', '41500', '', '', 'VERS LES VIGNES', 'B101', '25150', '25033', 'Autechaux-Roide', '25', '', '', '25033000AD0177', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2198', '6.818124', '47.39372'], ['2019-73467', '2019-02-20', '000001', 'Vente', '127000', '6', '', 'IMP DU PARC', '0252', '25350', '25367', 'Mandeure', '25', '', '', '25367000AI0020', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '141', '5', 'S', 'sols', '', '', '765', '6.827111', '47.444864'], ['2019-73468', '2019-03-12', '000002', 'Vente', '2000', '', '', 'BAS DE COMBOTTE', 'B004', '25550', '25048', 'Bavans', '25', '', '', '25048000AC0814', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '108', '6.722927', '47.481573'], ['2019-73469', '2019-02-23', '000001', 'Vente', '136000', '1', 'F', 'RUE DU CHENE', '0060', '25350', '25367', 'Mandeure', '25', '', '', '25367000AK0393', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '95', '5', 'S', 'sols', '', '', '437', '6.829488', '47.445854'], ['2019-73470', '2019-02-23', '000001', 'Vente', '106500', '11', '', 'RUE DES ETAINS', '0190', '25490', '25190', 'Dampierre-les-Bois', '25', '', '', '25190000AB0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '194', '0', 'S', 'sols', '', '', '1575', '6.921887', '47.515265'], ['2019-73471', '2019-02-21', '000001', 'Vente', '8176', '', '', 'AU VILLAGE', 'B046', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1022', '6.831887', '47.259459'], ['2019-73472', '2019-02-22', '000001', 'Vente', '34150', '13', '', 'RUE LOUIS PERGAUD', '0850', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0001', '', '', '54', '75.96', '64', '', '', '', '', '', '', '', '2', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.822739', '47.479904'], ['2019-73473', '2019-03-15', '000001', 'Vente terrain à bâtir', '74976', '11', '', 'RUE EMILE ISENBART', '0040', '25500', '25050', 'Le Bélieu', '25', '', '', '25050000AB0064', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '852', '6.627177', '47.119861'], ['2019-73474', '2019-03-02', '000001', 'Vente', '168000', '2', '', 'IMP DES CERISIERS', '0085', '25230', '25196', 'Dasle', '25', '', '', '251960000A0849', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '4', 'S', 'sols', '', '', '659', '6.904684', '47.481663'], ['2019-73475', '2019-03-14', '000001', 'Vente', '191700', '18', '', 'RUE DE NEUCHATEL URTIERE', '0628', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '254636030C0655', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '120', '6', 'S', 'sols', '', '', '925', '6.752065', '47.388362'], ['2019-73475', '2019-03-14', '000001', 'Vente', '191700', '', '', 'LES CABOULOTS', 'B061', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '254636030C0806', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '625', '6.752501', '47.388102'], ['2019-73476', '2019-02-28', '000001', 'Vente', '2000', '', '', 'LES COMBOLES', 'B052', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000A0457', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '5565', '6.85378', '47.413867'], ['2019-73476', '2019-02-28', '000001', 'Vente', '2000', '', '', 'LES COMBOLES', 'B052', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000A0457', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2782', '6.85378', '47.413867'], ['2019-73477', '2019-02-28', '000001', 'Vente', '169650', '21', '', 'RUE VICTOR HUGO', '0560', '25140', '25127', 'Charquemont', '25', '', '', '25127000AB0448', '', '', '4', '', '5', '', '6', '', '', '', '', '', '3', '2', 'Appartement', '128', '4', '', '', '', '', '', '6.816594', '47.217431'], ['2019-73477', '2019-02-28', '000001', 'Vente', '169650', '21', '', 'RUE VICTOR HUGO', '0560', '25140', '25127', 'Charquemont', '25', '', '', '25127000AB0448', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.816594', '47.217431'], ['2019-73478', '2019-02-27', '000001', 'Vente', '91000', '12', '', 'RUE DES CHARMES', '0013', '25450', '25193', 'Damprichard', '25', '', '', '25193000AC0200', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '3', 'S', 'sols', '', '', '709', '6.88196', '47.247548'], ['2019-73479', '2019-03-05', '000001', 'Vente', '125000', '11', '', 'RUE DU HAMEAU', '0028', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '5', 'S', 'sols', '', '', '1200', '6.715757', '47.237044'], ['2019-73479', '2019-03-05', '000001', 'Vente', '125000', '11', '', 'RUE DU HAMEAU', '0028', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '5', 'VE', 'vergers', '', '', '612', '6.715757', '47.237044'], ['2019-73480', '2019-02-28', '000001', 'Vente', '52000', '6', '', 'RUE DE SOCHAUX', '0470', '25200', '25284', 'Grand-Charmont', '25', '', '', '25284000AK0226', '', '', '42', '', '76', '93', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '5', '', '', '', '', '', '6.826235', '47.526026'], ['2019-73481', '2019-02-28', '000001', 'Vente', '105000', '32', '', 'RUE DE SAINTE MARIE', '0280', '25260', '25350', 'Lougres', '25', '', '', '25350000AC0265', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '57', '4', 'S', 'sols', '', '', '450', '6.688774', '47.474823'], ['2019-73481', '2019-02-28', '000001', 'Vente', '105000', '', '', 'LE CHESAL', 'B021', '25260', '25350', 'Lougres', '25', '', '', '25350000AC0368', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '381', '6.689017', '47.474931'], ['2019-73482', '2019-02-28', '000001', 'Vente', '127200', '', '', 'RUE ARRAS', '0050', '25400', '25031', 'Audincourt', '25', '', '', '25031000AT0591', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '2317', '6.846669', '47.473476'], ['2019-73483', '2019-02-27', '000001', 'Vente', '224900', '58', 'B', 'RUE DES SOURCES', '0745', '25600', '25614', 'Vieux-Charmont', '25', '', '', '25614000AD0397', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '120', '4', 'S', 'sols', '', '', '737', '6.83118', '47.525187'], ['2019-73484', '2019-02-27', '000001', 'Vente', '65990', '13', '', 'RUE DES GENTIANES', '0615', '25700', '25580', 'Valentigney', '25', '', '', '25580000BE0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '59', '3', 'S', 'sols', '', '', '131', '6.835393', '47.474927'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '', '', 'LES CHENEVIERES DESSOUS', 'B024', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0383', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30', '6.895883', '47.522793'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '14', '', 'RUE LOUIS DORMOY', '0280', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0653', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '4', 'S', 'sols', '', '', '617', '6.89609', '47.522798'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '', '', 'LES CHENEVIERES DESSOUS', 'B024', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0764', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '126', '6.895974', '47.522873'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '', '', 'LES CHENEVIERES DESSOUS', 'B024', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0766', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '62', '6.895905', '47.522849'], ['2019-73486', '2019-03-15', '000001', 'Vente', '28000', '34', '', 'RUE DU PETIT CHENOIS', '1420', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BP0008', '', '', '113', '', '55', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.799196', '47.501838'], ['2019-73487', '2019-02-27', '000001', 'Vente', '17500', '25', '', 'RUE LOUIS PERGAUD', '0850', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0001', '', '', '195', '64.03', '213', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.822739', '47.479904'], ['2019-73488', '2019-03-01', '000001', 'Vente', '103000', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '102', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73488', '2019-03-01', '000001', 'Vente', '103000', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '64', '61.53', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '61', '3', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73489', '2019-03-06', '000001', 'Vente', '80500', '5017', '', 'LE HAMEAU DE CHAUVILLIERS', 'B197', '25470', '25314', 'Indevillers', '25', '', '', '25314000ZC0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '180', '5', 'T', 'terres', '', '', '1280', '6.978547', '47.323685'], ['2019-73489', '2019-03-06', '000001', 'Vente', '80500', '5017', '', 'LE HAMEAU DE CHAUVILLIERS', 'B197', '25470', '25314', 'Indevillers', '25', '', '', '25314000ZC0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '180', '5', 'S', 'sols', '', '', '940', '6.978547', '47.323685'], ['2019-73490', '2019-03-13', '000001', 'Vente', '210000', '5001', '', 'RUE DU CHATEAU', '0013', '25470', '25314', 'Indevillers', '25', '', '', '25314000ZI0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '160', '5', 'S', 'sols', '', '', '766', '6.953893', '47.312228'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '80', '3', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '160', '1', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '100', '1', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '100', '1', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '88', '1', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '88', '1', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '80', '3', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '160', '1', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0299', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '83', '6.807246', '47.492265'], ['2019-73492', '2019-03-28', '000001', 'Vente', '11000', '18', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0134', '', '', '132', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.798026', '47.51193'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0131', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1665', '6.944795', '47.260312'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0132', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '2162', '6.945362', '47.260244'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0133', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '562', '6.945238', '47.260468'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0134', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1035', '6.945647', '47.260526'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0135', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1325', '6.945697', '47.261102'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '1', '', 'RTE DE LA CORNICHE', '0022', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '830', '0', 'S', 'sols', '', '', '1730', '6.94522', '47.260661'], ['2019-73494', '2019-03-08', '000001', 'Vente', '189950', '2', 'E', 'IMP DE BONDEVAL', '0089', '25400', '25031', 'Audincourt', '25', '', '', '25031000AW0254', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '502', '6.842606', '47.470807'], ['2019-73494', '2019-03-08', '000001', 'Vente', '189950', '', '', 'RUE DE BONDEVAL', '0090', '25400', '25031', 'Audincourt', '25', '', '', '25031000AW0255', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '81', '6.842346', '47.470926'], ['2019-73495', '2019-03-11', '000001', 'Vente', '1480', '', '', 'AU VILLAGE', 'B134', '25490', '25011', 'Allenjoie', '25', '', '', '25011000AB0689', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '21', '6.897299', '47.534947'], ['2019-73495', '2019-03-11', '000001', 'Vente', '1480', '', '', 'AU VILLAGE', 'B134', '25490', '25011', 'Allenjoie', '25', '', '', '25011000AB0690', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '16', '6.897427', '47.5351'], ['2019-73496', '2019-03-22', '000001', 'Vente', '97000', '20', '', 'PL DES COMBES ST GERMAIN', '0420', '25700', '25580', 'Valentigney', '25', '', '', '25580000AR0128', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '91', '5', 'S', 'sols', '', '', '658', '6.828244', '47.450207'], ['2019-73497', '2019-03-27', '000002', 'Vente', '6440', '', '', 'LES COURBIERES', 'B106', '25350', '25367', 'Mandeure', '25', '', '', '25367000AI0518', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '322', '6.823963', '47.443395'], ['2019-73498', '2019-03-26', '000001', 'Vente', '4092', '', '', 'LES PIGUESSES', 'B069', '25150', '25082', 'Bourguignon', '25', '', '', '250820000A1172', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '62', '6.784826', '47.415588'], ['2019-73499', '2019-03-11', '000001', 'Vente', '119050', '12', 'B', 'AV CARNOT', '0220', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BV0101', '', '', '1', '', '12', '98.51', '14', '', '4', '', '', '', '4', '2', 'Appartement', '101', '2', '', '', '', '', '', '6.803014', '47.508056'], ['2019-73500', '2019-03-11', '000001', 'Vente', '134062', '', '', 'LES CHAMPS DES POMMEROTS', 'B026', '25310', '25063', 'Blamont', '25', '', '', '250630000D0552', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '10', '6.847398', '47.384516'], ['2019-73500', '2019-03-11', '000001', 'Vente', '134062', '12', '', 'IMP DES VIOLETTES', '0260', '25310', '25063', 'Blamont', '25', '', '', '250630000D0556', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '91', '3', 'S', 'sols', '', '', '812', '6.846302', '47.383895'], ['2019-73500', '2019-03-11', '000001', 'Vente', '134062', '', '', 'LES CHAMPS DES POMMEROTS', 'B026', '25310', '25063', 'Blamont', '25', '', '', '250630000D0560', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1303', '6.846617', '47.384299'], ['2019-73501', '2019-03-30', '000001', 'Vente', '182000', '6', '', 'CHE DE LA MUNIERE', '0100', '25310', '25562', 'Thulay', '25', '', '', '255620000A0489', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '112', '3', 'S', 'sols', '', '', '922', '6.865061', '47.427333'], ['2019-73501', '2019-03-30', '000001', 'Vente', '182000', '', '', 'ESPRIT', 'B019', '25310', '25562', 'Thulay', '25', '', '', '255620000A0492', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '657', '6.865065', '47.427233'], ['2019-73502', '2019-04-04', '000001', 'Vente', '800', '', '', 'LE VILLAGE', 'B114', '25700', '25370', 'Mathay', '25', '', '', '25370000AH0246', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1219', '6.78711', '47.437692'], ['2019-73502', '2019-04-04', '000001', 'Vente', '800', '', '', 'LES PARTS D HIRMONT DE CA', 'B075', '25700', '25370', 'Mathay', '25', '', '', '253700000F1018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '682', '6.773962', '47.454456'], ['2019-73503', '2019-04-04', '000001', 'Vente', '75000', '', '', 'RUE DE MONTBOUTON', '0280', '25230', '25196', 'Dasle', '25', '', '', '25196000AB0646', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", 'PARC', 'Parc', '1175', '6.900057', '47.478136'], ['2019-73503', '2019-04-04', '000001', 'Vente', '75000', '', '', 'CHAMP DUVOID', 'B007', '25230', '25196', 'Dasle', '25', '', '', '25196000AB0724', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '594', '6.899405', '47.478168'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'AUX BERCAMES', 'B003', '25600', '25188', 'Dambenois', '25', '', '', '25188000AA0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '6486', '6.873382', '47.543749'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'ES PONSSOTS', 'B047', '25600', '25188', 'Dambenois', '25', '', '', '25188000AB0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2130', '6.870802', '47.541377'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'LES VIGNES', 'B092', '25600', '25188', 'Dambenois', '25', '', '', '25188000AI0011', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '815', '6.871429', '47.547449'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'LES CHAMPS AUX MALES', 'B020', '25600', '25188', 'Dambenois', '25', '', '', '25188000AI0016', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3054', '6.873426', '47.548179'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'LES COMBOTTES', 'B035', '25600', '25188', 'Dambenois', '25', '', '', '25188000AI0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '5760', '6.874776', '47.546606'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'ES GRANDES BOULOYES', 'B046', '25600', '25188', 'Dambenois', '25', '', '', '25188000AM0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3025', '6.869447', '47.539096'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'COMBE JEAN L OYON', 'B033', '25600', '25188', 'Dambenois', '25', '', '', '25188000AM0135', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '608', '6.868485', '47.538046'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'COMBE JEAN L OYON', 'B033', '25600', '25188', 'Dambenois', '25', '', '', '25188000AM0137', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '577', '6.867734', '47.53804'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'AUX LONGUES RAIES', 'B061', '25600', '25188', 'Dambenois', '25', '', '', '25188000XX0012', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '130', '', ''], ['2019-73505', '2019-04-15', '000001', 'Vente', '242000', '6', '', 'RUE DES FRENES', '0025', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0287', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '911', '6.832253', '47.255727'], ['2019-73505', '2019-04-15', '000001', 'Vente', '242000', '6', '', 'RUE DES FRENES', '0025', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0305', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '55', '6.832178', '47.255869'], ['2019-73506', '2019-03-26', '000001', 'Vente', '129000', '6', '', 'RUE DE L ABATTOIR', '0010', '25700', '25580', 'Valentigney', '25', '', '', '25580000BI0075', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '5', 'S', 'sols', '', '', '505', '6.839738', '47.46665'], ['2019-73507', '2019-04-04', '000001', 'Vente', '142950', '7', '', 'RUE DES COURTS CHAMPS', '0180', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AB0940', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '113', '6', 'S', 'sols', '', '', '314', '6.879393', '47.446904'], ['2019-73508', '2019-03-28', '000002', 'Vente', '7890.4', '', '', 'RUE DE CHAMPS VALLON', '0110', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AE0147', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '48', '6.81072', '47.538997'], ['2019-73508', '2019-03-28', '000002', 'Vente', '7890.4', '', '', 'RUE DE CHAMPS VALLON', '0110', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AI0216', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '38', '6.804218', '47.537199'], ['2019-73508', '2019-03-28', '000002', 'Vente', '7890.4', '', '', 'PL CUVIER', '0190', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AI0218', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '245', '6.804145', '47.53456'], ['2019-73509', '2019-03-28', '000001', 'Vente', '45000', '11', '', 'RUE MOZART', '1345', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BP0112', '', '', '141', '', '150', '60', '', '', '', '', '', '', '2', '2', 'Appartement', '79', '4', '', '', '', '', '', '6.798406', '47.500672'], ['2019-73510', '2019-04-13', '000001', 'Vente', '52250', '64', '', 'GR GRANDE RUE', '0620', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BD0024', '', '', '19', '', '32', '', '', '', '', '', '', '', '2', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.771896', '47.473962'], ['2019-73510', '2019-04-13', '000001', 'Vente', '52250', '64', '', 'GR GRANDE RUE', '0620', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BD0024', '', '', '15', '', '19', '', '4', '', '', '', '', '', '3', '2', 'Appartement', '68', '3', '', '', '', '', '', '6.771896', '47.473962'], ['2019-73511', '2019-04-15', '000001', 'Vente', '30000', '21', '', 'RUE DU PETIT CHENOIS', '1420', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BR0057', '', '', '33', '', '48', '76.87', '', '', '', '', '', '', '2', '2', 'Appartement', '77', '4', '', '', '', '', '', '6.797019', '47.501534'], ['2019-73512', '2019-04-16', '000001', 'Vente', '136000', '11', '', 'GR GRANDE RUE', '0120', '25400', '25555', 'Taillecourt', '25', '', '', '25555000AH0082', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '110', '5', 'S', 'sols', '', '', '939', '6.846421', '47.496347'], ['2019-73513', '2019-04-04', '000002', 'Vente', '22620', '', '', 'LE CRANTOT DES VUILLEMENOT', 'B087', '25210', '25074', 'Bonnétage', '25', '', '', '25074000AE0185', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '377', '6.717166', '47.182875'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LE CRANTOT DES VUILLEMENOT', 'B087', '25210', '25074', 'Bonnétage', '25', '', '', '25074000AE0185', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '377', '6.717166', '47.182875'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '25902', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '25902', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '25902', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'PIN', 'Pins', '24879', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30718', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30718', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'PIN', 'Pins', '10136', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30719', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0794', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '294', '6.716944', '47.182867'], ['2019-73514', '2019-04-02', '000001', 'Vente', '35000', '12', '', 'RUE DU STADE', '0330', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0099', '', '', '2', '', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '52', '2', '', '', '', '', '', '6.808901', '47.488554'], ['2019-73515', '2019-04-02', '000001', 'Vente', '15000', '10', '', 'RUE DU STADE', '0330', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0100', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '466', '6.809074', '47.488497'], ['2019-73516', '2019-04-12', '000001', 'Vente', '30000', '31', '', 'RUE DE ST HIPPOLYTE', '0180', '25190', '25393', 'Montécheroux', '25', '', '', '253930000B0503', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '4', 'S', 'sols', '', '', '2025', '6.808748', '47.347671'], ['2019-73516', '2019-04-12', '000001', 'Vente', '30000', '', '', 'SOUS LA VIE DE CHAMESOL', 'B143', '25190', '25393', 'Montécheroux', '25', '', '', '25393000ZC0121', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '70', '6.808941', '47.347952'], ['2019-73517', '2019-04-19', '000001', 'Vente', '161700', '3', '', 'IMP DU BOIS NOUVEAU', '0083', '25400', '25031', 'Audincourt', '25', '', '', '25031000AL0151', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '72', '3', 'S', 'sols', '', '', '513', '6.848551', '47.490265'], ['2019-73518', '2019-04-25', '000001', 'Vente', '175000', '63', '', 'RUE DE GLAY', '0290', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AH0228', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'S', 'sols', '', '', '734', '6.883591', '47.429131'], ['2019-73519', '2019-05-06', '000001', 'Vente', '80000', '31', '', 'RUE DU MARECHAL LECLERC', '0120', '25450', '25193', 'Damprichard', '25', '', '', '25193000AE0080', '', '', '19', '57.78', '20', '', '21', '', '24', '', '', '', '4', '2', 'Appartement', '50', '4', '', '', '', '', '', '6.87933', '47.241583'], ['2019-73519', '2019-05-06', '000001', 'Vente', '80000', '31', '', 'RUE DU MARECHAL LECLERC', '0120', '25450', '25193', 'Damprichard', '25', '', '', '25193000AE0080', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.87933', '47.241583'], ['2019-73519', '2019-05-06', '000001', 'Vente', '80000', '', '', 'RUE DU MARECHAL LECLERC', '0120', '25450', '25193', 'Damprichard', '25', '', '', '25193000AE0080', '', '', '23', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', 'S', 'sols', '', '', '45', '6.87933', '47.241583'], ['2019-73520', '2019-05-06', '000001', 'Vente', '198', '', '', 'SUR LA COTE', 'B018', '25470', '25238', 'Fessevillers', '25', '', '', '25238000AB0080', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '33', '6.912824', '47.280116'], ['2019-73521', '2019-04-25', '000001', 'Vente', '165200', '15', '', 'LE MOUCHOT ET LA PALE', 'B038', '25750', '25008', 'Aibre', '25', '', '', '25008000ZA0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '175', '8', 'S', 'sols', '', '', '771', '6.69568', '47.55306'], ['2019-73521', '2019-04-25', '000001', 'Vente', '165200', '', '', 'LE MOUCHOT ET LA PALE', 'B038', '25750', '25008', 'Aibre', '25', '', '', '25008000ZA0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '966', '6.695923', '47.552988'], ['2019-73522', '2019-05-06', '000001', 'Vente', '130000', '2', '', 'RUE CUVIER', '0106', '25140', '25127', 'Charquemont', '25', '', '', '25127000AC0035', '', '', '35', '', '9', '', '', '', '', '', '', '', '2', '2', 'Appartement', '88', '3', '', '', '', '', '', '6.822577', '47.214035'], ['2019-73523', '2019-04-30', '000001', 'Vente', '27000', '5', '', 'RUE DE LA CITADELLE', '0440', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0155', '', '', '7', '', '9', '16.6', '', '', '', '', '', '', '2', '2', 'Appartement', '16', '1', '', '', '', '', '', '6.791255', '47.510301'], ['2019-73524', '2019-04-19', '000001', 'Vente', '91500', '2', '', 'RUE DU BREUIL', '0060', '25490', '25011', 'Allenjoie', '25', '', '', '250110000B0446', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '48', '2', 'S', 'sols', '', '', '513', '6.897446', '47.530793'], ['2019-73525', '2019-04-18', '000001', 'Vente', '84900', '', '', 'CHAMPS MONTANTS', 'B006', '25420', '25170', 'Courcelles-lès-Montbéliard', '25', '', '', '25170000AB0535', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '831', '6.779124', '47.503048'], ['2019-73526', '2019-05-03', '000001', 'Vente', '348000', '', '', 'VERGERS ENTRE LES DEUX BRO', 'B088', '25600', '25097', 'Brognard', '25', '', '', '25097000AI0180', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '71', '6.867196', '47.528837'], ['2019-73526', '2019-05-03', '000001', 'Vente', '348000', '10', '', 'RUE DES NOISETIERS', '0049', '25600', '25097', 'Brognard', '25', '', '', '25097000AI0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '139', '4', 'S', 'sols', '', '', '213', '6.867229', '47.528776'], ['2019-73526', '2019-05-03', '000001', 'Vente', '348000', '10', '', 'RUE DES NOISETIERS', '0049', '25600', '25097', 'Brognard', '25', '', '', '25097000AI0194', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '221', '6.867337', '47.528709'], ['2019-73527', '2019-04-19', '000001', 'Vente', '136000', '4', '', 'RUE DES ESSARTS', '0200', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AL0243', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '359', '6.874663', '47.453324'], ['2019-73527', '2019-04-19', '000001', 'Vente', '136000', '', '', 'COTEAU DE BERNE', 'B048', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AL0569', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '90', '6.87486', '47.453368'], ['2019-73528', '2019-04-19', '000001', 'Vente', '18000', '15', '', 'RUE LOUIS PERGAUD', '0850', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0001', '', '', '60', '65.69', '77', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.822739', '47.479904'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'RUE DES VIGNES', '1500', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0279', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '184', '6.835651', '47.499451'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'RUE DES VIGNES', '1500', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '6', 'S', 'sols', '', '', '327', '6.835553', '47.499412'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'LES CHENEES', 'B020', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0402', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '49', '6.835657', '47.499608'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'RUE DES VIGNES', '1500', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0404', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '71', '6.835524', '47.499605'], ['2019-73530', '2019-04-18', '000001', 'Vente', '78000', '7', '', 'RUE DE L YSER', '1060', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0359', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '61', '3', 'S', 'sols', '', '', '133', '6.845089', '47.477098'], ['2019-73530', '2019-04-18', '000001', 'Vente', '78000', '9', '', 'RUE DE L YSER', '1060', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0657', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '71', '6.845149', '47.477032'], ['2019-73531', '2019-04-25', '000001', 'Vente', '600', '', '', 'BRUYERES GRANDES PARTS', 'B019', '25550', '25048', 'Bavans', '25', '', '', '25048000AR0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '1718', '6.710698', '47.476874'], ['2019-73532', '2019-04-18', '000001', 'Vente', '124550', '43', '', 'RUE DE SELONCOURT', '0930', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0737', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '99', '4', 'S', 'sols', '', '', '225', '6.843529', '47.476326'], ['2019-73532', '2019-04-18', '000001', 'Vente', '124550', '43', '', 'RUE DE SELONCOURT', '0930', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0740', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '15', '6.843624', '47.476309'], ['2019-73533', '2019-04-26', '000001', 'Vente', '108500', '38', '', 'RUE DU VERNOIS', '1180', '25700', '25580', 'Valentigney', '25', '', '', '25580000BR0114', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '3', 'S', 'sols', '', '', '506', '6.831791', '47.460516'], ['2019-73534', '2019-04-16', '000001', 'Vente', '156400', '42', '', 'AV DES MELEZES', '0277', '25200', '25284', 'Grand-Charmont', '25', '', '', '25284000AT0103', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '579', '6.827085', '47.538779'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0586', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2514', '6.919854', '47.464068'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0587', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1237', '6.920561', '47.46437'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0588', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2259', '6.921259', '47.464421'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0596', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '910', '6.921511', '47.46361'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0597', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '4400', '6.920854', '47.46331'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0598', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2470', '6.921016', '47.46313'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'LES NEUFS PRES', 'B093', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000B0671', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2575', '6.924326', '47.450593'], ['2019-73536', '2019-04-18', '000001', 'Vente', '159000', '9', '', 'RUE DE VANDONCOURT', '0460', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AM1068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '136', '7', 'S', 'sols', '', '', '559', '6.884317', '47.441236'], ['2019-73537', '2019-04-29', '000001', 'Vente', '35000', '18', '', 'AV DU MARECHAL JOFFRE', '1250', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0165', '', '', '8', '', '9', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '74', '0', '', '', '', '', '', '6.805103', '47.510888'], ['2019-73538', '2019-04-26', '000001', 'Vente', '80000', '9', '', 'RUE VIETTE', '1200', '25700', '25580', 'Valentigney', '25', '', '', '25580000BK0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '66', '4', 'S', 'sols', '', '', '371', '6.834042', '47.461473'], ['2019-73539', '2019-05-13', '000001', 'Vente', '74000', '1', '', 'RUE DU CANAL', '0040', '25420', '25170', 'Courcelles-lès-Montbéliard', '25', '', '', '25170000AE0017', '', '', '3', '75.03', '4', '56.9', '', '', '', '', '', '', '2', '2', 'Appartement', '101', '4', '', '', '', '', '', '6.774951', '47.501783'], ['2019-73540', '2019-04-29', '000001', 'Vente', '15000', '', '', 'LE LAITEY', 'B063', '25210', '25351', 'Le Luhier', '25', '', '', '253510000A0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '17430', '6.702228', '47.172886'], ['2019-73541', '2019-05-15', '000001', 'Vente', '98500', '46', '', 'RUE DES SOURCES', '0745', '25600', '25614', 'Vieux-Charmont', '25', '', '', '25614000AD0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '5', 'J', 'jardins', '', '', '765', '6.832793', '47.524749'], ['2019-73542', '2019-05-24', '000001', 'Vente', '61000', '28', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0032', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '38', '2', '', '', '', '', '', '6.797759', '47.513379'], ['2019-73542', '2019-05-24', '000001', 'Vente', '61000', '28', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0032', '', '', '19', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.797759', '47.513379'], ['2019-73543', '2019-05-03', '000001', 'Vente', '41000', '90', '', 'GR GRANDE RUE', '0455', '25400', '25031', 'Audincourt', '25', '', '', '25031000AZ0174', '', '', '5', '', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '69', '3', '', '', '', '', '', '6.839953', '47.479828'], ['2019-73544', '2019-05-02', '000001', 'Vente', '15000', '9', '', 'RUE DES BRESSES', '0070', '25460', '25228', 'Étupes', '25', '', '', '25228000AD0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '40', '6.865374', '47.504337'], ['2019-73544', '2019-05-02', '000001', 'Vente', '15000', '9', '', 'RUE DES BRESSES', '0070', '25460', '25228', 'Étupes', '25', '', '', '25228000AD0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'VE', 'vergers', '', '', '345', '6.865374', '47.504337'], ['2019-73545', '2019-05-02', '000001', 'Vente', '46000', '42', '', 'RUE CLAUDE DEBUSSY', '0445', '25200', '25388', 'Montbéliard', '25', '', '', '25388000CL0052', '', '', '44', '79.07', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.795348', '47.49822'], ['2019-73546', '2019-04-30', '000001', 'Vente', '65000', '33', '', 'RUE DE LA COTE', '0170', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AM0241', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '127', '5', 'S', 'sols', '', '', '926', '6.87982', '47.441557'], ['2019-73546', '2019-04-30', '000001', 'Vente', '65000', '', '', 'LA COTE', 'B029', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AM0242', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1738', '6.87999', '47.441797'], ['2019-73547', '2019-05-28', '000001', 'Vente', '400000', '1', '', 'RUE GASTON PRETOT', '1556', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BI0268', '', '', '6', '213.08', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '213', '0', '', '', '', '', '', '6.813315', '47.498574'], ['2019-73548', '2019-05-29', '000001', 'Vente', '38000', '17', '', 'RUE HELENE BOUCHER', '0935', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BO0026', '', '', '131', '75.88', '56', '', '', '', '', '', '', '', '2', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.791772', '47.499209'], ['2019-73548', '2019-05-29', '000001', 'Vente', '38000', '17', '', 'RUE HELENE BOUCHER', '0935', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BO0026', '', '', '60', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.791772', '47.499209'], ['2019-73549', '2019-05-16', '000001', 'Vente', '55000', '18', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0134', '', '', '17', '', '63', '', '', '', '', '', '', '', '2', '2', 'Appartement', '94', '5', '', '', '', '', '', '6.798026', '47.51193'], ['2019-73549', '2019-05-16', '000001', 'Vente', '55000', '18', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0134', '', '', '208', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.798026', '47.51193'], ['2019-73550', '2019-05-24', '000001', "Vente en l'état futur d'achèvement", '195000', '3', '', 'RUE DU MONTANOT PROLONGEE', '0641', '25400', '25031', 'Audincourt', '25', '', '', '25031000AC0333', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '92', '4', 'S', 'sols', '', '', '708', '6.826166', '47.490939'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '25', '1', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '122', '5', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '25', '1', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '60', '2', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73552', '2019-06-05', '000001', 'Vente', '310000', '85', '1', 'GR GRANDE RUE', '0720', '25550', '25048', 'Bavans', '25', '', '', '25048000AK0387', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '640', '0', 'S', 'sols', '', '', '3212', '6.747077', '47.481604'], ['2019-73552', '2019-06-05', '000001', 'Vente', '310000', '85', '1', 'GR GRANDE RUE', '0720', '25550', '25048', 'Bavans', '25', '', '', '25048000AK0387', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '640', '0', 'T', 'terres', '', '', '2527', '6.747077', '47.481604'], ['2019-73553', '2019-05-29', '000001', 'Vente', '105000', '8', '', 'RUE VALENTINE BESSON', '0456', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AK0130', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '59', '3', 'S', 'sols', '', '', '736', '6.893024', '47.433489'], ['2019-73554', '2019-05-24', '000001', 'Vente', '233000', '1', 'B', 'RUE DE LA GARE', '0220', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AD0407', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '185', '6', 'S', 'sols', '', '', '471', '6.913728', '47.522379'], ['2019-73554', '2019-05-24', '000001', 'Vente', '233000', '', '', 'RUE DU HUIT MAI', '0243', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AD1121', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '97', '6.913563', '47.522288'], ['2019-73555', '2019-05-13', '000001', 'Vente', '29000', '45', '', 'RUE D AUDINCOURT', '0020', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0471', '', '', '199', '81.55', '209', '', '', '', '', '', '', '', '2', '2', 'Appartement', '84', '5', '', '', '', '', '', '6.853653', '47.465963'], ['2019-73556', '2019-06-05', '000001', 'Vente', '287000', '10', '', 'RUE PRINCIPALE', '0040', '25120', '25091', 'Les Bréseux', '25', '', '', '25091000AI0599', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '142', '5', 'S', 'sols', '', '', '502', '6.812906', '47.274377'], ['2019-73557', '2019-05-29', '000001', 'Vente', '177500', '1', 'B', 'RUE PAUL ELIE DUBOIS', '0140', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '255241580B0993', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '5', 'S', 'sols', '', '', '1000', '6.631317', '47.437162'], ['2019-73557', '2019-05-29', '000001', 'Vente', '177500', '', '', 'DERRIERE LA CHAFRERIE', 'B097', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '25524158ZM0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '320', '6.631643', '47.437216'], ['2019-73558', '2019-06-06', '000001', 'Vente', '55000', '', '', 'LE VILLAGE', 'B094', '25310', '25452', 'Pierrefontaine-lès-Blamont', '25', '', '', '254520000A0532', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '599', '6.841734', '47.375194'], ['2019-73558', '2019-06-06', '000001', 'Vente', '55000', '', '', 'LES COMBOTTES', 'B024', '25310', '25452', 'Pierrefontaine-lès-Blamont', '25', '', '', '25452000ZB0085', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '489', '6.841879', '47.37526'], ['2019-73559', '2019-06-03', '000001', 'Vente', '109800', '', '', 'MONT DE LA CHAPELLE', 'B071', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AC0009', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '704', '6.732579', '47.246082'], ['2019-73559', '2019-06-03', '000001', 'Vente', '109800', '', '', 'MONT DE LA CHAPELLE', 'B071', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AC0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1283', '6.732461', '47.246169'], ['2019-73559', '2019-06-03', '000001', 'Vente', '109800', '7', '', "RUE DE L'EGLISE", '0020', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AC0046', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '110', '2', 'S', 'sols', '', '', '596', '6.732681', '47.24602'], ['2019-73560', '2019-06-05', '000001', 'Vente', '3930', '', '', 'A COUR', 'B025', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AB0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1000', '6.703348', '47.261878'], ['2019-73560', '2019-06-05', '000001', 'Vente', '3930', '', '', 'A COUR', 'B025', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AB0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1342', '6.703348', '47.261878'], ['2019-73560', '2019-06-05', '000001', 'Vente', '3930', '', '', 'A COUR', 'B025', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AB0109', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '10758', '6.704307', '47.262313'], ['2019-73561', '2019-06-07', '000001', 'Vente', '138600', '40', '', 'RUE DES GRANDS CHAMPS', '0140', '25260', '25224', 'Étouvans', '25', '', '', '252240000A0639', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '3', 'S', 'sols', '', '', '611', '6.711512', '47.461254'], ['2019-73561', '2019-06-07', '000001', 'Vente', '138600', '40', '', 'RUE DES GRANDS CHAMPS', '0140', '25260', '25224', 'Étouvans', '25', '', '', '252240000A0639', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '3', 'P', 'prés', '', '', '740', '6.711512', '47.461254'], ['2019-73562', '2019-06-07', '000001', 'Vente', '86970', '1', '', 'RUE DES MAILLEUX', '0038', '25380', '25125', 'Charmoille', '25', '', '', '25125000AC0184', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '79', '2', 'S', 'sols', '', '', '570', '6.677172', '47.243403'], ['2019-73562', '2019-06-07', '000001', 'Vente', '86970', '', '', 'RONDAGE', 'B053', '25380', '25125', 'Charmoille', '25', '', '', '251250000D0296', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '607', '6.677348', '47.243329'], ['2019-73563', '2019-06-18', '000001', 'Vente', '9000', '', '', 'CHENE FONTAINE', 'B055', '25550', '25048', 'Bavans', '25', '', '', '25048000AR0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '606', '6.71297', '47.473383'], ['2019-73564', '2019-06-06', '000001', 'Vente', '31000', '8', '', 'PL DORIAN', '0600', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BY0279', '', '', '10', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '25', '2', '', '', '', '', '', '6.795879', '47.50963'], ['2019-73565', '2019-06-13', '000001', 'Vente', '44500', '46', 'D', 'RUE DU MONT BART', '1300', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BT0147', '', '', '130', '', '150', '', '', '', '', '', '', '', '2', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.786268', '47.506845'], ['2019-73566', '2019-06-20', '000001', 'Vente', '86750', '7', '', 'RUE EMILE OUSTALET', '1358', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AR0240', '', '', '153', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.804281', '47.518294'], ['2019-73566', '2019-06-20', '000001', 'Vente', '86750', '7', '', 'RUE EMILE OUSTALET', '1358', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AR0240', '', '', '103', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '59', '3', '', '', '', '', '', '6.804281', '47.518294'], ['2019-73567', '2019-06-27', '000001', 'Vente', '154000', '32', '', 'RUE DU PRIEURE', '0037', '25380', '25588', 'Vaucluse', '25', '', '', '25588000AB0071', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '3', 'S', 'sols', '', '', '1000', '6.689626', '47.257118'], ['2019-73568', '2019-06-27', '000001', 'Vente', '35000', '11', '', 'RUE SAINTE ANNE', '0920', '25120', '25356', 'Maîche', '25', '', '', '25356000AC0036', '', '', '6', '33.05', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '29', '1', '', '', '', '', '', '6.80645', '47.250824'], ['2019-73569', '2019-06-27', '000001', 'Vente', '90000', '5033', '', 'RTE DE BIAUFOND', '0009', '25140', '25255', 'Fournet-Blancheroche', '25', '', '', '252550000A0331', '', '', '102', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.838559', '47.178531'], ['2019-73569', '2019-06-27', '000001', 'Vente', '90000', '5033', '', 'RTE DE BIAUFOND', '0009', '25140', '25255', 'Fournet-Blancheroche', '25', '', '', '252550000A0331', '', '', '4', '', '6', '44', '', '', '', '', '', '', '2', '2', 'Appartement', '40', '2', '', '', '', '', '', '6.838559', '47.178531'], ['2019-73570', '2019-06-07', '000001', 'Vente', '167000', '1', '', 'RUE DES CURTILS', '0165', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0212', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '133', '4', 'S', 'sols', '', '', '844', '6.80516', '47.4896'], ['2019-73570', '2019-06-07', '000001', 'Vente', '167000', '', '', 'RUE DES CHAMPS DE PIERRES', '0060', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0213', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '858', '6.805814', '47.4896'], ['2019-73571', '2019-06-07', '000001', 'Vente', '147000', '1', '', 'RUE DES ANSANGES', '0012', '25350', '25367', 'Mandeure', '25', '', '', '25367000AD0510', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '5', 'S', 'sols', '', '', '585', '6.815707', '47.446331'], ['2019-73571', '2019-06-07', '000001', 'Vente', '147000', '', '', 'AUX ANDANGES', 'B001', '25350', '25367', 'Mandeure', '25', '', '', '25367000AD0514', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '142', '6.815539', '47.446242'], ['2019-73572', '2019-06-07', '000001', 'Vente', '128190', '54', '', 'RUE SOUS LES VIGNES', '0970', '25400', '25031', 'Audincourt', '25', '', '', '25031000AT0053', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '5', 'S', 'sols', '', '', '568', '6.853547', '47.471187'], ['2019-73573', '2019-06-13', '000001', 'Vente', '31500', '3', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0462', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '3', 'S', 'sols', '', '', '75', '6.796445', '47.51367'], ['2019-73573', '2019-06-13', '000001', 'Vente', '31500', '1', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0463', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '101', '6.7963', '47.513617'], ['2019-73574', '2019-06-28', '000001', 'Vente', '77390', '2', '', 'RUE BUFFON', '0070', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AK0006', '', '', '17', '', '20', '', '', '', '', '', '', '', '2', '2', 'Appartement', '79', '4', '', '', '', '', '', '6.805575', '47.533519'], ['2019-73574', '2019-06-28', '000001', 'Vente', '77390', '2', '', 'RUE BUFFON', '0070', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AK0006', '', '', '62', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.805575', '47.533519'], ['2019-73575', '2019-06-28', '000001', 'Vente', '164000', '6', '', 'RUE DES POMMEROTS', '0175', '25310', '25063', 'Blamont', '25', '', '', '250630000D0929', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '76', '4', 'S', 'sols', '', '', '793', '6.844686', '47.384942'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1765', '6.689448', '47.4712'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1705', '6.689632', '47.470865'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '150', '6', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73577', '2019-06-27', '000001', 'Vente', '100000', '', '', 'RUE DE LA LIBERTE', '0360', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AP0349', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1733', '6.789253', '47.529948'], ['2019-73577', '2019-06-27', '000001', 'Vente', '100000', '', '', 'RUE DE LA LIBERTE', '0360', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AP0352', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '759', '6.789779', '47.530032'], ['2019-73578', '2019-04-30', '000001', 'Vente', '118500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '93', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73578', '2019-04-30', '000001', 'Vente', '118500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '121', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73578', '2019-04-30', '000001', 'Vente', '118500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '57', '', '97', '75.64', '', '', '', '', '', '', '2', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73579', '2019-06-27', '000001', 'Vente', '199500', '11', '', 'RUE DU STADE', '0050', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0337', '', '', '1', '', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '116', '3', '', '', '', '', '', '6.831483', '47.254732'], ['2019-73579', '2019-06-27', '000001', 'Vente', '199500', '11', '', 'RUE DU STADE', '0050', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0337', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.831483', '47.254732'], ['2019-73580', '2019-06-24', '000001', 'Vente', '3000', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '112', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73581', '2019-06-27', '000001', 'Vente', '118000', '3', '', 'IMP COROT', '0145', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AS0224', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '4', 'S', 'sols', '', '', '613', '6.850075', '47.462633'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1765', '6.689448', '47.4712'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1705', '6.689632', '47.470865'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '150', '6', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73583', '2019-06-21', '000001', 'Vente', '162500', '3', '', 'CHE DE TROP EPINES', '0170', '25750', '25198', 'Désandans', '25', '', '', '25198000AC0112', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '6', 'S', 'sols', '', '', '757', '6.67567', '47.531202'], ['2019-73583', '2019-06-21', '000001', 'Vente', '162500', '', '', 'AU MEURGELOT', 'B074', '25750', '25198', 'Désandans', '25', '', '', '25198000AC0113', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '283', '6.675801', '47.531045'], ['2019-73584', '2019-06-27', '000001', 'Vente', '18285.7', '9001', '', 'RUE DE GRANDVAUX', '0023', '25250', '25059', 'Beutal', '25', '', '', '250590000V0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '600', '0', 'T', 'terres', '', '', '617', '6.639785', '47.46935'], ['2019-73584', '2019-06-27', '000001', 'Vente', '18285.7', '9001', '', 'RUE DE GRANDVAUX', '0023', '25250', '25059', 'Beutal', '25', '', '', '250590000V0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '600', '0', 'S', 'sols', '', '', '677', '6.639785', '47.46935']]
<class 'list'>
import csv
with open("./data/25.csv") as doubs:
    doubs_dict = csv.DictReader(doubs)
    data = [ligne for ligne in doubs_dict]
print(data)
print(type(data))
[OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2260'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2792'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2260'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2792'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73037'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '277450'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0382'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '284'), ('longitude', '6.010203'), ('latitude', '47.268524')]), OrderedDict([('id_mutation', '2019-73037'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '277450'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0383'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '24'), ('longitude', '6.010258'), ('latitude', '47.268593')]), OrderedDict([('id_mutation', '2019-73037'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '277450'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0384'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.010475'), ('latitude', '47.268349')]), OrderedDict([('id_mutation', '2019-73038'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '76250'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0381'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '139'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '126'), ('longitude', '6.010398'), ('latitude', '47.268616')]), OrderedDict([('id_mutation', '2019-73039'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '251650'), ('adresse_numero', '5123'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GRANGES DU CHAMP DU FOURNE'), ('adresse_code_voie', 'B059'), ('code_postal', '25440'), ('code_commune', '25109'), ('nom_commune', 'Cessey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25109000AC0169'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '166'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '800'), ('longitude', '5.935817'), ('latitude', '47.128046')]), OrderedDict([('id_mutation', '2019-73039'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '251650'), ('adresse_numero', '5123'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GRANGES DU CHAMP DU FOURNE'), ('adresse_code_voie', 'B059'), ('code_postal', '25440'), ('code_commune', '25109'), ('nom_commune', 'Cessey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25109000AC0169'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '166'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '852'), ('longitude', '5.935817'), ('latitude', '47.128046')]), OrderedDict([('id_mutation', '2019-73040'), ('date_mutation', '2019-04-01'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '205600'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A PRAND'), ('adresse_code_voie', 'B107'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25454000AH0259'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.965378'), ('latitude', '47.258764')]), OrderedDict([('id_mutation', '2019-73040'), ('date_mutation', '2019-04-01'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '205600'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A PRAND'), ('adresse_code_voie', 'B107'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25454000AH0259'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.965378'), ('latitude', '47.258764')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0399'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '572'), ('longitude', '5.97357'), ('latitude', '47.235445')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU SANATORIUM'), ('adresse_code_voie', '4690'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0410'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '385'), ('longitude', '5.972884'), ('latitude', '47.235189')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0415'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '603'), ('longitude', '5.973229'), ('latitude', '47.235323')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0418'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '293'), ('longitude', '5.973384'), ('latitude', '47.235391')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0421'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '219'), ('longitude', '5.972961'), ('latitude', '47.235275')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0424'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1293'), ('longitude', '5.97434'), ('latitude', '47.235558')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '79'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '56'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '33'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '74'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73043'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '285000'), ('adresse_numero', '2'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'ALL DOCTEUR MAITRE'), ('adresse_code_voie', '1612'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0332'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', '25'), ('lot2_surface_carrez', ''), ('lot3_numero', '7'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '91'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.020371'), ('latitude', '47.255286')]), OrderedDict([('id_mutation', '2019-73044'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '86000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ARDOTS'), ('adresse_code_voie', 'B001'), ('code_postal', '25870'), ('code_commune', '25265'), ('nom_commune', 'Geneuille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25265000AD0605'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '913'), ('longitude', '5.96775'), ('latitude', '47.322781')]), OrderedDict([('id_mutation', '2019-73045'), ('date_mutation', '2019-03-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COURVOISIER'), ('adresse_code_voie', '0009'), ('code_postal', '25260'), ('code_commune', '25345'), ('nom_commune', 'Longevelle-sur-Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25345000ZD0221'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '121'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '628'), ('longitude', '6.649923'), ('latitude', '47.454307')]), OrderedDict([('id_mutation', '2019-73045'), ('date_mutation', '2019-03-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CORNEILLES'), ('adresse_code_voie', 'B072'), ('code_postal', '25260'), ('code_commune', '25345'), ('nom_commune', 'Longevelle-sur-Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25345000ZD0245'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '170'), ('longitude', '6.650082'), ('latitude', '47.454321')]), OrderedDict([('id_mutation', '2019-73046'), ('date_mutation', '2019-03-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '226000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VOYE DE L ISLE'), ('adresse_code_voie', '0080'), ('code_postal', '25250'), ('code_commune', '25226'), ('nom_commune', 'Étrappe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25226000ZA0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '125'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1016'), ('longitude', '6.578618'), ('latitude', '47.469529')]), OrderedDict([('id_mutation', '2019-73047'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78000'), ('adresse_numero', '28'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0074'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', '63.62'), ('lot2_numero', '31'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018239'), ('latitude', '47.251632')]), OrderedDict([('id_mutation', '2019-73048'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81500'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV CHARLES SIFFERT'), ('adresse_code_voie', '1080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0007'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', '101.07'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '95'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.015127'), ('latitude', '47.24185')]), OrderedDict([('id_mutation', '2019-73048'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81500'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV CHARLES SIFFERT'), ('adresse_code_voie', '1080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0007'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '39'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.015127'), ('latitude', '47.24185')]), OrderedDict([('id_mutation', '2019-73049'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '206000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU DOCTEUR GIRARDOT'), ('adresse_code_voie', '1590'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DZ0126'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '87'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '468'), ('longitude', '5.996263'), ('latitude', '47.227774')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV FONTAINE ARGENT'), ('adresse_code_voie', '2030'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '53'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BEAUREGARD'), ('adresse_code_voie', '0380'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '50'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV FONTAINE ARGENT'), ('adresse_code_voie', '2030'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '52'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BEAUREGARD'), ('adresse_code_voie', '0380'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73051'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '79750'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MUGUET'), ('adresse_code_voie', '3610'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', '67.37'), ('lot2_numero', '5'), ('lot2_surface_carrez', ''), ('lot3_numero', '6'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.047337'), ('latitude', '47.264985')]), OrderedDict([('id_mutation', '2019-73052'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8000'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE LA VAITE'), ('adresse_code_voie', '5020'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '77'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.040617'), ('latitude', '47.253966')]), OrderedDict([('id_mutation', '2019-73053'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8000'), ('adresse_numero', '29'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'CHE DES MONTBOUCONS'), ('adresse_code_voie', '3500'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000NT0241'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.98984'), ('latitude', '47.25726')]), OrderedDict([('id_mutation', '2019-73054'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8500'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES COURTILS'), ('adresse_code_voie', '1460'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0153'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '106'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.046495'), ('latitude', '47.2645')]), OrderedDict([('id_mutation', '2019-73055'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6200'), ('adresse_numero', '31'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE CHARDONNET'), ('adresse_code_voie', '0960'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CZ0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.039858'), ('latitude', '47.23115')]), OrderedDict([('id_mutation', '2019-73056'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D ALSACE'), ('adresse_code_voie', '0130'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AH0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', '17'), ('lot2_surface_carrez', '68.94'), ('lot3_numero', '18'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028073'), ('latitude', '47.239308')]), OrderedDict([('id_mutation', '2019-73057'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191933'), ('adresse_numero', '57'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES PRES DE VAUX'), ('adresse_code_voie', '4220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DE0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '530'), ('longitude', '6.054279'), ('latitude', '47.230811')]), OrderedDict([('id_mutation', '2019-73057'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191933'), ('adresse_numero', '57'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES PRES DE VAUX'), ('adresse_code_voie', '4220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DE0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', 'POTAG'), ('nature_culture_speciale', 'Jardin potager'), ('surface_terrain', '1018'), ('longitude', '6.054279'), ('latitude', '47.230811')]), OrderedDict([('id_mutation', '2019-73057'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191933'), ('adresse_numero', '57'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES PRES DE VAUX'), ('adresse_code_voie', '4220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DE0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '850'), ('longitude', '6.054279'), ('latitude', '47.230811')]), OrderedDict([('id_mutation', '2019-73058'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '228000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE CHAMP DU SEILLER'), ('adresse_code_voie', '0077'), ('code_postal', '25640'), ('code_commune', '25508'), ('nom_commune', 'Roulans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25508000AB0517'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '855'), ('longitude', '6.240416'), ('latitude', '47.318954')]), OrderedDict([('id_mutation', '2019-73059'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150500'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CHASNOT'), ('adresse_code_voie', '1130'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0457'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', '67.04'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02701'), ('latitude', '47.247254')]), OrderedDict([('id_mutation', '2019-73060'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '242000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BELVEDERE'), ('adresse_code_voie', '0150'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000AX0095'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.350524'), ('latitude', '47.341083')]), OrderedDict([('id_mutation', '2019-73060'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '242000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BELVEDERE'), ('adresse_code_voie', '0150'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000AX0095'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1452'), ('longitude', '6.350524'), ('latitude', '47.341083')]), OrderedDict([('id_mutation', '2019-73061'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '115000'), ('adresse_numero', '23'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HW0575'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '632'), ('lot1_surface_carrez', ''), ('lot2_numero', '692'), ('lot2_surface_carrez', '62.94'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019921'), ('latitude', '47.248271')]), OrderedDict([('id_mutation', '2019-73061'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '115000'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HW0575'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '461'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019921'), ('latitude', '47.248271')]), OrderedDict([('id_mutation', '2019-73062'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '780'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU PAUTET'), ('adresse_code_voie', 'B106'), ('code_postal', '25320'), ('code_commune', '25287'), ('nom_commune', 'Grandfontaine'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25287000AB0075'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6'), ('longitude', '5.894675'), ('latitude', '47.199222')]), OrderedDict([('id_mutation', '2019-73063'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '208400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA PLANCHE'), ('adresse_code_voie', '0152'), ('code_postal', '25770'), ('code_commune', '25258'), ('nom_commune', 'Franois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25258000AC0196'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.93859'), ('latitude', '47.229168')]), OrderedDict([('id_mutation', '2019-73063'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '208400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA PLANCHE'), ('adresse_code_voie', '0152'), ('code_postal', '25770'), ('code_commune', '25258'), ('nom_commune', 'Franois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25258000AC0196'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '16'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.93859'), ('latitude', '47.229168')]), OrderedDict([('id_mutation', '2019-73063'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '208400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA PLANCHE'), ('adresse_code_voie', '0152'), ('code_postal', '25770'), ('code_commune', '25258'), ('nom_commune', 'Franois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25258000AC0196'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.93859'), ('latitude', '47.229168')]), OrderedDict([('id_mutation', '2019-73064'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '60000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VILLAGE'), ('adresse_code_voie', 'B044'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AB0103'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '35'), ('longitude', '6.080034'), ('latitude', '47.336893')]), OrderedDict([('id_mutation', '2019-73064'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '60000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE MARCHAUX'), ('adresse_code_voie', '0028'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AB0106'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', '2'), ('lot2_surface_carrez', '135.89'), ('lot3_numero', '8'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '126'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.079714'), ('latitude', '47.336808')]), OrderedDict([('id_mutation', '2019-73065'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '62'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0100'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0276'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', '4'), ('lot2_surface_carrez', '8.83'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.233722'), ('latitude', '47.298367')]), OrderedDict([('id_mutation', '2019-73065'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '62'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0100'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0276'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '8'), ('lot2_surface_carrez', '160.93'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '243'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.233722'), ('latitude', '47.298367')]), OrderedDict([('id_mutation', '2019-73065'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMP DERRIERE LA GRANGERI'), ('adresse_code_voie', 'B020'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0280'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '409'), ('longitude', '6.233939'), ('latitude', '47.298448')]), OrderedDict([('id_mutation', '2019-73066'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78100'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MARC BLOCH'), ('adresse_code_voie', '3286'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EP0263'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '99'), ('lot1_surface_carrez', '93.7'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '87'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.969947'), ('latitude', '47.217754')]), OrderedDict([('id_mutation', '2019-73066'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78100'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MARC BLOCH'), ('adresse_code_voie', '3286'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EP0263'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '31'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.969947'), ('latitude', '47.217754')]), OrderedDict([('id_mutation', '2019-73067'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '35183.96'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BOIS CARRE'), ('adresse_code_voie', 'C002'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000BA0208'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '980'), ('longitude', '6.33667'), ('latitude', '47.352739')]), OrderedDict([('id_mutation', '2019-73068'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165000'), ('adresse_numero', '47'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VERNES'), ('adresse_code_voie', 'B060'), ('code_postal', '25870'), ('code_commune', '25200'), ('nom_commune', 'Devecey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25200000AI0467'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '523'), ('longitude', '6.011204'), ('latitude', '47.324913')]), OrderedDict([('id_mutation', '2019-73069'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1600'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VAUCHES'), ('adresse_code_voie', 'B232'), ('code_postal', '25660'), ('code_commune', '25245'), ('nom_commune', 'Fontain'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25245000ZM0010'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '8341'), ('longitude', '6.022924'), ('latitude', '47.207125')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '87'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '69'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '247'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '393'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '332'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '394'), ('lot1_surface_carrez', ''), ('lot2_numero', '395'), ('lot2_surface_carrez', ''), ('lot3_numero', '396'), ('lot3_surface_carrez', ''), ('lot4_numero', '397'), ('lot4_surface_carrez', ''), ('lot5_numero', '399'), ('lot5_surface_carrez', ''), ('nombre_lots', '40'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '334'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73071'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CONNOTIERE'), ('adresse_code_voie', 'B027'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AB0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '796'), ('longitude', '6.000663'), ('latitude', '47.211775')]), OrderedDict([('id_mutation', '2019-73072'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '28000'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE 7EME ARMEE AMERICAINE'), ('adresse_code_voie', '4750'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000KR0021'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', '33.95'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '33'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01748'), ('latitude', '47.216813')]), OrderedDict([('id_mutation', '2019-73073'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '110000'), ('adresse_numero', '131'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0213'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '576'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036537'), ('latitude', '47.253709')]), OrderedDict([('id_mutation', '2019-73073'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '110000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CITE PARC DES CHAPRAIS'), ('adresse_code_voie', '0955'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0213'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '251'), ('lot1_surface_carrez', ''), ('lot2_numero', '261'), ('lot2_surface_carrez', '61.58'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036537'), ('latitude', '47.253709')]), OrderedDict([('id_mutation', '2019-73074'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '76'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BL0111'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '135'), ('lot1_surface_carrez', '17.9'), ('lot2_numero', '136'), ('lot2_surface_carrez', '17.4'), ('lot3_numero', '144'), ('lot3_surface_carrez', '42.14'), ('lot4_numero', '172'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '44'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012625'), ('latitude', '47.256766')]), OrderedDict([('id_mutation', '2019-73075'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '254500'), ('adresse_numero', '2'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES MAISONS NEUVES'), ('adresse_code_voie', '0029'), ('code_postal', '25320'), ('code_commune', '25147'), ('nom_commune', 'Chemaudin et Vaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25147000AA0231'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '719'), ('longitude', '5.891686'), ('latitude', '47.224765')]), OrderedDict([('id_mutation', '2019-73076'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81150'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV VILLARCEAU'), ('adresse_code_voie', '5280'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0010'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '24'), ('lot1_surface_carrez', ''), ('lot2_numero', '37'), ('lot2_surface_carrez', '53.24'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '53'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.008254'), ('latitude', '47.236082')]), OrderedDict([('id_mutation', '2019-73076'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81150'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV VILLARCEAU'), ('adresse_code_voie', '5280'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0010'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.008254'), ('latitude', '47.236082')]), OrderedDict([('id_mutation', '2019-73077'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '5000'), ('adresse_numero', '2'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'ALL DOCTEUR MAITRE'), ('adresse_code_voie', '1612'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0332'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.020371'), ('latitude', '47.255286')]), OrderedDict([('id_mutation', '2019-73078'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VILLAGE'), ('adresse_code_voie', 'B044'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AB0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1294'), ('longitude', '6.080876'), ('latitude', '47.337844')]), OrderedDict([('id_mutation', '2019-73079'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '235000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA PEROUSE'), ('adresse_code_voie', '0109'), ('code_postal', '25660'), ('code_commune', '25395'), ('nom_commune', 'Montfaucon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25395000AC0021'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1052'), ('longitude', '6.086699'), ('latitude', '47.234534')]), OrderedDict([('id_mutation', '2019-73080'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '91750'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE TRISTAN BERNARD'), ('adresse_code_voie', '4970'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CT0116'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '21'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.039429'), ('latitude', '47.248472')]), OrderedDict([('id_mutation', '2019-73081'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '222000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VIEILLES PERRIERES'), ('adresse_code_voie', '5230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', '101.5'), ('lot2_numero', '6'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '104'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012335'), ('latitude', '47.234135')]), OrderedDict([('id_mutation', '2019-73081'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '222000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VIEILLES PERRIERES'), ('adresse_code_voie', '5230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '82'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012335'), ('latitude', '47.234135')]), OrderedDict([('id_mutation', '2019-73082'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '178300'), ('adresse_numero', '24'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DU BOCHET'), ('adresse_code_voie', '0004'), ('code_postal', '25170'), ('code_commune', '25332'), ('nom_commune', 'Lavernay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25332000ZB0177'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '91.3'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '83'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.824411'), ('latitude', '47.249971')]), OrderedDict([('id_mutation', '2019-73083'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '240000'), ('adresse_numero', '2'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'RUE DU QUETIS'), ('adresse_code_voie', '0054'), ('code_postal', '25410'), ('code_commune', '25195'), ('nom_commune', 'Dannemarie-sur-Crète'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25195000AC0303'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '449'), ('longitude', '5.868202'), ('latitude', '47.206064')]), OrderedDict([('id_mutation', '2019-73083'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '240000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA NOUELLE'), ('adresse_code_voie', 'B062'), ('code_postal', '25410'), ('code_commune', '25195'), ('nom_commune', 'Dannemarie-sur-Crète'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25195000AC0336'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '197'), ('longitude', '5.869175'), ('latitude', '47.205804')]), OrderedDict([('id_mutation', '2019-73083'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '240000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA NOUELLE'), ('adresse_code_voie', 'B062'), ('code_postal', '25410'), ('code_commune', '25195'), ('nom_commune', 'Dannemarie-sur-Crète'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25195000AC0338'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '145'), ('longitude', '5.868669'), ('latitude', '47.206008')]), OrderedDict([('id_mutation', '2019-73084'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA COMBE CONSTANTIN'), ('adresse_code_voie', 'B042'), ('code_postal', '25360'), ('code_commune', '25446'), ('nom_commune', 'Passavant'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25446000AD0253'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '802'), ('longitude', '6.408359'), ('latitude', '47.287813')]), OrderedDict([('id_mutation', '2019-73084'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA COMBE CONSTANTIN'), ('adresse_code_voie', 'B042'), ('code_postal', '25360'), ('code_commune', '25446'), ('nom_commune', 'Passavant'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25446000AD0253'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '600'), ('longitude', '6.408359'), ('latitude', '47.287813')]), OrderedDict([('id_mutation', '2019-73085'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7000'), ('adresse_numero', '38'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'AV DE L ILE DE FRANCE'), ('adresse_code_voie', '2750'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000LR0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '45'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.965415'), ('latitude', '47.221549')]), OrderedDict([('id_mutation', '2019-73086'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '73100'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PASTEUR'), ('adresse_code_voie', '3860'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AB0124'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '206'), ('lot1_surface_carrez', '44.85'), ('lot2_numero', '210'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '38'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.022267'), ('latitude', '47.237648')]), OrderedDict([('id_mutation', '2019-73087'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '96900'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CITE PARC DES CHAPRAIS'), ('adresse_code_voie', '0955'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0213'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '351'), ('lot1_surface_carrez', ''), ('lot2_numero', '363'), ('lot2_surface_carrez', '53.77'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '58'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036537'), ('latitude', '47.253709')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '119'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73089'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', '70'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANGES'), ('adresse_code_voie', '2510'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0082'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', '95.16'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '93'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026867'), ('latitude', '47.236922')]), OrderedDict([('id_mutation', '2019-73090'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99500'), ('adresse_numero', '58'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BK0113'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '46'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.014931'), ('latitude', '47.254683')]), OrderedDict([('id_mutation', '2019-73090'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99500'), ('adresse_numero', '58'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BK0113'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', '40'), ('lot2_surface_carrez', '73.85'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.014931'), ('latitude', '47.254683')]), OrderedDict([('id_mutation', '2019-73091'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '53000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ROCHES'), ('adresse_code_voie', '4530'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0235'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', '48'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '25'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035222'), ('latitude', '47.257264')]), OrderedDict([('id_mutation', '2019-73091'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '53000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ROCHES'), ('adresse_code_voie', '4530'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0235'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '78'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035222'), ('latitude', '47.257264')]), OrderedDict([('id_mutation', '2019-73092'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU CHATELARD'), ('adresse_code_voie', 'B040'), ('code_postal', '25870'), ('code_commune', '25133'), ('nom_commune', 'Châtillon-le-Duc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25133000AD0235'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '70'), ('longitude', '6.012482'), ('latitude', '47.307348')]), OrderedDict([('id_mutation', '2019-73093'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155600'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MATHIAS ULLMANN'), ('adresse_code_voie', '3381'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HI0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.985376'), ('latitude', '47.254924')]), OrderedDict([('id_mutation', '2019-73093'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155600'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MATHIAS ULLMANN'), ('adresse_code_voie', '3381'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HI0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '44'), ('lot1_surface_carrez', '57.21'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '57'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.985376'), ('latitude', '47.254924')]), OrderedDict([('id_mutation', '2019-73094'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '90000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE NARCISSE LANCHY'), ('adresse_code_voie', '3630'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0237'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '16'), ('lot1_surface_carrez', ''), ('lot2_numero', '23'), ('lot2_surface_carrez', '48.11'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '47'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028518'), ('latitude', '47.25699')]), OrderedDict([('id_mutation', '2019-73094'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '90000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE NARCISSE LANCHY'), ('adresse_code_voie', '3630'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0237'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028518'), ('latitude', '47.25699')]), OrderedDict([('id_mutation', '2019-73095'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '254100'), ('adresse_numero', '12'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'RUE DU REPOS'), ('adresse_code_voie', '0150'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AI0070'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '121'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '800'), ('longitude', '6.000709'), ('latitude', '47.205169')]), OrderedDict([('id_mutation', '2019-73096'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '406'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73096'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '145'), ('lot1_surface_carrez', '10.4'), ('lot2_numero', '275'), ('lot2_surface_carrez', '56.77'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '67'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73096'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73097'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8500'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JEAN WYRSCH'), ('adresse_code_voie', '2860'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BK0050'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '216'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019662'), ('latitude', '47.258133')]), OrderedDict([('id_mutation', '2019-73098'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '255000'), ('adresse_numero', '6'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DES RAGOTS'), ('adresse_code_voie', '4340'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CY0221'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '34'), ('lot2_surface_carrez', '63.8'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036715'), ('latitude', '47.2369')]), OrderedDict([('id_mutation', '2019-73098'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '255000'), ('adresse_numero', '6'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DES RAGOTS'), ('adresse_code_voie', '4340'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CY0221'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '14'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036715'), ('latitude', '47.2369')]), OrderedDict([('id_mutation', '2019-73099'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '63990'), ('adresse_numero', '13'), ('adresse_suffixe', 'G'), ('adresse_nom_voie', 'RUE DE LA MOUILLERE'), ('adresse_code_voie', '3580'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0249'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '217'), ('lot1_surface_carrez', ''), ('lot2_numero', '228'), ('lot2_surface_carrez', '28.5'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '31'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032534'), ('latitude', '47.24341')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0274'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1025'), ('longitude', '5.954487'), ('latitude', '47.264545')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0275'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '5.954202'), ('latitude', '47.264412')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0277'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1045'), ('longitude', '5.954467'), ('latitude', '47.26385')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0278'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2065'), ('longitude', '5.954103'), ('latitude', '47.263773')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0280'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '535'), ('longitude', '5.954069'), ('latitude', '47.26355')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0365'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1260'), ('longitude', '5.958906'), ('latitude', '47.26627')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU DESSUS DE ROUGEAU'), ('adresse_code_voie', 'B063'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0392'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1692'), ('longitude', '5.958642'), ('latitude', '47.264402')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ECORCHEVEY'), ('adresse_code_voie', 'B065'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0634'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2890'), ('longitude', '5.955411'), ('latitude', '47.270257')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ORBEUX'), ('adresse_code_voie', 'B001'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0666'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '475'), ('longitude', '5.959645'), ('latitude', '47.270721')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A VIGNOLE'), ('adresse_code_voie', 'B137'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A1422'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '870'), ('longitude', '5.96459'), ('latitude', '47.266804')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LAVAUX'), ('adresse_code_voie', 'B086'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000B0060'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4480'), ('longitude', '5.973345'), ('latitude', '47.268843')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ECOULOTTES'), ('adresse_code_voie', 'B067'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000B0244'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2060'), ('longitude', '5.969531'), ('latitude', '47.268075')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU BOUT DE LA COTE'), ('adresse_code_voie', 'B014'), ('code_postal', '25115'), ('code_commune', '25467'), ('nom_commune', 'Pouilley-les-Vignes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254670000B0587'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3200'), ('longitude', '5.953541'), ('latitude', '47.273542')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUJAU'), ('adresse_code_voie', 'B180'), ('code_postal', '25115'), ('code_commune', '25467'), ('nom_commune', 'Pouilley-les-Vignes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254670000C0180'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4550'), ('longitude', '5.953727'), ('latitude', '47.264398')]), OrderedDict([('id_mutation', '2019-73101'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ALFRED DE VIGNY'), ('adresse_code_voie', '0085'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EN0513'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '282'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '8'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.9633'), ('latitude', '47.215825')]), OrderedDict([('id_mutation', '2019-73102'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '69000'), ('adresse_numero', '26'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CV0029'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', '4'), ('lot2_surface_carrez', '66.83'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '67'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02799'), ('latitude', '47.24718')]), OrderedDict([('id_mutation', '2019-73103'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '3'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DU CHATEAU DE VREGILLE'), ('adresse_code_voie', '1143'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MZ0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '204'), ('lot1_surface_carrez', ''), ('lot2_numero', '217'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '92'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.976546'), ('latitude', '47.243245')]), OrderedDict([('id_mutation', '2019-73103'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '3'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DU CHATEAU DE VREGILLE'), ('adresse_code_voie', '1143'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MZ0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '209'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.976546'), ('latitude', '47.243245')]), OrderedDict([('id_mutation', '2019-73103'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '3'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'CHE DU CHATEAU DE VREGILLE'), ('adresse_code_voie', '1143'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MZ0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.976546'), ('latitude', '47.243245')]), OrderedDict([('id_mutation', '2019-73104'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '322800'), ('adresse_numero', '181'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0125'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '113'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1024'), ('longitude', '6.043731'), ('latitude', '47.258293')]), OrderedDict([('id_mutation', '2019-73104'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '322800'), ('adresse_numero', '181'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0125'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1024'), ('longitude', '6.043731'), ('latitude', '47.258293')]), OrderedDict([('id_mutation', '2019-73105'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '187000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '454'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979454'), ('latitude', '47.241461')]), OrderedDict([('id_mutation', '2019-73105'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '187000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979454'), ('latitude', '47.241461')]), OrderedDict([('id_mutation', '2019-73105'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '187000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '611'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979454'), ('latitude', '47.241461')]), OrderedDict([('id_mutation', '2019-73106'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', "ALL DE L'ILE AUX MOINEAUX"), ('adresse_code_voie', '2715'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CX0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.034791'), ('latitude', '47.239185')]), OrderedDict([('id_mutation', '2019-73106'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', "ALL DE L'ILE AUX MOINEAUX"), ('adresse_code_voie', '2715'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CX0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '103'), ('lot1_surface_carrez', '39.66'), ('lot2_numero', '72'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '39'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.034791'), ('latitude', '47.239185')]), OrderedDict([('id_mutation', '2019-73107'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '246200'), ('adresse_numero', '5123'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LE RANG'), ('adresse_code_voie', 'B084'), ('code_postal', '25170'), ('code_commune', '25101'), ('nom_commune', 'Burgille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25101000ZB0126'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '165'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1505'), ('longitude', '5.774606'), ('latitude', '47.264855')]), OrderedDict([('id_mutation', '2019-73108'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '64700'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0157'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '145'), ('lot1_surface_carrez', ''), ('lot2_numero', '171'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '58'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019834'), ('latitude', '47.25063')]), OrderedDict([('id_mutation', '2019-73108'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '64700'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0157'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '221'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019834'), ('latitude', '47.25063')]), OrderedDict([('id_mutation', '2019-73109'), ('date_mutation', '2019-03-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '43000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FRERES MERCIER'), ('adresse_code_voie', '2200'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AZ0146'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', '20.37'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '26'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01798'), ('latitude', '47.241755')]), OrderedDict([('id_mutation', '2019-73110'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '217500'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUES PREVERT'), ('adresse_code_voie', '2756'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000LS0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '115'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '596'), ('longitude', '5.960999'), ('latitude', '47.215006')]), OrderedDict([('id_mutation', '2019-73111'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '58000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ISENBART'), ('adresse_code_voie', '2740'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0002'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '167'), ('lot1_surface_carrez', ''), ('lot2_numero', '184'), ('lot2_surface_carrez', '38.88'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '41'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02557'), ('latitude', '47.245773')]), OrderedDict([('id_mutation', '2019-73112'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '232000'), ('adresse_numero', '34'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CORDIER'), ('adresse_code_voie', '0021'), ('code_postal', '25620'), ('code_commune', '25364'), ('nom_commune', 'Mamirolle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25364000AD0095'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '116'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1029'), ('longitude', '6.154422'), ('latitude', '47.199646')]), OrderedDict([('id_mutation', '2019-73113'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '18000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COURVOISIER'), ('adresse_code_voie', '0520'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000AH0121'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '40.46'), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '33'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.359259'), ('latitude', '47.352842')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '292'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73115'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '120500'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG'), ('adresse_code_voie', '0150'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AP0315'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '3'), ('lot2_surface_carrez', '70.79'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.808852'), ('latitude', '47.180929')]), OrderedDict([('id_mutation', '2019-73116'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '313350'), ('adresse_numero', '26'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES JARDYS'), ('adresse_code_voie', '0043'), ('code_postal', '25870'), ('code_commune', '25133'), ('nom_commune', 'Châtillon-le-Duc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25133000AW0040'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '119'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '555'), ('longitude', '6.000145'), ('latitude', '47.312913')]), OrderedDict([('id_mutation', '2019-73116'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '313350'), ('adresse_numero', '26'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES JARDYS'), ('adresse_code_voie', '0043'), ('code_postal', '25870'), ('code_commune', '25133'), ('nom_commune', 'Châtillon-le-Duc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25133000AW0040'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '119'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.000145'), ('latitude', '47.312913')]), OrderedDict([('id_mutation', '2019-73117'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ROIES VATAIS'), ('adresse_code_voie', 'B077'), ('code_postal', '25660'), ('code_commune', '25410'), ('nom_commune', 'Morre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254100000A0315'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '1030'), ('longitude', '6.066208'), ('latitude', '47.230868')]), OrderedDict([('id_mutation', '2019-73118'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '87000'), ('adresse_numero', '23'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DE PALENTE'), ('adresse_code_voie', '3790'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0214'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '320'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.048813'), ('latitude', '47.267163')]), OrderedDict([('id_mutation', '2019-73118'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '87000'), ('adresse_numero', '23'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'CHE DE PALENTE'), ('adresse_code_voie', '3790'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0214'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '48.93'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '48'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.048813'), ('latitude', '47.267163')]), OrderedDict([('id_mutation', '2019-73119'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GARIBALDI'), ('adresse_code_voie', '2260'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0133'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026152'), ('latitude', '47.247234')]), OrderedDict([('id_mutation', '2019-73119'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GARIBALDI'), ('adresse_code_voie', '2260'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0133'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '70'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026152'), ('latitude', '47.247234')]), OrderedDict([('id_mutation', '2019-73119'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GARIBALDI'), ('adresse_code_voie', '2260'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0133'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '71'), ('lot1_surface_carrez', '41.57'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '41'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026152'), ('latitude', '47.247234')]), OrderedDict([('id_mutation', '2019-73120'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '46000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BERSOT'), ('adresse_code_voie', '0420'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AI0006'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '17'), ('lot1_surface_carrez', '19.24'), ('lot2_numero', '3'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '19'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.027954'), ('latitude', '47.237283')]), OrderedDict([('id_mutation', '2019-73121'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '114100'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE THIEBAUD'), ('adresse_code_voie', '4870'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '190'), ('lot1_surface_carrez', '59.62'), ('lot2_numero', '191'), ('lot2_surface_carrez', ''), ('lot3_numero', '192'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.017091'), ('latitude', '47.25334')]), OrderedDict([('id_mutation', '2019-73122'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '122000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VERDUN'), ('adresse_code_voie', '5120'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0041'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', '34'), ('lot2_surface_carrez', '77.87'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '76'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.038693'), ('latitude', '47.259475')]), OrderedDict([('id_mutation', '2019-73122'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '122000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VERDUN'), ('adresse_code_voie', '5120'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0041'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '76'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.038693'), ('latitude', '47.259475')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B182'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0158'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '460'), ('longitude', '6.658575'), ('latitude', '47.519705')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B182'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0159'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '655'), ('longitude', '6.658821'), ('latitude', '47.519318')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0359'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '158'), ('longitude', '6.657489'), ('latitude', '47.519749')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0664'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3'), ('longitude', '6.657382'), ('latitude', '47.519812')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0691'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1290'), ('longitude', '6.657856'), ('latitude', '47.519436')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0691'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '363'), ('longitude', '6.657856'), ('latitude', '47.519436')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1050'), ('longitude', '6.657963'), ('latitude', '47.519142')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '319'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1696'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1696'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '319'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1280'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1280'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B182'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0312'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '556'), ('longitude', '6.658275'), ('latitude', '47.519052')]), OrderedDict([('id_mutation', '2019-73124'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '62'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0100'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0276'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', '86.43'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.233722'), ('latitude', '47.298367')]), OrderedDict([('id_mutation', '2019-73125'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VERGER DU LARD'), ('adresse_code_voie', 'B120'), ('code_postal', '25360'), ('code_commune', '25278'), ('nom_commune', 'Gonsans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252780000E0144'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '410'), ('longitude', '6.299907'), ('latitude', '47.231918')]), OrderedDict([('id_mutation', '2019-73126'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '14000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GRANDS VERGERS'), ('adresse_code_voie', 'B081'), ('code_postal', '25640'), ('code_commune', '25508'), ('nom_commune', 'Roulans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25508000AC0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '443'), ('longitude', '6.230661'), ('latitude', '47.316106')]), OrderedDict([('id_mutation', '2019-73127'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '267000'), ('adresse_numero', '4'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES CHALETS'), ('adresse_code_voie', '0810'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0212'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033548'), ('latitude', '47.24298')]), OrderedDict([('id_mutation', '2019-73127'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '267000'), ('adresse_numero', '4'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES CHALETS'), ('adresse_code_voie', '0810'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0212'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', '11'), ('lot2_surface_carrez', ''), ('lot3_numero', '12'), ('lot3_surface_carrez', ''), ('lot4_numero', '13'), ('lot4_surface_carrez', ''), ('lot5_numero', '14'), ('lot5_surface_carrez', ''), ('nombre_lots', '5'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '142'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033548'), ('latitude', '47.24298')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253410000D0138'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6115'), ('longitude', '6.421109'), ('latitude', '47.341725')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25341000ZI0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '3840'), ('longitude', '6.418862'), ('latitude', '47.340572')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25341000ZI0004'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '6233'), ('longitude', '6.420326'), ('latitude', '47.341051')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25341000ZI0004'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '677'), ('longitude', '6.420326'), ('latitude', '47.341051')]), OrderedDict([('id_mutation', '2019-73129'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170400'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MADELEINE'), ('adresse_code_voie', '3230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AX0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', ''), ('lot2_numero', '78'), ('lot2_surface_carrez', '21.45'), ('lot3_numero', '79'), ('lot3_surface_carrez', '17.12'), ('lot4_numero', '80'), ('lot4_surface_carrez', '8'), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018385'), ('latitude', '47.240618')]), OrderedDict([('id_mutation', '2019-73129'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170400'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MADELEINE'), ('adresse_code_voie', '3230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AX0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '43'), ('lot1_surface_carrez', '80.85'), ('lot2_numero', '44'), ('lot2_surface_carrez', ''), ('lot3_numero', '45'), ('lot3_surface_carrez', ''), ('lot4_numero', '46'), ('lot4_surface_carrez', ''), ('lot5_numero', '47'), ('lot5_surface_carrez', ''), ('nombre_lots', '7'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '84'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018385'), ('latitude', '47.240618')]), OrderedDict([('id_mutation', '2019-73129'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170400'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VIGNIER'), ('adresse_code_voie', '5270'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AX0215'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '89'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.017894'), ('latitude', '47.240726')]), OrderedDict([('id_mutation', '2019-73130'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EUGENE SAVOYE'), ('adresse_code_voie', '1910'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '66'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.023024'), ('latitude', '47.249799')]), OrderedDict([('id_mutation', '2019-73130'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EUGENE SAVOYE'), ('adresse_code_voie', '1910'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', '44'), ('lot2_surface_carrez', '56.76'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '58'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.023024'), ('latitude', '47.249799')]), OrderedDict([('id_mutation', '2019-73131'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV LOUISE MICHEL'), ('adresse_code_voie', '3185'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0043'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '16'), ('lot1_surface_carrez', ''), ('lot2_numero', '92'), ('lot2_surface_carrez', '18.45'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '6'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013998'), ('latitude', '47.235191')]), OrderedDict([('id_mutation', '2019-73131'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV LOUISE MICHEL'), ('adresse_code_voie', '3185'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0043'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '156'), ('lot1_surface_carrez', '18.17'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '18'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013998'), ('latitude', '47.235191')]), OrderedDict([('id_mutation', '2019-73131'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV LOUISE MICHEL'), ('adresse_code_voie', '3185'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0043'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '187'), ('lot1_surface_carrez', '22.21'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '22'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013998'), ('latitude', '47.235191')]), OrderedDict([('id_mutation', '2019-73131'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV LOUISE MICHEL'), ('adresse_code_voie', '3185'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0043'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '190'), ('lot1_surface_carrez', '18.45'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '22'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013998'), ('latitude', '47.235191')]), OrderedDict([('id_mutation', '2019-73132'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '106000'), ('adresse_numero', '52'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FLUTTES AGASSES'), ('adresse_code_voie', '2010'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0076'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '152'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035107'), ('latitude', '47.260074')]), OrderedDict([('id_mutation', '2019-73132'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '106000'), ('adresse_numero', '52'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FLUTTES AGASSES'), ('adresse_code_voie', '2010'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0076'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '65'), ('lot1_surface_carrez', '74.95'), ('lot2_numero', '66'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035107'), ('latitude', '47.260074')]), OrderedDict([('id_mutation', '2019-73133'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '18468'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMP DU NOYER'), ('adresse_code_voie', 'B022'), ('code_postal', '25720'), ('code_commune', '25036'), ('nom_commune', 'Avanne-Aveney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25036000AB0265'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '513'), ('longitude', '5.961028'), ('latitude', '47.210615')]), OrderedDict([('id_mutation', '2019-73134'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '87800'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MAURICE DEMEUSY'), ('adresse_code_voie', '0030'), ('code_postal', '25680'), ('code_commune', '25505'), ('nom_commune', 'Rougemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25505000AL0067'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '129'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '922'), ('longitude', '6.353897'), ('latitude', '47.477226')]), OrderedDict([('id_mutation', '2019-73134'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '87800'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MAURICE DEMEUSY'), ('adresse_code_voie', '0030'), ('code_postal', '25680'), ('code_commune', '25505'), ('nom_commune', 'Rougemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25505000AL0067'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '129'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '55'), ('longitude', '6.353897'), ('latitude', '47.477226')]), OrderedDict([('id_mutation', '2019-73134'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '87800'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MAURICE DEMEUSY'), ('adresse_code_voie', '0030'), ('code_postal', '25680'), ('code_commune', '25505'), ('nom_commune', 'Rougemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25505000AL0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '168'), ('longitude', '6.353751'), ('latitude', '47.477187')]), OrderedDict([('id_mutation', '2019-73135'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '185920'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES NOZIERES'), ('adresse_code_voie', '0034'), ('code_postal', '25770'), ('code_commune', '25542'), ('nom_commune', 'Serre-les-Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25542000AH0093'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '160'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1567'), ('longitude', '5.935449'), ('latitude', '47.23561')]), OrderedDict([('id_mutation', '2019-73135'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '185920'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES NOZIERES'), ('adresse_code_voie', '0034'), ('code_postal', '25770'), ('code_commune', '25542'), ('nom_commune', 'Serre-les-Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25542000AH0093'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '160'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1567'), ('longitude', '5.935449'), ('latitude', '47.23561')]), OrderedDict([('id_mutation', '2019-73136'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU JALAN'), ('adresse_code_voie', '0032'), ('code_postal', '25250'), ('code_commune', '25553'), ('nom_commune', 'Soye'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255530000C0048'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '92'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '795'), ('longitude', '6.496536'), ('latitude', '47.444497')]), OrderedDict([('id_mutation', '2019-73137'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1440'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEANGUY'), ('adresse_code_voie', 'B035'), ('code_postal', '25410'), ('code_commune', '25502'), ('nom_commune', 'Roset-Fluans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255020000C0134'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2535'), ('longitude', '5.841101'), ('latitude', '47.148998')]), OrderedDict([('id_mutation', '2019-73137'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1440'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEANGUY'), ('adresse_code_voie', 'B035'), ('code_postal', '25410'), ('code_commune', '25502'), ('nom_commune', 'Roset-Fluans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255020000C0136'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '580'), ('longitude', '5.840677'), ('latitude', '47.1494')]), OrderedDict([('id_mutation', '2019-73137'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1440'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEANGUY'), ('adresse_code_voie', 'B035'), ('code_postal', '25410'), ('code_commune', '25502'), ('nom_commune', 'Roset-Fluans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255020000C0138'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '760'), ('longitude', '5.84045'), ('latitude', '47.149615')]), OrderedDict([('id_mutation', '2019-73138'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '118750'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JULES FERRY'), ('adresse_code_voie', '2930'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DZ0199'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', '71.89'), ('lot2_numero', '16'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '69'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.993222'), ('latitude', '47.225857')]), OrderedDict([('id_mutation', '2019-73139'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV CARNOT'), ('adresse_code_voie', '0670'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0243'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '19'), ('lot1_surface_carrez', '72'), ('lot2_numero', '41'), ('lot2_surface_carrez', ''), ('lot3_numero', '7'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '120'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02844'), ('latitude', '47.245223')]), OrderedDict([('id_mutation', '2019-73140'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '92800'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FRERES MERCIER'), ('adresse_code_voie', '2200'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AZ0300'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', '11'), ('lot2_surface_carrez', ''), ('lot3_numero', '9'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01806'), ('latitude', '47.242012')]), OrderedDict([('id_mutation', '2019-73140'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '92800'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FRERES MERCIER'), ('adresse_code_voie', '2200'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AZ0300'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '16'), ('lot1_surface_carrez', '46.2'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '59'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01806'), ('latitude', '47.242012')]), OrderedDict([('id_mutation', '2019-73141'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GRENIER'), ('adresse_code_voie', '2560'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0209'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '31'), ('lot1_surface_carrez', ''), ('lot2_numero', '32'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.009157'), ('latitude', '47.237495')]), OrderedDict([('id_mutation', '2019-73142'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '47000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE LA VAITE'), ('adresse_code_voie', '5020'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0269'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', '17.94'), ('lot2_numero', '32'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '21'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.040334'), ('latitude', '47.252845')]), OrderedDict([('id_mutation', '2019-73143'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '105000'), ('adresse_numero', '1'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'CHE DE HALAGE CASAMENE'), ('adresse_code_voie', '2605'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DO0075'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', '123.55'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '139'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.031512'), ('latitude', '47.223464')]), OrderedDict([('id_mutation', '2019-73143'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '105000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CASAMENES'), ('adresse_code_voie', 'B019'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DO0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '94'), ('longitude', '6.031583'), ('latitude', '47.223466')]), OrderedDict([('id_mutation', '2019-73144'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '118000'), ('adresse_numero', '128'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0094'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '640'), ('lot1_surface_carrez', ''), ('lot2_numero', '647'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '62'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.041292'), ('latitude', '47.255186')]), OrderedDict([('id_mutation', '2019-73144'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '118000'), ('adresse_numero', '128'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0094'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '605'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.041292'), ('latitude', '47.255186')]), OrderedDict([('id_mutation', '2019-73145'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '210000'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES SARMENTS'), ('adresse_code_voie', '0078'), ('code_postal', '25660'), ('code_commune', '25410'), ('nom_commune', 'Morre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25410000AA0646'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.069996'), ('latitude', '47.227749')]), OrderedDict([('id_mutation', '2019-73146'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '167500'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L ETOILE'), ('adresse_code_voie', '0034'), ('code_postal', '25660'), ('code_commune', '25532'), ('nom_commune', 'Saône'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25532000AB0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', ''), ('lot2_numero', '3'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '129'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.12146'), ('latitude', '47.226303')]), OrderedDict([('id_mutation', '2019-73147'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A VERBON'), ('adresse_code_voie', 'B134'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25454000AE0128'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '1750'), ('longitude', '5.964772'), ('latitude', '47.266376')]), OrderedDict([('id_mutation', '2019-73148'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '109000'), ('adresse_numero', '56'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE LA VAITE'), ('adresse_code_voie', '5020'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CK0158'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '153'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.043978'), ('latitude', '47.255462')]), OrderedDict([('id_mutation', '2019-73148'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '109000'), ('adresse_numero', '54'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE LA VAITE'), ('adresse_code_voie', '5020'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CK0158'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '43'), ('lot1_surface_carrez', ''), ('lot2_numero', '57'), ('lot2_surface_carrez', '68'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.043978'), ('latitude', '47.255462')]), OrderedDict([('id_mutation', '2019-73149'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '107000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE CLAUDIUS GONDY'), ('adresse_code_voie', '1270'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DY0159'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '78'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '257'), ('longitude', '5.9998'), ('latitude', '47.232879')]), OrderedDict([('id_mutation', '2019-73150'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159400'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA FONTAINE'), ('adresse_code_voie', '0060'), ('code_postal', '25660'), ('code_commune', '25245'), ('nom_commune', 'Fontain'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25245000AC0064'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '86'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '80'), ('longitude', '6.024344'), ('latitude', '47.199537')]), OrderedDict([('id_mutation', '2019-73150'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159400'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VILLAGE EST'), ('adresse_code_voie', 'B244'), ('code_postal', '25660'), ('code_commune', '25245'), ('nom_commune', 'Fontain'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25245000AC0065'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '37'), ('longitude', '6.024433'), ('latitude', '47.19945')]), OrderedDict([('id_mutation', '2019-73150'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159400'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VILLAGE EST'), ('adresse_code_voie', 'B244'), ('code_postal', '25660'), ('code_commune', '25245'), ('nom_commune', 'Fontain'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25245000AC0249'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '18'), ('longitude', '6.024304'), ('latitude', '47.19959')]), OrderedDict([('id_mutation', '2019-73151'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE RIVOTTE'), ('adresse_code_voie', '4500'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AL0028'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', '16.26'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '25'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.03165'), ('latitude', '47.234834')]), OrderedDict([('id_mutation', '2019-73151'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE RIVOTTE'), ('adresse_code_voie', '4500'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AL0028'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '19'), ('lot1_surface_carrez', '12.36'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '9'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.03165'), ('latitude', '47.234834')]), OrderedDict([('id_mutation', '2019-73152'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '804000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEAN D ABBANS'), ('adresse_code_voie', 'B011'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25560000AB0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1465'), ('longitude', '6.067967'), ('latitude', '47.284975')]), OrderedDict([('id_mutation', '2019-73152'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '804000'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JEAN D ABBANS'), ('adresse_code_voie', '0140'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25560000AB0197'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '612'), ('longitude', '6.068202'), ('latitude', '47.285206')]), OrderedDict([('id_mutation', '2019-73152'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '804000'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JEAN D ABBANS'), ('adresse_code_voie', '0140'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25560000AB0199'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '278'), ('longitude', '6.068153'), ('latitude', '47.285285')]), OrderedDict([('id_mutation', '2019-73152'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '804000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEAN D ABBANS'), ('adresse_code_voie', 'B011'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255600000F0200'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1426'), ('longitude', '6.068589'), ('latitude', '47.28517')]), OrderedDict([('id_mutation', '2019-73152'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '804000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEAN D ABBANS'), ('adresse_code_voie', 'B011'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255600000F0201'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '560'), ('longitude', '6.067961'), ('latitude', '47.284639')]), OrderedDict([('id_mutation', '2019-73152'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '804000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEAN D ABBANS'), ('adresse_code_voie', 'B011'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255600000F1205'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '1100'), ('longitude', '6.067676'), ('latitude', '47.284839')]), OrderedDict([('id_mutation', '2019-73152'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '804000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS JEAN D ABBANS'), ('adresse_code_voie', 'B011'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255600000F1441'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '306'), ('longitude', '6.067591'), ('latitude', '47.284614')]), OrderedDict([('id_mutation', '2019-73153'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '49000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINT VINCENT'), ('adresse_code_voie', '0032'), ('code_postal', '25720'), ('code_commune', '25036'), ('nom_commune', 'Avanne-Aveney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25036000AI0045'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '51'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '131'), ('longitude', '5.963481'), ('latitude', '47.201216')]), OrderedDict([('id_mutation', '2019-73154'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '90000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE FREDERIC BATAILLE'), ('adresse_code_voie', '2160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', '60.4'), ('lot2_numero', '39'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.024026'), ('latitude', '47.249824')]), OrderedDict([('id_mutation', '2019-73155'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '289500'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CULOT'), ('adresse_code_voie', '0021'), ('code_postal', '25320'), ('code_commune', '25103'), ('nom_commune', 'Busy'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25103000AC0281'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '426'), ('longitude', '5.940775'), ('latitude', '47.164951')]), OrderedDict([('id_mutation', '2019-73155'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '289500'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CULOT'), ('adresse_code_voie', '0021'), ('code_postal', '25320'), ('code_commune', '25103'), ('nom_commune', 'Busy'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25103000AC0281'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '426'), ('longitude', '5.940775'), ('latitude', '47.164951')]), OrderedDict([('id_mutation', '2019-73155'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '289500'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CULOT'), ('adresse_code_voie', '0021'), ('code_postal', '25320'), ('code_commune', '25103'), ('nom_commune', 'Busy'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25103000AC0281'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '426'), ('longitude', '5.940775'), ('latitude', '47.164951')]), OrderedDict([('id_mutation', '2019-73155'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '289500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CRIANTE DU COUCHANT'), ('adresse_code_voie', 'B064'), ('code_postal', '25320'), ('code_commune', '25103'), ('nom_commune', 'Busy'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25103000AC0307'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '223'), ('longitude', '5.940601'), ('latitude', '47.165129')]), OrderedDict([('id_mutation', '2019-73155'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '289500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CRIANTE DU COUCHANT'), ('adresse_code_voie', 'B064'), ('code_postal', '25320'), ('code_commune', '25103'), ('nom_commune', 'Busy'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25103000AC0308'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '5.940669'), ('latitude', '47.165018')]), OrderedDict([('id_mutation', '2019-73156'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '380000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0090'), ('code_postal', '25170'), ('code_commune', '25101'), ('nom_commune', 'Burgille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251010000D0051'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '433'), ('longitude', '5.776242'), ('latitude', '47.267828')]), OrderedDict([('id_mutation', '2019-73156'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '380000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0090'), ('code_postal', '25170'), ('code_commune', '25101'), ('nom_commune', 'Burgille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251010000D0051'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '100'), ('longitude', '5.776242'), ('latitude', '47.267828')]), OrderedDict([('id_mutation', '2019-73156'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '380000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0090'), ('code_postal', '25170'), ('code_commune', '25101'), ('nom_commune', 'Burgille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251010000D0052'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '146'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '428'), ('longitude', '5.776294'), ('latitude', '47.267665')]), OrderedDict([('id_mutation', '2019-73157'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE RAHON'), ('adresse_code_voie', '0050'), ('code_postal', '25430'), ('code_commune', '25436'), ('nom_commune', 'Orve'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25436000ZC0013'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '125'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '872'), ('longitude', '6.553159'), ('latitude', '47.326462')]), OrderedDict([('id_mutation', '2019-73157'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE RAHON'), ('adresse_code_voie', '0050'), ('code_postal', '25430'), ('code_commune', '25436'), ('nom_commune', 'Orve'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25436000ZC0013'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '125'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6398'), ('longitude', '6.553159'), ('latitude', '47.326462')]), OrderedDict([('id_mutation', '2019-73158'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150600'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0007'), ('code_postal', '25110'), ('code_commune', '25298'), ('nom_commune', 'Grosbois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25298000ZB0060'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3185'), ('longitude', '6.306349'), ('latitude', '47.341179')]), OrderedDict([('id_mutation', '2019-73158'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150600'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0007'), ('code_postal', '25110'), ('code_commune', '25298'), ('nom_commune', 'Grosbois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25298000ZB0060'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1295'), ('longitude', '6.306349'), ('latitude', '47.341179')]), OrderedDict([('id_mutation', '2019-73159'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '60000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX CHAMPS D OMBRE'), ('adresse_code_voie', 'B015'), ('code_postal', '25320'), ('code_commune', '25561'), ('nom_commune', 'Thoraise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25561000AA0202'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1023'), ('longitude', '5.906792'), ('latitude', '47.171053')]), OrderedDict([('id_mutation', '2019-73160'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '61000'), ('adresse_numero', '102'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '21'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.037784'), ('latitude', '47.252741')]), OrderedDict([('id_mutation', '2019-73160'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '61000'), ('adresse_numero', '102'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '69'), ('lot1_surface_carrez', ''), ('lot2_numero', '97'), ('lot2_surface_carrez', '32.52'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '33'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.037784'), ('latitude', '47.252741')]), OrderedDict([('id_mutation', '2019-73161'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '238000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE BEL AIR'), ('adresse_code_voie', '0007'), ('code_postal', '25870'), ('code_commune', '25133'), ('nom_commune', 'Châtillon-le-Duc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25133000AT0187'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '143'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '920'), ('longitude', '6.007922'), ('latitude', '47.304755')]), OrderedDict([('id_mutation', '2019-73162'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1500'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU MOULIN BRULE'), ('adresse_code_voie', 'B173'), ('code_postal', '25340'), ('code_commune', '25276'), ('nom_commune', 'Gondenans-Montby'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252760000B0028'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '33'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '680'), ('longitude', '6.465426'), ('latitude', '47.457301')]), OrderedDict([('id_mutation', '2019-73162'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU MOULIN BRULE'), ('adresse_code_voie', 'B173'), ('code_postal', '25340'), ('code_commune', '25276'), ('nom_commune', 'Gondenans-Montby'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252760000B0029'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '305'), ('longitude', '6.465073'), ('latitude', '47.45774')]), OrderedDict([('id_mutation', '2019-73162'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU MOULIN BRULE'), ('adresse_code_voie', 'B173'), ('code_postal', '25340'), ('code_commune', '25276'), ('nom_commune', 'Gondenans-Montby'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252760000B0030'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '800'), ('longitude', '6.464944'), ('latitude', '47.457669')]), OrderedDict([('id_mutation', '2019-73163'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '256000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES SARMENTS'), ('adresse_code_voie', '0078'), ('code_postal', '25660'), ('code_commune', '25410'), ('nom_commune', 'Morre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25410000AA0656'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '126'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '587'), ('longitude', '6.070197'), ('latitude', '47.227477')]), OrderedDict([('id_mutation', '2019-73163'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '256000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CROIX ROUGE'), ('adresse_code_voie', 'B025'), ('code_postal', '25660'), ('code_commune', '25410'), ('nom_commune', 'Morre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25410000AA0659'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '14'), ('longitude', '6.070045'), ('latitude', '47.22756')]), OrderedDict([('id_mutation', '2019-73164'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '382000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE CAMILLE DESMOULINS'), ('adresse_code_voie', '0597'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CN0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '116'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1265'), ('longitude', '6.050583'), ('latitude', '47.248395')]), OrderedDict([('id_mutation', '2019-73165'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '95800'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ALL DES BRUYERES'), ('adresse_code_voie', '0580'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BN0269'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '296'), ('lot1_surface_carrez', '81.38'), ('lot2_numero', '310'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02403'), ('latitude', '47.257605')]), OrderedDict([('id_mutation', '2019-73165'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '95800'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ALL DES BRUYERES'), ('adresse_code_voie', '0580'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BN0269'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '747'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02403'), ('latitude', '47.257605')]), OrderedDict([('id_mutation', '2019-73166'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '62000'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D ARENES'), ('adresse_code_voie', '0210'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AX0109'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '109'), ('lot1_surface_carrez', '32.7'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '36'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01916'), ('latitude', '47.239462')]), OrderedDict([('id_mutation', '2019-73167'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '50000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BATTANT'), ('adresse_code_voie', '0330'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AY0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '24'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '2'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.020423'), ('latitude', '47.240437')]), OrderedDict([('id_mutation', '2019-73167'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '50000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BATTANT'), ('adresse_code_voie', '0330'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AY0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', '25.47'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '27'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.020423'), ('latitude', '47.240437')]), OrderedDict([('id_mutation', '2019-73168'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65000'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE FREDERIC BATAILLE'), ('adresse_code_voie', '2160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0319'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', '44.58'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '44'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.023082'), ('latitude', '47.251197')]), OrderedDict([('id_mutation', '2019-73169'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '131000'), ('adresse_numero', '26'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE XAVIER MARMIER'), ('adresse_code_voie', '5380'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0351'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '62'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', '66.14'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.008819'), ('latitude', '47.241947')]), OrderedDict([('id_mutation', '2019-73170'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '146632'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAILLOT'), ('adresse_code_voie', '0780'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HV0319'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '198'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '10'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013041'), ('latitude', '47.251206')]), OrderedDict([('id_mutation', '2019-73170'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '146632'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAILLOT'), ('adresse_code_voie', '0780'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HV0319'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '119'), ('lot1_surface_carrez', '42.66'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '43'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013041'), ('latitude', '47.251206')]), OrderedDict([('id_mutation', '2019-73171'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '117000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MOUILLERE'), ('adresse_code_voie', '3580'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '21'), ('lot1_surface_carrez', ''), ('lot2_numero', '40'), ('lot2_surface_carrez', '70.42'), ('lot3_numero', '68'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033461'), ('latitude', '47.242592')]), OrderedDict([('id_mutation', '2019-73172'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '30000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL DE L EUROPE'), ('adresse_code_voie', '1914'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EP0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '33'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.97322'), ('latitude', '47.218679')]), OrderedDict([('id_mutation', '2019-73173'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '62000'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE RONCHAUX'), ('adresse_code_voie', '4550'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AM0009'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '213'), ('lot1_surface_carrez', '21.64'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '22'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.027727'), ('latitude', '47.234088')]), OrderedDict([('id_mutation', '2019-73174'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '195250'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L ECOLE LEPETIT'), ('adresse_code_voie', '0068'), ('code_postal', '25220'), ('code_commune', '25575'), ('nom_commune', 'Vaire'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25575576AB0005'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '912'), ('longitude', '6.146102'), ('latitude', '47.287722')]), OrderedDict([('id_mutation', '2019-73175'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '190000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MOUILLERE'), ('adresse_code_voie', '3580'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0248'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '68'), ('lot1_surface_carrez', '89'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '85'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032041'), ('latitude', '47.243272')]), OrderedDict([('id_mutation', '2019-73175'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '190000'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MOUILLERE'), ('adresse_code_voie', '3580'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0248'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '119'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032041'), ('latitude', '47.243272')]), OrderedDict([('id_mutation', '2019-73176'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '17'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'RUE TRIDARD'), ('adresse_code_voie', '0045'), ('code_postal', '25430'), ('code_commune', '25529'), ('nom_commune', 'Sancey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255290000F0812'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '8'), ('lot1_surface_carrez', '98.55'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.578822'), ('latitude', '47.29429')]), OrderedDict([('id_mutation', '2019-73176'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '17'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'RUE TRIDARD'), ('adresse_code_voie', '0045'), ('code_postal', '25430'), ('code_commune', '25529'), ('nom_commune', 'Sancey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255290000F0812'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '8'), ('lot1_surface_carrez', '98.55'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '95'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.578822'), ('latitude', '47.29429')]), OrderedDict([('id_mutation', '2019-73177'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10950'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VIGNOTTES'), ('adresse_code_voie', 'B299'), ('code_postal', '25430'), ('code_commune', '25529'), ('nom_commune', 'Sancey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255295300B0171'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2190'), ('longitude', '6.590142'), ('latitude', '47.308756')]), OrderedDict([('id_mutation', '2019-73178'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '213200'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES VISONS'), ('adresse_code_voie', '0312'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AN0345'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '644'), ('longitude', '5.826283'), ('latitude', '47.183122')]), OrderedDict([('id_mutation', '2019-73179'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '21'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE CLAUDE POUILLET'), ('adresse_code_voie', '1260'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AW0102'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '31'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02058'), ('latitude', '47.238744')]), OrderedDict([('id_mutation', '2019-73180'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '192500'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ARONDES'), ('adresse_code_voie', '0001'), ('code_postal', '25660'), ('code_commune', '25532'), ('nom_commune', 'Saône'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25532000AA0120'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '750'), ('longitude', '6.117979'), ('latitude', '47.226667')]), OrderedDict([('id_mutation', '2019-73181'), ('date_mutation', '2019-05-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP ANTOINE FRANCOIS MOMORO'), ('adresse_code_voie', '3464'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DY0298'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '89'), ('longitude', '5.992945'), ('latitude', '47.232591')]), OrderedDict([('id_mutation', '2019-73182'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '107850'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANGES'), ('adresse_code_voie', '2510'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AD0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', '33.98'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '45'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.024279'), ('latitude', '47.238814')]), OrderedDict([('id_mutation', '2019-73183'), ('date_mutation', '2019-05-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '202500'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DES CHAMPS PASSERET'), ('adresse_code_voie', '0883'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BT0261'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '122'), ('longitude', '6.033837'), ('latitude', '47.262023')]), OrderedDict([('id_mutation', '2019-73184'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA BARRIERE'), ('adresse_code_voie', 'B001'), ('code_postal', '25170'), ('code_commune', '25448'), ('nom_commune', 'Pelousey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25448000AD0014'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2497'), ('longitude', '5.92134'), ('latitude', '47.276065')]), OrderedDict([('id_mutation', '2019-73185'), ('date_mutation', '2019-05-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '605000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CRETOT'), ('adresse_code_voie', '0085'), ('code_postal', '25320'), ('code_commune', '25397'), ('nom_commune', 'Montferrand-le-Château'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25397000AK0126'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '225'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '5.899754'), ('latitude', '47.186223')]), OrderedDict([('id_mutation', '2019-73185'), ('date_mutation', '2019-05-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '605000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CRETOT'), ('adresse_code_voie', '0085'), ('code_postal', '25320'), ('code_commune', '25397'), ('nom_commune', 'Montferrand-le-Château'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25397000AK0126'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '225'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', 'PARC'), ('nature_culture_speciale', 'Parc'), ('surface_terrain', '7165'), ('longitude', '5.899754'), ('latitude', '47.186223')]), OrderedDict([('id_mutation', '2019-73186'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '133000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA CITE'), ('adresse_code_voie', '0460'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000AT0084'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '493'), ('longitude', '6.349863'), ('latitude', '47.351664')]), OrderedDict([('id_mutation', '2019-73187'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '108540'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU ROUSSILLON'), ('adresse_code_voie', '4600'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DX0005'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '27'), ('lot1_surface_carrez', '72.54'), ('lot2_numero', '28'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.003222'), ('latitude', '47.240069')]), OrderedDict([('id_mutation', '2019-73188'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BOIS DU GRAVIER'), ('adresse_code_voie', 'B010'), ('code_postal', '25430'), ('code_commune', '25529'), ('nom_commune', 'Sancey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255290000B0608'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '7135'), ('longitude', '6.605357'), ('latitude', '47.279686')]), OrderedDict([('id_mutation', '2019-73189'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '143000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE HENRI ET MAURICE  BAIGUE'), ('adresse_code_voie', '2630'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BN0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '80'), ('lot1_surface_carrez', ''), ('lot2_numero', '96'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '56'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.025977'), ('latitude', '47.253657')]), OrderedDict([('id_mutation', '2019-73189'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '143000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE HENRI ET MAURICE  BAIGUE'), ('adresse_code_voie', '2630'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BN0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '188'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.025977'), ('latitude', '47.253657')]), OrderedDict([('id_mutation', '2019-73190'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '190000'), ('adresse_numero', '34'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE NATIONALE 57'), ('adresse_code_voie', '0031'), ('code_postal', '25620'), ('code_commune', '25364'), ('nom_commune', 'Mamirolle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25364000AH0210'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '50'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1285'), ('longitude', '6.158903'), ('latitude', '47.197165')]), OrderedDict([('id_mutation', '2019-73190'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '190000'), ('adresse_numero', '34'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0029'), ('code_postal', '25620'), ('code_commune', '25364'), ('nom_commune', 'Mamirolle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25364000AH0220'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '147'), ('longitude', '6.158687'), ('latitude', '47.197238')]), OrderedDict([('id_mutation', '2019-73191'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE L HOPITAL'), ('adresse_code_voie', 'B047'), ('code_postal', '25170'), ('code_commune', '25448'), ('nom_commune', 'Pelousey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25448000AA0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1244'), ('longitude', '5.916709'), ('latitude', '47.275311')]), OrderedDict([('id_mutation', '2019-73192'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JEAN LASLANDES'), ('adresse_code_voie', '3050'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HW0532'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '24'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018953'), ('latitude', '47.248307')]), OrderedDict([('id_mutation', '2019-73193'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BOIS DU GRAVIER'), ('adresse_code_voie', 'B010'), ('code_postal', '25430'), ('code_commune', '25529'), ('nom_commune', 'Sancey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255290000B0607'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '7134'), ('longitude', '6.605872'), ('latitude', '47.280028')]), OrderedDict([('id_mutation', '2019-73194'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '215000'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA PERRIERE'), ('adresse_code_voie', '0107'), ('code_postal', '25640'), ('code_commune', '25508'), ('nom_commune', 'Roulans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25508000AB0404'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1116'), ('longitude', '6.237843'), ('latitude', '47.318017')]), OrderedDict([('id_mutation', '2019-73195'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '231500'), ('adresse_numero', '34'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DES VIGNES'), ('adresse_code_voie', '0540'), ('code_postal', '25220'), ('code_commune', '25495'), ('nom_commune', 'Roche-lez-Beaupré'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25495000AM0228'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '140'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '809'), ('longitude', '6.105684'), ('latitude', '47.275724')]), OrderedDict([('id_mutation', '2019-73196'), ('date_mutation', '2019-05-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '56000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE L ILE DE FRANCE'), ('adresse_code_voie', '2750'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EO0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '452'), ('lot1_surface_carrez', '82.1'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '82'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.968171'), ('latitude', '47.222114')]), OrderedDict([('id_mutation', '2019-73197'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '227500'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES TILLEULS'), ('adresse_code_voie', '0106'), ('code_postal', '25480'), ('code_commune', '25212'), ('nom_commune', 'École-Valentin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25212000AK0536'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '8'), ('lot1_surface_carrez', '108'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '110'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.984407'), ('latitude', '47.267059')]), OrderedDict([('id_mutation', '2019-73197'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '227500'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES TILLEULS'), ('adresse_code_voie', '0106'), ('code_postal', '25480'), ('code_commune', '25212'), ('nom_commune', 'École-Valentin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25212000AK0536'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.984407'), ('latitude', '47.267059')]), OrderedDict([('id_mutation', '2019-73197'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '227500'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES TILLEULS'), ('adresse_code_voie', '0106'), ('code_postal', '25480'), ('code_commune', '25212'), ('nom_commune', 'École-Valentin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25212000AK0536'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '24'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.984407'), ('latitude', '47.267059')]), OrderedDict([('id_mutation', '2019-73198'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '75000'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FLANDRES DUNKERQUE'), ('adresse_code_voie', '1980'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000ER0229'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '41'), ('lot1_surface_carrez', '88.42'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.977661'), ('latitude', '47.225393')]), OrderedDict([('id_mutation', '2019-73199'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '132800'), ('adresse_numero', '53'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANGES'), ('adresse_code_voie', '2510'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0025'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', '55.3'), ('lot2_numero', '6'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '61'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026284'), ('latitude', '47.238339')]), OrderedDict([('id_mutation', '2019-73200'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '275000'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV FONTAINE ARGENT'), ('adresse_code_voie', '2030'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CV0521'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '243'), ('lot1_surface_carrez', ''), ('lot2_numero', '281'), ('lot2_surface_carrez', '77.7'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '78'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033142'), ('latitude', '47.246357')]), OrderedDict([('id_mutation', '2019-73200'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '275000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ALEXIS CHOPARD'), ('adresse_code_voie', '0080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CV0521'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '89'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033142'), ('latitude', '47.246357')]), OrderedDict([('id_mutation', '2019-73200'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '275000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ALEXIS CHOPARD'), ('adresse_code_voie', '0080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CV0521'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '155'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033142'), ('latitude', '47.246357')]), OrderedDict([('id_mutation', '2019-73201'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '300'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VIGNES DES VERPILLERES'), ('adresse_code_voie', 'B101'), ('code_postal', '25250'), ('code_commune', '25264'), ('nom_commune', 'Gémonval'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25264000ZI0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2978'), ('longitude', '6.570852'), ('latitude', '47.531112')]), OrderedDict([('id_mutation', '2019-73202'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161000'), ('adresse_numero', '5107'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SAINT NICOLE'), ('adresse_code_voie', 'B089'), ('code_postal', '25440'), ('code_commune', '25109'), ('nom_commune', 'Cessey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25109000AB0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '5.916181'), ('latitude', '47.115843')]), OrderedDict([('id_mutation', '2019-73202'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161000'), ('adresse_numero', '5107'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SAINT NICOLE'), ('adresse_code_voie', 'B089'), ('code_postal', '25440'), ('code_commune', '25109'), ('nom_commune', 'Cessey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25109000AB0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '785'), ('longitude', '5.916181'), ('latitude', '47.115843')]), OrderedDict([('id_mutation', '2019-73202'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SAINT NICOLE'), ('adresse_code_voie', 'B089'), ('code_postal', '25440'), ('code_commune', '25109'), ('nom_commune', 'Cessey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25109000AB0032'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '120'), ('longitude', '5.915815'), ('latitude', '47.115951')]), OrderedDict([('id_mutation', '2019-73203'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '278000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LOT. CHAMP LA PAULE'), ('adresse_code_voie', '0013'), ('code_postal', '25870'), ('code_commune', '25382'), ('nom_commune', 'Moncey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25382000ZB0169'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '196'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', 'PARC'), ('nature_culture_speciale', 'Parc'), ('surface_terrain', '531'), ('longitude', '6.123144'), ('latitude', '47.364828')]), OrderedDict([('id_mutation', '2019-73203'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '278000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LOT. CHAMP LA PAULE'), ('adresse_code_voie', '0013'), ('code_postal', '25870'), ('code_commune', '25382'), ('nom_commune', 'Moncey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25382000ZB0169'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '196'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.123144'), ('latitude', '47.364828')]), OrderedDict([('id_mutation', '2019-73204'), ('date_mutation', '2019-05-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '49000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA BUTTE'), ('adresse_code_voie', '0585'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0273'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '151'), ('lot1_surface_carrez', '21'), ('lot2_numero', '31'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '26'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.011351'), ('latitude', '47.23405')]), OrderedDict([('id_mutation', '2019-73204'), ('date_mutation', '2019-05-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '49000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA BUTTE'), ('adresse_code_voie', '0585'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0273'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '78'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.011351'), ('latitude', '47.23405')]), OrderedDict([('id_mutation', '2019-73205'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG BRIAND'), ('adresse_code_voie', '0149'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AR0347'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.805019'), ('latitude', '47.179925')]), OrderedDict([('id_mutation', '2019-73205'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG BRIAND'), ('adresse_code_voie', '0149'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AR0347'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.805019'), ('latitude', '47.179925')]), OrderedDict([('id_mutation', '2019-73205'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG BRIAND'), ('adresse_code_voie', '0149'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AR0347'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', '92.32'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '92'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.805019'), ('latitude', '47.179925')]), OrderedDict([('id_mutation', '2019-73205'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG BRIAND'), ('adresse_code_voie', '0149'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AR0347'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.805019'), ('latitude', '47.179925')]), OrderedDict([('id_mutation', '2019-73206'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PROUDHON'), ('adresse_code_voie', '4280'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0169'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '69.4'), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '69'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.027733'), ('latitude', '47.238257')]), OrderedDict([('id_mutation', '2019-73207'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '66000'), ('adresse_numero', '57'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HV0052'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '19'), ('lot1_surface_carrez', '44.31'), ('lot2_numero', '21'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '41'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.014946'), ('latitude', '47.254063')]), OrderedDict([('id_mutation', '2019-73208'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348540'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', '35.11'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '18'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035439'), ('latitude', '47.252014')]), OrderedDict([('id_mutation', '2019-73208'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348540'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', '56.26'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '27'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035439'), ('latitude', '47.252014')]), OrderedDict([('id_mutation', '2019-73208'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348540'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', '56.26'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '27'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035439'), ('latitude', '47.252014')]), OrderedDict([('id_mutation', '2019-73208'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348540'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', '3'), ('lot3_surface_carrez', '72.51'), ('lot4_numero', '4'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '104'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035439'), ('latitude', '47.252014')]), OrderedDict([('id_mutation', '2019-73208'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348540'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '7'), ('lot1_surface_carrez', '41.6'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '53'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035439'), ('latitude', '47.252014')]), OrderedDict([('id_mutation', '2019-73208'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348540'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', '35.11'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '36'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035439'), ('latitude', '47.252014')]), OrderedDict([('id_mutation', '2019-73208'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348540'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035439'), ('latitude', '47.252014')]), OrderedDict([('id_mutation', '2019-73209'), ('date_mutation', '2019-05-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '138750'), ('adresse_numero', '50'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE MONTRAPON'), ('adresse_code_voie', '3530'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HR0117'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', '6'), ('lot2_surface_carrez', '13.83'), ('lot3_numero', '8'), ('lot3_surface_carrez', '65.73'), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '77'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.005502'), ('latitude', '47.248285')]), OrderedDict([('id_mutation', '2019-73209'), ('date_mutation', '2019-05-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '138750'), ('adresse_numero', '50'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE MONTRAPON'), ('adresse_code_voie', '3530'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HR0117'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.005502'), ('latitude', '47.248285')]), OrderedDict([('id_mutation', '2019-73210'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100900'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES VIGNERONS'), ('adresse_code_voie', '5250'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DZ0346'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '35'), ('lot1_surface_carrez', '49.14'), ('lot2_numero', '62'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '49'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.991132'), ('latitude', '47.228896')]), OrderedDict([('id_mutation', '2019-73210'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100900'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES VIGNERONS'), ('adresse_code_voie', '5250'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DZ0346'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '33'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.991132'), ('latitude', '47.228896')]), OrderedDict([('id_mutation', '2019-73211'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '88350'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES SAULNIERS'), ('adresse_code_voie', '4720'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EZ0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '174'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.992315'), ('latitude', '47.244965')]), OrderedDict([('id_mutation', '2019-73211'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '88350'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES SAULNIERS'), ('adresse_code_voie', '4720'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EZ0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '135'), ('lot1_surface_carrez', '45.2'), ('lot2_numero', '84'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '45'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.992315'), ('latitude', '47.244965')]), OrderedDict([('id_mutation', '2019-73212'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '196900'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CHATEAU'), ('adresse_code_voie', '0006'), ('code_postal', '25170'), ('code_commune', '25150'), ('nom_commune', "Chevigney-sur-l'Ognon"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25150000ZB0091'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '880'), ('longitude', '5.843062'), ('latitude', '47.29891')]), OrderedDict([('id_mutation', '2019-73213'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '119000'), ('adresse_numero', '26'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0059'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '216'), ('lot1_surface_carrez', ''), ('lot2_numero', '267'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '55'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979867'), ('latitude', '47.240992')]), OrderedDict([('id_mutation', '2019-73213'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '119000'), ('adresse_numero', '26'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0059'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '304'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979867'), ('latitude', '47.240992')]), OrderedDict([('id_mutation', '2019-73214'), ('date_mutation', '2019-05-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '123400'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DELACOUR'), ('adresse_code_voie', '0028'), ('code_postal', '25340'), ('code_commune', '25156'), ('nom_commune', 'Pays-de-Clerval'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251560000A0425'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '854'), ('longitude', '6.492251'), ('latitude', '47.399267')]), OrderedDict([('id_mutation', '2019-73215'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '58000'), ('adresse_numero', '46'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JEAN WYRSCH'), ('adresse_code_voie', '2860'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BK0166'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '155'), ('lot1_surface_carrez', ''), ('lot2_numero', '165'), ('lot2_surface_carrez', '56.83'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.020689'), ('latitude', '47.257354')]), OrderedDict([('id_mutation', '2019-73216'), ('date_mutation', '2019-05-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '134000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '201'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73216'), ('date_mutation', '2019-05-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '134000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '60'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73216'), ('date_mutation', '2019-05-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '134000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '297'), ('lot1_surface_carrez', '75.04'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73217'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '113000'), ('adresse_numero', '55'), ('adresse_suffixe', 'I'), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DZ0076'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '126'), ('lot1_surface_carrez', '65.92'), ('lot2_numero', '196'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.997447'), ('latitude', '47.230439')]), OrderedDict([('id_mutation', '2019-73218'), ('date_mutation', '2019-05-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '379200'), ('adresse_numero', '5126'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LOT L OREE DU BOIS'), ('adresse_code_voie', 'A045'), ('code_postal', '25870'), ('code_commune', '25557'), ('nom_commune', 'Tallenay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25557000ZB0234'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '117'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '6.023142'), ('latitude', '47.303567')]), OrderedDict([('id_mutation', '2019-73218'), ('date_mutation', '2019-05-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '379200'), ('adresse_numero', '5126'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LOT L OREE DU BOIS'), ('adresse_code_voie', 'A045'), ('code_postal', '25870'), ('code_commune', '25557'), ('nom_commune', 'Tallenay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25557000ZB0234'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '117'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1286'), ('longitude', '6.023142'), ('latitude', '47.303567')]), OrderedDict([('id_mutation', '2019-73219'), ('date_mutation', '2019-05-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '391250'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES GRANDS BAS'), ('adresse_code_voie', '2470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BL0020'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '78'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '643'), ('longitude', '6.014585'), ('latitude', '47.257408')]), OrderedDict([('id_mutation', '2019-73220'), ('date_mutation', '2019-05-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '243000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE HELENE BOUCHER'), ('adresse_code_voie', '0133'), ('code_postal', '25220'), ('code_commune', '25560'), ('nom_commune', 'Thise'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25560000AD0345'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '165'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '546'), ('longitude', '6.081953'), ('latitude', '47.279621')]), OrderedDict([('id_mutation', '2019-73221'), ('date_mutation', '2019-05-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '76100'), ('adresse_numero', '122'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0417'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', '43.53'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '43'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.040227'), ('latitude', '47.254947')]), OrderedDict([('id_mutation', '2019-73222'), ('date_mutation', '2019-05-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '130000'), ('adresse_numero', '3'), ('adresse_suffixe', 'H'), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BO0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '404.64'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '450'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.029247'), ('latitude', '47.252114')]), OrderedDict([('id_mutation', '2019-73223'), ('date_mutation', '2019-05-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8500'), ('adresse_numero', '102'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0332'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '119'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.039732'), ('latitude', '47.258551')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '490'), ('longitude', '6.023667'), ('latitude', '47.224124')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0026'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', 'SPORT'), ('nature_culture_speciale', 'Terrain de sport'), ('surface_terrain', '648'), ('longitude', '6.022806'), ('latitude', '47.223727')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0026'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5622'), ('longitude', '6.022806'), ('latitude', '47.223727')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', '4'), ('adresse_suffixe', '5'), ('adresse_nom_voie', 'CHE DES ECHENOZ DE VELOTTE'), ('adresse_code_voie', '1660'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0027'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '182'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '690'), ('longitude', '6.02315'), ('latitude', '47.223547')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0028'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1553'), ('longitude', '6.024242'), ('latitude', '47.223612')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', '45'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ECHENOZ DE VELOTTE'), ('adresse_code_voie', '1660'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0029'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '349'), ('longitude', '6.023768'), ('latitude', '47.223688')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0030'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '852'), ('longitude', '6.024001'), ('latitude', '47.223939')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1523'), ('longitude', '6.024441'), ('latitude', '47.223833')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0032'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1050'), ('longitude', '6.024864'), ('latitude', '47.223864')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0033'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '743'), ('longitude', '6.025039'), ('latitude', '47.223595')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0034'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5755'), ('longitude', '6.026211'), ('latitude', '47.223757')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE BOUEZ'), ('adresse_code_voie', '0485'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0035'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5380'), ('longitude', '6.028196'), ('latitude', '47.223768')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0045'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4565'), ('longitude', '6.025171'), ('latitude', '47.223171')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0046'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5375'), ('longitude', '6.023971'), ('latitude', '47.223209')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0047'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '849'), ('longitude', '6.022809'), ('latitude', '47.22326')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', '45'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ECHENOZ DE VELOTTE'), ('adresse_code_voie', '1660'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0048'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '46'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '943'), ('longitude', '6.02294'), ('latitude', '47.223086')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', '45'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ECHENOZ DE VELOTTE'), ('adresse_code_voie', '1660'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0048'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '51'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '943'), ('longitude', '6.02294'), ('latitude', '47.223086')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', '45'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ECHENOZ DE VELOTTE'), ('adresse_code_voie', '1660'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0048'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '943'), ('longitude', '6.02294'), ('latitude', '47.223086')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0049'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2245'), ('longitude', '6.023331'), ('latitude', '47.222922')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0086'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1457'), ('longitude', '6.024009'), ('latitude', '47.222796')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0087'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3955'), ('longitude', '6.026319'), ('latitude', '47.223342')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '820'), ('longitude', '6.026163'), ('latitude', '47.22315')]), OrderedDict([('id_mutation', '2019-73224'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '697000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ECHENOZ DE BOUEZ'), ('adresse_code_voie', 'B131'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IO0091'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '628'), ('longitude', '6.023063'), ('latitude', '47.224097')]), OrderedDict([('id_mutation', '2019-73225'), ('date_mutation', '2019-05-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '282800'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MALTIERE'), ('adresse_code_voie', '0017'), ('code_postal', '25660'), ('code_commune', '25267'), ('nom_commune', 'Gennes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25267000AA0186'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '147'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '994'), ('longitude', '6.126046'), ('latitude', '47.243243')]), OrderedDict([('id_mutation', '2019-73226'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '228000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA THERE'), ('adresse_code_voie', '0120'), ('code_postal', '25870'), ('code_commune', '25265'), ('nom_commune', 'Geneuille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25265000ZD0398'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1712'), ('longitude', '5.965756'), ('latitude', '47.321166')]), OrderedDict([('id_mutation', '2019-73226'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '228000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CONTOUR DES COMBES'), ('adresse_code_voie', 'B018'), ('code_postal', '25870'), ('code_commune', '25265'), ('nom_commune', 'Geneuille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25265000ZD0399'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '59'), ('longitude', '5.96619'), ('latitude', '47.321173')]), OrderedDict([('id_mutation', '2019-73227'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65200'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LUXEMBOURG'), ('adresse_code_voie', '3215'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EO0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '223'), ('lot1_surface_carrez', ''), ('lot2_numero', '250'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '82'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.968171'), ('latitude', '47.222114')]), OrderedDict([('id_mutation', '2019-73227'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65200'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LUXEMBOURG'), ('adresse_code_voie', '3215'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EO0262'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '124'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.967401'), ('latitude', '47.22251')]), OrderedDict([('id_mutation', '2019-73228'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182100'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV EDOUARD DROZ'), ('adresse_code_voie', '1730'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CX0147'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '194'), ('lot1_surface_carrez', ''), ('lot2_numero', '209'), ('lot2_surface_carrez', '111.28'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '117'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.03346'), ('latitude', '47.241218')]), OrderedDict([('id_mutation', '2019-73228'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182100'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV EDOUARD DROZ'), ('adresse_code_voie', '1730'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CX0147'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '390'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.03346'), ('latitude', '47.241218')]), OrderedDict([('id_mutation', '2019-73229'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '268450'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PLATINE'), ('adresse_code_voie', '0051'), ('code_postal', '25480'), ('code_commune', '25212'), ('nom_commune', 'École-Valentin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25212581AO0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '120'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '751'), ('longitude', '5.999152'), ('latitude', '47.274627')]), OrderedDict([('id_mutation', '2019-73229'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '268450'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VAUX DESSUS'), ('adresse_code_voie', 'B078'), ('code_postal', '25480'), ('code_commune', '25212'), ('nom_commune', 'École-Valentin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25212581AO0155'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '508'), ('longitude', '5.998935'), ('latitude', '47.274638')]), OrderedDict([('id_mutation', '2019-73230'), ('date_mutation', '2019-05-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78500'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU VIVARAIS'), ('adresse_code_voie', '5355'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000LR0055'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '17'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '67'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.9635'), ('latitude', '47.218327')]), OrderedDict([('id_mutation', '2019-73231'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '50000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '32'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.0343'), ('latitude', '47.254431')]), OrderedDict([('id_mutation', '2019-73231'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '50000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE RESAL'), ('adresse_code_voie', '4440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '111'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '23'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.0343'), ('latitude', '47.254431')]), OrderedDict([('id_mutation', '2019-73232'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '64000'), ('adresse_numero', '40'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VELOTTE'), ('adresse_code_voie', '5110'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DS0215'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '38'), ('lot1_surface_carrez', ''), ('lot2_numero', '75'), ('lot2_surface_carrez', '28.4'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '29'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013094'), ('latitude', '47.221876')]), OrderedDict([('id_mutation', '2019-73232'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '64000'), ('adresse_numero', '40'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VELOTTE'), ('adresse_code_voie', '5110'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DS0215'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '25'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013094'), ('latitude', '47.221876')]), OrderedDict([('id_mutation', '2019-73233'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '67000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MUGUET'), ('adresse_code_voie', '3610'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '216'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.047337'), ('latitude', '47.264985')]), OrderedDict([('id_mutation', '2019-73233'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '67000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MUGUET'), ('adresse_code_voie', '3610'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '59'), ('lot1_surface_carrez', ''), ('lot2_numero', '60'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '59'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.047337'), ('latitude', '47.264985')]), OrderedDict([('id_mutation', '2019-73234'), ('date_mutation', '2019-05-14'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '339000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAILLOT'), ('adresse_code_voie', '0780'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HV0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '87'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.011032'), ('latitude', '47.252542')]), OrderedDict([('id_mutation', '2019-73234'), ('date_mutation', '2019-05-14'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '339000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAILLOT'), ('adresse_code_voie', '0780'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HV0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '72'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.011032'), ('latitude', '47.252542')]), OrderedDict([('id_mutation', '2019-73234'), ('date_mutation', '2019-05-14'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '339000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAILLOT'), ('adresse_code_voie', '0780'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HV0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '73'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.011032'), ('latitude', '47.252542')]), OrderedDict([('id_mutation', '2019-73234'), ('date_mutation', '2019-05-14'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '339000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAILLOT'), ('adresse_code_voie', '0780'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HV0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '88'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.011032'), ('latitude', '47.252542')]), OrderedDict([('id_mutation', '2019-73235'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165600'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0029'), ('code_postal', '25620'), ('code_commune', '25364'), ('nom_commune', 'Mamirolle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25364000AI0028'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '77'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '321'), ('longitude', '6.159384'), ('latitude', '47.196921')]), OrderedDict([('id_mutation', '2019-73235'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165600'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0029'), ('code_postal', '25620'), ('code_commune', '25364'), ('nom_commune', 'Mamirolle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25364000AI0028'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '87'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '321'), ('longitude', '6.159384'), ('latitude', '47.196921')]), OrderedDict([('id_mutation', '2019-73235'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165600'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0029'), ('code_postal', '25620'), ('code_commune', '25364'), ('nom_commune', 'Mamirolle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25364000AI0028'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '321'), ('longitude', '6.159384'), ('latitude', '47.196921')]), OrderedDict([('id_mutation', '2019-73236'), ('date_mutation', '2019-05-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '39000'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ECOLES'), ('adresse_code_voie', '0070'), ('code_postal', '25960'), ('code_commune', '25197'), ('nom_commune', 'Deluz'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25197000AC0090'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', ''), ('lot2_numero', '26'), ('lot2_surface_carrez', ''), ('lot3_numero', '79'), ('lot3_surface_carrez', ''), ('lot4_numero', '8'), ('lot4_surface_carrez', '39.49'), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '35'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.203481'), ('latitude', '47.29477')]), OrderedDict([('id_mutation', '2019-73237'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '325000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MIRABEAU'), ('adresse_code_voie', '3461'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CN0389'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '153'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '824'), ('longitude', '6.052343'), ('latitude', '47.246078')]), OrderedDict([('id_mutation', '2019-73237'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '325000'), ('adresse_numero', '33'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE MIRABEAU'), ('adresse_code_voie', '3461'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CN0392'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '123'), ('longitude', '6.052161'), ('latitude', '47.246123')]), OrderedDict([('id_mutation', '2019-73238'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '43100'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA TRAVERSE'), ('adresse_code_voie', '0340'), ('code_postal', '25680'), ('code_commune', '25505'), ('nom_commune', 'Rougemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25505000AL0554'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '7'), ('lot1_surface_carrez', '73.3'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.355054'), ('latitude', '47.479089')]), OrderedDict([('id_mutation', '2019-73239'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '57900'), ('adresse_numero', '31'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BO0227'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '17'), ('lot1_surface_carrez', '60.1'), ('lot2_numero', '6'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.027769'), ('latitude', '47.247632')]), OrderedDict([('id_mutation', '2019-73240'), ('date_mutation', '2019-05-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '188000'), ('adresse_numero', '137'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '2440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AL0093'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', '67.96'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '69'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.029166'), ('latitude', '47.235192')]), OrderedDict([('id_mutation', '2019-73241'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '70000'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU TUNNEL'), ('adresse_code_voie', '5010'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0261'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018879'), ('latitude', '47.254797')]), OrderedDict([('id_mutation', '2019-73241'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '70000'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU TUNNEL'), ('adresse_code_voie', '5010'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0261'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '48'), ('lot1_surface_carrez', '42.84'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '44'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018879'), ('latitude', '47.254797')]), OrderedDict([('id_mutation', '2019-73242'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '400000'), ('adresse_numero', '10'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '225'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5133'), ('longitude', '5.995347'), ('latitude', '47.240022')]), OrderedDict([('id_mutation', '2019-73242'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '400000'), ('adresse_numero', '10'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '4144'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5133'), ('longitude', '5.995347'), ('latitude', '47.240022')]), OrderedDict([('id_mutation', '2019-73242'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '400000'), ('adresse_numero', '10'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '225'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5133'), ('longitude', '5.995347'), ('latitude', '47.240022')]), OrderedDict([('id_mutation', '2019-73243'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '85000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES BROSSES'), ('adresse_code_voie', '0560'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HW0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '33'), ('lot1_surface_carrez', ''), ('lot2_numero', '59'), ('lot2_surface_carrez', '40.61'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '40'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012266'), ('latitude', '47.247027')]), OrderedDict([('id_mutation', '2019-73243'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '85000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES BROSSES'), ('adresse_code_voie', '0560'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HW0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012266'), ('latitude', '47.247027')]), OrderedDict([('id_mutation', '2019-73244'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124000'), ('adresse_numero', '53'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EMILE PICARD'), ('adresse_code_voie', '1770'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CT0175'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.041387'), ('latitude', '47.244982')]), OrderedDict([('id_mutation', '2019-73244'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124000'), ('adresse_numero', '53'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EMILE PICARD'), ('adresse_code_voie', '1770'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CT0175'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', '58.63'), ('lot2_numero', '11'), ('lot2_surface_carrez', ''), ('lot3_numero', '3'), ('lot3_surface_carrez', ''), ('lot4_numero', '6'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '55'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.041387'), ('latitude', '47.244982')]), OrderedDict([('id_mutation', '2019-73245'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '77500'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE OLYMPE DE GOUGES'), ('adresse_code_voie', '0016'), ('code_postal', '25220'), ('code_commune', '25112'), ('nom_commune', 'Chalezeule'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25112000AV0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '255'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.060664'), ('latitude', '47.247635')]), OrderedDict([('id_mutation', '2019-73245'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '77500'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE OLYMPE DE GOUGES'), ('adresse_code_voie', '0016'), ('code_postal', '25220'), ('code_commune', '25112'), ('nom_commune', 'Chalezeule'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25112000AV0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '141'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.060664'), ('latitude', '47.247635')]), OrderedDict([('id_mutation', '2019-73245'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '77500'), ('adresse_numero', '24'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE OLYMPE DE GOUGES'), ('adresse_code_voie', '0016'), ('code_postal', '25220'), ('code_commune', '25112'), ('nom_commune', 'Chalezeule'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25112000AV0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', '59.65'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.060664'), ('latitude', '47.247635')]), OrderedDict([('id_mutation', '2019-73246'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80500'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU ONZE NOVEMBRE'), ('adresse_code_voie', '3715'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0106'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '88'), ('lot1_surface_carrez', '56.3'), ('lot2_numero', '89'), ('lot2_surface_carrez', ''), ('lot3_numero', '90'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '55'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.042194'), ('latitude', '47.258352')]), OrderedDict([('id_mutation', '2019-73247'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BD DIDEROT'), ('adresse_code_voie', '1553'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0310'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '104'), ('lot1_surface_carrez', '43.03'), ('lot2_numero', '99'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '39'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033775'), ('latitude', '47.242999')]), OrderedDict([('id_mutation', '2019-73248'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '129900'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP LES PIECES'), ('adresse_code_voie', '0043'), ('code_postal', '25320'), ('code_commune', '25001'), ('nom_commune', 'Abbans-Dessous'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25001000ZC0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1031'), ('longitude', '5.876087'), ('latitude', '47.134126')]), OrderedDict([('id_mutation', '2019-73248'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '129900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX PIECES'), ('adresse_code_voie', 'B073'), ('code_postal', '25320'), ('code_commune', '25001'), ('nom_commune', 'Abbans-Dessous'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25001000ZC0062'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '609'), ('longitude', '5.87588'), ('latitude', '47.134299')]), OrderedDict([('id_mutation', '2019-73248'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '129900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX PIECES'), ('adresse_code_voie', 'B073'), ('code_postal', '25320'), ('code_commune', '25001'), ('nom_commune', 'Abbans-Dessous'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25001000ZC0065'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '625'), ('longitude', '5.875438'), ('latitude', '47.134055')]), OrderedDict([('id_mutation', '2019-73248'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '129900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX PIECES'), ('adresse_code_voie', 'B073'), ('code_postal', '25320'), ('code_commune', '25001'), ('nom_commune', 'Abbans-Dessous'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25001000ZC0066'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '48'), ('longitude', '5.875832'), ('latitude', '47.134362')]), OrderedDict([('id_mutation', '2019-73249'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155200'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DU BREUILLE'), ('adresse_code_voie', '0030'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AC0087'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '592'), ('longitude', '6.228935'), ('latitude', '47.297257')]), OrderedDict([('id_mutation', '2019-73249'), ('date_mutation', '2019-05-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155200'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DU BREUILLE'), ('adresse_code_voie', '0030'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AC0087'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.228935'), ('latitude', '47.297257')]), OrderedDict([('id_mutation', '2019-73250'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '146000'), ('adresse_numero', '12'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE L INDUSTRIE'), ('adresse_code_voie', '2720'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', ''), ('lot2_numero', '3'), ('lot2_surface_carrez', ''), ('lot3_numero', '9'), ('lot3_surface_carrez', '73.82'), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '76'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.024802'), ('latitude', '47.247389')]), OrderedDict([('id_mutation', '2019-73251'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHENEVIERES'), ('adresse_code_voie', '0020'), ('code_postal', '25170'), ('code_commune', '25119'), ('nom_commune', 'Champvans-les-Moulins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25119000AC0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '653'), ('longitude', '5.914689'), ('latitude', '47.254838')]), OrderedDict([('id_mutation', '2019-73251'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHENEVIERES'), ('adresse_code_voie', '0020'), ('code_postal', '25170'), ('code_commune', '25119'), ('nom_commune', 'Champvans-les-Moulins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25119000AC0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '82'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '653'), ('longitude', '5.914689'), ('latitude', '47.254838')]), OrderedDict([('id_mutation', '2019-73251'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHENEVIERES'), ('adresse_code_voie', '0020'), ('code_postal', '25170'), ('code_commune', '25119'), ('nom_commune', 'Champvans-les-Moulins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25119000AC0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '83'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '653'), ('longitude', '5.914689'), ('latitude', '47.254838')]), OrderedDict([('id_mutation', '2019-73251'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHENEVIERES'), ('adresse_code_voie', '0020'), ('code_postal', '25170'), ('code_commune', '25119'), ('nom_commune', 'Champvans-les-Moulins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25119000AC0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '653'), ('longitude', '5.914689'), ('latitude', '47.254838')]), OrderedDict([('id_mutation', '2019-73251'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHENEVIERES'), ('adresse_code_voie', '0020'), ('code_postal', '25170'), ('code_commune', '25119'), ('nom_commune', 'Champvans-les-Moulins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25119000AC0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '653'), ('longitude', '5.914689'), ('latitude', '47.254838')]), OrderedDict([('id_mutation', '2019-73252'), ('date_mutation', '2019-05-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65550'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MARULAZ'), ('adresse_code_voie', '3370'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AX0116'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '112'), ('lot1_surface_carrez', ''), ('lot2_numero', '113'), ('lot2_surface_carrez', '31.15'), ('lot3_numero', '122'), ('lot3_surface_carrez', ''), ('lot4_numero', '123'), ('lot4_surface_carrez', ''), ('lot5_numero', '124'), ('lot5_surface_carrez', ''), ('nombre_lots', '5'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '30'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01788'), ('latitude', '47.239387')]), OrderedDict([('id_mutation', '2019-73253'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '24800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VERNOIS'), ('adresse_code_voie', 'B033'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZA0040'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1996'), ('longitude', '6.170374'), ('latitude', '47.38548')]), OrderedDict([('id_mutation', '2019-73254'), ('date_mutation', '2019-06-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PETITS PRES'), ('adresse_code_voie', 'B117'), ('code_postal', '25440'), ('code_commune', '25104'), ('nom_commune', 'By'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25104000ZC0011'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '18450'), ('longitude', '5.889749'), ('latitude', '47.003538')]), OrderedDict([('id_mutation', '2019-73255'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '60000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BURGILLE'), ('adresse_code_voie', 'B011'), ('code_postal', '25170'), ('code_commune', '25101'), ('nom_commune', 'Burgille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251010000D0184'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1003'), ('longitude', '5.775752'), ('latitude', '47.267121')]), OrderedDict([('id_mutation', '2019-73255'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '60000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BURGILLE'), ('adresse_code_voie', 'B011'), ('code_postal', '25170'), ('code_commune', '25101'), ('nom_commune', 'Burgille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251010000D0185'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '98'), ('longitude', '5.775589'), ('latitude', '47.267376')]), OrderedDict([('id_mutation', '2019-73256'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '216600'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DES BUIS'), ('adresse_code_voie', '0082'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AN0439'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '94'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '505'), ('longitude', '5.823666'), ('latitude', '47.18401')]), OrderedDict([('id_mutation', '2019-73257'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '178000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU GAL CHARLES DE GAULLE'), ('adresse_code_voie', '0017'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AC0004'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '175'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1395'), ('longitude', '6.070061'), ('latitude', '47.337409')]), OrderedDict([('id_mutation', '2019-73257'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '178000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA VIE DE BONNAY'), ('adresse_code_voie', 'B043'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AC0340'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '377'), ('longitude', '6.069617'), ('latitude', '47.337375')]), OrderedDict([('id_mutation', '2019-73258'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '382193.66'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VOIRIN'), ('adresse_code_voie', '5360'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0283'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '260'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '168'), ('longitude', '6.012878'), ('latitude', '47.242286')]), OrderedDict([('id_mutation', '2019-73258'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '382193.66'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV GEORGES CLEMENCEAU'), ('adresse_code_voie', '2330'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0284'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3'), ('longitude', '6.013169'), ('latitude', '47.242297')]), OrderedDict([('id_mutation', '2019-73258'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '382193.66'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VOIRIN'), ('adresse_code_voie', '5360'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0287'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '362'), ('longitude', '6.013058'), ('latitude', '47.242288')]), OrderedDict([('id_mutation', '2019-73259'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES MERCURAUX'), ('adresse_code_voie', '0111'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AH0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '210'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1036'), ('longitude', '6.015159'), ('latitude', '47.206054')]), OrderedDict([('id_mutation', '2019-73259'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ESSART GIROD'), ('adresse_code_voie', 'B042'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AH0120'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '368'), ('longitude', '6.015364'), ('latitude', '47.205954')]), OrderedDict([('id_mutation', '2019-73259'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRES DE MAILLOT'), ('adresse_code_voie', 'B080'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AH0238'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '365'), ('longitude', '6.01479'), ('latitude', '47.20594')]), OrderedDict([('id_mutation', '2019-73259'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '250000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ESSART GIROD'), ('adresse_code_voie', 'B042'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AH0246'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '65'), ('longitude', '6.015123'), ('latitude', '47.205854')]), OrderedDict([('id_mutation', '2019-73260'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '74000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0157'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '137'), ('lot1_surface_carrez', ''), ('lot2_numero', '157'), ('lot2_surface_carrez', '45.56'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '49'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019834'), ('latitude', '47.25063')]), OrderedDict([('id_mutation', '2019-73260'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '74000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0157'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '255'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019834'), ('latitude', '47.25063')]), OrderedDict([('id_mutation', '2019-73261'), ('date_mutation', '2019-06-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '360000'), ('adresse_numero', '5287'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ARISTOTE'), ('adresse_code_voie', '0003'), ('code_postal', '25410'), ('code_commune', '25195'), ('nom_commune', 'Dannemarie-sur-Crète'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25195000AE0241'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '498'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2613'), ('longitude', '5.879178'), ('latitude', '47.202508')]), OrderedDict([('id_mutation', '2019-73262'), ('date_mutation', '2019-06-17'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '10500'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DU 60EME RI'), ('adresse_code_voie', '4760'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0390'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012115'), ('latitude', '47.242435')]), OrderedDict([('id_mutation', '2019-73263'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '234150'), ('adresse_numero', '77'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '2440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0123'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '21'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '35'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.025504'), ('latitude', '47.237504')]), OrderedDict([('id_mutation', '2019-73263'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '234150'), ('adresse_numero', '77'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '2440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0123'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '18'), ('lot1_surface_carrez', ''), ('lot2_numero', '19'), ('lot2_surface_carrez', ''), ('lot3_numero', '20'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.025504'), ('latitude', '47.237504')]), OrderedDict([('id_mutation', '2019-73263'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '234150'), ('adresse_numero', '77'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '2440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0123'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '34'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.025504'), ('latitude', '47.237504')]), OrderedDict([('id_mutation', '2019-73263'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '234150'), ('adresse_numero', '77'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '2440'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0123'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '37'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.025504'), ('latitude', '47.237504')]), OrderedDict([('id_mutation', '2019-73264'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BOUT D AMONT'), ('adresse_code_voie', 'B008'), ('code_postal', '25320'), ('code_commune', '25105'), ('nom_commune', 'Byans-sur-Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25105000AD0110'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '98'), ('longitude', '5.859898'), ('latitude', '47.114324')]), OrderedDict([('id_mutation', '2019-73264'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU BOUT D AMONT'), ('adresse_code_voie', '0015'), ('code_postal', '25320'), ('code_commune', '25105'), ('nom_commune', 'Byans-sur-Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25105000AD0111'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '30'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '46'), ('longitude', '5.859639'), ('latitude', '47.114408')]), OrderedDict([('id_mutation', '2019-73265'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '380000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LYCEE'), ('adresse_code_voie', '3220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AW0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '66'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.021866'), ('latitude', '47.23722')]), OrderedDict([('id_mutation', '2019-73265'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '380000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LYCEE'), ('adresse_code_voie', '3220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AW0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.021866'), ('latitude', '47.23722')]), OrderedDict([('id_mutation', '2019-73265'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '380000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LYCEE'), ('adresse_code_voie', '3220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AW0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '35'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.021866'), ('latitude', '47.23722')]), OrderedDict([('id_mutation', '2019-73265'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '380000'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LYCEE'), ('adresse_code_voie', '3220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AW0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '14'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.021866'), ('latitude', '47.23722')]), OrderedDict([('id_mutation', '2019-73266'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10000'), ('adresse_numero', '50'), ('adresse_suffixe', '1'), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0218'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '131'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.009127'), ('latitude', '47.234555')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '37'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '25'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '31'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '58'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '22'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '144'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '40'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '22'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '71'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0176'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '45'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '274'), ('longitude', '6.009827'), ('latitude', '47.23453')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', '48'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0177'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '250'), ('longitude', '6.009603'), ('latitude', '47.234502')]), OrderedDict([('id_mutation', '2019-73267'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '490000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE DOLE'), ('adresse_code_voie', '1620'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0190'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '197'), ('longitude', '6.009559'), ('latitude', '47.234622')]), OrderedDict([('id_mutation', '2019-73268'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '75000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A PRAY'), ('adresse_code_voie', 'B054'), ('code_postal', '25220'), ('code_commune', '25112'), ('nom_commune', 'Chalezeule'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25112000AR0249'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '572'), ('longitude', '6.069728'), ('latitude', '47.259251')]), OrderedDict([('id_mutation', '2019-73269'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D ANVERS'), ('adresse_code_voie', '0200'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AB0012'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '50'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02258'), ('latitude', '47.238199')]), OrderedDict([('id_mutation', '2019-73269'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D ANVERS'), ('adresse_code_voie', '0200'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AB0012'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', '50'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02258'), ('latitude', '47.238199')]), OrderedDict([('id_mutation', '2019-73269'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D ANVERS'), ('adresse_code_voie', '0200'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AB0012'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02258'), ('latitude', '47.238199')]), OrderedDict([('id_mutation', '2019-73270'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '84500'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MUGUET'), ('adresse_code_voie', '3610'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '83.54'), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', '3'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '84'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.047337'), ('latitude', '47.264985')]), OrderedDict([('id_mutation', '2019-73271'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '262300'), ('adresse_numero', '59'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE SALANS'), ('adresse_code_voie', '0020'), ('code_postal', '25410'), ('code_commune', '25502'), ('nom_commune', 'Roset-Fluans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25502000ZA0032'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '128'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '5.817583'), ('latitude', '47.163582')]), OrderedDict([('id_mutation', '2019-73272'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '94000'), ('adresse_numero', '18'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE LA ROTONDE'), ('adresse_code_voie', '4590'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BO0209'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', ''), ('lot2_numero', '6'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '50'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028318'), ('latitude', '47.248795')]), OrderedDict([('id_mutation', '2019-73272'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '94000'), ('adresse_numero', '18'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE LA ROTONDE'), ('adresse_code_voie', '4590'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BO0209'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028318'), ('latitude', '47.248795')]), OrderedDict([('id_mutation', '2019-73273'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', '102'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '48'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.037784'), ('latitude', '47.252741')]), OrderedDict([('id_mutation', '2019-73274'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '44700'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV LOUISE MICHEL'), ('adresse_code_voie', '3185'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0043'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '113'), ('lot1_surface_carrez', '22.18'), ('lot2_numero', '43'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '18'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.013998'), ('latitude', '47.235191')]), OrderedDict([('id_mutation', '2019-73275'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '106750'), ('adresse_numero', '11'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'RUE ALEXIS CHOPARD'), ('adresse_code_voie', '0080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CV0353'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '109'), ('lot1_surface_carrez', ''), ('lot2_numero', '19'), ('lot2_surface_carrez', '56.08'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '56'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.031472'), ('latitude', '47.247769')]), OrderedDict([('id_mutation', '2019-73275'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '106750'), ('adresse_numero', '11'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'RUE ALEXIS CHOPARD'), ('adresse_code_voie', '0080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CV0353'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '109'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.031472'), ('latitude', '47.247769')]), OrderedDict([('id_mutation', '2019-73276'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '68000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EUGENE SAVOYE'), ('adresse_code_voie', '1910'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', ''), ('lot2_numero', '18'), ('lot2_surface_carrez', ''), ('lot3_numero', '5'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '35'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.021595'), ('latitude', '47.250296')]), OrderedDict([('id_mutation', '2019-73276'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '68000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EUGENE SAVOYE'), ('adresse_code_voie', '1910'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '29'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.021595'), ('latitude', '47.250296')]), OrderedDict([('id_mutation', '2019-73277'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '272000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PERVENCHES'), ('adresse_code_voie', '0036'), ('code_postal', '25770'), ('code_commune', '25542'), ('nom_commune', 'Serre-les-Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25542000AC0140'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '125'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '815'), ('longitude', '5.934635'), ('latitude', '47.24599')]), OrderedDict([('id_mutation', '2019-73278'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA VAUREUGE'), ('adresse_code_voie', 'B175'), ('code_postal', '25340'), ('code_commune', '25574'), ('nom_commune', 'Uzelle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255740000B0941'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1650'), ('longitude', '6.476527'), ('latitude', '47.469521')]), OrderedDict([('id_mutation', '2019-73278'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '5074'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA VAUREUGE'), ('adresse_code_voie', 'B175'), ('code_postal', '25340'), ('code_commune', '25574'), ('nom_commune', 'Uzelle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255740000B0943'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '151'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '525'), ('longitude', '6.476167'), ('latitude', '47.469521')]), OrderedDict([('id_mutation', '2019-73279'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '76000'), ('adresse_numero', '4'), ('adresse_suffixe', 'M'), ('adresse_nom_voie', 'RUE LOUIS PERGAUD'), ('adresse_code_voie', '3180'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0184'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '42'), ('lot1_surface_carrez', ''), ('lot2_numero', '43'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.008128'), ('latitude', '47.235586')]), OrderedDict([('id_mutation', '2019-73280'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '137500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LA ROUOTTE'), ('adresse_code_voie', 'B079'), ('code_postal', '25250'), ('code_commune', '25327'), ('nom_commune', 'Lanthenans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253270000A0096'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1498'), ('longitude', '6.625907'), ('latitude', '47.395667')]), OrderedDict([('id_mutation', '2019-73280'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '137500'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', "RUE DE L'EGLISE"), ('adresse_code_voie', '0020'), ('code_postal', '25250'), ('code_commune', '25327'), ('nom_commune', 'Lanthenans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253270000A0148'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '50'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1160'), ('longitude', '6.626747'), ('latitude', '47.395505')]), OrderedDict([('id_mutation', '2019-73280'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '137500'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', "RUE DE L'EGLISE"), ('adresse_code_voie', '0020'), ('code_postal', '25250'), ('code_commune', '25327'), ('nom_commune', 'Lanthenans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253270000A0148'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1160'), ('longitude', '6.626747'), ('latitude', '47.395505')]), OrderedDict([('id_mutation', '2019-73280'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '137500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B092'), ('code_postal', '25250'), ('code_commune', '25327'), ('nom_commune', 'Lanthenans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253270000A0149'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '112'), ('longitude', '6.6262'), ('latitude', '47.395559')]), OrderedDict([('id_mutation', '2019-73281'), ('date_mutation', '2019-02-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '13100'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FBG SAINT PIERRE'), ('adresse_code_voie', '1750'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AV0409'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '131'), ('longitude', '6.351215'), ('latitude', '46.904442')]), OrderedDict([('id_mutation', '2019-73282'), ('date_mutation', '2019-04-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '261750'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LOT LES TILLEULS'), ('adresse_code_voie', 'A005'), ('code_postal', '25690'), ('code_commune', '25039'), ('nom_commune', 'Avoudrey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25039000ZV0082'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '107'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1145'), ('longitude', '6.432999'), ('latitude', '47.140224')]), OrderedDict([('id_mutation', '2019-73283'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '233250'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CRET'), ('adresse_code_voie', '0013'), ('code_postal', '25160'), ('code_commune', '25362'), ('nom_commune', 'Malpas'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253620000B0311'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '107'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '415'), ('longitude', '6.289856'), ('latitude', '46.827263')]), OrderedDict([('id_mutation', '2019-73284'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '359900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'METAU'), ('adresse_code_voie', 'B042'), ('code_postal', '25160'), ('code_commune', '25525'), ('nom_commune', 'Saint-Point-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25525000AA0018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '98'), ('longitude', '6.294621'), ('latitude', '46.811633')]), OrderedDict([('id_mutation', '2019-73284'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '359900'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LEVANT'), ('adresse_code_voie', '0039'), ('code_postal', '25160'), ('code_commune', '25525'), ('nom_commune', 'Saint-Point-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25525000AA0025'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '860'), ('longitude', '6.294864'), ('latitude', '46.811515')]), OrderedDict([('id_mutation', '2019-73285'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU CREUX TENDARD'), ('adresse_code_voie', 'B052'), ('code_postal', '25560'), ('code_commune', '25041'), ('nom_commune', 'Bannans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250410000A0207'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3613'), ('longitude', '6.217589'), ('latitude', '46.917902')]), OrderedDict([('id_mutation', '2019-73285'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU CREUX TENDARD'), ('adresse_code_voie', 'B052'), ('code_postal', '25560'), ('code_commune', '25041'), ('nom_commune', 'Bannans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250410000A0207'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '529'), ('longitude', '6.217589'), ('latitude', '46.917902')]), OrderedDict([('id_mutation', '2019-73285'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU CREUX TENDARD'), ('adresse_code_voie', 'B052'), ('code_postal', '25560'), ('code_commune', '25041'), ('nom_commune', 'Bannans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250410000A0207'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1868'), ('longitude', '6.217589'), ('latitude', '46.917902')]), OrderedDict([('id_mutation', '2019-73286'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '12800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE MOURENBOZ'), ('adresse_code_voie', 'B111'), ('code_postal', '25560'), ('code_commune', '25259'), ('nom_commune', 'Frasne'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252590000D0107'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '7810'), ('longitude', '6.133946'), ('latitude', '46.861455')]), OrderedDict([('id_mutation', '2019-73287'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '135000'), ('adresse_numero', '49'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE CART BROUMET'), ('adresse_code_voie', '0011'), ('code_postal', '25240'), ('code_commune', '25413'), ('nom_commune', 'Mouthe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25413000AD0281'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', '56.5'), ('lot2_numero', '5'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '56'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.18813'), ('latitude', '46.705305')]), OrderedDict([('id_mutation', '2019-73288'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '34805'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CRET DE LA RAPPE'), ('adresse_code_voie', 'B028'), ('code_postal', '25300'), ('code_commune', '25204'), ('nom_commune', 'Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25204000AA0362'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '243'), ('longitude', '6.352259'), ('latitude', '46.93198')]), OrderedDict([('id_mutation', '2019-73289'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '148500'), ('adresse_numero', '8'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'RUE DU TELESIEGE'), ('adresse_code_voie', '0177'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AH0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '236'), ('lot1_surface_carrez', ''), ('lot2_numero', '266'), ('lot2_surface_carrez', '54.9'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '55'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352727'), ('latitude', '46.771683')]), OrderedDict([('id_mutation', '2019-73289'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '148500'), ('adresse_numero', '8'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'RUE DU TELESIEGE'), ('adresse_code_voie', '0177'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AH0031'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '241'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352727'), ('latitude', '46.771683')]), OrderedDict([('id_mutation', '2019-73290'), ('date_mutation', '2019-03-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'EN DESSUS DES CHEMINS'), ('adresse_code_voie', 'B123'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254340000F0224'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2420'), ('longitude', '6.158976'), ('latitude', '47.097823')]), OrderedDict([('id_mutation', '2019-73291'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '123000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA PLANTE'), ('adresse_code_voie', 'B107'), ('code_postal', '25930'), ('code_commune', '25339'), ('nom_commune', 'Lods'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25339000AC0209'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '194'), ('longitude', '6.251337'), ('latitude', '47.043163')]), OrderedDict([('id_mutation', '2019-73291'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '123000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA PLANTE'), ('adresse_code_voie', 'B107'), ('code_postal', '25930'), ('code_commune', '25339'), ('nom_commune', 'Lods'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25339000AC0211'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '75'), ('longitude', '6.251325'), ('latitude', '47.043071')]), OrderedDict([('id_mutation', '2019-73291'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '123000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COMMANDANT VUILLEMIN'), ('adresse_code_voie', '0016'), ('code_postal', '25930'), ('code_commune', '25339'), ('nom_commune', 'Lods'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25339000AC0212'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', '104.6'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '27'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.251215'), ('latitude', '47.043084')]), OrderedDict([('id_mutation', '2019-73291'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '123000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COMMANDANT VUILLEMIN'), ('adresse_code_voie', '0016'), ('code_postal', '25930'), ('code_commune', '25339'), ('nom_commune', 'Lods'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25339000AC0212'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '7'), ('lot1_surface_carrez', ''), ('lot2_numero', '8'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '84'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.251215'), ('latitude', '47.043084')]), OrderedDict([('id_mutation', '2019-73292'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '213000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CDT VALENTIN'), ('adresse_code_voie', '0520'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AL0247'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '16'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.360446'), ('latitude', '46.902745')]), OrderedDict([('id_mutation', '2019-73292'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '213000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CDT VALENTIN'), ('adresse_code_voie', '0520'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AL0247'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '15'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.360446'), ('latitude', '46.902745')]), OrderedDict([('id_mutation', '2019-73292'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '213000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CDT VALENTIN'), ('adresse_code_voie', '0520'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AL0247'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.360446'), ('latitude', '46.902745')]), OrderedDict([('id_mutation', '2019-73293'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '355000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL DES MINIMES'), ('adresse_code_voie', '0040'), ('code_postal', '25500'), ('code_commune', '25403'), ('nom_commune', 'Montlebon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25403000AB0372'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '48'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '225'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.606871'), ('latitude', '47.044171')]), OrderedDict([('id_mutation', '2019-73293'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '355000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL DES MINIMES'), ('adresse_code_voie', '0040'), ('code_postal', '25500'), ('code_commune', '25403'), ('nom_commune', 'Montlebon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25403000AB0372'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.606871'), ('latitude', '47.044171')]), OrderedDict([('id_mutation', '2019-73294'), ('date_mutation', '2019-03-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '205000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA REPUBLIQUE'), ('adresse_code_voie', '1650'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AH0063'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '28'), ('lot1_surface_carrez', ''), ('lot2_numero', '7'), ('lot2_surface_carrez', '95.17'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.357004'), ('latitude', '46.903224')]), OrderedDict([('id_mutation', '2019-73295'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '15000'), ('adresse_numero', '54'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ALL DU TERTRE'), ('adresse_code_voie', '0178'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AH0148'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '38'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.351252'), ('latitude', '46.769852')]), OrderedDict([('id_mutation', '2019-73296'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA COTE GRUAND'), ('adresse_code_voie', 'B220'), ('code_postal', '25300'), ('code_commune', '25157'), ('nom_commune', 'La Cluse-et-Mijoux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251570000B1125'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '8850'), ('longitude', '6.39134'), ('latitude', '46.858313')]), OrderedDict([('id_mutation', '2019-73297'), ('date_mutation', '2019-03-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '275000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE LA GARE'), ('adresse_code_voie', '0018'), ('code_postal', '25650'), ('code_commune', '25347'), ('nom_commune', 'La Longeville'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253470000B1570'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '107'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '999'), ('longitude', '6.461807'), ('latitude', '46.995261')]), OrderedDict([('id_mutation', '2019-73298'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '17000'), ('adresse_numero', '5895'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL XAVIER AUTHIER'), ('adresse_code_voie', '0192'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AI0023'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '32'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.35748'), ('latitude', '46.769716')]), OrderedDict([('id_mutation', '2019-73299'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150000'), ('adresse_numero', '5'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'PL XAVIER AUTHIER'), ('adresse_code_voie', '0192'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AI0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '158'), ('lot1_surface_carrez', ''), ('lot2_numero', '65'), ('lot2_surface_carrez', '47.6'), ('lot3_numero', '72'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '49'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.35953'), ('latitude', '46.770332')]), OrderedDict([('id_mutation', '2019-73299'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150000'), ('adresse_numero', '5'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'PL XAVIER AUTHIER'), ('adresse_code_voie', '0192'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AI0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '177'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.35953'), ('latitude', '46.770332')]), OrderedDict([('id_mutation', '2019-73300'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2148.75'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BAUMETTES'), ('adresse_code_voie', 'B003'), ('code_postal', '25520'), ('code_commune', '25517'), ('nom_commune', 'Saint-Gorgon-Main'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25517000AB0012'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '191'), ('longitude', '6.322129'), ('latitude', '47.017736')]), OrderedDict([('id_mutation', '2019-73301'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1563.75'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B121'), ('code_postal', '25520'), ('code_commune', '25517'), ('nom_commune', 'Saint-Gorgon-Main'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25517000AA0018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '36'), ('longitude', '6.321881'), ('latitude', '47.023481')]), OrderedDict([('id_mutation', '2019-73301'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1563.75'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B121'), ('code_postal', '25520'), ('code_commune', '25517'), ('nom_commune', 'Saint-Gorgon-Main'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25517000AA0020'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '103'), ('longitude', '6.321677'), ('latitude', '47.023429')]), OrderedDict([('id_mutation', '2019-73302'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '243350'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ANDRE MOCKLI'), ('adresse_code_voie', '0048'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AT0280'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '85'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '271'), ('longitude', '6.344602'), ('latitude', '46.898329')]), OrderedDict([('id_mutation', '2019-73302'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '243350'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANGES'), ('adresse_code_voie', '0900'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AT0281'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '32'), ('longitude', '6.345108'), ('latitude', '46.898167')]), OrderedDict([('id_mutation', '2019-73302'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '243350'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANGES'), ('adresse_code_voie', '0900'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AT0282'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '462'), ('longitude', '6.344519'), ('latitude', '46.898594')]), OrderedDict([('id_mutation', '2019-73303'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10165.7'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA FRAITE'), ('adresse_code_voie', 'B031'), ('code_postal', '25510'), ('code_commune', '25268'), ('nom_commune', 'Germéfontaine'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25268000ZA0037'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3945'), ('longitude', '6.478258'), ('latitude', '47.231328')]), OrderedDict([('id_mutation', '2019-73303'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10165.7'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA FRAITE'), ('adresse_code_voie', 'B031'), ('code_postal', '25510'), ('code_commune', '25268'), ('nom_commune', 'Germéfontaine'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25268000ZA0037'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3945'), ('longitude', '6.478258'), ('latitude', '47.231328')]), OrderedDict([('id_mutation', '2019-73303'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10165.7'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA FRAITE'), ('adresse_code_voie', 'B031'), ('code_postal', '25510'), ('code_commune', '25268'), ('nom_commune', 'Germéfontaine'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25268000ZA0037'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '680'), ('longitude', '6.478258'), ('latitude', '47.231328')]), OrderedDict([('id_mutation', '2019-73303'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10165.7'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'COMBE DE MEUX'), ('adresse_code_voie', 'B014'), ('code_postal', '25510'), ('code_commune', '25268'), ('nom_commune', 'Germéfontaine'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25268000ZI0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '17230'), ('longitude', '6.469269'), ('latitude', '47.215718')]), OrderedDict([('id_mutation', '2019-73304'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65050'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA GAUFFRE'), ('adresse_code_voie', 'B574'), ('code_postal', '25300'), ('code_commune', '25157'), ('nom_commune', 'La Cluse-et-Mijoux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251570000B0842'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', '43.5'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '43'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.371482'), ('latitude', '46.859018')]), OrderedDict([('id_mutation', '2019-73305'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '208000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE LA GARE'), ('adresse_code_voie', '0040'), ('code_postal', '25160'), ('code_commune', '25320'), ('nom_commune', 'Labergement-Sainte-Marie'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25320000AC0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '32'), ('lot1_surface_carrez', '1.8'), ('lot2_numero', '33'), ('lot2_surface_carrez', '110'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '115'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.280727'), ('latitude', '46.773739')]), OrderedDict([('id_mutation', '2019-73306'), ('date_mutation', '2019-04-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '172192'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL BUGNET'), ('adresse_code_voie', '0060'), ('code_postal', '25270'), ('code_commune', '25334'), ('nom_commune', 'Levier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25334000AE0079'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '39'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.11701'), ('latitude', '46.953558')]), OrderedDict([('id_mutation', '2019-73306'), ('date_mutation', '2019-04-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '172192'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL DE VERDUN'), ('adresse_code_voie', '0460'), ('code_postal', '25270'), ('code_commune', '25334'), ('nom_commune', 'Levier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25334000AE0079'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '29'), ('lot1_surface_carrez', ''), ('lot2_numero', '62'), ('lot2_surface_carrez', '110.14'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.11701'), ('latitude', '46.953558')]), OrderedDict([('id_mutation', '2019-73307'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '70100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B163'), ('code_postal', '25270'), ('code_commune', '25180'), ('nom_commune', 'Crouzet-Migette'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25180000AB0288'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '136'), ('longitude', '6.010442'), ('latitude', '46.956924')]), OrderedDict([('id_mutation', '2019-73307'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '70100'), ('adresse_numero', '5001'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L AUBERGE'), ('adresse_code_voie', '0003'), ('code_postal', '25270'), ('code_commune', '25180'), ('nom_commune', 'Crouzet-Migette'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25180000AB0290'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '72'), ('longitude', '6.01054'), ('latitude', '46.956921')]), OrderedDict([('id_mutation', '2019-73308'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '134000'), ('adresse_numero', '68'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA REPUBLIQUE'), ('adresse_code_voie', '1650'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AB0135'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '62'), ('lot1_surface_carrez', '76'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.353407'), ('latitude', '46.90467')]), OrderedDict([('id_mutation', '2019-73309'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '210000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B039'), ('code_postal', '25690'), ('code_commune', '25342'), ('nom_commune', 'Longechaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253420000B0363'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '299'), ('longitude', '6.431855'), ('latitude', '47.16356')]), OrderedDict([('id_mutation', '2019-73309'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '210000'), ('adresse_numero', '4'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'LA FAYOTTE'), ('adresse_code_voie', 'B018'), ('code_postal', '25690'), ('code_commune', '25342'), ('nom_commune', 'Longechaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253420000B0366'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '212'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '456'), ('longitude', '6.431749'), ('latitude', '47.163626')]), OrderedDict([('id_mutation', '2019-73310'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS DE LA CROIX'), ('adresse_code_voie', 'B007'), ('code_postal', '25240'), ('code_commune', '25619'), ('nom_commune', 'Les Villedieu'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '256190000A0106'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '1763'), ('longitude', '6.275617'), ('latitude', '46.740262')]), OrderedDict([('id_mutation', '2019-73310'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA GOUTTE DOR'), ('adresse_code_voie', 'B022'), ('code_postal', '25240'), ('code_commune', '25619'), ('nom_commune', 'Les Villedieu'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25619000ZA0019'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '7315'), ('longitude', '6.274298'), ('latitude', '46.739414')]), OrderedDict([('id_mutation', '2019-73310'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA GOUTTE DOR'), ('adresse_code_voie', 'B022'), ('code_postal', '25240'), ('code_commune', '25619'), ('nom_commune', 'Les Villedieu'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25619000ZA0019'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '7315'), ('longitude', '6.274298'), ('latitude', '46.739414')]), OrderedDict([('id_mutation', '2019-73310'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA GOUTTE DOR'), ('adresse_code_voie', 'B022'), ('code_postal', '25240'), ('code_commune', '25619'), ('nom_commune', 'Les Villedieu'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25619000ZA0019'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3370'), ('longitude', '6.274298'), ('latitude', '46.739414')]), OrderedDict([('id_mutation', '2019-73311'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '195000'), ('adresse_numero', '24'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0200'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AY0376'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '53'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.350818'), ('latitude', '46.906449')]), OrderedDict([('id_mutation', '2019-73311'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '195000'), ('adresse_numero', '24'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0200'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AY0376'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '36'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.350818'), ('latitude', '46.906449')]), OrderedDict([('id_mutation', '2019-73312'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '86000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EDEN ROC'), ('adresse_code_voie', '0014'), ('code_postal', '25370'), ('code_commune', '25307'), ('nom_commune', 'Les Hôpitaux-Neufs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25307000AE0127'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', '34.25'), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '32'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.372494'), ('latitude', '46.772553')]), OrderedDict([('id_mutation', '2019-73313'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '175000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ANATOLE FRANCE'), ('adresse_code_voie', '0040'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AW0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', '7'), ('lot2_surface_carrez', '81'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '82'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.347814'), ('latitude', '46.904978')]), OrderedDict([('id_mutation', '2019-73314'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '111500'), ('adresse_numero', '42'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GAMBETTA'), ('adresse_code_voie', '0830'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AC0110'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', '7'), ('lot2_surface_carrez', '50.28'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '50'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.355707'), ('latitude', '46.902949')]), OrderedDict([('id_mutation', '2019-73315'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '410000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LE GRAND BOIS'), ('adresse_code_voie', '0026'), ('code_postal', '25160'), ('code_commune', '25361'), ('nom_commune', 'Malbuisson'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25361000AC0267'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '133'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '865'), ('longitude', '6.300982'), ('latitude', '46.793507')]), OrderedDict([('id_mutation', '2019-73316'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3800'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU VILLAGE'), ('adresse_code_voie', '0183'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AK0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '96'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352621'), ('latitude', '46.773831')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '55'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73317'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.603029'), ('latitude', '47.054948')]), OrderedDict([('id_mutation', '2019-73318'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '208900'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES MARRONNIERS'), ('adresse_code_voie', '0387'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AC0034'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '103'), ('lot1_surface_carrez', ''), ('lot2_numero', '105'), ('lot2_surface_carrez', ''), ('lot3_numero', '2'), ('lot3_surface_carrez', '71.71'), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.602858'), ('latitude', '47.059065')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '61'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '65'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '65'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '59'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '61'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '59'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '542'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73319'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '466300'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0920'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1005'), ('longitude', '6.668358'), ('latitude', '47.058725')]), OrderedDict([('id_mutation', '2019-73320'), ('date_mutation', '2019-04-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '257650'), ('adresse_numero', '14'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE L ETANG'), ('adresse_code_voie', '0035'), ('code_postal', '25390'), ('code_commune', '25349'), ('nom_commune', 'Loray'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25349000AD0034'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '85'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '723'), ('longitude', '6.491217'), ('latitude', '47.152981')]), OrderedDict([('id_mutation', '2019-73321'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '189000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES BLEUETS'), ('adresse_code_voie', '0042'), ('code_postal', '25580'), ('code_commune', '25222'), ('nom_commune', 'Étalans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25222000AC0138'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', '114.3'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '114'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.267646'), ('latitude', '47.154271')]), OrderedDict([('id_mutation', '2019-73322'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1380'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE HAUTEPIERRE'), ('adresse_code_voie', 'B639'), ('code_postal', '25580'), ('code_commune', '25424'), ('nom_commune', 'Les Premiers Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25424302AB0141'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '230'), ('longitude', '6.286283'), ('latitude', '47.047577')]), OrderedDict([('id_mutation', '2019-73323'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'COMBE A VORBILLON'), ('adresse_code_voie', 'B075'), ('code_postal', '25620'), ('code_commune', '25558'), ('nom_commune', 'Tarcenay-Foucherans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255582500C0091'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5735'), ('longitude', '6.123183'), ('latitude', '47.146691')]), OrderedDict([('id_mutation', '2019-73324'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '435000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0020'), ('code_postal', '25111'), ('code_commune', '25400'), ('nom_commune', 'Montgesoye'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25400000AB0192'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1495'), ('longitude', '6.188985'), ('latitude', '47.080959')]), OrderedDict([('id_mutation', '2019-73324'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '435000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0020'), ('code_postal', '25111'), ('code_commune', '25400'), ('nom_commune', 'Montgesoye'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25400000AB0192'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '200'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1495'), ('longitude', '6.188985'), ('latitude', '47.080959')]), OrderedDict([('id_mutation', '2019-73324'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '435000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0020'), ('code_postal', '25111'), ('code_commune', '25400'), ('nom_commune', 'Montgesoye'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25400000AB0192'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1495'), ('longitude', '6.188985'), ('latitude', '47.080959')]), OrderedDict([('id_mutation', '2019-73324'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '435000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BESANCON'), ('adresse_code_voie', '0020'), ('code_postal', '25111'), ('code_commune', '25400'), ('nom_commune', 'Montgesoye'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25400000AB0192'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1495'), ('longitude', '6.188985'), ('latitude', '47.080959')]), OrderedDict([('id_mutation', '2019-73325'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '188850'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP COTTI'), ('adresse_code_voie', '0127'), ('code_postal', '25160'), ('code_commune', '25320'), ('nom_commune', 'Labergement-Sainte-Marie'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25320000ZH0217'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '335'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.280772'), ('latitude', '46.77068')]), OrderedDict([('id_mutation', '2019-73325'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '188850'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP COTTI'), ('adresse_code_voie', '0127'), ('code_postal', '25160'), ('code_commune', '25320'), ('nom_commune', 'Labergement-Sainte-Marie'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25320000ZH0217'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '506'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.280772'), ('latitude', '46.77068')]), OrderedDict([('id_mutation', '2019-73325'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '188850'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP COTTI'), ('adresse_code_voie', '0127'), ('code_postal', '25160'), ('code_commune', '25320'), ('nom_commune', 'Labergement-Sainte-Marie'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25320000ZH0217'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '317'), ('lot1_surface_carrez', '61.87'), ('lot2_numero', '343'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.280772'), ('latitude', '46.77068')]), OrderedDict([('id_mutation', '2019-73326'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '154000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU PONT DU DIABLE'), ('adresse_code_voie', '0820'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AD0103'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', '73.04'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.668374'), ('latitude', '47.062284')]), OrderedDict([('id_mutation', '2019-73327'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '137280'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ALL DES CHAMOIS'), ('adresse_code_voie', '0045'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AH0353'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '29'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '143'), ('longitude', '6.350106'), ('latitude', '46.767053')]), OrderedDict([('id_mutation', '2019-73328'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FRONT DU LAC'), ('adresse_code_voie', '0030'), ('code_postal', '25160'), ('code_commune', '25361'), ('nom_commune', 'Malbuisson'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25361000AD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '223'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.307155'), ('latitude', '46.802197')]), OrderedDict([('id_mutation', '2019-73328'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FRONT DU LAC'), ('adresse_code_voie', '0030'), ('code_postal', '25160'), ('code_commune', '25361'), ('nom_commune', 'Malbuisson'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25361000AD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '256'), ('lot1_surface_carrez', ''), ('lot2_numero', '278'), ('lot2_surface_carrez', '51.07'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '51'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.307155'), ('latitude', '46.802197')]), OrderedDict([('id_mutation', '2019-73329'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '301600'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE ROCAPIN'), ('adresse_code_voie', '0047'), ('code_postal', '25390'), ('code_commune', '25288'), ('nom_commune', 'Fournets-Luisans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25288000AD0011'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '138'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '909'), ('longitude', '6.568221'), ('latitude', '47.110835')]), OrderedDict([('id_mutation', '2019-73330'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BOIS DU TOUR'), ('adresse_code_voie', 'B016'), ('code_postal', '25500'), ('code_commune', '25160'), ('nom_commune', 'Les Combes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251600000B0037'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3565'), ('longitude', '6.549005'), ('latitude', '47.056719')]), OrderedDict([('id_mutation', '2019-73331'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '373000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHENAUX'), ('adresse_code_voie', 'B044'), ('code_postal', '25920'), ('code_commune', '25415'), ('nom_commune', 'Mouthier-Haute-Pierre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25415000AB0114'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1365'), ('longitude', '6.278129'), ('latitude', '47.038446')]), OrderedDict([('id_mutation', '2019-73331'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '373000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHENAUX'), ('adresse_code_voie', 'B044'), ('code_postal', '25920'), ('code_commune', '25415'), ('nom_commune', 'Mouthier-Haute-Pierre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25415000AB0114'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '60'), ('longitude', '6.278129'), ('latitude', '47.038446')]), OrderedDict([('id_mutation', '2019-73331'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '373000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ERNEST REYER'), ('adresse_code_voie', '0050'), ('code_postal', '25920'), ('code_commune', '25415'), ('nom_commune', 'Mouthier-Haute-Pierre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25415000AB0115'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1835'), ('longitude', '6.277753'), ('latitude', '47.03846')]), OrderedDict([('id_mutation', '2019-73331'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '373000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ERNEST REYER'), ('adresse_code_voie', '0050'), ('code_postal', '25920'), ('code_commune', '25415'), ('nom_commune', 'Mouthier-Haute-Pierre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25415000AB0115'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1835'), ('longitude', '6.277753'), ('latitude', '47.03846')]), OrderedDict([('id_mutation', '2019-73331'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '373000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ERNEST REYER'), ('adresse_code_voie', '0050'), ('code_postal', '25920'), ('code_commune', '25415'), ('nom_commune', 'Mouthier-Haute-Pierre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25415000AB0115'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '144'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1835'), ('longitude', '6.277753'), ('latitude', '47.03846')]), OrderedDict([('id_mutation', '2019-73331'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '373000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ERNEST REYER'), ('adresse_code_voie', '0050'), ('code_postal', '25920'), ('code_commune', '25415'), ('nom_commune', 'Mouthier-Haute-Pierre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25415000AB0115'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1835'), ('longitude', '6.277753'), ('latitude', '47.03846')]), OrderedDict([('id_mutation', '2019-73331'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '373000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHENAUX'), ('adresse_code_voie', 'B044'), ('code_postal', '25920'), ('code_commune', '25415'), ('nom_commune', 'Mouthier-Haute-Pierre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25415000AB0116'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4005'), ('longitude', '6.277883'), ('latitude', '47.038041')]), OrderedDict([('id_mutation', '2019-73332'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '580'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE BAS'), ('adresse_code_voie', 'B161'), ('code_postal', '25580'), ('code_commune', '25300'), ('nom_commune', 'Guyans-Durnes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25300000AC0008'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '145'), ('longitude', '6.24286'), ('latitude', '47.121332')]), OrderedDict([('id_mutation', '2019-73333'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '327500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU COTEAU'), ('adresse_code_voie', '0092'), ('code_postal', '25500'), ('code_commune', '25240'), ('nom_commune', 'Les Fins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25240000AI0323'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '151'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '792'), ('longitude', '6.615872'), ('latitude', '47.069896')]), OrderedDict([('id_mutation', '2019-73334'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FOURCHES'), ('adresse_code_voie', '0031'), ('code_postal', '25530'), ('code_commune', '25601'), ('nom_commune', 'Vercel-Villedieu-le-Camp'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25601000AC0082'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '6'), ('lot2_surface_carrez', '92.18'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.397959'), ('latitude', '47.182652')]), OrderedDict([('id_mutation', '2019-73335'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '300000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINT CLAUDE'), ('adresse_code_voie', '0050'), ('code_postal', '25390'), ('code_commune', '25288'), ('nom_commune', 'Fournets-Luisans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25288352AB0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '550'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.54437'), ('latitude', '47.095448')]), OrderedDict([('id_mutation', '2019-73335'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '300000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINT CLAUDE'), ('adresse_code_voie', '0050'), ('code_postal', '25390'), ('code_commune', '25288'), ('nom_commune', 'Fournets-Luisans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25288352AB0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '300'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.54437'), ('latitude', '47.095448')]), OrderedDict([('id_mutation', '2019-73335'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '300000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINT CLAUDE'), ('adresse_code_voie', '0050'), ('code_postal', '25390'), ('code_commune', '25288'), ('nom_commune', 'Fournets-Luisans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25288352AB0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.54437'), ('latitude', '47.095448')]), OrderedDict([('id_mutation', '2019-73335'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '300000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LUISANS'), ('adresse_code_voie', 'B045'), ('code_postal', '25390'), ('code_commune', '25288'), ('nom_commune', 'Fournets-Luisans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25288352AB0109'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '109'), ('longitude', '6.544438'), ('latitude', '47.09553')]), OrderedDict([('id_mutation', '2019-73336'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L HELVETIE'), ('adresse_code_voie', '0310'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0079'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.608424'), ('latitude', '47.055204')]), OrderedDict([('id_mutation', '2019-73336'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L HELVETIE'), ('adresse_code_voie', '0310'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0079'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', '64.17'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '66'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.608424'), ('latitude', '47.055204')]), OrderedDict([('id_mutation', '2019-73337'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '270000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MAURICE DEBOIS'), ('adresse_code_voie', '0216'), ('code_postal', '25270'), ('code_commune', '25334'), ('nom_commune', 'Levier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25334000AD0202'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '134'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '771'), ('longitude', '6.120949'), ('latitude', '46.955989')]), OrderedDict([('id_mutation', '2019-73338'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LA CUCHE'), ('adresse_code_voie', 'B024'), ('code_postal', '25520'), ('code_commune', '25549'), ('nom_commune', 'Sombacour'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255490000C1021'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1170'), ('longitude', '6.230592'), ('latitude', '46.935648')]), OrderedDict([('id_mutation', '2019-73338'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LA CUCHE'), ('adresse_code_voie', 'B024'), ('code_postal', '25520'), ('code_commune', '25549'), ('nom_commune', 'Sombacour'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255490000C1119'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1020'), ('longitude', '6.230723'), ('latitude', '46.935681')]), OrderedDict([('id_mutation', '2019-73339'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '120500'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MONTRIEUX'), ('adresse_code_voie', '1360'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AE0018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', ''), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '48'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.35805'), ('latitude', '46.901775')]), OrderedDict([('id_mutation', '2019-73340'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '258000'), ('adresse_numero', '36'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EDOUARD BASTIDE'), ('adresse_code_voie', '0060'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AK0033'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '157'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '499'), ('longitude', '6.156522'), ('latitude', '47.102714')]), OrderedDict([('id_mutation', '2019-73340'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '258000'), ('adresse_numero', '32'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EDOUARD BASTIDE'), ('adresse_code_voie', '0060'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AK0106'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '23'), ('longitude', '6.156638'), ('latitude', '47.102494')]), OrderedDict([('id_mutation', '2019-73340'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '258000'), ('adresse_numero', '36'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EDOUARD BASTIDE'), ('adresse_code_voie', '0060'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AK0107'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '635'), ('longitude', '6.156353'), ('latitude', '47.102696')]), OrderedDict([('id_mutation', '2019-73341'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '185600'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MOULIN PARNET'), ('adresse_code_voie', '1420'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AY0268'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '48'), ('lot1_surface_carrez', ''), ('lot2_numero', '84'), ('lot2_surface_carrez', '91.68'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '93'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352351'), ('latitude', '46.907365')]), OrderedDict([('id_mutation', '2019-73341'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '185600'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MOULIN PARNET'), ('adresse_code_voie', '1420'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AY0268'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '65'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352351'), ('latitude', '46.907365')]), OrderedDict([('id_mutation', '2019-73342'), ('date_mutation', '2019-05-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '410000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES CHOCHEUX'), ('adresse_code_voie', '0081'), ('code_postal', '25390'), ('code_commune', '25432'), ('nom_commune', 'Orchamps-Vennes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25432000AL0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '280'), ('nombre_pieces_principales', '10'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '6.526594'), ('latitude', '47.128519')]), OrderedDict([('id_mutation', '2019-73342'), ('date_mutation', '2019-05-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '410000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES CHOCHEUX'), ('adresse_code_voie', '0081'), ('code_postal', '25390'), ('code_commune', '25432'), ('nom_commune', 'Orchamps-Vennes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25432000AL0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '280'), ('nombre_pieces_principales', '10'), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1833'), ('longitude', '6.526594'), ('latitude', '47.128519')]), OrderedDict([('id_mutation', '2019-73343'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162800'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MESANGE BLEUE'), ('adresse_code_voie', '0405'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AT0410'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '14'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.591392'), ('latitude', '47.059335')]), OrderedDict([('id_mutation', '2019-73343'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162800'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MESANGE BLEUE'), ('adresse_code_voie', '0405'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AT0410'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', '64.11'), ('lot2_numero', '4'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.591392'), ('latitude', '47.059335')]), OrderedDict([('id_mutation', '2019-73344'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6210'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA BOUQUETTE'), ('adresse_code_voie', 'B014'), ('code_postal', '25690'), ('code_commune', '25343'), ('nom_commune', 'Longemaison'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25343000AB0112'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '621'), ('longitude', '6.459892'), ('latitude', '47.081056')]), OrderedDict([('id_mutation', '2019-73345'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente terrain à bâtir'), ('valeur_fonciere', '30000'), ('adresse_numero', '37'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE NEUVE'), ('adresse_code_voie', '0460'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AC0346'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '311'), ('longitude', '6.601889'), ('latitude', '47.058616')]), OrderedDict([('id_mutation', '2019-73346'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BREME COULET'), ('adresse_code_voie', 'B014'), ('code_postal', '25580'), ('code_commune', '25535'), ('nom_commune', 'Saules'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255350000A0013'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '2656'), ('longitude', '6.209225'), ('latitude', '47.136661')]), OrderedDict([('id_mutation', '2019-73346'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BREME COULET'), ('adresse_code_voie', 'B014'), ('code_postal', '25580'), ('code_commune', '25535'), ('nom_commune', 'Saules'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255350000A0013'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '7969'), ('longitude', '6.209225'), ('latitude', '47.136661')]), OrderedDict([('id_mutation', '2019-73347'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '313000'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'LA ROCHOTTE'), ('adresse_code_voie', 'B311'), ('code_postal', '25570'), ('code_commune', '25285'), ('nom_commune', "Grand'Combe-Châteleu"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25285000AB0628'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', '7'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '92'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.568092'), ('latitude', '47.027826')]), OrderedDict([('id_mutation', '2019-73347'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '313000'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'LA ROCHOTTE'), ('adresse_code_voie', 'B311'), ('code_postal', '25570'), ('code_commune', '25285'), ('nom_commune', "Grand'Combe-Châteleu"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25285000AB0628'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.568092'), ('latitude', '47.027826')]), OrderedDict([('id_mutation', '2019-73348'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '267940'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU TEMPLE'), ('adresse_code_voie', '1020'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AI0154'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '473'), ('longitude', '6.684258'), ('latitude', '47.058597')]), OrderedDict([('id_mutation', '2019-73349'), ('date_mutation', '2019-04-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '5000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU PRE BURTIN'), ('adresse_code_voie', '0196'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AL0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '39'), ('longitude', '6.138379'), ('latitude', '47.10122')]), OrderedDict([('id_mutation', '2019-73350'), ('date_mutation', '2019-04-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '62000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE PONTARLIER'), ('adresse_code_voie', '0045'), ('code_postal', '25840'), ('code_commune', '25633'), ('nom_commune', 'Vuillafans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25633000AB0136'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '38'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '312'), ('longitude', '6.217264'), ('latitude', '47.064495')]), OrderedDict([('id_mutation', '2019-73350'), ('date_mutation', '2019-04-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '62000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE PONTARLIER'), ('adresse_code_voie', '0045'), ('code_postal', '25840'), ('code_commune', '25633'), ('nom_commune', 'Vuillafans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25633000AB0136'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '312'), ('longitude', '6.217264'), ('latitude', '47.064495')]), OrderedDict([('id_mutation', '2019-73350'), ('date_mutation', '2019-04-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '62000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE PONTARLIER'), ('adresse_code_voie', '0045'), ('code_postal', '25840'), ('code_commune', '25633'), ('nom_commune', 'Vuillafans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25633000AB0136'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '83'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '312'), ('longitude', '6.217264'), ('latitude', '47.064495')]), OrderedDict([('id_mutation', '2019-73350'), ('date_mutation', '2019-04-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '62000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B154'), ('code_postal', '25840'), ('code_commune', '25633'), ('nom_commune', 'Vuillafans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25633000AB0137'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '78'), ('longitude', '6.217289'), ('latitude', '47.06463')]), OrderedDict([('id_mutation', '2019-73351'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '29'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA COTE'), ('adresse_code_voie', '0130'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AB0016'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '421'), ('longitude', '6.595158'), ('latitude', '47.055696')]), OrderedDict([('id_mutation', '2019-73352'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '66000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'MURGER PARROT'), ('adresse_code_voie', 'B085'), ('code_postal', '25390'), ('code_commune', '25349'), ('nom_commune', 'Loray'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25349000AC0107'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '839'), ('longitude', '6.492196'), ('latitude', '47.149638')]), OrderedDict([('id_mutation', '2019-73353'), ('date_mutation', '2019-05-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '42075'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B060'), ('code_postal', '25660'), ('code_commune', '25375'), ('nom_commune', 'Mérey-sous-Montrond'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25375000AB0040'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '935'), ('longitude', '6.068709'), ('latitude', '47.153071')]), OrderedDict([('id_mutation', '2019-73354'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV GAL PIERRE MARIE BURNEZ'), ('adresse_code_voie', '0120'), ('code_postal', '25800'), ('code_commune', '25578'), ('nom_commune', 'Valdahon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25578000AD0221'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '203'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.340354'), ('latitude', '47.150847')]), OrderedDict([('id_mutation', '2019-73355'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '273300'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES COURLIS'), ('adresse_code_voie', '0005'), ('code_postal', '25300'), ('code_commune', '25309'), ('nom_commune', 'Houtaud'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25309000AD0164'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '732'), ('longitude', '6.311006'), ('latitude', '46.914808')]), OrderedDict([('id_mutation', '2019-73356'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '160000'), ('adresse_numero', '24'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ANTOINE PATEL'), ('adresse_code_voie', '0050'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AZ0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.346816'), ('latitude', '46.911058')]), OrderedDict([('id_mutation', '2019-73356'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '160000'), ('adresse_numero', '24'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ANTOINE PATEL'), ('adresse_code_voie', '0050'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AZ0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', '63.05'), ('lot2_numero', '4'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.346816'), ('latitude', '46.911058')]), OrderedDict([('id_mutation', '2019-73356'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '160000'), ('adresse_numero', '24'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ANTOINE PATEL'), ('adresse_code_voie', '0050'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AZ0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '7'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.346816'), ('latitude', '46.911058')]), OrderedDict([('id_mutation', '2019-73357'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '117700'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA SEIGNETTE'), ('adresse_code_voie', '0041'), ('code_postal', '25160'), ('code_commune', '25361'), ('nom_commune', 'Malbuisson'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25361000AE0256'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '222'), ('longitude', '6.312853'), ('latitude', '46.803962')]), OrderedDict([('id_mutation', '2019-73357'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '117700'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA SEIGNETTE'), ('adresse_code_voie', '0041'), ('code_postal', '25160'), ('code_commune', '25361'), ('nom_commune', 'Malbuisson'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25361000AE0256'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '222'), ('longitude', '6.312853'), ('latitude', '46.803962')]), OrderedDict([('id_mutation', '2019-73358'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'EN BARABAN'), ('adresse_code_voie', 'B006'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254340000G0388'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '8621'), ('longitude', '6.135321'), ('latitude', '47.086229')]), OrderedDict([('id_mutation', '2019-73358'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PRES DU CHANET'), ('adresse_code_voie', 'B244'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254340000H0145'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '1000'), ('longitude', '6.121926'), ('latitude', '47.099235')]), OrderedDict([('id_mutation', '2019-73358'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PRES DU CHANET'), ('adresse_code_voie', 'B244'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254340000H0146'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '5083'), ('longitude', '6.122161'), ('latitude', '47.099539')]), OrderedDict([('id_mutation', '2019-73358'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PRES DU CHANET'), ('adresse_code_voie', 'B244'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254340000H0153'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '9890'), ('longitude', '6.122277'), ('latitude', '47.10117')]), OrderedDict([('id_mutation', '2019-73358'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PRES DU CHANET'), ('adresse_code_voie', 'B244'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254340000H0154'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '2873'), ('longitude', '6.122075'), ('latitude', '47.100135')]), OrderedDict([('id_mutation', '2019-73358'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PRES DU CHANET'), ('adresse_code_voie', 'B244'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254340000H0155'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '16957'), ('longitude', '6.121297'), ('latitude', '47.100456')]), OrderedDict([('id_mutation', '2019-73359'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '267000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B093'), ('code_postal', '25240'), ('code_commune', '25131'), ('nom_commune', 'Châtelblanc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25131000AB0115'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '728'), ('longitude', '6.110888'), ('latitude', '46.672388')]), OrderedDict([('id_mutation', '2019-73359'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '267000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '0012'), ('code_postal', '25240'), ('code_commune', '25131'), ('nom_commune', 'Châtelblanc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25131000AB0116'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '157'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '490'), ('longitude', '6.110957'), ('latitude', '46.672352')]), OrderedDict([('id_mutation', '2019-73360'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '58000'), ('adresse_numero', '26'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'RUE EMILE MAGNIN'), ('adresse_code_voie', '0700'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AW0023'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '94'), ('lot1_surface_carrez', '24.58'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '28'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.344517'), ('latitude', '46.905882')]), OrderedDict([('id_mutation', '2019-73361'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '215800'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GELINOTTES'), ('adresse_code_voie', '0448'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000BC0049'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', '93.4'), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.666038'), ('latitude', '47.066147')]), OrderedDict([('id_mutation', '2019-73361'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '215800'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GELINOTTES'), ('adresse_code_voie', '0448'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000BC0049'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.666038'), ('latitude', '47.066147')]), OrderedDict([('id_mutation', '2019-73362'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '109000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINT EXUPERY'), ('adresse_code_voie', '0296'), ('code_postal', '25800'), ('code_commune', '25578'), ('nom_commune', 'Valdahon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25578000AI0094'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '13'), ('lot2_surface_carrez', '64.97'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '65'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352312'), ('latitude', '47.148341')]), OrderedDict([('id_mutation', '2019-73362'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '109000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINT EXUPERY'), ('adresse_code_voie', '0296'), ('code_postal', '25800'), ('code_commune', '25578'), ('nom_commune', 'Valdahon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25578000AI0094'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352312'), ('latitude', '47.148341')]), OrderedDict([('id_mutation', '2019-73363'), ('date_mutation', '2019-05-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '111000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL MAXIME CUPILLARD'), ('adresse_code_voie', '0646'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0090'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', '26'), ('lot2_surface_carrez', '101.87'), ('lot3_numero', '27'), ('lot3_surface_carrez', ''), ('lot4_numero', '29'), ('lot4_surface_carrez', ''), ('lot5_numero', '44'), ('lot5_surface_carrez', ''), ('nombre_lots', '6'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '102'), ('nombre_pieces_principales', '6'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.670405'), ('latitude', '47.059013')]), OrderedDict([('id_mutation', '2019-73364'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '120000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CLOS JEUNE'), ('adresse_code_voie', '0113'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AE0084'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '137'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.608283'), ('latitude', '47.056929')]), OrderedDict([('id_mutation', '2019-73364'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '120000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CLOS JEUNE'), ('adresse_code_voie', '0113'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AE0084'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '63'), ('lot1_surface_carrez', ''), ('lot2_numero', '82'), ('lot2_surface_carrez', '50.51'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '51'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.608283'), ('latitude', '47.056929')]), OrderedDict([('id_mutation', '2019-73365'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '183900'), ('adresse_numero', '9010'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VICTOR HUGO'), ('adresse_code_voie', '1970'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AY0218'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '17'), ('longitude', '6.348107'), ('latitude', '46.909909')]), OrderedDict([('id_mutation', '2019-73365'), ('date_mutation', '2019-05-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '183900'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MALADIERE'), ('adresse_code_voie', '1220'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AY0219'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', '90.4'), ('lot2_numero', '22'), ('lot2_surface_carrez', ''), ('lot3_numero', '23'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.348077'), ('latitude', '46.909833')]), OrderedDict([('id_mutation', '2019-73366'), ('date_mutation', '2019-05-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162500'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PASTEUR'), ('adresse_code_voie', '0740'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AC0430'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.667307'), ('latitude', '47.058653')]), OrderedDict([('id_mutation', '2019-73366'), ('date_mutation', '2019-05-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162500'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PASTEUR'), ('adresse_code_voie', '0740'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AC0430'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', '37'), ('lot2_surface_carrez', '73.4'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '73'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.667307'), ('latitude', '47.058653')]), OrderedDict([('id_mutation', '2019-73367'), ('date_mutation', '2019-05-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DE LA BISE'), ('adresse_code_voie', '0012'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AL0064'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '110'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '697'), ('longitude', '6.141537'), ('latitude', '47.100737')]), OrderedDict([('id_mutation', '2019-73368'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '140000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES OISEAUX'), ('adresse_code_voie', '0465'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AC0187'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '48'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '292'), ('longitude', '6.599985'), ('latitude', '47.058795')]), OrderedDict([('id_mutation', '2019-73368'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '140000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES OISEAUX'), ('adresse_code_voie', '0465'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AC0187'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '292'), ('longitude', '6.599985'), ('latitude', '47.058795')]), OrderedDict([('id_mutation', '2019-73368'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '140000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES OISEAUX'), ('adresse_code_voie', '0465'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AC0187'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '292'), ('longitude', '6.599985'), ('latitude', '47.058795')]), OrderedDict([('id_mutation', '2019-73368'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '140000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES OISEAUX'), ('adresse_code_voie', '0465'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AC0187'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '48'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '292'), ('longitude', '6.599985'), ('latitude', '47.058795')]), OrderedDict([('id_mutation', '2019-73369'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '276000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MESANGE BLEUE'), ('adresse_code_voie', '0405'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AT0410'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '38'), ('lot1_surface_carrez', '101.79'), ('lot2_numero', '39'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '102'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.591392'), ('latitude', '47.059335')]), OrderedDict([('id_mutation', '2019-73369'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '276000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MESANGE BLEUE'), ('adresse_code_voie', '0405'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AT0410'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.591392'), ('latitude', '47.059335')]), OrderedDict([('id_mutation', '2019-73370'), ('date_mutation', '2019-06-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMP DE L EPINE'), ('adresse_code_voie', 'B107'), ('code_postal', '25160'), ('code_commune', '25405'), ('nom_commune', 'Montperreux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25405000AI0056'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '8050'), ('longitude', '6.335536'), ('latitude', '46.825222')]), OrderedDict([('id_mutation', '2019-73371'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '311200'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA ROCHETTE'), ('adresse_code_voie', 'A079'), ('code_postal', '25650'), ('code_commune', '25139'), ('nom_commune', 'La Chaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25139000ZE0111'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '148'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.424969'), ('latitude', '47.02072')]), OrderedDict([('id_mutation', '2019-73371'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '311200'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA ROCHETTE'), ('adresse_code_voie', 'A079'), ('code_postal', '25650'), ('code_commune', '25139'), ('nom_commune', 'La Chaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25139000ZE0111'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '148'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '441'), ('longitude', '6.424969'), ('latitude', '47.02072')]), OrderedDict([('id_mutation', '2019-73372'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '259040'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CHATEAU'), ('adresse_code_voie', '0016'), ('code_postal', '25300'), ('code_commune', '25110'), ('nom_commune', 'Chaffois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25110000AC0172'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', '81'), ('lot2_numero', '8'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '85'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.269127'), ('latitude', '46.913632')]), OrderedDict([('id_mutation', '2019-73372'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '259040'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CHATEAU'), ('adresse_code_voie', '0016'), ('code_postal', '25300'), ('code_commune', '25110'), ('nom_commune', 'Chaffois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25110000AC0172'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.269127'), ('latitude', '46.913632')]), OrderedDict([('id_mutation', '2019-73373'), ('date_mutation', '2019-06-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3400'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES RAVIERES'), ('adresse_code_voie', 'B074'), ('code_postal', '25240'), ('code_commune', '25131'), ('nom_commune', 'Châtelblanc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251310000C0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3970'), ('longitude', '6.12323'), ('latitude', '46.668816')]), OrderedDict([('id_mutation', '2019-73374'), ('date_mutation', '2019-05-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '190600'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU DOUBS'), ('adresse_code_voie', '0021'), ('code_postal', '25500'), ('code_commune', '25403'), ('nom_commune', 'Montlebon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25403000AB0352'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '86'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.606049'), ('latitude', '47.04502')]), OrderedDict([('id_mutation', '2019-73374'), ('date_mutation', '2019-05-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '190600'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU DOUBS'), ('adresse_code_voie', '0021'), ('code_postal', '25500'), ('code_commune', '25403'), ('nom_commune', 'Montlebon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25403000AB0352'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', '69'), ('lot2_surface_carrez', '59.27'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '62'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.606049'), ('latitude', '47.04502')]), OrderedDict([('id_mutation', '2019-73374'), ('date_mutation', '2019-05-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '190600'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU DOUBS'), ('adresse_code_voie', '0021'), ('code_postal', '25500'), ('code_commune', '25403'), ('nom_commune', 'Montlebon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25403000AB0352'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '34'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.606049'), ('latitude', '47.04502')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '675'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1880'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '17180'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '400'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2640'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1320'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5400'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '23720'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4160'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES QUEMEN'), ('adresse_code_voie', 'B066'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZS0077'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3400'), ('longitude', '6.505459'), ('latitude', '47.247515')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE LES TEUREY'), ('adresse_code_voie', 'B042'), ('code_postal', '25510'), ('code_commune', '25625'), ('nom_commune', 'Villers-la-Combe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25625000AE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '11965'), ('longitude', '6.502807'), ('latitude', '47.244859')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE LES TEUREY'), ('adresse_code_voie', 'B042'), ('code_postal', '25510'), ('code_commune', '25625'), ('nom_commune', 'Villers-la-Combe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25625000AE0045'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '10395'), ('longitude', '6.504113'), ('latitude', '47.244614')]), OrderedDict([('id_mutation', '2019-73375'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE LES TEUREY'), ('adresse_code_voie', 'B042'), ('code_postal', '25510'), ('code_commune', '25625'), ('nom_commune', 'Villers-la-Combe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25625000AE0046'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1505'), ('longitude', '6.504528'), ('latitude', '47.244347')]), OrderedDict([('id_mutation', '2019-73376'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA GARE'), ('adresse_code_voie', '0050'), ('code_postal', '25690'), ('code_commune', '25039'), ('nom_commune', 'Avoudrey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25039000AC0146'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '270'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1277'), ('longitude', '6.435121'), ('latitude', '47.13306')]), OrderedDict([('id_mutation', '2019-73377'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '24871.02'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CLOS OUDOT'), ('adresse_code_voie', 'B033'), ('code_postal', '25530'), ('code_commune', '25325'), ('nom_commune', 'Landresse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25325000ZL0191'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '995'), ('longitude', '6.468214'), ('latitude', '47.25478')]), OrderedDict([('id_mutation', '2019-73378'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '195000'), ('adresse_numero', '42'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA COTE'), ('adresse_code_voie', '0130'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AB0049'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '92'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '264'), ('longitude', '6.595619'), ('latitude', '47.055712')]), OrderedDict([('id_mutation', '2019-73379'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '52500'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG'), ('adresse_code_voie', '0013'), ('code_postal', '25370'), ('code_commune', '25318'), ('nom_commune', 'Jougne'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25318000AB0066'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.384612'), ('latitude', '46.766454')]), OrderedDict([('id_mutation', '2019-73379'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '52500'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG'), ('adresse_code_voie', '0013'), ('code_postal', '25370'), ('code_commune', '25318'), ('nom_commune', 'Jougne'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25318000AB0066'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', '24.47'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '24'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.384612'), ('latitude', '46.766454')]), OrderedDict([('id_mutation', '2019-73380'), ('date_mutation', '2019-06-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU STAND'), ('adresse_code_voie', '1830'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AR0007'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '85'), ('lot1_surface_carrez', '71.65'), ('lot2_numero', '93'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '69'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.352094'), ('latitude', '46.89998')]), OrderedDict([('id_mutation', '2019-73381'), ('date_mutation', '2019-06-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '303500'), ('adresse_numero', '15'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE LA SYLVE'), ('adresse_code_voie', '0049'), ('code_postal', '25300'), ('code_commune', '25204'), ('nom_commune', 'Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25204000AD0100'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '112'), ('nombre_pieces_principales', '8'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.35291'), ('latitude', '46.918636')]), OrderedDict([('id_mutation', '2019-73382'), ('date_mutation', '2019-06-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '76600'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE HENRI GRAND'), ('adresse_code_voie', '0024'), ('code_postal', '25160'), ('code_commune', '25361'), ('nom_commune', 'Malbuisson'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25361000AC0554'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '28'), ('lot1_surface_carrez', ''), ('lot2_numero', '5'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '31'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.298271'), ('latitude', '46.792482')]), OrderedDict([('id_mutation', '2019-73383'), ('date_mutation', '2019-06-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B063'), ('code_postal', '25650'), ('code_commune', '25398'), ('nom_commune', 'Montflovin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253980000B0327'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2671'), ('longitude', '6.443157'), ('latitude', '46.986064')]), OrderedDict([('id_mutation', '2019-73383'), ('date_mutation', '2019-06-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B063'), ('code_postal', '25650'), ('code_commune', '25398'), ('nom_commune', 'Montflovin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253980000B0327'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.443157'), ('latitude', '46.986064')]), OrderedDict([('id_mutation', '2019-73383'), ('date_mutation', '2019-06-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B063'), ('code_postal', '25650'), ('code_commune', '25398'), ('nom_commune', 'Montflovin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253980000B0327'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2671'), ('longitude', '6.443157'), ('latitude', '46.986064')]), OrderedDict([('id_mutation', '2019-73383'), ('date_mutation', '2019-06-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B063'), ('code_postal', '25650'), ('code_commune', '25398'), ('nom_commune', 'Montflovin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253980000B0327'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2671'), ('longitude', '6.443157'), ('latitude', '46.986064')]), OrderedDict([('id_mutation', '2019-73384'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU MOURET'), ('adresse_code_voie', 'B193'), ('code_postal', '25270'), ('code_commune', '25334'), ('nom_commune', 'Levier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25334319ZH0023'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '1520'), ('longitude', '6.09024'), ('latitude', '46.971784')]), OrderedDict([('id_mutation', '2019-73384'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU MOURET'), ('adresse_code_voie', 'B193'), ('code_postal', '25270'), ('code_commune', '25334'), ('nom_commune', 'Levier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25334319ZH0023'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '3480'), ('longitude', '6.09024'), ('latitude', '46.971784')]), OrderedDict([('id_mutation', '2019-73385'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '74032'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRE DE LA VERDE'), ('adresse_code_voie', 'B060'), ('code_postal', '25160'), ('code_commune', '25459'), ('nom_commune', 'La Planée'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254590000D0001'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4880'), ('longitude', '6.28194'), ('latitude', '46.852952')]), OrderedDict([('id_mutation', '2019-73385'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '74032'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA CORNE DE LA COTE'), ('adresse_code_voie', 'B037'), ('code_postal', '25160'), ('code_commune', '25459'), ('nom_commune', 'La Planée'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254590000D0036'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4617'), ('longitude', '6.298898'), ('latitude', '46.853646')]), OrderedDict([('id_mutation', '2019-73385'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '74032'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA CORNE DE LA COTE'), ('adresse_code_voie', 'B037'), ('code_postal', '25160'), ('code_commune', '25459'), ('nom_commune', 'La Planée'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254590000D0037'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5023'), ('longitude', '6.299404'), ('latitude', '46.853632')]), OrderedDict([('id_mutation', '2019-73385'), ('date_mutation', '2019-05-31'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '74032'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX GRANDS PRES'), ('adresse_code_voie', 'B044'), ('code_postal', '25160'), ('code_commune', '25459'), ('nom_commune', 'La Planée'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254590000D0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '85381'), ('longitude', '6.295019'), ('latitude', '46.854275')]), OrderedDict([('id_mutation', '2019-73386'), ('date_mutation', '2019-06-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '130000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES LAVAUX'), ('adresse_code_voie', '1140'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AL0012'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '19'), ('lot1_surface_carrez', '89.24'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.359269'), ('latitude', '46.905956')]), OrderedDict([('id_mutation', '2019-73387'), ('date_mutation', '2019-06-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0023'), ('code_postal', '25300'), ('code_commune', '25515'), ('nom_commune', 'Sainte-Colombe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25515000ZC0094'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '86'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.263891'), ('latitude', '46.877454')]), OrderedDict([('id_mutation', '2019-73387'), ('date_mutation', '2019-06-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0023'), ('code_postal', '25300'), ('code_commune', '25515'), ('nom_commune', 'Sainte-Colombe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25515000ZC0094'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '8'), ('lot1_surface_carrez', '13.2'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.263891'), ('latitude', '46.877454')]), OrderedDict([('id_mutation', '2019-73388'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '409000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES COTES'), ('adresse_code_voie', '0300'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AB0292'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '150'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1254'), ('longitude', '6.661945'), ('latitude', '47.057962')]), OrderedDict([('id_mutation', '2019-73389'), ('date_mutation', '2019-06-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '219000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MONTAGNE'), ('adresse_code_voie', '0038'), ('code_postal', '25300'), ('code_commune', '25201'), ('nom_commune', 'Dommartin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25201000AC0009'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.305465'), ('latitude', '46.924575')]), OrderedDict([('id_mutation', '2019-73389'), ('date_mutation', '2019-06-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '219000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MONTAGNE'), ('adresse_code_voie', '0038'), ('code_postal', '25300'), ('code_commune', '25201'), ('nom_commune', 'Dommartin'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25201000AC0009'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '28'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.305465'), ('latitude', '46.924575')]), OrderedDict([('id_mutation', '2019-73390'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '296000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PESETTES'), ('adresse_code_voie', '0037'), ('code_postal', '25300'), ('code_commune', '25293'), ('nom_commune', 'Granges-Narboz'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25293000AE0059'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '654'), ('longitude', '6.317121'), ('latitude', '46.881117')]), OrderedDict([('id_mutation', '2019-73390'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '296000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PESETTES'), ('adresse_code_voie', '0037'), ('code_postal', '25300'), ('code_commune', '25293'), ('nom_commune', 'Granges-Narboz'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25293000AE0059'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '45'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '654'), ('longitude', '6.317121'), ('latitude', '46.881117')]), OrderedDict([('id_mutation', '2019-73390'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '296000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PESETTES'), ('adresse_code_voie', '0037'), ('code_postal', '25300'), ('code_commune', '25293'), ('nom_commune', 'Granges-Narboz'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25293000AE0059'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '654'), ('longitude', '6.317121'), ('latitude', '46.881117')]), OrderedDict([('id_mutation', '2019-73390'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '296000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PESETTES'), ('adresse_code_voie', '0037'), ('code_postal', '25300'), ('code_commune', '25293'), ('nom_commune', 'Granges-Narboz'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25293000AE0059'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '103'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '654'), ('longitude', '6.317121'), ('latitude', '46.881117')]), OrderedDict([('id_mutation', '2019-73391'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '157010'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DES GRANDS CHAMPS'), ('adresse_code_voie', '0110'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AB0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '36'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '301'), ('longitude', '6.340861'), ('latitude', '46.767161')]), OrderedDict([('id_mutation', '2019-73391'), ('date_mutation', '2019-06-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '157010'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VISCERNOIS'), ('adresse_code_voie', 'B018'), ('code_postal', '25370'), ('code_commune', '25380'), ('nom_commune', 'Métabief'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25380000AB0250'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '30'), ('longitude', '6.340836'), ('latitude', '46.76754')]), OrderedDict([('id_mutation', '2019-73392'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA BAUME'), ('adresse_code_voie', 'B007'), ('code_postal', '25560'), ('code_commune', '25202'), ('nom_commune', 'Dompierre-les-Tilleuls'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252020000A0245'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4180'), ('longitude', '6.160498'), ('latitude', '46.899215')]), OrderedDict([('id_mutation', '2019-73393'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '207720'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA COTE'), ('adresse_code_voie', '0020'), ('code_postal', '25370'), ('code_commune', '25318'), ('nom_commune', 'Jougne'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25318000AC0454'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '55'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '582'), ('longitude', '6.386129'), ('latitude', '46.760382')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRE SENAUBEAU'), ('adresse_code_voie', 'B078'), ('code_postal', '25160'), ('code_commune', '25295'), ('nom_commune', 'Les Grangettes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252950000B0051'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3250'), ('longitude', '6.304481'), ('latitude', '46.823169')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRE SENAUBEAU'), ('adresse_code_voie', 'B078'), ('code_postal', '25160'), ('code_commune', '25295'), ('nom_commune', 'Les Grangettes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252950000B0053'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2420'), ('longitude', '6.3049'), ('latitude', '46.822962')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRE SENAUBEAU'), ('adresse_code_voie', 'B078'), ('code_postal', '25160'), ('code_commune', '25295'), ('nom_commune', 'Les Grangettes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252950000B0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3950'), ('longitude', '6.305401'), ('latitude', '46.82346')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE CREPON'), ('adresse_code_voie', 'B046'), ('code_postal', '25160'), ('code_commune', '25295'), ('nom_commune', 'Les Grangettes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252950000B0518'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6600'), ('longitude', '6.304782'), ('latitude', '46.82442')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMP DU POMMIER'), ('adresse_code_voie', 'B004'), ('code_postal', '25160'), ('code_commune', '25525'), ('nom_commune', 'Saint-Point-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255250000A0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5120'), ('longitude', '6.309621'), ('latitude', '46.818326')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES COTTES'), ('adresse_code_voie', 'B021'), ('code_postal', '25160'), ('code_commune', '25525'), ('nom_commune', 'Saint-Point-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255250000A0110'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '280'), ('longitude', '6.312509'), ('latitude', '46.819505')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES REVERS'), ('adresse_code_voie', 'B055'), ('code_postal', '25160'), ('code_commune', '25525'), ('nom_commune', 'Saint-Point-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255250000A0258'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '188'), ('longitude', '6.300424'), ('latitude', '46.814217')]), OrderedDict([('id_mutation', '2019-73394'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4511.52'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'QUARTIER DE L EGLISE'), ('adresse_code_voie', 'B050'), ('code_postal', '25160'), ('code_commune', '25525'), ('nom_commune', 'Saint-Point-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255250000B0034'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1045'), ('longitude', '6.300609'), ('latitude', '46.814562')]), OrderedDict([('id_mutation', '2019-73395'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '9000'), ('adresse_numero', '31'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DYONIS ORDINAIRE'), ('adresse_code_voie', '0640'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AM0100'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '186'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.362325'), ('latitude', '46.899368')]), OrderedDict([('id_mutation', '2019-73396'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '167700'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE JOUX'), ('adresse_code_voie', '1080'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AM0100'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '6'), ('lot2_surface_carrez', '71.27'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '71'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.362325'), ('latitude', '46.899368')]), OrderedDict([('id_mutation', '2019-73397'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '23000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ETROITS'), ('adresse_code_voie', 'B069'), ('code_postal', '25930'), ('code_commune', '25339'), ('nom_commune', 'Lods'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253390000A0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '1000'), ('longitude', '6.28752'), ('latitude', '47.066124')]), OrderedDict([('id_mutation', '2019-73397'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '23000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EMARINS'), ('adresse_code_voie', 'B067'), ('code_postal', '25930'), ('code_commune', '25339'), ('nom_commune', 'Lods'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253390000A0018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '1605'), ('longitude', '6.287618'), ('latitude', '47.065949')]), OrderedDict([('id_mutation', '2019-73397'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '23000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BAS DE LODS'), ('adresse_code_voie', 'B179'), ('code_postal', '25580'), ('code_commune', '25424'), ('nom_commune', 'Les Premiers Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254240280B0008'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1250'), ('longitude', '6.288498'), ('latitude', '47.065764')]), OrderedDict([('id_mutation', '2019-73397'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '23000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BAS DE LODS'), ('adresse_code_voie', 'B179'), ('code_postal', '25580'), ('code_commune', '25424'), ('nom_commune', 'Les Premiers Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254240280B0009'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1940'), ('longitude', '6.288464'), ('latitude', '47.065912')]), OrderedDict([('id_mutation', '2019-73397'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '23000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BAS DE LODS'), ('adresse_code_voie', 'B179'), ('code_postal', '25580'), ('code_commune', '25424'), ('nom_commune', 'Les Premiers Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254240280B0010'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '705'), ('longitude', '6.288242'), ('latitude', '47.066275')]), OrderedDict([('id_mutation', '2019-73397'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '23000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BAS DE LODS'), ('adresse_code_voie', 'B179'), ('code_postal', '25580'), ('code_commune', '25424'), ('nom_commune', 'Les Premiers Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254240280B0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6930'), ('longitude', '6.292762'), ('latitude', '47.067463')]), OrderedDict([('id_mutation', '2019-73397'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '23000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BAS DE LODS'), ('adresse_code_voie', 'B179'), ('code_postal', '25580'), ('code_commune', '25424'), ('nom_commune', 'Les Premiers Sapins'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254240280B0018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1050'), ('longitude', '6.294802'), ('latitude', '47.067391')]), OrderedDict([('id_mutation', '2019-73398'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES TRONCHOTS'), ('adresse_code_voie', '0340'), ('code_postal', '25800'), ('code_commune', '25578'), ('nom_commune', 'Valdahon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25578000AA0153'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '51'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '389'), ('longitude', '6.334962'), ('latitude', '47.152597')]), OrderedDict([('id_mutation', '2019-73398'), ('date_mutation', '2019-06-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES TRONCHOTS'), ('adresse_code_voie', '0340'), ('code_postal', '25800'), ('code_commune', '25578'), ('nom_commune', 'Valdahon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25578000AA0154'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '23'), ('longitude', '6.334888'), ('latitude', '47.15252')]), OrderedDict([('id_mutation', '2019-73399'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '143800'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PRINCIPALE'), ('adresse_code_voie', '0015'), ('code_postal', '25530'), ('code_commune', '25007'), ('nom_commune', 'Adam-lès-Vercel'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250070000C0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '145'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '207'), ('longitude', '6.392467'), ('latitude', '47.168587')]), OrderedDict([('id_mutation', '2019-73400'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GRANDE RUE'), ('adresse_code_voie', '0282'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000F0061'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '129'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '615'), ('longitude', '6.168904'), ('latitude', '46.933765')]), OrderedDict([('id_mutation', '2019-73400'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B244'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000F0067'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '312'), ('longitude', '6.168204'), ('latitude', '46.934467')]), OrderedDict([('id_mutation', '2019-73400'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B244'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000F0067'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '313'), ('longitude', '6.168204'), ('latitude', '46.934467')]), OrderedDict([('id_mutation', '2019-73400'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B244'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000F0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '95'), ('longitude', '6.168807'), ('latitude', '46.934179')]), OrderedDict([('id_mutation', '2019-73400'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B244'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000F0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '390'), ('longitude', '6.168807'), ('latitude', '46.934179')]), OrderedDict([('id_mutation', '2019-73400'), ('date_mutation', '2019-06-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B244'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000F0294'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '106'), ('longitude', '6.168821'), ('latitude', '46.934108')]), OrderedDict([('id_mutation', '2019-73401'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '272000'), ('adresse_numero', '98'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES LAVAUX'), ('adresse_code_voie', '1140'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AK0024'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '204'), ('lot1_surface_carrez', '98'), ('lot2_numero', '205'), ('lot2_surface_carrez', '98'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '95'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.372267'), ('latitude', '46.906055')]), OrderedDict([('id_mutation', '2019-73401'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '272000'), ('adresse_numero', '98'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES LAVAUX'), ('adresse_code_voie', '1140'), ('code_postal', '25300'), ('code_commune', '25462'), ('nom_commune', 'Pontarlier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25462000AK0024'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '219'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.372267'), ('latitude', '46.906055')]), OrderedDict([('id_mutation', '2019-73402'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU LAC'), ('adresse_code_voie', '0175'), ('code_postal', '25560'), ('code_commune', '25075'), ('nom_commune', 'Bonnevaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25075000ZH0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '124'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '610'), ('longitude', '6.184904'), ('latitude', '46.809534')]), OrderedDict([('id_mutation', '2019-73402'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B139'), ('code_postal', '25560'), ('code_commune', '25075'), ('nom_commune', 'Bonnevaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25075000ZH0040'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '30'), ('longitude', '6.185239'), ('latitude', '46.8096')]), OrderedDict([('id_mutation', '2019-73402'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B139'), ('code_postal', '25560'), ('code_commune', '25075'), ('nom_commune', 'Bonnevaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25075000ZH0294'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '28'), ('longitude', '6.18511'), ('latitude', '46.809455')]), OrderedDict([('id_mutation', '2019-73403'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'TASSENIERE'), ('adresse_code_voie', 'B091'), ('code_postal', '25560'), ('code_commune', '25202'), ('nom_commune', 'Dompierre-les-Tilleuls'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252020000B0216'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '20960'), ('longitude', '6.173556'), ('latitude', '46.887252')]), OrderedDict([('id_mutation', '2019-73404'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '320000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CHAMP NEUF'), ('adresse_code_voie', '0026'), ('code_postal', '25300'), ('code_commune', '25024'), ('nom_commune', 'Arçon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25024000AB0093'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '167'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '800'), ('longitude', '6.379998'), ('latitude', '46.951359')]), OrderedDict([('id_mutation', '2019-73405'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU MOUTHRIOT'), ('adresse_code_voie', 'B104'), ('code_postal', '25560'), ('code_commune', '25493'), ('nom_commune', 'La Rivière-Drugeon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254930000C0736'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '8560'), ('longitude', '6.247441'), ('latitude', '46.866128')]), OrderedDict([('id_mutation', '2019-73406'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '160000'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0026'), ('code_postal', '25240'), ('code_commune', '25413'), ('nom_commune', 'Mouthe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25413000AC0197'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '633'), ('longitude', '6.191296'), ('latitude', '46.709845')]), OrderedDict([('id_mutation', '2019-73406'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '160000'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0026'), ('code_postal', '25240'), ('code_commune', '25413'), ('nom_commune', 'Mouthe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25413000AC0198'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '3'), ('lot2_surface_carrez', '0.8'), ('lot3_numero', '4'), ('lot3_surface_carrez', ''), ('lot4_numero', '5'), ('lot4_surface_carrez', '52.07'), ('lot5_numero', '6'), ('lot5_surface_carrez', '4.92'), ('nombre_lots', '6'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '138'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.191429'), ('latitude', '46.709644')]), OrderedDict([('id_mutation', '2019-73406'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '160000'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0026'), ('code_postal', '25240'), ('code_commune', '25413'), ('nom_commune', 'Mouthe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25413000AC0198'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '7'), ('lot1_surface_carrez', '41.76'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '40'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.191429'), ('latitude', '46.709644')]), OrderedDict([('id_mutation', '2019-73406'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '160000'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0026'), ('code_postal', '25240'), ('code_commune', '25413'), ('nom_commune', 'Mouthe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25413000AC0198'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', '58.62'), ('lot2_numero', '11'), ('lot2_surface_carrez', '58.62'), ('lot3_numero', '12'), ('lot3_surface_carrez', '58.62'), ('lot4_numero', '13'), ('lot4_surface_carrez', '44.03'), ('lot5_numero', '9'), ('lot5_surface_carrez', '57.89'), ('nombre_lots', '5'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.191429'), ('latitude', '46.709644')]), OrderedDict([('id_mutation', '2019-73407'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1721.25'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B121'), ('code_postal', '25520'), ('code_commune', '25517'), ('nom_commune', 'Saint-Gorgon-Main'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25517000AA0104'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '153'), ('longitude', '6.324236'), ('latitude', '47.021641')]), OrderedDict([('id_mutation', '2019-73408'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1338.75'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B121'), ('code_postal', '25520'), ('code_commune', '25517'), ('nom_commune', 'Saint-Gorgon-Main'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25517000AA0056'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '119'), ('longitude', '6.32106'), ('latitude', '47.023053')]), OrderedDict([('id_mutation', '2019-73409'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '843.75'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B121'), ('code_postal', '25520'), ('code_commune', '25517'), ('nom_commune', 'Saint-Gorgon-Main'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25517000AA0123'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '75'), ('longitude', '6.325223'), ('latitude', '47.022043')]), OrderedDict([('id_mutation', '2019-73410'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU REC'), ('adresse_code_voie', '0870'), ('code_postal', '25130'), ('code_commune', '25321'), ('nom_commune', 'Villers-le-Lac'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25321000AI0052'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1370'), ('longitude', '6.683644'), ('latitude', '47.058423')]), OrderedDict([('id_mutation', '2019-73411'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '239400'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0492'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', '117.88'), ('lot2_numero', '16'), ('lot2_surface_carrez', ''), ('lot3_numero', '17'), ('lot3_surface_carrez', ''), ('lot4_numero', '5'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '117'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.603177'), ('latitude', '47.055493')]), OrderedDict([('id_mutation', '2019-73411'), ('date_mutation', '2019-06-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '239400'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GONSALVE PERTUSIER'), ('adresse_code_voie', '0248'), ('code_postal', '25500'), ('code_commune', '25411'), ('nom_commune', 'Morteau'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25411000AA0492'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.603177'), ('latitude', '47.055493')]), OrderedDict([('id_mutation', '2019-73412'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente terrain à bâtir'), ('valeur_fonciere', '85056'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE GRAND COMMUNAL'), ('adresse_code_voie', 'B152'), ('code_postal', '25500'), ('code_commune', '25160'), ('nom_commune', 'Les Combes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251600000A0859'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '886'), ('longitude', '6.542529'), ('latitude', '47.062714')]), OrderedDict([('id_mutation', '2019-73413'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '204000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES MUROTS ET PLANCHES SEC'), ('adresse_code_voie', 'B014'), ('code_postal', '25530'), ('code_commune', '25441'), ('nom_commune', 'Ouvans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25441000ZB0049'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1712'), ('longitude', '6.485413'), ('latitude', '47.275148')]), OrderedDict([('id_mutation', '2019-73413'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '204000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES MUROTS ET PLANCHES SEC'), ('adresse_code_voie', 'B014'), ('code_postal', '25530'), ('code_commune', '25441'), ('nom_commune', 'Ouvans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25441000ZB0063'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4768'), ('longitude', '6.485599'), ('latitude', '47.275537')]), OrderedDict([('id_mutation', '2019-73413'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '204000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES MUROTS ET PLANCHES SEC'), ('adresse_code_voie', 'B014'), ('code_postal', '25530'), ('code_commune', '25441'), ('nom_commune', 'Ouvans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25441000ZB0090'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '103'), ('longitude', '6.484578'), ('latitude', '47.275046')]), OrderedDict([('id_mutation', '2019-73413'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '204000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES MUROTS ET PLANCHES SEC'), ('adresse_code_voie', 'B014'), ('code_postal', '25530'), ('code_commune', '25441'), ('nom_commune', 'Ouvans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25441000ZB0096'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3000'), ('longitude', '6.485612'), ('latitude', '47.274852')]), OrderedDict([('id_mutation', '2019-73414'), ('date_mutation', '2019-06-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '64500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LOUIERE GRANDE PART'), ('adresse_code_voie', 'B013'), ('code_postal', '25620'), ('code_commune', '25305'), ('nom_commune', "L'Hôpital-du-Grosbois"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25305000ZD0247'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2500'), ('longitude', '6.205144'), ('latitude', '47.174723')]), OrderedDict([('id_mutation', '2019-73415'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '9000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU POMMEREY'), ('adresse_code_voie', 'B170'), ('code_postal', '25580'), ('code_commune', '25222'), ('nom_commune', 'Étalans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252220000A0499'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'SAPIN'), ('nature_culture_speciale', 'Sapins ou sapinière'), ('surface_terrain', '16405'), ('longitude', '6.243286'), ('latitude', '47.184528')]), OrderedDict([('id_mutation', '2019-73416'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4882'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE LE ROUCHAUD'), ('adresse_code_voie', 'B116'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000D0345'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '9381'), ('longitude', '6.134061'), ('latitude', '46.931563')]), OrderedDict([('id_mutation', '2019-73416'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4882'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE LE ROUCHAUD'), ('adresse_code_voie', 'B116'), ('code_postal', '25270'), ('code_commune', '25122'), ('nom_commune', "Chapelle-d'Huin"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251220000D0345'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'B'), ('nature_culture', 'bois'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '930'), ('longitude', '6.134061'), ('latitude', '46.931563')]), OrderedDict([('id_mutation', '2019-73417'), ('date_mutation', '2019-06-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '176000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV MAL DE LATTRE DE TASSIGNY'), ('adresse_code_voie', '0130'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AT0649'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '118'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1045'), ('longitude', '6.138951'), ('latitude', '47.106723')]), OrderedDict([('id_mutation', '2019-73418'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '104000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VOLTA'), ('adresse_code_voie', '0315'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AT0265'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '53'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '247'), ('longitude', '6.140718'), ('latitude', '47.102934')]), OrderedDict([('id_mutation', '2019-73418'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '104000'), ('adresse_numero', '55'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VOLTA'), ('adresse_code_voie', '0315'), ('code_postal', '25290'), ('code_commune', '25434'), ('nom_commune', 'Ornans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25434000AT0306'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '48'), ('longitude', '6.141018'), ('latitude', '47.102717')]), OrderedDict([('id_mutation', '2019-73419'), ('date_mutation', '2019-06-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170071.55'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'EN POUGIE'), ('adresse_code_voie', 'B062'), ('code_postal', '25800'), ('code_commune', '25578'), ('nom_commune', 'Valdahon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25578000AP0266'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '249'), ('longitude', '6.326724'), ('latitude', '47.147908')]), OrderedDict([('id_mutation', '2019-73419'), ('date_mutation', '2019-06-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170071.55'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'EN POUGIE'), ('adresse_code_voie', 'B062'), ('code_postal', '25800'), ('code_commune', '25578'), ('nom_commune', 'Valdahon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25578000AP0268'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2413'), ('longitude', '6.326931'), ('latitude', '47.148034')]), OrderedDict([('id_mutation', '2019-73420'), ('date_mutation', '2019-01-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '5000'), ('adresse_numero', '27'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE LA PETITE HOLLANDE'), ('adresse_code_voie', '1430'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000CL0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '7'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.797619'), ('latitude', '47.498409')]), OrderedDict([('id_mutation', '2019-73421'), ('date_mutation', '2019-01-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CDT D AIGREMONT'), ('adresse_code_voie', '0228'), ('code_postal', '25120'), ('code_commune', '25356'), ('nom_commune', 'Maîche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25356000ZL0007'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '25'), ('lot1_surface_carrez', ''), ('lot2_numero', '38'), ('lot2_surface_carrez', ''), ('lot3_numero', '45'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '83'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.802214'), ('latitude', '47.246882')]), OrderedDict([('id_mutation', '2019-73421'), ('date_mutation', '2019-01-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '145000'), ('adresse_numero', '35'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CDT D AIGREMONT'), ('adresse_code_voie', '0228'), ('code_postal', '25120'), ('code_commune', '25356'), ('nom_commune', 'Maîche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25356000ZL0007'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '35'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.802214'), ('latitude', '47.246882')]), OrderedDict([('id_mutation', '2019-73422'), ('date_mutation', '2019-01-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '35000'), ('adresse_numero', '69'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0100'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BW0139'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '184'), ('lot1_surface_carrez', ''), ('lot2_numero', '194'), ('lot2_surface_carrez', ''), ('lot3_numero', '203'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '48'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.800887'), ('latitude', '47.508697')]), OrderedDict([('id_mutation', '2019-73423'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PALES'), ('adresse_code_voie', '0500'), ('code_postal', '25420'), ('code_commune', '25632'), ('nom_commune', 'Voujeaucourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25632000BI0614'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '806'), ('longitude', '6.766746'), ('latitude', '47.470683')]), OrderedDict([('id_mutation', '2019-73423'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PALES'), ('adresse_code_voie', '0500'), ('code_postal', '25420'), ('code_commune', '25632'), ('nom_commune', 'Voujeaucourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25632000BI0614'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '806'), ('longitude', '6.766746'), ('latitude', '47.470683')]), OrderedDict([('id_mutation', '2019-73423'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PALES'), ('adresse_code_voie', '0500'), ('code_postal', '25420'), ('code_commune', '25632'), ('nom_commune', 'Voujeaucourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25632000BI0614'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '50'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '806'), ('longitude', '6.766746'), ('latitude', '47.470683')]), OrderedDict([('id_mutation', '2019-73423'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PALES'), ('adresse_code_voie', '0500'), ('code_postal', '25420'), ('code_commune', '25632'), ('nom_commune', 'Voujeaucourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25632000BI0614'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '71'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '806'), ('longitude', '6.766746'), ('latitude', '47.470683')]), OrderedDict([('id_mutation', '2019-73423'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES PALES'), ('adresse_code_voie', '0500'), ('code_postal', '25420'), ('code_commune', '25632'), ('nom_commune', 'Voujeaucourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25632000BI0614'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '806'), ('longitude', '6.766746'), ('latitude', '47.470683')]), OrderedDict([('id_mutation', '2019-73424'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '107000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'JARDINS DE LA LAVE'), ('adresse_code_voie', 'B088'), ('code_postal', '25310'), ('code_commune', '25497'), ('nom_commune', 'Roches-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254970000C0219'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '100'), ('longitude', '6.849997'), ('latitude', '47.409253')]), OrderedDict([('id_mutation', '2019-73424'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '107000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'JARDINS DE LA LAVE'), ('adresse_code_voie', 'B088'), ('code_postal', '25310'), ('code_commune', '25497'), ('nom_commune', 'Roches-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254970000C0220'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '100'), ('longitude', '6.850021'), ('latitude', '47.40929')]), OrderedDict([('id_mutation', '2019-73424'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '107000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'JARDINS DE LA LAVE'), ('adresse_code_voie', 'B088'), ('code_postal', '25310'), ('code_commune', '25497'), ('nom_commune', 'Roches-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254970000C0353'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '60'), ('longitude', '6.850449'), ('latitude', '47.409253')]), OrderedDict([('id_mutation', '2019-73424'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '107000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA LAVE DESSUS'), ('adresse_code_voie', 'B090'), ('code_postal', '25310'), ('code_commune', '25497'), ('nom_commune', 'Roches-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254970000C0447'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '21'), ('longitude', '6.850018'), ('latitude', '47.409501')]), OrderedDict([('id_mutation', '2019-73424'), ('date_mutation', '2019-01-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '107000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE LOUIS PERGAUD'), ('adresse_code_voie', '0080'), ('code_postal', '25310'), ('code_commune', '25497'), ('nom_commune', 'Roches-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254970000C0449'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '62'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '797'), ('longitude', '6.850239'), ('latitude', '47.409329')]), OrderedDict([('id_mutation', '2019-73425'), ('date_mutation', '2019-01-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '106500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHAMPS FESCHELINS'), ('adresse_code_voie', '0132'), ('code_postal', '25600'), ('code_commune', '25614'), ('nom_commune', 'Vieux-Charmont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25614000AC0472'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '17'), ('lot1_surface_carrez', ''), ('lot2_numero', '61'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.83417'), ('latitude', '47.52118')]), OrderedDict([('id_mutation', '2019-73426'), ('date_mutation', '2019-01-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '149000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B102'), ('code_postal', '25190'), ('code_commune', '25503'), ('nom_commune', 'Rosières-sur-Barbèche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255030000C0209'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '140'), ('longitude', '6.66085'), ('latitude', '47.317035')]), OrderedDict([('id_mutation', '2019-73426'), ('date_mutation', '2019-01-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '149000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES TILLEULS'), ('adresse_code_voie', '0058'), ('code_postal', '25190'), ('code_commune', '25503'), ('nom_commune', 'Rosières-sur-Barbèche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255030000C0319'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '107'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1239'), ('longitude', '6.661003'), ('latitude', '47.317272')]), OrderedDict([('id_mutation', '2019-73426'), ('date_mutation', '2019-01-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '149000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES TILLEULS'), ('adresse_code_voie', '0058'), ('code_postal', '25190'), ('code_commune', '25503'), ('nom_commune', 'Rosières-sur-Barbèche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255030000C0319'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '107'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '301'), ('longitude', '6.661003'), ('latitude', '47.317272')]), OrderedDict([('id_mutation', '2019-73427'), ('date_mutation', '2019-01-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '167050'), ('adresse_numero', '29'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE MONTBELIARD'), ('adresse_code_voie', '0040'), ('code_postal', '25550'), ('code_commune', '25207'), ('nom_commune', 'Dung'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25207000AB0098'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '97'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '477'), ('longitude', '6.754559'), ('latitude', '47.506776')]), OrderedDict([('id_mutation', '2019-73427'), ('date_mutation', '2019-01-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '167050'), ('adresse_numero', '29'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE MONTBELIARD'), ('adresse_code_voie', '0040'), ('code_postal', '25550'), ('code_commune', '25207'), ('nom_commune', 'Dung'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25207000AB0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '137'), ('longitude', '6.754684'), ('latitude', '47.506826')]), OrderedDict([('id_mutation', '2019-73428'), ('date_mutation', '2019-01-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81150'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINT GEORGES'), ('adresse_code_voie', '1690'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AL0200'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '52'), ('lot2_surface_carrez', ''), ('lot3_numero', '64'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '57'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.789117'), ('latitude', '47.50932')]), OrderedDict([('id_mutation', '2019-73429'), ('date_mutation', '2019-01-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '63000'), ('adresse_numero', '76'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BOIS BOURGEOIS'), ('adresse_code_voie', '0170'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AK0064'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '121'), ('lot1_surface_carrez', '62.55'), ('lot2_numero', '131'), ('lot2_surface_carrez', ''), ('lot3_numero', '141'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '61'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.786523'), ('latitude', '47.513927')]), OrderedDict([('id_mutation', '2019-73429'), ('date_mutation', '2019-01-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '63000'), ('adresse_numero', '76'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BOIS BOURGEOIS'), ('adresse_code_voie', '0170'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AK0064'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '160'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.786523'), ('latitude', '47.513927')]), OrderedDict([('id_mutation', '2019-73430'), ('date_mutation', '2019-01-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '39500'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE GRANDE'), ('adresse_code_voie', '0035'), ('code_postal', '25380'), ('code_commune', '25173'), ('nom_commune', 'Cour-Saint-Maurice'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25173000AC0013'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '123'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '760'), ('longitude', '6.700499'), ('latitude', '47.255733')]), OrderedDict([('id_mutation', '2019-73431'), ('date_mutation', '2019-01-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10000'), ('adresse_numero', '18'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE LA VIE'), ('adresse_code_voie', '0170'), ('code_postal', '25260'), ('code_commune', '25524'), ('nom_commune', 'Saint-Maurice-Colombier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255240000E0942'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '226'), ('longitude', '6.643744'), ('latitude', '47.440956')]), OrderedDict([('id_mutation', '2019-73431'), ('date_mutation', '2019-01-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '10000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SAINT MAURICE ECHELOTTE'), ('adresse_code_voie', 'B159'), ('code_postal', '25260'), ('code_commune', '25524'), ('nom_commune', 'Saint-Maurice-Colombier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255240000E0943'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '50'), ('longitude', '6.643887'), ('latitude', '47.440932')]), OrderedDict([('id_mutation', '2019-73432'), ('date_mutation', '2019-01-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99000'), ('adresse_numero', '5100'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A MOULIN DU PLAIN'), ('adresse_code_voie', 'B222'), ('code_postal', '25470'), ('code_commune', '25314'), ('nom_commune', 'Indevillers'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253140000F0091'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '50'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '360'), ('longitude', '6.95336'), ('latitude', '47.293638')]), OrderedDict([('id_mutation', '2019-73432'), ('date_mutation', '2019-01-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A MOULIN DU PLAIN'), ('adresse_code_voie', 'B222'), ('code_postal', '25470'), ('code_commune', '25314'), ('nom_commune', 'Indevillers'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253140000F0146'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '355'), ('longitude', '6.953351'), ('latitude', '47.293605')]), OrderedDict([('id_mutation', '2019-73432'), ('date_mutation', '2019-01-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A MOULIN DU PLAIN'), ('adresse_code_voie', 'B222'), ('code_postal', '25470'), ('code_commune', '25314'), ('nom_commune', 'Indevillers'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253140000F0160'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '68'), ('longitude', '6.953576'), ('latitude', '47.293463')]), OrderedDict([('id_mutation', '2019-73433'), ('date_mutation', '2019-01-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '17000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ALL AUGUSTE POINTELIN'), ('adresse_code_voie', '0110'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BV0217'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '27'), ('lot1_surface_carrez', ''), ('lot2_numero', '40'), ('lot2_surface_carrez', '67.69'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '73'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.828315'), ('latitude', '47.478265')]), OrderedDict([('id_mutation', '2019-73434'), ('date_mutation', '2019-02-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '156750'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA CRAIE'), ('adresse_code_voie', '0013'), ('code_postal', '25470'), ('code_commune', '25174'), ('nom_commune', 'Courtefontaine'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251740000C0373'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '77'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1184'), ('longitude', '6.904052'), ('latitude', '47.320012')]), OrderedDict([('id_mutation', '2019-73435'), ('date_mutation', '2019-02-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '70000'), ('adresse_numero', '7'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE LA COMBE GUENOT'), ('adresse_code_voie', '0130'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AL0463'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '71'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '464'), ('longitude', '6.871352'), ('latitude', '47.460158')]), OrderedDict([('id_mutation', '2019-73436'), ('date_mutation', '2019-01-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '130450'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CAMPENOTTES'), ('adresse_code_voie', '0140'), ('code_postal', '25550'), ('code_commune', '25048'), ('nom_commune', 'Bavans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25048000AE0447'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '78'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.736101'), ('latitude', '47.483851')]), OrderedDict([('id_mutation', '2019-73436'), ('date_mutation', '2019-01-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '130450'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CAMPENOTTES'), ('adresse_code_voie', '0140'), ('code_postal', '25550'), ('code_commune', '25048'), ('nom_commune', 'Bavans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25048000AE0447'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '78'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', 'MARAI'), ('nature_culture_speciale', 'Pré marais'), ('surface_terrain', '758'), ('longitude', '6.736101'), ('latitude', '47.483851')]), OrderedDict([('id_mutation', '2019-73437'), ('date_mutation', '2019-02-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE LE FOUR'), ('adresse_code_voie', 'B036'), ('code_postal', '25150'), ('code_commune', '25214'), ('nom_commune', 'Écot'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25214000ZC0194'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2805'), ('longitude', '6.726657'), ('latitude', '47.42824')]), OrderedDict([('id_mutation', '2019-73438'), ('date_mutation', '2019-02-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2000'), ('adresse_numero', '1214'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS DES GRAVIERS'), ('adresse_code_voie', 'B026'), ('code_postal', '25260'), ('code_commune', '25524'), ('nom_commune', 'Saint-Maurice-Colombier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25524158ZO0083'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '20'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '430'), ('longitude', '6.627874'), ('latitude', '47.44514')]), OrderedDict([('id_mutation', '2019-73439'), ('date_mutation', '2019-02-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '235400'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE PARIS'), ('adresse_code_voie', '0738'), ('code_postal', '25120'), ('code_commune', '25356'), ('nom_commune', 'Maîche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25356000ZI0125'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '169'), ('longitude', '6.813686'), ('latitude', '47.248132')]), OrderedDict([('id_mutation', '2019-73439'), ('date_mutation', '2019-02-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '235400'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE PARIS'), ('adresse_code_voie', '0738'), ('code_postal', '25120'), ('code_commune', '25356'), ('nom_commune', 'Maîche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25356000ZI0136'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '107'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '281'), ('longitude', '6.813861'), ('latitude', '47.248191')]), OrderedDict([('id_mutation', '2019-73440'), ('date_mutation', '2019-02-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B140'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0152'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '348'), ('longitude', '6.687841'), ('latitude', '47.469515')]), OrderedDict([('id_mutation', '2019-73440'), ('date_mutation', '2019-02-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B140'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0153'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '264'), ('longitude', '6.68787'), ('latitude', '47.469608')]), OrderedDict([('id_mutation', '2019-73440'), ('date_mutation', '2019-02-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA ROCHETTE'), ('adresse_code_voie', '0240'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0547'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '132'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '347'), ('longitude', '6.687591'), ('latitude', '47.469412')]), OrderedDict([('id_mutation', '2019-73441'), ('date_mutation', '2019-02-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '163500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '84'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73441'), ('date_mutation', '2019-02-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '163500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '133'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73441'), ('date_mutation', '2019-02-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '163500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '48'), ('lot1_surface_carrez', ''), ('lot2_numero', '72'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '93'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73442'), ('date_mutation', '2019-02-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142300'), ('adresse_numero', '8'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'RUE GRANDE'), ('adresse_code_voie', '0036'), ('code_postal', '25150'), ('code_commune', '25216'), ('nom_commune', 'Écurcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25216000AH0021'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '948'), ('longitude', '6.791741'), ('latitude', '47.386595')]), OrderedDict([('id_mutation', '2019-73442'), ('date_mutation', '2019-02-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142300'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LA COTE'), ('adresse_code_voie', 'B096'), ('code_postal', '25150'), ('code_commune', '25216'), ('nom_commune', 'Écurcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25216000AH0219'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '97'), ('longitude', '6.791495'), ('latitude', '47.386394')]), OrderedDict([('id_mutation', '2019-73442'), ('date_mutation', '2019-02-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142300'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GRANDE'), ('adresse_code_voie', '0036'), ('code_postal', '25150'), ('code_commune', '25216'), ('nom_commune', 'Écurcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25216000AH0322'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '703'), ('longitude', '6.791942'), ('latitude', '47.386621')]), OrderedDict([('id_mutation', '2019-73443'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '27650'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE HELENE BOUCHER'), ('adresse_code_voie', '0935'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BO0026'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', '79'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '49'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.791772'), ('latitude', '47.499209')]), OrderedDict([('id_mutation', '2019-73444'), ('date_mutation', '2019-01-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170000'), ('adresse_numero', '39'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES BARRES'), ('adresse_code_voie', '0130'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BR0460'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '416'), ('longitude', '6.825147'), ('latitude', '47.462794')]), OrderedDict([('id_mutation', '2019-73444'), ('date_mutation', '2019-01-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170000'), ('adresse_numero', '39'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES BARRES'), ('adresse_code_voie', '0130'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BR0462'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '93'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '254'), ('longitude', '6.825513'), ('latitude', '47.462707')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BECHOTS'), ('adresse_code_voie', 'B003'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0603'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '12'), ('longitude', '6.854434'), ('latitude', '47.476024')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BECHOTS'), ('adresse_code_voie', 'B003'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0607'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '728'), ('longitude', '6.854249'), ('latitude', '47.475778')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BECHOTS'), ('adresse_code_voie', 'B003'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0612'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '23'), ('longitude', '6.853982'), ('latitude', '47.475863')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BECHOTS'), ('adresse_code_voie', 'B003'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0615'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '60'), ('longitude', '6.854095'), ('latitude', '47.475643')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BECHOTS'), ('adresse_code_voie', 'B003'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0616'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '32'), ('longitude', '6.854073'), ('latitude', '47.475562')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BECHOTS'), ('adresse_code_voie', 'B003'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0618'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6'), ('longitude', '6.853975'), ('latitude', '47.475639')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', '13'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'RUE MARCEL PAUL'), ('adresse_code_voie', '0603'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0620'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '395'), ('longitude', '6.853977'), ('latitude', '47.475506')]), OrderedDict([('id_mutation', '2019-73445'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES BECHOTS'), ('adresse_code_voie', 'B003'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AR0641'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '54'), ('longitude', '6.853852'), ('latitude', '47.475464')]), OrderedDict([('id_mutation', '2019-73446'), ('date_mutation', '2019-02-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0375'), ('code_postal', '25150'), ('code_commune', '25463'), ('nom_commune', 'Pont-de-Roide-Vermondans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25463603AE0001'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '986'), ('longitude', '6.762696'), ('latitude', '47.388278')]), OrderedDict([('id_mutation', '2019-73446'), ('date_mutation', '2019-02-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0375'), ('code_postal', '25150'), ('code_commune', '25463'), ('nom_commune', 'Pont-de-Roide-Vermondans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25463603AE0001'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '57'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '986'), ('longitude', '6.762696'), ('latitude', '47.388278')]), OrderedDict([('id_mutation', '2019-73446'), ('date_mutation', '2019-02-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0375'), ('code_postal', '25150'), ('code_commune', '25463'), ('nom_commune', 'Pont-de-Roide-Vermondans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25463603AE0001'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '986'), ('longitude', '6.762696'), ('latitude', '47.388278')]), OrderedDict([('id_mutation', '2019-73446'), ('date_mutation', '2019-02-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PRES DE LA CRAYE'), ('adresse_code_voie', 'B101'), ('code_postal', '25150'), ('code_commune', '25463'), ('nom_commune', 'Pont-de-Roide-Vermondans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25463603AE0002'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '827'), ('longitude', '6.762286'), ('latitude', '47.38843')]), OrderedDict([('id_mutation', '2019-73447'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES GRANDES PRENES'), ('adresse_code_voie', 'B145'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000AX0188'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '683'), ('longitude', '6.803319'), ('latitude', '47.446327')]), OrderedDict([('id_mutation', '2019-73447'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES GRANDES PRENES'), ('adresse_code_voie', 'B145'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000AX0190'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '377'), ('longitude', '6.803463'), ('latitude', '47.446443')]), OrderedDict([('id_mutation', '2019-73447'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS DE LA CHAPELLE'), ('adresse_code_voie', 'B026'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000ZB0045'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '340'), ('longitude', '6.833001'), ('latitude', '47.439732')]), OrderedDict([('id_mutation', '2019-73447'), ('date_mutation', '2019-02-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ARGELIERES'), ('adresse_code_voie', 'B004'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000ZE0056'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '840'), ('longitude', '6.812132'), ('latitude', '47.439382')]), OrderedDict([('id_mutation', '2019-73448'), ('date_mutation', '2019-03-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '163170'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE FESCHES LE CHATEL'), ('adresse_code_voie', '0280'), ('code_postal', '25460'), ('code_commune', '25228'), ('nom_commune', 'Étupes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25228000AB0637'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '129'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.861385'), ('latitude', '47.507296')]), OrderedDict([('id_mutation', '2019-73448'), ('date_mutation', '2019-03-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '163170'), ('adresse_numero', '1'), ('adresse_suffixe', '1'), ('adresse_nom_voie', 'RUE DE FESCHES LE CHATEL'), ('adresse_code_voie', '0280'), ('code_postal', '25460'), ('code_commune', '25228'), ('nom_commune', 'Étupes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25228000AB1004'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '28'), ('longitude', '6.861491'), ('latitude', '47.507157')]), OrderedDict([('id_mutation', '2019-73449'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '148000'), ('adresse_numero', '3'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES PRES'), ('adresse_code_voie', '0790'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AI0220'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '735'), ('longitude', '6.842372'), ('latitude', '47.483065')]), OrderedDict([('id_mutation', '2019-73450'), ('date_mutation', '2019-02-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '144000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE GRAND CROT'), ('adresse_code_voie', 'B053'), ('code_postal', '25140'), ('code_commune', '25127'), ('nom_commune', 'Charquemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25127000AN0059'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2046'), ('longitude', '6.823115'), ('latitude', '47.203517')]), OrderedDict([('id_mutation', '2019-73450'), ('date_mutation', '2019-02-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '144000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE GRAND CROT'), ('adresse_code_voie', 'B053'), ('code_postal', '25140'), ('code_commune', '25127'), ('nom_commune', 'Charquemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25127000AN0062'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '9954'), ('longitude', '6.823396'), ('latitude', '47.203042')]), OrderedDict([('id_mutation', '2019-73451'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '123000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SUR LA TOUR'), ('adresse_code_voie', '0580'), ('code_postal', '25600'), ('code_commune', '25428'), ('nom_commune', 'Nommay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25428000AC0146'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '830'), ('longitude', '6.845796'), ('latitude', '47.538402')]), OrderedDict([('id_mutation', '2019-73452'), ('date_mutation', '2019-02-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '88000'), ('adresse_numero', '55'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE D AUDINCOURT'), ('adresse_code_voie', '0090'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BH0397'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '14'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.806817'), ('latitude', '47.498037')]), OrderedDict([('id_mutation', '2019-73452'), ('date_mutation', '2019-02-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '88000'), ('adresse_numero', '55'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE D AUDINCOURT'), ('adresse_code_voie', '0090'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BH0397'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '19'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.806817'), ('latitude', '47.498037')]), OrderedDict([('id_mutation', '2019-73452'), ('date_mutation', '2019-02-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '88000'), ('adresse_numero', '55'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE D AUDINCOURT'), ('adresse_code_voie', '0090'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BH0397'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.806817'), ('latitude', '47.498037')]), OrderedDict([('id_mutation', '2019-73452'), ('date_mutation', '2019-02-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '88000'), ('adresse_numero', '55'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE D AUDINCOURT'), ('adresse_code_voie', '0090'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BH0397'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '29'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.806817'), ('latitude', '47.498037')]), OrderedDict([('id_mutation', '2019-73453'), ('date_mutation', '2019-03-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '38000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D ETUPES'), ('adresse_code_voie', '0200'), ('code_postal', '25490'), ('code_commune', '25190'), ('nom_commune', 'Dampierre-les-Bois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25190000AE0063'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '8'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '37'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.909656'), ('latitude', '47.508469')]), OrderedDict([('id_mutation', '2019-73454'), ('date_mutation', '2019-02-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2300'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LE TAILLIS'), ('adresse_code_voie', 'B041'), ('code_postal', '25470'), ('code_commune', '25559'), ('nom_commune', 'Thiébouhans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25559000AC0183'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4920'), ('longitude', '6.851865'), ('latitude', '47.277288')]), OrderedDict([('id_mutation', '2019-73454'), ('date_mutation', '2019-02-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2300'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LE TAILLIS'), ('adresse_code_voie', 'B041'), ('code_postal', '25470'), ('code_commune', '25559'), ('nom_commune', 'Thiébouhans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25559000AC0183'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2460'), ('longitude', '6.851865'), ('latitude', '47.277288')]), OrderedDict([('id_mutation', '2019-73455'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1457'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LA RUOTTE'), ('adresse_code_voie', 'B066'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000AL0389'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', 'POTAG'), ('nature_culture_speciale', 'Jardin potager'), ('surface_terrain', '67'), ('longitude', '6.825016'), ('latitude', '47.466909')]), OrderedDict([('id_mutation', '2019-73455'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1457'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LA RUOTTE'), ('adresse_code_voie', 'B066'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000AL0399'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '218'), ('longitude', '6.824632'), ('latitude', '47.466315')]), OrderedDict([('id_mutation', '2019-73455'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1457'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX COURBES COMBES'), ('adresse_code_voie', 'B025'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000AT0115'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1172'), ('longitude', '6.822312'), ('latitude', '47.454046')]), OrderedDict([('id_mutation', '2019-73456'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '720'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LA RUOTTE'), ('adresse_code_voie', 'B066'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000AL0371'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', 'POTAG'), ('nature_culture_speciale', 'Jardin potager'), ('surface_terrain', '320'), ('longitude', '6.825135'), ('latitude', '47.466509')]), OrderedDict([('id_mutation', '2019-73456'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '720'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LA RUOTTE'), ('adresse_code_voie', 'B066'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000AL0372'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', 'POTAG'), ('nature_culture_speciale', 'Jardin potager'), ('surface_terrain', '400'), ('longitude', '6.825936'), ('latitude', '47.466356')]), OrderedDict([('id_mutation', '2019-73457'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20500'), ('adresse_numero', '34'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU PETIT CHENOIS'), ('adresse_code_voie', '1420'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BP0008'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '37'), ('lot1_surface_carrez', ''), ('lot2_numero', '95'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '49'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.799196'), ('latitude', '47.501838')]), OrderedDict([('id_mutation', '2019-73458'), ('date_mutation', '2019-02-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '127500'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL DE L HOTEL DE VILLE'), ('adresse_code_voie', '0360'), ('code_postal', '25140'), ('code_commune', '25127'), ('nom_commune', 'Charquemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25127000AE0182'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', '88.45'), ('lot2_numero', '8'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '93'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.823789'), ('latitude', '47.212855')]), OrderedDict([('id_mutation', '2019-73459'), ('date_mutation', '2019-02-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '217483'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAMESOL'), ('adresse_code_voie', '0020'), ('code_postal', '25190'), ('code_commune', '25393'), ('nom_commune', 'Montécheroux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253930000D0414'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '272'), ('longitude', '6.809163'), ('latitude', '47.349334')]), OrderedDict([('id_mutation', '2019-73459'), ('date_mutation', '2019-02-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '217483'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX QUEMENES'), ('adresse_code_voie', 'B132'), ('code_postal', '25190'), ('code_commune', '25393'), ('nom_commune', 'Montécheroux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253930000D0417'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.809501'), ('latitude', '47.349079')]), OrderedDict([('id_mutation', '2019-73459'), ('date_mutation', '2019-02-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '217483'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX QUEMENES'), ('adresse_code_voie', 'B132'), ('code_postal', '25190'), ('code_commune', '25393'), ('nom_commune', 'Montécheroux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253930000D0417'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1265'), ('longitude', '6.809501'), ('latitude', '47.349079')]), OrderedDict([('id_mutation', '2019-73460'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VANDONCOURT'), ('adresse_code_voie', '0430'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AI0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '550'), ('longitude', '6.865479'), ('latitude', '47.46168')]), OrderedDict([('id_mutation', '2019-73460'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VANDONCOURT'), ('adresse_code_voie', '0430'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AI0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '64'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '219'), ('longitude', '6.865479'), ('latitude', '47.46168')]), OrderedDict([('id_mutation', '2019-73460'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VANDONCOURT'), ('adresse_code_voie', '0430'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AI0102'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BS'), ('nature_culture', 'taillis sous futaie'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '252'), ('longitude', '6.865369'), ('latitude', '47.461722')]), OrderedDict([('id_mutation', '2019-73460'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VANDONCOURT'), ('adresse_code_voie', '0430'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AI0102'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '60'), ('longitude', '6.865369'), ('latitude', '47.461722')]), OrderedDict([('id_mutation', '2019-73461'), ('date_mutation', '2019-03-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '32000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CORBIERES'), ('adresse_code_voie', 'B038'), ('code_postal', '25210'), ('code_commune', '25456'), ('nom_commune', 'Plaimbois-du-Miroir'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254560000B0121'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '20034'), ('longitude', '6.611668'), ('latitude', '47.191918')]), OrderedDict([('id_mutation', '2019-73462'), ('date_mutation', '2019-03-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRE MILIERE'), ('adresse_code_voie', 'B045'), ('code_postal', '25450'), ('code_commune', '25193'), ('nom_commune', 'Damprichard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251930000E0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '6400'), ('longitude', '6.889994'), ('latitude', '47.242137')]), OrderedDict([('id_mutation', '2019-73463'), ('date_mutation', '2019-02-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '97000'), ('adresse_numero', '33'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0325'), ('code_postal', '25600'), ('code_commune', '25428'), ('nom_commune', 'Nommay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25428000AB0229'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '15'), ('lot2_surface_carrez', ''), ('lot3_numero', '3'), ('lot3_surface_carrez', '102.39'), ('lot4_numero', '7'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.845789'), ('latitude', '47.535874')]), OrderedDict([('id_mutation', '2019-73464'), ('date_mutation', '2019-02-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '63200'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PARMENTIER'), ('adresse_code_voie', '1370'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AM0360'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '178'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.793335'), ('latitude', '47.515027')]), OrderedDict([('id_mutation', '2019-73464'), ('date_mutation', '2019-02-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '63200'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PARMENTIER'), ('adresse_code_voie', '1370'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AM0360'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '59'), ('lot1_surface_carrez', ''), ('lot2_numero', '88'), ('lot2_surface_carrez', '66.59'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '67'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.793335'), ('latitude', '47.515027')]), OrderedDict([('id_mutation', '2019-73465'), ('date_mutation', '2019-02-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '5000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRES DES BERTOTTES'), ('adresse_code_voie', 'B082'), ('code_postal', '25150'), ('code_commune', '25214'), ('nom_commune', 'Écot'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252140000C1247'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3163'), ('longitude', '6.719456'), ('latitude', '47.421382')]), OrderedDict([('id_mutation', '2019-73465'), ('date_mutation', '2019-02-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '5000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PRES DES BERTOTTES'), ('adresse_code_voie', 'B082'), ('code_postal', '25150'), ('code_commune', '25214'), ('nom_commune', 'Écot'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252140000C1273'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2450'), ('longitude', '6.718338'), ('latitude', '47.421039')]), OrderedDict([('id_mutation', '2019-73465'), ('date_mutation', '2019-02-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '5000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'EN COURCELOTTE'), ('adresse_code_voie', 'B034'), ('code_postal', '25150'), ('code_commune', '25214'), ('nom_commune', 'Écot'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252140000C1330'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '9021'), ('longitude', '6.718707'), ('latitude', '47.412821')]), OrderedDict([('id_mutation', '2019-73466'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '41500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VERS LES VIGNES'), ('adresse_code_voie', 'B101'), ('code_postal', '25150'), ('code_commune', '25033'), ('nom_commune', 'Autechaux-Roide'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25033000AD0170'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1179'), ('longitude', '6.818261'), ('latitude', '47.394082')]), OrderedDict([('id_mutation', '2019-73466'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '41500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VERS LES VIGNES'), ('adresse_code_voie', 'B101'), ('code_postal', '25150'), ('code_commune', '25033'), ('nom_commune', 'Autechaux-Roide'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25033000AD0173'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '21'), ('longitude', '6.81794'), ('latitude', '47.394001')]), OrderedDict([('id_mutation', '2019-73466'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '41500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VERS LES VIGNES'), ('adresse_code_voie', 'B101'), ('code_postal', '25150'), ('code_commune', '25033'), ('nom_commune', 'Autechaux-Roide'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25033000AD0177'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2198'), ('longitude', '6.818124'), ('latitude', '47.39372')]), OrderedDict([('id_mutation', '2019-73467'), ('date_mutation', '2019-02-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '127000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DU PARC'), ('adresse_code_voie', '0252'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000AI0020'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '141'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '765'), ('longitude', '6.827111'), ('latitude', '47.444864')]), OrderedDict([('id_mutation', '2019-73468'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BAS DE COMBOTTE'), ('adresse_code_voie', 'B004'), ('code_postal', '25550'), ('code_commune', '25048'), ('nom_commune', 'Bavans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25048000AC0814'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '108'), ('longitude', '6.722927'), ('latitude', '47.481573')]), OrderedDict([('id_mutation', '2019-73469'), ('date_mutation', '2019-02-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136000'), ('adresse_numero', '1'), ('adresse_suffixe', 'F'), ('adresse_nom_voie', 'RUE DU CHENE'), ('adresse_code_voie', '0060'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000AK0393'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '95'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '437'), ('longitude', '6.829488'), ('latitude', '47.445854')]), OrderedDict([('id_mutation', '2019-73470'), ('date_mutation', '2019-02-23'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '106500'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ETAINS'), ('adresse_code_voie', '0190'), ('code_postal', '25490'), ('code_commune', '25190'), ('nom_commune', 'Dampierre-les-Bois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25190000AB0060'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '194'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1575'), ('longitude', '6.921887'), ('latitude', '47.515265')]), OrderedDict([('id_mutation', '2019-73471'), ('date_mutation', '2019-02-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B046'), ('code_postal', '25120'), ('code_commune', '25108'), ('nom_commune', "Cernay-l'Église"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25108000AB0019'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1022'), ('longitude', '6.831887'), ('latitude', '47.259459')]), OrderedDict([('id_mutation', '2019-73472'), ('date_mutation', '2019-02-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '34150'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE LOUIS PERGAUD'), ('adresse_code_voie', '0850'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BV0001'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '54'), ('lot1_surface_carrez', '75.96'), ('lot2_numero', '64'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '76'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.822739'), ('latitude', '47.479904')]), OrderedDict([('id_mutation', '2019-73473'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente terrain à bâtir'), ('valeur_fonciere', '74976'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EMILE ISENBART'), ('adresse_code_voie', '0040'), ('code_postal', '25500'), ('code_commune', '25050'), ('nom_commune', 'Le Bélieu'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25050000AB0064'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '852'), ('longitude', '6.627177'), ('latitude', '47.119861')]), OrderedDict([('id_mutation', '2019-73474'), ('date_mutation', '2019-03-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '168000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DES CERISIERS'), ('adresse_code_voie', '0085'), ('code_postal', '25230'), ('code_commune', '25196'), ('nom_commune', 'Dasle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251960000A0849'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '659'), ('longitude', '6.904684'), ('latitude', '47.481663')]), OrderedDict([('id_mutation', '2019-73475'), ('date_mutation', '2019-03-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191700'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE NEUCHATEL URTIERE'), ('adresse_code_voie', '0628'), ('code_postal', '25150'), ('code_commune', '25463'), ('nom_commune', 'Pont-de-Roide-Vermondans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254636030C0655'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '120'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '925'), ('longitude', '6.752065'), ('latitude', '47.388362')]), OrderedDict([('id_mutation', '2019-73475'), ('date_mutation', '2019-03-14'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191700'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CABOULOTS'), ('adresse_code_voie', 'B061'), ('code_postal', '25150'), ('code_commune', '25463'), ('nom_commune', 'Pont-de-Roide-Vermondans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254636030C0806'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '625'), ('longitude', '6.752501'), ('latitude', '47.388102')]), OrderedDict([('id_mutation', '2019-73476'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES COMBOLES'), ('adresse_code_voie', 'B052'), ('code_postal', '25310'), ('code_commune', '25497'), ('nom_commune', 'Roches-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254970000A0457'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5565'), ('longitude', '6.85378'), ('latitude', '47.413867')]), OrderedDict([('id_mutation', '2019-73476'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES COMBOLES'), ('adresse_code_voie', 'B052'), ('code_postal', '25310'), ('code_commune', '25497'), ('nom_commune', 'Roches-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254970000A0457'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2782'), ('longitude', '6.85378'), ('latitude', '47.413867')]), OrderedDict([('id_mutation', '2019-73477'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '169650'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VICTOR HUGO'), ('adresse_code_voie', '0560'), ('code_postal', '25140'), ('code_commune', '25127'), ('nom_commune', 'Charquemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25127000AB0448'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', '5'), ('lot2_surface_carrez', ''), ('lot3_numero', '6'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '128'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.816594'), ('latitude', '47.217431')]), OrderedDict([('id_mutation', '2019-73477'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '169650'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VICTOR HUGO'), ('adresse_code_voie', '0560'), ('code_postal', '25140'), ('code_commune', '25127'), ('nom_commune', 'Charquemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25127000AB0448'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.816594'), ('latitude', '47.217431')]), OrderedDict([('id_mutation', '2019-73478'), ('date_mutation', '2019-02-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '91000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHARMES'), ('adresse_code_voie', '0013'), ('code_postal', '25450'), ('code_commune', '25193'), ('nom_commune', 'Damprichard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25193000AC0200'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '709'), ('longitude', '6.88196'), ('latitude', '47.247548')]), OrderedDict([('id_mutation', '2019-73479'), ('date_mutation', '2019-03-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU HAMEAU'), ('adresse_code_voie', '0028'), ('code_postal', '25120'), ('code_commune', '25392'), ('nom_commune', 'Mont-de-Vougney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25392000AB0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1200'), ('longitude', '6.715757'), ('latitude', '47.237044')]), OrderedDict([('id_mutation', '2019-73479'), ('date_mutation', '2019-03-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU HAMEAU'), ('adresse_code_voie', '0028'), ('code_postal', '25120'), ('code_commune', '25392'), ('nom_commune', 'Mont-de-Vougney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25392000AB0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '612'), ('longitude', '6.715757'), ('latitude', '47.237044')]), OrderedDict([('id_mutation', '2019-73480'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '52000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE SOCHAUX'), ('adresse_code_voie', '0470'), ('code_postal', '25200'), ('code_commune', '25284'), ('nom_commune', 'Grand-Charmont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25284000AK0226'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '42'), ('lot1_surface_carrez', ''), ('lot2_numero', '76'), ('lot2_surface_carrez', '93'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '93'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.826235'), ('latitude', '47.526026')]), OrderedDict([('id_mutation', '2019-73481'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '105000'), ('adresse_numero', '32'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE SAINTE MARIE'), ('adresse_code_voie', '0280'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AC0265'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '57'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '450'), ('longitude', '6.688774'), ('latitude', '47.474823')]), OrderedDict([('id_mutation', '2019-73481'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '105000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE CHESAL'), ('adresse_code_voie', 'B021'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AC0368'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '381'), ('longitude', '6.689017'), ('latitude', '47.474931')]), OrderedDict([('id_mutation', '2019-73482'), ('date_mutation', '2019-02-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '127200'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ARRAS'), ('adresse_code_voie', '0050'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AT0591'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', 'POTAG'), ('nature_culture_speciale', 'Jardin potager'), ('surface_terrain', '2317'), ('longitude', '6.846669'), ('latitude', '47.473476')]), OrderedDict([('id_mutation', '2019-73483'), ('date_mutation', '2019-02-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '224900'), ('adresse_numero', '58'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES SOURCES'), ('adresse_code_voie', '0745'), ('code_postal', '25600'), ('code_commune', '25614'), ('nom_commune', 'Vieux-Charmont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25614000AD0397'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '120'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '737'), ('longitude', '6.83118'), ('latitude', '47.525187')]), OrderedDict([('id_mutation', '2019-73484'), ('date_mutation', '2019-02-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65990'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GENTIANES'), ('adresse_code_voie', '0615'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BE0045'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '59'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '131'), ('longitude', '6.835393'), ('latitude', '47.474927')]), OrderedDict([('id_mutation', '2019-73485'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CHENEVIERES DESSOUS'), ('adresse_code_voie', 'B024'), ('code_postal', '25490'), ('code_commune', '25237'), ('nom_commune', 'Fesches-le-Châtel'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25237000AB0383'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '30'), ('longitude', '6.895883'), ('latitude', '47.522793')]), OrderedDict([('id_mutation', '2019-73485'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE LOUIS DORMOY'), ('adresse_code_voie', '0280'), ('code_postal', '25490'), ('code_commune', '25237'), ('nom_commune', 'Fesches-le-Châtel'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25237000AB0653'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '617'), ('longitude', '6.89609'), ('latitude', '47.522798')]), OrderedDict([('id_mutation', '2019-73485'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CHENEVIERES DESSOUS'), ('adresse_code_voie', 'B024'), ('code_postal', '25490'), ('code_commune', '25237'), ('nom_commune', 'Fesches-le-Châtel'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25237000AB0764'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '126'), ('longitude', '6.895974'), ('latitude', '47.522873')]), OrderedDict([('id_mutation', '2019-73485'), ('date_mutation', '2019-03-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CHENEVIERES DESSOUS'), ('adresse_code_voie', 'B024'), ('code_postal', '25490'), ('code_commune', '25237'), ('nom_commune', 'Fesches-le-Châtel'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25237000AB0766'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '62'), ('longitude', '6.895905'), ('latitude', '47.522849')]), OrderedDict([('id_mutation', '2019-73486'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '28000'), ('adresse_numero', '34'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU PETIT CHENOIS'), ('adresse_code_voie', '1420'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BP0008'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '113'), ('lot1_surface_carrez', ''), ('lot2_numero', '55'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '49'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.799196'), ('latitude', '47.501838')]), OrderedDict([('id_mutation', '2019-73487'), ('date_mutation', '2019-02-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '17500'), ('adresse_numero', '25'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE LOUIS PERGAUD'), ('adresse_code_voie', '0850'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BV0001'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '195'), ('lot1_surface_carrez', '64.03'), ('lot2_numero', '213'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.822739'), ('latitude', '47.479904')]), OrderedDict([('id_mutation', '2019-73488'), ('date_mutation', '2019-03-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '103000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '102'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73488'), ('date_mutation', '2019-03-01'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '103000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '64'), ('lot1_surface_carrez', '61.53'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '61'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73489'), ('date_mutation', '2019-03-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80500'), ('adresse_numero', '5017'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE HAMEAU DE CHAUVILLIERS'), ('adresse_code_voie', 'B197'), ('code_postal', '25470'), ('code_commune', '25314'), ('nom_commune', 'Indevillers'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25314000ZC0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '180'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1280'), ('longitude', '6.978547'), ('latitude', '47.323685')]), OrderedDict([('id_mutation', '2019-73489'), ('date_mutation', '2019-03-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80500'), ('adresse_numero', '5017'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE HAMEAU DE CHAUVILLIERS'), ('adresse_code_voie', 'B197'), ('code_postal', '25470'), ('code_commune', '25314'), ('nom_commune', 'Indevillers'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25314000ZC0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '180'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '940'), ('longitude', '6.978547'), ('latitude', '47.323685')]), OrderedDict([('id_mutation', '2019-73490'), ('date_mutation', '2019-03-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '210000'), ('adresse_numero', '5001'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CHATEAU'), ('adresse_code_voie', '0013'), ('code_postal', '25470'), ('code_commune', '25314'), ('nom_commune', 'Indevillers'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25314000ZI0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '160'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '766'), ('longitude', '6.953893'), ('latitude', '47.312228')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '832'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '160'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '832'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '832'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '832'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0078'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '160'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.807045'), ('latitude', '47.492418')]), OrderedDict([('id_mutation', '2019-73491'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161500'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE COURCELLES'), ('adresse_code_voie', '0160'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AA0299'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '83'), ('longitude', '6.807246'), ('latitude', '47.492265')]), OrderedDict([('id_mutation', '2019-73492'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '11000'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU GENERAL LECLERC'), ('adresse_code_voie', '0810'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AM0134'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '132'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.798026'), ('latitude', '47.51193')]), OrderedDict([('id_mutation', '2019-73493'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '600000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR L EGLISE'), ('adresse_code_voie', 'B016'), ('code_postal', '25470'), ('code_commune', '25280'), ('nom_commune', 'Goumois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25280000AC0131'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1665'), ('longitude', '6.944795'), ('latitude', '47.260312')]), OrderedDict([('id_mutation', '2019-73493'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '600000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR L EGLISE'), ('adresse_code_voie', 'B016'), ('code_postal', '25470'), ('code_commune', '25280'), ('nom_commune', 'Goumois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25280000AC0132'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2162'), ('longitude', '6.945362'), ('latitude', '47.260244')]), OrderedDict([('id_mutation', '2019-73493'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '600000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR L EGLISE'), ('adresse_code_voie', 'B016'), ('code_postal', '25470'), ('code_commune', '25280'), ('nom_commune', 'Goumois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25280000AC0133'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '562'), ('longitude', '6.945238'), ('latitude', '47.260468')]), OrderedDict([('id_mutation', '2019-73493'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '600000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR L EGLISE'), ('adresse_code_voie', 'B016'), ('code_postal', '25470'), ('code_commune', '25280'), ('nom_commune', 'Goumois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25280000AC0134'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1035'), ('longitude', '6.945647'), ('latitude', '47.260526')]), OrderedDict([('id_mutation', '2019-73493'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '600000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR L EGLISE'), ('adresse_code_voie', 'B016'), ('code_postal', '25470'), ('code_commune', '25280'), ('nom_commune', 'Goumois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25280000AC0135'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1325'), ('longitude', '6.945697'), ('latitude', '47.261102')]), OrderedDict([('id_mutation', '2019-73493'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '600000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE LA CORNICHE'), ('adresse_code_voie', '0022'), ('code_postal', '25470'), ('code_commune', '25280'), ('nom_commune', 'Goumois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25280000AC0136'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '830'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1730'), ('longitude', '6.94522'), ('latitude', '47.260661')]), OrderedDict([('id_mutation', '2019-73494'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '189950'), ('adresse_numero', '2'), ('adresse_suffixe', 'E'), ('adresse_nom_voie', 'IMP DE BONDEVAL'), ('adresse_code_voie', '0089'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AW0254'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '502'), ('longitude', '6.842606'), ('latitude', '47.470807')]), OrderedDict([('id_mutation', '2019-73494'), ('date_mutation', '2019-03-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '189950'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BONDEVAL'), ('adresse_code_voie', '0090'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AW0255'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '81'), ('longitude', '6.842346'), ('latitude', '47.470926')]), OrderedDict([('id_mutation', '2019-73495'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1480'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B134'), ('code_postal', '25490'), ('code_commune', '25011'), ('nom_commune', 'Allenjoie'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25011000AB0689'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '21'), ('longitude', '6.897299'), ('latitude', '47.534947')]), OrderedDict([('id_mutation', '2019-73495'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1480'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B134'), ('code_postal', '25490'), ('code_commune', '25011'), ('nom_commune', 'Allenjoie'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25011000AB0690'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '16'), ('longitude', '6.897427'), ('latitude', '47.5351')]), OrderedDict([('id_mutation', '2019-73496'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '97000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL DES COMBES ST GERMAIN'), ('adresse_code_voie', '0420'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000AR0128'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '91'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '658'), ('longitude', '6.828244'), ('latitude', '47.450207')]), OrderedDict([('id_mutation', '2019-73497'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6440'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES COURBIERES'), ('adresse_code_voie', 'B106'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000AI0518'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '322'), ('longitude', '6.823963'), ('latitude', '47.443395')]), OrderedDict([('id_mutation', '2019-73498'), ('date_mutation', '2019-03-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4092'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PIGUESSES'), ('adresse_code_voie', 'B069'), ('code_postal', '25150'), ('code_commune', '25082'), ('nom_commune', 'Bourguignon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250820000A1172'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '62'), ('longitude', '6.784826'), ('latitude', '47.415588')]), OrderedDict([('id_mutation', '2019-73499'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '119050'), ('adresse_numero', '12'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'AV CARNOT'), ('adresse_code_voie', '0220'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BV0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', '12'), ('lot2_surface_carrez', '98.51'), ('lot3_numero', '14'), ('lot3_surface_carrez', ''), ('lot4_numero', '4'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '101'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.803014'), ('latitude', '47.508056')]), OrderedDict([('id_mutation', '2019-73500'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '134062'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CHAMPS DES POMMEROTS'), ('adresse_code_voie', 'B026'), ('code_postal', '25310'), ('code_commune', '25063'), ('nom_commune', 'Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250630000D0552'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '10'), ('longitude', '6.847398'), ('latitude', '47.384516')]), OrderedDict([('id_mutation', '2019-73500'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '134062'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DES VIOLETTES'), ('adresse_code_voie', '0260'), ('code_postal', '25310'), ('code_commune', '25063'), ('nom_commune', 'Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250630000D0556'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '91'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '812'), ('longitude', '6.846302'), ('latitude', '47.383895')]), OrderedDict([('id_mutation', '2019-73500'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '134062'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CHAMPS DES POMMEROTS'), ('adresse_code_voie', 'B026'), ('code_postal', '25310'), ('code_commune', '25063'), ('nom_commune', 'Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250630000D0560'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1303'), ('longitude', '6.846617'), ('latitude', '47.384299')]), OrderedDict([('id_mutation', '2019-73501'), ('date_mutation', '2019-03-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA MUNIERE'), ('adresse_code_voie', '0100'), ('code_postal', '25310'), ('code_commune', '25562'), ('nom_commune', 'Thulay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255620000A0489'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '112'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '922'), ('longitude', '6.865061'), ('latitude', '47.427333')]), OrderedDict([('id_mutation', '2019-73501'), ('date_mutation', '2019-03-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ESPRIT'), ('adresse_code_voie', 'B019'), ('code_postal', '25310'), ('code_commune', '25562'), ('nom_commune', 'Thulay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255620000A0492'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '657'), ('longitude', '6.865065'), ('latitude', '47.427233')]), OrderedDict([('id_mutation', '2019-73502'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B114'), ('code_postal', '25700'), ('code_commune', '25370'), ('nom_commune', 'Mathay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25370000AH0246'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1219'), ('longitude', '6.78711'), ('latitude', '47.437692')]), OrderedDict([('id_mutation', '2019-73502'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES PARTS D HIRMONT DE CA'), ('adresse_code_voie', 'B075'), ('code_postal', '25700'), ('code_commune', '25370'), ('nom_commune', 'Mathay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253700000F1018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '682'), ('longitude', '6.773962'), ('latitude', '47.454456')]), OrderedDict([('id_mutation', '2019-73503'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '75000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE MONTBOUTON'), ('adresse_code_voie', '0280'), ('code_postal', '25230'), ('code_commune', '25196'), ('nom_commune', 'Dasle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25196000AB0646'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', 'PARC'), ('nature_culture_speciale', 'Parc'), ('surface_terrain', '1175'), ('longitude', '6.900057'), ('latitude', '47.478136')]), OrderedDict([('id_mutation', '2019-73503'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '75000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMP DUVOID'), ('adresse_code_voie', 'B007'), ('code_postal', '25230'), ('code_commune', '25196'), ('nom_commune', 'Dasle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25196000AB0724'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '594'), ('longitude', '6.899405'), ('latitude', '47.478168')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX BERCAMES'), ('adresse_code_voie', 'B003'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AA0095'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6486'), ('longitude', '6.873382'), ('latitude', '47.543749')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES PONSSOTS'), ('adresse_code_voie', 'B047'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AB0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2130'), ('longitude', '6.870802'), ('latitude', '47.541377')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VIGNES'), ('adresse_code_voie', 'B092'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AI0011'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '815'), ('longitude', '6.871429'), ('latitude', '47.547449')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CHAMPS AUX MALES'), ('adresse_code_voie', 'B020'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AI0016'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3054'), ('longitude', '6.873426'), ('latitude', '47.548179')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES COMBOTTES'), ('adresse_code_voie', 'B035'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AI0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '5760'), ('longitude', '6.874776'), ('latitude', '47.546606')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ES GRANDES BOULOYES'), ('adresse_code_voie', 'B046'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AM0032'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3025'), ('longitude', '6.869447'), ('latitude', '47.539096')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'COMBE JEAN L OYON'), ('adresse_code_voie', 'B033'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AM0135'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '608'), ('longitude', '6.868485'), ('latitude', '47.538046')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'COMBE JEAN L OYON'), ('adresse_code_voie', 'B033'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000AM0137'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '577'), ('longitude', '6.867734'), ('latitude', '47.53804')]), OrderedDict([('id_mutation', '2019-73504'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8356.45'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX LONGUES RAIES'), ('adresse_code_voie', 'B061'), ('code_postal', '25600'), ('code_commune', '25188'), ('nom_commune', 'Dambenois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25188000XX0012'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '130'), ('longitude', ''), ('latitude', '')]), OrderedDict([('id_mutation', '2019-73505'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '242000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FRENES'), ('adresse_code_voie', '0025'), ('code_postal', '25120'), ('code_commune', '25108'), ('nom_commune', "Cernay-l'Église"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25108000AB0287'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '911'), ('longitude', '6.832253'), ('latitude', '47.255727')]), OrderedDict([('id_mutation', '2019-73505'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '242000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FRENES'), ('adresse_code_voie', '0025'), ('code_postal', '25120'), ('code_commune', '25108'), ('nom_commune', "Cernay-l'Église"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25108000AB0305'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '55'), ('longitude', '6.832178'), ('latitude', '47.255869')]), OrderedDict([('id_mutation', '2019-73506'), ('date_mutation', '2019-03-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '129000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L ABATTOIR'), ('adresse_code_voie', '0010'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BI0075'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '505'), ('longitude', '6.839738'), ('latitude', '47.46665')]), OrderedDict([('id_mutation', '2019-73507'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142950'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES COURTS CHAMPS'), ('adresse_code_voie', '0180'), ('code_postal', '25310'), ('code_commune', '25304'), ('nom_commune', 'Hérimoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25304000AB0940'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '113'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '314'), ('longitude', '6.879393'), ('latitude', '47.446904')]), OrderedDict([('id_mutation', '2019-73508'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7890.4'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAMPS VALLON'), ('adresse_code_voie', '0110'), ('code_postal', '25200'), ('code_commune', '25057'), ('nom_commune', 'Bethoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25057000AE0147'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '48'), ('longitude', '6.81072'), ('latitude', '47.538997')]), OrderedDict([('id_mutation', '2019-73508'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7890.4'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE CHAMPS VALLON'), ('adresse_code_voie', '0110'), ('code_postal', '25200'), ('code_commune', '25057'), ('nom_commune', 'Bethoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25057000AI0216'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '38'), ('longitude', '6.804218'), ('latitude', '47.537199')]), OrderedDict([('id_mutation', '2019-73508'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7890.4'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL CUVIER'), ('adresse_code_voie', '0190'), ('code_postal', '25200'), ('code_commune', '25057'), ('nom_commune', 'Bethoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25057000AI0218'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '245'), ('longitude', '6.804145'), ('latitude', '47.53456')]), OrderedDict([('id_mutation', '2019-73509'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '45000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MOZART'), ('adresse_code_voie', '1345'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BP0112'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '141'), ('lot1_surface_carrez', ''), ('lot2_numero', '150'), ('lot2_surface_carrez', '60'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.798406'), ('latitude', '47.500672')]), OrderedDict([('id_mutation', '2019-73510'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '52250'), ('adresse_numero', '64'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0620'), ('code_postal', '25420'), ('code_commune', '25632'), ('nom_commune', 'Voujeaucourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25632000BD0024'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '19'), ('lot1_surface_carrez', ''), ('lot2_numero', '32'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.771896'), ('latitude', '47.473962')]), OrderedDict([('id_mutation', '2019-73510'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '52250'), ('adresse_numero', '64'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0620'), ('code_postal', '25420'), ('code_commune', '25632'), ('nom_commune', 'Voujeaucourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25632000BD0024'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', ''), ('lot2_numero', '19'), ('lot2_surface_carrez', ''), ('lot3_numero', '4'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.771896'), ('latitude', '47.473962')]), OrderedDict([('id_mutation', '2019-73511'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '30000'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU PETIT CHENOIS'), ('adresse_code_voie', '1420'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BR0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '33'), ('lot1_surface_carrez', ''), ('lot2_numero', '48'), ('lot2_surface_carrez', '76.87'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '77'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.797019'), ('latitude', '47.501534')]), OrderedDict([('id_mutation', '2019-73512'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0120'), ('code_postal', '25400'), ('code_commune', '25555'), ('nom_commune', 'Taillecourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25555000AH0082'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '110'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '939'), ('longitude', '6.846421'), ('latitude', '47.496347')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE CRANTOT DES VUILLEMENOT'), ('adresse_code_voie', 'B087'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25074000AE0185'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '377'), ('longitude', '6.717166'), ('latitude', '47.182875')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE CRANTOT DES VUILLEMENOT'), ('adresse_code_voie', 'B087'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25074000AE0185'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '377'), ('longitude', '6.717166'), ('latitude', '47.182875')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0697'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '25902'), ('longitude', ''), ('latitude', '')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0697'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '25902'), ('longitude', ''), ('latitude', '')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0697'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '25902'), ('longitude', ''), ('latitude', '')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0697'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'PIN'), ('nature_culture_speciale', 'Pins'), ('surface_terrain', '24879'), ('longitude', ''), ('latitude', '')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0793'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '30718'), ('longitude', '6.713855'), ('latitude', '47.182763')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0793'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '30718'), ('longitude', '6.713855'), ('latitude', '47.182763')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0793'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'PIN'), ('nature_culture_speciale', 'Pins'), ('surface_terrain', '10136'), ('longitude', '6.713855'), ('latitude', '47.182763')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0793'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '30719'), ('longitude', '6.713855'), ('latitude', '47.182763')]), OrderedDict([('id_mutation', '2019-73513'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000003'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '22620'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VUILLEMENOTS'), ('adresse_code_voie', 'B172'), ('code_postal', '25210'), ('code_commune', '25074'), ('nom_commune', 'Bonnétage'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250740000C0794'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '294'), ('longitude', '6.716944'), ('latitude', '47.182867')]), OrderedDict([('id_mutation', '2019-73514'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '35000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU STADE'), ('adresse_code_voie', '0330'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AD0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '4'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.808901'), ('latitude', '47.488554')]), OrderedDict([('id_mutation', '2019-73515'), ('date_mutation', '2019-04-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '15000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU STADE'), ('adresse_code_voie', '0330'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AD0100'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '466'), ('longitude', '6.809074'), ('latitude', '47.488497')]), OrderedDict([('id_mutation', '2019-73516'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '30000'), ('adresse_numero', '31'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE ST HIPPOLYTE'), ('adresse_code_voie', '0180'), ('code_postal', '25190'), ('code_commune', '25393'), ('nom_commune', 'Montécheroux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253930000B0503'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '118'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2025'), ('longitude', '6.808748'), ('latitude', '47.347671')]), OrderedDict([('id_mutation', '2019-73516'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '30000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LA VIE DE CHAMESOL'), ('adresse_code_voie', 'B143'), ('code_postal', '25190'), ('code_commune', '25393'), ('nom_commune', 'Montécheroux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25393000ZC0121'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '70'), ('longitude', '6.808941'), ('latitude', '47.347952')]), OrderedDict([('id_mutation', '2019-73517'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '161700'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP DU BOIS NOUVEAU'), ('adresse_code_voie', '0083'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AL0151'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '513'), ('longitude', '6.848551'), ('latitude', '47.490265')]), OrderedDict([('id_mutation', '2019-73518'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '175000'), ('adresse_numero', '63'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE GLAY'), ('adresse_code_voie', '0290'), ('code_postal', '25310'), ('code_commune', '25304'), ('nom_commune', 'Hérimoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25304000AH0228'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '734'), ('longitude', '6.883591'), ('latitude', '47.429131')]), OrderedDict([('id_mutation', '2019-73519'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '31'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MARECHAL LECLERC'), ('adresse_code_voie', '0120'), ('code_postal', '25450'), ('code_commune', '25193'), ('nom_commune', 'Damprichard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25193000AE0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '19'), ('lot1_surface_carrez', '57.78'), ('lot2_numero', '20'), ('lot2_surface_carrez', ''), ('lot3_numero', '21'), ('lot3_surface_carrez', ''), ('lot4_numero', '24'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '50'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.87933'), ('latitude', '47.241583')]), OrderedDict([('id_mutation', '2019-73519'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '31'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MARECHAL LECLERC'), ('adresse_code_voie', '0120'), ('code_postal', '25450'), ('code_commune', '25193'), ('nom_commune', 'Damprichard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25193000AE0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.87933'), ('latitude', '47.241583')]), OrderedDict([('id_mutation', '2019-73519'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MARECHAL LECLERC'), ('adresse_code_voie', '0120'), ('code_postal', '25450'), ('code_commune', '25193'), ('nom_commune', 'Damprichard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25193000AE0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '45'), ('longitude', '6.87933'), ('latitude', '47.241583')]), OrderedDict([('id_mutation', '2019-73520'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '198'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LA COTE'), ('adresse_code_voie', 'B018'), ('code_postal', '25470'), ('code_commune', '25238'), ('nom_commune', 'Fessevillers'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25238000AB0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '33'), ('longitude', '6.912824'), ('latitude', '47.280116')]), OrderedDict([('id_mutation', '2019-73521'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165200'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE MOUCHOT ET LA PALE'), ('adresse_code_voie', 'B038'), ('code_postal', '25750'), ('code_commune', '25008'), ('nom_commune', 'Aibre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25008000ZA0087'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '175'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '771'), ('longitude', '6.69568'), ('latitude', '47.55306')]), OrderedDict([('id_mutation', '2019-73521'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165200'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE MOUCHOT ET LA PALE'), ('adresse_code_voie', 'B038'), ('code_postal', '25750'), ('code_commune', '25008'), ('nom_commune', 'Aibre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25008000ZA0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '966'), ('longitude', '6.695923'), ('latitude', '47.552988')]), OrderedDict([('id_mutation', '2019-73522'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '130000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE CUVIER'), ('adresse_code_voie', '0106'), ('code_postal', '25140'), ('code_commune', '25127'), ('nom_commune', 'Charquemont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25127000AC0035'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '35'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.822577'), ('latitude', '47.214035')]), OrderedDict([('id_mutation', '2019-73523'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '27000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA CITADELLE'), ('adresse_code_voie', '0440'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AL0155'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '7'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', '16.6'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '16'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.791255'), ('latitude', '47.510301')]), OrderedDict([('id_mutation', '2019-73524'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '91500'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BREUIL'), ('adresse_code_voie', '0060'), ('code_postal', '25490'), ('code_commune', '25011'), ('nom_commune', 'Allenjoie'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250110000B0446'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '48'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '513'), ('longitude', '6.897446'), ('latitude', '47.530793')]), OrderedDict([('id_mutation', '2019-73525'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '84900'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMPS MONTANTS'), ('adresse_code_voie', 'B006'), ('code_postal', '25420'), ('code_commune', '25170'), ('nom_commune', 'Courcelles-lès-Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25170000AB0535'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '831'), ('longitude', '6.779124'), ('latitude', '47.503048')]), OrderedDict([('id_mutation', '2019-73526'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VERGERS ENTRE LES DEUX BRO'), ('adresse_code_voie', 'B088'), ('code_postal', '25600'), ('code_commune', '25097'), ('nom_commune', 'Brognard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25097000AI0180'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '71'), ('longitude', '6.867196'), ('latitude', '47.528837')]), OrderedDict([('id_mutation', '2019-73526'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES NOISETIERS'), ('adresse_code_voie', '0049'), ('code_postal', '25600'), ('code_commune', '25097'), ('nom_commune', 'Brognard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25097000AI0187'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '139'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '213'), ('longitude', '6.867229'), ('latitude', '47.528776')]), OrderedDict([('id_mutation', '2019-73526'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '348000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES NOISETIERS'), ('adresse_code_voie', '0049'), ('code_postal', '25600'), ('code_commune', '25097'), ('nom_commune', 'Brognard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25097000AI0194'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '221'), ('longitude', '6.867337'), ('latitude', '47.528709')]), OrderedDict([('id_mutation', '2019-73527'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ESSARTS'), ('adresse_code_voie', '0200'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AL0243'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '359'), ('longitude', '6.874663'), ('latitude', '47.453324')]), OrderedDict([('id_mutation', '2019-73527'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'COTEAU DE BERNE'), ('adresse_code_voie', 'B048'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AL0569'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '90'), ('longitude', '6.87486'), ('latitude', '47.453368')]), OrderedDict([('id_mutation', '2019-73528'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '18000'), ('adresse_numero', '15'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE LOUIS PERGAUD'), ('adresse_code_voie', '0850'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BV0001'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '60'), ('lot1_surface_carrez', '65.69'), ('lot2_numero', '77'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.822739'), ('latitude', '47.479904')]), OrderedDict([('id_mutation', '2019-73529'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162700'), ('adresse_numero', '36'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES VIGNES'), ('adresse_code_voie', '1500'), ('code_postal', '25400'), ('code_commune', '25230'), ('nom_commune', 'Exincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25230000AA0279'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '184'), ('longitude', '6.835651'), ('latitude', '47.499451')]), OrderedDict([('id_mutation', '2019-73529'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162700'), ('adresse_numero', '36'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES VIGNES'), ('adresse_code_voie', '1500'), ('code_postal', '25400'), ('code_commune', '25230'), ('nom_commune', 'Exincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25230000AA0280'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '118'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '327'), ('longitude', '6.835553'), ('latitude', '47.499412')]), OrderedDict([('id_mutation', '2019-73529'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162700'), ('adresse_numero', '36'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CHENEES'), ('adresse_code_voie', 'B020'), ('code_postal', '25400'), ('code_commune', '25230'), ('nom_commune', 'Exincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25230000AA0402'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '49'), ('longitude', '6.835657'), ('latitude', '47.499608')]), OrderedDict([('id_mutation', '2019-73529'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162700'), ('adresse_numero', '36'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES VIGNES'), ('adresse_code_voie', '1500'), ('code_postal', '25400'), ('code_commune', '25230'), ('nom_commune', 'Exincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25230000AA0404'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '71'), ('longitude', '6.835524'), ('latitude', '47.499605')]), OrderedDict([('id_mutation', '2019-73530'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78000'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L YSER'), ('adresse_code_voie', '1060'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AY0359'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '61'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '133'), ('longitude', '6.845089'), ('latitude', '47.477098')]), OrderedDict([('id_mutation', '2019-73530'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE L YSER'), ('adresse_code_voie', '1060'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AY0657'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '71'), ('longitude', '6.845149'), ('latitude', '47.477032')]), OrderedDict([('id_mutation', '2019-73531'), ('date_mutation', '2019-04-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '600'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BRUYERES GRANDES PARTS'), ('adresse_code_voie', 'B019'), ('code_postal', '25550'), ('code_commune', '25048'), ('nom_commune', 'Bavans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25048000AR0048'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1718'), ('longitude', '6.710698'), ('latitude', '47.476874')]), OrderedDict([('id_mutation', '2019-73532'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124550'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE SELONCOURT'), ('adresse_code_voie', '0930'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AY0737'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '99'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '225'), ('longitude', '6.843529'), ('latitude', '47.476326')]), OrderedDict([('id_mutation', '2019-73532'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '124550'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE SELONCOURT'), ('adresse_code_voie', '0930'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AY0740'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '15'), ('longitude', '6.843624'), ('latitude', '47.476309')]), OrderedDict([('id_mutation', '2019-73533'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '108500'), ('adresse_numero', '38'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU VERNOIS'), ('adresse_code_voie', '1180'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BR0114'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '506'), ('longitude', '6.831791'), ('latitude', '47.460516')]), OrderedDict([('id_mutation', '2019-73534'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '156400'), ('adresse_numero', '42'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DES MELEZES'), ('adresse_code_voie', '0277'), ('code_postal', '25200'), ('code_commune', '25284'), ('nom_commune', 'Grand-Charmont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25284000AT0103'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '579'), ('longitude', '6.827085'), ('latitude', '47.538779')]), OrderedDict([('id_mutation', '2019-73535'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA GOULAIE'), ('adresse_code_voie', 'B080'), ('code_postal', '25230'), ('code_commune', '25586'), ('nom_commune', 'Vandoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255860000A0586'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BS'), ('nature_culture', 'taillis sous futaie'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2514'), ('longitude', '6.919854'), ('latitude', '47.464068')]), OrderedDict([('id_mutation', '2019-73535'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA GOULAIE'), ('adresse_code_voie', 'B080'), ('code_postal', '25230'), ('code_commune', '25586'), ('nom_commune', 'Vandoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255860000A0587'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1237'), ('longitude', '6.920561'), ('latitude', '47.46437')]), OrderedDict([('id_mutation', '2019-73535'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA GOULAIE'), ('adresse_code_voie', 'B080'), ('code_postal', '25230'), ('code_commune', '25586'), ('nom_commune', 'Vandoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255860000A0588'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BS'), ('nature_culture', 'taillis sous futaie'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2259'), ('longitude', '6.921259'), ('latitude', '47.464421')]), OrderedDict([('id_mutation', '2019-73535'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA GOULAIE'), ('adresse_code_voie', 'B080'), ('code_postal', '25230'), ('code_commune', '25586'), ('nom_commune', 'Vandoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255860000A0596'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BS'), ('nature_culture', 'taillis sous futaie'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '910'), ('longitude', '6.921511'), ('latitude', '47.46361')]), OrderedDict([('id_mutation', '2019-73535'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA GOULAIE'), ('adresse_code_voie', 'B080'), ('code_postal', '25230'), ('code_commune', '25586'), ('nom_commune', 'Vandoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255860000A0597'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BS'), ('nature_culture', 'taillis sous futaie'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4400'), ('longitude', '6.920854'), ('latitude', '47.46331')]), OrderedDict([('id_mutation', '2019-73535'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA GOULAIE'), ('adresse_code_voie', 'B080'), ('code_postal', '25230'), ('code_commune', '25586'), ('nom_commune', 'Vandoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255860000A0598'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BS'), ('nature_culture', 'taillis sous futaie'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2470'), ('longitude', '6.921016'), ('latitude', '47.46313')]), OrderedDict([('id_mutation', '2019-73535'), ('date_mutation', '2019-05-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '4100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES NEUFS PRES'), ('adresse_code_voie', 'B093'), ('code_postal', '25230'), ('code_commune', '25586'), ('nom_commune', 'Vandoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255860000B0671'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BS'), ('nature_culture', 'taillis sous futaie'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2575'), ('longitude', '6.924326'), ('latitude', '47.450593')]), OrderedDict([('id_mutation', '2019-73536'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VANDONCOURT'), ('adresse_code_voie', '0460'), ('code_postal', '25310'), ('code_commune', '25304'), ('nom_commune', 'Hérimoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25304000AM1068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '136'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '559'), ('longitude', '6.884317'), ('latitude', '47.441236')]), OrderedDict([('id_mutation', '2019-73537'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '35000'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DU MARECHAL JOFFRE'), ('adresse_code_voie', '1250'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AY0165'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '8'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '74'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.805103'), ('latitude', '47.510888')]), OrderedDict([('id_mutation', '2019-73538'), ('date_mutation', '2019-04-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VIETTE'), ('adresse_code_voie', '1200'), ('code_postal', '25700'), ('code_commune', '25580'), ('nom_commune', 'Valentigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25580000BK0067'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '66'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '371'), ('longitude', '6.834042'), ('latitude', '47.461473')]), OrderedDict([('id_mutation', '2019-73539'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '74000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CANAL'), ('adresse_code_voie', '0040'), ('code_postal', '25420'), ('code_commune', '25170'), ('nom_commune', 'Courcelles-lès-Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25170000AE0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', '75.03'), ('lot2_numero', '4'), ('lot2_surface_carrez', '56.9'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '101'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.774951'), ('latitude', '47.501783')]), OrderedDict([('id_mutation', '2019-73540'), ('date_mutation', '2019-04-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '15000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE LAITEY'), ('adresse_code_voie', 'B063'), ('code_postal', '25210'), ('code_commune', '25351'), ('nom_commune', 'Le Luhier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253510000A0017'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '17430'), ('longitude', '6.702228'), ('latitude', '47.172886')]), OrderedDict([('id_mutation', '2019-73541'), ('date_mutation', '2019-05-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '98500'), ('adresse_numero', '46'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES SOURCES'), ('adresse_code_voie', '0745'), ('code_postal', '25600'), ('code_commune', '25614'), ('nom_commune', 'Vieux-Charmont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25614000AD0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '765'), ('longitude', '6.832793'), ('latitude', '47.524749')]), OrderedDict([('id_mutation', '2019-73542'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '61000'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU GENERAL LECLERC'), ('adresse_code_voie', '0810'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AM0032'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '38'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.797759'), ('latitude', '47.513379')]), OrderedDict([('id_mutation', '2019-73542'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '61000'), ('adresse_numero', '28'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU GENERAL LECLERC'), ('adresse_code_voie', '0810'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AM0032'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '19'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.797759'), ('latitude', '47.513379')]), OrderedDict([('id_mutation', '2019-73543'), ('date_mutation', '2019-05-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '41000'), ('adresse_numero', '90'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0455'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AZ0174'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '5'), ('lot1_surface_carrez', ''), ('lot2_numero', '8'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '69'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.839953'), ('latitude', '47.479828')]), OrderedDict([('id_mutation', '2019-73544'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '15000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES BRESSES'), ('adresse_code_voie', '0070'), ('code_postal', '25460'), ('code_commune', '25228'), ('nom_commune', 'Étupes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25228000AD0209'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '40'), ('longitude', '6.865374'), ('latitude', '47.504337')]), OrderedDict([('id_mutation', '2019-73544'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '15000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES BRESSES'), ('adresse_code_voie', '0070'), ('code_postal', '25460'), ('code_commune', '25228'), ('nom_commune', 'Étupes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25228000AD0209'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '345'), ('longitude', '6.865374'), ('latitude', '47.504337')]), OrderedDict([('id_mutation', '2019-73545'), ('date_mutation', '2019-05-02'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '46000'), ('adresse_numero', '42'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE CLAUDE DEBUSSY'), ('adresse_code_voie', '0445'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000CL0052'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '44'), ('lot1_surface_carrez', '79.07'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '76'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.795348'), ('latitude', '47.49822')]), OrderedDict([('id_mutation', '2019-73546'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65000'), ('adresse_numero', '33'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA COTE'), ('adresse_code_voie', '0170'), ('code_postal', '25310'), ('code_commune', '25304'), ('nom_commune', 'Hérimoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25304000AM0241'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '127'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '926'), ('longitude', '6.87982'), ('latitude', '47.441557')]), OrderedDict([('id_mutation', '2019-73546'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '65000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA COTE'), ('adresse_code_voie', 'B029'), ('code_postal', '25310'), ('code_commune', '25304'), ('nom_commune', 'Hérimoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25304000AM0242'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1738'), ('longitude', '6.87999'), ('latitude', '47.441797')]), OrderedDict([('id_mutation', '2019-73547'), ('date_mutation', '2019-05-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '400000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GASTON PRETOT'), ('adresse_code_voie', '1556'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BI0268'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', '213.08'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '213'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.813315'), ('latitude', '47.498574')]), OrderedDict([('id_mutation', '2019-73548'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '38000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE HELENE BOUCHER'), ('adresse_code_voie', '0935'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BO0026'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '131'), ('lot1_surface_carrez', '75.88'), ('lot2_numero', '56'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '76'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.791772'), ('latitude', '47.499209')]), OrderedDict([('id_mutation', '2019-73548'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '38000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE HELENE BOUCHER'), ('adresse_code_voie', '0935'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BO0026'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '60'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.791772'), ('latitude', '47.499209')]), OrderedDict([('id_mutation', '2019-73549'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU GENERAL LECLERC'), ('adresse_code_voie', '0810'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AM0134'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '17'), ('lot1_surface_carrez', ''), ('lot2_numero', '63'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '94'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.798026'), ('latitude', '47.51193')]), OrderedDict([('id_mutation', '2019-73549'), ('date_mutation', '2019-05-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', '18'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU GENERAL LECLERC'), ('adresse_code_voie', '0810'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AM0134'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '208'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.798026'), ('latitude', '47.51193')]), OrderedDict([('id_mutation', '2019-73550'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '195000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MONTANOT PROLONGEE'), ('adresse_code_voie', '0641'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AC0333'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '92'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '708'), ('longitude', '6.826166'), ('latitude', '47.490939')]), OrderedDict([('id_mutation', '2019-73551'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '158000'), ('adresse_numero', '8'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES GRANDS JARDINS'), ('adresse_code_voie', '0870'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AY0311'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '25'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '820'), ('longitude', '6.803489'), ('latitude', '47.510739')]), OrderedDict([('id_mutation', '2019-73551'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '158000'), ('adresse_numero', '8'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES GRANDS JARDINS'), ('adresse_code_voie', '0870'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AY0311'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '122'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '820'), ('longitude', '6.803489'), ('latitude', '47.510739')]), OrderedDict([('id_mutation', '2019-73551'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '158000'), ('adresse_numero', '8'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES GRANDS JARDINS'), ('adresse_code_voie', '0870'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AY0311'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '25'), ('nombre_pieces_principales', '1'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '820'), ('longitude', '6.803489'), ('latitude', '47.510739')]), OrderedDict([('id_mutation', '2019-73551'), ('date_mutation', '2019-05-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '158000'), ('adresse_numero', '8'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES GRANDS JARDINS'), ('adresse_code_voie', '0870'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AY0311'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '820'), ('longitude', '6.803489'), ('latitude', '47.510739')]), OrderedDict([('id_mutation', '2019-73552'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '310000'), ('adresse_numero', '85'), ('adresse_suffixe', '1'), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0720'), ('code_postal', '25550'), ('code_commune', '25048'), ('nom_commune', 'Bavans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25048000AK0387'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '640'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3212'), ('longitude', '6.747077'), ('latitude', '47.481604')]), OrderedDict([('id_mutation', '2019-73552'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '310000'), ('adresse_numero', '85'), ('adresse_suffixe', '1'), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0720'), ('code_postal', '25550'), ('code_commune', '25048'), ('nom_commune', 'Bavans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25048000AK0387'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '640'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2527'), ('longitude', '6.747077'), ('latitude', '47.481604')]), OrderedDict([('id_mutation', '2019-73553'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '105000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VALENTINE BESSON'), ('adresse_code_voie', '0456'), ('code_postal', '25310'), ('code_commune', '25304'), ('nom_commune', 'Hérimoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25304000AK0130'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '59'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '736'), ('longitude', '6.893024'), ('latitude', '47.433489')]), OrderedDict([('id_mutation', '2019-73554'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '233000'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE LA GARE'), ('adresse_code_voie', '0220'), ('code_postal', '25490'), ('code_commune', '25237'), ('nom_commune', 'Fesches-le-Châtel'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25237000AD0407'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '185'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '471'), ('longitude', '6.913728'), ('latitude', '47.522379')]), OrderedDict([('id_mutation', '2019-73554'), ('date_mutation', '2019-05-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '233000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU HUIT MAI'), ('adresse_code_voie', '0243'), ('code_postal', '25490'), ('code_commune', '25237'), ('nom_commune', 'Fesches-le-Châtel'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25237000AD1121'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '97'), ('longitude', '6.913563'), ('latitude', '47.522288')]), OrderedDict([('id_mutation', '2019-73555'), ('date_mutation', '2019-05-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '29000'), ('adresse_numero', '45'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D AUDINCOURT'), ('adresse_code_voie', '0020'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0471'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '199'), ('lot1_surface_carrez', '81.55'), ('lot2_numero', '209'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '84'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.853653'), ('latitude', '47.465963')]), OrderedDict([('id_mutation', '2019-73556'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '287000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PRINCIPALE'), ('adresse_code_voie', '0040'), ('code_postal', '25120'), ('code_commune', '25091'), ('nom_commune', 'Les Bréseux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25091000AI0599'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '142'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '502'), ('longitude', '6.812906'), ('latitude', '47.274377')]), OrderedDict([('id_mutation', '2019-73557'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '177500'), ('adresse_numero', '1'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE PAUL ELIE DUBOIS'), ('adresse_code_voie', '0140'), ('code_postal', '25260'), ('code_commune', '25524'), ('nom_commune', 'Saint-Maurice-Colombier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '255241580B0993'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '107'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '6.631317'), ('latitude', '47.437162')]), OrderedDict([('id_mutation', '2019-73557'), ('date_mutation', '2019-05-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '177500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'DERRIERE LA CHAFRERIE'), ('adresse_code_voie', 'B097'), ('code_postal', '25260'), ('code_commune', '25524'), ('nom_commune', 'Saint-Maurice-Colombier'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25524158ZM0004'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '320'), ('longitude', '6.631643'), ('latitude', '47.437216')]), OrderedDict([('id_mutation', '2019-73558'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LE VILLAGE'), ('adresse_code_voie', 'B094'), ('code_postal', '25310'), ('code_commune', '25452'), ('nom_commune', 'Pierrefontaine-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254520000A0532'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '599'), ('longitude', '6.841734'), ('latitude', '47.375194')]), OrderedDict([('id_mutation', '2019-73558'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '55000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES COMBOTTES'), ('adresse_code_voie', 'B024'), ('code_postal', '25310'), ('code_commune', '25452'), ('nom_commune', 'Pierrefontaine-lès-Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25452000ZB0085'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '489'), ('longitude', '6.841879'), ('latitude', '47.37526')]), OrderedDict([('id_mutation', '2019-73559'), ('date_mutation', '2019-06-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '109800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'MONT DE LA CHAPELLE'), ('adresse_code_voie', 'B071'), ('code_postal', '25120'), ('code_commune', '25392'), ('nom_commune', 'Mont-de-Vougney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25392000AC0009'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '704'), ('longitude', '6.732579'), ('latitude', '47.246082')]), OrderedDict([('id_mutation', '2019-73559'), ('date_mutation', '2019-06-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '109800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'MONT DE LA CHAPELLE'), ('adresse_code_voie', 'B071'), ('code_postal', '25120'), ('code_commune', '25392'), ('nom_commune', 'Mont-de-Vougney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25392000AC0045'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1283'), ('longitude', '6.732461'), ('latitude', '47.246169')]), OrderedDict([('id_mutation', '2019-73559'), ('date_mutation', '2019-06-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '109800'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', "RUE DE L'EGLISE"), ('adresse_code_voie', '0020'), ('code_postal', '25120'), ('code_commune', '25392'), ('nom_commune', 'Mont-de-Vougney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25392000AC0046'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '110'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '596'), ('longitude', '6.732681'), ('latitude', '47.24602')]), OrderedDict([('id_mutation', '2019-73560'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3930'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A COUR'), ('adresse_code_voie', 'B025'), ('code_postal', '25380'), ('code_commune', '25173'), ('nom_commune', 'Cour-Saint-Maurice'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25173000AB0034'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '6.703348'), ('latitude', '47.261878')]), OrderedDict([('id_mutation', '2019-73560'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3930'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A COUR'), ('adresse_code_voie', 'B025'), ('code_postal', '25380'), ('code_commune', '25173'), ('nom_commune', 'Cour-Saint-Maurice'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25173000AB0034'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1342'), ('longitude', '6.703348'), ('latitude', '47.261878')]), OrderedDict([('id_mutation', '2019-73560'), ('date_mutation', '2019-06-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3930'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A COUR'), ('adresse_code_voie', 'B025'), ('code_postal', '25380'), ('code_commune', '25173'), ('nom_commune', 'Cour-Saint-Maurice'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25173000AB0109'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '10758'), ('longitude', '6.704307'), ('latitude', '47.262313')]), OrderedDict([('id_mutation', '2019-73561'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '138600'), ('adresse_numero', '40'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANDS CHAMPS'), ('adresse_code_voie', '0140'), ('code_postal', '25260'), ('code_commune', '25224'), ('nom_commune', 'Étouvans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252240000A0639'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '611'), ('longitude', '6.711512'), ('latitude', '47.461254')]), OrderedDict([('id_mutation', '2019-73561'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '138600'), ('adresse_numero', '40'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANDS CHAMPS'), ('adresse_code_voie', '0140'), ('code_postal', '25260'), ('code_commune', '25224'), ('nom_commune', 'Étouvans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252240000A0639'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '90'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '740'), ('longitude', '6.711512'), ('latitude', '47.461254')]), OrderedDict([('id_mutation', '2019-73562'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '86970'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES MAILLEUX'), ('adresse_code_voie', '0038'), ('code_postal', '25380'), ('code_commune', '25125'), ('nom_commune', 'Charmoille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25125000AC0184'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '570'), ('longitude', '6.677172'), ('latitude', '47.243403')]), OrderedDict([('id_mutation', '2019-73562'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '86970'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RONDAGE'), ('adresse_code_voie', 'B053'), ('code_postal', '25380'), ('code_commune', '25125'), ('nom_commune', 'Charmoille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '251250000D0296'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '607'), ('longitude', '6.677348'), ('latitude', '47.243329')]), OrderedDict([('id_mutation', '2019-73563'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '9000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHENE FONTAINE'), ('adresse_code_voie', 'B055'), ('code_postal', '25550'), ('code_commune', '25048'), ('nom_commune', 'Bavans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25048000AR0146'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '606'), ('longitude', '6.71297'), ('latitude', '47.473383')]), OrderedDict([('id_mutation', '2019-73564'), ('date_mutation', '2019-06-06'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '31000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'PL DORIAN'), ('adresse_code_voie', '0600'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BY0279'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '25'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.795879'), ('latitude', '47.50963')]), OrderedDict([('id_mutation', '2019-73565'), ('date_mutation', '2019-06-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '44500'), ('adresse_numero', '46'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'RUE DU MONT BART'), ('adresse_code_voie', '1300'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000BT0147'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '130'), ('lot1_surface_carrez', ''), ('lot2_numero', '150'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '55'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.786268'), ('latitude', '47.506845')]), OrderedDict([('id_mutation', '2019-73566'), ('date_mutation', '2019-06-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '86750'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EMILE OUSTALET'), ('adresse_code_voie', '1358'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AR0240'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '153'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.804281'), ('latitude', '47.518294')]), OrderedDict([('id_mutation', '2019-73566'), ('date_mutation', '2019-06-20'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '86750'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE EMILE OUSTALET'), ('adresse_code_voie', '1358'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AR0240'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '103'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '59'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.804281'), ('latitude', '47.518294')]), OrderedDict([('id_mutation', '2019-73567'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '154000'), ('adresse_numero', '32'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU PRIEURE'), ('adresse_code_voie', '0037'), ('code_postal', '25380'), ('code_commune', '25588'), ('nom_commune', 'Vaucluse'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25588000AB0071'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '6.689626'), ('latitude', '47.257118')]), OrderedDict([('id_mutation', '2019-73568'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '35000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SAINTE ANNE'), ('adresse_code_voie', '0920'), ('code_postal', '25120'), ('code_commune', '25356'), ('nom_commune', 'Maîche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25356000AC0036'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '6'), ('lot1_surface_carrez', '33.05'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '29'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.80645'), ('latitude', '47.250824')]), OrderedDict([('id_mutation', '2019-73569'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '90000'), ('adresse_numero', '5033'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE BIAUFOND'), ('adresse_code_voie', '0009'), ('code_postal', '25140'), ('code_commune', '25255'), ('nom_commune', 'Fournet-Blancheroche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252550000A0331'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '102'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.838559'), ('latitude', '47.178531')]), OrderedDict([('id_mutation', '2019-73569'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '90000'), ('adresse_numero', '5033'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE BIAUFOND'), ('adresse_code_voie', '0009'), ('code_postal', '25140'), ('code_commune', '25255'), ('nom_commune', 'Fournet-Blancheroche'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252550000A0331'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', '6'), ('lot2_surface_carrez', '44'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '40'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.838559'), ('latitude', '47.178531')]), OrderedDict([('id_mutation', '2019-73570'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '167000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CURTILS'), ('adresse_code_voie', '0165'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AD0212'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '133'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '844'), ('longitude', '6.80516'), ('latitude', '47.4896')]), OrderedDict([('id_mutation', '2019-73570'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '167000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CHAMPS DE PIERRES'), ('adresse_code_voie', '0060'), ('code_postal', '25400'), ('code_commune', '25020'), ('nom_commune', 'Arbouans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25020000AD0213'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '858'), ('longitude', '6.805814'), ('latitude', '47.4896')]), OrderedDict([('id_mutation', '2019-73571'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '147000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ANSANGES'), ('adresse_code_voie', '0012'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000AD0510'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '118'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '585'), ('longitude', '6.815707'), ('latitude', '47.446331')]), OrderedDict([('id_mutation', '2019-73571'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '147000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ANDANGES'), ('adresse_code_voie', 'B001'), ('code_postal', '25350'), ('code_commune', '25367'), ('nom_commune', 'Mandeure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25367000AD0514'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '142'), ('longitude', '6.815539'), ('latitude', '47.446242')]), OrderedDict([('id_mutation', '2019-73572'), ('date_mutation', '2019-06-07'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '128190'), ('adresse_numero', '54'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOUS LES VIGNES'), ('adresse_code_voie', '0970'), ('code_postal', '25400'), ('code_commune', '25031'), ('nom_commune', 'Audincourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25031000AT0053'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '568'), ('longitude', '6.853547'), ('latitude', '47.471187')]), OrderedDict([('id_mutation', '2019-73573'), ('date_mutation', '2019-06-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '31500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BOIS BOURGEOIS'), ('adresse_code_voie', '0170'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AL0462'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '51'), ('nombre_pieces_principales', '3'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '75'), ('longitude', '6.796445'), ('latitude', '47.51367')]), OrderedDict([('id_mutation', '2019-73573'), ('date_mutation', '2019-06-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '31500'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BOIS BOURGEOIS'), ('adresse_code_voie', '0170'), ('code_postal', '25200'), ('code_commune', '25388'), ('nom_commune', 'Montbéliard'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25388000AL0463'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '101'), ('longitude', '6.7963'), ('latitude', '47.513617')]), OrderedDict([('id_mutation', '2019-73574'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '77390'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BUFFON'), ('adresse_code_voie', '0070'), ('code_postal', '25200'), ('code_commune', '25057'), ('nom_commune', 'Bethoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25057000AK0006'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '17'), ('lot1_surface_carrez', ''), ('lot2_numero', '20'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.805575'), ('latitude', '47.533519')]), OrderedDict([('id_mutation', '2019-73574'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '77390'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BUFFON'), ('adresse_code_voie', '0070'), ('code_postal', '25200'), ('code_commune', '25057'), ('nom_commune', 'Bethoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25057000AK0006'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '62'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.805575'), ('latitude', '47.533519')]), OrderedDict([('id_mutation', '2019-73575'), ('date_mutation', '2019-06-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '164000'), ('adresse_numero', '6'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES POMMEROTS'), ('adresse_code_voie', '0175'), ('code_postal', '25310'), ('code_commune', '25063'), ('nom_commune', 'Blamont'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250630000D0929'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '76'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '793'), ('longitude', '6.844686'), ('latitude', '47.384942')]), OrderedDict([('id_mutation', '2019-73576'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116476.58'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CORNEE DE BREUIL'), ('adresse_code_voie', 'B045'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1765'), ('longitude', '6.689448'), ('latitude', '47.4712')]), OrderedDict([('id_mutation', '2019-73576'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116476.58'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CORNEE DE BREUIL'), ('adresse_code_voie', 'B045'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0102'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1705'), ('longitude', '6.689632'), ('latitude', '47.470865')]), OrderedDict([('id_mutation', '2019-73576'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116476.58'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE MONTBELIARD'), ('adresse_code_voie', '0160'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0477'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '958'), ('longitude', '6.689107'), ('latitude', '47.471361')]), OrderedDict([('id_mutation', '2019-73576'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116476.58'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE MONTBELIARD'), ('adresse_code_voie', '0160'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0477'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '150'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '958'), ('longitude', '6.689107'), ('latitude', '47.471361')]), OrderedDict([('id_mutation', '2019-73577'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA LIBERTE'), ('adresse_code_voie', '0360'), ('code_postal', '25200'), ('code_commune', '25057'), ('nom_commune', 'Bethoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25057000AP0349'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1733'), ('longitude', '6.789253'), ('latitude', '47.529948')]), OrderedDict([('id_mutation', '2019-73577'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA LIBERTE'), ('adresse_code_voie', '0360'), ('code_postal', '25200'), ('code_commune', '25057'), ('nom_commune', 'Bethoncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25057000AP0352'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '759'), ('longitude', '6.789779'), ('latitude', '47.530032')]), OrderedDict([('id_mutation', '2019-73578'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '118500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '93'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73578'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '118500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '121'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73578'), ('date_mutation', '2019-04-30'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '118500'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '57'), ('lot1_surface_carrez', ''), ('lot2_numero', '97'), ('lot2_surface_carrez', '75.64'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73579'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '199500'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU STADE'), ('adresse_code_voie', '0050'), ('code_postal', '25120'), ('code_commune', '25108'), ('nom_commune', "Cernay-l'Église"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25108000AB0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', ''), ('lot2_numero', '4'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '116'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.831483'), ('latitude', '47.254732')]), OrderedDict([('id_mutation', '2019-73579'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '199500'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU STADE'), ('adresse_code_voie', '0050'), ('code_postal', '25120'), ('code_commune', '25108'), ('nom_commune', "Cernay-l'Église"), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25108000AB0337'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.831483'), ('latitude', '47.254732')]), OrderedDict([('id_mutation', '2019-73580'), ('date_mutation', '2019-06-24'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '3000'), ('adresse_numero', '12'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COTEAU CLERC'), ('adresse_code_voie', '0160'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AB0285'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '112'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.857073'), ('latitude', '47.467359')]), OrderedDict([('id_mutation', '2019-73581'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '118000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'IMP COROT'), ('adresse_code_voie', '0145'), ('code_postal', '25230'), ('code_commune', '25539'), ('nom_commune', 'Seloncourt'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25539000AS0224'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '613'), ('longitude', '6.850075'), ('latitude', '47.462633')]), OrderedDict([('id_mutation', '2019-73582'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CORNEE DE BREUIL'), ('adresse_code_voie', 'B045'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1765'), ('longitude', '6.689448'), ('latitude', '47.4712')]), OrderedDict([('id_mutation', '2019-73582'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CORNEE DE BREUIL'), ('adresse_code_voie', 'B045'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0102'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1705'), ('longitude', '6.689632'), ('latitude', '47.470865')]), OrderedDict([('id_mutation', '2019-73582'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE MONTBELIARD'), ('adresse_code_voie', '0160'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0477'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '958'), ('longitude', '6.689107'), ('latitude', '47.471361')]), OrderedDict([('id_mutation', '2019-73582'), ('date_mutation', '2019-06-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE MONTBELIARD'), ('adresse_code_voie', '0160'), ('code_postal', '25260'), ('code_commune', '25350'), ('nom_commune', 'Lougres'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25350000AB0477'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '150'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '958'), ('longitude', '6.689107'), ('latitude', '47.471361')]), OrderedDict([('id_mutation', '2019-73583'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE TROP EPINES'), ('adresse_code_voie', '0170'), ('code_postal', '25750'), ('code_commune', '25198'), ('nom_commune', 'Désandans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25198000AC0112'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '757'), ('longitude', '6.67567'), ('latitude', '47.531202')]), OrderedDict([('id_mutation', '2019-73583'), ('date_mutation', '2019-06-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '162500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU MEURGELOT'), ('adresse_code_voie', 'B074'), ('code_postal', '25750'), ('code_commune', '25198'), ('nom_commune', 'Désandans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25198000AC0113'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '283'), ('longitude', '6.675801'), ('latitude', '47.531045')]), OrderedDict([('id_mutation', '2019-73584'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '18285.7'), ('adresse_numero', '9001'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE GRANDVAUX'), ('adresse_code_voie', '0023'), ('code_postal', '25250'), ('code_commune', '25059'), ('nom_commune', 'Beutal'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250590000V0030'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '600'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '617'), ('longitude', '6.639785'), ('latitude', '47.46935')]), OrderedDict([('id_mutation', '2019-73584'), ('date_mutation', '2019-06-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '18285.7'), ('adresse_numero', '9001'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE GRANDVAUX'), ('adresse_code_voie', '0023'), ('code_postal', '25250'), ('code_commune', '25059'), ('nom_commune', 'Beutal'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250590000V0030'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '600'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '677'), ('longitude', '6.639785'), ('latitude', '47.46935')])]
<class 'list'>

Chargement à partir d’un fichier txt

On peut facilement convertir un fichier csv en fichier txt. On utilise aussi la fonction open().

La syntaxe de la fonction open() est :

open(file, mode='r', buffering=-1,
    encoding=None, errors=None, newline=None)

avec

  • file : une string du chemin du fichier à ouvrir ;

  • mode : différent mode d’ouverture du fichier (lecture, écriture) ;

  • buffering : mise en mémoire ;

  • encoding : encodage du fichier ;

  • errors : spécifie la manière de gérer les erreurs d’encodage et de décodage ;

  • newline : contrôle la fin des lignes.

Vous pouvez retrouver toutes ce options dans la documentation :-)

with open('./data/2009_02.txt', encoding="ISO-8859-2") as ecb:
    data = [x for x in ecb]
print(data)
    
['Introductory statement with Q&A\n', 'Jean-Claude Trichet, President of the ECB,\n', 'Lucas Papademos, Vice President of the ECB\n', 'Frankfurt am Main, 5 February 2009\n', 'Jump to the transcript of the questions and answers\n', 'Ladies and gentlemen, the Vice-President and I are very pleased to welcome you to todayŐs press conference. We will now report on the outcome of todayŐs meeting of the Governing Council, which was also attended by Commissioner Almunia.\n', 'On the basis of its regular economic and monetary analyses, at todayŐs meeting the Governing Council decided to leave the key ECB interest rates unchanged. As anticipated in our interest rate decision of 15 January 2009, the latest economic data and survey information confirm that the euro area and its major trading partners are undergoing an extended period of significant economic downturn, and that accordingly both external and domestic inflationary pressures are diminishing. We continue to expect inflation rates in the euro area to be in line with price stability over the policy-relevant medium-term horizon, thereby supporting the purchasing power of euro area households. This assessment is supported by available indicators of inflation expectations for the medium term. It is also confirmed by the further deceleration in monetary and credit growth in the euro area. Fully in line with its primary objective, the Governing Council will continue to keep inflation expectations firmly anchored in accordance with its definition of price stability, that is inflation rates of below, but close to, 2% over the medium term. This supports sustainable growth and employment and contributes to financial stability. Overall, the level of uncertainty remains exceptionally high. Accordingly, we will continue to monitor very closely all developments over the period ahead.\n', 'Allow me to explain our assessment in greater detail, starting with the economic analysis. Reflecting the impact of the intensified and broadened financial market turmoil, economic activity throughout the world, including in the euro area, has weakened substantially. Foreign demand for euro area exports has declined, and domestic factors, notably very low confidence and tight financing conditions, have adversely affected domestic demand. Taken together with other available economic data for the euro area, this points to very negative quarter-on-quarter real GDP growth in the last quarter of 2008. \n', 'This information is in line with our current analysis and forward-looking assessment. We continue to see persistent weakness in economic activity in the euro area over the coming quarters, as the financial market tensions have a further impact on the global and domestic economy. At the same time, the very substantial fall in commodity prices seen since the middle of 2008 should support real disposable income, and thus consumption, in the period ahead. Most recently, there have been tentative signs of stabilisation in some survey data, albeit at historically low levels. These indications, however, require confirmation on a broader basis.\n', 'In the view of the Governing Council, the outlook for the economy remains surrounded by an exceptionally high degree of uncertainty. Overall, risks to economic growth remain clearly on the downside. They relate mainly to the potential for a stronger impact on the real economy of the turmoil in financial markets, as well as to concerns about the emergence and intensification of protectionist pressures and to possible adverse developments in the world economy stemming from a disorderly correction of global imbalances.\n', 'Over time, the euro area should reap the benefit of the effects of significant policy measures that have been decided upon over recent months to deal with the financial turmoil. They should help to restore trust in the financial system and to ease constraints on credit supply to companies and households. In order to ensure that such measures effectively support a sustainable recovery, it is of the utmost importance that they remain focused and temporary in nature so as to maintain a stability-oriented and medium-term perspective in macroeconomic policy-making. \n', 'With regard to price developments, annual HICP inflation continued to decline in January 2009, falling to 1.1%, according to EurostatŐs flash estimate, from 1.6% in December 2008. While no detailed breakdown for HICP developments in January is available as yet, the decline in headline inflation observed since the middle of 2008 primarily reflects the sharp falls in global commodity prices over this period, owing mainly to weak global demand. \n', 'Looking ahead, lower commodity prices and the prospect of weak demand confirm our assessment of mid-January that inflationary pressures in the euro area are diminishing. Owing mainly to base effects stemming from the past behaviour of energy prices, headline annual inflation rates are projected to decline further in the coming months, possibly reaching very low levels at mid-year. However, also owing to base effects stemming from past energy price developments, inflation rates are expected to increase again in the second half of the year. Accordingly, it is likely that HICP inflation rates will fluctuate sharply during 2009. Such short-term volatility is, however, not relevant from a monetary policy perspective. Looking over the policy-relevant medium-term horizon, annual HICP inflation is expected to be in line with price stability. This assessment is supported by available indicators of inflation expectations for the medium term. \n', 'Regarding risks to price stability over the medium term, unexpected further declines in commodity prices or a stronger than expected slowdown in the economy could put downward pressure on inflation, while upside risks to price stability could materialise, particularly if the recent fall in commodity prices were to reverse or if domestic price pressures turn out to be stronger than assumed. It is therefore crucial that price and wage-setters fully live up to their responsibilities. \n', 'Turning to the monetary analysis, the latest evidence confirms a continued deceleration in the underlying pace of monetary expansion in the euro area, supporting the view that inflationary pressures are diminishing. \n', 'In analysing monetary developments it should be recognised that the intensification and broadening of the financial turmoil since September 2008 has the potential to affect the evolution of monetary aggregates significantly. It has already had a substantial impact on the behaviour of market participants, as indicated by recent money and credit data. Both the broad aggregate M3 and, in particular, the components of M3 that are most closely related to the ongoing financial tensions Đ such as holdings of money market funds Đ have shown high month-to-month volatility of late. Overall, looking to the extent possible through this volatility, the underlying pace of broad money expansion continues to decelerate gradually from the peak seen in early 2007. However, the intensification of financial tensions since September 2008 is leading to significant substitution among the components of M3. \n', 'Turning to the evolution of bank credit, the flow of MFI loans to the private sector moderated in the course of 2008, largely on account of weakness in loans to households, especially for house purchase. In December, however, outstanding MFI loans to non-financial corporations contracted for the first time since the onset of the financial turmoil, confirming the significant weakening of corporate credit at the end of the year after a long period of dynamic growth. At the same time, the substantial reduction in key ECB interest rates since October 2008 appears to have been passed through to lower bank lending rates, thereby easing financing conditions for companies and households. Moreover, there are some indications that the pace of tightening of bank credit standards is stabilising, albeit at high levels by historical standards. Overall, the incoming information on financing conditions requires continuous close monitoring.\n', 'To sum up, as anticipated in our interest rate decision of 15 January 2009, the latest economic data and survey information confirm that the euro area and its major trading partners are undergoing a period of significant economic downturn, and that accordingly both external and domestic inflationary pressures are diminishing. We continue to expect inflation rates in the euro area to be in line with price stability over the policy-relevant medium-term horizon, thereby supporting the purchasing power of euro area households. This assessment is supported by available indicators of inflation expectations for the medium term. It is also confirmed by a cross-check of the outcome of the economic analysis with that of the monetary analysis, against the background of a further deceleration in monetary and credit growth in the euro area. Fully in line with its primary objective, the Governing Council will continue to keep inflation expectations firmly anchored in accordance with its definition of price stability, that is inflation rates of below, but close to, 2% over the medium term. This supports sustainable growth and employment and contributes to financial stability. Overall, the level of uncertainty remains exceptionally high. Accordingly, we will continue to monitor very closely all developments over the period ahead.\n', 'Turning to fiscal policy, the European Commission projects in its January 2009 interim forecast a substantial rise in the average euro area government budget deficit, to 4.0% of GDP this year, from 1.7% in 2008. This rapid deterioration of the fiscal position is broad-based among euro area countries and is due to the economic downturn, additional revenue shortfalls and the fiscal stimulus measures adopted by many governments. In 2009 seven euro area countries are currently expected by the Commission to exceed the 3% of GDP reference value for the budget deficit. In addition, many governments have assumed large contingent liabilities in connection with the guarantees provided to banks and will need to finance the capital injections in support of the financial sector. To support the publicŐs confidence in the sustainability of public finances, it is therefore essential that governments return to a credible commitment to medium-term budgetary objectives as soon as possible. \n', 'As regards structural policies, it is important to continue on the long-term reform path foreseen by the Lisbon agenda. At the current juncture, it is essential to pursue economic policies in line with the principle of an open market economy with free competition, resisting any protectionist pressure. Moreover, product and services market reforms should foster competition and help to speed up effective restructuring. Labour market reforms should help to facilitate appropriate wage-setting, as well as labour mobility across sectors and regions. This will be particularly important for those areas and sectors hit strongly by the negative demand shock. In several countries, it is also crucial to take measures with a view to addressing competitiveness losses accumulated over recent years. \n', 'We are now at your disposal for questions.\n', '\n']

Introduction à Numpy et Pandas

Ouvrir les données avec open() peut-être utile lorsqu’on travaille avec des fichiers simples. Par exemple des discours que l’on souhaite analyser. Pour des données plus évoluées, on utilisera le module Pandas qui introduit un nouvel objet: Le Dataframe.

Le module Pandas s’est construit en parallèle de NumPy, un autre module qui propose des objets très utilese pour des opérations mathématiques comme le calcul matriciel.

Pandas a apporté les Dataframe et se sont imposés pour manipuler les données. Il propose une façon très intuitive de représenter les données et dispose de méthodes spécifiquement conçues pour l’analyse de données. N’hésitez pas à faire des recherches Google afin de consulter les nombreux tutoriaux sur le sujet.

NumPy

NumPy est un module Python qu’il faut charger pour pouvoir l’utiliser. Un module Python se charge en utilisant le mot-clef import:

import module as abréviation_du_module
import numpy as np

On peut désormais utiliser toutes les méthodes contenues dans NumPy en utilisant l’abréviation de ce dernier np. Si on avait voulu charger une méthode particulière, on aurait pu utiliser le mot-clef from :

from module import methode

Les structured array

Un des objet très important de NumPy est le structured array. Il permet de créer une sorte de matrice avec des tyes différents à l’intérieur.

# Use a compound data type for structured arrays
data = np.zeros(3, dtype={'names':('ville', 'prix', 'latitude'),
                          'formats':('U10', 'f8', 'f8')})
print(data.dtype)
[('ville', '<U10'), ('prix', '<f8'), ('latitude', '<f8')]

L’array data est maintenant composé de trois colonnes nommés villes, prix et latitude dans lesquelles on peut mettre respectivement une string de longueur 10 maximum, un float de longueur 16 et un float de longueur 16. Le tableau crée est rempli de 0 ar on a utiliser la méthode de NumPy, zeros.

On peut le remplir si on le souhaite :

data['ville'] = ['Besançon', 'Busy', 'Fontain']
data['prix'] = [2000, 1500, 1500]
data['latitude'] = [6.01,5.57,6.02]
print(data)
[('Besançon', 2000., 6.01) ('Busy', 1500., 5.57) ('Fontain', 1500., 6.02)]

Il est désormais possible d’accéder à une information particulière très facilement:

print(data['ville'])
print(data['prix']>1500)
print(data[0])
print(data[1]['latitude'])
print(data[data['prix']>1500])
['Besançon' 'Busy' 'Fontain']
[ True False False]
('Besançon', 2000., 6.01)
5.57
[('Besançon', 2000., 6.01)]

On peut créer différent types de structured array :

t = np.dtype([('A', 'i4'), ('M', 'f4', (2, 2))])
X = np.zeros(1, dtype=t)
print(X[0])
print(X['M'][0])
(0, [[0., 0.], [0., 0.]])
[[0. 0.]
 [0. 0.]]

Ici, on a un array appele X avec deux éléments : A de type int et M de type float de taille (2x2). On peut donc créer des matrices avec NumPy !!! Nous verrons plus en détail d’autres méthodes de NumPy par la suite

Pandas

Pandas introduit donc un objet appelé Dataframe. C’est une quelque sorte une tableau excel mais en plus évolué. Les Dataframe peuvent gérer beaucoup d’observations (environ des fichiers de 10 Mo).

On peut représenter de Dataframe comme ceci (source xavierdupre.fr) : Représentation d'un DF : source http://www.xavierdupre.fr/

Series

Une Series est similaire à un tableau ou une liste. Chaque valeur est associée à un index (par défaut les 0 à N-1).

import pandas as pd
s = pd.Series([2000, 2500, 500])
print(s)
s2 = {'Besançon': 2000, 'Busy': 1500, 'Fontain': 1500}
s2 = pd.Series(s2)
print(s2)
print(s2['Besançon'])
s3 = pd.Series([2000, 2500, 500], index = ['Besançon', 'Busy', 'Fontain'])
print(s3)
0    2000
1    2500
2     500
dtype: int64
Besançon    2000
Busy        1500
Fontain     1500
dtype: int64
2000
Besançon    2000
Busy        2500
Fontain      500
dtype: int64

L’exemple précédent montre que l’on peut assigner un index spécifique à la Series et qu’on peut accéder directement à ces valeurs via l’index. On peut aussi récupérer uniquement les valeurs ou les index de la Series avec les methodes values et index:

print("valeur de s2 : ", s.values)
print(type(s.values))
print("Index de s2 : ", s.index)
print(type(s.index))
valeur de s2 :  [2000 2500  500]
<class 'numpy.ndarray'>
Index de s2 :  RangeIndex(start=0, stop=3, step=1)
<class 'pandas.core.indexes.range.RangeIndex'>

Dataframe

Pour créer un Dataframe, on utilise la méhode DataFrame() de Pandas. Pour créer un Dataframe, on peut utiliser un dictionnaire :

d = {"ville" : ['Besançon', 'Busy', 'Fontain'], "Prix" : [2000, 1500, 1000], "cool" : [True, False, True]}
df = pd.DataFrame(d, index = d["ville"])
print(df)
             ville  Prix   cool
Besançon  Besançon  2000   True
Busy          Busy  1500  False
Fontain    Fontain  1000   True

Les éléments dans le dataframe ont aussi un index. Les valeur sont accessibles avec values et l’index avec index. Une nouveauté concerne ici les colonnes qui représente un second index :

print(df.columns)
Index(['ville', 'Prix', 'cool'], dtype='object')

Il y a beaucoup d’autres façon de créer un Dataframe. Notamment à partir de différents objets:

  • une Series

  • une liste de dictionnaire

  • une liste de Series

Quelques exemples :

s3 = pd.Series([2000, 2500, 500], index = ['Besançon', 'Busy', 'Fontain'])
df2 = pd.DataFrame(s3, columns=["Prix"])
print(df)
             ville  Prix   cool
Besançon  Besançon  2000   True
Busy          Busy  1500  False
Fontain    Fontain  1000   True

Il est toujours possible de rajouter des colonnes dans un Dataframe grâce à la commande suivant :

df["lat"] = np.zeros(3)
print(df)
             ville  Prix   cool  lat
Besançon  Besançon  2000   True  0.0
Busy          Busy  1500  False  0.0
Fontain    Fontain  1000   True  0.0

Méthodes utiles de Pandas

Il existe de nombreuses méthodes utilisables dans Pandas que vous serez amenés à utiliser :

  • shape permet d’obtenir la dimension du Dataframe

  • loc, extrait des éléments avec les noms de ceux-ci

  • iloc, extrait à l’aide de l’indice de certains éléments

  • rename, renome des colonnes

  • query, applique une condition sur le Dataframe et

  • isnull(), test afin de savoir si il y a des valeurs manquantes

  • dropna(), drop les NaN

  • fillna(), remplace les valeurs manquantes par d’autres valeurs

  • drop(), supprime une ou des valeurs

  • append(), rajouter des lignes au dataframe

  • drop_duplicates(), permet de drop les doublons

  • sort_values(), tri le DataFrame

print(df.shape)
(3, 4)
print(df.iloc[1,0]) 
print(df.loc['Besançon','Prix'])
print(df.iloc[[0,1]])
print(df.loc[['Besançon','Fontain']])
print(df.iloc[0:1])
print(df.loc[:,"Prix"])
print(df["Prix"])
Busy
2000
             ville  Prix   cool  lat
Besançon  Besançon  2000   True  0.0
Busy          Busy  1500  False  0.0
             ville  Prix  cool  lat
Besançon  Besançon  2000  True  0.0
Fontain    Fontain  1000  True  0.0
             ville  Prix  cool  lat
Besançon  Besançon  2000  True  0.0
Besançon    2000
Busy        1500
Fontain     1000
Name: Prix, dtype: int64
Besançon    2000
Busy        1500
Fontain     1000
Name: Prix, dtype: int64

On peut jouer sur l’indice pour iloc. Il peut prendre différentes formes commet une valeur unique, une liste de valeurs ou un slice [0:2]. C’est identique pour les deux indices (ligne et colonne). Pour loc, les valeurs sont sensiblement pareils mais prennent les noms des lignes et/ou des colonnes.

On peut effectuer un test sur les valeurs du DataFrame afin d’affichier uniquement les prix supérieurs à 1500 :

print(df.loc[df["Prix"]>1500])
             ville  Prix  cool  lat
Besançon  Besançon  2000  True  0.0

ou utiliser la méthode query:

print(df.query("Prix>1500"))
             ville  Prix  cool  lat
Besançon  Besançon  2000  True  0.0

La méthode append() permet d’ajouter une ligne au DataFrame. Ajoutons une ligne avec une valeur manquante :

l = pd.DataFrame([["École-Valentin", 3000, np.nan, False]],
                       columns = df.columns)
df = df.append(l)

Il est alors possible de :

  • savoir quelle valeur est manquante

  • de supprimer les lignes qui possèdent des valeurs manquantes

  • de les gérer différement …

print(df.isnull(),"\n")
print("Dataframe sans NaN \n", df.dropna(),"\n")
print("Delete la ligne pour laquelle l'index est 0 \n", df.drop(0),"\n")
print("Delete la ligne pour laquelle l'index est Besançon \n", df.drop('Besançon'),"\n")

label_ligne_0 = df.index[0]
print("Delete la 1ère ligne \n", df.drop(label_ligne_0),"\n")
print("Delete lignes 1 et 3 : \n", df.drop([df.index[0],df.index[2]]),"\n")
          ville   Prix   cool    lat
Besançon  False  False  False  False
Busy      False  False  False  False
Fontain   False  False  False  False
0         False  False   True  False 

Dataframe sans NaN 
              ville  Prix  cool  lat
Besançon  Besançon  2000   1.0  0.0
Busy          Busy  1500   0.0  0.0
Fontain    Fontain  1000   1.0  0.0 

Delete la ligne pour laquelle l'index est 0 
              ville  Prix  cool  lat
Besançon  Besançon  2000   1.0  0.0
Busy          Busy  1500   0.0  0.0
Fontain    Fontain  1000   1.0  0.0 

Delete la ligne pour laquelle l'index est Besançon 
                   ville  Prix  cool  lat
Busy               Busy  1500   0.0  0.0
Fontain         Fontain  1000   1.0  0.0
0        École-Valentin  3000   NaN  0.0 

Delete la 1ère ligne 
                   ville  Prix  cool  lat
Busy               Busy  1500   0.0  0.0
Fontain         Fontain  1000   1.0  0.0
0        École-Valentin  3000   NaN  0.0 

Delete lignes 1 et 3 : 
                ville  Prix  cool  lat
Busy            Busy  1500   0.0  0.0
0     École-Valentin  3000   NaN  0.0 

Similairement, on peut supprimer des colonnes à l’aide de la même méthode :

print("Delete 1ère colonne :  \n", df.drop('ville', axis=1))
Delete 1ère colonne :  
           Prix  cool  lat
Besançon  2000   1.0  0.0
Busy      1500   0.0  0.0
Fontain   1000   1.0  0.0
0         3000   NaN  0.0

Il peut être utile de trier le tableau afin de voir si on a pas de valeurs abérantes :

df.sort_values(by="Prix", ascending=False)
ville Prix cool lat
0 École-Valentin 3000 NaN 0.0
Besançon Besançon 2000 1.0 0.0
Busy Busy 1500 0.0 0.0
Fontain Fontain 1000 1.0 0.0

Concaténation

Généralement, pour construire une base de données, on va aller dans plusieurs sources. Il va alors falloir les réunir ou encore, les concaténer. Il peut y avoir quelques soucis seon la disponibilité des données

  • un nombre de ligne différent

  • un nombre de colonne différent

  • un appariement enfonction d’une colonne

Lorsque que l’on a deux dataframe avec le même nombre de ligne, ce n’est pas bien compliqué avec la méthode concat():

gdp = {"gdp" : [2600000,20000000,2600000], "pays" : ["France", "USA", "Italy"]}
cpi = {"cpi" : [0.5,0.7,1.8], "pays" : ["France", "USA", "Italy"]}
df1 = pd.DataFrame(gdp, index = gdp["pays"])
df2 = pd.DataFrame(cpi, index = cpi["pays"])
df = pd.concat([df1, df2], axis = 1)
df = df.drop("pays",axis = 1)

On peut aussi concaténer en-dessous :

gdp = {"pays" : ["Germany"], "gdp" : [3000000] }
df3 = pd.DataFrame(gdp, index=gdp["pays"])
df = pd.concat([df,df3], axis = 0, sort=False)
print(df.drop("pays",  axis = 1))
              gdp  cpi
France    2600000  0.5
USA      20000000  0.7
Italy     2600000  1.8
Germany   3000000  NaN

Merge

Lorsque l’on a plus d’information, la méthode concat ne suffit pas. Chargeons le fichier CDS.csv comme un Dataframe afin d’illustrer ceci et séparons le en deux Dataframe distincts.

CDS = pd.read_csv("data/CDS.csv", decimal=";")
print(CDS)
CDS_1 = CDS[["ID", "TIME", "CDS","FX"]]
CDS_1 = CDS_1[200:]
CDS_2 = CDS[["ID", "TIME", "SM","RESERVE"]]
CDS_2 = CDS_2[:2000]
            ID     TIME       CDS            FX       RESERVE            SM  \
0       BRAZIL  2003-01  1733.333  -0.002122902   0.024605373  -0.033266742   
1       BRAZIL  2003-02  1550.833   0.010608725  -0.000104981  -0.037897574   
2       BRAZIL  2003-03  1383.333  -0.058970473   0.094309413   0.137726228   
3       BRAZIL  2003-04   976.667  -0.138187133  -0.020148233   0.210473611   
4       BRAZIL  2003-05       945    0.02623382   0.051259455   0.024045242   
...        ...      ...       ...           ...           ...           ...   
2193  THAILAND  2015-09       168   0.014170733   -0.00140999  -0.051788376   
2194  THAILAND  2015-10   132.154  -0.021227626   0.017801769   0.053316171   
2195  THAILAND  2015-11   127.175   0.008200855  -0.014556534  -0.035438642   
2196  THAILAND  2015-12   134.796   0.005411793   0.005590694  -0.076495299   
2197  THAILAND  2016-01     153.3  -0.008509602   0.022285335   0.041199151   

          Mkt   Trsy           HY        Eq Prem      Vol Prem     EF     BF  
0     -2.4562   0.24  -0.118827766    0.00159461   0.606796585   -262  12698  
1       -1.66  -0.33   0.104507202   0.000946213  -2.931788636 -10886  17881  
2      0.9165   0.09  -0.072163816   0.000734057  -0.087735455     42  10635  
3      8.1632   0.07  -0.046547436  -0.003548031  -6.489771294  16115  10874  
4      6.2311  -0.55   0.077349896  -0.001805525   6.397929005  11919   7636  
...       ...    ...           ...           ...           ...    ...    ...  
2193  -3.4252  -0.17   0.108006874    0.00053028   2.926333099  -9392 -20022  
2194   7.5039   0.15  -0.035237035  -0.005211942  -3.261597701  -9809   4611  
2195   0.2604   0.13     -8.24E-05  -0.000602423   1.853791058 -20558  -5021  
2196  -2.2477   0.11  -0.029807058   0.000469613  -2.027643013 -36811 -27057  
2197  -5.8344  -0.43   0.108783411    0.00262805  -11.98159373  -4964  -5182  

[2198 rows x 13 columns]

La méthode merge() est une moyen performant pour rassembler les données. Elle nécessite de préciser la table de gauche et la table de droite.

Par défaut, la fonction merge() réalise une jointure de type inner : toutes les lignes de la table de gauche qui trouvent une correspondance dans celle de droite, et toutes les colonnes seront dans le résultat :

print(pd.merge(left = CDS_1, right = CDS_2))
print(pd.merge(left = CDS_1, right = CDS_2, how = "left"))
print(pd.merge(left = CDS_1, right = CDS_2, how = "right"))
print(pd.merge(left = CDS_1, right = CDS_2, how = "outer"))
               ID     TIME      CDS            FX            SM       RESERVE
0        BULGARIA  2006-08     32.3  -0.006534198  -0.036077236  -0.014736322
1        BULGARIA  2006-09   30.958   0.015085451   0.004744333   0.027457783
2        BULGARIA  2006-10   20.526  -0.002835155   0.070304302   0.029129242
3        BULGARIA  2006-11   20.296  -0.038182185   0.055392157   0.080605005
4        BULGARIA  2006-12    17.23   0.002275106   0.043195541  -0.008095802
...           ...      ...      ...           ...           ...           ...
1795  SOUTHAFRICA  2012-04  156.439   0.030263158   0.007381947   -0.01853919
1796  SOUTHAFRICA  2012-05  197.365   0.040868455  -0.108304834  -0.014241211
1797  SOUTHAFRICA  2012-06      163   0.030674847   0.051158837   0.006972661
1798  SOUTHAFRICA  2012-07  131.294  -0.017857143   0.030473728  -0.000821959
1799  SOUTHAFRICA  2012-08  151.934   0.003636364  -0.007788623   0.010469899

[1800 rows x 6 columns]
            ID     TIME      CDS            FX            SM       RESERVE
0     BULGARIA  2006-08     32.3  -0.006534198  -0.036077236  -0.014736322
1     BULGARIA  2006-09   30.958   0.015085451   0.004744333   0.027457783
2     BULGARIA  2006-10   20.526  -0.002835155   0.070304302   0.029129242
3     BULGARIA  2006-11   20.296  -0.038182185   0.055392157   0.080605005
4     BULGARIA  2006-12    17.23   0.002275106   0.043195541  -0.008095802
...        ...      ...      ...           ...           ...           ...
1993  THAILAND  2015-09      168   0.014170733           NaN           NaN
1994  THAILAND  2015-10  132.154  -0.021227626           NaN           NaN
1995  THAILAND  2015-11  127.175   0.008200855           NaN           NaN
1996  THAILAND  2015-12  134.796   0.005411793           NaN           NaN
1997  THAILAND  2016-01    153.3  -0.008509602           NaN           NaN

[1998 rows x 6 columns]
               ID     TIME      CDS            FX            SM       RESERVE
0          BRAZIL  2003-01      NaN           NaN  -0.033266742   0.024605373
1          BRAZIL  2003-02      NaN           NaN  -0.037897574  -0.000104981
2          BRAZIL  2003-03      NaN           NaN   0.137726228   0.094309413
3          BRAZIL  2003-04      NaN           NaN   0.210473611  -0.020148233
4          BRAZIL  2003-05      NaN           NaN   0.024045242   0.051259455
...           ...      ...      ...           ...           ...           ...
1995  SOUTHAFRICA  2012-04  156.439   0.030263158   0.007381947   -0.01853919
1996  SOUTHAFRICA  2012-05  197.365   0.040868455  -0.108304834  -0.014241211
1997  SOUTHAFRICA  2012-06      163   0.030674847   0.051158837   0.006972661
1998  SOUTHAFRICA  2012-07  131.294  -0.017857143   0.030473728  -0.000821959
1999  SOUTHAFRICA  2012-08  151.934   0.003636364  -0.007788623   0.010469899

[2000 rows x 6 columns]
            ID     TIME     CDS            FX            SM       RESERVE
0     BULGARIA  2006-08    32.3  -0.006534198  -0.036077236  -0.014736322
1     BULGARIA  2006-09  30.958   0.015085451   0.004744333   0.027457783
2     BULGARIA  2006-10  20.526  -0.002835155   0.070304302   0.029129242
3     BULGARIA  2006-11  20.296  -0.038182185   0.055392157   0.080605005
4     BULGARIA  2006-12   17.23   0.002275106   0.043195541  -0.008095802
...        ...      ...     ...           ...           ...           ...
2193  BULGARIA  2006-03     NaN           NaN  -0.001635769   0.042246503
2194  BULGARIA  2006-04     NaN           NaN   0.056253413   0.081567056
2195  BULGARIA  2006-05     NaN           NaN   0.014994829   0.098182539
2196  BULGARIA  2006-06     NaN           NaN   0.002547122   0.005638717
2197  BULGARIA  2006-07     NaN           NaN             0   0.060958047

[2198 rows x 6 columns]