-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1:3306
-- Généré le : lun. 23 sep. 2024 à 18:58
-- Version du serveur : 8.2.0
-- Version de PHP : 8.0.30

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Base de données : `renfortimmo`
--

-- --------------------------------------------------------

--
-- Structure de la table `access`
--

DROP TABLE IF EXISTS `access`;
CREATE TABLE IF NOT EXISTS `access` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `type_id` int DEFAULT NULL,
  `disponibilite` tinyint(1) DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_6692B548A2D8B41` (`terrain_id`),
  KEY `IDX_6692B54C54C8C93` (`type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `accompte`
--

DROP TABLE IF EXISTS `accompte`;
CREATE TABLE IF NOT EXISTS `accompte` (
  `id` int NOT NULL AUTO_INCREMENT,
  `devis_id` int NOT NULL,
  `prix` decimal(10,0) NOT NULL,
  `date` date NOT NULL,
  `payer` tinyint(1) NOT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_BD09DAF741DEFADA` (`devis_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `act_int_notaire`
--

DROP TABLE IF EXISTS `act_int_notaire`;
CREATE TABLE IF NOT EXISTS `act_int_notaire` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `motif` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_E7C229EE8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `act_int_proprio`
--

DROP TABLE IF EXISTS `act_int_proprio`;
CREATE TABLE IF NOT EXISTS `act_int_proprio` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `motif` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `non` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_C96E27448A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `act_int_voisin`
--

DROP TABLE IF EXISTS `act_int_voisin`;
CREATE TABLE IF NOT EXISTS `act_int_voisin` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `motif` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_333BBDA88A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `act_rdv_hypotheque`
--

DROP TABLE IF EXISTS `act_rdv_hypotheque`;
CREATE TABLE IF NOT EXISTS `act_rdv_hypotheque` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `motif` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `non` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_3BF55D6E8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `adresse`
--

DROP TABLE IF EXISTS `adresse`;
CREATE TABLE IF NOT EXISTS `adresse` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut_id` int NOT NULL,
  `contact_id` int DEFAULT NULL,
  `entreprise_id` int DEFAULT NULL,
  `rue` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `code_postal` int DEFAULT NULL,
  `ville` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `departement` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pays` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `facturation` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_C35F0816F6203804` (`statut_id`),
  KEY `IDX_C35F0816E7A1254A` (`contact_id`),
  KEY `IDX_C35F0816A4AEAFEA` (`entreprise_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `analyse`
--

DROP TABLE IF EXISTS `analyse`;
CREATE TABLE IF NOT EXISTS `analyse` (
  `id` int NOT NULL AUTO_INCREMENT,
  `titre` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `observations` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `appels_recus`
--

DROP TABLE IF EXISTS `appels_recus`;
CREATE TABLE IF NOT EXISTS `appels_recus` (
  `id` int NOT NULL AUTO_INCREMENT,
  `contact_id` int DEFAULT NULL,
  `date` datetime NOT NULL,
  `objet` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `appeller` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_2F9E5C3AE7A1254A` (`contact_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `aspect_exterieur`
--

DROP TABLE IF EXISTS `aspect_exterieur`;
CREATE TABLE IF NOT EXISTS `aspect_exterieur` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_8214C4838A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `bati_environant`
--

DROP TABLE IF EXISTS `bati_environant`;
CREATE TABLE IF NOT EXISTS `bati_environant` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `immeubles` tinyint(1) DEFAULT NULL,
  `maison_individuelle` tinyint(1) DEFAULT NULL,
  `locaux_dactivite` tinyint(1) DEFAULT NULL,
  `mixte` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BC456AFD8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `caract_gene_zone`
--

DROP TABLE IF EXISTS `caract_gene_zone`;
CREATE TABLE IF NOT EXISTS `caract_gene_zone` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_9EEE76B68A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `caract_terrain`
--

DROP TABLE IF EXISTS `caract_terrain`;
CREATE TABLE IF NOT EXISTS `caract_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `distance` decimal(10,0) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `ces`
--

DROP TABLE IF EXISTS `ces`;
CREATE TABLE IF NOT EXISTS `ces` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `ces_max` decimal(10,0) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_6456130F8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `classement_terrain`
--

DROP TABLE IF EXISTS `classement_terrain`;
CREATE TABLE IF NOT EXISTS `classement_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `zonage` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `extrait_plan_zonage_joint` tinyint(1) DEFAULT NULL,
  `terrain_soumis_aop` tinyint(1) DEFAULT NULL,
  `extrait_oap_joint` tinyint(1) DEFAULT NULL,
  `nom_terrain_soumis_oap` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_A5722A138A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `commande_bornage`
--

DROP TABLE IF EXISTS `commande_bornage`;
CREATE TABLE IF NOT EXISTS `commande_bornage` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_88C6B7A28A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `communication`
--

DROP TABLE IF EXISTS `communication`;
CREATE TABLE IF NOT EXISTS `communication` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int NOT NULL,
  `statut_id` int NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `forfait` decimal(10,2) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `payer` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_F9AFB5EBD2235D39` (`tache_id`),
  KEY `IDX_F9AFB5EBF6203804` (`statut_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `concl_remarque`
--

DROP TABLE IF EXISTS `concl_remarque`;
CREATE TABLE IF NOT EXISTS `concl_remarque` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_BAB73CEA8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `concl_risque`
--

DROP TABLE IF EXISTS `concl_risque`;
CREATE TABLE IF NOT EXISTS `concl_risque` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `ne_saitpas` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_8ECD13E68A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `concl_servitude_prive`
--

DROP TABLE IF EXISTS `concl_servitude_prive`;
CREATE TABLE IF NOT EXISTS `concl_servitude_prive` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_737D559A8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `concl_servitude_publique`
--

DROP TABLE IF EXISTS `concl_servitude_publique`;
CREATE TABLE IF NOT EXISTS `concl_servitude_publique` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_13F8A4028A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `contact`
--

DROP TABLE IF EXISTS `contact`;
CREATE TABLE IF NOT EXISTS `contact` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut_id` int DEFAULT NULL,
  `nom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `prenom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `entreprise` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `poste` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `agence` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `service` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `origine_id` int DEFAULT NULL,
  `priorite_id` int DEFAULT NULL,
  `profession` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_4C62E638F6203804` (`statut_id`),
  KEY `IDX_4C62E63887998E` (`origine_id`),
  KEY `IDX_4C62E63853B4F1DE` (`priorite_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1471 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `contact`
--

INSERT INTO `contact` (`id`, `statut_id`, `nom`, `prenom`, `entreprise`, `poste`, `agence`, `service`, `origine_id`, `priorite_id`, `profession`) VALUES
(1, 1, '', '', '109 Architectes ', '', '', '', 1, 1, 'architectes'),
(2, 1, '', '', '11Bis Studio Architectes ', '', '', '', 1, 1, 'architectes'),
(3, 1, '', '', '360 Degrés   ', '', '', '', 1, 1, 'architectes'),
(4, 1, '', '', '3D\'Form (SARL)  ', '', '', '', 1, 1, 'architectes'),
(5, 1, '', '', 'A Et A ', '', '', '', 1, 1, 'architectes'),
(6, 1, '', '', 'A Et A (SCM)  ', '', '', '', 1, 1, 'architectes'),
(7, 1, '', '', 'A.A.T.C.  ', '', '', '', 1, 1, 'architectes'),
(8, 1, '', '', 'A.R.T.E   ', '', '', '', 1, 1, 'architectes'),
(9, 1, '', '', 'A.T.A (SARL)  ', '', '', '', 1, 1, 'architectes'),
(10, 1, '', '', 'A.T.A (SARL)   ', '', '', '', 1, 1, 'architectes'),
(11, 1, '', '', 'A.T.Architecture et technique  ', '', '', '', 1, 1, 'architectes'),
(12, 1, '', '', 'A.T.T.C (SARL)   ', '', '', '', 1, 1, 'architectes'),
(13, 1, '', '', 'A1 Architecture ', '', '', '', 1, 1, 'architectes'),
(14, 1, '', '', 'A3A Conseils Travaux Déco ', '', '', '', 1, 1, 'architectes'),
(15, 1, '', '', 'AàZ Projet ', '', '', '', 1, 1, 'architectes'),
(16, 1, '', '', 'AB2 Architecture ', '', '', '', 1, 1, 'architectes'),
(17, 1, '', '', 'Abadie Philippe   ', '', '', '', 1, 1, 'architectes'),
(18, 1, '', '', 'ABC Architecte Batisseur Coldefy (SARL)  ', '', '', '', 1, 1, 'architectes'),
(19, 1, '', '', 'ABCV Expertises   ', '', '', '', 1, 1, 'architectes'),
(20, 1, '', '', 'Accarain Charles  ', '', '', '', 1, 1, 'architectes'),
(21, 1, '', '', 'Accoce Capar Marion   ', '', '', '', 1, 1, 'architectes'),
(22, 1, '', '', 'Aced Alexandra ', '', '', '', 1, 1, 'architectes'),
(23, 1, '', '', 'Aced Grégoire ', '', '', '', 1, 1, 'architectes'),
(24, 1, '', '', 'Achi Sofiane ', '', '', '', 1, 1, 'architectes'),
(25, 1, '', '', 'AD\'3E   ', '', '', '', 1, 1, 'architectes'),
(26, 1, '', '', 'Adam JeanFrédéric ', '', '', '', 1, 1, 'architectes'),
(27, 1, '', '', 'Adgié Michel   ', '', '', '', 1, 1, 'architectes'),
(28, 1, '', '', 'Adoue JeanPierre ', '', '', '', 1, 1, 'architectes'),
(29, 1, '', '', 'Aescendia (SELARL d\'Architecture)   ', '', '', '', 1, 1, 'architectes'),
(30, 1, '', '', 'Agence A  ', '', '', '', 1, 1, 'architectes'),
(31, 1, '', '', 'Agence Architecture C Plus C ', '', '', '', 1, 1, 'architectes'),
(32, 1, '', '', 'Agence Architecture Didier Médale Rémi Laboup  ', '', '', '', 1, 1, 'architectes'),
(33, 1, '', '', 'Agence Architecture Médal  ', '', '', '', 1, 1, 'architectes'),
(34, 1, '', '', 'Agence DJeanPierre Dumont ', '', '', '', 1, 1, 'architectes'),
(35, 1, '', '', 'Agence D\'Architecture C Plus C   ', '', '', '', 1, 1, 'architectes'),
(36, 1, '', '', 'Agence d\'Architecture Didier Médale et Rémi Laboup', '', '', '', 1, 1, 'architectes'),
(37, 1, '', '', 'Agence d\'Architecture Filiatre Mansour  ', '', '', '', 1, 1, 'architectes'),
(38, 1, '', '', 'Agence d\'Architecture Interface ', '', '', '', 1, 1, 'architectes'),
(39, 1, '', '', 'Agence D\'Architecture MCS (SARL)  ', '', '', '', 1, 1, 'architectes'),
(40, 1, '', '', 'Agence d\'Architecture Pierre Verlhac', '', '', '', 1, 1, 'architectes'),
(41, 1, '', '', 'Agence Dmd   ', '', '', '', 1, 1, 'architectes'),
(42, 1, '', '', 'Agence LD2A (Lilian Duval Atelier d\'Architecture)   ls ', '', '', '', 1, 1, 'architectes'),
(43, 1, '', '', 'Agence Malafosse (SEL) ', '', '', '', 1, 1, 'architectes'),
(44, 1, '', '', 'Agence Piùbelli  ', '', '', '', 1, 1, 'architectes'),
(45, 1, '', '', 'Agence Silvea  ', '', '', '', 1, 1, 'architectes'),
(46, 1, '', '', 'Agence Silvea   ', '', '', '', 1, 1, 'architectes'),
(47, 1, '', '', 'Agence Stéphane Gachet', '', '', '', 1, 1, 'architectes'),
(48, 1, '', '', 'Agence Torres Borredon   ', '', '', '', 1, 1, 'architectes'),
(49, 1, '', '', 'Agence Vidalon   ', '', '', '', 1, 1, 'architectes'),
(50, 1, '', '', 'Agro Eric  ', '', '', '', 1, 1, 'architectes'),
(51, 1, '', '', 'Aj   ', '', '', '', 1, 1, 'architectes'),
(52, 1, '', '', 'AKT Architecture  ', '', '', '', 1, 1, 'architectes'),
(53, 1, '', '', 'Albarède Architecture Perspectives   ', '', '', '', 1, 1, 'architectes'),
(54, 1, '', '', 'Albiges Magali   ', '', '', '', 1, 1, 'architectes'),
(55, 1, '', '', 'Albiges Stocco  ', '', '', '', 1, 1, 'architectes'),
(56, 1, '', '', 'Albigot Jordane ', '', '', '', 1, 1, 'architectes'),
(57, 1, '', '', 'Albigot Jordane   ', '', '', '', 1, 1, 'architectes'),
(58, 1, '', '', 'Albinet Philippe  ', '', '', '', 1, 1, 'architectes'),
(59, 1, '', '', 'Alcaraz Yves   ', '', '', '', 1, 1, 'architectes'),
(60, 1, '', '', 'Alet Dominique   ', '', '', '', 1, 1, 'architectes'),
(61, 1, '', '', 'Algans Pascal ', '', '', '', 1, 1, 'architectes'),
(62, 1, '', '', 'Algans Sophie', '', '', '', 1, 1, 'architectes'),
(63, 1, '', '', 'Algorythme ', '', '', '', 1, 1, 'architectes'),
(64, 1, '', '', 'ALGORYTHME   ', '', '', '', 1, 1, 'architectes'),
(65, 1, '', '', 'Alliage (SARL)  ', '', '', '', 1, 1, 'architectes'),
(66, 1, '', '', 'Alliage (SARL)  ', '', '', '', 1, 1, 'architectes'),
(67, 1, '', '', 'Alliage (SARL)  ', '', '', '', 1, 1, 'architectes'),
(68, 1, '', '', 'Almudever Fabrique D\'Architecture   ', '', '', '', 1, 1, 'architectes'),
(69, 1, '', '', 'Almudever Joseph   ', '', '', '', 1, 1, 'architectes'),
(70, 1, '', '', 'Almudever Lefèbvre', '', '', '', 1, 1, 'architectes'),
(71, 1, '', '', 'Alt Francis   ', '', '', '', 1, 1, 'architectes'),
(72, 1, '', '', 'Altabas Léo  ', '', '', '', 1, 1, 'architectes'),
(73, 1, '', '', 'AMPM Architectes ', '', '', '', 1, 1, 'architectes'),
(74, 1, '', '', 'Amaré Georges  ', '', '', '', 1, 1, 'architectes'),
(75, 1, '', '', 'Amaré Marc  ', '', '', '', 1, 1, 'architectes'),
(76, 1, '', '', 'Ambiances  ', '', '', '', 1, 1, 'architectes'),
(77, 1, '', '', 'Ambiterobin Isabel ', '', '', '', 1, 1, 'architectes'),
(78, 1, '', '', 'Amigo Etude Technologie Conception  ', '', '', '', 1, 1, 'architectes'),
(79, 1, '', '', 'André Joaquim   ', '', '', '', 1, 1, 'architectes'),
(80, 1, '', '', 'Andrée Magali  ', '', '', '', 1, 1, 'architectes'),
(81, 1, '', '', 'Anel Henri ', '', '', '', 1, 1, 'architectes'),
(82, 1, '', '', 'Angaud Gael   ', '', '', '', 1, 1, 'architectes'),
(83, 1, '', '', 'Anne Cillard Architecte   ', '', '', '', 1, 1, 'architectes'),
(84, 1, '', '', 'Annett Robin ', '', '', '', 1, 1, 'architectes'),
(85, 1, '', '', 'Anot Danielle   ', '', '', '', 1, 1, 'architectes'),
(86, 1, '', '', 'Antic Laetitia  ', '', '', '', 1, 1, 'architectes'),
(87, 1, '', '', 'APC Architectes   ', '', '', '', 1, 1, 'architectes'),
(88, 1, '', '', 'Aquilino Torrao Architecte (aTa)   + détails ', '', '', '', 1, 1, 'architectes'),
(89, 1, '', '', 'Ar Quo Architectes Au Quotidien  ', '', '', '', 1, 1, 'architectes'),
(90, 1, '', '', 'AR.TE.US  ', '', '', '', 1, 1, 'architectes'),
(91, 1, '', '', 'ARC ET FACT', '', '', '', 1, 1, 'architectes'),
(92, 1, '', '', 'Arcangeli François ', '', '', '', 1, 1, 'architectes'),
(93, 1, '', '', 'Archéa Architectes  ', '', '', '', 1, 1, 'architectes'),
(94, 1, '', '', 'Archea Architectes   ', '', '', '', 1, 1, 'architectes'),
(95, 1, '', '', 'Archi Anel   ', '', '', '', 1, 1, 'architectes'),
(96, 1, '', '', 'Archi BL JeanMarc Lassalle  ', '', '', '', 1, 1, 'architectes'),
(97, 1, '', '', 'Archi BL JeanMarc Lassalle  ', '', '', '', 1, 1, 'architectes'),
(98, 1, '', '', 'Archi Concept Coordination   ', '', '', '', 1, 1, 'architectes'),
(99, 1, '', '', 'ARCHI DOMPNIER LEMAIRE   ', '', '', '', 1, 1, 'architectes'),
(100, 1, '', '', 'Archi et co   ', '', '', '', 1, 1, 'architectes'),
(101, 1, '', '', 'Archi\'Co   ', '', '', '', 1, 1, 'architectes'),
(102, 1, '', '', 'Archi\'Val   ', '', '', '', 1, 1, 'architectes'),
(103, 1, '', '', 'Archi&co  ', '', '', '', 1, 1, 'architectes'),
(104, 1, '', '', 'Archidé  ', '', '', '', 1, 1, 'architectes'),
(105, 1, '', '', 'Archigraf\'   ', '', '', '', 1, 1, 'architectes'),
(106, 1, '', '', 'Archigriff Jean Marc Durin Architecte ', '', '', '', 1, 1, 'architectes'),
(107, 1, '', '', 'Archimaides ', '', '', '', 1, 1, 'architectes'),
(108, 1, '', '', 'Archipel ', '', '', '', 1, 1, 'architectes'),
(109, 1, '', '', 'Archipel   ', '', '', '', 1, 1, 'architectes'),
(110, 1, '', '', 'Architecte  ', '', '', '', 1, 1, 'architectes'),
(111, 1, '', '', 'Architecte Caumont Jean Louis', '', '', '', 1, 1, 'architectes'),
(112, 1, '', '', 'Architecte Fauré Grau  ', '', '', '', 1, 1, 'architectes'),
(113, 1, '', '', 'Architecte Raynal', '', '', '', 1, 1, 'architectes'),
(114, 1, '', '', 'Architectes Brunel Coucoureux  ', '', '', '', 1, 1, 'architectes'),
(115, 1, '', '', 'Architectes Fauré JeanPierreGrau Joel   ', '', '', '', 1, 1, 'architectes'),
(116, 1, '', '', 'Architectes Pastor et Vidalon  ', '', '', '', 1, 1, 'architectes'),
(117, 1, '', '', 'ArchitecturE   ', '', '', '', 1, 1, 'architectes'),
(118, 1, '', '', 'ARchitecture   ', '', '', '', 1, 1, 'architectes'),
(119, 1, '', '', 'Architecture & Concept  ', '', '', '', 1, 1, 'architectes'),
(120, 1, '', '', 'Architecture Abc   ', '', '', '', 1, 1, 'architectes'),
(121, 1, '', '', 'Architecture AnrichMaylin  ', '', '', '', 1, 1, 'architectes'),
(122, 1, '', '', 'Architecture Archisocele (SARL)  ', '', '', '', 1, 1, 'architectes'),
(123, 1, '', '', 'Architecture Assistance Conseils ', '', '', '', 1, 1, 'architectes'),
(124, 1, '', '', 'Architecture Bati Conseil ', '', '', '', 1, 1, 'architectes'),
(125, 1, '', '', 'Architecture Batsalle Klene Associés (SARL)', '', '', '', 1, 1, 'architectes'),
(126, 1, '', '', 'Architecture Belmon  ', '', '', '', 1, 1, 'architectes'),
(127, 1, '', '', 'Architecture Benazet Pinzio (SCP)  ', '', '', '', 1, 1, 'architectes'),
(128, 1, '', '', 'Architecture Branger Et Autres (SCP)', '', '', '', 1, 1, 'architectes'),
(129, 1, '', '', 'Architecture BrunerieIrissou (S.C.P)  ', '', '', '', 1, 1, 'architectes'),
(130, 1, '', '', 'Architecture Claude Laye (EURL) ', '', '', '', 1, 1, 'architectes'),
(131, 1, '', '', 'Architecture Conception Réalisation  ', '', '', '', 1, 1, 'architectes'),
(132, 1, '', '', 'Architecture De Santi Zoppis Lafon   ', '', '', '', 1, 1, 'architectes'),
(133, 1, '', '', 'Architecture Dominique Metarfi   ', '', '', '', 1, 1, 'architectes'),
(134, 1, '', '', 'Architecture Dominique Metarfi    ', '', '', '', 1, 1, 'architectes'),
(135, 1, '', '', 'Architecture Du T ', '', '', '', 1, 1, 'architectes'),
(136, 1, '', '', 'Architecture et Paysage ', '', '', '', 1, 1, 'architectes'),
(137, 1, '', '', 'Architecture Froidefond Villepontoux', '', '', '', 1, 1, 'architectes'),
(138, 1, '', '', 'Architecture Goubert Et Landes', '', '', '', 1, 1, 'architectes'),
(139, 1, '', '', 'Architecture Goubert Et Landes  ', '', '', '', 1, 1, 'architectes'),
(140, 1, '', '', 'Architecture Jacques Escourrou (Selarl)  ', '', '', '', 1, 1, 'architectes'),
(141, 1, '', '', 'Architecture Julien Maury Roussel (SCP)   ', '', '', '', 1, 1, 'architectes'),
(142, 1, '', '', 'Architecture MalacanMartres (SARL)   ', '', '', '', 1, 1, 'architectes'),
(143, 1, '', '', 'Architecture MunvezMorel (SARL)   ', '', '', '', 1, 1, 'architectes'),
(144, 1, '', '', 'Architecture Pocapoc   ', '', '', '', 1, 1, 'architectes'),
(145, 1, '', '', 'Architecture Sandra Perie (EURL)  ', '', '', '', 1, 1, 'architectes'),
(146, 1, '', '', 'Architectures Marco Baertich   ', '', '', '', 1, 1, 'architectes'),
(147, 1, '', '', 'Architekt+   ', '', '', '', 1, 1, 'architectes'),
(148, 1, '', '', 'Architouch  ', '', '', '', 1, 1, 'architectes'),
(149, 1, '', '', 'Archivolte ', '', '', '', 1, 1, 'architectes'),
(150, 1, '', '', 'Archivolte   ', '', '', '', 1, 1, 'architectes'),
(151, 1, '', '', 'Arco', '', '', '', 1, 1, 'architectes'),
(152, 1, '', '', 'Arcoser Architecture Concept Service ', '', '', '', 1, 1, 'architectes'),
(153, 1, '', '', 'Arcoser Architecture Concept Service   ', '', '', '', 1, 1, 'architectes'),
(154, 1, '', '', 'Arcs Sarl d\'Architecture Chamayou DuchetEsquerre   ', '', '', '', 1, 1, 'architectes'),
(155, 1, '', '', 'Arcs Sarl d\'Architecture ChamayouEsquerre   ', '', '', '', 1, 1, 'architectes'),
(156, 1, '', '', 'Arkeops  ', '', '', '', 1, 1, 'architectes'),
(157, 1, '', '', 'Arkhidée (SARL)   ', '', '', '', 1, 1, 'architectes'),
(158, 1, '', '', 'Arkhidée (SARL)   ', '', '', '', 1, 1, 'architectes'),
(159, 1, '', '', 'Arnal Maxime', '', '', '', 1, 1, 'architectes'),
(160, 1, '', '', 'Arnau Charles ', '', '', '', 1, 1, 'architectes'),
(161, 1, '', '', 'Arnau Leger   ', '', '', '', 1, 1, 'architectes'),
(162, 1, '', '', 'Arnaud Balas Architecte (SARL)  ', '', '', '', 1, 1, 'architectes'),
(163, 1, '', '', 'Arnone JeanLouis ', '', '', '', 1, 1, 'architectes'),
(164, 1, '', '', 'ArteConcept  ', '', '', '', 1, 1, 'architectes'),
(165, 1, '', '', 'Artrium (EURL)   ', '', '', '', 1, 1, 'architectes'),
(166, 1, '', '', 'Arua', '', '', '', 1, 1, 'architectes'),
(167, 1, '', '', 'ASA 2002  ', '', '', '', 1, 1, 'architectes'),
(168, 1, '', '', 'Aschenbroich Amélie   ', '', '', '', 1, 1, 'architectes'),
(169, 1, '', '', 'Aster Architecture ', '', '', '', 1, 1, 'architectes'),
(170, 1, '', '', 'Astruc Architectes  ', '', '', '', 1, 1, 'architectes'),
(171, 1, '', '', 'At D\'Architecture Bourthoumieux Thierry   ', '', '', '', 1, 1, 'architectes'),
(172, 1, '', '', 'Atelier 180   ', '', '', '', 1, 1, 'architectes'),
(173, 1, '', '', 'Atelier 3L Architectes ', '', '', '', 1, 1, 'architectes'),
(174, 1, '', '', 'Atelier 8KS   ', '', '', '', 1, 1, 'architectes'),
(175, 1, '', '', 'Atelier A Architecture Ville Lumière', '', '', '', 1, 1, 'architectes'),
(176, 1, '', '', 'Atelier Archi Pierre  ', '', '', '', 1, 1, 'architectes'),
(177, 1, '', '', 'Atelier Architectes Houbron (SARL) ', '', '', '', 1, 1, 'architectes'),
(178, 1, '', '', 'Atelier Architecture A 3 Plus ', '', '', '', 1, 1, 'architectes'),
(179, 1, '', '', 'Atelier Architecture Airoldi et Brun   ', '', '', '', 1, 1, 'architectes'),
(180, 1, '', '', 'Atelier Architecture et Territoires   ', '', '', '', 1, 1, 'architectes'),
(181, 1, '', '', 'Atelier Architecture Larrondo JM ', '', '', '', 1, 1, 'architectes'),
(182, 1, '', '', 'Atelier Architecture Martinez Tournié  ', '', '', '', 1, 1, 'architectes'),
(183, 1, '', '', 'Atelier Architecture Raynal Ruffat', '', '', '', 1, 1, 'architectes'),
(184, 1, '', '', 'Atelier Architecture Urbanisme   ', '', '', '', 1, 1, 'architectes'),
(185, 1, '', '', 'Atelier Bf Architecture  ', '', '', '', 1, 1, 'architectes'),
(186, 1, '', '', 'Atelier CGC Sarl D\'Architecture   ', '', '', '', 1, 1, 'architectes'),
(187, 1, '', '', 'Atelier d\' Architecture Diana   ', '', '', '', 1, 1, 'architectes'),
(188, 1, '', '', 'Atelier d\'Architectes Associés (AAA)   + détails ', '', '', '', 1, 1, 'architectes'),
(189, 1, '', '', 'Atelier d\'Architecture A2A  ', '', '', '', 1, 1, 'architectes'),
(190, 1, '', '', 'Atelier d\'Architecture CardeteHuet    ', '', '', '', 1, 1, 'architectes'),
(191, 1, '', '', 'Atelier d\'Architecture Cecile Bouinot  ', '', '', '', 1, 1, 'architectes'),
(192, 1, '', '', 'Atelier d\'Architecture du Prieuré   ', '', '', '', 1, 1, 'architectes'),
(193, 1, '', '', 'Atelier D\'Architecture Eric Barthe  ', '', '', '', 1, 1, 'architectes'),
(194, 1, '', '', 'Atelier d\'Architecture et Concept Nouveau   ', '', '', '', 1, 1, 'architectes'),
(195, 1, '', '', 'Atelier D\'architecture Et D\'urbanisme Arnal Lafon Cayrou ', '', '', '', 1, 1, 'architectes'),
(196, 1, '', '', 'Atelier d\'Architecture Faltrept Gilles et CombyFaltrept Dominique   ', '', '', '', 1, 1, 'architectes'),
(197, 1, '', '', 'Atelier d\'Architecture Hoyer', '', '', '', 1, 1, 'architectes'),
(198, 1, '', '', 'Atelier d\'Architecture Hoyer   ', '', '', '', 1, 1, 'architectes'),
(199, 1, '', '', 'Atelier d\'Architecture Imbert Alvernhe  ', '', '', '', 1, 1, 'architectes'),
(200, 1, '', '', 'Atelier d\'Architecture Imbert Alvernhe   ', '', '', '', 1, 1, 'architectes'),
(201, 1, '', '', 'Atelier d\'Architecture Joris Ducastaing ', '', '', '', 1, 1, 'architectes'),
(202, 1, '', '', 'Atelier d\'Architecture Lionel Bentolila (A.A.L.B)  ', '', '', '', 1, 1, 'architectes'),
(203, 1, '', '', 'Atelier d\'Architecture Marc Soulié   ', '', '', '', 1, 1, 'architectes'),
(204, 1, '', '', 'Atelier D\'Architecture Noailles Et Bayle ', '', '', '', 1, 1, 'architectes'),
(205, 1, '', '', 'Atelier d\'Architecture Patrice Brion (SARL) ', '', '', '', 1, 1, 'architectes'),
(206, 1, '', '', 'Atelier d\'architecture PILON & GEORGES (SARL)', '', '', '', 1, 1, 'architectes'),
(207, 1, '', '', 'Atelier D\'Architecture Rémi Papillault ', '', '', '', 1, 1, 'architectes'),
(208, 1, '', '', 'Atelier d\'Architecture Saint Laurent & Associés', '', '', '', 1, 1, 'architectes'),
(209, 1, '', '', 'Atelier D\'architecture Toulousain  ', '', '', '', 1, 1, 'architectes'),
(210, 1, '', '', 'Atelier d\'Architecture Voisin Bos', '', '', '', 1, 1, 'architectes'),
(211, 1, '', '', 'Atelier de Décoration Béziat Andrée  ', '', '', '', 1, 1, 'architectes'),
(212, 1, '', '', 'Atelier Fourmi Jaune', '', '', '', 1, 1, 'architectes'),
(213, 1, '', '', 'Atelier Gil Architecture  ', '', '', '', 1, 1, 'architectes'),
(214, 1, '', '', 'Atelier Luc Willaume   ', '', '', '', 1, 1, 'architectes'),
(215, 1, '', '', 'Atelier Méridional Joël Nissou  ', '', '', '', 1, 1, 'architectes'),
(216, 1, '', '', 'Atelier Or\'ange  ', '', '', '', 1, 1, 'architectes'),
(217, 1, '', '', 'Atelier Palomba  ', '', '', '', 1, 1, 'architectes'),
(218, 1, '', '', 'Atelier R & C Architecture   ', '', '', '', 1, 1, 'architectes'),
(219, 1, '', '', 'ATELIER REC ', '', '', '', 1, 1, 'architectes'),
(220, 1, '', '', 'Atelier Sauvagé Ducasse Harter (SARL) ', '', '', '', 1, 1, 'architectes'),
(221, 1, '', '', 'Atelier Scénario ', '', '', '', 1, 1, 'architectes'),
(222, 1, '', '', 'Atelier Scénario  ', '', '', '', 1, 1, 'architectes'),
(223, 1, '', '', 'Atelier Triglyphes ', '', '', '', 1, 1, 'architectes'),
(224, 1, '', '', 'ATELIERAARCHITECTURE (SARL)  ', '', '', '', 1, 1, 'architectes'),
(225, 1, '', '', 'AtelierAteneo D\'Architecture Bricchi (A3B)  ', '', '', '', 1, 1, 'architectes'),
(226, 1, '', '', 'Ateliers d\'Architecture Bernard Mans et Assoc  ', '', '', '', 1, 1, 'architectes'),
(227, 1, '', '', 'Atrium Atelier Architecture ', '', '', '', 1, 1, 'architectes'),
(228, 1, '', '', 'Atrium Atelier D\'Architecture   ', '', '', '', 1, 1, 'architectes'),
(229, 1, '', '', 'Aubailly Christophe  ', '', '', '', 1, 1, 'architectes'),
(230, 1, '', '', 'Aubert Cécile  ', '', '', '', 1, 1, 'architectes'),
(231, 1, '', '', 'Authie Michel ', '', '', '', 1, 1, 'architectes'),
(232, 1, '', '', 'Autret Michel   ', '', '', '', 1, 1, 'architectes'),
(233, 1, '', '', 'Avarchitecture  ', '', '', '', 1, 1, 'architectes'),
(234, 1, '', '', 'Avellana Michel', '', '', '', 1, 1, 'architectes'),
(235, 1, '', '', 'Avezac JeanClaude ', '', '', '', 1, 1, 'architectes'),
(236, 1, '', '', 'Avril Philippe   ', '', '', '', 1, 1, 'architectes'),
(237, 1, '', '', 'Azéma Architectes ', '', '', '', 1, 1, 'architectes'),
(238, 1, '', '', 'Azzopardi Frédéric  ', '', '', '', 1, 1, 'architectes'),
(239, 1, '', '', 'B7 Birades  ', '', '', '', 1, 1, 'architectes'),
(240, 1, '', '', 'Baberian Alice   ', '', '', '', 1, 1, 'architectes'),
(241, 1, '', '', 'Bachet Nicolas ', '', '', '', 1, 1, 'architectes'),
(242, 1, '', '', 'Bages Bureau Frédérique ', '', '', '', 1, 1, 'architectes'),
(243, 1, '', '', 'Balagué Pierre', '', '', '', 1, 1, 'architectes'),
(244, 1, '', '', 'Balas Christophe   ', '', '', '', 1, 1, 'architectes'),
(245, 1, '', '', 'Baldou Sébastien  ', '', '', '', 1, 1, 'architectes'),
(246, 1, '', '', 'Baldou Sébastien   ', '', '', '', 1, 1, 'architectes'),
(247, 1, '', '', 'Bankov Vassil ', '', '', '', 1, 1, 'architectes'),
(248, 1, '', '', 'Barbacane Architecture   ', '', '', '', 1, 1, 'architectes'),
(249, 1, '', '', 'Bardin Jean Marie  ', '', '', '', 1, 1, 'architectes'),
(250, 1, '', '', 'Barnabot Julia  ', '', '', '', 1, 1, 'architectes'),
(251, 1, '', '', 'Baroudi Mohsine', '', '', '', 1, 1, 'architectes'),
(252, 1, '', '', 'Barrau YvesPierre  ', '', '', '', 1, 1, 'architectes'),
(253, 1, '', '', 'Barriere Dominique ', '', '', '', 1, 1, 'architectes'),
(254, 1, '', '', 'Barrué Jérôme  ', '', '', '', 1, 1, 'architectes'),
(255, 1, '', '', 'Bastadjian Vaskene  ', '', '', '', 1, 1, 'architectes'),
(256, 1, '', '', 'Bastida Richard ', '', '', '', 1, 1, 'architectes'),
(257, 1, '', '', 'Bastié Sandrine   ', '', '', '', 1, 1, 'architectes'),
(258, 1, '', '', 'Batut JeanPascal   ', '', '', '', 1, 1, 'architectes'),
(259, 1, '', '', 'Baudéan Guy', '', '', '', 1, 1, 'architectes'),
(260, 1, '', '', 'Baudéan Guy   ', '', '', '', 1, 1, 'architectes'),
(261, 1, '', '', 'Baudrimont Alain ', '', '', '', 1, 1, 'architectes'),
(262, 1, '', '', 'Bayle Alain  ', '', '', '', 1, 1, 'architectes'),
(263, 1, '', '', 'Beaumont JeanPierre  ', '', '', '', 1, 1, 'architectes'),
(264, 1, '', '', 'Bédrune François  ', '', '', '', 1, 1, 'architectes'),
(265, 1, '', '', 'Belcour Cyprien', '', '', '', 1, 1, 'architectes'),
(266, 1, '', '', 'Belcour Matthieu ', '', '', '', 1, 1, 'architectes'),
(267, 1, '', '', 'Belcour Matthieu  ', '', '', '', 1, 1, 'architectes'),
(268, 1, '', '', 'Bellat Christophe   ', '', '', '', 1, 1, 'architectes'),
(269, 1, '', '', 'Belle Patrice', '', '', '', 1, 1, 'architectes'),
(270, 1, '', '', 'Belliure Xavier  ', '', '', '', 1, 1, 'architectes'),
(271, 1, '', '', 'Beltran Jacques   ', '', '', '', 1, 1, 'architectes'),
(272, 1, '', '', 'Beltran Jacques   ', '', '', '', 1, 1, 'architectes'),
(273, 1, '', '', 'Benazet Joseph  ', '', '', '', 1, 1, 'architectes'),
(274, 1, '', '', 'Benezech Jérôme  ', '', '', '', 1, 1, 'architectes'),
(275, 1, '', '', 'Benguigui Cormary Architec   + détails ', '', '', '', 1, 1, 'architectes'),
(276, 1, '', '', 'Benguigui Patrice', '', '', '', 1, 1, 'architectes'),
(277, 1, '', '', 'Benita Hubert  ', '', '', '', 1, 1, 'architectes'),
(278, 1, '', '', 'Benmansour Mourad   + détails ', '', '', '', 1, 1, 'architectes'),
(279, 1, '', '', 'Benne Henri  ', '', '', '', 1, 1, 'architectes'),
(280, 1, '', '', 'Bergès Philippe ', '', '', '', 1, 1, 'architectes'),
(281, 1, '', '', 'Bergès Philippe   ', '', '', '', 1, 1, 'architectes'),
(282, 1, '', '', 'Bernard Caroline   ', '', '', '', 1, 1, 'architectes'),
(283, 1, '', '', 'Bernard Claude  ', '', '', '', 1, 1, 'architectes'),
(284, 1, '', '', 'Bernard Robert   + détails ', '', '', '', 1, 1, 'architectes'),
(285, 1, '', '', 'BernardServin Odile  ', '', '', '', 1, 1, 'architectes'),
(286, 1, '', '', 'Bertona Yannick  ', '', '', '', 1, 1, 'architectes'),
(287, 1, '', '', 'Bertrand Bruno ', '', '', '', 1, 1, 'architectes'),
(288, 1, '', '', 'Bertrand Eric ', '', '', '', 1, 1, 'architectes'),
(289, 1, '', '', 'Bessaguet Muriel  ', '', '', '', 1, 1, 'architectes'),
(290, 1, '', '', 'Bestebreurtje Ellen   ', '', '', '', 1, 1, 'architectes'),
(291, 1, '', '', 'Betbeze Sébastien   ', '', '', '', 1, 1, 'architectes'),
(292, 1, '', '', 'Bezes Daniel   ', '', '', '', 1, 1, 'architectes'),
(293, 1, '', '', 'Bezes Daniel   ', '', '', '', 1, 1, 'architectes'),
(294, 1, '', '', 'Biau Philippe   ', '', '', '', 1, 1, 'architectes'),
(295, 1, '', '', 'BigMat Toujas et Coll Négociant  ', '', '', '', 1, 1, 'architectes'),
(296, 1, '', '', 'Blanc Didier  ', '', '', '', 1, 1, 'architectes'),
(297, 1, '', '', 'Bleu Gentiane ', '', '', '', 1, 1, 'architectes'),
(298, 1, '', '', 'BLV2 Architectes  ', '', '', '', 1, 1, 'architectes'),
(299, 1, '', '', 'Boissieres Christian ', '', '', '', 1, 1, 'architectes'),
(300, 1, '', '', 'Boissières Christian   ', '', '', '', 1, 1, 'architectes'),
(301, 1, '', '', 'Boixéda Jean   ', '', '', '', 1, 1, 'architectes'),
(302, 1, '', '', 'Bonaventure Michel   ', '', '', '', 1, 1, 'architectes'),
(303, 1, '', '', 'Bonaventure Michel (EURL)   ', '', '', '', 1, 1, 'architectes'),
(304, 1, '', '', 'Bonetto Vincent Et Capmas Serge (SCM)  ', '', '', '', 1, 1, 'architectes'),
(305, 1, '', '', 'Bonnet Annie', '', '', '', 1, 1, 'architectes'),
(306, 1, '', '', 'Bonnet Cyrille   ', '', '', '', 1, 1, 'architectes'),
(307, 1, '', '', 'Bonnet Jean Claude (SEL) ', '', '', '', 1, 1, 'architectes'),
(308, 1, '', '', 'Bonnet JeanClaude  ', '', '', '', 1, 1, 'architectes'),
(309, 1, '', '', 'Bonnet JeanClaude   ', '', '', '', 1, 1, 'architectes'),
(310, 1, '', '', 'Bonnet JeanLuc   ', '', '', '', 1, 1, 'architectes'),
(311, 1, '', '', 'Bonnet Terral Atelier Triade (SCP) ', '', '', '', 1, 1, 'architectes'),
(312, 1, '', '', 'Bonnier Sebastien  ', '', '', '', 1, 1, 'architectes'),
(313, 1, '', '', 'Bonsirven Daniel  ', '', '', '', 1, 1, 'architectes'),
(314, 1, '', '', 'Borghese Muriel ', '', '', '', 1, 1, 'architectes'),
(315, 1, '', '', 'Borrel Charon Architectes  ', '', '', '', 1, 1, 'architectes'),
(316, 1, '', '', 'Bos Christophe  ', '', '', '', 1, 1, 'architectes'),
(317, 1, '', '', 'Bos Christophe   ', '', '', '', 1, 1, 'architectes'),
(318, 1, '', '', 'Bosc Patrice ', '', '', '', 1, 1, 'architectes'),
(319, 1, '', '', 'Bosset Alain  ', '', '', '', 1, 1, 'architectes'),
(320, 1, '', '', 'Bouas Christophe ', '', '', '', 1, 1, 'architectes'),
(321, 1, '', '', 'Bouchardeau Alexandre   ', '', '', '', 1, 1, 'architectes'),
(322, 1, '', '', 'Bouche Julie  ', '', '', '', 1, 1, 'architectes'),
(323, 1, '', '', 'Bouchon JeanPierre ', '', '', '', 1, 1, 'architectes'),
(324, 1, '', '', 'Boudal Eric   ', '', '', '', 1, 1, 'architectes'),
(325, 1, '', '', 'Boudin Monique  ', '', '', '', 1, 1, 'architectes'),
(326, 1, '', '', 'Boularan Yves   ', '', '', '', 1, 1, 'architectes'),
(327, 1, '', '', 'Boumati Christophe   ', '', '', '', 1, 1, 'architectes'),
(328, 1, '', '', 'Bourdel Henri  ', '', '', '', 1, 1, 'architectes'),
(329, 1, '', '', 'Bourdil Serge ', '', '', '', 1, 1, 'architectes'),
(330, 1, '', '', 'Bourdoncle Bernard  ', '', '', '', 1, 1, 'architectes'),
(331, 1, '', '', 'Bourdoncle Bernard   ', '', '', '', 1, 1, 'architectes'),
(332, 1, '', '', 'BoussardJulien Céline  ', '', '', '', 1, 1, 'architectes'),
(333, 1, '', '', 'Boussier Patrick  ', '', '', '', 1, 1, 'architectes'),
(334, 1, '', '', 'Boyer Nicole   ', '', '', '', 1, 1, 'architectes'),
(335, 1, '', '', 'Branger Claude  ', '', '', '', 1, 1, 'architectes'),
(336, 1, '', '', 'Bravo Alain ', '', '', '', 1, 1, 'architectes'),
(337, 1, '', '', 'BravoRomieux Architectes Associés (SARL) ', '', '', '', 1, 1, 'architectes'),
(338, 1, '', '', 'BravoRomieux Architectes Associés (SARL)   ', '', '', '', 1, 1, 'architectes'),
(339, 1, '', '', 'Brugere Christophe  ', '', '', '', 1, 1, 'architectes'),
(340, 1, '', '', 'Brunel Coucoureux Architectes ', '', '', '', 1, 1, 'architectes'),
(341, 1, '', '', 'Brunel Joël   ', '', '', '', 1, 1, 'architectes'),
(342, 1, '', '', 'BRUNERIE & IRISSOU ARCHITECTE ', '', '', '', 1, 1, 'architectes'),
(343, 1, '', '', 'Brunerie Pierre  ', '', '', '', 1, 1, 'architectes'),
(344, 1, '', '', 'Bruneteau Laurence ', '', '', '', 1, 1, 'architectes'),
(345, 1, '', '', 'Bruniquel Philippe ', '', '', '', 1, 1, 'architectes'),
(346, 1, '', '', 'Brut d\'Eclats   ', '', '', '', 1, 1, 'architectes'),
(347, 1, '', '', 'Bultot Nathalie', '', '', '', 1, 1, 'architectes'),
(348, 1, '', '', 'Bultot Nathalie   ', '', '', '', 1, 1, 'architectes'),
(349, 1, '', '', 'BUREAU D ETUDES DE LA CONSTRUCTION   ', '', '', '', 1, 1, 'architectes'),
(350, 1, '', '', 'Burguière Sophie   ', '', '', '', 1, 1, 'architectes'),
(351, 1, '', '', 'Burzio Boris   ', '', '', '', 1, 1, 'architectes'),
(352, 1, '', '', 'C.A.U.E (Conseil d\'Architecture d\'Urbanisme & Environnement)  ', '', '', '', 1, 1, 'architectes'),
(353, 1, '', '', 'C.D.A. Architectes (SARL) ', '', '', '', 1, 1, 'architectes'),
(354, 1, '', '', 'C&A architectes  ', '', '', '', 1, 1, 'architectes'),
(355, 1, '', '', 'C&A architectes   ', '', '', '', 1, 1, 'architectes'),
(356, 1, '', '', 'CabanesSeguier Virginie', '', '', '', 1, 1, 'architectes'),
(357, 1, '', '', 'CABINET BRAIL NORBERT  ', '', '', '', 1, 1, 'architectes'),
(358, 1, '', '', 'Cabinet d\'Architecture d\'Intérieur Jaymes et Valentin   + détails ', '', '', '', 1, 1, 'architectes'),
(359, 1, '', '', 'Cabinet d\'Architecture Darbefeuille JeanMichel', '', '', '', 1, 1, 'architectes'),
(360, 1, '', '', 'Cabinet d\'Architecture Isabelle Canal Diaz et Associés    ', '', '', '', 1, 1, 'architectes'),
(361, 1, '', '', 'Cabinet Merhi et Barruel   ', '', '', '', 1, 1, 'architectes'),
(362, 1, '', '', 'Cabinet Saucadauch', '', '', '', 1, 1, 'architectes'),
(363, 1, '', '', 'Cabrol Jacques   ', '', '', '', 1, 1, 'architectes'),
(364, 1, '', '', 'Cabrol Jacques et Benoît   ', '', '', '', 1, 1, 'architectes'),
(365, 1, '', '', 'Cadaux Didier ', '', '', '', 1, 1, 'architectes'),
(366, 1, '', '', 'Cadaux Didier  ', '', '', '', 1, 1, 'architectes'),
(367, 1, '', '', 'Cadot Pierre   ', '', '', '', 1, 1, 'architectes'),
(368, 1, '', '', 'Cagnac JeanYves  ', '', '', '', 1, 1, 'architectes'),
(369, 1, '', '', 'Cagnac JeanYves   ', '', '', '', 1, 1, 'architectes'),
(370, 1, '', '', 'Caille', '', '', '', 1, 1, 'architectes'),
(371, 1, '', '', 'Calestroupat Lucien ', '', '', '', 1, 1, 'architectes'),
(372, 1, '', '', 'Calmels Pierre  ', '', '', '', 1, 1, 'architectes'),
(373, 1, '', '', 'Calmes Bruno   ', '', '', '', 1, 1, 'architectes'),
(374, 1, '', '', 'Calsou  ', '', '', '', 1, 1, 'architectes'),
(375, 1, '', '', 'Calvo   ', '', '', '', 1, 1, 'architectes'),
(376, 1, '', '', 'Cambedouzou Laurent   ', '', '', '', 1, 1, 'architectes'),
(377, 1, '', '', 'Cambon Christian  ', '', '', '', 1, 1, 'architectes'),
(378, 1, '', '', 'Cambriel Annabel  ', '', '', '', 1, 1, 'architectes'),
(379, 1, '', '', 'Camillo JeanFrançois   ', '', '', '', 1, 1, 'architectes'),
(380, 1, '', '', 'Campion PierreJean   ', '', '', '', 1, 1, 'architectes'),
(381, 1, '', '', 'Canal Jacques   ', '', '', '', 1, 1, 'architectes'),
(382, 1, '', '', 'Caner Bernard   ', '', '', '', 1, 1, 'architectes'),
(383, 1, '', '', 'Cangémi Philippe   ', '', '', '', 1, 1, 'architectes'),
(384, 1, '', '', 'Canut   ', '', '', '', 1, 1, 'architectes'),
(385, 1, '', '', 'Capele Patrick (De) ', '', '', '', 1, 1, 'architectes'),
(386, 1, '', '', 'Capmas Serge   ', '', '', '', 1, 1, 'architectes'),
(387, 1, '', '', 'Capmas Serge   ', '', '', '', 1, 1, 'architectes'),
(388, 1, '', '', 'Capot François', '', '', '', 1, 1, 'architectes'),
(389, 1, '', '', 'Capraro Joseph  ', '', '', '', 1, 1, 'architectes'),
(390, 1, '', '', 'Capraro Joseph   ', '', '', '', 1, 1, 'architectes'),
(391, 1, '', '', 'Capy JeanPierre et Joulia Bruno (SA)   ', '', '', '', 1, 1, 'architectes'),
(392, 1, '', '', 'Caradant Maurice  ', '', '', '', 1, 1, 'architectes'),
(393, 1, '', '', 'Carassus JeanLouis  ', '', '', '', 1, 1, 'architectes'),
(394, 1, '', '', 'CARDO  ', '', '', '', 1, 1, 'architectes'),
(395, 1, '', '', 'Cardo (SCM d\'Architecture) ', '', '', '', 1, 1, 'architectes'),
(396, 1, '', '', 'Cardona Roland   ', '', '', '', 1, 1, 'architectes'),
(397, 1, '', '', 'Carel Thierry  ', '', '', '', 1, 1, 'architectes'),
(398, 1, '', '', 'Carel Thierry   ', '', '', '', 1, 1, 'architectes'),
(399, 1, '', '', 'Carissan François   ', '', '', '', 1, 1, 'architectes'),
(400, 1, '', '', 'Carla André   ', '', '', '', 1, 1, 'architectes'),
(401, 1, '', '', 'Carmes Jean Louis ', '', '', '', 1, 1, 'architectes'),
(402, 1, '', '', 'Carnoy Laurent ', '', '', '', 1, 1, 'architectes'),
(403, 1, '', '', 'Carpio Manuel ', '', '', '', 1, 1, 'architectes'),
(404, 1, '', '', 'Cartayrade Christophe', '', '', '', 1, 1, 'architectes'),
(405, 1, '', '', 'Carvalheiro Fernando   ', '', '', '', 1, 1, 'architectes'),
(406, 1, '', '', 'Casadepax JeanFrançois   ', '', '', '', 1, 1, 'architectes'),
(407, 1, '', '', 'CasadepaxSoulet JeanFrançois  ', '', '', '', 1, 1, 'architectes'),
(408, 1, '', '', 'Casalta Benoît  ', '', '', '', 1, 1, 'architectes'),
(409, 1, '', '', 'Cascarigny Christine   ', '', '', '', 1, 1, 'architectes'),
(410, 1, '', '', 'Cascarigny Christine Et Cascarigny Raymond (SCP)  ', '', '', '', 1, 1, 'architectes'),
(411, 1, '', '', 'Cassignac Estela  ', '', '', '', 1, 1, 'architectes'),
(412, 1, '', '', 'Cassou Architecte ', '', '', '', 1, 1, 'architectes'),
(413, 1, '', '', 'Cassou Architecte  ', '', '', '', 1, 1, 'architectes'),
(414, 1, '', '', 'Cassou Pierre   ', '', '', '', 1, 1, 'architectes'),
(415, 1, '', '', 'Castagné Thierry  ', '', '', '', 1, 1, 'architectes'),
(416, 1, '', '', 'Castaings Marine   ', '', '', '', 1, 1, 'architectes'),
(417, 1, '', '', 'Cathala Yves   ', '', '', '', 1, 1, 'architectes'),
(418, 1, '', '', 'Cathala Yves   ', '', '', '', 1, 1, 'architectes'),
(419, 1, '', '', 'CatusseBazet JeanMichel ', '', '', '', 1, 1, 'architectes'),
(420, 1, '', '', 'CayracBenezech MarieThérèse   ', '', '', '', 1, 1, 'architectes'),
(421, 1, '', '', 'Cayrou Patrick  ', '', '', '', 1, 1, 'architectes'),
(422, 1, '', '', 'Cayrou Patrick   ', '', '', '', 1, 1, 'architectes'),
(423, 1, '', '', 'Caza La Vera  ', '', '', '', 1, 1, 'architectes'),
(424, 1, '', '', 'Cazabon Philippe ', '', '', '', 1, 1, 'architectes'),
(425, 1, '', '', 'Cazaubon Patrice   ', '', '', '', 1, 1, 'architectes'),
(426, 1, '', '', 'Cazaux Emile   ', '', '', '', 1, 1, 'architectes'),
(427, 1, '', '', 'Cazelles Anne   ', '', '', '', 1, 1, 'architectes'),
(428, 1, '', '', 'Cazelles Anne   ', '', '', '', 1, 1, 'architectes'),
(429, 1, '', '', 'Cazeres Jean Pierre ', '', '', '', 1, 1, 'architectes'),
(430, 1, '', '', 'Cazères JeanPierre  ', '', '', '', 1, 1, 'architectes'),
(431, 1, '', '', 'CCS Architecture  ', '', '', '', 1, 1, 'architectes'),
(432, 1, '', '', 'CD Architectes ', '', '', '', 1, 1, 'architectes'),
(433, 1, '', '', 'Céladon Déco Design   ', '', '', '', 1, 1, 'architectes'),
(434, 1, '', '', 'Céladon Déco design   ', '', '', '', 1, 1, 'architectes'),
(435, 1, '', '', 'Cellier Michel   ', '', '', '', 1, 1, 'architectes'),
(436, 1, '', '', 'Cerès JeanSébastien   + détails ', '', '', '', 1, 1, 'architectes'),
(437, 1, '', '', 'Chabbert Patrice  ', '', '', '', 1, 1, 'architectes'),
(438, 1, '', '', 'Chabbert Patrice (architecte DPLG)', '', '', '', 1, 1, 'architectes'),
(439, 1, '', '', 'Chabreyron Alain   ', '', '', '', 1, 1, 'architectes'),
(440, 1, '', '', 'Chamayou Michel ', '', '', '', 1, 1, 'architectes'),
(441, 1, '', '', 'Chambon Philippe  ', '', '', '', 1, 1, 'architectes'),
(442, 1, '', '', 'Chambon Philippe   ', '', '', '', 1, 1, 'architectes'),
(443, 1, '', '', 'Chanson Benoît  ', '', '', '', 1, 1, 'architectes'),
(444, 1, '', '', 'Chanson Benoît  ', '', '', '', 1, 1, 'architectes'),
(445, 1, '', '', 'Chapelet Letourneux Jérôme ', '', '', '', 1, 1, 'architectes'),
(446, 1, '', '', 'Charasson Etienne', '', '', '', 1, 1, 'architectes'),
(447, 1, '', '', 'Charles Couderc Catherine  ', '', '', '', 1, 1, 'architectes'),
(448, 1, '', '', 'Charras Pierre', '', '', '', 1, 1, 'architectes'),
(449, 1, '', '', 'Charrier Christelle  ', '', '', '', 1, 1, 'architectes'),
(450, 1, '', '', 'Charrière JeanPierre   + détails ', '', '', '', 1, 1, 'architectes'),
(451, 1, '', '', 'ChaumetLagrange Thibaut  ', '', '', '', 1, 1, 'architectes'),
(452, 1, '', '', 'Chaumont PierreYves  ', '', '', '', 1, 1, 'architectes'),
(453, 1, '', '', 'Cheron Jean ', '', '', '', 1, 1, 'architectes'),
(454, 1, '', '', 'Chevalier JeanLuc ', '', '', '', 1, 1, 'architectes'),
(455, 1, '', '', 'Chevallier Andrée   ', '', '', '', 1, 1, 'architectes'),
(456, 1, '', '', 'Chia Alain   ', '', '', '', 1, 1, 'architectes'),
(457, 1, '', '', 'Chiarovano Mathias   ', '', '', '', 1, 1, 'architectes'),
(458, 1, '', '', 'Chiron Jacques  ', '', '', '', 1, 1, 'architectes'),
(459, 1, '', '', 'Christian Pagès Thierry Le Ster Architectes ', '', '', '', 1, 1, 'architectes'),
(460, 1, '', '', 'Chtorkh Aléxis  ', '', '', '', 1, 1, 'architectes'),
(461, 1, '', '', 'Cieutat Christian ', '', '', '', 1, 1, 'architectes'),
(462, 1, '', '', 'Cieutat Christian  ', '', '', '', 1, 1, 'architectes'),
(463, 1, '', '', 'Cieutat JeanPierre', '', '', '', 1, 1, 'architectes'),
(464, 1, '', '', 'Cirgue Dargassies  ', '', '', '', 1, 1, 'architectes'),
(465, 1, '', '', 'CL Architecture  ', '', '', '', 1, 1, 'architectes'),
(466, 1, '', '', 'CL Architecture   ', '', '', '', 1, 1, 'architectes'),
(467, 1, '', '', 'Claire Dolmaire Architecte ', '', '', '', 1, 1, 'architectes'),
(468, 1, '', '', 'Clanet Michel  ', '', '', '', 1, 1, 'architectes'),
(469, 1, '', '', 'Claude Branger Et Gilbert Romeu SCP D\'Architecture  ', '', '', '', 1, 1, 'architectes'),
(470, 1, '', '', 'Claustre Robert ', '', '', '', 1, 1, 'architectes'),
(471, 1, '', '', 'Clavere Christine   ', '', '', '', 1, 1, 'architectes'),
(472, 1, '', '', 'Claverie JeanPhilippe ', '', '', '', 1, 1, 'architectes'),
(473, 1, '', '', 'Clédat Francis   ', '', '', '', 1, 1, 'architectes'),
(474, 1, '', '', 'Clément Boutet Architecte  ', '', '', '', 1, 1, 'architectes'),
(475, 1, '', '', 'Clergue Philippe ', '', '', '', 1, 1, 'architectes'),
(476, 1, '', '', 'Cluzel Jean  ', '', '', '', 1, 1, 'architectes'),
(477, 1, '', '', 'Coatanroc\'h Gwenaëlle ', '', '', '', 1, 1, 'architectes'),
(478, 1, '', '', 'CocagneHabitat ', '', '', '', 1, 1, 'architectes'),
(479, 1, '', '', 'CocagneHabitat  ', '', '', '', 1, 1, 'architectes'),
(480, 1, '', '', 'CocagneHabitat   ', '', '', '', 1, 1, 'architectes'),
(481, 1, '', '', 'Colas Stéphane   ', '', '', '', 1, 1, 'architectes'),
(482, 1, '', '', 'Coldefy Guy   ', '', '', '', 1, 1, 'architectes'),
(483, 1, '', '', 'Coletti Léo  ', '', '', '', 1, 1, 'architectes'),
(484, 1, '', '', 'Collart JeanFrançois ', '', '', '', 1, 1, 'architectes'),
(485, 1, '', '', 'Collart JeanFrançois  ', '', '', '', 1, 1, 'architectes'),
(486, 1, '', '', 'Collin Daniel  ', '', '', '', 1, 1, 'architectes'),
(487, 1, '', '', 'Colombani Stéphane   ', '', '', '', 1, 1, 'architectes'),
(488, 1, '', '', 'Colzani Matthieu  ', '', '', '', 1, 1, 'architectes'),
(489, 1, '', '', 'Combes Dumas Hélène ', '', '', '', 1, 1, 'architectes'),
(490, 1, '', '', 'Combes JeanFrançois  ', '', '', '', 1, 1, 'architectes'),
(491, 1, '', '', 'Combis Philippe  ', '', '', '', 1, 1, 'architectes'),
(492, 1, '', '', 'CombyFaltrept Dominique ', '', '', '', 1, 1, 'architectes'),
(493, 1, '', '', 'Concept   ', '', '', '', 1, 1, 'architectes'),
(494, 1, '', '', 'Concept Créations  ', '', '', '', 1, 1, 'architectes'),
(495, 1, '', '', 'Condis Sébastien   ', '', '', '', 1, 1, 'architectes'),
(496, 1, '', '', 'Condomines Christophe', '', '', '', 1, 1, 'architectes'),
(497, 1, '', '', 'Conjugaison Création Agencement ', '', '', '', 1, 1, 'architectes'),
(498, 1, '', '', 'Constant Denis', '', '', '', 1, 1, 'architectes'),
(499, 1, '', '', 'Constensou Laura   ', '', '', '', 1, 1, 'architectes'),
(500, 1, '', '', 'Convergence Architecture Intérieure ', '', '', '', 1, 1, 'architectes'),
(501, 1, '', '', 'CottardCheyssial Veronique ', '', '', '', 1, 1, 'architectes'),
(502, 1, '', '', 'Couanault Samuel   ', '', '', '', 1, 1, 'architectes'),
(503, 1, '', '', 'Couffignal Amélie   ', '', '', '', 1, 1, 'architectes'),
(504, 1, '', '', 'Coulon Alain  ', '', '', '', 1, 1, 'architectes'),
(505, 1, '', '', 'Courtin Florence   ', '', '', '', 1, 1, 'architectes'),
(506, 1, '', '', 'Cousin Jean   ', '', '', '', 1, 1, 'architectes'),
(507, 1, '', '', 'Cousy Christophe  ', '', '', '', 1, 1, 'architectes'),
(508, 1, '', '', 'Coutou Roger   ', '', '', '', 1, 1, 'architectes'),
(509, 1, '', '', 'Couturier Noémie   ', '', '', '', 1, 1, 'architectes'),
(510, 1, '', '', 'CPBR Architecture (SARL)  ', '', '', '', 1, 1, 'architectes'),
(511, 1, '', '', 'CPL Architecture   ', '', '', '', 1, 1, 'architectes'),
(512, 1, '', '', 'Creation+ ', '', '', '', 1, 1, 'architectes'),
(513, 1, '', '', 'Cros Serge  ', '', '', '', 1, 1, 'architectes'),
(514, 1, '', '', 'Croux Alain  ', '', '', '', 1, 1, 'architectes'),
(515, 1, '', '', 'Crouzet JeanBernard   ', '', '', '', 1, 1, 'architectes'),
(516, 1, '', '', 'Crouzillac Charles  ', '', '', '', 1, 1, 'architectes'),
(517, 1, '', '', 'CSV Architecture   ', '', '', '', 1, 1, 'architectes'),
(518, 1, '', '', 'Cube  ', '', '', '', 1, 1, 'architectes'),
(519, 1, '', '', 'Cumin Joëlle   + détails ', '', '', '', 1, 1, 'architectes'),
(520, 1, '', '', 'Cuquel Elodie   ', '', '', '', 1, 1, 'architectes'),
(521, 1, '', '', 'D.P.A.B ', '', '', '', 1, 1, 'architectes'),
(522, 1, '', '', 'Da Costa Patricia  ', '', '', '', 1, 1, 'architectes'),
(523, 1, '', '', 'Da Costa Patricia   ', '', '', '', 1, 1, 'architectes'),
(524, 1, '', '', 'Da Cunha Pierre   ', '', '', '', 1, 1, 'architectes'),
(525, 1, '', '', 'Dahuron Matthieu ', '', '', '', 1, 1, 'architectes'),
(526, 1, '', '', 'DalCol Cyrille  ', '', '', '', 1, 1, 'architectes'),
(527, 1, '', '', 'Dalcol Cyrille   ', '', '', '', 1, 1, 'architectes'),
(528, 1, '', '', 'Dalmayrac Céline  ', '', '', '', 1, 1, 'architectes'),
(529, 1, '', '', 'Damon Architecte  ', '', '', '', 1, 1, 'architectes'),
(530, 1, '', '', 'Dangas Ghislain ', '', '', '', 1, 1, 'architectes'),
(531, 1, '', '', 'Dangas Ghislain   ', '', '', '', 1, 1, 'architectes'),
(532, 1, '', '', 'Daniel Roudière   ', '', '', '', 1, 1, 'architectes'),
(533, 1, '', '', 'Dardenne Jean Pierre   ', '', '', '', 1, 1, 'architectes'),
(534, 1, '', '', 'Dargassies Thierry  ', '', '', '', 1, 1, 'architectes'),
(535, 1, '', '', 'Darnault Jérôme   ', '', '', '', 1, 1, 'architectes'),
(536, 1, '', '', 'Daurenjou Catherine   ', '', '', '', 1, 1, 'architectes'),
(537, 1, '', '', 'Daures Xavier   ', '', '', '', 1, 1, 'architectes'),
(538, 1, '', '', 'DB Architecture (SARL)  ', '', '', '', 1, 1, 'architectes'),
(539, 1, '', '', 'DBA (Duran et Boumati Architecture)', '', '', '', 1, 1, 'architectes'),
(540, 1, '', '', 'De Capele Patrick Lamarque Paul (SCP)   ', '', '', '', 1, 1, 'architectes'),
(541, 1, '', '', 'De Quelenfontan Hélène   ', '', '', '', 1, 1, 'architectes'),
(542, 1, '', '', 'Deco and Co  ', '', '', '', 1, 1, 'architectes'),
(543, 1, '', '', 'Dedieu Muriel ', '', '', '', 1, 1, 'architectes'),
(544, 1, '', '', 'Defol Mousseigne ', '', '', '', 1, 1, 'architectes'),
(545, 1, '', '', 'Defos Du Rau Architecture ', '', '', '', 1, 1, 'architectes'),
(546, 1, '', '', 'Deixonne Claude', '', '', '', 1, 1, 'architectes'),
(547, 1, '', '', 'Deladerriere Philippe', '', '', '', 1, 1, 'architectes'),
(548, 1, '', '', 'Delahousse Etienne  ', '', '', '', 1, 1, 'architectes'),
(549, 1, '', '', 'Delannee Guy   ', '', '', '', 1, 1, 'architectes'),
(550, 1, '', '', 'Délas Caroline  ', '', '', '', 1, 1, 'architectes'),
(551, 1, '', '', 'Delbos Philippe   ', '', '', '', 1, 1, 'architectes'),
(552, 1, '', '', 'Delcros Henri ', '', '', '', 1, 1, 'architectes'),
(553, 1, '', '', 'Delfour Marc  ', '', '', '', 1, 1, 'architectes'),
(554, 1, '', '', 'Deligny Stéphane  ', '', '', '', 1, 1, 'architectes'),
(555, 1, '', '', 'Delmas Alain  ', '', '', '', 1, 1, 'architectes'),
(556, 1, '', '', 'Delmas René ', '', '', '', 1, 1, 'architectes'),
(557, 1, '', '', 'Deloche Marc   ', '', '', '', 1, 1, 'architectes'),
(558, 1, '', '', 'Delord JeanFrançois   ', '', '', '', 1, 1, 'architectes'),
(559, 1, '', '', 'Delprat Pascal   ', '', '', '', 1, 1, 'architectes'),
(560, 1, '', '', 'Delrieu Christian   ', '', '', '', 1, 1, 'architectes'),
(561, 1, '', '', 'Delta  ', '', '', '', 1, 1, 'architectes'),
(562, 1, '', '', 'Demolombe Luc ', '', '', '', 1, 1, 'architectes'),
(563, 1, '', '', 'Descazeaux  ', '', '', '', 1, 1, 'architectes'),
(564, 1, '', '', 'Descuns Daniel   ', '', '', '', 1, 1, 'architectes'),
(565, 1, '', '', 'Desneiges Philippe ', '', '', '', 1, 1, 'architectes'),
(566, 1, '', '', 'Destruel JeanPaul   ', '', '', '', 1, 1, 'architectes'),
(567, 1, '', '', 'Devaux Michel   ', '', '', '', 1, 1, 'architectes'),
(568, 1, '', '', 'Devaux Virginie ', '', '', '', 1, 1, 'architectes'),
(569, 1, '', '', 'Devillers Daniel  ', '', '', '', 1, 1, 'architectes'),
(570, 1, '', '', 'DhalluinPény', '', '', '', 1, 1, 'architectes'),
(571, 1, '', '', 'Dias Architectes ', '', '', '', 1, 1, 'architectes'),
(572, 1, '', '', 'Dias Architectes Associes  ', '', '', '', 1, 1, 'architectes'),
(573, 1, '', '', 'Dis Pierre  ', '', '', '', 1, 1, 'architectes'),
(574, 1, '', '', 'Dompnier Lemaire (SCP) ', '', '', '', 1, 1, 'architectes'),
(575, 1, '', '', 'Dormancy Ariane', '', '', '', 1, 1, 'architectes'),
(576, 1, '', '', 'Dormancy Ariane ', '', '', '', 1, 1, 'architectes'),
(577, 1, '', '', 'Doumenc Yves   ', '', '', '', 1, 1, 'architectes'),
(578, 1, '', '', 'Dratwicki Daniel ', '', '', '', 1, 1, 'architectes'),
(579, 1, '', '', 'Droit de Cité Architectes   ', '', '', '', 1, 1, 'architectes'),
(580, 1, '', '', 'Druet Et Associés Architectes ', '', '', '', 1, 1, 'architectes'),
(581, 1, '', '', 'Drugeon Jean   ', '', '', '', 1, 1, 'architectes'),
(582, 1, '', '', 'Drugeon JeanFrançois   ', '', '', '', 1, 1, 'architectes'),
(583, 1, '', '', 'Duareg (Eurl)   ', '', '', '', 1, 1, 'architectes'),
(584, 1, '', '', 'Ducamin Bernard ', '', '', '', 1, 1, 'architectes'),
(585, 1, '', '', 'Duchayne Patrick   ', '', '', '', 1, 1, 'architectes'),
(586, 1, '', '', 'Duchayne Patrick   ', '', '', '', 1, 1, 'architectes'),
(587, 1, '', '', 'Duchêne Gaëlle  ', '', '', '', 1, 1, 'architectes'),
(588, 1, '', '', 'Ducreux Thomas  ', '', '', '', 1, 1, 'architectes'),
(589, 1, '', '', 'Dufauret Bernard  ', '', '', '', 1, 1, 'architectes'),
(590, 1, '', '', 'Duffau Et Associés ', '', '', '', 1, 1, 'architectes'),
(591, 1, '', '', 'Duffau Et Associés  ', '', '', '', 1, 1, 'architectes'),
(592, 1, '', '', 'Duffaut Philippe ', '', '', '', 1, 1, 'architectes'),
(593, 1, '', '', 'Dufour MarieSylvie   ', '', '', '', 1, 1, 'architectes'),
(594, 1, '', '', 'Dumolard Julien   ', '', '', '', 1, 1, 'architectes'),
(595, 1, '', '', 'Dupin Christian  ', '', '', '', 1, 1, 'architectes'),
(596, 1, '', '', 'Dupin Isabelle  ', '', '', '', 1, 1, 'architectes'),
(597, 1, '', '', 'Dupin Isabelle   ', '', '', '', 1, 1, 'architectes'),
(598, 1, '', '', 'Duquoc Caroline', '', '', '', 1, 1, 'architectes'),
(599, 1, '', '', 'Duran Christophe', '', '', '', 1, 1, 'architectes'),
(600, 1, '', '', 'Durand Bertrand   ', '', '', '', 1, 1, 'architectes'),
(601, 1, '', '', 'Durin Jean Marc  ', '', '', '', 1, 1, 'architectes'),
(602, 1, '', '', 'Duroure Anne ', '', '', '', 1, 1, 'architectes'),
(603, 1, '', '', 'Dursent Patrick Architecte  ', '', '', '', 1, 1, 'architectes'),
(604, 1, '', '', 'Durvelle Laurent ', '', '', '', 1, 1, 'architectes'),
(605, 1, '', '', 'EAUConcept Herve Rodriguez   ', '', '', '', 1, 1, 'architectes'),
(606, 1, '', '', 'E.R.T.S.I (SARL)  ', '', '', '', 1, 1, 'architectes'),
(607, 1, '', '', 'E8 ARCHITECTURE (SARL)  ', '', '', '', 1, 1, 'architectes'),
(608, 1, '', '', 'EBAG ', '', '', '', 1, 1, 'architectes'),
(609, 1, '', '', 'EBAG   ', '', '', '', 1, 1, 'architectes'),
(610, 1, '', '', 'Ebdesign   ', '', '', '', 1, 1, 'architectes'),
(611, 1, '', '', 'Ecoumène Architecture  ', '', '', '', 1, 1, 'architectes'),
(612, 1, '', '', 'Ehrhardt Thierry  ', '', '', '', 1, 1, 'architectes'),
(613, 1, '', '', 'El Maarri Nada   ', '', '', '', 1, 1, 'architectes'),
(614, 1, '', '', 'El Sid Mohamed ', '', '', '', 1, 1, 'architectes'),
(615, 1, '', '', 'El Yassem Rachid   ', '', '', '', 1, 1, 'architectes'),
(616, 1, '', '', 'Elements   ', '', '', '', 1, 1, 'architectes'),
(617, 1, '', '', 'ElwaAtelier D\'architecture   ', '', '', '', 1, 1, 'architectes'),
(618, 1, '', '', 'EMB09', '', '', '', 1, 1, 'architectes'),
(619, 1, '', '', 'Empreintes  ', '', '', '', 1, 1, 'architectes'),
(620, 1, '', '', 'Energie Architecture Benouali Laribi   + détails ', '', '', '', 1, 1, 'architectes'),
(621, 1, '', '', 'Energie Architecture Urbanisme   ', '', '', '', 1, 1, 'architectes'),
(622, 1, '', '', 'Enguilabert Daniel  ', '', '', '', 1, 1, 'architectes'),
(623, 1, '', '', 'Enjalbal Pierre   ', '', '', '', 1, 1, 'architectes'),
(624, 1, '', '', 'Enzo & Rosso (SARL)   ', '', '', '', 1, 1, 'architectes'),
(625, 1, '', '', 'Eos Architecture d\'Intérieur   ', '', '', '', 1, 1, 'architectes'),
(626, 1, '', '', 'Epure Architectes ', '', '', '', 1, 1, 'architectes'),
(627, 1, '', '', 'Ernst Frédérique   ', '', '', '', 1, 1, 'architectes'),
(628, 1, '', '', 'Espagno Jean François   ', '', '', '', 1, 1, 'architectes'),
(629, 1, '', '', 'Espagno Vincent  ', '', '', '', 1, 1, 'architectes'),
(630, 1, '', '', 'Espiebes Dominique   ', '', '', '', 1, 1, 'architectes'),
(631, 1, '', '', 'Espouy Lucien (SARL)  ', '', '', '', 1, 1, 'architectes'),
(632, 1, '', '', 'Esquisse et Ligne d\'archi ALG   ', '', '', '', 1, 1, 'architectes'),
(633, 1, '', '', 'Estangoy Michel   ', '', '', '', 1, 1, 'architectes'),
(634, 1, '', '', 'Estangoy Michel (EURL)', '', '', '', 1, 1, 'architectes'),
(635, 1, '', '', 'Esteve Jean Philippe  ', '', '', '', 1, 1, 'architectes'),
(636, 1, '', '', 'Esteve JeanPhilippe   ', '', '', '', 1, 1, 'architectes'),
(637, 1, '', '', 'Etilé Norbert  ', '', '', '', 1, 1, 'architectes'),
(638, 1, '', '', 'Eydoux Nicolas   ', '', '', '', 1, 1, 'architectes'),
(639, 1, '', '', 'F.C.C.H. Architecture (S.E.L.A.R.L)   ', '', '', '', 1, 1, 'architectes'),
(640, 1, '', '', 'Fabre JeanPhilippe   ', '', '', '', 1, 1, 'architectes'),
(641, 1, '', '', 'Fabre Jérôme ', '', '', '', 1, 1, 'architectes'),
(642, 1, '', '', 'Fabre Jérôme  ', '', '', '', 1, 1, 'architectes'),
(643, 1, '', '', 'Fabre Marianne   ', '', '', '', 1, 1, 'architectes'),
(644, 1, '', '', 'Fabre Mathilde   ', '', '', '', 1, 1, 'architectes'),
(645, 1, '', '', 'Fake Interior Design   ', '', '', '', 1, 1, 'architectes'),
(646, 1, '', '', 'Faltrept Gilles   ', '', '', '', 1, 1, 'architectes'),
(647, 1, '', '', 'Farache Claude ', '', '', '', 1, 1, 'architectes'),
(648, 1, '', '', 'Faramond Max  ', '', '', '', 1, 1, 'architectes'),
(649, 1, '', '', 'Fastré Karine (EURL) ', '', '', '', 1, 1, 'architectes'),
(650, 1, '', '', 'Fauré JeanPierre Architecte ', '', '', '', 1, 1, 'architectes'),
(651, 1, '', '', 'Fauré MarieChristine   ', '', '', '', 1, 1, 'architectes'),
(652, 1, '', '', 'Favaron Juliette   ', '', '', '', 1, 1, 'architectes'),
(653, 1, '', '', 'Fave Architectes   ', '', '', '', 1, 1, 'architectes'),
(654, 1, '', '', 'FavresseOugier  ', '', '', '', 1, 1, 'architectes'),
(655, 1, '', '', 'FavresseOugier   ', '', '', '', 1, 1, 'architectes'),
(656, 1, '', '', 'Faye Gisèle', '', '', '', 1, 1, 'architectes'),
(657, 1, '', '', 'Felix Bernard', '', '', '', 1, 1, 'architectes'),
(658, 1, '', '', 'Fernandez Pierre   ', '', '', '', 1, 1, 'architectes'),
(659, 1, '', '', 'Fernandez Roger  ', '', '', '', 1, 1, 'architectes'),
(660, 1, '', '', 'Ferré Manuel   ', '', '', '', 1, 1, 'architectes'),
(661, 1, '', '', 'Ferre Nicolas  ', '', '', '', 1, 1, 'architectes'),
(662, 1, '', '', 'Ferrer Jean Baptiste   ', '', '', '', 1, 1, 'architectes'),
(663, 1, '', '', 'Ferri JeanBenoît ', '', '', '', 1, 1, 'architectes'),
(664, 1, '', '', 'Feucht Julien  ', '', '', '', 1, 1, 'architectes'),
(665, 1, '', '', 'Fieu Stéphane ', '', '', '', 1, 1, 'architectes'),
(666, 1, '', '', 'Fieu Stéphane  ', '', '', '', 1, 1, 'architectes'),
(667, 1, '', '', 'Filiâtre Isabelle   ', '', '', '', 1, 1, 'architectes'),
(668, 1, '', '', 'Finet Alain   ', '', '', '', 1, 1, 'architectes'),
(669, 1, '', '', 'Fiol Isabelle   ', '', '', '', 1, 1, 'architectes'),
(670, 1, '', '', 'Florinier Michel (De)  ', '', '', '', 1, 1, 'architectes'),
(671, 1, '', '', 'FOA Olivier ', '', '', '', 1, 1, 'architectes'),
(672, 1, '', '', 'Fonquergne Jacques ', '', '', '', 1, 1, 'architectes');
INSERT INTO `contact` (`id`, `statut_id`, `nom`, `prenom`, `entreprise`, `poste`, `agence`, `service`, `origine_id`, `priorite_id`, `profession`) VALUES
(673, 1, '', '', 'Fontaine JeanPaul', '', '', '', 1, 1, 'architectes'),
(674, 1, '', '', 'Fontaine Malvy (Sté)  ', '', '', '', 1, 1, 'architectes'),
(675, 1, '', '', 'Fontana JeanLouis   ', '', '', '', 1, 1, 'architectes'),
(676, 1, '', '', 'Fontanille Bernard  ', '', '', '', 1, 1, 'architectes'),
(677, 1, '', '', 'Fonvieille Alain  ', '', '', '', 1, 1, 'architectes'),
(678, 1, '', '', 'Fonvieille Thierry  ', '', '', '', 1, 1, 'architectes'),
(679, 1, '', '', 'Foucault IsabelleEmmanuelle   ', '', '', '', 1, 1, 'architectes'),
(680, 1, '', '', 'Fouquet Elisabeth ', '', '', '', 1, 1, 'architectes'),
(681, 1, '', '', 'Fourcade Jacques', '', '', '', 1, 1, 'architectes'),
(682, 1, '', '', 'Fourcade Jacques  ', '', '', '', 1, 1, 'architectes'),
(683, 1, '', '', 'Fourcade JeanMarc   ', '', '', '', 1, 1, 'architectes'),
(684, 1, '', '', 'Fourcade Myriam  ', '', '', '', 1, 1, 'architectes'),
(685, 1, '', '', 'FOURNIER  ', '', '', '', 1, 1, 'architectes'),
(686, 1, '', '', 'Frack Pierre  ', '', '', '', 1, 1, 'architectes'),
(687, 1, '', '', 'Fradeira Pédro ', '', '', '', 1, 1, 'architectes'),
(688, 1, '', '', 'France Aurelie  ', '', '', '', 1, 1, 'architectes'),
(689, 1, '', '', 'Franceries Isabelle   ', '', '', '', 1, 1, 'architectes'),
(690, 1, '', '', 'Franceries Isabelle et Vergely Marc   ', '', '', '', 1, 1, 'architectes'),
(691, 1, '', '', 'Frances Nicolas', '', '', '', 1, 1, 'architectes'),
(692, 1, '', '', 'Frances Nicolas   ', '', '', '', 1, 1, 'architectes'),
(693, 1, '', '', 'FrancèsOuchikh Séverine   ', '', '', '', 1, 1, 'architectes'),
(694, 1, '', '', 'Franck Mével Architecte   ', '', '', '', 1, 1, 'architectes'),
(695, 1, '', '', 'Frauciel Brigitte ', '', '', '', 1, 1, 'architectes'),
(696, 1, '', '', 'Frauciel Brigitte  ', '', '', '', 1, 1, 'architectes'),
(697, 1, '', '', 'Fraysse Pierre   ', '', '', '', 1, 1, 'architectes'),
(698, 1, '', '', 'Fred Naulin  ', '', '', '', 1, 1, 'architectes'),
(699, 1, '', '', 'Frenois Emmanuel  ', '', '', '', 1, 1, 'architectes'),
(700, 1, '', '', 'FRESQUET FRAUCIEL', '', '', '', 1, 1, 'architectes'),
(701, 1, '', '', 'Fresquet Gérard   ', '', '', '', 1, 1, 'architectes'),
(702, 1, '', '', 'Freyermuth Guillaume ', '', '', '', 1, 1, 'architectes'),
(703, 1, '', '', 'Fricheteau Fabien  ', '', '', '', 1, 1, 'architectes'),
(704, 1, '', '', 'Froget Frédéric   ', '', '', '', 1, 1, 'architectes'),
(705, 1, '', '', 'Furnemont Pierre  ', '', '', '', 1, 1, 'architectes'),
(706, 1, '', '', 'G.C.A. G. Barrué J. P. Bouglon   ', '', '', '', 1, 1, 'architectes'),
(707, 1, '', '', 'G.C.A.U  ', '', '', '', 1, 1, 'architectes'),
(708, 1, '', '', 'G.Philippe Busieau Architecte   ', '', '', '', 1, 1, 'architectes'),
(709, 1, '', '', 'Gabriel Sabine  ', '', '', '', 1, 1, 'architectes'),
(710, 1, '', '', 'Gadou Eric  ', '', '', '', 1, 1, 'architectes'),
(711, 1, '', '', 'Gaffard Jean Claude', '', '', '', 1, 1, 'architectes'),
(712, 1, '', '', 'Gagno Leonard   ', '', '', '', 1, 1, 'architectes'),
(713, 1, '', '', 'Gago Gérard ', '', '', '', 1, 1, 'architectes'),
(714, 1, '', '', 'Gaichies Jean  ', '', '', '', 1, 1, 'architectes'),
(715, 1, '', '', 'Galmuller MarieHélène  ', '', '', '', 1, 1, 'architectes'),
(716, 1, '', '', 'Galaup Boris   ', '', '', '', 1, 1, 'architectes'),
(717, 1, '', '', 'Galinier Céline ', '', '', '', 1, 1, 'architectes'),
(718, 1, '', '', 'Galinier Frères ', '', '', '', 1, 1, 'architectes'),
(719, 1, '', '', 'Gallart Roland  ', '', '', '', 1, 1, 'architectes'),
(720, 1, '', '', 'Gallego Pierre   ', '', '', '', 1, 1, 'architectes'),
(721, 1, '', '', 'Gallet Catherine', '', '', '', 1, 1, 'architectes'),
(722, 1, '', '', 'Gallien Philippe   ', '', '', '', 1, 1, 'architectes'),
(723, 1, '', '', 'Gallon Catherine  ', '', '', '', 1, 1, 'architectes'),
(724, 1, '', '', 'Galtier Alain ', '', '', '', 1, 1, 'architectes'),
(725, 1, '', '', 'Gambelin Serge  ', '', '', '', 1, 1, 'architectes'),
(726, 1, '', '', 'Gamboa Rui  ', '', '', '', 1, 1, 'architectes'),
(727, 1, '', '', 'Ganéo Sébastien ', '', '', '', 1, 1, 'architectes'),
(728, 1, '', '', 'Garcia Carlos   ', '', '', '', 1, 1, 'architectes'),
(729, 1, '', '', 'Garcia Pablo   ', '', '', '', 1, 1, 'architectes'),
(730, 1, '', '', 'GarciaCejalvo Carlos   ', '', '', '', 1, 1, 'architectes'),
(731, 1, '', '', 'GarciaLier MarieHélène  ', '', '', '', 1, 1, 'architectes'),
(732, 1, '', '', 'Garguillo Palmade (SARL)   ', '', '', '', 1, 1, 'architectes'),
(733, 1, '', '', 'Garguillo Palmade (SARL)   ', '', '', '', 1, 1, 'architectes'),
(734, 1, '', '', 'Garguillo Palmade Architec   ', '', '', '', 1, 1, 'architectes'),
(735, 1, '', '', 'Garlat Jean ', '', '', '', 1, 1, 'architectes'),
(736, 1, '', '', 'GasparottoBonnet   ', '', '', '', 1, 1, 'architectes'),
(737, 1, '', '', 'Gauci Vincent   ', '', '', '', 1, 1, 'architectes'),
(738, 1, '', '', 'GAUSSAIL   ', '', '', '', 1, 1, 'architectes'),
(739, 1, '', '', 'Gautrand MarieJosé ', '', '', '', 1, 1, 'architectes'),
(740, 1, '', '', 'Gay Marie  ', '', '', '', 1, 1, 'architectes'),
(741, 1, '', '', 'Gelas Chantal   ', '', '', '', 1, 1, 'architectes'),
(742, 1, '', '', 'Geli Bruno  ', '', '', '', 1, 1, 'architectes'),
(743, 1, '', '', 'Ghaddar Ismaïl  ', '', '', '', 1, 1, 'architectes'),
(744, 1, '', '', 'Giavarini André Et Villeneuve Franck (SCM)  ', '', '', '', 1, 1, 'architectes'),
(745, 1, '', '', 'Gilles PierreMarie   ', '', '', '', 1, 1, 'architectes'),
(746, 1, '', '', 'Ginestet Ludovic  ', '', '', '', 1, 1, 'architectes'),
(747, 1, '', '', 'Ginisty JeanPhilippe   ', '', '', '', 1, 1, 'architectes'),
(748, 1, '', '', 'Girard Eeckhoutte Françoise  ', '', '', '', 1, 1, 'architectes'),
(749, 1, '', '', 'Giron Michel   ', '', '', '', 1, 1, 'architectes'),
(750, 1, '', '', 'Glauzy JeanClaude', '', '', '', 1, 1, 'architectes'),
(751, 1, '', '', 'Gobert Daniel  ', '', '', '', 1, 1, 'architectes'),
(752, 1, '', '', 'Gobert Daniel   ', '', '', '', 1, 1, 'architectes'),
(753, 1, '', '', 'Gomez Juan ', '', '', '', 1, 1, 'architectes'),
(754, 1, '', '', 'Gonzalez Raymond   ', '', '', '', 1, 1, 'architectes'),
(755, 1, '', '', 'GorvienBentejac Marlène', '', '', '', 1, 1, 'architectes'),
(756, 1, '', '', 'Gosnell Jane   ', '', '', '', 1, 1, 'architectes'),
(757, 1, '', '', 'Goubert Bruno   ', '', '', '', 1, 1, 'architectes'),
(758, 1, '', '', 'Goubert et Landes', '', '', '', 1, 1, 'architectes'),
(759, 1, '', '', 'Goussot Hélène Architecte DPLG   ', '', '', '', 1, 1, 'architectes'),
(760, 1, '', '', 'Gout Christian   ', '', '', '', 1, 1, 'architectes'),
(761, 1, '', '', 'Gouwy Grima Rames   ', '', '', '', 1, 1, 'architectes'),
(762, 1, '', '', 'Gouwy Laurent   ', '', '', '', 1, 1, 'architectes'),
(763, 1, '', '', 'Grand Pierre  ', '', '', '', 1, 1, 'architectes'),
(764, 1, '', '', 'Granges JeanLouis', '', '', '', 1, 1, 'architectes'),
(765, 1, '', '', 'Gres Fanny   ', '', '', '', 1, 1, 'architectes'),
(766, 1, '', '', 'Grès Francis ', '', '', '', 1, 1, 'architectes'),
(767, 1, '', '', 'Grezes Anthony   ', '', '', '', 1, 1, 'architectes'),
(768, 1, '', '', 'Grima Alain   ', '', '', '', 1, 1, 'architectes'),
(769, 1, '', '', 'Groupe Coopérative Architecture Urbaine ', '', '', '', 1, 1, 'architectes'),
(770, 1, '', '', 'Gueze JeanFrançois   ', '', '', '', 1, 1, 'architectes'),
(771, 1, '', '', 'Gueze JeanFrançois   ', '', '', '', 1, 1, 'architectes'),
(772, 1, '', '', 'Guezou Laurent ', '', '', '', 1, 1, 'architectes'),
(773, 1, '', '', 'Guichot Francis ', '', '', '', 1, 1, 'architectes'),
(774, 1, '', '', 'Guilbert Philippe ', '', '', '', 1, 1, 'architectes'),
(775, 1, '', '', 'Guillemain Patrick   ', '', '', '', 1, 1, 'architectes'),
(776, 1, '', '', 'Guillermin PaulEtienne ', '', '', '', 1, 1, 'architectes'),
(777, 1, '', '', 'Guinounet Jean Bernard   ', '', '', '', 1, 1, 'architectes'),
(778, 1, '', '', 'Guitton Philippe   ', '', '', '', 1, 1, 'architectes'),
(779, 1, '', '', 'Guitton Philippe   ', '', '', '', 1, 1, 'architectes'),
(780, 1, '', '', 'H & A Atelier d\'Architectures  ', '', '', '', 1, 1, 'architectes'),
(781, 1, '', '', 'H.D.M Architecture  ', '', '', '', 1, 1, 'architectes'),
(782, 1, '', '', 'Halais Carole', '', '', '', 1, 1, 'architectes'),
(783, 1, '', '', 'Halais Carole  ', '', '', '', 1, 1, 'architectes'),
(784, 1, '', '', 'Harancq Jean Christophe ', '', '', '', 1, 1, 'architectes'),
(785, 1, '', '', 'Harter Architecture   ', '', '', '', 1, 1, 'architectes'),
(786, 1, '', '', 'Harter Architecture (SARL)  ', '', '', '', 1, 1, 'architectes'),
(787, 1, '', '', 'HBM Architectes (Holderbach Blanc Marion Architectes)   ', '', '', '', 1, 1, 'architectes'),
(788, 1, '', '', 'HDM  ', '', '', '', 1, 1, 'architectes'),
(789, 1, '', '', 'Hebert David   ', '', '', '', 1, 1, 'architectes'),
(790, 1, '', '', 'Heins JeanLuc   ', '', '', '', 1, 1, 'architectes'),
(791, 1, '', '', 'Heins Maxime   ', '', '', '', 1, 1, 'architectes'),
(792, 1, '', '', 'Hélie Christian  ', '', '', '', 1, 1, 'architectes'),
(793, 1, '', '', 'Heral JeanClaude   ', '', '', '', 1, 1, 'architectes'),
(794, 1, '', '', 'Hernandez Didier   ', '', '', '', 1, 1, 'architectes'),
(795, 1, '', '', 'Hilar Didier   ', '', '', '', 1, 1, 'architectes'),
(796, 1, '', '', 'Hillere Fabienne', '', '', '', 1, 1, 'architectes'),
(797, 1, '', '', 'Hirsch Laurent  ', '', '', '', 1, 1, 'architectes'),
(798, 1, '', '', 'Hody Isabelle   ', '', '', '', 1, 1, 'architectes'),
(799, 1, '', '', 'Holderbach Hervé   ', '', '', '', 1, 1, 'architectes'),
(800, 1, '', '', 'Hollier Marie  ', '', '', '', 1, 1, 'architectes'),
(801, 1, '', '', 'Horguedebat Robert ', '', '', '', 1, 1, 'architectes'),
(802, 1, '', '', 'Houplain Christophe   ', '', '', '', 1, 1, 'architectes'),
(803, 1, '', '', 'Houze Philippe ', '', '', '', 1, 1, 'architectes'),
(804, 1, '', '', 'Hoyer François  ', '', '', '', 1, 1, 'architectes'),
(805, 1, '', '', 'Hubert Dominique   ', '', '', '', 1, 1, 'architectes'),
(806, 1, '', '', 'Hubert Guillaume   ', '', '', '', 1, 1, 'architectes'),
(807, 1, '', '', 'Hucault Kawtar ', '', '', '', 1, 1, 'architectes'),
(808, 1, '', '', 'Huchon André  ', '', '', '', 1, 1, 'architectes'),
(809, 1, '', '', 'IdPproject', '', '', '', 1, 1, 'architectes'),
(810, 1, '', '', 'I.C.S.O (Ingénierie Coordination Sécurité d\'Olt)   ', '', '', '', 1, 1, 'architectes'),
(811, 1, '', '', 'IAM Architectes (SARL) ', '', '', '', 1, 1, 'architectes'),
(812, 1, '', '', 'ID d\' Archi Tec  ', '', '', '', 1, 1, 'architectes'),
(813, 1, '', '', 'Idea Vitae ', '', '', '', 1, 1, 'architectes'),
(814, 1, '', '', 'Idéa Vitaé (SARL)', '', '', '', 1, 1, 'architectes'),
(815, 1, '', '', 'Imagina Design  ', '', '', '', 1, 1, 'architectes'),
(816, 1, '', '', 'Imbert Joël ', '', '', '', 1, 1, 'architectes'),
(817, 1, '', '', 'Imbert Michel   ', '', '', '', 1, 1, 'architectes'),
(818, 1, '', '', 'Imbert Pujol (SCM) ', '', '', '', 1, 1, 'architectes'),
(819, 1, '', '', 'Imer Sandrine ', '', '', '', 1, 1, 'architectes'),
(820, 1, '', '', 'IMS Architecture  ', '', '', '', 1, 1, 'architectes'),
(821, 1, '', '', 'Inextremis Architectures (SARL) ', '', '', '', 1, 1, 'architectes'),
(822, 1, '', '', 'Inisan Elian   ', '', '', '', 1, 1, 'architectes'),
(823, 1, '', '', 'Interstice   ', '', '', '', 1, 1, 'architectes'),
(824, 1, '', '', 'Intra Muros ', '', '', '', 1, 1, 'architectes'),
(825, 1, '', '', 'Intramuros  ', '', '', '', 1, 1, 'architectes'),
(826, 1, '', '', 'Intramuros   ', '', '', '', 1, 1, 'architectes'),
(827, 1, '', '', 'Irissou JeanFrançois  ', '', '', '', 1, 1, 'architectes'),
(828, 1, '', '', 'Ishac Muriel   ', '', '', '', 1, 1, 'architectes'),
(829, 1, '', '', 'Issot JeanMarc  ', '', '', '', 1, 1, 'architectes'),
(830, 1, '', '', 'Izoulet Daniel ', '', '', '', 1, 1, 'architectes'),
(831, 1, '', '', 'J et F VuilleyQueysselier  ', '', '', '', 1, 1, 'architectes'),
(832, 1, '', '', 'Jacob Pol  ', '', '', '', 1, 1, 'architectes'),
(833, 1, '', '', 'Jacob Pol   ', '', '', '', 1, 1, 'architectes'),
(834, 1, '', '', 'Jamme Dominique  ', '', '', '', 1, 1, 'architectes'),
(835, 1, '', '', 'Janote AnneThérèse   ', '', '', '', 1, 1, 'architectes'),
(836, 1, '', '', 'Jarrige JeanMichel   ', '', '', '', 1, 1, 'architectes'),
(837, 1, '', '', 'Javelaud Jean   ', '', '', '', 1, 1, 'architectes'),
(838, 1, '', '', 'Jaymes Christiane  ', '', '', '', 1, 1, 'architectes'),
(839, 1, '', '', 'Jean Charrière (SARL) ', '', '', '', 1, 1, 'architectes'),
(840, 1, '', '', 'Jean Gombert (EURL)  ', '', '', '', 1, 1, 'architectes'),
(841, 1, '', '', 'JeanMarie Pettes (SARL)  ', '', '', '', 1, 1, 'architectes'),
(842, 1, '', '', 'Jeanmaire Grégoire  ', '', '', '', 1, 1, 'architectes'),
(843, 1, '', '', 'JFC Architecte   ', '', '', '', 1, 1, 'architectes'),
(844, 1, '', '', 'Joel Cochen   ', '', '', '', 1, 1, 'architectes'),
(845, 1, '', '', 'Joly Ananda   ', '', '', '', 1, 1, 'architectes'),
(846, 1, '', '', 'Jonville Philippe  ', '', '', '', 1, 1, 'architectes'),
(847, 1, '', '', 'Joulia Bruno', '', '', '', 1, 1, 'architectes'),
(848, 1, '', '', 'Jourdain Jean Marc Architecte', '', '', '', 1, 1, 'architectes'),
(849, 1, '', '', 'Jourdan Véronique ', '', '', '', 1, 1, 'architectes'),
(850, 1, '', '', 'Joyes Didier ', '', '', '', 1, 1, 'architectes'),
(851, 1, '', '', 'Joyes Didier   ', '', '', '', 1, 1, 'architectes'),
(852, 1, '', '', 'Julla Marc ', '', '', '', 1, 1, 'architectes'),
(853, 1, '', '', 'Julla Marc  ', '', '', '', 1, 1, 'architectes'),
(854, 1, '', '', 'Jullière Karine  ', '', '', '', 1, 1, 'architectes'),
(855, 1, '', '', 'Junca Gilles  ', '', '', '', 1, 1, 'architectes'),
(856, 1, '', '', 'Kantorowicz Emmanuelle  ', '', '', '', 1, 1, 'architectes'),
(857, 1, '', '', 'Katelbach Vladimir  ', '', '', '', 1, 1, 'architectes'),
(858, 1, '', '', 'Katelbach Vladimir   ', '', '', '', 1, 1, 'architectes'),
(859, 1, '', '', 'Kéops Architecture   ', '', '', '', 1, 1, 'architectes'),
(860, 1, '', '', 'Kerloveou Marylène   ', '', '', '', 1, 1, 'architectes'),
(861, 1, '', '', 'Khorsi José ', '', '', '', 1, 1, 'architectes'),
(862, 1, '', '', 'KhorsiOrdonneaud (SARL)   ', '', '', '', 1, 1, 'architectes'),
(863, 1, '', '', 'Kierasinski Frédéric', '', '', '', 1, 1, 'architectes'),
(864, 1, '', '', 'Klein Alain  ', '', '', '', 1, 1, 'architectes'),
(865, 1, '', '', 'Koenen Brigitte   ', '', '', '', 1, 1, 'architectes'),
(866, 1, '', '', 'Kronfol Badih ', '', '', '', 1, 1, 'architectes'),
(867, 1, '', '', 'Kudawoo Alain Koami  ', '', '', '', 1, 1, 'architectes'),
(868, 1, '', '', 'Kudawoo Alain Koami   ', '', '', '', 1, 1, 'architectes'),
(869, 1, '', '', 'L.G.P. Architectes ', '', '', '', 1, 1, 'architectes'),
(870, 1, '', '', 'L\'Atelier Dabos (SARL)   ', '', '', '', 1, 1, 'architectes'),
(871, 1, '', '', 'L\'atelier Sylvie MartinGarrin  ', '', '', '', 1, 1, 'architectes'),
(872, 1, '', '', 'L\'Atelier T  ', '', '', '', 1, 1, 'architectes'),
(873, 1, '', '', 'L\'Ollivier JeanMarie   ', '', '', '', 1, 1, 'architectes'),
(874, 1, '', '', 'Labarthe Valérie  ', '', '', '', 1, 1, 'architectes'),
(875, 1, '', '', 'Labérou JeanPierre ', '', '', '', 1, 1, 'architectes'),
(876, 1, '', '', 'Laborde Christophe  ', '', '', '', 1, 1, 'architectes'),
(877, 1, '', '', 'Laborde Pierre', '', '', '', 1, 1, 'architectes'),
(878, 1, '', '', 'Laborderie Philippe   ', '', '', '', 1, 1, 'architectes'),
(879, 1, '', '', 'Laborderie Taulier Architectes   ', '', '', '', 1, 1, 'architectes'),
(880, 1, '', '', 'Laborie Architectes  ', '', '', '', 1, 1, 'architectes'),
(881, 1, '', '', 'Laborie Architectes   ', '', '', '', 1, 1, 'architectes'),
(882, 1, '', '', 'Lacarce HenryBertrand  ', '', '', '', 1, 1, 'architectes'),
(883, 1, '', '', 'Lachaize   ', '', '', '', 1, 1, 'architectes'),
(884, 1, '', '', 'Lacombe Cédric   ', '', '', '', 1, 1, 'architectes'),
(885, 1, '', '', 'Lacombe Jacques  ', '', '', '', 1, 1, 'architectes'),
(886, 1, '', '', 'Lacombe Yvan ', '', '', '', 1, 1, 'architectes'),
(887, 1, '', '', 'Laconde Martine   ', '', '', '', 1, 1, 'architectes'),
(888, 1, '', '', 'Lacoste Eric ', '', '', '', 1, 1, 'architectes'),
(889, 1, '', '', 'Lacoste Pierre   ', '', '', '', 1, 1, 'architectes'),
(890, 1, '', '', 'Lacour JeanPierre', '', '', '', 1, 1, 'architectes'),
(891, 1, '', '', 'Lacroix Michel ', '', '', '', 1, 1, 'architectes'),
(892, 1, '', '', 'Lacroix Michel ', '', '', '', 1, 1, 'architectes'),
(893, 1, '', '', 'Lacroix Michel   ', '', '', '', 1, 1, 'architectes'),
(894, 1, '', '', 'Lafforgue Gilles  ', '', '', '', 1, 1, 'architectes'),
(895, 1, '', '', 'Lafon Pierre   ', '', '', '', 1, 1, 'architectes'),
(896, 1, '', '', 'Laforgue Gisèle   + détails ', '', '', '', 1, 1, 'architectes'),
(897, 1, '', '', 'Lagausie Véronique (De)   ', '', '', '', 1, 1, 'architectes'),
(898, 1, '', '', 'Laguens Bernard   ', '', '', '', 1, 1, 'architectes'),
(899, 1, '', '', 'Laguna Floréal   ', '', '', '', 1, 1, 'architectes'),
(900, 1, '', '', 'Lalanne Marc ', '', '', '', 1, 1, 'architectes'),
(901, 1, '', '', 'Lallemant Benoit', '', '', '', 1, 1, 'architectes'),
(902, 1, '', '', 'Lalucaa Christian ', '', '', '', 1, 1, 'architectes'),
(903, 1, '', '', 'Landes Philippe ', '', '', '', 1, 1, 'architectes'),
(904, 1, '', '', 'Landreaud Michel ', '', '', '', 1, 1, 'architectes'),
(905, 1, '', '', 'Langlois Frédéric ', '', '', '', 1, 1, 'architectes'),
(906, 1, '', '', 'Langlois Frédéric ', '', '', '', 1, 1, 'architectes'),
(907, 1, '', '', 'Lannoy Delphine  ', '', '', '', 1, 1, 'architectes'),
(908, 1, '', '', 'Larcade Fabienne   ', '', '', '', 1, 1, 'architectes'),
(909, 1, '', '', 'Larnaudie Architectes  ', '', '', '', 1, 1, 'architectes'),
(910, 1, '', '', 'Larraufie Christian  ', '', '', '', 1, 1, 'architectes'),
(911, 1, '', '', 'Larregola Célia', '', '', '', 1, 1, 'architectes'),
(912, 1, '', '', 'Larroque Eric   ', '', '', '', 1, 1, 'architectes'),
(913, 1, '', '', 'Larrouy Et Sicre (SCM)  ', '', '', '', 1, 1, 'architectes'),
(914, 1, '', '', 'Larrouy Gérard   ', '', '', '', 1, 1, 'architectes'),
(915, 1, '', '', 'Larrouy JeanPierre', '', '', '', 1, 1, 'architectes'),
(916, 1, '', '', 'Lasmolles JeanPierre ', '', '', '', 1, 1, 'architectes'),
(917, 1, '', '', 'Lasnier Roger   ', '', '', '', 1, 1, 'architectes'),
(918, 1, '', '', 'Lasserre Christian   ', '', '', '', 1, 1, 'architectes'),
(919, 1, '', '', 'Laubies Patricia   ', '', '', '', 1, 1, 'architectes'),
(920, 1, '', '', 'Laurence Frédéric   ', '', '', '', 1, 1, 'architectes'),
(921, 1, '', '', 'Laurence Reneault ', '', '', '', 1, 1, 'architectes'),
(922, 1, '', '', 'Laurent Renaud  ', '', '', '', 1, 1, 'architectes'),
(923, 1, '', '', 'Laurent Sicard Architecte', '', '', '', 1, 1, 'architectes'),
(924, 1, '', '', 'Laurichesse Nathalie   ', '', '', '', 1, 1, 'architectes'),
(925, 1, '', '', 'Lavail JeanPaul   ', '', '', '', 1, 1, 'architectes'),
(926, 1, '', '', 'Laverny Guillaume   ', '', '', '', 1, 1, 'architectes'),
(927, 1, '', '', 'Lavezzo Fédérica ', '', '', '', 1, 1, 'architectes'),
(928, 1, '', '', 'Lavezzo Federica  ', '', '', '', 1, 1, 'architectes'),
(929, 1, '', '', 'LB Home Style  ', '', '', '', 1, 1, 'architectes'),
(930, 1, '', '', 'LB Home Style  ', '', '', '', 1, 1, 'architectes'),
(931, 1, '', '', 'LCR Architectes  ', '', '', '', 1, 1, 'architectes'),
(932, 1, '', '', 'Le Pavillon Architectures ', '', '', '', 1, 1, 'architectes'),
(933, 1, '', '', 'Le Pavillon Architectures ', '', '', '', 1, 1, 'architectes'),
(934, 1, '', '', 'Le Pavillon Architectures   ', '', '', '', 1, 1, 'architectes'),
(935, 1, '', '', 'Le Pavillon Architectures   ', '', '', '', 1, 1, 'architectes'),
(936, 1, '', '', 'Lecole Didier  ', '', '', '', 1, 1, 'architectes'),
(937, 1, '', '', 'Lefevre Florence   ', '', '', '', 1, 1, 'architectes'),
(938, 1, '', '', 'Lefort Krystyna', '', '', '', 1, 1, 'architectes'),
(939, 1, '', '', 'Legrand JeanLouis  ', '', '', '', 1, 1, 'architectes'),
(940, 1, '', '', 'Leman Dominique   ', '', '', '', 1, 1, 'architectes'),
(941, 1, '', '', 'LemanskaBiron Catherine   ', '', '', '', 1, 1, 'architectes'),
(942, 1, '', '', 'Lemoine Denis  ', '', '', '', 1, 1, 'architectes'),
(943, 1, '', '', 'Les O les A', '', '', '', 1, 1, 'architectes'),
(944, 1, '', '', 'Les Souris en Ville   ', '', '', '', 1, 1, 'architectes'),
(945, 1, '', '', 'Letellier Axel   ', '', '', '', 1, 1, 'architectes'),
(946, 1, '', '', 'Levesque JeanMarc   ', '', '', '', 1, 1, 'architectes'),
(947, 1, '', '', 'Liarsou et Constant Architectes DPLG ', '', '', '', 1, 1, 'architectes'),
(948, 1, '', '', 'Liberman Jacques   ', '', '', '', 1, 1, 'architectes'),
(949, 1, '', '', 'Libert Annabel  ', '', '', '', 1, 1, 'architectes'),
(950, 1, '', '', 'Lieux Communs   ', '', '', '', 1, 1, 'architectes'),
(951, 1, '', '', 'Limbosch Denis ', '', '', '', 1, 1, 'architectes'),
(952, 1, '', '', 'Limozin Eric   ', '', '', '', 1, 1, 'architectes'),
(953, 1, '', '', 'Lissarague MarieMartine  ', '', '', '', 1, 1, 'architectes'),
(954, 1, '', '', 'Llop Thierry   ', '', '', '', 1, 1, 'architectes'),
(955, 1, '', '', 'Loeillet Jacques  ', '', '', '', 1, 1, 'architectes'),
(956, 1, '', '', 'Loisele Marc   ', '', '', '', 1, 1, 'architectes'),
(957, 1, '', '', 'Lopez Alain', '', '', '', 1, 1, 'architectes'),
(958, 1, '', '', 'Lopez Alain   ', '', '', '', 1, 1, 'architectes'),
(959, 1, '', '', 'Louchard Patricia  ', '', '', '', 1, 1, 'architectes'),
(960, 1, '', '', 'Loupiac Philippe   ', '', '', '', 1, 1, 'architectes'),
(961, 1, '', '', 'LoupiacRoux Nicole ', '', '', '', 1, 1, 'architectes'),
(962, 1, '', '', 'Lubes (SARL)   ', '', '', '', 1, 1, 'architectes'),
(963, 1, '', '', 'Lucas Bruno ', '', '', '', 1, 1, 'architectes'),
(964, 1, '', '', 'Lucas Bruno   ', '', '', '', 1, 1, 'architectes'),
(965, 1, '', '', 'Lugan Boris', '', '', '', 1, 1, 'architectes'),
(966, 1, '', '', 'Lugol Virginie ', '', '', '', 1, 1, 'architectes'),
(967, 1, '', '', 'M et S Architectes ', '', '', '', 1, 1, 'architectes'),
(968, 1, '', '', 'M J Pilott ', '', '', '', 1, 1, 'architectes'),
(969, 1, '', '', 'M. Yvan Ferreol   ', '', '', '', 1, 1, 'architectes'),
(970, 1, '', '', 'M.D Architecture   ', '', '', '', 1, 1, 'architectes'),
(971, 1, '', '', 'M.G.S   ', '', '', '', 1, 1, 'architectes'),
(972, 1, '', '', 'Ma Cabane Atelier  ', '', '', '', 1, 1, 'architectes'),
(973, 1, '', '', 'Maclou Madjid   ', '', '', '', 1, 1, 'architectes'),
(974, 1, '', '', 'Mad', '', '', '', 1, 1, 'architectes'),
(975, 1, '', '', 'Mad (SARL)   ', '', '', '', 1, 1, 'architectes'),
(976, 1, '', '', 'Madaule Chantal   ', '', '', '', 1, 1, 'architectes'),
(977, 1, '', '', 'Maillet Pascal   ', '', '', '', 1, 1, 'architectes'),
(978, 1, '', '', 'Maindive Stéphane  ', '', '', '', 1, 1, 'architectes'),
(979, 1, '', '', 'Maisonabe   ', '', '', '', 1, 1, 'architectes'),
(980, 1, '', '', 'Majoreill Pierre   ', '', '', '', 1, 1, 'architectes'),
(981, 1, '', '', 'Majorelle Facilities  ', '', '', '', 1, 1, 'architectes'),
(982, 1, '', '', 'Male Bernard   ', '', '', '', 1, 1, 'architectes'),
(983, 1, '', '', 'Malvy Benoit ', '', '', '', 1, 1, 'architectes'),
(984, 1, '', '', 'Malvy Benoit   ', '', '', '', 1, 1, 'architectes'),
(985, 1, '', '', 'Manenc Sandra   ', '', '', '', 1, 1, 'architectes'),
(986, 1, '', '', 'Manente JeanLuc   ', '', '', '', 1, 1, 'architectes'),
(987, 1, '', '', 'Mangeard André  ', '', '', '', 1, 1, 'architectes'),
(988, 1, '', '', 'Marassé Pierre   ', '', '', '', 1, 1, 'architectes'),
(989, 1, '', '', 'Marausse Jack ', '', '', '', 1, 1, 'architectes'),
(990, 1, '', '', 'Marc Laurens Pierre Loustau  ', '', '', '', 1, 1, 'architectes'),
(991, 1, '', '', 'Marcato Bruno   ', '', '', '', 1, 1, 'architectes'),
(992, 1, '', '', 'Marcillac Guy', '', '', '', 1, 1, 'architectes'),
(993, 1, '', '', 'Marien de Hoym Gabriel (De) ', '', '', '', 1, 1, 'architectes'),
(994, 1, '', '', 'Marion JeanFrançois   ', '', '', '', 1, 1, 'architectes'),
(995, 1, '', '', 'Marion Xavier  ', '', '', '', 1, 1, 'architectes'),
(996, 1, '', '', 'MARONESE   ', '', '', '', 1, 1, 'architectes'),
(997, 1, '', '', 'Maronèse Guy  ', '', '', '', 1, 1, 'architectes'),
(998, 1, '', '', 'Maronese Guy   ', '', '', '', 1, 1, 'architectes'),
(999, 1, '', '', 'Marre Gérard ', '', '', '', 1, 1, 'architectes'),
(1000, 1, '', '', 'MarsaaPoey Augustin   ', '', '', '', 1, 1, 'architectes'),
(1001, 1, '', '', 'Marti Gérard ', '', '', '', 1, 1, 'architectes'),
(1002, 1, '', '', 'MARTI RAKOTO ARCHITECTURE   ', '', '', '', 1, 1, 'architectes'),
(1003, 1, '', '', 'Martin JeanCharles   ', '', '', '', 1, 1, 'architectes'),
(1004, 1, '', '', 'Martinel Benoit  ', '', '', '', 1, 1, 'architectes'),
(1005, 1, '', '', 'Martinez Franck ', '', '', '', 1, 1, 'architectes'),
(1006, 1, '', '', 'Martinez Franck   ', '', '', '', 1, 1, 'architectes'),
(1007, 1, '', '', 'Martinez Jézabel   ', '', '', '', 1, 1, 'architectes'),
(1008, 1, '', '', 'Martinez Marino   ', '', '', '', 1, 1, 'architectes'),
(1009, 1, '', '', 'Martinie (SCP)   ', '', '', '', 1, 1, 'architectes'),
(1010, 1, '', '', 'Marty Alain   ', '', '', '', 1, 1, 'architectes'),
(1011, 1, '', '', 'Marty Didier', '', '', '', 1, 1, 'architectes'),
(1012, 1, '', '', 'Marty Didier ', '', '', '', 1, 1, 'architectes'),
(1013, 1, '', '', 'Marty JeanClaude ', '', '', '', 1, 1, 'architectes'),
(1014, 1, '', '', 'Marty JeanClaude  ', '', '', '', 1, 1, 'architectes'),
(1015, 1, '', '', 'Marzianinunez Isabelle ', '', '', '', 1, 1, 'architectes'),
(1016, 1, '', '', 'Mateu Stéphan', '', '', '', 1, 1, 'architectes'),
(1017, 1, '', '', 'Mattiuzzo Franck  ', '', '', '', 1, 1, 'architectes'),
(1018, 1, '', '', 'Maurel Magali   ', '', '', '', 1, 1, 'architectes'),
(1019, 1, '', '', 'Maury Alain', '', '', '', 1, 1, 'architectes'),
(1020, 1, '', '', 'Maviel JeanPierre   ', '', '', '', 1, 1, 'architectes'),
(1021, 1, '', '', 'Maynard Serge   ', '', '', '', 1, 1, 'architectes'),
(1022, 1, '', '', 'Mazet Yves ', '', '', '', 1, 1, 'architectes'),
(1023, 1, '', '', 'Mazet Yves  ', '', '', '', 1, 1, 'architectes'),
(1024, 1, '', '', 'Mazet Yves   ', '', '', '', 1, 1, 'architectes'),
(1025, 1, '', '', 'MB Concept  ', '', '', '', 1, 1, 'architectes'),
(1026, 1, '', '', 'Mechain Alain ', '', '', '', 1, 1, 'architectes'),
(1027, 1, '', '', 'Medelsi Djezzar Leila   ', '', '', '', 1, 1, 'architectes'),
(1028, 1, '', '', 'Meilleurat Brice  ', '', '', '', 1, 1, 'architectes'),
(1029, 1, '', '', 'Mendez Matthieu  ', '', '', '', 1, 1, 'architectes'),
(1030, 1, '', '', 'Merhi Emile  ', '', '', '', 1, 1, 'architectes'),
(1031, 1, '', '', 'Mérillou Thierry   ', '', '', '', 1, 1, 'architectes'),
(1032, 1, '', '', 'Merz Pascal  ', '', '', '', 1, 1, 'architectes'),
(1033, 1, '', '', 'Meunier Roger ', '', '', '', 1, 1, 'architectes'),
(1034, 1, '', '', 'Meunier Roger   ', '', '', '', 1, 1, 'architectes'),
(1035, 1, '', '', 'Mevel Franck ', '', '', '', 1, 1, 'architectes'),
(1036, 1, '', '', 'Meyers PierreJean   ', '', '', '', 1, 1, 'architectes'),
(1037, 1, '', '', 'Michel Estève Et Claude Alos Moreno   ', '', '', '', 1, 1, 'architectes'),
(1038, 1, '', '', 'MichelCaillet Hélène ', '', '', '', 1, 1, 'architectes'),
(1039, 1, '', '', 'Michot Gilles ', '', '', '', 1, 1, 'architectes'),
(1040, 1, '', '', 'Milani Richard  ', '', '', '', 1, 1, 'architectes'),
(1041, 1, '', '', 'Milleville Jean  ', '', '', '', 1, 1, 'architectes'),
(1042, 1, '', '', 'Mirobolant Boris  ', '', '', '', 1, 1, 'architectes'),
(1043, 1, '', '', 'Miroiterie Orazio   ', '', '', '', 1, 1, 'architectes'),
(1044, 1, '', '', 'Mirouze Yves   ', '', '', '', 1, 1, 'architectes'),
(1045, 1, '', '', 'Mis Stéphane   ', '', '', '', 1, 1, 'architectes'),
(1046, 1, '', '', 'MolinierBrouard (SCP)   ', '', '', '', 1, 1, 'architectes'),
(1047, 1, '', '', 'Moly Patrick   ', '', '', '', 1, 1, 'architectes'),
(1048, 1, '', '', 'Mondine Anne  ', '', '', '', 1, 1, 'architectes'),
(1049, 1, '', '', 'Monferran Carpentier   ', '', '', '', 1, 1, 'architectes'),
(1050, 1, '', '', 'Monferrancarpentier Stéphanie   ', '', '', '', 1, 1, 'architectes'),
(1051, 1, '', '', 'Monier Christophe   ', '', '', '', 1, 1, 'architectes'),
(1052, 1, '', '', 'Monill Nicolas   ', '', '', '', 1, 1, 'architectes'),
(1053, 1, '', '', 'Montal Michel   ', '', '', '', 1, 1, 'architectes'),
(1054, 1, '', '', 'Montamat Myriam ', '', '', '', 1, 1, 'architectes'),
(1055, 1, '', '', 'Montarnal Hervé ', '', '', '', 1, 1, 'architectes'),
(1056, 1, '', '', 'Montels Etilé MarieReine ', '', '', '', 1, 1, 'architectes'),
(1057, 1, '', '', 'Montlaur Bellouard  ', '', '', '', 1, 1, 'architectes'),
(1058, 1, '', '', 'Montoriol Valérie   ', '', '', '', 1, 1, 'architectes'),
(1059, 1, '', '', 'Morand Eric ', '', '', '', 1, 1, 'architectes'),
(1060, 1, '', '', 'Morice Daniel  ', '', '', '', 1, 1, 'architectes'),
(1061, 1, '', '', 'Morinière Associés Architecture Intérieure (Sarl)   ', '', '', '', 1, 1, 'architectes'),
(1062, 1, '', '', 'Moro AlainBernard ', '', '', '', 1, 1, 'architectes'),
(1063, 1, '', '', 'Moroni Marina   ', '', '', '', 1, 1, 'architectes'),
(1064, 1, '', '', 'Moschetto Fabrice   ', '', '', '', 1, 1, 'architectes'),
(1065, 1, '', '', 'Mosse Souilhac (SARL)   ', '', '', '', 1, 1, 'architectes'),
(1066, 1, '', '', 'Mougel Lazare  ', '', '', '', 1, 1, 'architectes'),
(1067, 1, '', '', 'Moulis Marc  ', '', '', '', 1, 1, 'architectes'),
(1068, 1, '', '', 'Mouneyrac Christine  ', '', '', '', 1, 1, 'architectes'),
(1069, 1, '', '', 'Mourareau Didier   ', '', '', '', 1, 1, 'architectes'),
(1070, 1, '', '', 'Mousseigne Patrick   ', '', '', '', 1, 1, 'architectes'),
(1071, 1, '', '', 'Moutet Patrick   ', '', '', '', 1, 1, 'architectes'),
(1072, 1, '', '', 'Mouyssac Esnault Karine   ', '', '', '', 1, 1, 'architectes'),
(1073, 1, '', '', 'Mp Marie Presani ', '', '', '', 1, 1, 'architectes'),
(1074, 1, '', '', 'MTI Concept   ', '', '', '', 1, 1, 'architectes'),
(1075, 1, '', '', 'Muller Feuga Paul  ', '', '', '', 1, 1, 'architectes'),
(1076, 1, '', '', 'Munier Hélène  ', '', '', '', 1, 1, 'architectes'),
(1077, 1, '', '', 'Munoz Marynelva   ', '', '', '', 1, 1, 'architectes'),
(1078, 1, '', '', 'Munoz Marynelva   ', '', '', '', 1, 1, 'architectes'),
(1079, 1, '', '', 'Munoz Numen Cedric  ', '', '', '', 1, 1, 'architectes'),
(1080, 1, '', '', 'Murillo François ', '', '', '', 1, 1, 'architectes'),
(1081, 1, '', '', 'Murzeau Renaud ', '', '', '', 1, 1, 'architectes'),
(1082, 1, '', '', 'Mussato Xavière  ', '', '', '', 1, 1, 'architectes'),
(1083, 1, '', '', 'Mussato Xavière   ', '', '', '', 1, 1, 'architectes'),
(1084, 1, '', '', 'My Architectes Souvironlacombe   ', '', '', '', 1, 1, 'architectes'),
(1085, 1, '', '', 'Naude David   ', '', '', '', 1, 1, 'architectes'),
(1086, 1, '', '', 'Navarro Julio ', '', '', '', 1, 1, 'architectes'),
(1087, 1, '', '', 'Navarro Julio   ', '', '', '', 1, 1, 'architectes'),
(1088, 1, '', '', 'Navarro Julio   ', '', '', '', 1, 1, 'architectes'),
(1089, 1, '', '', 'Nebula JP Leblanc architecte DPLG   ', '', '', '', 1, 1, 'architectes'),
(1090, 1, '', '', 'Nelson Ugo   ', '', '', '', 1, 1, 'architectes'),
(1091, 1, '', '', 'Nelson Ugo   ', '', '', '', 1, 1, 'architectes'),
(1092, 1, '', '', 'Neples Pierre   ', '', '', '', 1, 1, 'architectes'),
(1093, 1, '', '', 'NESN\'co Architecture', '', '', '', 1, 1, 'architectes'),
(1094, 1, '', '', 'NewConcept  ', '', '', '', 1, 1, 'architectes'),
(1095, 1, '', '', 'Nicot Julien', '', '', '', 1, 1, 'architectes'),
(1096, 1, '', '', 'NJ Archi   ', '', '', '', 1, 1, 'architectes'),
(1097, 1, '', '', 'Noailles Valérie ', '', '', '', 1, 1, 'architectes'),
(1098, 1, '', '', 'Norbert Brail  ', '', '', '', 1, 1, 'architectes'),
(1099, 1, '', '', 'Nouvel Sophie  ', '', '', '', 1, 1, 'architectes'),
(1100, 1, '', '', 'Nunzi Catherine   ', '', '', '', 1, 1, 'architectes'),
(1101, 1, '', '', 'Nuttens Sébastien   ', '', '', '', 1, 1, 'architectes'),
(1102, 1, '', '', 'Occhipinti Sauveur   ', '', '', '', 1, 1, 'architectes'),
(1103, 1, '', '', 'OeCO Architectes   ', '', '', '', 1, 1, 'architectes'),
(1104, 1, '', '', 'Olivan Maria  ', '', '', '', 1, 1, 'architectes'),
(1105, 1, '', '', 'Olivet Eve et Faillie Bertrand (SCP)  ', '', '', '', 1, 1, 'architectes'),
(1106, 1, '', '', 'Ordonneaud Francis  ', '', '', '', 1, 1, 'architectes'),
(1107, 1, '', '', 'Ordonneaud Francis   ', '', '', '', 1, 1, 'architectes'),
(1108, 1, '', '', 'Ordre des Architectes   ', '', '', '', 1, 1, 'architectes'),
(1109, 1, '', '', 'Orliac Michelle   ', '', '', '', 1, 1, 'architectes'),
(1110, 1, '', '', 'Orru Thierry ', '', '', '', 1, 1, 'architectes'),
(1111, 1, '', '', 'Ostermeyer Christophe  ', '', '', '', 1, 1, 'architectes'),
(1112, 1, '', '', 'Ouvrieux Yann   ', '', '', '', 1, 1, 'architectes'),
(1113, 1, '', '', 'Ovinet Pierre   ', '', '', '', 1, 1, 'architectes'),
(1114, 1, '', '', 'Page Dominique   ', '', '', '', 1, 1, 'architectes'),
(1115, 1, '', '', 'Pagès Christian   ', '', '', '', 1, 1, 'architectes'),
(1116, 1, '', '', 'Pagès Christian   ', '', '', '', 1, 1, 'architectes'),
(1117, 1, '', '', 'Pagnoux JeanPaul  ', '', '', '', 1, 1, 'architectes'),
(1118, 1, '', '', 'Pailhes Matthieu  ', '', '', '', 1, 1, 'architectes'),
(1119, 1, '', '', 'Paintandre Bernard ', '', '', '', 1, 1, 'architectes'),
(1120, 1, '', '', 'Painvin Jean   ', '', '', '', 1, 1, 'architectes'),
(1121, 1, '', '', 'Palauqui GuyDominique   ', '', '', '', 1, 1, 'architectes'),
(1122, 1, '', '', 'Palé Stéphane   ', '', '', '', 1, 1, 'architectes'),
(1123, 1, '', '', 'Pallares Laurent (et Cindy)   ', '', '', '', 1, 1, 'architectes'),
(1124, 1, '', '', 'PamiesLacuve Hélène   ', '', '', '', 1, 1, 'architectes'),
(1125, 1, '', '', 'Pascale Eric ', '', '', '', 1, 1, 'architectes'),
(1126, 1, '', '', 'Pascale Eric ', '', '', '', 1, 1, 'architectes'),
(1127, 1, '', '', 'Pastier Bernard   ', '', '', '', 1, 1, 'architectes'),
(1128, 1, '', '', 'Patrick Montagne (SARL) ', '', '', '', 1, 1, 'architectes'),
(1129, 1, '', '', 'Payraudeau Julien ', '', '', '', 1, 1, 'architectes'),
(1130, 1, '', '', 'Péclose Alain  ', '', '', '', 1, 1, 'architectes'),
(1131, 1, '', '', 'Péclose Alain   ', '', '', '', 1, 1, 'architectes'),
(1132, 1, '', '', 'Pédra Gilbert  ', '', '', '', 1, 1, 'architectes'),
(1133, 1, '', '', 'Pedurthe Joël  ', '', '', '', 1, 1, 'architectes'),
(1134, 1, '', '', 'Pedurthe Joël  ', '', '', '', 1, 1, 'architectes'),
(1135, 1, '', '', 'Pegotogier JeanJacques   ', '', '', '', 1, 1, 'architectes'),
(1136, 1, '', '', 'Pelous Christophe (Eurl)   ', '', '', '', 1, 1, 'architectes'),
(1137, 1, '', '', 'Peral Christian   ', '', '', '', 1, 1, 'architectes'),
(1138, 1, '', '', 'Pérès Emmanuel   ', '', '', '', 1, 1, 'architectes'),
(1139, 1, '', '', 'Peretto Sylvain   ', '', '', '', 1, 1, 'architectes'),
(1140, 1, '', '', 'Périé JeanClaude   ', '', '', '', 1, 1, 'architectes'),
(1141, 1, '', '', 'Périgueux Patrick   ', '', '', '', 1, 1, 'architectes'),
(1142, 1, '', '', 'Périn Claude   ', '', '', '', 1, 1, 'architectes'),
(1143, 1, '', '', 'Peron Michel ', '', '', '', 1, 1, 'architectes'),
(1144, 1, '', '', 'Perrin Camille   ', '', '', '', 1, 1, 'architectes'),
(1145, 1, '', '', 'Pesqué Claude ', '', '', '', 1, 1, 'architectes'),
(1146, 1, '', '', 'Pessant Fabien  ', '', '', '', 1, 1, 'architectes'),
(1147, 1, '', '', 'Pettenati Philippe ', '', '', '', 1, 1, 'architectes'),
(1148, 1, '', '', 'Pezet François ', '', '', '', 1, 1, 'architectes'),
(1149, 1, '', '', 'Pezet François  ', '', '', '', 1, 1, 'architectes'),
(1150, 1, '', '', 'Phaarchitecture', '', '', '', 1, 1, 'architectes'),
(1151, 1, '', '', 'Philippe Gambino ', '', '', '', 1, 1, 'architectes'),
(1152, 1, '', '', 'Philippe Henri ', '', '', '', 1, 1, 'architectes'),
(1153, 1, '', '', 'Philippe Lamarque Architecture ', '', '', '', 1, 1, 'architectes'),
(1154, 1, '', '', 'PHILIPPE PREVOT ARCHITECTE (SARL)   ', '', '', '', 1, 1, 'architectes'),
(1155, 1, '', '', 'Phu Clairie   ', '', '', '', 1, 1, 'architectes'),
(1156, 1, '', '', 'Phu Clairie   ', '', '', '', 1, 1, 'architectes'),
(1157, 1, '', '', 'Pierrard Sébastien', '', '', '', 1, 1, 'architectes'),
(1158, 1, '', '', 'Pierre Calmels Architecture  ', '', '', '', 1, 1, 'architectes'),
(1159, 1, '', '', 'Pierre Sarres Création ', '', '', '', 1, 1, 'architectes'),
(1160, 1, '', '', 'Pierre Sarrès Création   ', '', '', '', 1, 1, 'architectes'),
(1161, 1, '', '', 'Pierre Yves Chaumont ', '', '', '', 1, 1, 'architectes'),
(1162, 1, '', '', 'Pigment Design   ', '', '', '', 1, 1, 'architectes'),
(1163, 1, '', '', 'Pinel Roland  ', '', '', '', 1, 1, 'architectes'),
(1164, 1, '', '', 'Pinel Roland  ', '', '', '', 1, 1, 'architectes'),
(1165, 1, '', '', 'Pinon Xavier   ', '', '', '', 1, 1, 'architectes'),
(1166, 1, '', '', 'Piquemal Claire   ', '', '', '', 1, 1, 'architectes'),
(1167, 1, '', '', 'Pirot Marie  ', '', '', '', 1, 1, 'architectes'),
(1168, 1, '', '', 'Pisciotta Guy  ', '', '', '', 1, 1, 'architectes'),
(1169, 1, '', '', 'Pivotto Albert   ', '', '', '', 1, 1, 'architectes'),
(1170, 1, '', '', 'POCHET LETITIA   ', '', '', '', 1, 1, 'architectes'),
(1171, 1, '', '', 'Poggiali Mario  ', '', '', '', 1, 1, 'architectes'),
(1172, 1, '', '', 'Point Mire   ', '', '', '', 1, 1, 'architectes'),
(1173, 1, '', '', 'Poirierbrou Isabelle ', '', '', '', 1, 1, 'architectes'),
(1174, 1, '', '', 'Ponchet Daniel  ', '', '', '', 1, 1, 'architectes'),
(1175, 1, '', '', 'Ponchet Daniel   ', '', '', '', 1, 1, 'architectes'),
(1176, 1, '', '', 'Pont Roland   ', '', '', '', 1, 1, 'architectes'),
(1177, 1, '', '', 'Popov Boris  ', '', '', '', 1, 1, 'architectes'),
(1178, 1, '', '', 'Portetrauque Julie', '', '', '', 1, 1, 'architectes'),
(1179, 1, '', '', 'Portetrauque Julie   ', '', '', '', 1, 1, 'architectes'),
(1180, 1, '', '', 'Poublan Dominique  ', '', '', '', 1, 1, 'architectes'),
(1181, 1, '', '', 'Pouget Agnès   ', '', '', '', 1, 1, 'architectes'),
(1182, 1, '', '', 'Poumeyrol Patrick   ', '', '', '', 1, 1, 'architectes'),
(1183, 1, '', '', 'Poux François  ', '', '', '', 1, 1, 'architectes'),
(1184, 1, '', '', 'PR Architecture   ', '', '', '', 1, 1, 'architectes'),
(1185, 1, '', '', 'Pradal Maurice', '', '', '', 1, 1, 'architectes'),
(1186, 1, '', '', 'Pratviel Alain ', '', '', '', 1, 1, 'architectes'),
(1187, 1, '', '', 'Prax Architectes ', '', '', '', 1, 1, 'architectes'),
(1188, 1, '', '', 'Projet 310   ', '', '', '', 1, 1, 'architectes'),
(1189, 1, '', '', 'Pronaos   ', '', '', '', 1, 1, 'architectes'),
(1190, 1, '', '', 'Prunet JeanNoël   ', '', '', '', 1, 1, 'architectes'),
(1191, 1, '', '', 'Puech François   ', '', '', '', 1, 1, 'architectes'),
(1192, 1, '', '', 'Puech Michel  ', '', '', '', 1, 1, 'architectes'),
(1193, 1, '', '', 'Puech René ', '', '', '', 1, 1, 'architectes'),
(1194, 1, '', '', 'Puertolas Alain  ', '', '', '', 1, 1, 'architectes'),
(1195, 1, '', '', 'PuigPujol Architectures', '', '', '', 1, 1, 'architectes'),
(1196, 1, '', '', 'Pujol Dominique', '', '', '', 1, 1, 'architectes'),
(1197, 1, '', '', 'Puyo JeanYves', '', '', '', 1, 1, 'architectes'),
(1198, 1, '', '', 'Puyol Anne  ', '', '', '', 1, 1, 'architectes'),
(1199, 1, '', '', 'Puyol Anne   ', '', '', '', 1, 1, 'architectes'),
(1200, 1, '', '', 'Quadripil (SARL) ', '', '', '', 1, 1, 'architectes'),
(1201, 1, '', '', 'Rabisse André ', '', '', '', 1, 1, 'architectes'),
(1202, 1, '', '', 'Rabisse André   ', '', '', '', 1, 1, 'architectes'),
(1203, 1, '', '', 'Raluy Louis et Alexandra   ', '', '', '', 1, 1, 'architectes'),
(1204, 1, '', '', 'Ramadour Robert   ', '', '', '', 1, 1, 'architectes'),
(1205, 1, '', '', 'Rames JeanLuc', '', '', '', 1, 1, 'architectes'),
(1206, 1, '', '', 'Rames JeanLuc   ', '', '', '', 1, 1, 'architectes'),
(1207, 1, '', '', 'Ramon Cécile  ', '', '', '', 1, 1, 'architectes'),
(1208, 1, '', '', 'Raspaud JeanFrançois  ', '', '', '', 1, 1, 'architectes'),
(1209, 1, '', '', 'Ravaux Fabien ', '', '', '', 1, 1, 'architectes'),
(1210, 1, '', '', 'Ravaux Fabien ', '', '', '', 1, 1, 'architectes'),
(1211, 1, '', '', 'Ravaux Fabien   ', '', '', '', 1, 1, 'architectes'),
(1212, 1, '', '', 'Ravel Xavier  ', '', '', '', 1, 1, 'architectes'),
(1213, 1, '', '', 'Ravelojaona Vololona', '', '', '', 1, 1, 'architectes'),
(1214, 1, '', '', 'Ravoavison William Architecte ', '', '', '', 1, 1, 'architectes'),
(1215, 1, '', '', 'Rawnsley Sean   ', '', '', '', 1, 1, 'architectes'),
(1216, 1, '', '', 'Raymond Marc ', '', '', '', 1, 1, 'architectes'),
(1217, 1, '', '', 'Raymond Marc  ', '', '', '', 1, 1, 'architectes'),
(1218, 1, '', '', 'Raynal Claude ', '', '', '', 1, 1, 'architectes'),
(1219, 1, '', '', 'REBIERE JEAN LOUIS   ', '', '', '', 1, 1, 'architectes'),
(1220, 1, '', '', 'Rechatin David', '', '', '', 1, 1, 'architectes'),
(1221, 1, '', '', 'Recoules Amélie ', '', '', '', 1, 1, 'architectes'),
(1222, 1, '', '', 'Redon Pascale (De)   ', '', '', '', 1, 1, 'architectes'),
(1223, 1, '', '', 'Rella Pierre   ', '', '', '', 1, 1, 'architectes'),
(1224, 1, '', '', 'Renuy Didier  ', '', '', '', 1, 1, 'architectes'),
(1225, 1, '', '', 'Rey Jérome ', '', '', '', 1, 1, 'architectes'),
(1226, 1, '', '', 'Reymond Nathalie  ', '', '', '', 1, 1, 'architectes'),
(1227, 1, '', '', 'Richard Alain   ', '', '', '', 1, 1, 'architectes'),
(1228, 1, '', '', 'Richardson Georges ', '', '', '', 1, 1, 'architectes'),
(1229, 1, '', '', 'Richardson Georges   ', '', '', '', 1, 1, 'architectes'),
(1230, 1, '', '', 'Riera Frédérique   ', '', '', '', 1, 1, 'architectes'),
(1231, 1, '', '', 'Rieudebat Guy', '', '', '', 1, 1, 'architectes'),
(1232, 1, '', '', 'Rigal Henriette ', '', '', '', 1, 1, 'architectes'),
(1233, 1, '', '', 'Rigoux Claude  ', '', '', '', 1, 1, 'architectes'),
(1234, 1, '', '', 'Rigual Alain  ', '', '', '', 1, 1, 'architectes'),
(1235, 1, '', '', 'Rinaldi Jérémy ', '', '', '', 1, 1, 'architectes'),
(1236, 1, '', '', 'Rinkel Jean  ', '', '', '', 1, 1, 'architectes'),
(1237, 1, '', '', 'Rivel JeanPhilippe', '', '', '', 1, 1, 'architectes'),
(1238, 1, '', '', 'Rives YvanJean', '', '', '', 1, 1, 'architectes'),
(1239, 1, '', '', 'Robert Christophe   ', '', '', '', 1, 1, 'architectes'),
(1240, 1, '', '', 'Robert Philippe et Robert Christophe ', '', '', '', 1, 1, 'architectes'),
(1241, 1, '', '', 'Robin Frédéric  ', '', '', '', 1, 1, 'architectes'),
(1242, 1, '', '', 'Robin Frédérique   ', '', '', '', 1, 1, 'architectes'),
(1243, 1, '', '', 'Robin Romuald (architecte D.P.L.G.)  ', '', '', '', 1, 1, 'architectes'),
(1244, 1, '', '', 'Roche Nicolas  ', '', '', '', 1, 1, 'architectes'),
(1245, 1, '', '', 'Rocheteau Adeline', '', '', '', 1, 1, 'architectes'),
(1246, 1, '', '', 'Rocheteau Adéline   ', '', '', '', 1, 1, 'architectes'),
(1247, 1, '', '', 'Rodrigo Louis  ', '', '', '', 1, 1, 'architectes'),
(1248, 1, '', '', 'RODRIGUEZ   ', '', '', '', 1, 1, 'architectes'),
(1249, 1, '', '', 'Rodriguez Arquitectura', '', '', '', 1, 1, 'architectes'),
(1250, 1, '', '', 'Rogiers Stef', '', '', '', 1, 1, 'architectes'),
(1251, 1, '', '', 'Romeu Gilbert ', '', '', '', 1, 1, 'architectes'),
(1252, 1, '', '', 'Roques Laurence  ', '', '', '', 1, 1, 'architectes'),
(1253, 1, '', '', 'Rosales Pascal  ', '', '', '', 1, 1, 'architectes'),
(1254, 1, '', '', 'Rouch Henri   ', '', '', '', 1, 1, 'architectes'),
(1255, 1, '', '', 'Rouède Pierre  ', '', '', '', 1, 1, 'architectes'),
(1256, 1, '', '', 'Rougé David  ', '', '', '', 1, 1, 'architectes'),
(1257, 1, '', '', 'Rouillard Tony   ', '', '', '', 1, 1, 'architectes'),
(1258, 1, '', '', 'Rouillon Yann   ', '', '', '', 1, 1, 'architectes'),
(1259, 1, '', '', 'Rouquette Vidal  ', '', '', '', 1, 1, 'architectes'),
(1260, 1, '', '', 'Roussel Christelle   ', '', '', '', 1, 1, 'architectes'),
(1261, 1, '', '', 'Rousselet Yvan  ', '', '', '', 1, 1, 'architectes'),
(1262, 1, '', '', 'Routurier Pierre   ', '', '', '', 1, 1, 'architectes'),
(1263, 1, '', '', 'Rouyard Isabelle   ', '', '', '', 1, 1, 'architectes'),
(1264, 1, '', '', 'Rovira JeanLouis   ', '', '', '', 1, 1, 'architectes'),
(1265, 1, '', '', 'Rozier Ginisty (SCP)   ', '', '', '', 1, 1, 'architectes'),
(1266, 1, '', '', 'Rozier JeanJacques  ', '', '', '', 1, 1, 'architectes'),
(1267, 1, '', '', 'Ruaudel Marc   ', '', '', '', 1, 1, 'architectes'),
(1268, 1, '', '', 'Ruffat André', '', '', '', 1, 1, 'architectes'),
(1269, 1, '', '', 'Rupp David    ', '', '', '', 1, 1, 'architectes'),
(1270, 1, '', '', 'Ryckwaert (SELARL) ', '', '', '', 1, 1, 'architectes'),
(1271, 1, '', '', 'Sabarich Bonay Sophie ', '', '', '', 1, 1, 'architectes'),
(1272, 1, '', '', 'Sabarich Bonay Sophie  ', '', '', '', 1, 1, 'architectes'),
(1273, 1, '', '', 'Sabarthes Anick ', '', '', '', 1, 1, 'architectes'),
(1274, 1, '', '', 'Sabata Pierre ', '', '', '', 1, 1, 'architectes'),
(1275, 1, '', '', 'Sabathier Guillaume ', '', '', '', 1, 1, 'architectes'),
(1276, 1, '', '', 'Sabatié et Philippe  ', '', '', '', 1, 1, 'architectes'),
(1277, 1, '', '', 'Sabatié Rosanna  ', '', '', '', 1, 1, 'architectes'),
(1278, 1, '', '', 'Sabatier Guy Et JeanPascal (SCP d\'architectes)  ', '', '', '', 1, 1, 'architectes'),
(1279, 1, '', '', 'Sacre JeanFrançois  ', '', '', '', 1, 1, 'architectes'),
(1280, 1, '', '', 'Sage Laurent ', '', '', '', 1, 1, 'architectes'),
(1281, 1, '', '', 'Sagné Serge ', '', '', '', 1, 1, 'architectes'),
(1282, 1, '', '', 'Sagnes  ', '', '', '', 1, 1, 'architectes'),
(1283, 1, '', '', 'Sagot Pierre   ', '', '', '', 1, 1, 'architectes'),
(1284, 1, '', '', 'Sahel Mohamed  ', '', '', '', 1, 1, 'architectes'),
(1285, 1, '', '', 'Saint Laurent   ', '', '', '', 1, 1, 'architectes'),
(1286, 1, '', '', 'Saint Martin JeanBernard ', '', '', '', 1, 1, 'architectes'),
(1287, 1, '', '', 'Saint Martin MarcEurl D\'Architecture', '', '', '', 1, 1, 'architectes'),
(1288, 1, '', '', 'Salambehere Cécile   ', '', '', '', 1, 1, 'architectes'),
(1289, 1, '', '', 'Salem Roger  ', '', '', '', 1, 1, 'architectes'),
(1290, 1, '', '', 'Salem Roger  ', '', '', '', 1, 1, 'architectes'),
(1291, 1, '', '', 'Sallée Marie ', '', '', '', 1, 1, 'architectes'),
(1292, 1, '', '', 'Salomon Bernard   ', '', '', '', 1, 1, 'architectes'),
(1293, 1, '', '', 'Salvat Jean  ', '', '', '', 1, 1, 'architectes'),
(1294, 1, '', '', 'Sancerry JeanLouis ', '', '', '', 1, 1, 'architectes'),
(1295, 1, '', '', 'Sancerry Patrick   ', '', '', '', 1, 1, 'architectes'),
(1296, 1, '', '', 'Sanchez Olivier ', '', '', '', 1, 1, 'architectes'),
(1297, 1, '', '', 'SARL...Architectes   ', '', '', '', 1, 1, 'architectes'),
(1298, 1, '', '', 'Sarracanie JeanPaul', '', '', '', 1, 1, 'architectes'),
(1299, 1, '', '', 'Sarracanie JeanPaul et Péclose Alain (SCM) ', '', '', '', 1, 1, 'architectes'),
(1300, 1, '', '', 'Sartre Marion   ', '', '', '', 1, 1, 'architectes'),
(1301, 1, '', '', 'Sartre Michel   ', '', '', '', 1, 1, 'architectes'),
(1302, 1, '', '', 'Sassus Anne   ', '', '', '', 1, 1, 'architectes'),
(1303, 1, '', '', 'Sassus Jean ', '', '', '', 1, 1, 'architectes'),
(1304, 1, '', '', 'Sassus Jean ', '', '', '', 1, 1, 'architectes'),
(1305, 1, '', '', 'Saurel Didier', '', '', '', 1, 1, 'architectes'),
(1306, 1, '', '', 'Sauvageon Hervé  ', '', '', '', 1, 1, 'architectes'),
(1307, 1, '', '', 'Savoye Max   ', '', '', '', 1, 1, 'architectes'),
(1308, 1, '', '', 'Savu Véronique   ', '', '', '', 1, 1, 'architectes'),
(1309, 1, '', '', 'Saysset Jerome ', '', '', '', 1, 1, 'architectes'),
(1310, 1, '', '', 'Scalene Architectes  ', '', '', '', 1, 1, 'architectes'),
(1311, 1, '', '', 'Scattolin Lionel  ', '', '', '', 1, 1, 'architectes'),
(1312, 1, '', '', 'Schmitt JeanLouis   ', '', '', '', 1, 1, 'architectes'),
(1313, 1, '', '', 'Schneider Franz', '', '', '', 1, 1, 'architectes'),
(1314, 1, '', '', 'SCM JarrotMonier  ', '', '', '', 1, 1, 'architectes'),
(1315, 1, '', '', 'SCP Architecture Vigneu Philippe et Zilio Serge ', '', '', '', 1, 1, 'architectes'),
(1316, 1, '', '', 'SCP d\'architecture Fleuriot, Pirovano, Terlaud ', '', '', '', 1, 1, 'architectes'),
(1317, 1, '', '', 'SCP ESPAGNO MILANI', '', '', '', 1, 1, 'architectes'),
(1318, 1, '', '', 'SCP Guerrand Pierre et Richard Alain  ', '', '', '', 1, 1, 'architectes'),
(1319, 1, '', '', 'SCP Kieken & Kerloveou   ', '', '', '', 1, 1, 'architectes'),
(1320, 1, '', '', 'Segonzat Catherine ', '', '', '', 1, 1, 'architectes'),
(1321, 1, '', '', 'Seguela JeanPierre ', '', '', '', 1, 1, 'architectes'),
(1322, 1, '', '', 'Seguier Virginie   ', '', '', '', 1, 1, 'architectes'),
(1323, 1, '', '', 'Seidel David   ', '', '', '', 1, 1, 'architectes'),
(1324, 1, '', '', 'Selene (Scm)   ', '', '', '', 1, 1, 'architectes'),
(1325, 1, '', '', 'Sellin Et Montariol Architectes Associés   ', '', '', '', 1, 1, 'architectes'),
(1326, 1, '', '', 'Sentenac Prax (Selarl)   ', '', '', '', 1, 1, 'architectes'),
(1327, 1, '', '', 'Séquences   ', '', '', '', 1, 1, 'architectes'),
(1328, 1, '', '', 'Ser GeorgesHenry  ', '', '', '', 1, 1, 'architectes'),
(1329, 1, '', '', 'Séran Michel', '', '', '', 1, 1, 'architectes'),
(1330, 1, '', '', 'Sergiampietri Bernard ', '', '', '', 1, 1, 'architectes'),
(1331, 1, '', '', 'Servin Pascal ', '', '', '', 1, 1, 'architectes'),
(1332, 1, '', '', 'Sery Michel ', '', '', '', 1, 1, 'architectes'),
(1333, 1, '', '', 'SEUIL ARCHITECTURE', '', '', '', 1, 1, 'architectes'),
(1334, 1, '', '', 'Sibel Tek Blot (STB)   ', '', '', '', 1, 1, 'architectes'),
(1335, 1, '', '', 'Sicart Pierre  ', '', '', '', 1, 1, 'architectes'),
(1336, 1, '', '', 'Sicre Saint Paul Hugues', '', '', '', 1, 1, 'architectes'),
(1337, 1, '', '', 'Sieurac JeanClaude ', '', '', '', 1, 1, 'architectes'),
(1338, 1, '', '', 'SIFRA  ', '', '', '', 1, 1, 'architectes'),
(1339, 1, '', '', 'Simonetti Serge ', '', '', '', 1, 1, 'architectes'),
(1340, 1, '', '', 'Sinquin Pascale   ', '', '', '', 1, 1, 'architectes'),
(1341, 1, '', '', 'Sirach Viennois Architecture ', '', '', '', 1, 1, 'architectes'),
(1342, 1, '', '', 'Sirvain JeanFrançois ', '', '', '', 1, 1, 'architectes'),
(1343, 1, '', '', 'Sirvain JeanFrançois ', '', '', '', 1, 1, 'architectes'),
(1344, 1, '', '', 'Sirvin JeanPierre ', '', '', '', 1, 1, 'architectes'),
(1345, 1, '', '', 'Société D\'Architecture HenriCharles Ferry   ', '', '', '', 1, 1, 'architectes'),
(1346, 1, '', '', 'Société D\'Architecture HenriCharles Ferry (Architectes D.P.L.G)  ', '', '', '', 1, 1, 'architectes'),
(1347, 1, '', '', 'Sophie Malric (EURL)  ', '', '', '', 1, 1, 'architectes'),
(1348, 1, '', '', 'Sota  ', '', '', '', 1, 1, 'architectes'),
(1349, 1, '', '', 'Souilhac Nicole ', '', '', '', 1, 1, 'architectes'),
(1350, 1, '', '', 'Soulet Jean Jacques ', '', '', '', 1, 1, 'architectes'),
(1351, 1, '', '', 'Soulet JeanJacques   ', '', '', '', 1, 1, 'architectes'),
(1352, 1, '', '', 'Souliet Georges   ', '', '', '', 1, 1, 'architectes'),
(1353, 1, '', '', 'Soum Joël ', '', '', '', 1, 1, 'architectes'),
(1354, 1, '', '', 'Soustelle Philippe  ', '', '', '', 1, 1, 'architectes'),
(1355, 1, '', '', 'Souviron Michel ', '', '', '', 1, 1, 'architectes'),
(1356, 1, '', '', 'Square Boutaud JeanClaude Viennot Christian  ', '', '', '', 1, 1, 'architectes'),
(1357, 1, '', '', 'Steiner Gabrielle ', '', '', '', 1, 1, 'architectes'),
(1358, 1, '', '', 'Stéphane Lopez Architecture', '', '', '', 1, 1, 'architectes'),
(1359, 1, '', '', 'Stocco David  ', '', '', '', 1, 1, 'architectes'),
(1360, 1, '', '', 'Structur\'M   ', '', '', '', 1, 1, 'architectes'),
(1361, 1, '', '', 'Structure\'M   ', '', '', '', 1, 1, 'architectes'),
(1362, 1, '', '', 'Studio D  ', '', '', '', 1, 1, 'architectes'),
(1363, 1, '', '', 'Studio K   ', '', '', '', 1, 1, 'architectes'),
(1364, 1, '', '', 'Studio Numérobis   ', '', '', '', 1, 1, 'architectes'),
(1365, 1, '', '', 'Sudre Rosélyne   ', '', '', '', 1, 1, 'architectes');
INSERT INTO `contact` (`id`, `statut_id`, `nom`, `prenom`, `entreprise`, `poste`, `agence`, `service`, `origine_id`, `priorite_id`, `profession`) VALUES
(1366, 1, '', '', 'Suduca Daniel', '', '', '', 1, 1, 'architectes'),
(1367, 1, '', '', 'Sully Finances  ', '', '', '', 1, 1, 'architectes'),
(1368, 1, '', '', 'Sutter Jacques ', '', '', '', 1, 1, 'architectes'),
(1369, 1, '', '', 'Synapsis Creation   ', '', '', '', 1, 1, 'architectes'),
(1370, 1, '', '', 'Synopsys   ', '', '', '', 1, 1, 'architectes'),
(1371, 1, '', '', 'Taillandier Pierre ', '', '', '', 1, 1, 'architectes'),
(1372, 1, '', '', 'Tajan Patrice   ', '', '', '', 1, 1, 'architectes'),
(1373, 1, '', '', 'Tandem Architecture  ', '', '', '', 1, 1, 'architectes'),
(1374, 1, '', '', 'Tara Decoration (SARL)   ', '', '', '', 1, 1, 'architectes'),
(1375, 1, '', '', 'Tarrade Archi Beatrice   ', '', '', '', 1, 1, 'architectes'),
(1376, 1, '', '', 'Tarrade Béatrice   ', '', '', '', 1, 1, 'architectes'),
(1377, 1, '', '', 'Tartas Jacques ', '', '', '', 1, 1, 'architectes'),
(1378, 1, '', '', 'Tartas Jacques   ', '', '', '', 1, 1, 'architectes'),
(1379, 1, '', '', 'Taulier Gilles ', '', '', '', 1, 1, 'architectes'),
(1380, 1, '', '', 'Taupiac AnneMarie   ', '', '', '', 1, 1, 'architectes'),
(1381, 1, '', '', 'TCArchitecture  ', '', '', '', 1, 1, 'architectes'),
(1382, 1, '', '', 'Techplan 3D   ', '', '', '', 1, 1, 'architectes'),
(1383, 1, '', '', 'Techplan3d   ', '', '', '', 1, 1, 'architectes'),
(1384, 1, '', '', 'Terradas MariePierre  ', '', '', '', 1, 1, 'architectes'),
(1385, 1, '', '', 'Terral Delhomme Archi ', '', '', '', 1, 1, 'architectes'),
(1386, 1, '', '', 'Terral Philippe   ', '', '', '', 1, 1, 'architectes'),
(1387, 1, '', '', 'Testard Olivier  ', '', '', '', 1, 1, 'architectes'),
(1388, 1, '', '', 'Teychene Hervé   ', '', '', '', 1, 1, 'architectes'),
(1389, 1, '', '', 'Thouron Pascal ', '', '', '', 1, 1, 'architectes'),
(1390, 1, '', '', 'Thuilliez Nathalie  ', '', '', '', 1, 1, 'architectes'),
(1391, 1, '', '', 'Thuries Architecte ', '', '', '', 1, 1, 'architectes'),
(1392, 1, '', '', 'Tico Philippe   ', '', '', '', 1, 1, 'architectes'),
(1393, 1, '', '', 'Tico Philippe   ', '', '', '', 1, 1, 'architectes'),
(1394, 1, '', '', 'Tilt (Sarl)', '', '', '', 1, 1, 'architectes'),
(1395, 1, '', '', 'Tollon Luc  ', '', '', '', 1, 1, 'architectes'),
(1396, 1, '', '', 'Tomasin Marc  ', '', '', '', 1, 1, 'architectes'),
(1397, 1, '', '', 'Toulemonde Eric  ', '', '', '', 1, 1, 'architectes'),
(1398, 1, '', '', 'Tournier Jean Paul   ', '', '', '', 1, 1, 'architectes'),
(1399, 1, '', '', 'Tourougui Najia', '', '', '', 1, 1, 'architectes'),
(1400, 1, '', '', 'Trabon PierreJean   ', '', '', '', 1, 1, 'architectes'),
(1401, 1, '', '', 'Tramond Vincent   ', '', '', '', 1, 1, 'architectes'),
(1402, 1, '', '', 'Tremoliere Jean Claude  ', '', '', '', 1, 1, 'architectes'),
(1403, 1, '', '', 'Trier Terence   ', '', '', '', 1, 1, 'architectes'),
(1404, 1, '', '', 'Triptyque  ', '', '', '', 1, 1, 'architectes'),
(1405, 1, '', '', 'Uhde MarieLine', '', '', '', 1, 1, 'architectes'),
(1406, 1, '', '', 'Ulbrich Bodo ', '', '', '', 1, 1, 'architectes'),
(1407, 1, '', '', 'Un Certain Regard ', '', '', '', 1, 1, 'architectes'),
(1408, 1, '', '', 'UniArchitecture   ', '', '', '', 1, 1, 'architectes'),
(1409, 1, '', '', 'V&A D\'Interieur ', '', '', '', 1, 1, 'architectes'),
(1410, 1, '', '', 'V2S Architectes', '', '', '', 1, 1, 'architectes'),
(1411, 1, '', '', 'Vadon Philippe   ', '', '', '', 1, 1, 'architectes'),
(1412, 1, '', '', 'Valadas  Fernandez  Laverny (SCM)  ', '', '', '', 1, 1, 'architectes'),
(1413, 1, '', '', 'Valadas  Fernandez  Laverny (SCM)  ', '', '', '', 1, 1, 'architectes'),
(1414, 1, '', '', 'Valentin Manuel ', '', '', '', 1, 1, 'architectes'),
(1415, 1, '', '', 'Vales Richard ', '', '', '', 1, 1, 'architectes'),
(1416, 1, '', '', 'Valette JeanPierre  ', '', '', '', 1, 1, 'architectes'),
(1417, 1, '', '', 'Vallot Sylvain   ', '', '', '', 1, 1, 'architectes'),
(1418, 1, '', '', 'Valteau Catherine', '', '', '', 1, 1, 'architectes'),
(1419, 1, '', '', 'Valteau Catherine   ', '', '', '', 1, 1, 'architectes'),
(1420, 1, '', '', 'Van Andringa Stéphane   ', '', '', '', 1, 1, 'architectes'),
(1421, 1, '', '', 'Vaquie Serge  ', '', '', '', 1, 1, 'architectes'),
(1422, 1, '', '', 'Vaylac PierreAndré   ', '', '', '', 1, 1, 'architectes'),
(1423, 1, '', '', 'Veaux JeanMichel ', '', '', '', 1, 1, 'architectes'),
(1424, 1, '', '', 'Velo Gwenaël   ', '', '', '', 1, 1, 'architectes'),
(1425, 1, '', '', 'Verdier Diana  ', '', '', '', 1, 1, 'architectes'),
(1426, 1, '', '', 'Verdier Frédérique   ', '', '', '', 1, 1, 'architectes'),
(1427, 1, '', '', 'Vergely Marc   ', '', '', '', 1, 1, 'architectes'),
(1428, 1, '', '', 'Vergely Marc   ', '', '', '', 1, 1, 'architectes'),
(1429, 1, '', '', 'Vergnes Corinne (architecte DPLG)   ', '', '', '', 1, 1, 'architectes'),
(1430, 1, '', '', 'Verniol Sébastien ', '', '', '', 1, 1, 'architectes'),
(1431, 1, '', '', 'Veronique Joffre Architecture  ', '', '', '', 1, 1, 'architectes'),
(1432, 1, '', '', 'Verret PierreEdouard  ', '', '', '', 1, 1, 'architectes'),
(1433, 1, '', '', 'Vesins Claude (de) ', '', '', '', 1, 1, 'architectes'),
(1434, 1, '', '', 'Viala Jacques   ', '', '', '', 1, 1, 'architectes'),
(1435, 1, '', '', 'Viala Jacques   ', '', '', '', 1, 1, 'architectes'),
(1436, 1, '', '', 'Vialaret Gérard   ', '', '', '', 1, 1, 'architectes'),
(1437, 1, '', '', 'Vidal Philippe ', '', '', '', 1, 1, 'architectes'),
(1438, 1, '', '', 'Vidrequin Didier  ', '', '', '', 1, 1, 'architectes'),
(1439, 1, '', '', 'Vie Josian  ', '', '', '', 1, 1, 'architectes'),
(1440, 1, '', '', 'Vignes Florence  ', '', '', '', 1, 1, 'architectes'),
(1441, 1, '', '', 'Vignot Ghislain  ', '', '', '', 1, 1, 'architectes'),
(1442, 1, '', '', 'Vigo René   ', '', '', '', 1, 1, 'architectes'),
(1443, 1, '', '', 'Vigo René   ', '', '', '', 1, 1, 'architectes'),
(1444, 1, '', '', 'Viguier Claude   ', '', '', '', 1, 1, 'architectes'),
(1445, 1, '', '', 'Villemagne JeanPierre   ', '', '', '', 1, 1, 'architectes'),
(1446, 1, '', '', 'Villeneuve Franck  ', '', '', '', 1, 1, 'architectes'),
(1447, 1, '', '', 'Villez Sylvain  ', '', '', '', 1, 1, 'architectes'),
(1448, 1, '', '', 'Voinchet Bernard   ', '', '', '', 1, 1, 'architectes'),
(1449, 1, '', '', 'Voinchet Raphaël  ', '', '', '', 1, 1, 'architectes'),
(1450, 1, '', '', 'Vollhardt Philippe   ', '', '', '', 1, 1, 'architectes'),
(1451, 1, '', '', 'Volpatti Gilbert   ', '', '', '', 1, 1, 'architectes'),
(1452, 1, '', '', 'Vouge Jacques  ', '', '', '', 1, 1, 'architectes'),
(1453, 1, '', '', 'W Architectures (SARL)   ', '', '', '', 1, 1, 'architectes'),
(1454, 1, '', '', 'WArchitectures (SARL)', '', '', '', 1, 1, 'architectes'),
(1455, 1, '', '', 'Weber BrunoIvan   ', '', '', '', 1, 1, 'architectes'),
(1456, 1, '', '', 'Weissmuller Pierre   ', '', '', '', 1, 1, 'architectes'),
(1457, 1, '', '', 'Weissmuller Pierre   ', '', '', '', 1, 1, 'architectes'),
(1458, 1, '', '', 'White Nigel  ', '', '', '', 1, 1, 'architectes'),
(1459, 1, '', '', 'White Nigel  ', '', '', '', 1, 1, 'architectes'),
(1460, 1, '', '', 'Whittmore Tim ', '', '', '', 1, 1, 'architectes'),
(1461, 1, '', '', 'Witt Philippe  ', '', '', '', 1, 1, 'architectes'),
(1462, 1, '', '', 'Wolff Kristian  ', '', '', '', 1, 1, 'architectes'),
(1463, 1, '', '', 'Yubero Et Pailhes Architecture', '', '', '', 1, 1, 'architectes'),
(1464, 1, '', '', 'Yubero et Pailhes Architecture  ', '', '', '', 1, 1, 'architectes'),
(1465, 1, '', '', 'Zaoui Bahia ', '', '', '', 1, 1, 'architectes'),
(1466, 1, '', '', 'Zavagno Marc  ', '', '', '', 1, 1, 'architectes'),
(1467, 1, '', '', 'Zemlianoy AlainChristian', '', '', '', 1, 1, 'architectes'),
(1468, 1, '', '', 'Zine Malika  ', '', '', '', 1, 1, 'architectes'),
(1469, 1, '', '', 'Zine Malika   ', '', '', '', 1, 1, 'architectes'),
(1470, 1, '', '', 'Zivanovic Gradimir  ', '', '', '', 1, 1, 'architectes');

-- --------------------------------------------------------

--
-- Structure de la table `contact_architect`
--

DROP TABLE IF EXISTS `contact_architect`;
CREATE TABLE IF NOT EXISTS `contact_architect` (
  `id` int NOT NULL AUTO_INCREMENT,
  `entreprise` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `profession` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1471 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `contact_architect`
--

INSERT INTO `contact_architect` (`id`, `entreprise`, `profession`) VALUES
(1, '109 Architectes ', 'architectes'),
(2, '11Bis Studio Architectes ', 'architectes'),
(3, '360 Degrés   ', 'architectes'),
(4, '3D\'Form (SARL)  ', 'architectes'),
(5, 'A Et A ', 'architectes'),
(6, 'A Et A (SCM)  ', 'architectes'),
(7, 'A.A.T.C.  ', 'architectes'),
(8, 'A.R.T.E   ', 'architectes'),
(9, 'A.T.A (SARL)  ', 'architectes'),
(10, 'A.T.A (SARL)   ', 'architectes'),
(11, 'A.T.Architecture et technique  ', 'architectes'),
(12, 'A.T.T.C (SARL)   ', 'architectes'),
(13, 'A1 Architecture ', 'architectes'),
(14, 'A3A Conseils Travaux Déco ', 'architectes'),
(15, 'AàZ Projet ', 'architectes'),
(16, 'AB2 Architecture ', 'architectes'),
(17, 'Abadie Philippe   ', 'architectes'),
(18, 'ABC Architecte Batisseur Coldefy (SARL)  ', 'architectes'),
(19, 'ABCV Expertises   ', 'architectes'),
(20, 'Accarain Charles  ', 'architectes'),
(21, 'Accoce Capar Marion   ', 'architectes'),
(22, 'Aced Alexandra ', 'architectes'),
(23, 'Aced Grégoire ', 'architectes'),
(24, 'Achi Sofiane ', 'architectes'),
(25, 'AD\'3E   ', 'architectes'),
(26, 'Adam Jean-Frédéric ', 'architectes'),
(27, 'Adgié Michel   ', 'architectes'),
(28, 'Adoue Jean-Pierre ', 'architectes'),
(29, 'Aescendia (SELARL d\'Architecture)   ', 'architectes'),
(30, 'Agence A  ', 'architectes'),
(31, 'Agence Architecture C Plus C ', 'architectes'),
(32, 'Agence Architecture Didier Médale Rémi Laboup  ', 'architectes'),
(33, 'Agence Architecture Médal  ', 'architectes'),
(34, 'Agence D-Jean-Pierre Dumont ', 'architectes'),
(35, 'Agence D\'Architecture C Plus C   ', 'architectes'),
(36, 'Agence d\'Architecture Didier Médale et Rémi Laboup', 'architectes'),
(37, 'Agence d\'Architecture Filiatre Mansour  ', 'architectes'),
(38, 'Agence d\'Architecture Interface ', 'architectes'),
(39, 'Agence D\'Architecture MCS (SARL)  ', 'architectes'),
(40, 'Agence d\'Architecture Pierre Verlhac', 'architectes'),
(41, 'Agence Dmd   ', 'architectes'),
(42, 'Agence LD2A (Lilian Duval Atelier d\'Architecture)   ls ', 'architectes'),
(43, 'Agence Malafosse (SEL) ', 'architectes'),
(44, 'Agence Piùbelli  ', 'architectes'),
(45, 'Agence Silvea  ', 'architectes'),
(46, 'Agence Silvea   ', 'architectes'),
(47, 'Agence Stéphane Gachet', 'architectes'),
(48, 'Agence Torres Borredon   ', 'architectes'),
(49, 'Agence Vidalon   ', 'architectes'),
(50, 'Agro Eric  ', 'architectes'),
(51, 'Aj   ', 'architectes'),
(52, 'AKT Architecture  ', 'architectes'),
(53, 'Albarède Architecture Perspectives   ', 'architectes'),
(54, 'Albiges Magali   ', 'architectes'),
(55, 'Albiges Stocco  ', 'architectes'),
(56, 'Albigot Jordane ', 'architectes'),
(57, 'Albigot Jordane   ', 'architectes'),
(58, 'Albinet Philippe  ', 'architectes'),
(59, 'Alcaraz Yves   ', 'architectes'),
(60, 'Alet Dominique   ', 'architectes'),
(61, 'Algans Pascal ', 'architectes'),
(62, 'Algans Sophie', 'architectes'),
(63, 'Algorythme ', 'architectes'),
(64, 'ALGORYTHME   ', 'architectes'),
(65, 'Alliage (SARL)  ', 'architectes'),
(66, 'Alliage (SARL)  ', 'architectes'),
(67, 'Alliage (SARL)  ', 'architectes'),
(68, 'Almudever Fabrique D\'Architecture   ', 'architectes'),
(69, 'Almudever Joseph   ', 'architectes'),
(70, 'Almudever Lefèbvre', 'architectes'),
(71, 'Alt Francis   ', 'architectes'),
(72, 'Altabas Léo  ', 'architectes'),
(73, 'AM-PM Architectes ', 'architectes'),
(74, 'Amaré Georges  ', 'architectes'),
(75, 'Amaré Marc  ', 'architectes'),
(76, 'Ambiances  ', 'architectes'),
(77, 'Ambite-robin Isabel ', 'architectes'),
(78, 'Amigo Etude Technologie Conception  ', 'architectes'),
(79, 'André Joaquim   ', 'architectes'),
(80, 'Andrée Magali  ', 'architectes'),
(81, 'Anel Henri ', 'architectes'),
(82, 'Angaud Gael   ', 'architectes'),
(83, 'Anne Cillard Architecte   ', 'architectes'),
(84, 'Annett Robin ', 'architectes'),
(85, 'Anot Danielle   ', 'architectes'),
(86, 'Antic Laetitia  ', 'architectes'),
(87, 'APC Architectes   ', 'architectes'),
(88, 'Aquilino Torrao Architecte (aTa)   + détails ', 'architectes'),
(89, 'Ar Quo Architectes Au Quotidien  ', 'architectes'),
(90, 'AR.TE.US  ', 'architectes'),
(91, 'ARC ET FACT', 'architectes'),
(92, 'Arcangeli François ', 'architectes'),
(93, 'Archéa Architectes  ', 'architectes'),
(94, 'Archea Architectes   ', 'architectes'),
(95, 'Archi Anel   ', 'architectes'),
(96, 'Archi BL Jean-Marc Lassalle  ', 'architectes'),
(97, 'Archi BL Jean-Marc Lassalle  ', 'architectes'),
(98, 'Archi Concept Coordination   ', 'architectes'),
(99, 'ARCHI DOMPNIER LEMAIRE   ', 'architectes'),
(100, 'Archi et co   ', 'architectes'),
(101, 'Archi\'Co   ', 'architectes'),
(102, 'Archi\'Val   ', 'architectes'),
(103, 'Archi&co  ', 'architectes'),
(104, 'Archidé  ', 'architectes'),
(105, 'Archigraf\'   ', 'architectes'),
(106, 'Archigriff Jean Marc Durin Architecte ', 'architectes'),
(107, 'Archimaides ', 'architectes'),
(108, 'Archipel ', 'architectes'),
(109, 'Archipel   ', 'architectes'),
(110, 'Architecte  ', 'architectes'),
(111, 'Architecte Caumont Jean Louis', 'architectes'),
(112, 'Architecte Fauré Grau  ', 'architectes'),
(113, 'Architecte Raynal', 'architectes'),
(114, 'Architectes Brunel Coucoureux  ', 'architectes'),
(115, 'Architectes Fauré Jean-Pierre-Grau Joel   ', 'architectes'),
(116, 'Architectes Pastor et Vidalon  ', 'architectes'),
(117, 'Architectur-E   ', 'architectes'),
(118, 'ARchitecture   ', 'architectes'),
(119, 'Architecture & Concept  ', 'architectes'),
(120, 'Architecture Abc   ', 'architectes'),
(121, 'Architecture Anrich-Maylin  ', 'architectes'),
(122, 'Architecture Archisocele (SARL)  ', 'architectes'),
(123, 'Architecture Assistance Conseils ', 'architectes'),
(124, 'Architecture Bati Conseil ', 'architectes'),
(125, 'Architecture Batsalle Klene Associés (SARL)', 'architectes'),
(126, 'Architecture Belmon  ', 'architectes'),
(127, 'Architecture Benazet Pinzio (SCP)  ', 'architectes'),
(128, 'Architecture Branger Et Autres (SCP)', 'architectes'),
(129, 'Architecture Brunerie-Irissou (S.C.P)  ', 'architectes'),
(130, 'Architecture Claude Laye (EURL) ', 'architectes'),
(131, 'Architecture Conception Réalisation  ', 'architectes'),
(132, 'Architecture De Santi Zoppis Lafon   ', 'architectes'),
(133, 'Architecture Dominique Metarfi   ', 'architectes'),
(134, 'Architecture Dominique Metarfi    ', 'architectes'),
(135, 'Architecture Du T ', 'architectes'),
(136, 'Architecture et Paysage ', 'architectes'),
(137, 'Architecture Froidefond Villepontoux', 'architectes'),
(138, 'Architecture Goubert Et Landes', 'architectes'),
(139, 'Architecture Goubert Et Landes  ', 'architectes'),
(140, 'Architecture Jacques Escourrou (Selarl)  ', 'architectes'),
(141, 'Architecture Julien Maury Roussel (SCP)   ', 'architectes'),
(142, 'Architecture Malacan-Martres (SARL)   ', 'architectes'),
(143, 'Architecture Munvez-Morel (SARL)   ', 'architectes'),
(144, 'Architecture Pocapoc   ', 'architectes'),
(145, 'Architecture Sandra Perie (EURL)  ', 'architectes'),
(146, 'Architectures Marco Baertich   ', 'architectes'),
(147, 'Architekt+   ', 'architectes'),
(148, 'Architouch  ', 'architectes'),
(149, 'Archivolte ', 'architectes'),
(150, 'Archivolte   ', 'architectes'),
(151, 'Arco', 'architectes'),
(152, 'Arcoser Architecture Concept Service ', 'architectes'),
(153, 'Arcoser Architecture Concept Service   ', 'architectes'),
(154, 'Arcs Sarl d\'Architecture Chamayou- Duchet-Esquerre   ', 'architectes'),
(155, 'Arcs Sarl d\'Architecture Chamayou-Esquerre   ', 'architectes'),
(156, 'Arkeops  ', 'architectes'),
(157, 'Arkhidée (SARL)   ', 'architectes'),
(158, 'Arkhidée (SARL)   ', 'architectes'),
(159, 'Arnal Maxime', 'architectes'),
(160, 'Arnau Charles ', 'architectes'),
(161, 'Arnau Leger   ', 'architectes'),
(162, 'Arnaud Balas Architecte (SARL)  ', 'architectes'),
(163, 'Arnone Jean-Louis ', 'architectes'),
(164, 'Arte-Concept  ', 'architectes'),
(165, 'Artrium (EURL)   ', 'architectes'),
(166, 'Arua', 'architectes'),
(167, 'ASA 2002  ', 'architectes'),
(168, 'Aschenbroich Amélie   ', 'architectes'),
(169, 'Aster Architecture ', 'architectes'),
(170, 'Astruc Architectes  ', 'architectes'),
(171, 'At D\'Architecture Bourthoumieux Thierry   ', 'architectes'),
(172, 'Atelier 180   ', 'architectes'),
(173, 'Atelier 3L Architectes ', 'architectes'),
(174, 'Atelier 8KS   ', 'architectes'),
(175, 'Atelier A Architecture Ville Lumière', 'architectes'),
(176, 'Atelier Archi Pierre  ', 'architectes'),
(177, 'Atelier Architectes Houbron (SARL) ', 'architectes'),
(178, 'Atelier Architecture A 3 Plus ', 'architectes'),
(179, 'Atelier Architecture Airoldi et Brun   ', 'architectes'),
(180, 'Atelier Architecture et Territoires   ', 'architectes'),
(181, 'Atelier Architecture Larrondo J-M ', 'architectes'),
(182, 'Atelier Architecture Martinez Tournié  ', 'architectes'),
(183, 'Atelier Architecture Raynal Ruffat', 'architectes'),
(184, 'Atelier Architecture Urbanisme   ', 'architectes'),
(185, 'Atelier Bf Architecture  ', 'architectes'),
(186, 'Atelier CGC Sarl D\'Architecture   ', 'architectes'),
(187, 'Atelier d\' Architecture Diana   ', 'architectes'),
(188, 'Atelier d\'Architectes Associés (AAA)   + détails ', 'architectes'),
(189, 'Atelier d\'Architecture A2A  ', 'architectes'),
(190, 'Atelier d\'Architecture Cardete-Huet    ', 'architectes'),
(191, 'Atelier d\'Architecture Cecile Bouinot  ', 'architectes'),
(192, 'Atelier d\'Architecture du Prieuré   ', 'architectes'),
(193, 'Atelier D\'Architecture Eric Barthe  ', 'architectes'),
(194, 'Atelier d\'Architecture et Concept Nouveau   ', 'architectes'),
(195, 'Atelier D\'architecture Et D\'urbanisme Arnal Lafon Cayrou ', 'architectes'),
(196, 'Atelier d\'Architecture Faltrept Gilles et Comby-Faltrept Dominique   ', 'architectes'),
(197, 'Atelier d\'Architecture Hoyer', 'architectes'),
(198, 'Atelier d\'Architecture Hoyer   ', 'architectes'),
(199, 'Atelier d\'Architecture Imbert Alvernhe  ', 'architectes'),
(200, 'Atelier d\'Architecture Imbert Alvernhe   ', 'architectes'),
(201, 'Atelier d\'Architecture Joris Ducastaing ', 'architectes'),
(202, 'Atelier d\'Architecture Lionel Bentolila (A.A.L.B)  ', 'architectes'),
(203, 'Atelier d\'Architecture Marc Soulié   ', 'architectes'),
(204, 'Atelier D\'Architecture Noailles Et Bayle ', 'architectes'),
(205, 'Atelier d\'Architecture Patrice Brion (SARL) ', 'architectes'),
(206, 'Atelier d\'architecture PILON & GEORGES (SARL)', 'architectes'),
(207, 'Atelier D\'Architecture Rémi Papillault ', 'architectes'),
(208, 'Atelier d\'Architecture Saint Laurent & Associés', 'architectes'),
(209, 'Atelier D\'architecture Toulousain  ', 'architectes'),
(210, 'Atelier d\'Architecture Voisin Bos', 'architectes'),
(211, 'Atelier de Décoration Béziat Andrée  ', 'architectes'),
(212, 'Atelier Fourmi Jaune', 'architectes'),
(213, 'Atelier Gil Architecture  ', 'architectes'),
(214, 'Atelier Luc Willaume   ', 'architectes'),
(215, 'Atelier Méridional Joël Nissou  ', 'architectes'),
(216, 'Atelier Or\'ange  ', 'architectes'),
(217, 'Atelier Palomba  ', 'architectes'),
(218, 'Atelier R & C Architecture   ', 'architectes'),
(219, 'ATELIER REC ', 'architectes'),
(220, 'Atelier Sauvagé Ducasse Harter (SARL) ', 'architectes'),
(221, 'Atelier Scénario ', 'architectes'),
(222, 'Atelier Scénario  ', 'architectes'),
(223, 'Atelier Triglyphes ', 'architectes'),
(224, 'ATELIER-A-ARCHITECTURE (SARL)  ', 'architectes'),
(225, 'AtelierAteneo D\'Architecture Bricchi (A3B)  ', 'architectes'),
(226, 'Ateliers d\'Architecture Bernard Mans et Assoc  ', 'architectes'),
(227, 'Atrium Atelier Architecture ', 'architectes'),
(228, 'Atrium Atelier D\'Architecture   ', 'architectes'),
(229, 'Aubailly Christophe  ', 'architectes'),
(230, 'Aubert Cécile  ', 'architectes'),
(231, 'Authie Michel ', 'architectes'),
(232, 'Autret Michel   ', 'architectes'),
(233, 'Avarchitecture  ', 'architectes'),
(234, 'Avellana Michel', 'architectes'),
(235, 'Avezac Jean-Claude ', 'architectes'),
(236, 'Avril Philippe   ', 'architectes'),
(237, 'Azéma Architectes ', 'architectes'),
(238, 'Azzopardi Frédéric  ', 'architectes'),
(239, 'B7 Birades  ', 'architectes'),
(240, 'Baberian Alice   ', 'architectes'),
(241, 'Bachet Nicolas ', 'architectes'),
(242, 'Bages Bureau Frédérique ', 'architectes'),
(243, 'Balagué Pierre', 'architectes'),
(244, 'Balas Christophe   ', 'architectes'),
(245, 'Baldou Sébastien  ', 'architectes'),
(246, 'Baldou Sébastien   ', 'architectes'),
(247, 'Bankov Vassil ', 'architectes'),
(248, 'Barbacane Architecture   ', 'architectes'),
(249, 'Bardin Jean Marie  ', 'architectes'),
(250, 'Barnabot Julia  ', 'architectes'),
(251, 'Baroudi Mohsine', 'architectes'),
(252, 'Barrau Yves-Pierre  ', 'architectes'),
(253, 'Barriere Dominique ', 'architectes'),
(254, 'Barrué Jérôme  ', 'architectes'),
(255, 'Bastadjian Vaskene  ', 'architectes'),
(256, 'Bastida Richard ', 'architectes'),
(257, 'Bastié Sandrine   ', 'architectes'),
(258, 'Batut Jean-Pascal   ', 'architectes'),
(259, 'Baudéan Guy', 'architectes'),
(260, 'Baudéan Guy   ', 'architectes'),
(261, 'Baudrimont Alain ', 'architectes'),
(262, 'Bayle Alain  ', 'architectes'),
(263, 'Beaumont Jean-Pierre  ', 'architectes'),
(264, 'Bédrune François  ', 'architectes'),
(265, 'Belcour Cyprien', 'architectes'),
(266, 'Belcour Matthieu ', 'architectes'),
(267, 'Belcour Matthieu  ', 'architectes'),
(268, 'Bellat Christophe   ', 'architectes'),
(269, 'Belle Patrice', 'architectes'),
(270, 'Belliure Xavier  ', 'architectes'),
(271, 'Beltran Jacques   ', 'architectes'),
(272, 'Beltran Jacques   ', 'architectes'),
(273, 'Benazet Joseph  ', 'architectes'),
(274, 'Benezech Jérôme  ', 'architectes'),
(275, 'Benguigui Cormary Architec   + détails ', 'architectes'),
(276, 'Benguigui Patrice', 'architectes'),
(277, 'Benita Hubert  ', 'architectes'),
(278, 'Benmansour Mourad   + détails ', 'architectes'),
(279, 'Benne Henri  ', 'architectes'),
(280, 'Bergès Philippe ', 'architectes'),
(281, 'Bergès Philippe   ', 'architectes'),
(282, 'Bernard Caroline   ', 'architectes'),
(283, 'Bernard Claude  ', 'architectes'),
(284, 'Bernard Robert   + détails ', 'architectes'),
(285, 'Bernard-Servin Odile  ', 'architectes'),
(286, 'Bertona Yannick  ', 'architectes'),
(287, 'Bertrand Bruno ', 'architectes'),
(288, 'Bertrand Eric ', 'architectes'),
(289, 'Bessaguet Muriel  ', 'architectes'),
(290, 'Bestebreurtje Ellen   ', 'architectes'),
(291, 'Betbeze Sébastien   ', 'architectes'),
(292, 'Bezes Daniel   ', 'architectes'),
(293, 'Bezes Daniel   ', 'architectes'),
(294, 'Biau Philippe   ', 'architectes'),
(295, 'BigMat Toujas et Coll Négociant  ', 'architectes'),
(296, 'Blanc Didier  ', 'architectes'),
(297, 'Bleu Gentiane ', 'architectes'),
(298, 'BLV2 Architectes  ', 'architectes'),
(299, 'Boissieres Christian ', 'architectes'),
(300, 'Boissières Christian   ', 'architectes'),
(301, 'Boixéda Jean   ', 'architectes'),
(302, 'Bonaventure Michel   ', 'architectes'),
(303, 'Bonaventure Michel (EURL)   ', 'architectes'),
(304, 'Bonetto Vincent Et Capmas Serge (SCM)  ', 'architectes'),
(305, 'Bonnet Annie', 'architectes'),
(306, 'Bonnet Cyrille   ', 'architectes'),
(307, 'Bonnet Jean Claude (SEL) ', 'architectes'),
(308, 'Bonnet Jean-Claude  ', 'architectes'),
(309, 'Bonnet Jean-Claude   ', 'architectes'),
(310, 'Bonnet Jean-Luc   ', 'architectes'),
(311, 'Bonnet Terral Atelier Triade (SCP) ', 'architectes'),
(312, 'Bonnier Sebastien  ', 'architectes'),
(313, 'Bonsirven Daniel  ', 'architectes'),
(314, 'Borghese Muriel ', 'architectes'),
(315, 'Borrel Charon Architectes  ', 'architectes'),
(316, 'Bos Christophe  ', 'architectes'),
(317, 'Bos Christophe   ', 'architectes'),
(318, 'Bosc Patrice ', 'architectes'),
(319, 'Bosset Alain  ', 'architectes'),
(320, 'Bouas Christophe ', 'architectes'),
(321, 'Bouchardeau Alexandre   ', 'architectes'),
(322, 'Bouche Julie  ', 'architectes'),
(323, 'Bouchon Jean-Pierre ', 'architectes'),
(324, 'Boudal Eric   ', 'architectes'),
(325, 'Boudin Monique  ', 'architectes'),
(326, 'Boularan Yves   ', 'architectes'),
(327, 'Boumati Christophe   ', 'architectes'),
(328, 'Bourdel Henri  ', 'architectes'),
(329, 'Bourdil Serge ', 'architectes'),
(330, 'Bourdoncle Bernard  ', 'architectes'),
(331, 'Bourdoncle Bernard   ', 'architectes'),
(332, 'Boussard-Julien Céline  ', 'architectes'),
(333, 'Boussier Patrick  ', 'architectes'),
(334, 'Boyer Nicole   ', 'architectes'),
(335, 'Branger Claude  ', 'architectes'),
(336, 'Bravo Alain ', 'architectes'),
(337, 'Bravo-Romieux Architectes Associés (SARL) ', 'architectes'),
(338, 'Bravo-Romieux Architectes Associés (SARL)   ', 'architectes'),
(339, 'Brugere Christophe  ', 'architectes'),
(340, 'Brunel Coucoureux Architectes ', 'architectes'),
(341, 'Brunel Joël   ', 'architectes'),
(342, 'BRUNERIE & IRISSOU ARCHITECTE ', 'architectes'),
(343, 'Brunerie Pierre  ', 'architectes'),
(344, 'Bruneteau Laurence ', 'architectes'),
(345, 'Bruniquel Philippe ', 'architectes'),
(346, 'Brut d\'Eclats   ', 'architectes'),
(347, 'Bultot Nathalie', 'architectes'),
(348, 'Bultot Nathalie   ', 'architectes'),
(349, 'BUREAU D ETUDES DE LA CONSTRUCTION   ', 'architectes'),
(350, 'Burguière Sophie   ', 'architectes'),
(351, 'Burzio Boris   ', 'architectes'),
(352, 'C.A.U.E (Conseil d\'Architecture d\'Urbanisme & Environnement)  ', 'architectes'),
(353, 'C.D.A. Architectes (SARL) ', 'architectes'),
(354, 'C&A architectes  ', 'architectes'),
(355, 'C&A architectes   ', 'architectes'),
(356, 'Cabanes-Seguier Virginie', 'architectes'),
(357, 'CABINET BRAIL NORBERT  ', 'architectes'),
(358, 'Cabinet d\'Architecture d\'Intérieur Jaymes et Valentin   + détails ', 'architectes'),
(359, 'Cabinet d\'Architecture Darbefeuille Jean-Michel', 'architectes'),
(360, 'Cabinet d\'Architecture Isabelle Canal Diaz et Associés    ', 'architectes'),
(361, 'Cabinet Merhi et Barruel   ', 'architectes'),
(362, 'Cabinet Saucadauch', 'architectes'),
(363, 'Cabrol Jacques   ', 'architectes'),
(364, 'Cabrol Jacques et Benoît   ', 'architectes'),
(365, 'Cadaux Didier ', 'architectes'),
(366, 'Cadaux Didier  ', 'architectes'),
(367, 'Cadot Pierre   ', 'architectes'),
(368, 'Cagnac Jean-Yves  ', 'architectes'),
(369, 'Cagnac Jean-Yves   ', 'architectes'),
(370, 'Caille', 'architectes'),
(371, 'Calestroupat Lucien ', 'architectes'),
(372, 'Calmels Pierre  ', 'architectes'),
(373, 'Calmes Bruno   ', 'architectes'),
(374, 'Calsou  ', 'architectes'),
(375, 'Calvo   ', 'architectes'),
(376, 'Cambedouzou Laurent   ', 'architectes'),
(377, 'Cambon Christian  ', 'architectes'),
(378, 'Cambriel Annabel  ', 'architectes'),
(379, 'Camillo Jean-François   ', 'architectes'),
(380, 'Campion Pierre-Jean   ', 'architectes'),
(381, 'Canal Jacques   ', 'architectes'),
(382, 'Caner Bernard   ', 'architectes'),
(383, 'Cangémi Philippe   ', 'architectes'),
(384, 'Canut   ', 'architectes'),
(385, 'Capele Patrick (De) ', 'architectes'),
(386, 'Capmas Serge   ', 'architectes'),
(387, 'Capmas Serge   ', 'architectes'),
(388, 'Capot François', 'architectes'),
(389, 'Capraro Joseph  ', 'architectes'),
(390, 'Capraro Joseph   ', 'architectes'),
(391, 'Capy Jean-Pierre et Joulia Bruno (SA)   ', 'architectes'),
(392, 'Caradant Maurice  ', 'architectes'),
(393, 'Carassus Jean-Louis  ', 'architectes'),
(394, 'CARDO  ', 'architectes'),
(395, 'Cardo (SCM d\'Architecture) ', 'architectes'),
(396, 'Cardona Roland   ', 'architectes'),
(397, 'Carel Thierry  ', 'architectes'),
(398, 'Carel Thierry   ', 'architectes'),
(399, 'Carissan François   ', 'architectes'),
(400, 'Carla André   ', 'architectes'),
(401, 'Carmes Jean Louis ', 'architectes'),
(402, 'Carnoy Laurent ', 'architectes'),
(403, 'Carpio Manuel ', 'architectes'),
(404, 'Cartayrade Christophe', 'architectes'),
(405, 'Carvalheiro Fernando   ', 'architectes'),
(406, 'Casadepax Jean-François   ', 'architectes'),
(407, 'Casadepax-Soulet Jean-François  ', 'architectes'),
(408, 'Casalta Benoît  ', 'architectes'),
(409, 'Cascarigny Christine   ', 'architectes'),
(410, 'Cascarigny Christine Et Cascarigny Raymond (SCP)  ', 'architectes'),
(411, 'Cassignac Estela  ', 'architectes'),
(412, 'Cassou Architecte ', 'architectes'),
(413, 'Cassou Architecte  ', 'architectes'),
(414, 'Cassou Pierre   ', 'architectes'),
(415, 'Castagné Thierry  ', 'architectes'),
(416, 'Castaings Marine   ', 'architectes'),
(417, 'Cathala Yves   ', 'architectes'),
(418, 'Cathala Yves   ', 'architectes'),
(419, 'Catusse-Bazet Jean-Michel ', 'architectes'),
(420, 'Cayrac-Benezech Marie-Thérèse   ', 'architectes'),
(421, 'Cayrou Patrick  ', 'architectes'),
(422, 'Cayrou Patrick   ', 'architectes'),
(423, 'Caza La Vera  ', 'architectes'),
(424, 'Cazabon Philippe ', 'architectes'),
(425, 'Cazaubon Patrice   ', 'architectes'),
(426, 'Cazaux Emile   ', 'architectes'),
(427, 'Cazelles Anne   ', 'architectes'),
(428, 'Cazelles Anne   ', 'architectes'),
(429, 'Cazeres Jean Pierre ', 'architectes'),
(430, 'Cazères Jean-Pierre  ', 'architectes'),
(431, 'CCS Architecture  ', 'architectes'),
(432, 'CD Architectes ', 'architectes'),
(433, 'Céladon Déco Design   ', 'architectes'),
(434, 'Céladon Déco design   ', 'architectes'),
(435, 'Cellier Michel   ', 'architectes'),
(436, 'Cerès Jean-Sébastien   + détails ', 'architectes'),
(437, 'Chabbert Patrice  ', 'architectes'),
(438, 'Chabbert Patrice (architecte DPLG)', 'architectes'),
(439, 'Chabreyron Alain   ', 'architectes'),
(440, 'Chamayou Michel ', 'architectes'),
(441, 'Chambon Philippe  ', 'architectes'),
(442, 'Chambon Philippe   ', 'architectes'),
(443, 'Chanson Benoît  ', 'architectes'),
(444, 'Chanson Benoît  ', 'architectes'),
(445, 'Chapelet Letourneux Jérôme ', 'architectes'),
(446, 'Charasson Etienne', 'architectes'),
(447, 'Charles Couderc Catherine  ', 'architectes'),
(448, 'Charras Pierre', 'architectes'),
(449, 'Charrier Christelle  ', 'architectes'),
(450, 'Charrière Jean-Pierre   + détails ', 'architectes'),
(451, 'Chaumet-Lagrange Thibaut  ', 'architectes'),
(452, 'Chaumont Pierre-Yves  ', 'architectes'),
(453, 'Cheron Jean ', 'architectes'),
(454, 'Chevalier Jean-Luc ', 'architectes'),
(455, 'Chevallier Andrée   ', 'architectes'),
(456, 'Chia Alain   ', 'architectes'),
(457, 'Chiarovano Mathias   ', 'architectes'),
(458, 'Chiron Jacques  ', 'architectes'),
(459, 'Christian Pagès Thierry Le Ster Architectes ', 'architectes'),
(460, 'Chtorkh Aléxis  ', 'architectes'),
(461, 'Cieutat Christian ', 'architectes'),
(462, 'Cieutat Christian  ', 'architectes'),
(463, 'Cieutat Jean-Pierre', 'architectes'),
(464, 'Cirgue Dargassies  ', 'architectes'),
(465, 'CL Architecture  ', 'architectes'),
(466, 'CL Architecture   ', 'architectes'),
(467, 'Claire Dolmaire Architecte ', 'architectes'),
(468, 'Clanet Michel  ', 'architectes'),
(469, 'Claude Branger Et Gilbert Romeu SCP D\'Architecture  ', 'architectes'),
(470, 'Claustre Robert ', 'architectes'),
(471, 'Clavere Christine   ', 'architectes'),
(472, 'Claverie Jean-Philippe ', 'architectes'),
(473, 'Clédat Francis   ', 'architectes'),
(474, 'Clément Boutet Architecte  ', 'architectes'),
(475, 'Clergue Philippe ', 'architectes'),
(476, 'Cluzel Jean  ', 'architectes'),
(477, 'Coatanroc\'h Gwenaëlle ', 'architectes'),
(478, 'Cocagne-Habitat ', 'architectes'),
(479, 'Cocagne-Habitat  ', 'architectes'),
(480, 'Cocagne-Habitat   ', 'architectes'),
(481, 'Colas Stéphane   ', 'architectes'),
(482, 'Coldefy Guy   ', 'architectes'),
(483, 'Coletti Léo  ', 'architectes'),
(484, 'Collart Jean-François ', 'architectes'),
(485, 'Collart Jean-François  ', 'architectes'),
(486, 'Collin Daniel  ', 'architectes'),
(487, 'Colombani Stéphane   ', 'architectes'),
(488, 'Colzani Matthieu  ', 'architectes'),
(489, 'Combes Dumas Hélène ', 'architectes'),
(490, 'Combes Jean-François  ', 'architectes'),
(491, 'Combis Philippe  ', 'architectes'),
(492, 'Comby-Faltrept Dominique ', 'architectes'),
(493, 'Concept   ', 'architectes'),
(494, 'Concept Créations  ', 'architectes'),
(495, 'Condis Sébastien   ', 'architectes'),
(496, 'Condomines Christophe', 'architectes'),
(497, 'Conjugaison Création Agencement ', 'architectes'),
(498, 'Constant Denis', 'architectes'),
(499, 'Constensou Laura   ', 'architectes'),
(500, 'Convergence Architecture Intérieure ', 'architectes'),
(501, 'Cottard-Cheyssial Veronique ', 'architectes'),
(502, 'Couanault Samuel   ', 'architectes'),
(503, 'Couffignal Amélie   ', 'architectes'),
(504, 'Coulon Alain  ', 'architectes'),
(505, 'Courtin Florence   ', 'architectes'),
(506, 'Cousin Jean   ', 'architectes'),
(507, 'Cousy Christophe  ', 'architectes'),
(508, 'Coutou Roger   ', 'architectes'),
(509, 'Couturier Noémie   ', 'architectes'),
(510, 'CPBR Architecture (SARL)  ', 'architectes'),
(511, 'CPL Architecture   ', 'architectes'),
(512, 'Creation+ ', 'architectes'),
(513, 'Cros Serge  ', 'architectes'),
(514, 'Croux Alain  ', 'architectes'),
(515, 'Crouzet Jean-Bernard   ', 'architectes'),
(516, 'Crouzillac Charles  ', 'architectes'),
(517, 'CSV Architecture   ', 'architectes'),
(518, 'Cube  ', 'architectes'),
(519, 'Cumin Joëlle   + détails ', 'architectes'),
(520, 'Cuquel Elodie   ', 'architectes'),
(521, 'D.P.A.B ', 'architectes'),
(522, 'Da Costa Patricia  ', 'architectes'),
(523, 'Da Costa Patricia   ', 'architectes'),
(524, 'Da Cunha Pierre   ', 'architectes'),
(525, 'Dahuron Matthieu ', 'architectes'),
(526, 'Dal-Col Cyrille  ', 'architectes'),
(527, 'Dal-col Cyrille   ', 'architectes'),
(528, 'Dalmayrac Céline  ', 'architectes'),
(529, 'Damon Architecte  ', 'architectes'),
(530, 'Dangas Ghislain ', 'architectes'),
(531, 'Dangas Ghislain   ', 'architectes'),
(532, 'Daniel Roudière   ', 'architectes'),
(533, 'Dardenne Jean Pierre   ', 'architectes'),
(534, 'Dargassies Thierry  ', 'architectes'),
(535, 'Darnault Jérôme   ', 'architectes'),
(536, 'Daurenjou Catherine   ', 'architectes'),
(537, 'Daures Xavier   ', 'architectes'),
(538, 'DB Architecture (SARL)  ', 'architectes'),
(539, 'DBA (Duran et Boumati Architecture)', 'architectes'),
(540, 'De Capele Patrick Lamarque Paul (SCP)   ', 'architectes'),
(541, 'De Quelen-fontan Hélène   ', 'architectes'),
(542, 'Deco and Co  ', 'architectes'),
(543, 'Dedieu Muriel ', 'architectes'),
(544, 'Defol Mousseigne ', 'architectes'),
(545, 'Defos Du Rau Architecture ', 'architectes'),
(546, 'Deixonne Claude', 'architectes'),
(547, 'Deladerriere Philippe', 'architectes'),
(548, 'Delahousse Etienne  ', 'architectes'),
(549, 'Delannee Guy   ', 'architectes'),
(550, 'Délas Caroline  ', 'architectes'),
(551, 'Delbos Philippe   ', 'architectes'),
(552, 'Delcros Henri ', 'architectes'),
(553, 'Delfour Marc  ', 'architectes'),
(554, 'Deligny Stéphane  ', 'architectes'),
(555, 'Delmas Alain  ', 'architectes'),
(556, 'Delmas René ', 'architectes'),
(557, 'Deloche Marc   ', 'architectes'),
(558, 'Delord Jean-François   ', 'architectes'),
(559, 'Delprat Pascal   ', 'architectes'),
(560, 'Delrieu Christian   ', 'architectes'),
(561, 'Delta  ', 'architectes'),
(562, 'Demolombe Luc ', 'architectes'),
(563, 'Descazeaux  ', 'architectes'),
(564, 'Descuns Daniel   ', 'architectes'),
(565, 'Desneiges Philippe ', 'architectes'),
(566, 'Destruel Jean-Paul   ', 'architectes'),
(567, 'Devaux Michel   ', 'architectes'),
(568, 'Devaux Virginie ', 'architectes'),
(569, 'Devillers Daniel  ', 'architectes'),
(570, 'Dhalluin-Pény', 'architectes'),
(571, 'Dias Architectes ', 'architectes'),
(572, 'Dias Architectes Associes  ', 'architectes'),
(573, 'Dis Pierre  ', 'architectes'),
(574, 'Dompnier Lemaire (SCP) ', 'architectes'),
(575, 'Dormancy Ariane', 'architectes'),
(576, 'Dormancy Ariane ', 'architectes'),
(577, 'Doumenc Yves   ', 'architectes'),
(578, 'Dratwicki Daniel ', 'architectes'),
(579, 'Droit de Cité Architectes   ', 'architectes'),
(580, 'Druet Et Associés Architectes ', 'architectes'),
(581, 'Drugeon Jean   ', 'architectes'),
(582, 'Drugeon Jean-François   ', 'architectes'),
(583, 'Duareg (Eurl)   ', 'architectes'),
(584, 'Ducamin Bernard ', 'architectes'),
(585, 'Duchayne Patrick   ', 'architectes'),
(586, 'Duchayne Patrick   ', 'architectes'),
(587, 'Duchêne Gaëlle  ', 'architectes'),
(588, 'Ducreux Thomas  ', 'architectes'),
(589, 'Dufauret Bernard  ', 'architectes'),
(590, 'Duffau Et Associés ', 'architectes'),
(591, 'Duffau Et Associés  ', 'architectes'),
(592, 'Duffaut Philippe ', 'architectes'),
(593, 'Dufour Marie-Sylvie   ', 'architectes'),
(594, 'Dumolard Julien   ', 'architectes'),
(595, 'Dupin Christian  ', 'architectes'),
(596, 'Dupin Isabelle  ', 'architectes'),
(597, 'Dupin Isabelle   ', 'architectes'),
(598, 'Duquoc Caroline', 'architectes'),
(599, 'Duran Christophe', 'architectes'),
(600, 'Durand Bertrand   ', 'architectes'),
(601, 'Durin Jean Marc  ', 'architectes'),
(602, 'Duroure Anne ', 'architectes'),
(603, 'Dursent Patrick Architecte  ', 'architectes'),
(604, 'Durvelle Laurent ', 'architectes'),
(605, 'E-A-U-Concept Herve Rodriguez   ', 'architectes'),
(606, 'E.R.T.S.I (SARL)  ', 'architectes'),
(607, 'E8 ARCHITECTURE (SARL)  ', 'architectes'),
(608, 'EBAG ', 'architectes'),
(609, 'EBAG   ', 'architectes'),
(610, 'Ebdesign   ', 'architectes'),
(611, 'Ecoumène Architecture  ', 'architectes'),
(612, 'Ehrhardt Thierry  ', 'architectes'),
(613, 'El Maarri Nada   ', 'architectes'),
(614, 'El Sid Mohamed ', 'architectes'),
(615, 'El Yassem Rachid   ', 'architectes'),
(616, 'Elements   ', 'architectes'),
(617, 'Elwa-Atelier D\'architecture   ', 'architectes'),
(618, 'EMB09', 'architectes'),
(619, 'Empreintes  ', 'architectes'),
(620, 'Energie Architecture Benouali Laribi   + détails ', 'architectes'),
(621, 'Energie Architecture Urbanisme   ', 'architectes'),
(622, 'Enguilabert Daniel  ', 'architectes'),
(623, 'Enjalbal Pierre   ', 'architectes'),
(624, 'Enzo & Rosso (SARL)   ', 'architectes'),
(625, 'Eos Architecture d\'Intérieur   ', 'architectes'),
(626, 'Epure Architectes ', 'architectes'),
(627, 'Ernst Frédérique   ', 'architectes'),
(628, 'Espagno Jean François   ', 'architectes'),
(629, 'Espagno Vincent  ', 'architectes'),
(630, 'Espie-bes Dominique   ', 'architectes'),
(631, 'Espouy Lucien (SARL)  ', 'architectes'),
(632, 'Esquisse et Ligne d\'archi ALG   ', 'architectes'),
(633, 'Estangoy Michel   ', 'architectes'),
(634, 'Estangoy Michel (EURL)', 'architectes'),
(635, 'Esteve Jean Philippe  ', 'architectes'),
(636, 'Esteve Jean-Philippe   ', 'architectes'),
(637, 'Etilé Norbert  ', 'architectes'),
(638, 'Eydoux Nicolas   ', 'architectes'),
(639, 'F.C.C.H. Architecture (S.E.L.A.R.L)   ', 'architectes'),
(640, 'Fabre Jean-Philippe   ', 'architectes'),
(641, 'Fabre Jérôme ', 'architectes'),
(642, 'Fabre Jérôme  ', 'architectes'),
(643, 'Fabre Marianne   ', 'architectes'),
(644, 'Fabre Mathilde   ', 'architectes'),
(645, 'Fake Interior Design   ', 'architectes'),
(646, 'Faltrept Gilles   ', 'architectes'),
(647, 'Farache Claude ', 'architectes'),
(648, 'Faramond Max  ', 'architectes'),
(649, 'Fastré Karine (EURL) ', 'architectes'),
(650, 'Fauré Jean-Pierre Architecte ', 'architectes'),
(651, 'Fauré Marie-Christine   ', 'architectes'),
(652, 'Favaron Juliette   ', 'architectes'),
(653, 'Fave Architectes   ', 'architectes'),
(654, 'Favresse-Ougier  ', 'architectes'),
(655, 'Favresse-Ougier   ', 'architectes'),
(656, 'Faye Gisèle', 'architectes'),
(657, 'Felix Bernard', 'architectes'),
(658, 'Fernandez Pierre   ', 'architectes'),
(659, 'Fernandez Roger  ', 'architectes'),
(660, 'Ferré Manuel   ', 'architectes'),
(661, 'Ferre Nicolas  ', 'architectes'),
(662, 'Ferrer Jean Baptiste   ', 'architectes'),
(663, 'Ferri Jean-Benoît ', 'architectes'),
(664, 'Feucht Julien  ', 'architectes'),
(665, 'Fieu Stéphane ', 'architectes'),
(666, 'Fieu Stéphane  ', 'architectes'),
(667, 'Filiâtre Isabelle   ', 'architectes'),
(668, 'Finet Alain   ', 'architectes'),
(669, 'Fiol Isabelle   ', 'architectes'),
(670, 'Florinier Michel (De)  ', 'architectes'),
(671, 'FOA Olivier ', 'architectes'),
(672, 'Fonquergne Jacques ', 'architectes'),
(673, 'Fontaine Jean-Paul', 'architectes'),
(674, 'Fontaine Malvy (Sté)  ', 'architectes'),
(675, 'Fontana Jean-Louis   ', 'architectes'),
(676, 'Fontanille Bernard  ', 'architectes'),
(677, 'Fonvieille Alain  ', 'architectes'),
(678, 'Fonvieille Thierry  ', 'architectes'),
(679, 'Foucault Isabelle-Emmanuelle   ', 'architectes'),
(680, 'Fouquet Elisabeth ', 'architectes'),
(681, 'Fourcade Jacques', 'architectes'),
(682, 'Fourcade Jacques  ', 'architectes'),
(683, 'Fourcade Jean-Marc   ', 'architectes'),
(684, 'Fourcade Myriam  ', 'architectes'),
(685, 'FOURNIER  ', 'architectes'),
(686, 'Frack Pierre  ', 'architectes'),
(687, 'Fradeira Pédro ', 'architectes'),
(688, 'France Aurelie  ', 'architectes'),
(689, 'Franceries Isabelle   ', 'architectes'),
(690, 'Franceries Isabelle et Vergely Marc   ', 'architectes'),
(691, 'Frances Nicolas', 'architectes'),
(692, 'Frances Nicolas   ', 'architectes'),
(693, 'Francès-Ouchikh Séverine   ', 'architectes'),
(694, 'Franck Mével Architecte   ', 'architectes'),
(695, 'Frauciel Brigitte ', 'architectes'),
(696, 'Frauciel Brigitte  ', 'architectes'),
(697, 'Fraysse Pierre   ', 'architectes'),
(698, 'Fred Naulin  ', 'architectes'),
(699, 'Frenois Emmanuel  ', 'architectes'),
(700, 'FRESQUET FRAUCIEL', 'architectes'),
(701, 'Fresquet Gérard   ', 'architectes'),
(702, 'Freyermuth Guillaume ', 'architectes'),
(703, 'Fricheteau Fabien  ', 'architectes'),
(704, 'Froget Frédéric   ', 'architectes'),
(705, 'Furnemont Pierre  ', 'architectes'),
(706, 'G.C.A. G. Barrué J. P. Bouglon   ', 'architectes'),
(707, 'G.C.A.U  ', 'architectes'),
(708, 'G.Philippe Busieau Architecte   ', 'architectes'),
(709, 'Gabriel Sabine  ', 'architectes'),
(710, 'Gadou Eric  ', 'architectes'),
(711, 'Gaffard Jean Claude', 'architectes'),
(712, 'Gagno Leonard   ', 'architectes'),
(713, 'Gago Gérard ', 'architectes'),
(714, 'Gaichies Jean  ', 'architectes'),
(715, 'Gal-muller Marie-Hélène  ', 'architectes'),
(716, 'Galaup Boris   ', 'architectes'),
(717, 'Galinier Céline ', 'architectes'),
(718, 'Galinier Frères ', 'architectes'),
(719, 'Gallart Roland  ', 'architectes'),
(720, 'Gallego Pierre   ', 'architectes'),
(721, 'Gallet Catherine', 'architectes'),
(722, 'Gallien Philippe   ', 'architectes'),
(723, 'Gallon Catherine  ', 'architectes'),
(724, 'Galtier Alain ', 'architectes'),
(725, 'Gambelin Serge  ', 'architectes'),
(726, 'Gamboa Rui  ', 'architectes'),
(727, 'Ganéo Sébastien ', 'architectes'),
(728, 'Garcia Carlos   ', 'architectes'),
(729, 'Garcia Pablo   ', 'architectes'),
(730, 'Garcia-Cejalvo Carlos   ', 'architectes'),
(731, 'Garcia-Lier Marie-Hélène  ', 'architectes'),
(732, 'Garguillo Palmade (SARL)   ', 'architectes'),
(733, 'Garguillo Palmade (SARL)   ', 'architectes'),
(734, 'Garguillo Palmade Architec   ', 'architectes'),
(735, 'Garlat Jean ', 'architectes'),
(736, 'Gasparotto-Bonnet   ', 'architectes'),
(737, 'Gauci Vincent   ', 'architectes'),
(738, 'GAUSSAIL   ', 'architectes'),
(739, 'Gautrand Marie-José ', 'architectes'),
(740, 'Gay Marie  ', 'architectes'),
(741, 'Gelas Chantal   ', 'architectes'),
(742, 'Geli Bruno  ', 'architectes'),
(743, 'Ghaddar Ismaïl  ', 'architectes'),
(744, 'Giavarini André Et Villeneuve Franck (SCM)  ', 'architectes'),
(745, 'Gilles Pierre-Marie   ', 'architectes'),
(746, 'Ginestet Ludovic  ', 'architectes'),
(747, 'Ginisty Jean-Philippe   ', 'architectes'),
(748, 'Girard Eeckhoutte Françoise  ', 'architectes'),
(749, 'Giron Michel   ', 'architectes'),
(750, 'Glauzy Jean-Claude', 'architectes'),
(751, 'Gobert Daniel  ', 'architectes'),
(752, 'Gobert Daniel   ', 'architectes'),
(753, 'Gomez Juan ', 'architectes'),
(754, 'Gonzalez Raymond   ', 'architectes'),
(755, 'Gorvien-Bentejac Marlène', 'architectes'),
(756, 'Gosnell Jane   ', 'architectes'),
(757, 'Goubert Bruno   ', 'architectes'),
(758, 'Goubert et Landes', 'architectes'),
(759, 'Goussot Hélène Architecte DPLG   ', 'architectes'),
(760, 'Gout Christian   ', 'architectes'),
(761, 'Gouwy Grima Rames   ', 'architectes'),
(762, 'Gouwy Laurent   ', 'architectes'),
(763, 'Grand Pierre  ', 'architectes'),
(764, 'Granges Jean-Louis', 'architectes'),
(765, 'Gres Fanny   ', 'architectes'),
(766, 'Grès Francis ', 'architectes'),
(767, 'Grezes Anthony   ', 'architectes'),
(768, 'Grima Alain   ', 'architectes'),
(769, 'Groupe Coopérative Architecture Urbaine ', 'architectes'),
(770, 'Gueze Jean-François   ', 'architectes'),
(771, 'Gueze Jean-François   ', 'architectes'),
(772, 'Guezou Laurent ', 'architectes'),
(773, 'Guichot Francis ', 'architectes'),
(774, 'Guilbert Philippe ', 'architectes'),
(775, 'Guillemain Patrick   ', 'architectes'),
(776, 'Guillermin Paul-Etienne ', 'architectes'),
(777, 'Guinounet Jean Bernard   ', 'architectes'),
(778, 'Guitton Philippe   ', 'architectes'),
(779, 'Guitton Philippe   ', 'architectes'),
(780, 'H & A Atelier d\'Architectures  ', 'architectes'),
(781, 'H.D.M Architecture  ', 'architectes'),
(782, 'Halais Carole', 'architectes'),
(783, 'Halais Carole  ', 'architectes'),
(784, 'Harancq Jean Christophe ', 'architectes'),
(785, 'Harter Architecture   ', 'architectes'),
(786, 'Harter Architecture (SARL)  ', 'architectes'),
(787, 'HBM Architectes (Holderbach Blanc Marion Architectes)   ', 'architectes'),
(788, 'HDM  ', 'architectes'),
(789, 'Hebert David   ', 'architectes'),
(790, 'Heins Jean-Luc   ', 'architectes'),
(791, 'Heins Maxime   ', 'architectes'),
(792, 'Hélie Christian  ', 'architectes'),
(793, 'Heral Jean-Claude   ', 'architectes'),
(794, 'Hernandez Didier   ', 'architectes'),
(795, 'Hilar Didier   ', 'architectes'),
(796, 'Hillere Fabienne', 'architectes'),
(797, 'Hirsch Laurent  ', 'architectes'),
(798, 'Hody Isabelle   ', 'architectes'),
(799, 'Holderbach Hervé   ', 'architectes'),
(800, 'Hollier Marie  ', 'architectes'),
(801, 'Horguedebat Robert ', 'architectes'),
(802, 'Houplain Christophe   ', 'architectes'),
(803, 'Houze Philippe ', 'architectes'),
(804, 'Hoyer François  ', 'architectes'),
(805, 'Hubert Dominique   ', 'architectes'),
(806, 'Hubert Guillaume   ', 'architectes'),
(807, 'Hucault Kawtar ', 'architectes'),
(808, 'Huchon André  ', 'architectes'),
(809, 'I-dPproject', 'architectes'),
(810, 'I.C.S.O (Ingénierie Coordination Sécurité d\'Olt)   ', 'architectes'),
(811, 'IAM Architectes (SARL) ', 'architectes'),
(812, 'ID d\' Archi Tec  ', 'architectes'),
(813, 'Idea Vitae ', 'architectes'),
(814, 'Idéa Vitaé (SARL)', 'architectes'),
(815, 'Imagina Design  ', 'architectes'),
(816, 'Imbert Joël ', 'architectes'),
(817, 'Imbert Michel   ', 'architectes'),
(818, 'Imbert Pujol (SCM) ', 'architectes'),
(819, 'Imer Sandrine ', 'architectes'),
(820, 'IMS Architecture  ', 'architectes'),
(821, 'Inextremis Architectures (SARL) ', 'architectes'),
(822, 'Inisan Elian   ', 'architectes'),
(823, 'Interstice   ', 'architectes'),
(824, 'Intra Muros ', 'architectes'),
(825, 'Intramuros  ', 'architectes'),
(826, 'Intramuros   ', 'architectes'),
(827, 'Irissou Jean-François  ', 'architectes'),
(828, 'Ishac Muriel   ', 'architectes'),
(829, 'Issot Jean-Marc  ', 'architectes'),
(830, 'Izoulet Daniel ', 'architectes'),
(831, 'J et F Vuilley-Queysselier  ', 'architectes'),
(832, 'Jacob Pol  ', 'architectes'),
(833, 'Jacob Pol   ', 'architectes'),
(834, 'Jamme Dominique  ', 'architectes'),
(835, 'Janote Anne-Thérèse   ', 'architectes'),
(836, 'Jarrige Jean-Michel   ', 'architectes'),
(837, 'Javelaud Jean   ', 'architectes'),
(838, 'Jaymes Christiane  ', 'architectes'),
(839, 'Jean Charrière (SARL) ', 'architectes'),
(840, 'Jean Gombert (EURL)  ', 'architectes'),
(841, 'Jean-Marie Pettes (SARL)  ', 'architectes'),
(842, 'Jeanmaire Grégoire  ', 'architectes'),
(843, 'JFC Architecte   ', 'architectes'),
(844, 'Joel Cochen   ', 'architectes'),
(845, 'Joly Ananda   ', 'architectes'),
(846, 'Jonville Philippe  ', 'architectes'),
(847, 'Joulia Bruno', 'architectes'),
(848, 'Jourdain Jean Marc Architecte', 'architectes'),
(849, 'Jourdan Véronique ', 'architectes'),
(850, 'Joyes Didier ', 'architectes'),
(851, 'Joyes Didier   ', 'architectes'),
(852, 'Julla Marc ', 'architectes'),
(853, 'Julla Marc  ', 'architectes'),
(854, 'Jullière Karine  ', 'architectes'),
(855, 'Junca Gilles  ', 'architectes'),
(856, 'Kantorowicz Emmanuelle  ', 'architectes'),
(857, 'Katelbach Vladimir  ', 'architectes'),
(858, 'Katelbach Vladimir   ', 'architectes'),
(859, 'Kéops Architecture   ', 'architectes'),
(860, 'Kerloveou Marylène   ', 'architectes'),
(861, 'Khorsi José ', 'architectes'),
(862, 'Khorsi-Ordonneaud (SARL)   ', 'architectes'),
(863, 'Kierasinski Frédéric', 'architectes'),
(864, 'Klein Alain  ', 'architectes'),
(865, 'Koenen Brigitte   ', 'architectes'),
(866, 'Kronfol Badih ', 'architectes'),
(867, 'Kudawoo Alain Koami  ', 'architectes'),
(868, 'Kudawoo Alain Koami   ', 'architectes'),
(869, 'L.G.P. Architectes ', 'architectes'),
(870, 'L\'Atelier Dabos (SARL)   ', 'architectes'),
(871, 'L\'atelier Sylvie Martin-Garrin  ', 'architectes'),
(872, 'L\'Atelier T  ', 'architectes'),
(873, 'L\'Ollivier Jean-Marie   ', 'architectes'),
(874, 'Labarthe Valérie  ', 'architectes'),
(875, 'Labérou Jean-Pierre ', 'architectes'),
(876, 'Laborde Christophe  ', 'architectes'),
(877, 'Laborde Pierre', 'architectes'),
(878, 'Laborderie Philippe   ', 'architectes'),
(879, 'Laborderie Taulier Architectes   ', 'architectes'),
(880, 'Laborie Architectes  ', 'architectes'),
(881, 'Laborie Architectes   ', 'architectes'),
(882, 'Lacarce Henry-Bertrand  ', 'architectes'),
(883, 'Lachaize   ', 'architectes'),
(884, 'Lacombe Cédric   ', 'architectes'),
(885, 'Lacombe Jacques  ', 'architectes'),
(886, 'Lacombe Yvan ', 'architectes'),
(887, 'Laconde Martine   ', 'architectes'),
(888, 'Lacoste Eric ', 'architectes'),
(889, 'Lacoste Pierre   ', 'architectes'),
(890, 'Lacour Jean-Pierre', 'architectes'),
(891, 'Lacroix Michel ', 'architectes'),
(892, 'Lacroix Michel ', 'architectes'),
(893, 'Lacroix Michel   ', 'architectes'),
(894, 'Lafforgue Gilles  ', 'architectes'),
(895, 'Lafon Pierre   ', 'architectes'),
(896, 'Laforgue Gisèle   + détails ', 'architectes'),
(897, 'Lagausie Véronique (De)   ', 'architectes'),
(898, 'Laguens Bernard   ', 'architectes'),
(899, 'Laguna Floréal   ', 'architectes'),
(900, 'Lalanne Marc ', 'architectes'),
(901, 'Lallemant Benoit', 'architectes'),
(902, 'Lalucaa Christian ', 'architectes'),
(903, 'Landes Philippe ', 'architectes'),
(904, 'Landreaud Michel ', 'architectes'),
(905, 'Langlois Frédéric ', 'architectes'),
(906, 'Langlois Frédéric ', 'architectes'),
(907, 'Lannoy Delphine  ', 'architectes'),
(908, 'Larcade Fabienne   ', 'architectes'),
(909, 'Larnaudie Architectes  ', 'architectes'),
(910, 'Larraufie Christian  ', 'architectes'),
(911, 'Larregola Célia', 'architectes'),
(912, 'Larroque Eric   ', 'architectes'),
(913, 'Larrouy Et Sicre (SCM)  ', 'architectes'),
(914, 'Larrouy Gérard   ', 'architectes'),
(915, 'Larrouy Jean-Pierre', 'architectes'),
(916, 'Lasmolles Jean-Pierre ', 'architectes'),
(917, 'Lasnier Roger   ', 'architectes'),
(918, 'Lasserre Christian   ', 'architectes'),
(919, 'Laubies Patricia   ', 'architectes'),
(920, 'Laurence Frédéric   ', 'architectes'),
(921, 'Laurence Reneault ', 'architectes'),
(922, 'Laurent Renaud  ', 'architectes'),
(923, 'Laurent Sicard Architecte', 'architectes'),
(924, 'Laurichesse Nathalie   ', 'architectes'),
(925, 'Lavail Jean-Paul   ', 'architectes'),
(926, 'Laverny Guillaume   ', 'architectes'),
(927, 'Lavezzo Fédérica ', 'architectes'),
(928, 'Lavezzo Federica  ', 'architectes'),
(929, 'LB Home Style  ', 'architectes'),
(930, 'LB Home Style  ', 'architectes'),
(931, 'LCR Architectes  ', 'architectes'),
(932, 'Le Pavillon Architectures ', 'architectes'),
(933, 'Le Pavillon Architectures ', 'architectes'),
(934, 'Le Pavillon Architectures   ', 'architectes'),
(935, 'Le Pavillon Architectures   ', 'architectes'),
(936, 'Lecole Didier  ', 'architectes'),
(937, 'Lefevre Florence   ', 'architectes'),
(938, 'Lefort Krystyna', 'architectes'),
(939, 'Legrand Jean-Louis  ', 'architectes'),
(940, 'Leman Dominique   ', 'architectes'),
(941, 'Lemanska-Biron Catherine   ', 'architectes'),
(942, 'Lemoine Denis  ', 'architectes'),
(943, 'Les O les A', 'architectes'),
(944, 'Les Souris en Ville   ', 'architectes'),
(945, 'Letellier Axel   ', 'architectes'),
(946, 'Levesque Jean-Marc   ', 'architectes'),
(947, 'Liarsou et Constant Architectes DPLG ', 'architectes'),
(948, 'Liberman Jacques   ', 'architectes'),
(949, 'Libert Annabel  ', 'architectes'),
(950, 'Lieux Communs   ', 'architectes'),
(951, 'Limbosch Denis ', 'architectes'),
(952, 'Limozin Eric   ', 'architectes'),
(953, 'Lissarague Marie-Martine  ', 'architectes'),
(954, 'Llop Thierry   ', 'architectes'),
(955, 'Loeillet Jacques  ', 'architectes'),
(956, 'Loisele Marc   ', 'architectes'),
(957, 'Lopez Alain', 'architectes'),
(958, 'Lopez Alain   ', 'architectes'),
(959, 'Louchard Patricia  ', 'architectes'),
(960, 'Loupiac Philippe   ', 'architectes'),
(961, 'Loupiac-Roux Nicole ', 'architectes'),
(962, 'Lubes (SARL)   ', 'architectes'),
(963, 'Lucas Bruno ', 'architectes'),
(964, 'Lucas Bruno   ', 'architectes'),
(965, 'Lugan Boris', 'architectes'),
(966, 'Lugol Virginie ', 'architectes'),
(967, 'M et S Architectes ', 'architectes'),
(968, 'M J Pilott ', 'architectes'),
(969, 'M. Yvan Ferreol   ', 'architectes'),
(970, 'M.D Architecture   ', 'architectes'),
(971, 'M.G.S   ', 'architectes'),
(972, 'Ma Cabane Atelier  ', 'architectes'),
(973, 'Maclou Madjid   ', 'architectes'),
(974, 'Mad', 'architectes'),
(975, 'Mad (SARL)   ', 'architectes'),
(976, 'Madaule Chantal   ', 'architectes'),
(977, 'Maillet Pascal   ', 'architectes'),
(978, 'Maindive Stéphane  ', 'architectes'),
(979, 'Maisonabe   ', 'architectes'),
(980, 'Majoreill Pierre   ', 'architectes'),
(981, 'Majorelle Facilities  ', 'architectes'),
(982, 'Male Bernard   ', 'architectes'),
(983, 'Malvy Benoit ', 'architectes'),
(984, 'Malvy Benoit   ', 'architectes'),
(985, 'Manenc Sandra   ', 'architectes'),
(986, 'Manente Jean-Luc   ', 'architectes'),
(987, 'Mangeard André  ', 'architectes'),
(988, 'Marassé Pierre   ', 'architectes'),
(989, 'Marausse Jack ', 'architectes'),
(990, 'Marc Laurens Pierre Loustau  ', 'architectes'),
(991, 'Marcato Bruno   ', 'architectes'),
(992, 'Marcillac Guy', 'architectes'),
(993, 'Marien de Hoym Gabriel (De) ', 'architectes'),
(994, 'Marion Jean-François   ', 'architectes'),
(995, 'Marion Xavier  ', 'architectes'),
(996, 'MARONESE   ', 'architectes'),
(997, 'Maronèse Guy  ', 'architectes'),
(998, 'Maronese Guy   ', 'architectes'),
(999, 'Marre Gérard ', 'architectes'),
(1000, 'Marsaa-Poey Augustin   ', 'architectes'),
(1001, 'Marti Gérard ', 'architectes'),
(1002, 'MARTI RAKOTO ARCHITECTURE   ', 'architectes'),
(1003, 'Martin Jean-Charles   ', 'architectes'),
(1004, 'Martinel Benoit  ', 'architectes'),
(1005, 'Martinez Franck ', 'architectes'),
(1006, 'Martinez Franck   ', 'architectes'),
(1007, 'Martinez Jézabel   ', 'architectes'),
(1008, 'Martinez Marino   ', 'architectes'),
(1009, 'Martinie (SCP)   ', 'architectes'),
(1010, 'Marty Alain   ', 'architectes'),
(1011, 'Marty Didier', 'architectes'),
(1012, 'Marty Didier ', 'architectes'),
(1013, 'Marty Jean-Claude ', 'architectes'),
(1014, 'Marty Jean-Claude  ', 'architectes'),
(1015, 'Marziani-nunez Isabelle ', 'architectes'),
(1016, 'Mateu Stéphan', 'architectes'),
(1017, 'Mattiuzzo Franck  ', 'architectes'),
(1018, 'Maurel Magali   ', 'architectes'),
(1019, 'Maury Alain', 'architectes'),
(1020, 'Maviel Jean-Pierre   ', 'architectes'),
(1021, 'Maynard Serge   ', 'architectes'),
(1022, 'Mazet Yves ', 'architectes'),
(1023, 'Mazet Yves  ', 'architectes'),
(1024, 'Mazet Yves   ', 'architectes'),
(1025, 'MB Concept  ', 'architectes'),
(1026, 'Mechain Alain ', 'architectes'),
(1027, 'Medelsi Djezzar Leila   ', 'architectes'),
(1028, 'Meilleurat Brice  ', 'architectes'),
(1029, 'Mendez Matthieu  ', 'architectes'),
(1030, 'Merhi Emile  ', 'architectes'),
(1031, 'Mérillou Thierry   ', 'architectes'),
(1032, 'Merz Pascal  ', 'architectes'),
(1033, 'Meunier Roger ', 'architectes'),
(1034, 'Meunier Roger   ', 'architectes'),
(1035, 'Mevel Franck ', 'architectes'),
(1036, 'Meyers Pierre-Jean   ', 'architectes'),
(1037, 'Michel Estève Et Claude Alos Moreno   ', 'architectes'),
(1038, 'Michel-Caillet Hélène ', 'architectes'),
(1039, 'Michot Gilles ', 'architectes'),
(1040, 'Milani Richard  ', 'architectes'),
(1041, 'Milleville Jean  ', 'architectes'),
(1042, 'Mirobolant Boris  ', 'architectes'),
(1043, 'Miroiterie Orazio   ', 'architectes'),
(1044, 'Mirouze Yves   ', 'architectes'),
(1045, 'Mis Stéphane   ', 'architectes'),
(1046, 'Molinier-Brouard (SCP)   ', 'architectes'),
(1047, 'Moly Patrick   ', 'architectes'),
(1048, 'Mondine Anne  ', 'architectes'),
(1049, 'Monferran Carpentier   ', 'architectes'),
(1050, 'Monferran-carpentier Stéphanie   ', 'architectes'),
(1051, 'Monier Christophe   ', 'architectes'),
(1052, 'Monill Nicolas   ', 'architectes'),
(1053, 'Montal Michel   ', 'architectes'),
(1054, 'Montamat Myriam ', 'architectes'),
(1055, 'Montarnal Hervé ', 'architectes'),
(1056, 'Montels Etilé Marie-Reine ', 'architectes'),
(1057, 'Montlaur Bellouard  ', 'architectes'),
(1058, 'Montoriol Valérie   ', 'architectes'),
(1059, 'Morand Eric ', 'architectes'),
(1060, 'Morice Daniel  ', 'architectes'),
(1061, 'Morinière Associés Architecture Intérieure (Sarl)   ', 'architectes'),
(1062, 'Moro Alain-Bernard ', 'architectes'),
(1063, 'Moroni Marina   ', 'architectes'),
(1064, 'Moschetto Fabrice   ', 'architectes'),
(1065, 'Mosse Souilhac (SARL)   ', 'architectes'),
(1066, 'Mougel Lazare  ', 'architectes'),
(1067, 'Moulis Marc  ', 'architectes'),
(1068, 'Mouneyrac Christine  ', 'architectes'),
(1069, 'Mourareau Didier   ', 'architectes'),
(1070, 'Mousseigne Patrick   ', 'architectes'),
(1071, 'Moutet Patrick   ', 'architectes'),
(1072, 'Mouyssac Esnault Karine   ', 'architectes'),
(1073, 'Mp Marie Presani ', 'architectes'),
(1074, 'MTI Concept   ', 'architectes'),
(1075, 'Muller Feuga Paul  ', 'architectes'),
(1076, 'Munier Hélène  ', 'architectes'),
(1077, 'Munoz Marynelva   ', 'architectes'),
(1078, 'Munoz Marynelva   ', 'architectes'),
(1079, 'Munoz Numen Cedric  ', 'architectes'),
(1080, 'Murillo François ', 'architectes'),
(1081, 'Murzeau Renaud ', 'architectes'),
(1082, 'Mussato Xavière  ', 'architectes'),
(1083, 'Mussato Xavière   ', 'architectes'),
(1084, 'My Architectes Souviron-lacombe   ', 'architectes'),
(1085, 'Naude David   ', 'architectes'),
(1086, 'Navarro Julio ', 'architectes'),
(1087, 'Navarro Julio   ', 'architectes'),
(1088, 'Navarro Julio   ', 'architectes'),
(1089, 'Nebula JP Leblanc architecte DPLG   ', 'architectes'),
(1090, 'Nelson Ugo   ', 'architectes'),
(1091, 'Nelson Ugo   ', 'architectes'),
(1092, 'Neples Pierre   ', 'architectes'),
(1093, 'NES-N\'co Architecture', 'architectes'),
(1094, 'NewConcept  ', 'architectes'),
(1095, 'Nicot Julien', 'architectes'),
(1096, 'NJ Archi   ', 'architectes'),
(1097, 'Noailles Valérie ', 'architectes'),
(1098, 'Norbert Brail  ', 'architectes'),
(1099, 'Nouvel Sophie  ', 'architectes'),
(1100, 'Nunzi Catherine   ', 'architectes'),
(1101, 'Nuttens Sébastien   ', 'architectes'),
(1102, 'Occhipinti Sauveur   ', 'architectes'),
(1103, 'OeCO Architectes   ', 'architectes'),
(1104, 'Olivan Maria  ', 'architectes'),
(1105, 'Olivet Eve et Faillie Bertrand (SCP)  ', 'architectes'),
(1106, 'Ordonneaud Francis  ', 'architectes'),
(1107, 'Ordonneaud Francis   ', 'architectes'),
(1108, 'Ordre des Architectes   ', 'architectes'),
(1109, 'Orliac Michelle   ', 'architectes'),
(1110, 'Orru Thierry ', 'architectes'),
(1111, 'Ostermeyer Christophe  ', 'architectes'),
(1112, 'Ouvrieux Yann   ', 'architectes'),
(1113, 'Ovinet Pierre   ', 'architectes'),
(1114, 'Page Dominique   ', 'architectes'),
(1115, 'Pagès Christian   ', 'architectes'),
(1116, 'Pagès Christian   ', 'architectes'),
(1117, 'Pagnoux Jean-Paul  ', 'architectes'),
(1118, 'Pailhes Matthieu  ', 'architectes'),
(1119, 'Paintandre Bernard ', 'architectes'),
(1120, 'Painvin Jean   ', 'architectes'),
(1121, 'Palauqui Guy-Dominique   ', 'architectes'),
(1122, 'Palé Stéphane   ', 'architectes'),
(1123, 'Pallares Laurent (et Cindy)   ', 'architectes'),
(1124, 'Pamies-Lacuve Hélène   ', 'architectes'),
(1125, 'Pascale Eric ', 'architectes'),
(1126, 'Pascale Eric ', 'architectes'),
(1127, 'Pastier Bernard   ', 'architectes'),
(1128, 'Patrick Montagne (SARL) ', 'architectes');
INSERT INTO `contact_architect` (`id`, `entreprise`, `profession`) VALUES
(1129, 'Payraudeau Julien ', 'architectes'),
(1130, 'Péclose Alain  ', 'architectes'),
(1131, 'Péclose Alain   ', 'architectes'),
(1132, 'Pédra Gilbert  ', 'architectes'),
(1133, 'Pedurthe Joël  ', 'architectes'),
(1134, 'Pedurthe Joël  ', 'architectes'),
(1135, 'Pegot-ogier Jean-Jacques   ', 'architectes'),
(1136, 'Pelous Christophe (Eurl)   ', 'architectes'),
(1137, 'Peral Christian   ', 'architectes'),
(1138, 'Pérès Emmanuel   ', 'architectes'),
(1139, 'Peretto Sylvain   ', 'architectes'),
(1140, 'Périé Jean-Claude   ', 'architectes'),
(1141, 'Périgueux Patrick   ', 'architectes'),
(1142, 'Périn Claude   ', 'architectes'),
(1143, 'Peron Michel ', 'architectes'),
(1144, 'Perrin Camille   ', 'architectes'),
(1145, 'Pesqué Claude ', 'architectes'),
(1146, 'Pessant Fabien  ', 'architectes'),
(1147, 'Pettenati Philippe ', 'architectes'),
(1148, 'Pezet François ', 'architectes'),
(1149, 'Pezet François  ', 'architectes'),
(1150, 'Phaarchitecture', 'architectes'),
(1151, 'Philippe Gambino ', 'architectes'),
(1152, 'Philippe Henri ', 'architectes'),
(1153, 'Philippe Lamarque Architecture ', 'architectes'),
(1154, 'PHILIPPE PREVOT ARCHITECTE (SARL)   ', 'architectes'),
(1155, 'Phu Clairie   ', 'architectes'),
(1156, 'Phu Clairie   ', 'architectes'),
(1157, 'Pierrard Sébastien', 'architectes'),
(1158, 'Pierre Calmels Architecture  ', 'architectes'),
(1159, 'Pierre Sarres Création ', 'architectes'),
(1160, 'Pierre Sarrès Création   ', 'architectes'),
(1161, 'Pierre Yves Chaumont ', 'architectes'),
(1162, 'Pigment Design   ', 'architectes'),
(1163, 'Pinel Roland  ', 'architectes'),
(1164, 'Pinel Roland  ', 'architectes'),
(1165, 'Pinon Xavier   ', 'architectes'),
(1166, 'Piquemal Claire   ', 'architectes'),
(1167, 'Pirot Marie  ', 'architectes'),
(1168, 'Pisciotta Guy  ', 'architectes'),
(1169, 'Pivotto Albert   ', 'architectes'),
(1170, 'POCHET LETITIA   ', 'architectes'),
(1171, 'Poggiali Mario  ', 'architectes'),
(1172, 'Point Mire   ', 'architectes'),
(1173, 'Poirier-brou Isabelle ', 'architectes'),
(1174, 'Ponchet Daniel  ', 'architectes'),
(1175, 'Ponchet Daniel   ', 'architectes'),
(1176, 'Pont Roland   ', 'architectes'),
(1177, 'Popov Boris  ', 'architectes'),
(1178, 'Porte-trauque Julie', 'architectes'),
(1179, 'Porte-trauque Julie   ', 'architectes'),
(1180, 'Poublan Dominique  ', 'architectes'),
(1181, 'Pouget Agnès   ', 'architectes'),
(1182, 'Poumeyrol Patrick   ', 'architectes'),
(1183, 'Poux François  ', 'architectes'),
(1184, 'PR Architecture   ', 'architectes'),
(1185, 'Pradal Maurice', 'architectes'),
(1186, 'Pratviel Alain ', 'architectes'),
(1187, 'Prax Architectes ', 'architectes'),
(1188, 'Projet 310   ', 'architectes'),
(1189, 'Pronaos   ', 'architectes'),
(1190, 'Prunet Jean-Noël   ', 'architectes'),
(1191, 'Puech François   ', 'architectes'),
(1192, 'Puech Michel  ', 'architectes'),
(1193, 'Puech René ', 'architectes'),
(1194, 'Puertolas Alain  ', 'architectes'),
(1195, 'Puig-Pujol Architectures', 'architectes'),
(1196, 'Pujol Dominique', 'architectes'),
(1197, 'Puyo Jean-Yves', 'architectes'),
(1198, 'Puyol Anne  ', 'architectes'),
(1199, 'Puyol Anne   ', 'architectes'),
(1200, 'Quadripil (SARL) ', 'architectes'),
(1201, 'Rabisse André ', 'architectes'),
(1202, 'Rabisse André   ', 'architectes'),
(1203, 'Raluy Louis et Alexandra   ', 'architectes'),
(1204, 'Ramadour Robert   ', 'architectes'),
(1205, 'Rames Jean-Luc', 'architectes'),
(1206, 'Rames Jean-Luc   ', 'architectes'),
(1207, 'Ramon Cécile  ', 'architectes'),
(1208, 'Raspaud Jean-François  ', 'architectes'),
(1209, 'Ravaux Fabien ', 'architectes'),
(1210, 'Ravaux Fabien ', 'architectes'),
(1211, 'Ravaux Fabien   ', 'architectes'),
(1212, 'Ravel Xavier  ', 'architectes'),
(1213, 'Ravelojaona Vololona', 'architectes'),
(1214, 'Ravoavison William Architecte ', 'architectes'),
(1215, 'Rawnsley Sean   ', 'architectes'),
(1216, 'Raymond Marc ', 'architectes'),
(1217, 'Raymond Marc  ', 'architectes'),
(1218, 'Raynal Claude ', 'architectes'),
(1219, 'REBIERE JEAN LOUIS   ', 'architectes'),
(1220, 'Rechatin David', 'architectes'),
(1221, 'Recoules Amélie ', 'architectes'),
(1222, 'Redon Pascale (De)   ', 'architectes'),
(1223, 'Rella Pierre   ', 'architectes'),
(1224, 'Renuy Didier  ', 'architectes'),
(1225, 'Rey Jérome ', 'architectes'),
(1226, 'Reymond Nathalie  ', 'architectes'),
(1227, 'Richard Alain   ', 'architectes'),
(1228, 'Richardson Georges ', 'architectes'),
(1229, 'Richardson Georges   ', 'architectes'),
(1230, 'Riera Frédérique   ', 'architectes'),
(1231, 'Rieudebat Guy', 'architectes'),
(1232, 'Rigal Henriette ', 'architectes'),
(1233, 'Rigoux Claude  ', 'architectes'),
(1234, 'Rigual Alain  ', 'architectes'),
(1235, 'Rinaldi Jérémy ', 'architectes'),
(1236, 'Rinkel Jean  ', 'architectes'),
(1237, 'Rivel Jean-Philippe', 'architectes'),
(1238, 'Rives Yvan-Jean', 'architectes'),
(1239, 'Robert Christophe   ', 'architectes'),
(1240, 'Robert Philippe et Robert Christophe ', 'architectes'),
(1241, 'Robin Frédéric  ', 'architectes'),
(1242, 'Robin Frédérique   ', 'architectes'),
(1243, 'Robin Romuald (architecte D.P.L.G.)  ', 'architectes'),
(1244, 'Roche Nicolas  ', 'architectes'),
(1245, 'Rocheteau Adeline', 'architectes'),
(1246, 'Rocheteau Adéline   ', 'architectes'),
(1247, 'Rodrigo Louis  ', 'architectes'),
(1248, 'RODRIGUEZ   ', 'architectes'),
(1249, 'Rodriguez Arquitectura', 'architectes'),
(1250, 'Rogiers Stef', 'architectes'),
(1251, 'Romeu Gilbert ', 'architectes'),
(1252, 'Roques Laurence  ', 'architectes'),
(1253, 'Rosales Pascal  ', 'architectes'),
(1254, 'Rouch Henri   ', 'architectes'),
(1255, 'Rouède Pierre  ', 'architectes'),
(1256, 'Rougé David  ', 'architectes'),
(1257, 'Rouillard Tony   ', 'architectes'),
(1258, 'Rouillon Yann   ', 'architectes'),
(1259, 'Rouquette Vidal  ', 'architectes'),
(1260, 'Roussel Christelle   ', 'architectes'),
(1261, 'Rousselet Yvan  ', 'architectes'),
(1262, 'Routurier Pierre   ', 'architectes'),
(1263, 'Rouyard Isabelle   ', 'architectes'),
(1264, 'Rovira Jean-Louis   ', 'architectes'),
(1265, 'Rozier Ginisty (SCP)   ', 'architectes'),
(1266, 'Rozier Jean-Jacques  ', 'architectes'),
(1267, 'Ruaudel Marc   ', 'architectes'),
(1268, 'Ruffat André', 'architectes'),
(1269, 'Rupp David    ', 'architectes'),
(1270, 'Ryckwaert (SELARL) ', 'architectes'),
(1271, 'Sabarich Bonay Sophie ', 'architectes'),
(1272, 'Sabarich Bonay Sophie  ', 'architectes'),
(1273, 'Sabarthes Anick ', 'architectes'),
(1274, 'Sabata Pierre ', 'architectes'),
(1275, 'Sabathier Guillaume ', 'architectes'),
(1276, 'Sabatié et Philippe  ', 'architectes'),
(1277, 'Sabatié Rosanna  ', 'architectes'),
(1278, 'Sabatier Guy Et Jean-Pascal (SCP d\'architectes)  ', 'architectes'),
(1279, 'Sacre Jean-François  ', 'architectes'),
(1280, 'Sage Laurent ', 'architectes'),
(1281, 'Sagné Serge ', 'architectes'),
(1282, 'Sagnes  ', 'architectes'),
(1283, 'Sagot Pierre   ', 'architectes'),
(1284, 'Sahel Mohamed  ', 'architectes'),
(1285, 'Saint Laurent   ', 'architectes'),
(1286, 'Saint Martin Jean-Bernard ', 'architectes'),
(1287, 'Saint Martin Marc-Eurl D\'Architecture', 'architectes'),
(1288, 'Salambehere Cécile   ', 'architectes'),
(1289, 'Salem Roger  ', 'architectes'),
(1290, 'Salem Roger  ', 'architectes'),
(1291, 'Sallée Marie ', 'architectes'),
(1292, 'Salomon Bernard   ', 'architectes'),
(1293, 'Salvat Jean  ', 'architectes'),
(1294, 'Sancerry Jean-Louis ', 'architectes'),
(1295, 'Sancerry Patrick   ', 'architectes'),
(1296, 'Sanchez Olivier ', 'architectes'),
(1297, 'SARL...Architectes   ', 'architectes'),
(1298, 'Sarracanie Jean-Paul', 'architectes'),
(1299, 'Sarracanie Jean-Paul et Péclose Alain (SCM) ', 'architectes'),
(1300, 'Sartre Marion   ', 'architectes'),
(1301, 'Sartre Michel   ', 'architectes'),
(1302, 'Sassus Anne   ', 'architectes'),
(1303, 'Sassus Jean ', 'architectes'),
(1304, 'Sassus Jean ', 'architectes'),
(1305, 'Saurel Didier', 'architectes'),
(1306, 'Sauvageon Hervé  ', 'architectes'),
(1307, 'Savoye Max   ', 'architectes'),
(1308, 'Savu Véronique   ', 'architectes'),
(1309, 'Saysset Jerome ', 'architectes'),
(1310, 'Scalene Architectes  ', 'architectes'),
(1311, 'Scattolin Lionel  ', 'architectes'),
(1312, 'Schmitt Jean-Louis   ', 'architectes'),
(1313, 'Schneider Franz', 'architectes'),
(1314, 'SCM Jarrot-Monier  ', 'architectes'),
(1315, 'SCP Architecture Vigneu Philippe et Zilio Serge ', 'architectes'),
(1316, 'SCP d\'architecture Fleuriot, Pirovano, Terlaud ', 'architectes'),
(1317, 'SCP ESPAGNO MILANI', 'architectes'),
(1318, 'SCP Guerrand Pierre et Richard Alain  ', 'architectes'),
(1319, 'SCP Kieken & Kerloveou   ', 'architectes'),
(1320, 'Segonzat Catherine ', 'architectes'),
(1321, 'Seguela Jean-Pierre ', 'architectes'),
(1322, 'Seguier Virginie   ', 'architectes'),
(1323, 'Seidel David   ', 'architectes'),
(1324, 'Selene (Scm)   ', 'architectes'),
(1325, 'Sellin Et Montariol Architectes Associés   ', 'architectes'),
(1326, 'Sentenac Prax (Selarl)   ', 'architectes'),
(1327, 'Séquences   ', 'architectes'),
(1328, 'Ser Georges-Henry  ', 'architectes'),
(1329, 'Séran Michel', 'architectes'),
(1330, 'Sergiampietri Bernard ', 'architectes'),
(1331, 'Servin Pascal ', 'architectes'),
(1332, 'Sery Michel ', 'architectes'),
(1333, 'SEUIL ARCHITECTURE', 'architectes'),
(1334, 'Sibel Tek Blot (STB)   ', 'architectes'),
(1335, 'Sicart Pierre  ', 'architectes'),
(1336, 'Sicre Saint Paul Hugues', 'architectes'),
(1337, 'Sieurac Jean-Claude ', 'architectes'),
(1338, 'SIFRA  ', 'architectes'),
(1339, 'Simonetti Serge ', 'architectes'),
(1340, 'Sinquin Pascale   ', 'architectes'),
(1341, 'Sirach Viennois Architecture ', 'architectes'),
(1342, 'Sirvain Jean-François ', 'architectes'),
(1343, 'Sirvain Jean-François ', 'architectes'),
(1344, 'Sirvin Jean-Pierre ', 'architectes'),
(1345, 'Société D\'Architecture Henri-Charles Ferry   ', 'architectes'),
(1346, 'Société D\'Architecture Henri-Charles Ferry (Architectes D.P.L.G)  ', 'architectes'),
(1347, 'Sophie Malric (EURL)  ', 'architectes'),
(1348, 'Sota  ', 'architectes'),
(1349, 'Souilhac Nicole ', 'architectes'),
(1350, 'Soulet Jean Jacques ', 'architectes'),
(1351, 'Soulet Jean-Jacques   ', 'architectes'),
(1352, 'Souliet Georges   ', 'architectes'),
(1353, 'Soum Joël ', 'architectes'),
(1354, 'Soustelle Philippe  ', 'architectes'),
(1355, 'Souviron Michel ', 'architectes'),
(1356, 'Square Boutaud Jean-Claude Viennot Christian  ', 'architectes'),
(1357, 'Steiner Gabrielle ', 'architectes'),
(1358, 'Stéphane Lopez Architecture', 'architectes'),
(1359, 'Stocco David  ', 'architectes'),
(1360, 'Structur\'M   ', 'architectes'),
(1361, 'Structure\'M   ', 'architectes'),
(1362, 'Studio D  ', 'architectes'),
(1363, 'Studio K   ', 'architectes'),
(1364, 'Studio Numérobis   ', 'architectes'),
(1365, 'Sudre Rosélyne   ', 'architectes'),
(1366, 'Suduca Daniel', 'architectes'),
(1367, 'Sully Finances  ', 'architectes'),
(1368, 'Sutter Jacques ', 'architectes'),
(1369, 'Synapsis Creation   ', 'architectes'),
(1370, 'Synopsys   ', 'architectes'),
(1371, 'Taillandier Pierre ', 'architectes'),
(1372, 'Tajan Patrice   ', 'architectes'),
(1373, 'Tandem Architecture  ', 'architectes'),
(1374, 'Tara Decoration (SARL)   ', 'architectes'),
(1375, 'Tarrade Archi Beatrice   ', 'architectes'),
(1376, 'Tarrade Béatrice   ', 'architectes'),
(1377, 'Tartas Jacques ', 'architectes'),
(1378, 'Tartas Jacques   ', 'architectes'),
(1379, 'Taulier Gilles ', 'architectes'),
(1380, 'Taupiac Anne-Marie   ', 'architectes'),
(1381, 'TCArchitecture  ', 'architectes'),
(1382, 'Techplan 3D   ', 'architectes'),
(1383, 'Techplan3d   ', 'architectes'),
(1384, 'Terradas Marie-Pierre  ', 'architectes'),
(1385, 'Terral Delhomme Archi ', 'architectes'),
(1386, 'Terral Philippe   ', 'architectes'),
(1387, 'Testard Olivier  ', 'architectes'),
(1388, 'Teychene Hervé   ', 'architectes'),
(1389, 'Thouron Pascal ', 'architectes'),
(1390, 'Thuilliez Nathalie  ', 'architectes'),
(1391, 'Thuries Architecte ', 'architectes'),
(1392, 'Tico Philippe   ', 'architectes'),
(1393, 'Tico Philippe   ', 'architectes'),
(1394, 'Tilt (Sarl)', 'architectes'),
(1395, 'Tollon Luc  ', 'architectes'),
(1396, 'Tomasin Marc  ', 'architectes'),
(1397, 'Toulemonde Eric  ', 'architectes'),
(1398, 'Tournier Jean Paul   ', 'architectes'),
(1399, 'Tourougui Najia', 'architectes'),
(1400, 'Trabon Pierre-Jean   ', 'architectes'),
(1401, 'Tramond Vincent   ', 'architectes'),
(1402, 'Tremoliere Jean Claude  ', 'architectes'),
(1403, 'Trier Terence   ', 'architectes'),
(1404, 'Triptyque  ', 'architectes'),
(1405, 'Uhde Marie-Line', 'architectes'),
(1406, 'Ulbrich Bodo ', 'architectes'),
(1407, 'Un Certain Regard ', 'architectes'),
(1408, 'Uni-Architecture   ', 'architectes'),
(1409, 'V&A D\'Interieur ', 'architectes'),
(1410, 'V2S Architectes', 'architectes'),
(1411, 'Vadon Philippe   ', 'architectes'),
(1412, 'Valadas - Fernandez - Laverny (SCM)  ', 'architectes'),
(1413, 'Valadas - Fernandez - Laverny (SCM)  ', 'architectes'),
(1414, 'Valentin Manuel ', 'architectes'),
(1415, 'Vales Richard ', 'architectes'),
(1416, 'Valette Jean-Pierre  ', 'architectes'),
(1417, 'Vallot Sylvain   ', 'architectes'),
(1418, 'Valteau Catherine', 'architectes'),
(1419, 'Valteau Catherine   ', 'architectes'),
(1420, 'Van Andringa Stéphane   ', 'architectes'),
(1421, 'Vaquie Serge  ', 'architectes'),
(1422, 'Vaylac Pierre-André   ', 'architectes'),
(1423, 'Veaux Jean-Michel ', 'architectes'),
(1424, 'Velo Gwenaël   ', 'architectes'),
(1425, 'Verdier Diana  ', 'architectes'),
(1426, 'Verdier Frédérique   ', 'architectes'),
(1427, 'Vergely Marc   ', 'architectes'),
(1428, 'Vergely Marc   ', 'architectes'),
(1429, 'Vergnes Corinne (architecte DPLG)   ', 'architectes'),
(1430, 'Verniol Sébastien ', 'architectes'),
(1431, 'Veronique Joffre Architecture  ', 'architectes'),
(1432, 'Verret Pierre-Edouard  ', 'architectes'),
(1433, 'Vesins Claude (de) ', 'architectes'),
(1434, 'Viala Jacques   ', 'architectes'),
(1435, 'Viala Jacques   ', 'architectes'),
(1436, 'Vialaret Gérard   ', 'architectes'),
(1437, 'Vidal Philippe ', 'architectes'),
(1438, 'Vidrequin Didier  ', 'architectes'),
(1439, 'Vie Josian  ', 'architectes'),
(1440, 'Vignes Florence  ', 'architectes'),
(1441, 'Vignot Ghislain  ', 'architectes'),
(1442, 'Vigo René   ', 'architectes'),
(1443, 'Vigo René   ', 'architectes'),
(1444, 'Viguier Claude   ', 'architectes'),
(1445, 'Villemagne Jean-Pierre   ', 'architectes'),
(1446, 'Villeneuve Franck  ', 'architectes'),
(1447, 'Villez Sylvain  ', 'architectes'),
(1448, 'Voinchet Bernard   ', 'architectes'),
(1449, 'Voinchet Raphaël  ', 'architectes'),
(1450, 'Vollhardt Philippe   ', 'architectes'),
(1451, 'Volpatti Gilbert   ', 'architectes'),
(1452, 'Vouge Jacques  ', 'architectes'),
(1453, 'W Architectures (SARL)   ', 'architectes'),
(1454, 'W-Architectures (SARL)', 'architectes'),
(1455, 'Weber Bruno-Ivan   ', 'architectes'),
(1456, 'Weissmuller Pierre   ', 'architectes'),
(1457, 'Weissmuller Pierre   ', 'architectes'),
(1458, 'White Nigel  ', 'architectes'),
(1459, 'White Nigel  ', 'architectes'),
(1460, 'Whittmore Tim ', 'architectes'),
(1461, 'Witt Philippe  ', 'architectes'),
(1462, 'Wolff Kristian  ', 'architectes'),
(1463, 'Yubero Et Pailhes Architecture', 'architectes'),
(1464, 'Yubero et Pailhes Architecture  ', 'architectes'),
(1465, 'Zaoui Bahia ', 'architectes'),
(1466, 'Zavagno Marc  ', 'architectes'),
(1467, 'Zemlianoy Alain-Christian', 'architectes'),
(1468, 'Zine Malika  ', 'architectes'),
(1469, 'Zine Malika   ', 'architectes'),
(1470, 'Zivanovic Gradimir  ', 'architectes');

-- --------------------------------------------------------

--
-- Structure de la table `contenance_bornage`
--

DROP TABLE IF EXISTS `contenance_bornage`;
CREATE TABLE IF NOT EXISTS `contenance_bornage` (
  `id` int NOT NULL AUTO_INCREMENT,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `bornage_en_cour` tinyint(1) DEFAULT NULL,
  `ne_sais_pas` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_44DF503A8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `contenance_cadastrale`
--

DROP TABLE IF EXISTS `contenance_cadastrale`;
CREATE TABLE IF NOT EXISTS `contenance_cadastrale` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_8E3E2678A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `cours_eau_terrain`
--

DROP TABLE IF EXISTS `cours_eau_terrain`;
CREATE TABLE IF NOT EXISTS `cours_eau_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `cours_deau` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_55BE6F798A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `cour_eau_limite_terrain`
--

DROP TABLE IF EXISTS `cour_eau_limite_terrain`;
CREATE TABLE IF NOT EXISTS `cour_eau_limite_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `metres` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_2A2ACB328A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `demenbrement_prop`
--

DROP TABLE IF EXISTS `demenbrement_prop`;
CREATE TABLE IF NOT EXISTS `demenbrement_prop` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_D7DCF5968A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `densite`
--

DROP TABLE IF EXISTS `densite`;
CREATE TABLE IF NOT EXISTS `densite` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `densite`
--

INSERT INTO `densite` (`id`, `name`) VALUES
(1, 'Dense'),
(2, 'Peu dense'),
(3, 'Peu dense');

-- --------------------------------------------------------

--
-- Structure de la table `deplacement`
--

DROP TABLE IF EXISTS `deplacement`;
CREATE TABLE IF NOT EXISTS `deplacement` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int DEFAULT NULL,
  `statut_id` int DEFAULT NULL,
  `lieu` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `date` datetime DEFAULT NULL,
  `duree` time DEFAULT NULL,
  `cout` decimal(10,2) DEFAULT NULL,
  `cout_peage` decimal(10,2) DEFAULT NULL,
  `cout_carburant` decimal(10,2) DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `payer` tinyint(1) NOT NULL,
  `kilometrage_depart` decimal(10,0) DEFAULT NULL,
  `kilometrage_arrive` decimal(10,0) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_1296FAC2D2235D39` (`tache_id`),
  KEY `IDX_1296FAC2F6203804` (`statut_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `devis`
--

DROP TABLE IF EXISTS `devis`;
CREATE TABLE IF NOT EXISTS `devis` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `date` datetime DEFAULT NULL,
  `projet_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_8B27C52BC18272` (`projet_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `doctrine_migration_versions`
--

DROP TABLE IF EXISTS `doctrine_migration_versions`;
CREATE TABLE IF NOT EXISTS `doctrine_migration_versions` (
  `version` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `executed_at` datetime DEFAULT NULL,
  `execution_time` int DEFAULT NULL,
  PRIMARY KEY (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Déchargement des données de la table `doctrine_migration_versions`
--

INSERT INTO `doctrine_migration_versions` (`version`, `executed_at`, `execution_time`) VALUES
('DoctrineMigrations\\Version20240814141300', '2024-08-14 14:13:10', 185),
('DoctrineMigrations\\Version20240814141656', '2024-08-14 14:17:02', 128),
('DoctrineMigrations\\Version20240816134359', '2024-08-16 13:44:07', 123),
('DoctrineMigrations\\Version20240819085828', '2024-08-19 08:58:39', 121),
('DoctrineMigrations\\Version20240819090836', '2024-08-19 09:08:44', 140),
('DoctrineMigrations\\Version20240819091112', '2024-08-19 09:11:19', 22),
('DoctrineMigrations\\Version20240819131558', '2024-08-19 13:16:09', 309),
('DoctrineMigrations\\Version20240819150345', '2024-08-19 15:03:57', 203),
('DoctrineMigrations\\Version20240820092633', '2024-08-20 09:26:40', 194),
('DoctrineMigrations\\Version20240923091655', '2024-09-23 09:17:07', 121),
('DoctrineMigrations\\Version20240923123551', '2024-09-23 12:35:58', 54),
('DoctrineMigrations\\Version20240923132559', '2024-09-23 13:26:11', 75);

-- --------------------------------------------------------

--
-- Structure de la table `document`
--

DROP TABLE IF EXISTS `document`;
CREATE TABLE IF NOT EXISTS `document` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int DEFAULT NULL,
  `name` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `cout_achat_document` decimal(10,2) DEFAULT NULL,
  `cout_document_commande` decimal(10,2) DEFAULT NULL,
  `cout_document_produit` decimal(10,2) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `payer` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_D8698A76D2235D39` (`tache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `doc_local_urbanisme`
--

DROP TABLE IF EXISTS `doc_local_urbanisme`;
CREATE TABLE IF NOT EXISTS `doc_local_urbanisme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `type_id` int DEFAULT NULL,
  `date_approbation` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
  `version_consulte` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_consultation` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
  `remarques` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_B0D9BF9D8A2D8B41` (`terrain_id`),
  KEY `IDX_B0D9BF9DC54C8C93` (`type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `email`
--

DROP TABLE IF EXISTS `email`;
CREATE TABLE IF NOT EXISTS `email` (
  `id` int NOT NULL AUTO_INCREMENT,
  `contact_id` int DEFAULT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `statut_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_E7927C74E7A1254A` (`contact_id`),
  KEY `IDX_E7927C74F6203804` (`statut_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `entreprise`
--

DROP TABLE IF EXISTS `entreprise`;
CREATE TABLE IF NOT EXISTS `entreprise` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut_id` int NOT NULL,
  `raison_sociale` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `siret` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `naf` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_D19FA60F6203804` (`statut_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `environement`
--

DROP TABLE IF EXISTS `environement`;
CREATE TABLE IF NOT EXISTS `environement` (
  `id` int NOT NULL AUTO_INCREMENT,
  `env_de_type_id` int DEFAULT NULL,
  `bati_environant_id` int DEFAULT NULL,
  `env_perimetre_id` int DEFAULT NULL,
  `env_nuisances_sonores_id` int DEFAULT NULL,
  `env_reseaux_transport_id` int DEFAULT NULL,
  `env_com_serv_id` int DEFAULT NULL,
  `env_equipement_public_id` int DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `autres_nuisances` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_19F04B86173F91FD` (`env_de_type_id`),
  KEY `IDX_19F04B8642F9133D` (`bati_environant_id`),
  KEY `IDX_19F04B862F35B472` (`env_perimetre_id`),
  KEY `IDX_19F04B86F932F33C` (`env_nuisances_sonores_id`),
  KEY `IDX_19F04B86503E9859` (`env_reseaux_transport_id`),
  KEY `IDX_19F04B86ACDD68CD` (`env_com_serv_id`),
  KEY `IDX_19F04B86950E4556` (`env_equipement_public_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_autre_nuisances`
--

DROP TABLE IF EXISTS `env_autre_nuisances`;
CREATE TABLE IF NOT EXISTS `env_autre_nuisances` (
  `id` int NOT NULL AUTO_INCREMENT,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BD47D8BB8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_commerces`
--

DROP TABLE IF EXISTS `env_commerces`;
CREATE TABLE IF NOT EXISTS `env_commerces` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `rayon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `commerceproximite` tinyint(1) DEFAULT NULL,
  `epicerie_supermarche_marche` tinyint(1) DEFAULT NULL,
  `cafe_restau_bar` tinyint(1) DEFAULT NULL,
  `banque_dab` tinyint(1) DEFAULT NULL,
  `station_service` tinyint(1) DEFAULT NULL,
  `poste` tinyint(1) DEFAULT NULL,
  `pharmacie` tinyint(1) DEFAULT NULL,
  `medecin_maison_medicaleprofessions` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BA9EB14C8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_com_serv`
--

DROP TABLE IF EXISTS `env_com_serv`;
CREATE TABLE IF NOT EXISTS `env_com_serv` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `rayon` decimal(10,0) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `env_com_serv`
--

INSERT INTO `env_com_serv` (`id`, `statut`, `rayon`) VALUES
(1, 'Commerces de proximité', NULL),
(2, 'Epicerie/supermarché/marché Hebdomadaire', NULL),
(3, 'Café / Restaurant / bar', NULL),
(4, 'Banque / DAB', NULL),
(5, 'Poste', NULL),
(6, 'Pharmacie', NULL),
(7, 'Médecin / maison médicale /professions médicales et parapharmacies', NULL);

-- --------------------------------------------------------

--
-- Structure de la table `env_de_type`
--

DROP TABLE IF EXISTS `env_de_type`;
CREATE TABLE IF NOT EXISTS `env_de_type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `urbain` tinyint(1) DEFAULT NULL,
  `peri_urbain` tinyint(1) DEFAULT NULL,
  `rural` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BA8CC2508A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_equipement_public`
--

DROP TABLE IF EXISTS `env_equipement_public`;
CREATE TABLE IF NOT EXISTS `env_equipement_public` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `rayon` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `terrain_id` int DEFAULT NULL,
  `creche_ecole_collegue_lycee` tinyint(1) DEFAULT NULL,
  `bibliotheque` tinyint(1) DEFAULT NULL,
  `maisondes_associations` tinyint(1) DEFAULT NULL,
  `equipement_sportifs` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BA7F9EA78A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_nuisances_sonores`
--

DROP TABLE IF EXISTS `env_nuisances_sonores`;
CREATE TABLE IF NOT EXISTS `env_nuisances_sonores` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `chemin_de_fer` tinyint(1) DEFAULT NULL,
  `metre_chemain_de_fer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `autoroute` tinyint(1) DEFAULT NULL,
  `metre_autoroute` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `aeroport` tinyint(1) DEFAULT NULL,
  `metre_aeroport` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `activite_industrielle` tinyint(1) DEFAULT NULL,
  `metre_actind` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_654D71ED8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_observation`
--

DROP TABLE IF EXISTS `env_observation`;
CREATE TABLE IF NOT EXISTS `env_observation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_1B232E0E8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_perimetre`
--

DROP TABLE IF EXISTS `env_perimetre`;
CREATE TABLE IF NOT EXISTS `env_perimetre` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `de_lotissement` tinyint(1) DEFAULT NULL,
  `de_zac` tinyint(1) DEFAULT NULL,
  `zone_parc_activite` tinyint(1) DEFAULT NULL,
  `ne_sait_pas` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_A194DDD48A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `env_reseaux_transport`
--

DROP TABLE IF EXISTS `env_reseaux_transport`;
CREATE TABLE IF NOT EXISTS `env_reseaux_transport` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `reseau_tranport_en_commun` tinyint(1) DEFAULT NULL,
  `metre_transport_commun` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `piste_cyclable` tinyint(1) DEFAULT NULL,
  `metre_cyclable` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `princ_axes_routiers` tinyint(1) DEFAULT NULL,
  `metre_axe_routier` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `gare` tinyint(1) DEFAULT NULL,
  `metre_gare` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `aeroport` tinyint(1) DEFAULT NULL,
  `metre_aeroport` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_11AE42B08A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `espace_libre`
--

DROP TABLE IF EXISTS `espace_libre`;
CREATE TABLE IF NOT EXISTS `espace_libre` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_1AE934EA8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `etat`
--

DROP TABLE IF EXISTS `etat`;
CREATE TABLE IF NOT EXISTS `etat` (
  `id` int NOT NULL AUTO_INCREMENT,
  `etat` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `etat`
--

INSERT INTO `etat` (`id`, `etat`) VALUES
(1, 'à construire'),
(2, 'à rénover'),
(3, 'à détruire'),
(4, 'à trouver'),
(5, 'à acheter'),
(6, 'à vendre');

-- --------------------------------------------------------

--
-- Structure de la table `etat_des_lieux`
--

DROP TABLE IF EXISTS `etat_des_lieux`;
CREATE TABLE IF NOT EXISTS `etat_des_lieux` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut_id` int NOT NULL,
  `created_at` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_F7210312F6203804` (`statut_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `forfait`
--

DROP TABLE IF EXISTS `forfait`;
CREATE TABLE IF NOT EXISTS `forfait` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int NOT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `prix` decimal(10,2) NOT NULL,
  `date` datetime NOT NULL,
  `payer` tinyint(1) NOT NULL,
  `date_reglement` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BBB5C482D2235D39` (`tache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `haut_max_const`
--

DROP TABLE IF EXISTS `haut_max_const`;
CREATE TABLE IF NOT EXISTS `haut_max_const` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `gabarit_max` tinyint(1) DEFAULT NULL,
  `hauteur_max` tinyint(1) DEFAULT NULL,
  `r` decimal(10,0) DEFAULT NULL,
  `h_max` decimal(10,0) DEFAULT NULL,
  `a_legout` tinyint(1) DEFAULT NULL,
  `faitage` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_388190198A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `hebergement`
--

DROP TABLE IF EXISTS `hebergement`;
CREATE TABLE IF NOT EXISTS `hebergement` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int DEFAULT NULL,
  `nuit` int NOT NULL,
  `cout_nuit_unitaire` decimal(5,2) NOT NULL,
  `lieu` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `date` date NOT NULL,
  `payer` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_4852DD9CD2235D39` (`tache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `historique`
--

DROP TABLE IF EXISTS `historique`;
CREATE TABLE IF NOT EXISTS `historique` (
  `id` int NOT NULL AUTO_INCREMENT,
  `contact_id` int DEFAULT NULL,
  `entreprise_id` int DEFAULT NULL,
  `historique` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `title` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL COMMENT '(DC2Type:datetime_immutable)',
  `projet_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_EDBFD5ECE7A1254A` (`contact_id`),
  KEY `IDX_EDBFD5ECA4AEAFEA` (`entreprise_id`),
  KEY `IDX_EDBFD5ECC18272` (`projet_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `identification`
--

DROP TABLE IF EXISTS `identification`;
CREATE TABLE IF NOT EXISTS `identification` (
  `id` int NOT NULL AUTO_INCREMENT,
  `identification` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `identification`
--

INSERT INTO `identification` (`id`, `identification`) VALUES
(1, 'Foncier'),
(2, 'Immeuble'),
(3, 'Foncier + Immeuble'),
(4, 'Infrastructure'),
(5, 'Autre');

-- --------------------------------------------------------

--
-- Structure de la table `ident_coord_props`
--

DROP TABLE IF EXISTS `ident_coord_props`;
CREATE TABLE IF NOT EXISTS `ident_coord_props` (
  `id` int NOT NULL AUTO_INCREMENT,
  `contact_id` int DEFAULT NULL,
  `proprietaire` tinyint(1) DEFAULT NULL,
  `usufruitier` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_AF99E9FDE7A1254A` (`contact_id`),
  KEY `IDX_AF99E9FD8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `implantation_domaine_public`
--

DROP TABLE IF EXISTS `implantation_domaine_public`;
CREATE TABLE IF NOT EXISTS `implantation_domaine_public` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `implantation_limite` tinyint(1) DEFAULT NULL,
  `implantation_retrait` tinyint(1) DEFAULT NULL,
  `recul_min` decimal(10,0) DEFAULT NULL,
  `exeptions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_33D1D9DD8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `implantation_lim_separatives`
--

DROP TABLE IF EXISTS `implantation_lim_separatives`;
CREATE TABLE IF NOT EXISTS `implantation_lim_separatives` (
  `id` int NOT NULL AUTO_INCREMENT,
  `implantation_limite` tinyint(1) DEFAULT NULL,
  `implantation_retrait` tinyint(1) DEFAULT NULL,
  `recul` decimal(10,0) DEFAULT NULL,
  `exeption` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_7D2373268A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `implantation_propriete`
--

DROP TABLE IF EXISTS `implantation_propriete`;
CREATE TABLE IF NOT EXISTS `implantation_propriete` (
  `id` int NOT NULL AUTO_INCREMENT,
  `non_reg` tinyint(1) DEFAULT NULL,
  `reglemente` tinyint(1) DEFAULT NULL,
  `precisez` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_FE59F5D68A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `intervenant`
--

DROP TABLE IF EXISTS `intervenant`;
CREATE TABLE IF NOT EXISTS `intervenant` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int DEFAULT NULL,
  `statut_id` int NOT NULL,
  `entreprise_id` int DEFAULT NULL,
  `contact_id` int DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `cout` decimal(10,2) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  `realisations` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `duree` time DEFAULT NULL,
  `payer` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_73D0145CD2235D39` (`tache_id`),
  KEY `IDX_73D0145CF6203804` (`statut_id`),
  KEY `IDX_73D0145CA4AEAFEA` (`entreprise_id`),
  KEY `IDX_73D0145CE7A1254A` (`contact_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `liste_annexes_consulte`
--

DROP TABLE IF EXISTS `liste_annexes_consulte`;
CREATE TABLE IF NOT EXISTS `liste_annexes_consulte` (
  `id` int NOT NULL AUTO_INCREMENT,
  `doc_local_urbanisme_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_B36D206EFD83624` (`doc_local_urbanisme_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `mail`
--

DROP TABLE IF EXISTS `mail`;
CREATE TABLE IF NOT EXISTS `mail` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut_id` int NOT NULL,
  `contact_id` int NOT NULL,
  `entreprise_id` int DEFAULT NULL,
  `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `objet` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `created_at` datetime DEFAULT NULL COMMENT '(DC2Type:datetime_immutable)',
  PRIMARY KEY (`id`),
  KEY `IDX_5126AC48F6203804` (`statut_id`),
  KEY `IDX_5126AC48E7A1254A` (`contact_id`),
  KEY `IDX_5126AC48A4AEAFEA` (`entreprise_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `messenger_messages`
--

DROP TABLE IF EXISTS `messenger_messages`;
CREATE TABLE IF NOT EXISTS `messenger_messages` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `body` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `headers` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `queue_name` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL,
  `available_at` datetime NOT NULL,
  `delivered_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_75EA56E0FB7336F0` (`queue_name`),
  KEY `IDX_75EA56E0E3BD61CE` (`available_at`),
  KEY `IDX_75EA56E016BA31DB` (`delivered_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `mission`
--

DROP TABLE IF EXISTS `mission`;
CREATE TABLE IF NOT EXISTS `mission` (
  `id` int NOT NULL AUTO_INCREMENT,
  `projet_id` int DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `detail` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `type_id` int DEFAULT NULL,
  `autre_type` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_9067F23CC18272` (`projet_id`),
  KEY `IDX_9067F23CC54C8C93` (`type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `mission`
--

INSERT INTO `mission` (`id`, `projet_id`, `name`, `detail`, `type_id`, `autre_type`) VALUES
(1, 4, 'mission Larra', 'Hello', 1, NULL),
(5, 3, 'Mondonville N°1', 'Hello', 3, NULL),
(7, 9, 'larra 2', NULL, 2, NULL),
(8, 4, 'mission 1.2', NULL, 1, NULL),
(9, 10, 'Antibes 1.0', NULL, 3, NULL);

-- --------------------------------------------------------

--
-- Structure de la table `moyen`
--

DROP TABLE IF EXISTS `moyen`;
CREATE TABLE IF NOT EXISTS `moyen` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_2D6523D6D2235D39` (`tache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `note`
--

DROP TABLE IF EXISTS `note`;
CREATE TABLE IF NOT EXISTS `note` (
  `id` int NOT NULL AUTO_INCREMENT,
  `contact_id` int DEFAULT NULL,
  `entreprise_id` int DEFAULT NULL,
  `note` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_CFBDFA14E7A1254A` (`contact_id`),
  KEY `IDX_CFBDFA14A4AEAFEA` (`entreprise_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `observation_eau_terrain`
--

DROP TABLE IF EXISTS `observation_eau_terrain`;
CREATE TABLE IF NOT EXISTS `observation_eau_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_245862D68A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `observation_vegetation_terrain`
--

DROP TABLE IF EXISTS `observation_vegetation_terrain`;
CREATE TABLE IF NOT EXISTS `observation_vegetation_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_8EF494138A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `occupation_terrain`
--

DROP TABLE IF EXISTS `occupation_terrain`;
CREATE TABLE IF NOT EXISTS `occupation_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `terrain_bati` tinyint(1) DEFAULT NULL,
  `nombre_nature_const` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `construction_plan_cadastrale` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_2B0C386B8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `ouverture_dossier`
--

DROP TABLE IF EXISTS `ouverture_dossier`;
CREATE TABLE IF NOT EXISTS `ouverture_dossier` (
  `id` int NOT NULL AUTO_INCREMENT,
  `devis_id` int NOT NULL,
  `quantite` int NOT NULL,
  `prix` decimal(10,2) NOT NULL,
  `payer` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_4F94D6EB41DEFADA` (`devis_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `pente5`
--

DROP TABLE IF EXISTS `pente5`;
CREATE TABLE IF NOT EXISTS `pente5` (
  `id` int NOT NULL AUTO_INCREMENT,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `ne_sait_pas` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_2D0A4F228A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `pieces_jointes_relief`
--

DROP TABLE IF EXISTS `pieces_jointes_relief`;
CREATE TABLE IF NOT EXISTS `pieces_jointes_relief` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `plan_topographique` tinyint(1) DEFAULT NULL,
  `releve_almetrique` tinyint(1) DEFAULT NULL,
  `carte_ign` tinyint(1) DEFAULT NULL,
  `plan_cadastre` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_E7FD3E38A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `piece_consulte`
--

DROP TABLE IF EXISTS `piece_consulte`;
CREATE TABLE IF NOT EXISTS `piece_consulte` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `rapport_presentation` tinyint(1) DEFAULT NULL,
  `padd` tinyint(1) DEFAULT NULL,
  `oap` tinyint(1) DEFAULT NULL,
  `plan_zonage` tinyint(1) DEFAULT NULL,
  `reg_ecrit` tinyint(1) DEFAULT NULL,
  `liste` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_95E194288A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `piece_jointe_serv_prive`
--

DROP TABLE IF EXISTS `piece_jointe_serv_prive`;
CREATE TABLE IF NOT EXISTS `piece_jointe_serv_prive` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `etat_des_servitudes` tinyint(1) DEFAULT NULL,
  `plan_serv_existantes` tinyint(1) DEFAULT NULL,
  `autre` tinyint(1) DEFAULT NULL,
  `autre_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_C9E547708A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `plan_bornage_joint`
--

DROP TABLE IF EXISTS `plan_bornage_joint`;
CREATE TABLE IF NOT EXISTS `plan_bornage_joint` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `statut` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_B2CB77138A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `plan_cadastre`
--

DROP TABLE IF EXISTS `plan_cadastre`;
CREATE TABLE IF NOT EXISTS `plan_cadastre` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_25765AF68A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `priorite`
--

DROP TABLE IF EXISTS `priorite`;
CREATE TABLE IF NOT EXISTS `priorite` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `priorite`
--

INSERT INTO `priorite` (`id`, `name`) VALUES
(1, 'Très elevé'),
(2, 'Elevé'),
(3, 'Moyen'),
(4, 'Faible');

-- --------------------------------------------------------

--
-- Structure de la table `profession`
--

DROP TABLE IF EXISTS `profession`;
CREATE TABLE IF NOT EXISTS `profession` (
  `id` int NOT NULL AUTO_INCREMENT,
  `entreprise_id` int DEFAULT NULL,
  `contact_id` int DEFAULT NULL,
  `profession` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `employeur` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_BA930D69A4AEAFEA` (`entreprise_id`),
  KEY `IDX_BA930D69E7A1254A` (`contact_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `projet`
--

DROP TABLE IF EXISTS `projet`;
CREATE TABLE IF NOT EXISTS `projet` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type_id` int DEFAULT NULL,
  `priorite_id` int DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  `origine_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_50159CA9C54C8C93` (`type_id`),
  KEY `IDX_50159CA953B4F1DE` (`priorite_id`),
  KEY `IDX_50159CA98A2D8B41` (`terrain_id`),
  KEY `IDX_50159CA987998E` (`origine_id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `projet`
--

INSERT INTO `projet` (`id`, `name`, `type_id`, `priorite_id`, `terrain_id`, `origine_id`) VALUES
(3, 'mondonville 125', 3, 4, 8, NULL),
(4, 'larra - 1', 5, 2, 7, NULL),
(8, 'Paris 1.0', 2, 4, 9, NULL),
(9, 'larra 2', 3, 1, 10, NULL),
(10, 'Antibes', 3, 2, 12, NULL);

-- --------------------------------------------------------

--
-- Structure de la table `raccordement_evacuation_eaux_usees`
--

DROP TABLE IF EXISTS `raccordement_evacuation_eaux_usees`;
CREATE TABLE IF NOT EXISTS `raccordement_evacuation_eaux_usees` (
  `id` int NOT NULL AUTO_INCREMENT,
  `distance` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `ne_sait_pas` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_6CFC4E4B8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `raccordement_reseaux_eau`
--

DROP TABLE IF EXISTS `raccordement_reseaux_eau`;
CREATE TABLE IF NOT EXISTS `raccordement_reseaux_eau` (
  `id` int NOT NULL AUTO_INCREMENT,
  `distance` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `ne_sait_pas` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_DA1406FE8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `raccordement_reseau_electrique`
--

DROP TABLE IF EXISTS `raccordement_reseau_electrique`;
CREATE TABLE IF NOT EXISTS `raccordement_reseau_electrique` (
  `id` int NOT NULL AUTO_INCREMENT,
  `distance` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `ne_sais_pas` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_DDC29B468A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `raccordement_reseau_gaz`
--

DROP TABLE IF EXISTS `raccordement_reseau_gaz`;
CREATE TABLE IF NOT EXISTS `raccordement_reseau_gaz` (
  `id` int NOT NULL AUTO_INCREMENT,
  `distance` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `ne_sait_pas` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_8240717F8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `raccordement_tel`
--

DROP TABLE IF EXISTS `raccordement_tel`;
CREATE TABLE IF NOT EXISTS `raccordement_tel` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `raccordement_tel`
--

INSERT INTO `raccordement_tel` (`id`, `statut`) VALUES
(1, 'Oui'),
(2, 'Non'),
(3, 'Ne sais pas');

-- --------------------------------------------------------

--
-- Structure de la table `reference_cadastrale`
--

DROP TABLE IF EXISTS `reference_cadastrale`;
CREATE TABLE IF NOT EXISTS `reference_cadastrale` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `prefixe` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `section` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `numero` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_426BDFA18A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `reference_cadastrale`
--

INSERT INTO `reference_cadastrale` (`id`, `terrain_id`, `prefixe`, `section`, `numero`) VALUES
(5, 7, 'aze', 'aze', 2);

-- --------------------------------------------------------

--
-- Structure de la table `reglement_zone_joint`
--

DROP TABLE IF EXISTS `reglement_zone_joint`;
CREATE TABLE IF NOT EXISTS `reglement_zone_joint` (
  `id` int NOT NULL AUTO_INCREMENT,
  `oui` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_AADF24BE8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `relief_terrain`
--

DROP TABLE IF EXISTS `relief_terrain`;
CREATE TABLE IF NOT EXISTS `relief_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `terrain_en_pente` tinyint(1) DEFAULT NULL,
  `pente_reguliere` tinyint(1) DEFAULT NULL,
  `plateau` tinyint(1) DEFAULT NULL,
  `talus` tinyint(1) DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_E0CB4E98A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `rendez_vous_architecte`
--

DROP TABLE IF EXISTS `rendez_vous_architecte`;
CREATE TABLE IF NOT EXISTS `rendez_vous_architecte` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `motif` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_D0F7B5898A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `rendez_vous_hypotheque`
--

DROP TABLE IF EXISTS `rendez_vous_hypotheque`;
CREATE TABLE IF NOT EXISTS `rendez_vous_hypotheque` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `motif` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `non` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_85C525418A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `rendez_vous_serv_urb`
--

DROP TABLE IF EXISTS `rendez_vous_serv_urb`;
CREATE TABLE IF NOT EXISTS `rendez_vous_serv_urb` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `motif` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_39FF7F918A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `reseau_observation`
--

DROP TABLE IF EXISTS `reseau_observation`;
CREATE TABLE IF NOT EXISTS `reseau_observation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_FDEC793E8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `reseau_telephone_fibre`
--

DROP TABLE IF EXISTS `reseau_telephone_fibre`;
CREATE TABLE IF NOT EXISTS `reseau_telephone_fibre` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `ne_saitpas` tinyint(1) DEFAULT NULL,
  `distance` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_ADCF20198A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `restauration`
--

DROP TABLE IF EXISTS `restauration`;
CREATE TABLE IF NOT EXISTS `restauration` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int DEFAULT NULL,
  `cout_repas_personnel` decimal(10,0) DEFAULT NULL,
  `cout_repas_clients` decimal(10,2) DEFAULT NULL,
  `duree` time DEFAULT NULL,
  `forfait` decimal(10,2) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `etablissement` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payer` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_898B1EF1D2235D39` (`tache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `reunion`
--

DROP TABLE IF EXISTS `reunion`;
CREATE TABLE IF NOT EXISTS `reunion` (
  `id` int NOT NULL AUTO_INCREMENT,
  `tache_id` int NOT NULL,
  `objet` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cout_location_salle` decimal(10,2) DEFAULT NULL,
  `cout_location_materiel` decimal(10,2) DEFAULT NULL,
  `cout_restauration` decimal(10,2) DEFAULT NULL,
  `cout_collation` decimal(10,2) DEFAULT NULL,
  `duree` time DEFAULT NULL,
  `forfait_horaire` decimal(10,2) DEFAULT NULL,
  `payer` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_5B00A482D2235D39` (`tache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `servitude_pieces_jointe`
--

DROP TABLE IF EXISTS `servitude_pieces_jointe`;
CREATE TABLE IF NOT EXISTS `servitude_pieces_jointe` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `servitude_publique` tinyint(1) DEFAULT NULL,
  `emplacement_reserve` tinyint(1) DEFAULT NULL,
  `autre` tinyint(1) DEFAULT NULL,
  `autre_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_B3E089AB8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `servitude_prive`
--

DROP TABLE IF EXISTS `servitude_prive`;
CREATE TABLE IF NOT EXISTS `servitude_prive` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_FCF4F0998A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `servitude_prive_creer`
--

DROP TABLE IF EXISTS `servitude_prive_creer`;
CREATE TABLE IF NOT EXISTS `servitude_prive_creer` (
  `id` int NOT NULL AUTO_INCREMENT,
  `oui` tinyint(1) DEFAULT NULL,
  `oui_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `non` tinyint(1) DEFAULT NULL,
  `ne_sais_pas` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_7CA4E4A08A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `servitude_publique`
--

DROP TABLE IF EXISTS `servitude_publique`;
CREATE TABLE IF NOT EXISTS `servitude_publique` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `alignement` tinyint(1) DEFAULT NULL,
  `servitude_eau_gaz` tinyint(1) DEFAULT NULL,
  `servitude_degagement` tinyint(1) DEFAULT NULL,
  `servitude_monument_historique` tinyint(1) DEFAULT NULL,
  `servitude_marche_pied` tinyint(1) DEFAULT NULL,
  `autre` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_56AA69FC8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `servitude_urbanisme`
--

DROP TABLE IF EXISTS `servitude_urbanisme`;
CREATE TABLE IF NOT EXISTS `servitude_urbanisme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `marge_de_recul` tinyint(1) DEFAULT NULL,
  `recul_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `emplacement_reserve` tinyint(1) DEFAULT NULL,
  `emplacement_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `autre` tinyint(1) DEFAULT NULL,
  `autre_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_4C9264568A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `sta2_roues`
--

DROP TABLE IF EXISTS `sta2_roues`;
CREATE TABLE IF NOT EXISTS `sta2_roues` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_EE352B6D8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `stade_terrain`
--

DROP TABLE IF EXISTS `stade_terrain`;
CREATE TABLE IF NOT EXISTS `stade_terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `stade_terrain`
--

INSERT INTO `stade_terrain` (`id`, `name`) VALUES
(1, 'Devis'),
(2, 'Recommandation '),
(3, 'Autre');

-- --------------------------------------------------------

--
-- Structure de la table `statut_adresse`
--

DROP TABLE IF EXISTS `statut_adresse`;
CREATE TABLE IF NOT EXISTS `statut_adresse` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_adresse`
--

INSERT INTO `statut_adresse` (`id`, `statut`) VALUES
(1, 'Bureau'),
(2, 'Domicile'),
(3, 'Autre');

-- --------------------------------------------------------

--
-- Structure de la table `statut_communication`
--

DROP TABLE IF EXISTS `statut_communication`;
CREATE TABLE IF NOT EXISTS `statut_communication` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_communication`
--

INSERT INTO `statut_communication` (`id`, `statut`) VALUES
(1, 'Téléphone'),
(2, 'Mail'),
(3, 'Courrier');

-- --------------------------------------------------------

--
-- Structure de la table `statut_contact`
--

DROP TABLE IF EXISTS `statut_contact`;
CREATE TABLE IF NOT EXISTS `statut_contact` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_contact`
--

INSERT INTO `statut_contact` (`id`, `statut`) VALUES
(1, 'Contact'),
(2, 'Intervenant'),
(3, 'Mandant'),
(4, 'Prescripteur'),
(5, 'Proprietaire'),
(6, 'Prospect'),
(7, 'Usufruitier'),
(8, '...');

-- --------------------------------------------------------

--
-- Structure de la table `statut_deplacement`
--

DROP TABLE IF EXISTS `statut_deplacement`;
CREATE TABLE IF NOT EXISTS `statut_deplacement` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_deplacement`
--

INSERT INTO `statut_deplacement` (`id`, `statut`) VALUES
(1, 'Voiture perso'),
(2, 'Taxi'),
(3, 'Train'),
(4, 'Tram'),
(5, 'Métro'),
(6, 'Avion');

-- --------------------------------------------------------

--
-- Structure de la table `statut_email`
--

DROP TABLE IF EXISTS `statut_email`;
CREATE TABLE IF NOT EXISTS `statut_email` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_email`
--

INSERT INTO `statut_email` (`id`, `name`) VALUES
(1, 'Bureau'),
(2, 'Personnel');

-- --------------------------------------------------------

--
-- Structure de la table `statut_entreprise`
--

DROP TABLE IF EXISTS `statut_entreprise`;
CREATE TABLE IF NOT EXISTS `statut_entreprise` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `statut_etat_des_lieux`
--

DROP TABLE IF EXISTS `statut_etat_des_lieux`;
CREATE TABLE IF NOT EXISTS `statut_etat_des_lieux` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_etat_des_lieux`
--

INSERT INTO `statut_etat_des_lieux` (`id`, `statut`) VALUES
(1, 'Borne'),
(2, 'Electricité'),
(3, 'Eau potable'),
(4, 'Servitudes de passage'),
(5, 'Servitudes de reseaux'),
(6, 'Nuissances sonores'),
(7, 'Nuissances olfactives'),
(8, 'Clôtures'),
(9, 'composition et état des bâtiments'),
(10, 'composition et état des bâtiments'),
(11, 'accès et praticabilité'),
(12, 'Inondations'),
(13, 'problèmes de voisinage'),
(14, 'couloir aérien'),
(15, 'emplacement réservé'),
(16, 'projet à proximité'),
(17, 'risque incendie'),
(18, 'abf'),
(19, 'diagnostic archéologique'),
(20, 'contact des voisins'),
(21, 'contacts adm'),
(22, 'stationnement et parking nb'),
(23, 'Histoire du secteur et du site'),
(24, 'indices de valorisation du site'),
(25, 'autres');

-- --------------------------------------------------------

--
-- Structure de la table `statut_intervenant`
--

DROP TABLE IF EXISTS `statut_intervenant`;
CREATE TABLE IF NOT EXISTS `statut_intervenant` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_intervenant`
--

INSERT INTO `statut_intervenant` (`id`, `statut`) VALUES
(1, 'Client'),
(2, 'Mandant'),
(3, 'Intervenant'),
(4, 'Prescripteur'),
(5, 'Contact'),
(6, 'Prospect'),
(7, 'Autre');

-- --------------------------------------------------------

--
-- Structure de la table `statut_mail`
--

DROP TABLE IF EXISTS `statut_mail`;
CREATE TABLE IF NOT EXISTS `statut_mail` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_mail`
--

INSERT INTO `statut_mail` (`id`, `statut`) VALUES
(1, 'Personnel'),
(2, 'Personnel'),
(3, 'Autre');

-- --------------------------------------------------------

--
-- Structure de la table `statut_tache`
--

DROP TABLE IF EXISTS `statut_tache`;
CREATE TABLE IF NOT EXISTS `statut_tache` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_tache`
--

INSERT INTO `statut_tache` (`id`, `name`) VALUES
(1, 'A faire'),
(2, 'En cours'),
(3, 'ok');

-- --------------------------------------------------------

--
-- Structure de la table `statut_telephone`
--

DROP TABLE IF EXISTS `statut_telephone`;
CREATE TABLE IF NOT EXISTS `statut_telephone` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `statut_telephone`
--

INSERT INTO `statut_telephone` (`id`, `statut`) VALUES
(1, 'Bureau'),
(2, 'Domicile'),
(3, 'Portable');

-- --------------------------------------------------------

--
-- Structure de la table `sta_automobile`
--

DROP TABLE IF EXISTS `sta_automobile`;
CREATE TABLE IF NOT EXISTS `sta_automobile` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_390D383F8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `tache`
--

DROP TABLE IF EXISTS `tache`;
CREATE TABLE IF NOT EXISTS `tache` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut_id` int NOT NULL,
  `owner_id` int DEFAULT NULL,
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `date` datetime NOT NULL,
  `mission_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_93872075F6203804` (`statut_id`),
  KEY `IDX_938720757E3C61F9` (`owner_id`),
  KEY `IDX_93872075BE6CAE90` (`mission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `telephone`
--

DROP TABLE IF EXISTS `telephone`;
CREATE TABLE IF NOT EXISTS `telephone` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut_id` int NOT NULL,
  `entreprise_id` int DEFAULT NULL,
  `contact_id` int DEFAULT NULL,
  `number` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_450FF010F6203804` (`statut_id`),
  KEY `IDX_450FF010A4AEAFEA` (`entreprise_id`),
  KEY `IDX_450FF010E7A1254A` (`contact_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `terrain`
--

DROP TABLE IF EXISTS `terrain`;
CREATE TABLE IF NOT EXISTS `terrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `commune` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code_postal` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `adress` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `name` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `remarque` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `stade_id` int DEFAULT NULL,
  `origine_id` int DEFAULT NULL,
  `autre_stade` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_C87653B16538AB43` (`stade_id`),
  KEY `IDX_C87653B187998E` (`origine_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `terrain`
--

INSERT INTO `terrain` (`id`, `commune`, `code_postal`, `adress`, `name`, `remarque`, `stade_id`, `origine_id`, `autre_stade`) VALUES
(7, 'Larra', '31330', '11 place des coquelicots', 'Larra1', NULL, 2, NULL, NULL),
(8, 'Mondonville', '31330', '2 rue des fleurs', 'Mondonville 1', NULL, 3, NULL, NULL),
(9, 'Paris', '75000', '1 rue des fleurs', 'Paris 1', NULL, 3, NULL, 'en construction'),
(10, 'Larra', '31330', '11 place des fleurs', 'larra 2', NULL, 2, NULL, NULL),
(11, 'pointe a pitre', '97110', '22 rue des fleurs', 'Bateau 1.3', NULL, 2, NULL, NULL),
(12, 'Antibes', '06600', '2 rue des fleurs', 'antibes 1.1', NULL, 1, NULL, NULL);

-- --------------------------------------------------------

--
-- Structure de la table `terrain_reg_const`
--

DROP TABLE IF EXISTS `terrain_reg_const`;
CREATE TABLE IF NOT EXISTS `terrain_reg_const` (
  `id` int NOT NULL AUTO_INCREMENT,
  `oui` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  `remarque` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_4DC07FCB8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `terrain_viabilise`
--

DROP TABLE IF EXISTS `terrain_viabilise`;
CREATE TABLE IF NOT EXISTS `terrain_viabilise` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `ne_sait_pas` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_AB4D9BF98A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `trace_deau`
--

DROP TABLE IF EXISTS `trace_deau`;
CREATE TABLE IF NOT EXISTS `trace_deau` (
  `id` int NOT NULL AUTO_INCREMENT,
  `metre` decimal(10,2) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  `sol_humide` tinyint(1) DEFAULT NULL,
  `difference_vegetation` tinyint(1) DEFAULT NULL,
  `puit` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_20C920A38A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `type`
--

DROP TABLE IF EXISTS `type`;
CREATE TABLE IF NOT EXISTS `type` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `type`
--

INSERT INTO `type` (`id`, `name`) VALUES
(1, 'oui'),
(2, 'non'),
(3, 'Ne sais pas');

-- --------------------------------------------------------

--
-- Structure de la table `type_doc_urbanisme`
--

DROP TABLE IF EXISTS `type_doc_urbanisme`;
CREATE TABLE IF NOT EXISTS `type_doc_urbanisme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `statut` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `type_doc_urbanisme`
--

INSERT INTO `type_doc_urbanisme` (`id`, `statut`) VALUES
(1, 'Plan d\'Occupation des sols (POS)'),
(2, 'Plan Local d\'ubanisme (PLU)'),
(3, 'Plan Local d\'ubanisme Intercommunal (PLUI)'),
(4, 'Carte Communale'),
(5, 'Reglement National d\'Urbanisme (RNU)');

-- --------------------------------------------------------

--
-- Structure de la table `type_mission`
--

DROP TABLE IF EXISTS `type_mission`;
CREATE TABLE IF NOT EXISTS `type_mission` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `type_mission`
--

INSERT INTO `type_mission` (`id`, `name`) VALUES
(1, 'Vente'),
(2, 'Construction'),
(3, 'Deblocage'),
(4, 'Autre');

-- --------------------------------------------------------

--
-- Structure de la table `type_projet`
--

DROP TABLE IF EXISTS `type_projet`;
CREATE TABLE IF NOT EXISTS `type_projet` (
  `id` int NOT NULL AUTO_INCREMENT,
  `type` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `type_projet`
--

INSERT INTO `type_projet` (`id`, `type`) VALUES
(2, 'Foncier seul'),
(3, 'Foncier + Immeuble'),
(5, 'Immeuble Seul');

-- --------------------------------------------------------

--
-- Structure de la table `type_proprietaire`
--

DROP TABLE IF EXISTS `type_proprietaire`;
CREATE TABLE IF NOT EXISTS `type_proprietaire` (
  `id` int NOT NULL AUTO_INCREMENT,
  `prop_unique` tinyint(1) DEFAULT NULL,
  `indivision_copropriete` tinyint(1) DEFAULT NULL,
  `societe` tinyint(1) DEFAULT NULL,
  `personne_publique` tinyint(1) DEFAULT NULL,
  `terrain_id` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_EEA023D38A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `type_voie_acces`
--

DROP TABLE IF EXISTS `type_voie_acces`;
CREATE TABLE IF NOT EXISTS `type_voie_acces` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `type_voie_acces`
--

INSERT INTO `type_voie_acces` (`id`, `name`) VALUES
(1, 'Route Nationale'),
(2, 'Route Départementale'),
(3, 'Voie Communale'),
(4, 'Voie Privée'),
(5, 'Chemin rural'),
(6, 'Servitude de passage');

-- --------------------------------------------------------

--
-- Structure de la table `user`
--

DROP TABLE IF EXISTS `user`;
CREATE TABLE IF NOT EXISTS `user` (
  `id` int NOT NULL AUTO_INCREMENT,
  `email` varchar(180) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `roles` json NOT NULL,
  `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `nom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `prenom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reset_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNIQ_8D93D649E7927C74` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `user`
--

INSERT INTO `user` (`id`, `email`, `roles`, `password`, `nom`, `prenom`, `reset_token`) VALUES
(1, 'tom@tom.fr', '[\"ROLE_USER\"]', '$2y$13$rFXpDaf6Ke/jvJ9dgReEjugh1CFArVjRSe/VnWI2Dzs/nKz1U9LFW', 'Tom', 'Tom', NULL);

-- --------------------------------------------------------

--
-- Structure de la table `vegetation`
--

DROP TABLE IF EXISTS `vegetation`;
CREATE TABLE IF NOT EXISTS `vegetation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `densite_id` int DEFAULT NULL,
  `observation` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  `grand_arbres` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_D25C7EDB8A2D8B41` (`terrain_id`),
  KEY `IDX_D25C7EDB83C27326` (`densite_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `verif_cadastre`
--

DROP TABLE IF EXISTS `verif_cadastre`;
CREATE TABLE IF NOT EXISTS `verif_cadastre` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_C0117DA8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `zone_acces`
--

DROP TABLE IF EXISTS `zone_acces`;
CREATE TABLE IF NOT EXISTS `zone_acces` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_76DA94B68A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `zone_cara_cterrain`
--

DROP TABLE IF EXISTS `zone_cara_cterrain`;
CREATE TABLE IF NOT EXISTS `zone_cara_cterrain` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `reglemente` tinyint(1) DEFAULT NULL,
  `non_reglemente` tinyint(1) DEFAULT NULL,
  `distance` decimal(10,0) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_2E44B2C58A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `zone_cond_part`
--

DROP TABLE IF EXISTS `zone_cond_part`;
CREATE TABLE IF NOT EXISTS `zone_cond_part` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_9E5EC5998A2D8B41` (`terrain_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `zone_oblig_mixite_fonct`
--

DROP TABLE IF EXISTS `zone_oblig_mixite_fonct`;
CREATE TABLE IF NOT EXISTS `zone_oblig_mixite_fonct` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `ne_saitpas` tinyint(1) DEFAULT NULL,
  `pourcentage` decimal(5,2) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_DF3C94D28A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `zone_oblig_mixite_sociale`
--

DROP TABLE IF EXISTS `zone_oblig_mixite_sociale`;
CREATE TABLE IF NOT EXISTS `zone_oblig_mixite_sociale` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `pourcentage` decimal(10,0) DEFAULT NULL,
  `oui` tinyint(1) DEFAULT NULL,
  `non` tinyint(1) DEFAULT NULL,
  `ne_sait_pas` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `IDX_49037A588A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `zone_occup_cond_part`
--

DROP TABLE IF EXISTS `zone_occup_cond_part`;
CREATE TABLE IF NOT EXISTS `zone_occup_cond_part` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_2929C3F08A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Déchargement des données de la table `zone_occup_cond_part`
--

INSERT INTO `zone_occup_cond_part` (`id`, `terrain_id`, `content`) VALUES
(1, NULL, 'yop yop');

-- --------------------------------------------------------

--
-- Structure de la table `zone_occ_util_int`
--

DROP TABLE IF EXISTS `zone_occ_util_int`;
CREATE TABLE IF NOT EXISTS `zone_occ_util_int` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_520ED56D8A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Structure de la table `zone_reseaux`
--

DROP TABLE IF EXISTS `zone_reseaux`;
CREATE TABLE IF NOT EXISTS `zone_reseaux` (
  `id` int NOT NULL AUTO_INCREMENT,
  `terrain_id` int DEFAULT NULL,
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `IDX_F79FCB298A2D8B41` (`terrain_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Contraintes pour les tables déchargées
--

--
-- Contraintes pour la table `access`
--
ALTER TABLE `access`
  ADD CONSTRAINT `FK_6692B548A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`),
  ADD CONSTRAINT `FK_6692B54C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `type_voie_acces` (`id`);

--
-- Contraintes pour la table `accompte`
--
ALTER TABLE `accompte`
  ADD CONSTRAINT `FK_BD09DAF741DEFADA` FOREIGN KEY (`devis_id`) REFERENCES `devis` (`id`);

--
-- Contraintes pour la table `act_int_notaire`
--
ALTER TABLE `act_int_notaire`
  ADD CONSTRAINT `FK_E7C229EE8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `act_int_proprio`
--
ALTER TABLE `act_int_proprio`
  ADD CONSTRAINT `FK_C96E27448A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `act_int_voisin`
--
ALTER TABLE `act_int_voisin`
  ADD CONSTRAINT `FK_333BBDA88A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `act_rdv_hypotheque`
--
ALTER TABLE `act_rdv_hypotheque`
  ADD CONSTRAINT `FK_3BF55D6E8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `adresse`
--
ALTER TABLE `adresse`
  ADD CONSTRAINT `FK_C35F0816A4AEAFEA` FOREIGN KEY (`entreprise_id`) REFERENCES `entreprise` (`id`),
  ADD CONSTRAINT `FK_C35F0816E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`),
  ADD CONSTRAINT `FK_C35F0816F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_adresse` (`id`);

--
-- Contraintes pour la table `appels_recus`
--
ALTER TABLE `appels_recus`
  ADD CONSTRAINT `FK_2F9E5C3AE7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`);

--
-- Contraintes pour la table `aspect_exterieur`
--
ALTER TABLE `aspect_exterieur`
  ADD CONSTRAINT `FK_8214C4838A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `bati_environant`
--
ALTER TABLE `bati_environant`
  ADD CONSTRAINT `FK_BC456AFD8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `caract_gene_zone`
--
ALTER TABLE `caract_gene_zone`
  ADD CONSTRAINT `FK_9EEE76B68A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `ces`
--
ALTER TABLE `ces`
  ADD CONSTRAINT `FK_6456130F8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `classement_terrain`
--
ALTER TABLE `classement_terrain`
  ADD CONSTRAINT `FK_A5722A138A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `commande_bornage`
--
ALTER TABLE `commande_bornage`
  ADD CONSTRAINT `FK_88C6B7A28A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `communication`
--
ALTER TABLE `communication`
  ADD CONSTRAINT `FK_F9AFB5EBD2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`),
  ADD CONSTRAINT `FK_F9AFB5EBF6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_communication` (`id`);

--
-- Contraintes pour la table `concl_remarque`
--
ALTER TABLE `concl_remarque`
  ADD CONSTRAINT `FK_BAB73CEA8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `concl_risque`
--
ALTER TABLE `concl_risque`
  ADD CONSTRAINT `FK_8ECD13E68A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `concl_servitude_prive`
--
ALTER TABLE `concl_servitude_prive`
  ADD CONSTRAINT `FK_737D559A8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `concl_servitude_publique`
--
ALTER TABLE `concl_servitude_publique`
  ADD CONSTRAINT `FK_13F8A4028A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `contact`
--
ALTER TABLE `contact`
  ADD CONSTRAINT `FK_4C62E63853B4F1DE` FOREIGN KEY (`priorite_id`) REFERENCES `priorite` (`id`),
  ADD CONSTRAINT `FK_4C62E63887998E` FOREIGN KEY (`origine_id`) REFERENCES `contact` (`id`),
  ADD CONSTRAINT `FK_4C62E638F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_contact` (`id`);

--
-- Contraintes pour la table `contenance_bornage`
--
ALTER TABLE `contenance_bornage`
  ADD CONSTRAINT `FK_44DF503A8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `contenance_cadastrale`
--
ALTER TABLE `contenance_cadastrale`
  ADD CONSTRAINT `FK_8E3E2678A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `cours_eau_terrain`
--
ALTER TABLE `cours_eau_terrain`
  ADD CONSTRAINT `FK_55BE6F798A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `cour_eau_limite_terrain`
--
ALTER TABLE `cour_eau_limite_terrain`
  ADD CONSTRAINT `FK_2A2ACB328A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `demenbrement_prop`
--
ALTER TABLE `demenbrement_prop`
  ADD CONSTRAINT `FK_D7DCF5968A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `deplacement`
--
ALTER TABLE `deplacement`
  ADD CONSTRAINT `FK_1296FAC2D2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`),
  ADD CONSTRAINT `FK_1296FAC2F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_deplacement` (`id`);

--
-- Contraintes pour la table `devis`
--
ALTER TABLE `devis`
  ADD CONSTRAINT `FK_8B27C52BC18272` FOREIGN KEY (`projet_id`) REFERENCES `projet` (`id`);

--
-- Contraintes pour la table `document`
--
ALTER TABLE `document`
  ADD CONSTRAINT `FK_D8698A76D2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`);

--
-- Contraintes pour la table `doc_local_urbanisme`
--
ALTER TABLE `doc_local_urbanisme`
  ADD CONSTRAINT `FK_B0D9BF9D8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`),
  ADD CONSTRAINT `FK_B0D9BF9DC54C8C93` FOREIGN KEY (`type_id`) REFERENCES `type_doc_urbanisme` (`id`);

--
-- Contraintes pour la table `email`
--
ALTER TABLE `email`
  ADD CONSTRAINT `FK_E7927C74E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`),
  ADD CONSTRAINT `FK_E7927C74F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_email` (`id`);

--
-- Contraintes pour la table `entreprise`
--
ALTER TABLE `entreprise`
  ADD CONSTRAINT `FK_D19FA60F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_entreprise` (`id`);

--
-- Contraintes pour la table `environement`
--
ALTER TABLE `environement`
  ADD CONSTRAINT `FK_19F04B86173F91FD` FOREIGN KEY (`env_de_type_id`) REFERENCES `env_de_type` (`id`),
  ADD CONSTRAINT `FK_19F04B862F35B472` FOREIGN KEY (`env_perimetre_id`) REFERENCES `env_perimetre` (`id`),
  ADD CONSTRAINT `FK_19F04B8642F9133D` FOREIGN KEY (`bati_environant_id`) REFERENCES `bati_environant` (`id`),
  ADD CONSTRAINT `FK_19F04B86503E9859` FOREIGN KEY (`env_reseaux_transport_id`) REFERENCES `env_reseaux_transport` (`id`),
  ADD CONSTRAINT `FK_19F04B86950E4556` FOREIGN KEY (`env_equipement_public_id`) REFERENCES `env_equipement_public` (`id`),
  ADD CONSTRAINT `FK_19F04B86ACDD68CD` FOREIGN KEY (`env_com_serv_id`) REFERENCES `env_com_serv` (`id`),
  ADD CONSTRAINT `FK_19F04B86F932F33C` FOREIGN KEY (`env_nuisances_sonores_id`) REFERENCES `env_nuisances_sonores` (`id`);

--
-- Contraintes pour la table `env_autre_nuisances`
--
ALTER TABLE `env_autre_nuisances`
  ADD CONSTRAINT `FK_BD47D8BB8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `env_commerces`
--
ALTER TABLE `env_commerces`
  ADD CONSTRAINT `FK_BA9EB14C8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `env_de_type`
--
ALTER TABLE `env_de_type`
  ADD CONSTRAINT `FK_BA8CC2508A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `env_equipement_public`
--
ALTER TABLE `env_equipement_public`
  ADD CONSTRAINT `FK_BA7F9EA78A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `env_nuisances_sonores`
--
ALTER TABLE `env_nuisances_sonores`
  ADD CONSTRAINT `FK_654D71ED8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `env_observation`
--
ALTER TABLE `env_observation`
  ADD CONSTRAINT `FK_1B232E0E8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `env_perimetre`
--
ALTER TABLE `env_perimetre`
  ADD CONSTRAINT `FK_A194DDD48A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `env_reseaux_transport`
--
ALTER TABLE `env_reseaux_transport`
  ADD CONSTRAINT `FK_11AE42B08A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `espace_libre`
--
ALTER TABLE `espace_libre`
  ADD CONSTRAINT `FK_1AE934EA8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `etat_des_lieux`
--
ALTER TABLE `etat_des_lieux`
  ADD CONSTRAINT `FK_F7210312F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_etat_des_lieux` (`id`);

--
-- Contraintes pour la table `forfait`
--
ALTER TABLE `forfait`
  ADD CONSTRAINT `FK_BBB5C482D2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`);

--
-- Contraintes pour la table `haut_max_const`
--
ALTER TABLE `haut_max_const`
  ADD CONSTRAINT `FK_388190198A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `hebergement`
--
ALTER TABLE `hebergement`
  ADD CONSTRAINT `FK_4852DD9CD2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`);

--
-- Contraintes pour la table `historique`
--
ALTER TABLE `historique`
  ADD CONSTRAINT `FK_EDBFD5ECA4AEAFEA` FOREIGN KEY (`entreprise_id`) REFERENCES `entreprise` (`id`),
  ADD CONSTRAINT `FK_EDBFD5ECC18272` FOREIGN KEY (`projet_id`) REFERENCES `projet` (`id`),
  ADD CONSTRAINT `FK_EDBFD5ECE7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`);

--
-- Contraintes pour la table `ident_coord_props`
--
ALTER TABLE `ident_coord_props`
  ADD CONSTRAINT `FK_AF99E9FD8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`),
  ADD CONSTRAINT `FK_AF99E9FDE7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`);

--
-- Contraintes pour la table `implantation_domaine_public`
--
ALTER TABLE `implantation_domaine_public`
  ADD CONSTRAINT `FK_33D1D9DD8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `implantation_lim_separatives`
--
ALTER TABLE `implantation_lim_separatives`
  ADD CONSTRAINT `FK_7D2373268A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `implantation_propriete`
--
ALTER TABLE `implantation_propriete`
  ADD CONSTRAINT `FK_FE59F5D68A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `intervenant`
--
ALTER TABLE `intervenant`
  ADD CONSTRAINT `FK_73D0145CA4AEAFEA` FOREIGN KEY (`entreprise_id`) REFERENCES `entreprise` (`id`),
  ADD CONSTRAINT `FK_73D0145CD2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`),
  ADD CONSTRAINT `FK_73D0145CE7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`),
  ADD CONSTRAINT `FK_73D0145CF6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_intervenant` (`id`);

--
-- Contraintes pour la table `liste_annexes_consulte`
--
ALTER TABLE `liste_annexes_consulte`
  ADD CONSTRAINT `FK_B36D206EFD83624` FOREIGN KEY (`doc_local_urbanisme_id`) REFERENCES `doc_local_urbanisme` (`id`);

--
-- Contraintes pour la table `mail`
--
ALTER TABLE `mail`
  ADD CONSTRAINT `FK_5126AC48A4AEAFEA` FOREIGN KEY (`entreprise_id`) REFERENCES `entreprise` (`id`),
  ADD CONSTRAINT `FK_5126AC48E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`),
  ADD CONSTRAINT `FK_5126AC48F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_mail` (`id`);

--
-- Contraintes pour la table `mission`
--
ALTER TABLE `mission`
  ADD CONSTRAINT `FK_9067F23CC18272` FOREIGN KEY (`projet_id`) REFERENCES `projet` (`id`),
  ADD CONSTRAINT `FK_9067F23CC54C8C93` FOREIGN KEY (`type_id`) REFERENCES `type_mission` (`id`);

--
-- Contraintes pour la table `moyen`
--
ALTER TABLE `moyen`
  ADD CONSTRAINT `FK_2D6523D6D2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`);

--
-- Contraintes pour la table `note`
--
ALTER TABLE `note`
  ADD CONSTRAINT `FK_CFBDFA14A4AEAFEA` FOREIGN KEY (`entreprise_id`) REFERENCES `entreprise` (`id`),
  ADD CONSTRAINT `FK_CFBDFA14E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`);

--
-- Contraintes pour la table `observation_eau_terrain`
--
ALTER TABLE `observation_eau_terrain`
  ADD CONSTRAINT `FK_245862D68A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `observation_vegetation_terrain`
--
ALTER TABLE `observation_vegetation_terrain`
  ADD CONSTRAINT `FK_8EF494138A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `occupation_terrain`
--
ALTER TABLE `occupation_terrain`
  ADD CONSTRAINT `FK_2B0C386B8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `ouverture_dossier`
--
ALTER TABLE `ouverture_dossier`
  ADD CONSTRAINT `FK_4F94D6EB41DEFADA` FOREIGN KEY (`devis_id`) REFERENCES `devis` (`id`);

--
-- Contraintes pour la table `pente5`
--
ALTER TABLE `pente5`
  ADD CONSTRAINT `FK_2D0A4F228A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `pieces_jointes_relief`
--
ALTER TABLE `pieces_jointes_relief`
  ADD CONSTRAINT `FK_E7FD3E38A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `piece_consulte`
--
ALTER TABLE `piece_consulte`
  ADD CONSTRAINT `FK_95E194288A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `piece_jointe_serv_prive`
--
ALTER TABLE `piece_jointe_serv_prive`
  ADD CONSTRAINT `FK_C9E547708A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `plan_bornage_joint`
--
ALTER TABLE `plan_bornage_joint`
  ADD CONSTRAINT `FK_B2CB77138A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `plan_cadastre`
--
ALTER TABLE `plan_cadastre`
  ADD CONSTRAINT `FK_25765AF68A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `profession`
--
ALTER TABLE `profession`
  ADD CONSTRAINT `FK_BA930D69A4AEAFEA` FOREIGN KEY (`entreprise_id`) REFERENCES `entreprise` (`id`),
  ADD CONSTRAINT `FK_BA930D69E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`);

--
-- Contraintes pour la table `projet`
--
ALTER TABLE `projet`
  ADD CONSTRAINT `FK_50159CA953B4F1DE` FOREIGN KEY (`priorite_id`) REFERENCES `priorite` (`id`),
  ADD CONSTRAINT `FK_50159CA987998E` FOREIGN KEY (`origine_id`) REFERENCES `contact` (`id`),
  ADD CONSTRAINT `FK_50159CA98A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`),
  ADD CONSTRAINT `FK_50159CA9C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `type_projet` (`id`);

--
-- Contraintes pour la table `raccordement_evacuation_eaux_usees`
--
ALTER TABLE `raccordement_evacuation_eaux_usees`
  ADD CONSTRAINT `FK_6CFC4E4B8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `raccordement_reseaux_eau`
--
ALTER TABLE `raccordement_reseaux_eau`
  ADD CONSTRAINT `FK_DA1406FE8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `raccordement_reseau_electrique`
--
ALTER TABLE `raccordement_reseau_electrique`
  ADD CONSTRAINT `FK_DDC29B468A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `raccordement_reseau_gaz`
--
ALTER TABLE `raccordement_reseau_gaz`
  ADD CONSTRAINT `FK_8240717F8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `reference_cadastrale`
--
ALTER TABLE `reference_cadastrale`
  ADD CONSTRAINT `FK_426BDFA18A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `reglement_zone_joint`
--
ALTER TABLE `reglement_zone_joint`
  ADD CONSTRAINT `FK_AADF24BE8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `relief_terrain`
--
ALTER TABLE `relief_terrain`
  ADD CONSTRAINT `FK_E0CB4E98A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `rendez_vous_architecte`
--
ALTER TABLE `rendez_vous_architecte`
  ADD CONSTRAINT `FK_D0F7B5898A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `rendez_vous_hypotheque`
--
ALTER TABLE `rendez_vous_hypotheque`
  ADD CONSTRAINT `FK_85C525418A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `rendez_vous_serv_urb`
--
ALTER TABLE `rendez_vous_serv_urb`
  ADD CONSTRAINT `FK_39FF7F918A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `reseau_observation`
--
ALTER TABLE `reseau_observation`
  ADD CONSTRAINT `FK_FDEC793E8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `reseau_telephone_fibre`
--
ALTER TABLE `reseau_telephone_fibre`
  ADD CONSTRAINT `FK_ADCF20198A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `restauration`
--
ALTER TABLE `restauration`
  ADD CONSTRAINT `FK_898B1EF1D2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`);

--
-- Contraintes pour la table `reunion`
--
ALTER TABLE `reunion`
  ADD CONSTRAINT `FK_5B00A482D2235D39` FOREIGN KEY (`tache_id`) REFERENCES `tache` (`id`);

--
-- Contraintes pour la table `servitude_pieces_jointe`
--
ALTER TABLE `servitude_pieces_jointe`
  ADD CONSTRAINT `FK_B3E089AB8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `servitude_prive`
--
ALTER TABLE `servitude_prive`
  ADD CONSTRAINT `FK_FCF4F0998A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `servitude_prive_creer`
--
ALTER TABLE `servitude_prive_creer`
  ADD CONSTRAINT `FK_7CA4E4A08A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `servitude_publique`
--
ALTER TABLE `servitude_publique`
  ADD CONSTRAINT `FK_56AA69FC8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `servitude_urbanisme`
--
ALTER TABLE `servitude_urbanisme`
  ADD CONSTRAINT `FK_4C9264568A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `sta2_roues`
--
ALTER TABLE `sta2_roues`
  ADD CONSTRAINT `FK_EE352B6D8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `sta_automobile`
--
ALTER TABLE `sta_automobile`
  ADD CONSTRAINT `FK_390D383F8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `tache`
--
ALTER TABLE `tache`
  ADD CONSTRAINT `FK_938720757E3C61F9` FOREIGN KEY (`owner_id`) REFERENCES `user` (`id`),
  ADD CONSTRAINT `FK_93872075BE6CAE90` FOREIGN KEY (`mission_id`) REFERENCES `mission` (`id`),
  ADD CONSTRAINT `FK_93872075F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_tache` (`id`);

--
-- Contraintes pour la table `telephone`
--
ALTER TABLE `telephone`
  ADD CONSTRAINT `FK_450FF010A4AEAFEA` FOREIGN KEY (`entreprise_id`) REFERENCES `entreprise` (`id`),
  ADD CONSTRAINT `FK_450FF010E7A1254A` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`),
  ADD CONSTRAINT `FK_450FF010F6203804` FOREIGN KEY (`statut_id`) REFERENCES `statut_telephone` (`id`);

--
-- Contraintes pour la table `terrain`
--
ALTER TABLE `terrain`
  ADD CONSTRAINT `FK_C87653B16538AB43` FOREIGN KEY (`stade_id`) REFERENCES `stade_terrain` (`id`),
  ADD CONSTRAINT `FK_C87653B187998E` FOREIGN KEY (`origine_id`) REFERENCES `contact` (`id`);

--
-- Contraintes pour la table `terrain_reg_const`
--
ALTER TABLE `terrain_reg_const`
  ADD CONSTRAINT `FK_4DC07FCB8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `terrain_viabilise`
--
ALTER TABLE `terrain_viabilise`
  ADD CONSTRAINT `FK_AB4D9BF98A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `trace_deau`
--
ALTER TABLE `trace_deau`
  ADD CONSTRAINT `FK_20C920A38A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `type_proprietaire`
--
ALTER TABLE `type_proprietaire`
  ADD CONSTRAINT `FK_EEA023D38A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `vegetation`
--
ALTER TABLE `vegetation`
  ADD CONSTRAINT `FK_D25C7EDB83C27326` FOREIGN KEY (`densite_id`) REFERENCES `densite` (`id`),
  ADD CONSTRAINT `FK_D25C7EDB8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `verif_cadastre`
--
ALTER TABLE `verif_cadastre`
  ADD CONSTRAINT `FK_C0117DA8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_acces`
--
ALTER TABLE `zone_acces`
  ADD CONSTRAINT `FK_76DA94B68A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_cara_cterrain`
--
ALTER TABLE `zone_cara_cterrain`
  ADD CONSTRAINT `FK_2E44B2C58A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_cond_part`
--
ALTER TABLE `zone_cond_part`
  ADD CONSTRAINT `FK_9E5EC5998A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_oblig_mixite_fonct`
--
ALTER TABLE `zone_oblig_mixite_fonct`
  ADD CONSTRAINT `FK_DF3C94D28A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_oblig_mixite_sociale`
--
ALTER TABLE `zone_oblig_mixite_sociale`
  ADD CONSTRAINT `FK_49037A588A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_occup_cond_part`
--
ALTER TABLE `zone_occup_cond_part`
  ADD CONSTRAINT `FK_2929C3F08A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_occ_util_int`
--
ALTER TABLE `zone_occ_util_int`
  ADD CONSTRAINT `FK_520ED56D8A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);

--
-- Contraintes pour la table `zone_reseaux`
--
ALTER TABLE `zone_reseaux`
  ADD CONSTRAINT `FK_F79FCB298A2D8B41` FOREIGN KEY (`terrain_id`) REFERENCES `terrain` (`id`);
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
