├── .editorconfig ├── .env.e2e ├── .env.example ├── .env.iframe_build_control ├── .github ├── auto_assign.yml ├── dependabot.yml ├── has-file-changes.sh └── workflows │ ├── associate-actual-milestone.yml │ ├── cd.yml │ ├── check-experimental-website.yml │ ├── check-links-validity.yaml │ └── ci.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .talismanrc ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── backend ├── .eslintrc.yml ├── config │ ├── index.ts │ └── mongoose.ts ├── configure.ts ├── controllers │ ├── data.ts │ ├── emails.ts │ ├── followups.ts │ ├── france-connect.ts │ ├── moncomptepro.ts │ ├── openfisca.ts │ ├── outils.ts │ ├── simulation-demo.ts │ ├── simulation.ts │ ├── teleservices │ │ └── index.ts │ └── webhook.ts ├── dev.ts ├── lib │ ├── definitions.ts │ ├── followup-factory.ts │ ├── france-connect-service.ts │ ├── mattermost-bot │ │ ├── mattermost.ts │ │ └── poll-result.ts │ ├── mes-aides │ │ ├── distance.ts │ │ └── emails │ │ │ ├── email-render.ts │ │ │ ├── index.ts │ │ │ ├── simulation-results.ts │ │ │ └── templates │ │ │ ├── 1jeune1solution │ │ │ ├── header.mjml │ │ │ └── style.yaml │ │ │ ├── email.mjml │ │ │ ├── footer.mjml │ │ │ ├── simulation-results.mjml │ │ │ ├── simulation-results.txt │ │ │ ├── simulation-usefulness.mjml │ │ │ └── simulation-usefulness.txt │ ├── messaging │ │ ├── email │ │ │ └── email-service.ts │ │ ├── sending.ts │ │ └── sms │ │ │ └── sms-service.ts │ ├── migrations │ │ ├── apply.ts │ │ ├── followups │ │ │ ├── to-v1.ts │ │ │ ├── to-v2.ts │ │ │ ├── to-v3.ts │ │ │ ├── to-v4.ts │ │ │ ├── to-v5.ts │ │ │ └── to-v6.ts │ │ ├── index.ts │ │ ├── looper.sh │ │ └── simulations │ │ │ ├── to-v1.ts │ │ │ ├── to-v10.ts │ │ │ ├── to-v11.ts │ │ │ ├── to-v12.ts │ │ │ ├── to-v13.ts │ │ │ ├── to-v14.ts │ │ │ ├── to-v15.ts │ │ │ ├── to-v16.ts │ │ │ ├── to-v17.ts │ │ │ ├── to-v2.ts │ │ │ ├── to-v3.ts │ │ │ ├── to-v4.ts │ │ │ ├── to-v5.ts │ │ │ ├── to-v6.ts │ │ │ ├── to-v7.ts │ │ │ ├── to-v8.ts │ │ │ └── to-v9.ts │ ├── mongo-connector.ts │ ├── openfisca │ │ ├── bulk │ │ │ └── index.ts │ │ ├── getter.ts │ │ ├── index.ts │ │ ├── mapping │ │ │ ├── common.ts │ │ │ ├── index.ts │ │ │ ├── individu │ │ │ │ ├── index.ts │ │ │ │ ├── past-resources-proxy.ts │ │ │ │ └── ressources.ts │ │ │ ├── last3-months-duplication.ts │ │ │ ├── menage │ │ │ │ └── index.ts │ │ │ ├── property-move.ts │ │ │ └── utils.ts │ │ ├── parameters.ts │ │ └── test.ts │ ├── simulation.ts │ ├── smtp.ts │ ├── stats │ │ ├── cli.ts │ │ ├── funnel-service.ts │ │ ├── index.ts │ │ ├── institutions.ts │ │ ├── mongodb.ts │ │ └── piwik.ts │ ├── teleservices │ │ ├── aides-jeunes-preremplissage.ts │ │ ├── aides-jeunes-service-logement.ts │ │ ├── demarches-simplifiees.ts │ │ ├── openfisca-axe.ts │ │ ├── openfisca-response.ts │ │ ├── openfisca-tracer.ts │ │ └── pnds.ts │ └── utils.ts ├── mock.ts ├── models │ ├── followup-schema.ts │ ├── followup.ts │ ├── simulation.ts │ └── survey-schema.ts ├── routes-loader │ ├── api.ts │ └── index.ts ├── routes │ ├── data.ts │ ├── emails.ts │ ├── followup-redirect.ts │ ├── followups.ts │ ├── france-connect.ts │ ├── legacy-sms.ts │ ├── moncomptepro.ts │ ├── openfisca.ts │ ├── outils.ts │ ├── proxy.ts │ ├── short.ts │ ├── simulation.ts │ ├── support.ts │ ├── teleservices.ts │ └── webhook.ts ├── server.ts └── types │ ├── config.d.ts │ ├── express.d.ts │ ├── models.d.ts │ ├── openfisca.d.ts │ ├── question.d.ts │ ├── rdv-aide-numerique.d.ts │ └── stats.d.ts ├── contribuer ├── .eslintrc.js ├── .prettierignore ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ ├── _document.js │ └── index.js ├── public │ ├── admin │ │ ├── admin.css │ │ ├── config.yml │ │ ├── custom-controls.js │ │ ├── description.js │ │ ├── index.html │ │ ├── institution.js │ │ └── main.js │ └── css │ │ ├── custom-controls.css │ │ ├── institution.css │ │ └── style.css └── styles │ └── main.css ├── cypress.config.ts ├── cypress ├── e2e │ ├── base.cy.js │ ├── extra │ │ └── experimentations.cy.js │ ├── family.cy.js │ ├── handicap.cy.js │ ├── patrimoine.cy.js │ └── student.cy.js ├── package.json └── utils │ ├── come-back-later.js │ ├── controllers.js │ ├── form.js │ ├── foyer.js │ ├── logement.js │ ├── navigate.js │ ├── profil.js │ ├── projet.js │ ├── results.js │ ├── revenu.js │ └── smtp-proxy.js ├── data ├── all.ts ├── benefits │ ├── additional-attributes │ │ ├── index.ts │ │ └── occitanie-carte-transport-scolaire-lio.ts │ ├── aides-velo-generator.ts │ ├── dynamic │ │ ├── apa.ts │ │ ├── fsl.ts │ │ ├── incitations-covoiturage.json │ │ └── incitations-covoiturage.ts │ ├── javascript │ │ ├── aide-au-bafa-pour-une-session-dapprofondissement-ou-de-qualification-caf-de-la-haute-savoie.yml │ │ ├── aide-au-bafa-pour-une-session-de-formation-générale-caf-de-la-haute-savoie.yml │ │ ├── aide-colocations-solidaire-pour-les-etudiants.yml │ │ ├── aide-demonstration-preremplissage.yml │ │ ├── aide-demonstration-rdv-service-public.yml │ │ ├── artois-mobilite-aide-covoiturage.yml │ │ ├── atmb-aide-covoiturage.yml │ │ ├── auvergne-rhone-alpes-bourse-merite.yml │ │ ├── auvergne-rhone-alpes-pass-region.yml │ │ ├── avant-pays-savoyard-aide-covoiturage.yml │ │ ├── benefit_front_test.yml │ │ ├── bourgogne-franche-comte-dynastage.yml │ │ ├── brest_metropole-abonnement-transports-pour-les-étudiant·es-boursier·es.yml │ │ ├── bretagne-aide-code-permis.yml │ │ ├── bretagne-b-monde-individuel.yml │ │ ├── bretagne-jeune-international.yml │ │ ├── ca_grand_verdun_bourse_au_permis_de_conduire.yml │ │ ├── caf-aide-nationale-bafa.yml │ │ ├── caf-ain-aide-bafa-session-approfondissement-qualification.yml │ │ ├── caf-ain-aide-bafa-session-generale.yml │ │ ├── caf-allier-aide-bafa-session-generale.yml │ │ ├── caf-alpes-maritimes-aide-autonomie-jeunes.yml │ │ ├── caf-alpes-maritimes-aide-bafa-approfondissement.yml │ │ ├── caf-alpes-maritimes-aide-bafa-generale.yml │ │ ├── caf-ardeche-aide-bafa.yml │ │ ├── caf-ardennes-aide-bafa-approfondissement.yml │ │ ├── caf-ardennes-aide-bafa-generale.yml │ │ ├── caf-aube-aide-bafa-approfondissement.yml │ │ ├── caf-aube-aide-bafa-generale.yml │ │ ├── caf-aube-bafd.yml │ │ ├── caf-aveyron-aide-bafa-approfondissement.yml │ │ ├── caf-bas-rhin-aide-bafa-approfondissement.yml │ │ ├── caf-bas-rhin-aide-bafa-generale.yml │ │ ├── caf-bouches-du-rhone-aide-bafa-approfondissement.yml │ │ ├── caf-bouches-du-rhone-aide-bafa-generale.yml │ │ ├── caf-bouches-du-rhone-aides-vacances.yml │ │ ├── caf-calvados-aide-bafa-approfondissement.yml │ │ ├── caf-calvados-aide-bafa-générale.yml │ │ ├── caf-calvados-bafd.yml │ │ ├── caf-charente-aide-bafa-generale.yml │ │ ├── caf-charente-maritime-aide-bafa-approfondissement.yml │ │ ├── caf-charente-maritime-aide-bafa-generale.yml │ │ ├── caf-charente-maritime-bafd.yml │ │ ├── caf-correze-aide-bafa-approfondissement.yml │ │ ├── caf-correze-aide-bafa-generale.yml │ │ ├── caf-corse-du-sud-aide-bafa-approfondissement.yml │ │ ├── caf-cotes-armor-aide-bafa-approfondissement.yml │ │ ├── caf-creuse-aide-bafa-generale.yml │ │ ├── caf-deux-sevres-aide-bafa-generale.yml │ │ ├── caf-doubs-aide-bafa-approfondissement.yml │ │ ├── caf-doubs-aide-bafa-generale.yml │ │ ├── caf-drome-aide-bafa-session-approfondissement-qualification.yml │ │ ├── caf-drome-aide-bafa-session-generale.yml │ │ ├── caf-eure-aide-bafa-generale.yml │ │ ├── caf-eure-et-loir-aide-bafa-approfondissement.yml │ │ ├── caf-gironde-aide-au-bafa-pour-une-session-de-formation-dapprofondissement.yml │ │ ├── caf-gironde-aide-vacances-avf.yml │ │ ├── caf-guyane-aide-bafa.yml │ │ ├── caf-haute-loire-aide-bafa-approfondissement.yml │ │ ├── caf-haute-loire-aide-bafa-generale.yml │ │ ├── caf-haute-marne-aide-bafa-generale.yml │ │ ├── caf-haute-marne-aide-bafd.yml │ │ ├── caf-haute-marne-aide-equipement-informatique.yml │ │ ├── caf-haute-marne-aide-parcours-jeunes.yml │ │ ├── caf-haute-saone-aide-autonomie.yml │ │ ├── caf-haute-saone-aide-bafa.yml │ │ ├── caf-haute-vienne-aide-bafa-generale.yml │ │ ├── caf-hautes-alpes-aide-bafa-generale.yml │ │ ├── caf-hautes-pyrenees-aide-bafa-generale.yml │ │ ├── caf-indre-et-loire-aide-bafa-approfondissement.yml │ │ ├── caf-indre-et-loire-aide-bafa-generale.yml │ │ ├── caf-jura-aide-bafa-approfondissement.yml │ │ ├── caf-jura-aide-bafa-generale.yml │ │ ├── caf-loir-et-cher-aide-bafa-approfondissement.yml │ │ ├── caf-loir-et-cher-aide-bafa-generale.yml │ │ ├── caf-loire-aide-bafa-approfondissement.yml │ │ ├── caf-loire-aide-bafa-generale.yml │ │ ├── caf-loire-atlantique-aide-bafa-approfondissement.yml │ │ ├── caf-loiret-aide-bafa-approfondissement.yml │ │ ├── caf-loiret-aide-bafa-generale.yml │ │ ├── caf-lot-et-garonne-aide-bafa-approfondissement.yml │ │ ├── caf-lot-et-garonne-aide-bafa-generale.yml │ │ ├── caf-mayenne-aide-bafa-approfondissement.yml │ │ ├── caf-mayenne-aide-bafa-generale.yml │ │ ├── caf-meurthe-et-moselle-aide-bafa-approfondissement.yml │ │ ├── caf-meurthe-et-moselle-aide-bafa-bafd.yml │ │ ├── caf-meurthe-et-moselle-aide-bafa-generale.yml │ │ ├── caf-meuse-aide-bafa-generale.yml │ │ ├── caf-morbihan-aide-bafa-approfondissement.yml │ │ ├── caf-nord-aide-achat-equipement.yml │ │ ├── caf-nord-aide-bafa-approfondissement.yml │ │ ├── caf-nord-aide-vacances.yml │ │ ├── caf-nord-bafd.yml │ │ ├── caf-orne-aide-bafa-generale.yml │ │ ├── caf-paris-aide-vacances-ave.yml │ │ ├── caf-paris-aide-vacances-avf.yml │ │ ├── caf-puy-de-dome-aide-bafa-generale.yml │ │ ├── caf-pyrenees-orientales-aide-bafa-approfondissement.yml │ │ ├── caf-pyrenees-orientales-aide-bafa-generale.yml │ │ ├── caf-reunion-aide-bafa-approfondissement.yml │ │ ├── caf-reunion-aide-bafa-generale.yml │ │ ├── caf-rhone-aide-vacances.yml │ │ ├── caf-saone-et-loire-aide-bafa-generale.yml │ │ ├── caf-sarthe-aide-bafa-approfondissement.yml │ │ ├── caf-sarthe-aide-bafa-generale.yml │ │ ├── caf-savoie-aide-bafa.yml │ │ ├── caf-seine-et-marne-aide-bafa-generale.yml │ │ ├── caf-seine-maritime-aide-bafa-approfondissement.yml │ │ ├── caf-seine-st-denis-aide-bafa-approfondissement.yml │ │ ├── caf-somme-aide-bafa-generale.yml │ │ ├── caf-tarn-aide-bafa-approfondissement.yml │ │ ├── caf-tarn-et-garonne-aide-bafa-approfondissement.yml │ │ ├── caf-tarn-et-garonne-aide-bafa-generale.yml │ │ ├── caf-territoire-de-belfort-aide-bafa-approfondissement.yml │ │ ├── caf-territoire-de-belfort-aide-bafa-generale.yml │ │ ├── caf-val-de-marne-aide-bafa-approfondissement-qualification.yml │ │ ├── caf-val-de-marne-aide-bafa-formation-generale.yml │ │ ├── caf-var-aide-bafa-approfondissement.yml │ │ ├── caf-vaucluse-aide-bafa-approfondissement.yml │ │ ├── caf-vaucluse-aide-bafa-generale.yml │ │ ├── caf-vosges-aide-bafa-generale.yml │ │ ├── caf-yvelines-aide-bafa-generale.yml │ │ ├── caf_alpes_maritimes-une-aide-au-départ-en-vacances-pour-les-jeunes-le-dispositif-sac-ados.yml │ │ ├── caf_cotes_armor-aide-au-brevet-daptitude-aux-fonctions-de-directeur-bafd.yml │ │ ├── caf_dordogne-aide-au-bafa-pour-une-session-de-formation-générale-et-dapprofondissement.yml │ │ ├── caf_dordogne-aide-au-brevet-daptitude-aux-fonctions-de-directeur-bafd.yml │ │ ├── caf_doubs-aide-au-brevet-daptitude-aux-fonctions-de-directeur-bafd.yml │ │ ├── caf_eure-aide-au-brevet-daptitude-aux-fonctions-de-directeur-bafd.yml │ │ ├── caf_gironde_aide_vacances_ave.yml │ │ ├── caf_haute_garonne-aide-complémentaire-au-bafa-handicap.yml │ │ ├── caf_ille_et_vilaine-aides-au-bafa-et-bafd-pour-une-formation-générale-ou-dapprofondissement-qualification.yml │ │ ├── caf_isere-aide-au-bafa-pour-une-session-de-formation-générale-et-dapprofondissement.yml │ │ ├── caf_maine_et_loire-aide-au-bafa-pour-une-session-de-formation-générale.yml │ │ ├── caf_morbihan-aide-au-brevet-daptitude-aux-fonctions-de-directeur-bafd.yml │ │ ├── caf_moselle-aide-au-bafa-pour-une-session-de-formation-générale.yml │ │ ├── caf_oise-aide-au-bafa-pour-une-session-de-formation-dapprofondissement-ou-de-qualification.yml │ │ ├── caf_oise-aide-au-bafa-pour-une-session-de-formation-générale.yml │ │ ├── caf_orne-aide-au-brevet-daptitude-aux-fonctions-de-directeur-bafd.yml │ │ ├── caf_pas_de_calais-aide-au-bafa-pour-une-session-de-formation-générale.yml │ │ ├── caf_pas_de_calais-aide-à-loutillage.yml │ │ ├── caf_saone_et_loire-aide-à-lautonomie-des-jeunes.yml │ │ ├── cc-pays-de-la-chataigneraie-accompagnement.yml │ │ ├── centre-val-de-loire-aide-au-1er-equipement-professionnel.yml │ │ ├── centre-val-de-loire-aide-depot-garantie.yml │ │ ├── centre-val-de-loire-cheque-emploi.yml │ │ ├── centre-val-de-loire-mobilite-internationale-etudiants.yml │ │ ├── centre-val-de-loire-pass-yeps.yml │ │ ├── chemille-en-anjou-mutuelle-communale.yml │ │ ├── cohesion-territoires-logement-social.yml │ │ ├── cohesion_territoires-aide-covoiturage-du-quotidien.yml │ │ ├── collectivite-europeenne-alsace-fonds-aide-jeunes.yml │ │ ├── communaute-de-communes-rhone-lez-provence-aide-au-financement-du-permis.yml │ │ ├── communaute-de-communes-sud-herault-bourse-communale-au-permis-de-conduire.yml │ │ ├── departement-aude-aide-personnalisee-retour-emploi-mobilite.yml │ │ ├── departement-corse-bourse-animazioni.yml │ │ ├── departement-gironde-aide-departementale-au-permis-de-conduire.yml │ │ ├── departement-mayenne-aide-etudiants-infirmiers.yml │ │ ├── departement-mayenne-aide-etudiants-kine.yml │ │ ├── departement-mayenne-aide-etudiants-maieutique.yml │ │ ├── departement-mayenne-aide-etudiants-orthophonistes.yml │ │ ├── departement-mayenne-aide-etudiants-pharmaciens.yml │ │ ├── departement-val-d-oise-bourse-aux-apprentis.yml │ │ ├── departement-var-fonds-de-solidarite-energie.yml │ │ ├── departement_ain_carte_jeunes.yml │ │ ├── departement_ardeche_aide_au_permis_de_conduire.yml │ │ ├── departement_aude-aide-departementale-au-permis-de-conduire.yml │ │ ├── departement_charente_maritime-aide-departementale-au-permis-de-conduire.yml │ │ ├── departement_cotes_d_armor-aide-departementale-au-permis-de-conduire-passengagement.yml │ │ ├── departement_landes-aide-au-financement-du-permis-de-conduire-permis-citoyen.yml │ │ ├── departement_maine_et_loire_conduite_supervisee_afodil.yml │ │ ├── departement_mayenne-aide-au-bafa-du-departement-de-la-mayenne.yml │ │ ├── departement_mayenne-aide-au-bafd.yml │ │ ├── departement_oise-aide-au-financement-du-permis-de-conduire-permis-citoyen.yml │ │ ├── departement_orne-aide-departementale-au-permis-de-conduire.yml │ │ ├── departement_pas_de_calais-aide-au-financement-du-permis-de-conduire-permis-citoyen.yml │ │ ├── etat-abonnement-transports-sur-le-reseau-tag.yml │ │ ├── etat-aide-nationale-service-civique-bafa-bafd.yml │ │ ├── etat-domiciliation-pour-les-personnes-sans-domicile-stable.yml │ │ ├── fonds-daction-sociale-du-travail-temporaire-fastt-sos-location-de-cyclomoteur.yml │ │ ├── fonds-daction-sociale-du-travail-temporaire-fastt-sos-location-de-vehicule.yml │ │ ├── france-travail-aif.yml │ │ ├── grand-est-aide-mobilite-internationale-etudiants.yml │ │ ├── grand-est-bourse-du-secteur-sanitaire-et-social.yml │ │ ├── grand-est-experiences-de-jeunesse.yml │ │ ├── grand-est-jeunest.yml │ │ ├── grand-est-mobilite-internationale-sanitaire-et-sociale.yml │ │ ├── grand-est-parcours-acquisition-des-competences-en-entreprises.yml │ │ ├── grand-est-passetudes.yml │ │ ├── guadeloupe-aide-au-permis-de-conduire-des-apprenti-e-s.yml │ │ ├── guadeloupe-aide-au-permis-de-conduire-des-jeunes-en-service-civique.yml │ │ ├── guadeloupe-bourse-sanitaire.yml │ │ ├── guadeloupe-bourse-sociale.yml │ │ ├── guadeloupe-hebergement-cite-internationale-universitaire-de-paris.yml │ │ ├── guadeloupe-pret-etudiant·e-taux-zero.yml │ │ ├── guadeloupe-stage-regional-jeunes-en-entreprise.yml │ │ ├── guyane-fonds-aide-jeunes.yml │ │ ├── haut-de-france-aide-transports-salaries.yml │ │ ├── hauts-de-france-aide-restauration-etudiants-boursiers.yml │ │ ├── hauts-de-france-aide-à-la-restauration-des-étudiants-boursiers-en-filière-sanitaire-et-sociale.yml │ │ ├── hauts-de-france-bourse-mobilite-mermoz.yml │ │ ├── hauts-de-france-bourses-etudes-sanitaires-et-sociales.yml │ │ ├── hauts-de-france-carte-generation-apprentis-aide-equipement.yml │ │ ├── hauts-de-france-carte-generation-apprentis-aide-restauration.yml │ │ ├── hauts-de-france-carte-generation-apprentis-aide-transport.yml │ │ ├── hauts-de-france-carte-generation-hebergement.yml │ │ ├── hauts-de-france-carte-génération-lyceens.yml │ │ ├── hauts-de-france-en-route-pour-lemploi-parc-auto-1euro.yml │ │ ├── hauts-de-france-fonds-regional-aide-urgence-sanitaire-social.yml │ │ ├── hauts-de-france-formations-sanitaires-sociales-niveaux-3-4.yml │ │ ├── hauts-de-france-indemnites-protec-soc-formation-pro.yml │ │ ├── hauts-de-france-ma-carte-ter.yml │ │ ├── hauts-de-france-mon-abo-etudiant-ter.yml │ │ ├── hauts-de-france-transport-etudiants.yml │ │ ├── ile-de-france-aide-au-merite.yml │ │ ├── ile-de-france-aide-covoiturage.yml │ │ ├── intercommunalite_bordeaux-tarification-solidaire-des-transports.yml │ │ ├── intercommunalite_golfe_du_morbihan_vannes_agglomeration-aide-a-lhabillement.yml │ │ ├── intercommunalite_golfe_du_morbihan_vannes_agglomeration-aide-aux-impayes-denergie-et-eau.yml │ │ ├── intercommunalite_golfe_du_morbihan_vannes_agglomeration-tarification-solidaire-bus.yml │ │ ├── intercommunalite_golfe_du_morbihan_vannes_agglomeration-ticket-sport-culture-et-nature.yml │ │ ├── intercommunalite_metropole_lyon-pret-d-un-velo-freevelo-v.yml │ │ ├── martinique-aide-territoriale-etudiants.yml │ │ ├── martinique-bourses-sanitaires-et-sociales.yml │ │ ├── martinique-pret-etudiant-taux-zero.yml │ │ ├── metropole-chateauroux-bourse-permis-de-conduire.yml │ │ ├── metropole-lyon-aide-covoiturage.yml │ │ ├── metropole-savoie-aide-covoiturage.yml │ │ ├── metropole_toulon_provence_mediterranee_aide_au_permis_de_conduire.yml │ │ ├── mission-locale-de-lagglomeration-dhenin-carvin-aide-au-financement-du-permis-de-conduire-le-permis-cest-permis.yml │ │ ├── msa_maine_et_loire_aide_permis.yml │ │ ├── occitanie-bourse-etudes-sanitaires-et-sociales.yml │ │ ├── occitanie-premier-equipement-professionnel.yml │ │ ├── pass-pass-annuel-pour-les-moins-de-26-ans.yml │ │ ├── pass-pass-mensuel-pour-les-moins-de-26-ans.yml │ │ ├── pass-pass-pour-les-demandeurs-demploi.yml │ │ ├── petr_bruche_mossig_aide_covoiturage.yml │ │ ├── plie-de-lens-lievin-aide-au-financement-du-permis-de-conduire.yml │ │ ├── pm-mobilites-le-mans-sarthe-aide-covoiturage.yml │ │ ├── pm_genevois_francais_aide_covoiturage.yml │ │ ├── provence-alpes-cote-azur-bourse-sanitaire-social.yml │ │ ├── provence-alpes-cote-azur-e-pass-jeunes.yml │ │ ├── pyrenees-orientales-financement-permis.yml │ │ ├── region-auvergne-rhone-alpes-abonnement-illico.yml │ │ ├── region-auvergne-rhone-alpes-abonnement-ter-illico.yml │ │ ├── region-auvergne-rhone-alpes-aide-financement-permis.yml │ │ ├── region-auvergne-rhone-alpes-billet-illico-autocars.yml │ │ ├── region-auvergne-rhone-alpes-bourse-mobilite-internationale-lycee-apprentissage.yml │ │ ├── region-auvergne-rhone-alpes-carte-ter-illico-liberte-jeunes.yml │ │ ├── region-auvergne-rhone-alpes-formation-sante-sociale.yml │ │ ├── region-auvergne-rhone-alpes-ter-illico-solidaire.yml │ │ ├── region-auvergne-rhone_alpes-bourse-mobilite-internationale-etudiants.yml │ │ ├── region-bourgogne-franche-comte-abonnement-scolaire-bfc.yml │ │ ├── region-bourgogne-franche-comte-aide-au-permis-de-conduire.yml │ │ ├── region-bourgogne-franche-comte-e-carte-avantages-jeunes.yml │ │ ├── region-bourgogne-franche-comte-etudes-etranger-aquisis.yml │ │ ├── region-bourgogne-franche-comte-jeunes-citoyens-du-monde.yml │ │ ├── region-bourgogne-franche-comte-ordil.yml │ │ ├── region-bourgogne-franche-comte-pass-vae.yml │ │ ├── region-bourgogne-franche-comte-restauration-familles-boursieres.yml │ │ ├── region-bourgogne-franche-comte-stages-monde.yml │ │ ├── region-bourgogne-franche-comte-tarif-jeune-26-ans.yml │ │ ├── region-bretagne-abonnement-breizhgo.yml │ │ ├── region-bretagne-aide-qualif-emploi.yml │ │ ├── region-bretagne-aide-qualif-vae.yml │ │ ├── region-bretagne-bourse-international-bts-dut.yml │ │ ├── region-bretagne-bourse-international-formation-sanitaires-sociales.yml │ │ ├── region-bretagne-bourse-international-lycee-pro.yml │ │ ├── region-bretagne-ehop-emploi.yml │ │ ├── region-bretagne-qualif-sanitaire-social.yml │ │ ├── region-centre-val-de-loire-aide-mobillico.yml │ │ ├── region-centre-val-de-loire-carte-rémi-liberté-jeune.yml │ │ ├── region-centre-val-de-loire-le-combo-parfait-aide-a-la-formation.yml │ │ ├── region-centre-val-de-loire-mobilite-internationale-apprenti.yml │ │ ├── region-centre-val-de-loire-mobilite-lyceen-agricole.yml │ │ ├── region-corse-aide-au-permis-prima-strada.yml │ │ ├── region-corse-bourse-a-la-mobilite-mobighjovani.yml │ │ ├── region-corse-depenses-rentree.yml │ │ ├── region-corse-faj.yml │ │ ├── region-grand-est-abonnement-primo.yml │ │ ├── region-hauts-de-france-aide-scola-lycee.yml │ │ ├── region-hauts-de-france-carte-ter-26-ans.yml │ │ ├── region-hauts-de-france-fonds-regional-social-urgence.yml │ │ ├── region-hauts-de-france-fonds-solidarite-apprentissage.yml │ │ ├── region-hauts-de-france-vae.yml │ │ ├── region-ile-de-france-aide-apprentissage.yml │ │ ├── region-ile-de-france-aide-au-permis-de-conduire.yml │ │ ├── region-ile-de-france-aide-culture-sport-labaz.yml │ │ ├── region-ile-de-france-aide-image-r-lyceens-labaz.yml │ │ ├── region-ile-de-france-bourse-installtation-des-étudiants-en-kinésithérapie-et-maïeutique.yml │ │ ├── region-ile-de-france-bourses-mobilite-bts.yml │ │ ├── region-ile-de-france-bourses-mobilite-etudiants-dut-licence-master.yml │ │ ├── region-ile-de-france-carte-imagine-r-etudiants.yml │ │ ├── region-ile-de-france-carte-imagine-r-scolaire.yml │ │ ├── region-ile-de-france-carte-scolaire-bus-lignes-regulieres.yml │ │ ├── region-ile-de-france-ecoute-etudiants.yml │ │ ├── region-ile-de-france-forfait-gratuite-jeunes-en-insertion.yml │ │ ├── region-ile-de-france-forfait-navigo-jeunes-weekend.yml │ │ ├── region-ile-de-france-reduction-50-volontaires-du-service-civique.yml │ │ ├── region-ile-de-france-revenu-jeunes-actifs.yml │ │ ├── region-ile-de-france-vehicules-propres.yml │ │ ├── region-la-reunion-etudier-au-quebec.yml │ │ ├── region-normandie-abonnement-tempo-26-ans.yml │ │ ├── region-normandie-atouts-normandie-aide-bafa-bafd-bnssa-1er-secours-et-chantiers-de-bénévoles.yml │ │ ├── region-normandie-dispositif-avenir.yml │ │ ├── region-normandie-pass-monde-etudes-secondaires.yml │ │ ├── region-normandie-programme-savoirs.yml │ │ ├── region-normandie-qualif-collectif.yml │ │ ├── region-normandie-une-formation-un-emploi.yml │ │ ├── region-normandie-vae.yml │ │ ├── region-nouvelle-aquitaine-accompagnement-vae.yml │ │ ├── region-nouvelle-aquitaine-aide-à-la-restauration-des-lycéen·ne·s.yml │ │ ├── region-nouvelle-aquitaine-billet-jeunes-28ans.yml │ │ ├── region-nouvelle-aquitaine-brevets-bafa-bafd-bnssa.yml │ │ ├── region-nouvelle-aquitaine-erasmus-stage-infra-bac.yml │ │ ├── region-nouvelle-aquitaine-erasmus-stage.yml │ │ ├── region-nouvelle-aquitaine-fonds-aide-mobilite-emploi.yml │ │ ├── region-nouvelle-aquitaine-fonds-social-formation.yml │ │ ├── region-nouvelle-aquitaine-pass-abonne-28-ans.yml │ │ ├── region-nouvelle-aquitaine-sas-jeunes-orientation-active-vers-emploi.yml │ │ ├── region-nouvelle-aquitaine-sejour-etudes-etranger.yml │ │ ├── region-nouvelle-aquitaine-soutien-scolaire-service-gratuit-aide-devoirs.yml │ │ ├── region-nouvelle-aquitaine-stage-etranger.yml │ │ ├── region-occitanie-aide-au-merite-pour-les-etudiants-en-formations-sanitaires-et-sociales.yml │ │ ├── region-occitanie-aide-covoiturage.yml │ │ ├── region-occitanie-bourse-de-stage-erasmus-formations-sanitaires-sociales.yml │ │ ├── region-occitanie-financement-formations-sanitaires-sociales-niveaux-v-iv.yml │ │ ├── region-occitanie-frequencio-jeunes.yml │ │ ├── region-occitanie-libertio-jeunes.yml │ │ ├── region-occitanie-mobilite-internationale-etudiant·e·s.yml │ │ ├── region-occitanie-pass-mutuelle-etudiant·e.yml │ │ ├── region-occitanie-remuneration-stagiaires-formation-professionnelle.yml │ │ ├── region-occitanie-revenu-ecologique-jeune.yml │ │ ├── region-pays-de-la-loire-abonnement-tutti-26-illimite.yml │ │ ├── region-pays-de-la-loire-acces-emploi-parcours-tpme.yml │ │ ├── region-pays-de-la-loire-aide-acquisition-ordinateur-portable.yml │ │ ├── region-pays-de-la-loire-aide-covoiturage.yml │ │ ├── region-pays-de-la-loire-carte-mezzo-26-ans.yml │ │ ├── region-pays-de-la-loire-carte-mezzo.yml │ │ ├── region-pays-de-la-loire-fonds-social-regional-urgence.yml │ │ ├── region-pays-de-la-loire-prime-job-etudiant.yml │ │ ├── region-pays-de-la-loire-visa-sanitaire-et-social.yml │ │ ├── region-provence-alpes-cote-azur-accompagnement-vae.yml │ │ ├── region-provence-alpes-cote-azur-carte-zou.yml │ │ ├── region-provence-alpes-cote-azur-chequier-pass-sante-jeunes.yml │ │ ├── region-provence-alpes-cote-azur-pass-mutuelles.yml │ │ ├── region-provence-alpes-cote-azur-pass-sud-formation.yml │ │ ├── region-provence-alpes-cote-azur-pass-zou-etudes.yml │ │ ├── region-provence-alpes-cote-azur-programme-regional-aide-mobilite-etudiante-prame.yml │ │ ├── region-provence-alpes-cote-azur-remuneration-stagiaires-formation-professionnelle.yml │ │ ├── region-provence-alpes-cote-azur-un-parrain-un-emploi.yml │ │ ├── region_auvergne_rhone_alpes-bourse-du-secteur-santé-social.yml │ │ ├── region_auvergne_rhone_alpes-bourse-mobilite-internationale-creation-dentreprise.yml │ │ ├── region_auvergne_rhone_alpes-financement-de-formations-dans-le-secteur-de-la-santé.yml │ │ ├── region_bourgogne_franche_comte-bourses-détudes-sanitaires-et-sociales.yml │ │ ├── region_bretagne-aide-au-premier-équipement-professionnel-des-lycéen-ne-s.yml │ │ ├── region_bretagne-b-mouve-–-mobilité-des-formations-sanitaires-et-sociales.yml │ │ ├── region_bretagne-les-aides-prepa.yml │ │ ├── region_bretagne-éhop-covoiturage-solidaire-pour-lemploi.yml │ │ ├── region_centre_val_de_loire-aides-pour-la-formation-sanitaire-et-social.yml │ │ ├── region_corse-bourses-d’études-de-formations-sanitaires-et-sociales.yml │ │ ├── region_ile_de_france-aide-individuelle-régionale-vers-l’emploi.yml │ │ ├── region_ile_de_france-aide-régionale-au-passage-du-diplôme-daccès-aux-études-universitaires-daeu.yml │ │ ├── region_ile_de_france-aide-régionale-aux-inscriptions-aux-concours.yml │ │ ├── region_ile_de_france-aide-régionale-à-léquipement-individuel-dans-les-filières-pro-et-technologiques.yml │ │ ├── region_ile_de_france-bourses-pour-les-élèves-et-étudiant-e-s-inscrit-e-s-en-formations-sanitaires-et-sociales.yml │ │ ├── region_la_reunion-bourse-régionale-sanitaire-et-sociale.yml │ │ ├── region_normandie-aide-à-laccès-au-permis-de-conduire-permis-b.yml │ │ ├── region_normandie-aides-aux-formations-paramédicales-sociales-ou-de-santé.yml │ │ ├── region_normandie-atouts-normandie-avantages-loisirs.yml │ │ ├── region_normandie-dotation-jeunes-agriculteurs-aide-au-demarrage-dentreprise.yml │ │ ├── region_normandie-pass-monde-etudes-supérieures-1.yml │ │ ├── region_normandie-pass-monde-volontariat.yml │ │ ├── region_nouvelle_aquitaine-bourses-pour-les-étudiants-en-formations-sociales-paramédicales-et-de-santé.yml │ │ ├── region_nouvelle_aquitaine-stages-à-létranger-–-infra-bac.yml │ │ ├── region_occitanie-éco-chèque-mobilité-achat-d’une-voiture-électrique-ou-hybride-rechargeable-d’occasion.yml │ │ ├── region_pays_de_la_loire-aide-à-l’achat-d’un-vélo-pliant-ou-à-assistance-électrique-vae.yml │ │ ├── region_pays_de_la_loire-bourses-pour-les-élèves-et-étudiant-e-s-en-formation-sanitaire-et-sociale.yml │ │ ├── region_pays_de_la_loire-envoléo.yml │ │ ├── region_pays_de_la_loire-fonds-social-lycéen-régional.yml │ │ ├── residences-etudiantes-loyer-modere.yml │ │ ├── sm_de_touraine_aide_covoiturage.yml │ │ ├── smbpa-pays-basque-adour-aide-covoiturage.yml │ │ ├── strasbourg_eurometropole-carte-atout-voir.yml │ │ ├── strasbourg_eurometropole-fonds-daide-aux-jeunes-faj.yml │ │ ├── union-europeenne-bourse-erasmus.yml │ │ ├── ville-angers-bourse-communale-pour-le-permis-de-conduire-permis-citoyen.yml │ │ ├── ville-aubervilliers-accompagnement.yml │ │ ├── ville-bethune-aide-permis.yml │ │ ├── ville-chaumes-en-retz-bourse-communale-au-permis-de-conduire-et-au-bsr.yml │ │ ├── ville-de-vannes-bourse-au-permis.yml │ │ ├── ville-dunkerque-bourse-communale-au-permis-de-conduire.yml │ │ ├── ville-lille-aide-au-financement-du-permis-de-conduire.yml │ │ ├── ville-montpellier-accompagnement.yml │ │ ├── ville-montpellier-bourse-communale-au-permis-de-conduire.yml │ │ ├── ville-nice-bourse-communale-au-permis-de-conduire-permis-citoyen.yml │ │ ├── ville-paris-cheque-vacances.yml │ │ ├── ville-roubaix-bourse-communale-au-permis-de-conduire-passpermis.yml │ │ ├── ville-salon-de-provence-bourse-communale-au-permis-de-conduire.yml │ │ ├── ville-strasbourg-accompagnement.yml │ │ ├── ville-vertou-bourse-communale-permis-de-conduire.yml │ │ ├── ville_ajaccio_bourse_au_permis_de_conduire.yml │ │ ├── ville_anzin_aide_au_permis_de_conduire.yml │ │ ├── ville_arcachon_bourse_permis_de_conduire.yml │ │ ├── ville_berre_l_etang_aide_au_permis.yml │ │ ├── ville_cerizay_revenu_minimum_etudiant.yml │ │ ├── ville_champagne_au_mont_d_or_revenu_minimum_etudiant.yml │ │ ├── ville_chenove_revenu_minimum_etudiant.yml │ │ ├── ville_cholet_aide_permis.yml │ │ ├── ville_colomiers_bourse_permis_conduire.yml │ │ ├── ville_grande_synthe_revenu_minimum_etudiant.yml │ │ ├── ville_gravelines_aide_aux_etudiants.yml │ │ ├── ville_lille_aide_bafa.yml │ │ ├── ville_lyon_bourse_jeunes_2030_agir.yml │ │ ├── ville_montbard_revenu_minimum_etudiant.yml │ │ ├── ville_paris_aide_logement_etudiant_aile.yml │ │ ├── ville_petit_couronne_revenu_minimum_etudiant.yml │ │ ├── ville_talence_permis_jeune_et_solidaire.yml │ │ ├── ville_villefranche_sur_saone_bafa_bafd.yml │ │ └── ville_villeurbanne_bourse_communale_permis_de_conduire.yml │ └── openfisca │ │ ├── aah.yml │ │ ├── aeeh.yml │ │ ├── af.yml │ │ ├── agepi.yml │ │ ├── aide_alimentation_etudiants_eloignes.yml │ │ ├── aide_financement_permis_apprenti.yml │ │ ├── aide_formation_gen.yml │ │ ├── aide_logement.yml │ │ ├── aide_merite_montant.yml │ │ ├── aide_mobilite_internationale_eligibilite.yml │ │ ├── aide_mobilite_master.yml │ │ ├── aide_mobilite_parcoursup.yml │ │ ├── aide_permis_demandeur_emploi.yml │ │ ├── aide_permis_pro_btp.yml │ │ ├── antony_aide_depart_sejour_adapte.yml │ │ ├── antony_bourse_communale.yml │ │ ├── antony_bourse_conservatoire.yml │ │ ├── antony_bourse_famille_nombreuse.yml │ │ ├── antony_noel_pour_tous.yml │ │ ├── ars.yml │ │ ├── asf.yml │ │ ├── asi.yml │ │ ├── aspa.yml │ │ ├── ass.yml │ │ ├── auvergne_mutuelle_communale.yml │ │ ├── auvergne_mutuelle_communale_etudiant.yml │ │ ├── bail_reel_solidaire.yml │ │ ├── bordeaux_metropole_aide_tarification_solidaire_transport.yml │ │ ├── bourse_college.yml │ │ ├── bourse_criteres_sociaux.yml │ │ ├── bourse_lycee.yml │ │ ├── brest_metropole_transport.yml │ │ ├── caah.yml │ │ ├── cambrai_aide_mobilite_permis_b.yml │ │ ├── carcassonne_aide_permis.yml │ │ ├── carte_sncf_eleve_apprenti_eligibilite.yml │ │ ├── cf.yml │ │ ├── cheque_energie.yml │ │ ├── contrat_engagement_jeune.yml │ │ ├── cotes_d_armor_fonds_solidarite_logement_energie_eligibilite.yml │ │ ├── crous_aide_100_repas_gratuits.yml │ │ ├── crous_logement_eligibilite.yml │ │ ├── crous_repas_montant.yml │ │ ├── css_participation_forfaitaire.yml │ │ ├── depart1825_montant_maximum.yml │ │ ├── eure_et_loir_eligibilite_adefip.yml │ │ ├── eure_et_loir_eligibilite_aide_menagere_personne_agee.yml │ │ ├── eure_et_loir_eligibilite_aide_menagere_personne_handicap.yml │ │ ├── eure_et_loir_eligibilite_ash_personne_handicap.yml │ │ ├── eure_et_loir_eligibilite_cmi_invalidite.yml │ │ ├── eure_et_loir_eligibilite_cmi_priorite.yml │ │ ├── eure_et_loir_eligibilite_cmi_stationnement.yml │ │ ├── eure_et_loir_eligibilite_faj.yml │ │ ├── eure_et_loir_eligibilite_fsl_acces_logement.yml │ │ ├── eure_et_loir_eligibilite_pch_domicile.yml │ │ ├── eure_et_loir_eligibilite_pch_etablissement.yml │ │ ├── eure_et_loir_eligibilite_pret_vehicule.yml │ │ ├── eure_et_loir_eligibilite_transport_eleves_etudiants.yml │ │ ├── eure_et_loir_eligibilite_transport_social.yml │ │ ├── eure_et_loir_fsl_eligibilite_installation_logement.yml │ │ ├── eure_et_loir_fsl_eligibilite_maintien_fourniture.yml │ │ ├── eure_et_loir_fsl_eligibilite_maintien_logement.yml │ │ ├── eurometropole_strasbourg_tarification_solidaire_transport_montant.yml │ │ ├── garantie_pret_etudiant_eligibilite.yml │ │ ├── grand_est_fluo_67_eligible_gratuite.yml │ │ ├── grand_est_fluo_67_tarification_solidaire.yml │ │ ├── gratuite_musees_monuments.yml │ │ ├── haute_saone_aide_permis.yml │ │ ├── haute_vienne_aide_permis.yml │ │ ├── hauts_de_france_aide_garde_enfant.yml │ │ ├── hauts_de_france_aide_permis.yml │ │ ├── ile_de_france_aide_achat_voiture_electrique.yml │ │ ├── illkirch_graffenstaden_coupon_arts_et_sports.yml │ │ ├── iwuy_aide_mobilite_permis.yml │ │ ├── le_cateau_aide_mobilite_permis.yml │ │ ├── les_rues_des_vignes_aide_mobilite_permis.yml │ │ ├── livret_epargne_populaire_taux.yml │ │ ├── locapass_eligibilite.yml │ │ ├── logement_social_eligible.yml │ │ ├── loire_atlantique_aide_mobilite_permis_am.yml │ │ ├── loire_atlantique_aide_mobilite_permis_b.yml │ │ ├── mobili_jeune.yml │ │ ├── montpellier_mutuelle_communale.yml │ │ ├── msa_armorique_aide_permis.yml │ │ ├── msa_haute_normandie_aide_permis.yml │ │ ├── msa_midi_pyrenees_sud_aide_permis.yml │ │ ├── msa_nord_pas_de_calais_aide_permis.yml │ │ ├── msa_portes_de_bretagne_aide_permis.yml │ │ ├── nantes_metropole_tarification_solidaire_transport.yml │ │ ├── nouvelle_aquitaine_aide_permis.yml │ │ ├── nouvelle_aquitaine_carte_solidaire.yml │ │ ├── occitanie_carte_jeune_region.yml │ │ ├── occitanie_carte_transport_scolaire_lio.yml │ │ ├── paje_base.yml │ │ ├── paris_complement_sante.yml │ │ ├── paris_energie_familles.yml │ │ ├── paris_forfait_familles.yml │ │ ├── paris_logement.yml │ │ ├── paris_logement_aspeh.yml │ │ ├── paris_logement_familles.yml │ │ ├── paris_logement_plfm.yml │ │ ├── paris_logement_psol.yml │ │ ├── paris_pass_access.yml │ │ ├── paris_pass_seniors.yml │ │ ├── pass_colo.yml │ │ ├── pass_culture.yml │ │ ├── pass_jeune_54.yml │ │ ├── pass_sport.yml │ │ ├── pays_de_la_loire_epass_jeunes_culture_sport.yml │ │ ├── ppa.yml │ │ ├── pret_formation_permis_eligibilite.yml │ │ ├── rennes_metropole_transport.yml │ │ ├── revenu_solidaire_jeune.yml │ │ ├── rsa.yml │ │ ├── saint_louis_eligibilite_residence.yml │ │ ├── seances_sante_psy_etudiant.yml │ │ ├── seine_saint_denis_cheque_reussite.yml │ │ ├── tisseo_transport_reduction.yml │ │ ├── vendee_bourses_jeunes_benevoles_montant_max.yml │ │ ├── visale_eligibilite.yml │ │ └── yvelines_aide_permis.yml ├── index.ts ├── institution_types │ ├── autre.yml │ ├── caf.yml │ ├── commune.yml │ ├── departement.yml │ ├── epci.yml │ ├── europeen.yml │ ├── msa.yml │ ├── national.yml │ └── region.yml ├── institutions │ ├── action_logement.yml │ ├── artois-mobilites.yml │ ├── assurance_maladie.yml │ ├── assurance_retraite.yml │ ├── atmb.yml │ ├── banque_de_france.yml │ ├── ca_annonay_rhone_agglo.yml │ ├── ca_arche_agglo.yml │ ├── ca_arlysere.yml │ ├── ca_cannes_pays_de_lerins.yml │ ├── ca_carcassonne_agglo.yml │ ├── ca_caux_seine_agglo.yml │ ├── ca_colmar_agglomeration.yml │ ├── ca_dagen.yml │ ├── ca_de_bethune_bruay_artois_lys_romane.yml │ ├── ca_de_cambrai.yml │ ├── ca_de_la_porte_du_hainaut.yml │ ├── ca_de_la_provence_verte.yml │ ├── ca_de_la_region_de_chateau_thierry.yml │ ├── ca_de_lauxerrois.yml │ ├── ca_de_saintes.yml │ ├── ca_de_vesoul.yml │ ├── ca_des_deux_baies_en_montreuillois.yml │ ├── ca_du_bassin_darcachon_nord.yml │ ├── ca_du_bassin_de_bourg_en_bresse.yml │ ├── ca_du_beauvaisis.yml │ ├── ca_du_bocage_bressuirais.yml │ ├── ca_du_centre_littoral.yml │ ├── ca_du_grand_angouleme.yml │ ├── ca_du_grand_villeneuvois.yml │ ├── ca_du_libournais.yml │ ├── ca_du_niortais.yml │ ├── ca_durance_luberon_verdon_agglomeration.yml │ ├── ca_ecla__espace_communautaire_lons_agglomeration.yml │ ├── ca_epernay_coteaux_et_plaine_de_champagne.yml │ ├── ca_esterel_cote_d_azur_agglomeration.yml │ ├── ca_fecamp_caux_littoral.yml │ ├── ca_flers_agglo.yml │ ├── ca_fougeres_agglomeration.yml │ ├── ca_gard_rhodanien.yml │ ├── ca_grand_albigeois.yml │ ├── ca_grand_calais_terres_et_mers.yml │ ├── ca_grand_chambery.yml │ ├── ca_grand_chatellerault.yml │ ├── ca_grand_lac.yml │ ├── ca_grand_longwy_agglomeration.yml │ ├── ca_grand_verdun.yml │ ├── ca_lagglo_foix_varilhes.yml │ ├── ca_lannion_tregor_communaute.yml │ ├── ca_le_grand_perigueux.yml │ ├── ca_luberon_monts_de_vaucluse.yml │ ├── ca_lunel_agglo.yml │ ├── ca_mauges.yml │ ├── ca_morlaix_communaute.yml │ ├── ca_mulhouse_alsace_agglomeration.yml │ ├── ca_pays_ajaccien.yml │ ├── ca_pays_de_gex.yml │ ├── ca_pays_de_grasse.yml │ ├── ca_pays_de_l_or.yml │ ├── ca_pays_de_saint_malo_agglomeration.yml │ ├── ca_pornic_agglo_pays_de_retz.yml │ ├── ca_privas_centre_ardeche.yml │ ├── ca_quimperle_communaute.yml │ ├── ca_saint_avold_synergie.yml │ ├── ca_saint_brieuc_armor_agglomeration.yml │ ├── ca_saint_lo_agglo.yml │ ├── ca_saint_louis_agglomeration.yml │ ├── ca_sarreguemines_confluences.yml │ ├── ca_saumur_val_de_loire.yml │ ├── ca_seine_eure.yml │ ├── ca_sete_agglopole_mediterranee.yml │ ├── ca_tarbes_lourdes_pyrenees.yml │ ├── ca_territoire_de_la_cote_ouest_tco.yml │ ├── ca_territoires_vendomois.yml │ ├── ca_troyes_champagne_metropole.yml │ ├── ca_tulle_agglo.yml │ ├── ca_val_dyerres_val_de_seine.yml │ ├── ca_val_parisis.yml │ ├── ca_ventoux_comtat_venaissin.yml │ ├── ca_vienne_condrieu.yml │ ├── ca_villefranche_beaujolais_saone.yml │ ├── ca_vitre_communaute.yml │ ├── caf.yml │ ├── caf_ain.yml │ ├── caf_aisne.yml │ ├── caf_allier.yml │ ├── caf_alpes_de_haute_provence.yml │ ├── caf_alpes_maritimes.yml │ ├── caf_ardeche.yml │ ├── caf_ardennes.yml │ ├── caf_ariege.yml │ ├── caf_aube.yml │ ├── caf_aude.yml │ ├── caf_aveyron.yml │ ├── caf_bas_rhin.yml │ ├── caf_bouches_du_rhone.yml │ ├── caf_calvados.yml │ ├── caf_cantal.yml │ ├── caf_charente.yml │ ├── caf_charente_maritime.yml │ ├── caf_cher.yml │ ├── caf_correze.yml │ ├── caf_corse_du_sud.yml │ ├── caf_cote_or.yml │ ├── caf_cotes_armor.yml │ ├── caf_creuse.yml │ ├── caf_deux_sevres.yml │ ├── caf_dordogne.yml │ ├── caf_doubs.yml │ ├── caf_drome.yml │ ├── caf_essonne.yml │ ├── caf_eure.yml │ ├── caf_eure_et_loir.yml │ ├── caf_finistere.yml │ ├── caf_gard.yml │ ├── caf_gers.yml │ ├── caf_gironde.yml │ ├── caf_guadeloupe.yml │ ├── caf_guyane.yml │ ├── caf_haut_rhin.yml │ ├── caf_haute_corse.yml │ ├── caf_haute_garonne.yml │ ├── caf_haute_loire.yml │ ├── caf_haute_marne.yml │ ├── caf_haute_saone.yml │ ├── caf_haute_savoie.yml │ ├── caf_haute_vienne.yml │ ├── caf_hautes_alpes.yml │ ├── caf_hautes_pyrenees.yml │ ├── caf_hauts_de_seine.yml │ ├── caf_herault.yml │ ├── caf_ille_et_vilaine.yml │ ├── caf_indre.yml │ ├── caf_indre_et_loire.yml │ ├── caf_isere.yml │ ├── caf_jura.yml │ ├── caf_la_reunion.yml │ ├── caf_landes.yml │ ├── caf_loir_et_cher.yml │ ├── caf_loire.yml │ ├── caf_loire_atlantique.yml │ ├── caf_loiret.yml │ ├── caf_lot.yml │ ├── caf_lot_et_garonne.yml │ ├── caf_lozere.yml │ ├── caf_maine_et_loire.yml │ ├── caf_manche.yml │ ├── caf_marne.yml │ ├── caf_martinique.yml │ ├── caf_mayenne.yml │ ├── caf_mayotte.yml │ ├── caf_meurthe_et_moselle.yml │ ├── caf_meuse.yml │ ├── caf_morbihan.yml │ ├── caf_moselle.yml │ ├── caf_nievre.yml │ ├── caf_nord.yml │ ├── caf_oise.yml │ ├── caf_orne.yml │ ├── caf_paris.yml │ ├── caf_pas_de_calais.yml │ ├── caf_puy_de_dome.yml │ ├── caf_pyrenees_atlantiques.yml │ ├── caf_pyrenees_orientales.yml │ ├── caf_rhone.yml │ ├── caf_saone_et_loire.yml │ ├── caf_sarthe.yml │ ├── caf_savoie.yml │ ├── caf_seine_et_marne.yml │ ├── caf_seine_maritime.yml │ ├── caf_seine_st_denis.yml │ ├── caf_somme.yml │ ├── caf_tarn.yml │ ├── caf_tarn_et_garonne.yml │ ├── caf_territoire_de_belfort.yml │ ├── caf_val_de_marne.yml │ ├── caf_val_oise.yml │ ├── caf_var.yml │ ├── caf_vaucluse.yml │ ├── caf_vendee.yml │ ├── caf_vienne.yml │ ├── caf_vosges.yml │ ├── caf_yonne.yml │ ├── caf_yvelines.yml │ ├── cc-rhone-lez-provence.yml │ ├── cc-sud-herault.yml │ ├── cc_albret_communaute.yml │ ├── cc_alsace_rhin_brisach.yml │ ├── cc_ambert_livradois_forez.yml │ ├── cc_anjou_bleu_communaute.yml │ ├── cc_arbois_poligny_salins_coeur_du_jura.yml │ ├── cc_arc_sud_bretagne.yml │ ├── cc_ardeche_rhone_coiron.yml │ ├── cc_arve_et_saleve.yml │ ├── cc_aunis_atlantique.yml │ ├── cc_auray_quiberon_terre_atlantique.yml │ ├── cc_bievre_isere.yml │ ├── cc_bouzonvillois_trois_frontieres.yml │ ├── cc_bretagne_porte_de_loire_communaute.yml │ ├── cc_bugey_sud.yml │ ├── cc_carmausin_segala.yml │ ├── cc_caux_austreberthe.yml │ ├── cc_centre_morbihan_communaute.yml │ ├── cc_challans_gois_communaute.yml │ ├── cc_charlieu_belmont.yml │ ├── cc_chateaubriant_derval.yml │ ├── cc_chinon_vienne_et_loire.yml │ ├── cc_cluses_arve_et_montagnes.yml │ ├── cc_coeur_de_maurienne_arvan.yml │ ├── cc_coeur_de_nacre.yml │ ├── cc_coeur_de_savoie.yml │ ├── cc_coeur_de_tarentaise.yml │ ├── cc_coeur_dostrevent_ccco.yml │ ├── cc_cote_demeraude.yml │ ├── cc_couesnon_marches_de_bretagne.yml │ ├── cc_coutance_mer_et_bocage.yml │ ├── cc_de_bayeux_intercom.yml │ ├── cc_de_cattenom_et_environs.yml │ ├── cc_de_gevrey_chambertin_et_de_nuits_saint_georges.yml │ ├── cc_de_haute_cornouaille.yml │ ├── cc_de_la_brie_champenoise.yml │ ├── cc_de_la_champagne_picarde.yml │ ├── cc_de_la_cote_dalbatre.yml │ ├── cc_de_la_cotiere_a_montluel.yml │ ├── cc_de_la_haute_somme_combles___peronne___roisel.yml │ ├── cc_de_la_plaine_de_lain.yml │ ├── cc_de_la_plaine_destrees.yml │ ├── cc_de_la_region_de_guebwiller.yml │ ├── cc_de_la_region_de_molsheim_mutzig.yml │ ├── cc_de_la_vallee_de_kaysersberg.yml │ ├── cc_de_la_vallee_de_la_doller_et_du_soultzbach.yml │ ├── cc_de_la_vallee_de_lhomme.yml │ ├── cc_de_la_vallee_de_ville.yml │ ├── cc_de_la_vallee_dossau.yml │ ├── cc_de_laillantais_en_bourgogne.yml │ ├── cc_de_larc_mosellan.yml │ ├── cc_de_lile_de_re.yml │ ├── cc_de_louest_vosgien.yml │ ├── cc_de_loust_a_broceliande.yml │ ├── cc_de_puisaye_forterre.yml │ ├── cc_de_saint_flour.yml │ ├── cc_de_saulieu.yml │ ├── cc_de_semur_en_brionnais.yml │ ├── cc_de_vienne_et_gartempe.yml │ ├── cc_des_4_rivieres.yml │ ├── cc_des_7_vallees.yml │ ├── cc_des_campagnes_de_lartois.yml │ ├── cc_des_cevennes_gangeoises_et_sumenoises.yml │ ├── cc_des_coevrons.yml │ ├── cc_des_cretes_preardennaises.yml │ ├── cc_des_monts_du_pilat.yml │ ├── cc_des_pays_de_laigle.yml │ ├── cc_des_paysages_de_la_champagne.yml │ ├── cc_des_portes_de_romilly_sur_seine.yml │ ├── cc_des_portes_de_rosheim.yml │ ├── cc_des_portes_du_luxembourg.yml │ ├── cc_des_portes_eureliennes_dile_de_france.yml │ ├── cc_des_sablons.yml │ ├── cc_des_terres_du_val_de_loire.yml │ ├── cc_des_vallees_dauge_et_du_merlerault.yml │ ├── cc_des_vallees_du_clain.yml │ ├── cc_des_villes_soeurs.yml │ ├── cc_dieulefit_bourdeaux.yml │ ├── cc_dombes_saone_vallee.yml │ ├── cc_douarnenez_communaute.yml │ ├── cc_du_bassin_daubenas.yml │ ├── cc_du_bassin_de_pompey.yml │ ├── cc_du_bocage_mayennais.yml │ ├── cc_du_canton_derstein.yml │ ├── cc_du_centre_du_haut_rhin.yml │ ├── cc_du_chemin_des_dames.yml │ ├── cc_du_crestois_et_de_pays_de_saillans_coeur_de_drome.yml │ ├── cc_du_golfe_de_saint_tropez.yml │ ├── cc_du_grand_chateaudun.yml │ ├── cc_du_grand_cubzaguais.yml │ ├── cc_du_grand_roye.yml │ ├── cc_du_haut_bearn.yml │ ├── cc_du_haut_poitou.yml │ ├── cc_du_haut_vallespir.yml │ ├── cc_du_kreiz_breizh_cckb.yml │ ├── cc_du_massif_du_vercors.yml │ ├── cc_du_pays_dancenis.yml │ ├── cc_du_pays_de_barr.yml │ ├── cc_du_pays_de_dol_et_de_la_baie_du_mont_saint_michel.yml │ ├── cc_du_pays_de_fenelon.yml │ ├── cc_du_pays_de_honfleur_beuzeville.yml │ ├── cc_du_pays_de_larbresle_ccpa.yml │ ├── cc_du_pays_de_lozon.yml │ ├── cc_du_pays_de_mormal.yml │ ├── cc_du_pays_de_mortagne.yml │ ├── cc_du_pays_de_pouzauges.yml │ ├── cc_du_pays_de_rouffach_vignobles_et_chateaux.yml │ ├── cc_du_pays_de_saverne.yml │ ├── cc_du_pays_diroise.yml │ ├── cc_du_pays_haut_val_dalzette.yml │ ├── cc_du_pays_mornantais_copamo.yml │ ├── cc_du_pays_orne_moselle.yml │ ├── cc_du_pays_rhenan.yml │ ├── cc_du_pays_rochois.yml │ ├── cc_du_pays_sabolien.yml │ ├── cc_du_ried_de_marckolsheim.yml │ ├── cc_du_saulnois.yml │ ├── cc_du_sisteronais_buech.yml │ ├── cc_du_sud_artois.yml │ ├── cc_du_sud_messin.yml │ ├── cc_du_val_dargent.yml │ ├── cc_du_val_de_drome_en_biovallee.yml │ ├── cc_du_vexin_normand.yml │ ├── cc_entre_arroux_loire_et_somme.yml │ ├── cc_ernee.yml │ ├── cc_falaises_du_talou.yml │ ├── cc_fier_et_usses.yml │ ├── cc_flandre_interieure.yml │ ├── cc_flandre_lys.yml │ ├── cc_genevois.yml │ ├── cc_giennoises.yml │ ├── cc_grand_lieu.yml │ ├── cc_grand_orb_communaute_de_communes_en_languedoc.yml │ ├── cc_grand_saint_emilionnais.yml │ ├── cc_grande_vallee_de_la_marne.yml │ ├── cc_haut_chemin_pays_de_pange.yml │ ├── cc_haut_val_de_sevre.yml │ ├── cc_haute_correze_communaute.yml │ ├── cc_haute_tarentaise.yml │ ├── cc_inter_caux_vexin.yml │ ├── cc_intercom_de_la_vire_au_noireau.yml │ ├── cc_lac_aiguebelette.yml │ ├── cc_le_grand_charolais.yml │ ├── cc_leff_armor_communaute.yml │ ├── cc_les_avant_monts.yml │ ├── cc_les_balcons_du_dauphine.yml │ ├── cc_les_portes_briardes_entre_villes_et_forets.yml │ ├── cc_liffre_cormier_communaute.yml │ ├── cc_loir_luce_berce.yml │ ├── cc_loire_layon_aubance.yml │ ├── cc_loue_lison.yml │ ├── cc_lyon_saint_exupery_en_dauphine.yml │ ├── cc_lyons_andelle.yml │ ├── cc_marches_du_velay_rochebaron.yml │ ├── cc_maremne_adour_cote_sud.yml │ ├── cc_mayenne_communaute.yml │ ├── cc_montfort_communaute.yml │ ├── cc_moselle_et_madon.yml │ ├── cc_nievre_et_somme.yml │ ├── cc_normandie_cabourg_pays_dauge.yml │ ├── cc_ocean_marais_de_monts.yml │ ├── cc_orne_lorraine_confluences.yml │ ├── cc_osartis_marquion.yml │ ├── cc_pays_d_evian.yml │ ├── cc_pays_de_chateaugiron_communaute.yml │ ├── cc_pays_de_cruseilles.yml │ ├── cc_pays_de_la_chataigneraie.yml │ ├── cc_pays_de_la_serre.yml │ ├── cc_pays_des_achards.yml │ ├── cc_pays_des_sorgues_et_des_monts_de_vaucluse.yml │ ├── cc_pays_dorthe_et_arrigans.yml │ ├── cc_pays_flechois.yml │ ├── cc_pays_forcalquier_et_montagne_de_lure.yml │ ├── cc_pays_saint_gilles_croix_de_vie.yml │ ├── cc_pevele_carembault.yml │ ├── cc_picardie_verte.yml │ ├── cc_plaine_limagne.yml │ ├── cc_ploermel_communaute.yml │ ├── cc_poher_communaute.yml │ ├── cc_porte_de_dromardeche.yml │ ├── cc_portes_de_sologne.yml │ ├── cc_presquile_de_crozon_aulne_maritime.yml │ ├── cc_provence_verdon.yml │ ├── cc_rives_de_moselle.yml │ ├── cc_saint_marcellin_vercors_isere_communaute.yml │ ├── cc_saint_pourcain_sioule_limagne.yml │ ├── cc_saone_beaujolais.yml │ ├── cc_sarrebourg_moselle_sud.yml │ ├── cc_selestat.yml │ ├── cc_serein_et_armance.yml │ ├── cc_sevre_et_loire.yml │ ├── cc_somme_sud_ouest.yml │ ├── cc_sud_alsace_largue.yml │ ├── cc_sud_estuaire.yml │ ├── cc_sud_nivernais.yml │ ├── cc_sud_vendee_littoral.yml │ ├── cc_sundgau.yml │ ├── cc_terre_dauge.yml │ ├── cc_terre_deau.yml │ ├── cc_terre_demeraude_communaute.yml │ ├── cc_terre_des_deux_caps.yml │ ├── cc_terre_valserhone.yml │ ├── cc_terres_de_montaigu_cc_montaigu_rocheserviere.yml │ ├── cc_territoriale_sud_luberon.yml │ ├── cc_thelloise.yml │ ├── cc_touraine_vallee_de_lindre.yml │ ├── cc_usses_et_rhone.yml │ ├── cc_val_de_saone_centre.yml │ ├── cc_val_guiers.yml │ ├── cc_val_vanoise.yml │ ├── cc_vallees_d_aigueblanche.yml │ ├── cc_vallees_de_lorne_et_de_lodon.yml │ ├── cc_vallees_haut_anjou.yml │ ├── cc_vallons_de_haute_bretagne.yml │ ├── cc_vendee_grand_littoral.yml │ ├── cc_versants_d_aime.yml │ ├── cc_vezere_monedieres_millesources.yml │ ├── cc_yenne.yml │ ├── cc_yvetot_normandie.yml │ ├── cohesion_territoires.yml │ ├── collectivité-européenne-dalsace.yml │ ├── communaute-agglomerations-henin-carvin.yml │ ├── communaute-agglomerations-lens-lievin.yml │ ├── cu_caen_la_mer.yml │ ├── cu_dalencon.yml │ ├── cu_du_grand_reims.yml │ ├── cu_dunkerque.yml │ ├── cu_grand_besancon_metropole.yml │ ├── cu_grand_poitiers.yml │ ├── cu_le_creusot_montceau_les_mines.yml │ ├── cu_limoges_metropole.yml │ ├── cu_perpignan_mediterranee_metropole.yml │ ├── departement-de-leure.yml │ ├── departement_ain.yml │ ├── departement_aisne.yml │ ├── departement_allier.yml │ ├── departement_alpes_de_haute_provence.yml │ ├── departement_alpes_maritimes.yml │ ├── departement_ardeche.yml │ ├── departement_ardennes.yml │ ├── departement_ariege.yml │ ├── departement_aube.yml │ ├── departement_aude.yml │ ├── departement_aveyron.yml │ ├── departement_bas_rhin.yml │ ├── departement_bouches_du_rhone.yml │ ├── departement_calvados.yml │ ├── departement_cantal.yml │ ├── departement_charente_maritime.yml │ ├── departement_cher.yml │ ├── departement_correze.yml │ ├── departement_cote_or.yml │ ├── departement_cotes_d_armor.yml │ ├── departement_de_la_charente.yml │ ├── departement_des_pyrenees_orientales.yml │ ├── departement_doubs.yml │ ├── departement_drome.yml │ ├── departement_du_haut_rhin.yml │ ├── departement_essonne.yml │ ├── departement_eure_et_loir.yml │ ├── departement_finistere.yml │ ├── departement_gard.yml │ ├── departement_gironde.yml │ ├── departement_haute_garonne.yml │ ├── departement_haute_marne.yml │ ├── departement_haute_saone.yml │ ├── departement_haute_savoie.yml │ ├── departement_haute_vienne.yml │ ├── departement_hautes_alpes.yml │ ├── departement_hauts_de_seine.yml │ ├── departement_herault.yml │ ├── departement_ille_et_vilaine.yml │ ├── departement_indre.yml │ ├── departement_indre_et_loire.yml │ ├── departement_isere.yml │ ├── departement_jura.yml │ ├── departement_la_reunion.yml │ ├── departement_landes.yml │ ├── departement_loir_et_cher.yml │ ├── departement_loire.yml │ ├── departement_loire_atlantique.yml │ ├── departement_loiret.yml │ ├── departement_lot.yml │ ├── departement_maine_et_loire.yml │ ├── departement_manche.yml │ ├── departement_marne.yml │ ├── departement_mayenne.yml │ ├── departement_meurthe_et_moselle.yml │ ├── departement_morbihan.yml │ ├── departement_moselle.yml │ ├── departement_nord.yml │ ├── departement_oise.yml │ ├── departement_orne.yml │ ├── departement_paris.yml │ ├── departement_pas_de_calais.yml │ ├── departement_puy_de_dome.yml │ ├── departement_pyrenees_atlantiques.yml │ ├── departement_rhone.yml │ ├── departement_saone_et_loire.yml │ ├── departement_sarthe.yml │ ├── departement_seine_et_marne.yml │ ├── departement_seine_maritime.yml │ ├── departement_seine_saint_denis.yml │ ├── departement_somme.yml │ ├── departement_val_d_oise.yml │ ├── departement_val_de_marne.yml │ ├── departement_var.yml │ ├── departement_vaucluse.yml │ ├── departement_vendee.yml │ ├── departement_vienne.yml │ ├── departement_yvelines.yml │ ├── departements.yml │ ├── departements_et_metropoles.yml │ ├── education_nationale.yml │ ├── ehop.yml │ ├── etat.yml │ ├── fonds-daction-sociale-du-travail-temporaire-fastt.yml │ ├── france_travail.yml │ ├── grand_est.yml │ ├── grenoble-alpes-metropole.yml │ ├── guadeloupe.yml │ ├── guyane.yml │ ├── hauts_de_france.yml │ ├── intercommunalite_agglomeration_la_rochelle.yml │ ├── intercommunalite_amiens.yml │ ├── intercommunalite_angers_loire.yml │ ├── intercommunalite_annemasse.yml │ ├── intercommunalite_ardenne.yml │ ├── intercommunalite_arras.yml │ ├── intercommunalite_aurillac.yml │ ├── intercommunalite_blois.yml │ ├── intercommunalite_bordeaux.yml │ ├── intercommunalite_boulonnais.yml │ ├── intercommunalite_bourges.yml │ ├── intercommunalite_brest_metropole.yml │ ├── intercommunalite_bretagne_romantique.yml │ ├── intercommunalite_brive.yml │ ├── intercommunalite_cap_cotentin.yml │ ├── intercommunalite_castres_mazamet.yml │ ├── intercommunalite_chateauroux.yml │ ├── intercommunalite_choletais.yml │ ├── intercommunalite_epinal.yml │ ├── intercommunalite_erdre_et_gesvres.yml │ ├── intercommunalite_golfe_du_morbihan_vannes_agglomeration.yml │ ├── intercommunalite_grand_annecy.yml │ ├── intercommunalite_grand_avignon.yml │ ├── intercommunalite_grand_montauban.yml │ ├── intercommunalite_la_roche_sur_yon_agglomeration.yml │ ├── intercommunalite_laval_agglomeration.yml │ ├── intercommunalite_les_sables_d_olonne.yml │ ├── intercommunalite_lorient_agglomeration.yml │ ├── intercommunalite_metropole_lyon.yml │ ├── intercommunalite_mont_de_marsan_agglo.yml │ ├── intercommunalite_montlucon_communaute.yml │ ├── intercommunalite_montpellier_mediterranee_metropole.yml │ ├── intercommunalite_nevers.yml │ ├── intercommunalite_nice_cote_d_azur.yml │ ├── intercommunalite_orleans_metropole.yml │ ├── intercommunalite_pau_bearn_pyrenees.yml │ ├── intercommunalite_pays_basque.yml │ ├── intercommunalite_pays_de_laon.yml │ ├── intercommunalite_pays_de_lumbres.yml │ ├── intercommunalite_pays_de_montbeliard_agglomeration.yml │ ├── intercommunalite_pays_de_saint_omer.yml │ ├── intercommunalite_pays_de_sainte_odile.yml │ ├── intercommunalite_pays_des_herbiers.yml │ ├── intercommunalite_pays_issoire.yml │ ├── intercommunalite_pontivy_communaute.yml │ ├── intercommunalite_quimper_bretagne_occidentale.yml │ ├── intercommunalite_riviera_francaise.yml │ ├── intercommunalite_rochefort_ocean.yml │ ├── intercommunalite_sophia_antipolis.yml │ ├── intercommunalite_sorgues_du_comtat.yml │ ├── intercommunalite_toulon_provence_mediterranee.yml │ ├── intercommunalite_valence_romans.yml │ ├── intercommunalite_valenciennes_metropole.yml │ ├── intercommunalite_vallons_du_lyonnais.yml │ ├── le-mans-sarthe-mobilites.yml │ ├── martinique.yml │ ├── metropole_daix_marseille_provence.yml │ ├── metropole_europeenne_de_lille.yml │ ├── metropole_rouen_normandie.yml │ ├── metropole_savoie.yml │ ├── mission-locale-de-lagglomeration-de-lens-lievin.yml │ ├── mission-locale-de-lagglomeration-dhenin-carvin.yml │ ├── msa_armorique.yml │ ├── msa_haute_normandie.yml │ ├── msa_maine_et_loire.yml │ ├── msa_midi_pyrenees_sud.yml │ ├── msa_nord_pas_de_calais.yml │ ├── msa_portes_de_bretagne.yml │ ├── nantes_metropole.yml │ ├── paris.yml │ ├── petr_bruche_mossig.yml │ ├── petr_pays_de_brie_et_champagne.yml │ ├── plie-de-lens-lievin.yml │ ├── pole_metropolitain_genevois_francais.yml │ ├── pro_btp.yml │ ├── region_auvergne_rhone_alpes.yml │ ├── region_bourgogne_franche_comte.yml │ ├── region_bretagne.yml │ ├── region_centre_val_de_loire.yml │ ├── region_corse.yml │ ├── region_ile_de_france.yml │ ├── region_la_reunion.yml │ ├── region_normandie.yml │ ├── region_nouvelle_aquitaine.yml │ ├── region_occitanie.yml │ ├── region_pays_de_la_loire.yml │ ├── region_provence_alpes_cote_azur.yml │ ├── rennes_metropole.yml │ ├── saint_etienne_metropole.yml │ ├── sm_de_touraine.yml │ ├── smaps_syndicat_mixte_avant_pays_savoyard.yml │ ├── smm_aire_grenobloise.yml │ ├── smt_du_petit_cul_de_sac_marin.yml │ ├── smtc_agglomeration_clermontoise.yml │ ├── smtc_du_territoire_de_belfort.yml │ ├── sncf.yml │ ├── strasbourg_eurometropole.yml │ ├── syndicat_mobilites_pays_basque_adour_smbpa.yml │ ├── syndicat_pays_de_maurienne.yml │ ├── toulouse_metropole.yml │ ├── union_europeenne.yml │ ├── valence_romans_mobilites.yml │ ├── ville-angers.yml │ ├── ville-de-carcassonne.yml │ ├── ville-de-roubaix.yml │ ├── ville-de-tournefeuille.yml │ ├── ville-de-vannes.yml │ ├── ville_aix_les_bains.yml │ ├── ville_ajaccio.yml │ ├── ville_albert.yml │ ├── ville_alfortville.yml │ ├── ville_amboise.yml │ ├── ville_annoeullin.yml │ ├── ville_antony.yml │ ├── ville_anzin.yml │ ├── ville_arcachon.yml │ ├── ville_aubervilliers.yml │ ├── ville_aubiere.yml │ ├── ville_avesnes_sur_helpe.yml │ ├── ville_avignon.yml │ ├── ville_baisieux.yml │ ├── ville_bannalec.yml │ ├── ville_bar_le_duc.yml │ ├── ville_barcelonnette.yml │ ├── ville_baud.yml │ ├── ville_begles.yml │ ├── ville_belfort.yml │ ├── ville_berre_l_etang.yml │ ├── ville_betheny.yml │ ├── ville_bethune.yml │ ├── ville_bidart.yml │ ├── ville_billy_berclau.yml │ ├── ville_binic_etables_sur_mer.yml │ ├── ville_boe.yml │ ├── ville_bonningues_les_calais.yml │ ├── ville_bourg_en_bresse.yml │ ├── ville_bourg_saint_maurice.yml │ ├── ville_bram.yml │ ├── ville_caen.yml │ ├── ville_cambrai.yml │ ├── ville_camon.yml │ ├── ville_canejan.yml │ ├── ville_carpiquet.yml │ ├── ville_carvin.yml │ ├── ville_castelnau_de_medoc.yml │ ├── ville_cazouls_les_beziers.yml │ ├── ville_cebazat.yml │ ├── ville_cenon.yml │ ├── ville_cerizay.yml │ ├── ville_ceyrat.yml │ ├── ville_chalette_sur_loing.yml │ ├── ville_champagne_au_mont_d_or.yml │ ├── ville_charenton_le_pont.yml │ ├── ville_chatel.yml │ ├── ville_chaumes_en_retz.yml │ ├── ville_chemille_en_anjou.yml │ ├── ville_chenove.yml │ ├── ville_chevilly_larue.yml │ ├── ville_cholet.yml │ ├── ville_clisson.yml │ ├── ville_colmar.yml │ ├── ville_colomiers.yml │ ├── ville_combloux.yml │ ├── ville_comines.yml │ ├── ville_cormelles_le_royal.yml │ ├── ville_correze.yml │ ├── ville_courbevoie.yml │ ├── ville_cournon_auvergne.yml │ ├── ville_crolles.yml │ ├── ville_d_amiens.yml │ ├── ville_d_elbeuf.yml │ ├── ville_daix.yml │ ├── ville_dardilly.yml │ ├── ville_de_barentin.yml │ ├── ville_de_blacé.yml │ ├── ville_de_drumettaz_clarafond.yml │ ├── ville_de_guichen_pont_rean.yml │ ├── ville_de_larcay.yml │ ├── ville_de_lescar.yml │ ├── ville_de_louvigny.yml │ ├── ville_de_lyon.yml │ ├── ville_de_pavilly.yml │ ├── ville_de_rueil-malmaison.yml │ ├── ville_de_sainghin_en_melantois.yml │ ├── ville_de_saint_jean_de_vedas.yml │ ├── ville_de_saint_remy.yml │ ├── ville_de_voglans.yml │ ├── ville_deauville.yml │ ├── ville_demouville.yml │ ├── ville_denain.yml │ ├── ville_dieppe.yml │ ├── ville_divonne_les_bains.yml │ ├── ville_drancy.yml │ ├── ville_dreux.yml │ ├── ville_dunkerque.yml │ ├── ville_eckbolsheim.yml │ ├── ville_ecommoy.yml │ ├── ville_ecully.yml │ ├── ville_entzheim.yml │ ├── ville_epernay.yml │ ├── ville_eschau.yml │ ├── ville_evian_les_bains.yml │ ├── ville_faches_thumesnil.yml │ ├── ville_falaise.yml │ ├── ville_feignies.yml │ ├── ville_feyzin.yml │ ├── ville_figeac.yml │ ├── ville_fontenay_sous_bois.yml │ ├── ville_fourmies.yml │ ├── ville_frejus.yml │ ├── ville_gap.yml │ ├── ville_geispolsheim.yml │ ├── ville_genneviliers.yml │ ├── ville_gerstheim.yml │ ├── ville_givors.yml │ ├── ville_gouesnou.yml │ ├── ville_grande_synthe.yml │ ├── ville_granville.yml │ ├── ville_gravelines.yml │ ├── ville_grentheville.yml │ ├── ville_grigny.yml │ ├── ville_gruson.yml │ ├── ville_hangenbieten.yml │ ├── ville_hem.yml │ ├── ville_hennebont.yml │ ├── ville_hermanville_sur_mer.yml │ ├── ville_herouville_saint_clair.yml │ ├── ville_ifs.yml │ ├── ville_igny.yml │ ├── ville_illkirch_graffenstaden.yml │ ├── ville_irigny.yml │ ├── ville_istres.yml │ ├── ville_iwuy.yml │ ├── ville_joinville.yml │ ├── ville_joinville_le_pont.yml │ ├── ville_la_ferte_saint_aubin.yml │ ├── ville_la_madeleine.yml │ ├── ville_la_motte_servolex.yml │ ├── ville_la_tour_du_pin.yml │ ├── ville_labege.yml │ ├── ville_lanester.yml │ ├── ville_le_bourget_du_lac.yml │ ├── ville_le_cateau.yml │ ├── ville_le_kremlin_bicetre.yml │ ├── ville_le_petit_quevilly.yml │ ├── ville_le_pont_de_beauvoisin.yml │ ├── ville_le_relecq_kerhuon.yml │ ├── ville_le_vigan.yml │ ├── ville_lempdes.yml │ ├── ville_les_rues_des_vignes.yml │ ├── ville_lesquin.yml │ ├── ville_lezennes.yml │ ├── ville_lievin.yml │ ├── ville_lille.yml │ ├── ville_linselles.yml │ ├── ville_lisieux.yml │ ├── ville_lodeve.yml │ ├── ville_longuenesse.yml │ ├── ville_loos_en_gohelle.yml │ ├── ville_mandelieu_la_napoule.yml │ ├── ville_marckolsheim.yml │ ├── ville_marcq_en_baroeul.yml │ ├── ville_marignier.yml │ ├── ville_marquette_lez_lille.yml │ ├── ville_martigues.yml │ ├── ville_mennecy.yml │ ├── ville_mer.yml │ ├── ville_merignac.yml │ ├── ville_meyreuil.yml │ ├── ville_mondeville.yml │ ├── ville_mons_en_baroeul.yml │ ├── ville_montagnole.yml │ ├── ville_montbard.yml │ ├── ville_montbeliard.yml │ ├── ville_monthoiron.yml │ ├── ville_montigny_les_metz.yml │ ├── ville_montlouis_sur_loire.yml │ ├── ville_montmorillon.yml │ ├── ville_montpellier.yml │ ├── ville_montval_sur_loir.yml │ ├── ville_mornant.yml │ ├── ville_morzine.yml │ ├── ville_mougins.yml │ ├── ville_nanterre.yml │ ├── ville_nice.yml │ ├── ville_noirmoutier_en_l_ile.yml │ ├── ville_noyarey.yml │ ├── ville_ouistreham_riva_bella.yml │ ├── ville_oullins.yml │ ├── ville_pantin.yml │ ├── ville_perros_guirec.yml │ ├── ville_petit_couronne.yml │ ├── ville_pierre_benite.yml │ ├── ville_plobsheim.yml │ ├── ville_ploemeur.yml │ ├── ville_plougastel_daoulas.yml │ ├── ville_plouzane.yml │ ├── ville_pont_sainte_maxence.yml │ ├── ville_puteaux.yml │ ├── ville_quesnoy_sur_deule.yml │ ├── ville_queven.yml │ ├── ville_reims.yml │ ├── ville_rivery.yml │ ├── ville_romagnat.yml │ ├── ville_ronchin.yml │ ├── ville_sable_sur_sarthe.yml │ ├── ville_saint_alban_leysse.yml │ ├── ville_saint_germain_la_blanche_herbe.yml │ ├── ville_saint_jacques_de_la_lande.yml │ ├── ville_saint_louis.yml │ ├── ville_saint_martin_de_crau.yml │ ├── ville_saint_omer.yml │ ├── ville_saint_pair_sur_mer.yml │ ├── ville_saint_pierre_du_mont.yml │ ├── ville_saint_pol_de_leon.yml │ ├── ville_saint_remy_de_provence.yml │ ├── ville_sainte_foy_les_lyon.yml │ ├── ville_salon_de_provence.yml │ ├── ville_sarlat.yml │ ├── ville_taillan_medoc.yml │ ├── ville_talant.yml │ ├── ville_talence.yml │ ├── ville_thiais.yml │ ├── ville_thionville.yml │ ├── ville_thue_et_mue.yml │ ├── ville_trebeurden.yml │ ├── ville_trouville_sur_mer.yml │ ├── ville_unieux.yml │ ├── ville_val_de_reuil.yml │ ├── ville_val_revermont.yml │ ├── ville_vale_au_perche.yml │ ├── ville_vaucresson.yml │ ├── ville_vauvert.yml │ ├── ville_vendenheim.yml │ ├── ville_verson.yml │ ├── ville_vertou.yml │ ├── ville_vif.yml │ ├── ville_ville_sur_jarnioux.yml │ ├── ville_villefranche_sur_saone.yml │ ├── ville_villeneuve_les_avignon.yml │ ├── ville_villers_sur_mer.yml │ ├── ville_villeurbanne.yml │ ├── ville_villiers_en_biere.yml │ ├── ville_wambrechies.yml │ ├── ville_wasquehal.yml │ ├── ville_wasselonne.yml │ └── ville_witry_les_reims.yml ├── schemas.ts └── types │ ├── benefits.d.ts │ ├── generator.d.ts │ ├── institutions.d.ts │ └── jamstack.d.ts ├── eslint.config.js ├── iframes ├── iframe-integration.ts └── iframes.config.ts ├── index.html ├── lib ├── activite.ts ├── answers.ts ├── benefits │ ├── compute-aides-velo.ts │ ├── compute-javascript.ts │ ├── compute.ts │ ├── customization.ts │ ├── details.ts │ ├── filter-interest-flag.ts │ ├── geographical-count-utils.ts │ ├── lieux.ts │ └── link-validity.ts ├── chapters.ts ├── cleaner-functions.ts ├── dates.ts ├── enfants.ts ├── enums │ ├── activite.ts │ ├── chapter.ts │ ├── cta.ts │ ├── error.ts │ ├── event.ts │ ├── logement.ts │ ├── messaging.ts │ ├── nationality.ts │ ├── patrimoine.ts │ ├── scolarite.ts │ ├── simulation.ts │ ├── survey.ts │ ├── themes.ts │ └── velo.ts ├── grist.ts ├── individu.ts ├── logement.ts ├── mutualized-steps.ts ├── phone-number.ts ├── properties │ ├── depcom-properties.ts │ ├── famille-properties.ts │ ├── individu-properties.ts │ ├── menage-properties.ts │ ├── others │ │ ├── complexe-properties.ts │ │ └── simple-properties.ts │ ├── parents-properties.ts │ └── property.ts ├── resources.ts ├── ressource.ts ├── scolarite.ts ├── simulation.ts ├── situation.ts ├── situations-familiales.ts ├── situations.ts ├── state │ ├── blocks.ts │ ├── generator.ts │ ├── index.ts │ ├── step-conditions.ts │ └── steps.ts ├── types │ ├── abtesting.d.ts │ ├── answer.d.ts │ ├── benefits.d.ts │ ├── blocks.d.ts │ ├── chapters.d.ts │ ├── commune.d.ts │ ├── dates.d.ts │ ├── details.d.ts │ ├── download-incitations-covoiturage.d.ts │ ├── email.d.ts │ ├── enfant.d.ts │ ├── followup.d.ts │ ├── individu.d.ts │ ├── lieu.d.ts │ ├── link-validity.d.ts │ ├── logement.d.ts │ ├── parameters.d.ts │ ├── property.d.ts │ ├── resources.d.ts │ ├── route.d.ts │ ├── simulation.d.ts │ ├── situations.d.ts │ ├── steps.d.ts │ ├── store.d.ts │ └── survey.d.ts └── utils.ts ├── netlify.toml ├── nodemon.json ├── openfisca ├── Dockerfile ├── api.py ├── config.py └── requirements.txt ├── package.json ├── public ├── favicon.ico ├── img │ ├── 1jeune1solution │ │ ├── Twitter_1024x512.png │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ └── favicon-16x16.png │ │ ├── logo1j1s-france-relance.png │ │ └── logo1j1s-france-relance.svg │ ├── artois-mobilite.png │ ├── benefits │ │ ├── ge_quadri_baseline-europe.jpg │ │ ├── logo-atouts.jpg │ │ ├── logo-bafa-bafd.png │ │ ├── logo-pass-monde.jpg │ │ ├── logo-velo.jpg │ │ ├── logo_garantie_jeunes.png │ │ └── logo_ridf_2019_hd.jpg │ ├── devise.svg │ ├── france-relance.svg │ ├── institutions │ │ ├── epci_aunis.jpg │ │ ├── epci_coutances.png │ │ ├── epci_grand_lieu.png │ │ ├── logo-alsace.png │ │ ├── logo-grenoble-alpes-metropole.png │ │ ├── logo-guyane.jpeg │ │ ├── logo-louvigny.png │ │ ├── logo__boulonnais.png │ │ ├── logo_action_logement.png │ │ ├── logo_agglomeration_brive.png │ │ ├── logo_aix_les_bains.png │ │ ├── logo_alfortville.png │ │ ├── logo_amiens.png │ │ ├── logo_arcachon.png │ │ ├── logo_assurance_maladie.png │ │ ├── logo_assurance_retraite.png │ │ ├── logo_atmb.png │ │ ├── logo_aubiere.png │ │ ├── logo_auvergne_rhone_alpes.jpg │ │ ├── logo_avant_pays_savoyard.png │ │ ├── logo_avesnes_sur_helpe.png │ │ ├── logo_baisieux.png │ │ ├── logo_banque_de_france.png │ │ ├── logo_barentin.jpg │ │ ├── logo_betheny.png │ │ ├── logo_bethune.png │ │ ├── logo_billy_berclau.png │ │ ├── logo_blace.png │ │ ├── logo_blois.png │ │ ├── logo_bourg_en_bresse.png │ │ ├── logo_bourgogne_franche_comte.png │ │ ├── logo_brest_metropole.png │ │ ├── logo_bretagne.png │ │ ├── logo_ca_annonay_rhone_agglo.png │ │ ├── logo_ca_arche_agglo.png │ │ ├── logo_ca_arlysere.png │ │ ├── logo_ca_cannes_pays_de_lerins.png │ │ ├── logo_ca_carcassonne_agglo.png │ │ ├── logo_ca_caux_seine_agglo.png │ │ ├── logo_ca_colmar_agglomeration.png │ │ ├── logo_ca_cotentin.png │ │ ├── logo_ca_dagen.png │ │ ├── logo_ca_de_bethune_bruay_artois_lys_romane.jpg │ │ ├── logo_ca_de_cambrai.png │ │ ├── logo_ca_de_la_porte_du_hainaut.png │ │ ├── logo_ca_de_la_provence_verte.jpg │ │ ├── logo_ca_de_la_region_de_chateau_thierry.png │ │ ├── logo_ca_de_lauxerrois.png │ │ ├── logo_ca_de_saintes.png │ │ ├── logo_ca_de_vesoul.png │ │ ├── logo_ca_des_deux_baies_en_montreuillois.png │ │ ├── logo_ca_du_bassin_darcachon_nord.png │ │ ├── logo_ca_du_bassin_de_bourg_en_bresse.png │ │ ├── logo_ca_du_beauvaisis.png │ │ ├── logo_ca_du_bocage_bressuirais.png │ │ ├── logo_ca_du_centre_littoral.png │ │ ├── logo_ca_du_grand_angouleme.png │ │ ├── logo_ca_du_grand_villeneuvois.png │ │ ├── logo_ca_du_libournais.png │ │ ├── logo_ca_du_niortais.png │ │ ├── logo_ca_durance_luberon_verdon_agglomeration.png │ │ ├── logo_ca_ecla__espace_communautaire_lons_agglomeration.png │ │ ├── logo_ca_epernay_coteaux_et_plaine_de_champagne.png │ │ ├── logo_ca_esterel_cote_d_azur_agglomeration.png │ │ ├── logo_ca_fecamp_caux_littoral_agglomeration.png │ │ ├── logo_ca_flers_agglo.png │ │ ├── logo_ca_fougeres_agglomeration.png │ │ ├── logo_ca_gard_rhodanien.png │ │ ├── logo_ca_grand_calais_terres_et_mers.png │ │ ├── logo_ca_grand_chambery.png │ │ ├── logo_ca_grand_chatellerault.png │ │ ├── logo_ca_grand_lac.png │ │ ├── logo_ca_grand_longwy_agglomeration.png │ │ ├── logo_ca_grand_verdun.png │ │ ├── logo_ca_lagglo_foix_varilhes.png │ │ ├── logo_ca_lannion_tregor_communaute.png │ │ ├── logo_ca_le_grand_perigueux.png │ │ ├── logo_ca_luberon_monts_de_vaucluse.png │ │ ├── logo_ca_lunel_agglo.png │ │ ├── logo_ca_mauges.png │ │ ├── logo_ca_morlaix_communaute.png │ │ ├── logo_ca_pays_ajaccien.png │ │ ├── logo_ca_pays_basque.png │ │ ├── logo_ca_pays_de_gex.png │ │ ├── logo_ca_pays_de_grasse.png │ │ ├── logo_ca_pays_de_saint_malo_agglomeration.png │ │ ├── logo_ca_pornic_agglo_pays_de_retz.png │ │ ├── logo_ca_privas_centre_ardeche.png │ │ ├── logo_ca_quimperle_communaute.png │ │ ├── logo_ca_saint_avold_synergie.png │ │ ├── logo_ca_saint_brieuc_armor_agglomeration.png │ │ ├── logo_ca_saint_lo_agglo.png │ │ ├── logo_ca_saint_louis_agglomeration.png │ │ ├── logo_ca_sarreguemines_confluences.png │ │ ├── logo_ca_seine_eure.png │ │ ├── logo_ca_sete_agglopole_mediterranee.png │ │ ├── logo_ca_territoire_de_la_cote_ouest_tco.png │ │ ├── logo_ca_territoires_vendomois.png │ │ ├── logo_ca_troyes_champagne_metropole.png │ │ ├── logo_ca_tulle_agglo.png │ │ ├── logo_ca_val_dyerres_val_de_seine.png │ │ ├── logo_ca_val_parisis.png │ │ ├── logo_ca_ventoux_comtat_venaissin.png │ │ ├── logo_ca_vienne_condrieu.png │ │ ├── logo_ca_villefranche_beaujolais_saone.png │ │ ├── logo_ca_vitre_communaute.png │ │ ├── logo_caba.png │ │ ├── logo_caen.png │ │ ├── logo_caf.png │ │ ├── logo_caf_ain.png │ │ ├── logo_caf_aisne.png │ │ ├── logo_caf_allier.png │ │ ├── logo_caf_alpes_de_haute_provence.png │ │ ├── logo_caf_alpes_maritimes.png │ │ ├── logo_caf_ardeche.png │ │ ├── logo_caf_ardennes.png │ │ ├── logo_caf_ariege.png │ │ ├── logo_caf_aube.png │ │ ├── logo_caf_aude.png │ │ ├── logo_caf_aveyron.png │ │ ├── logo_caf_bas_rhin.png │ │ ├── logo_caf_bouches_du_rhone.png │ │ ├── logo_caf_calvados.png │ │ ├── logo_caf_cantal.png │ │ ├── logo_caf_charente.png │ │ ├── logo_caf_charente_maritime.png │ │ ├── logo_caf_cher.png │ │ ├── logo_caf_correze.png │ │ ├── logo_caf_corse_du_sud.png │ │ ├── logo_caf_cote_or.png │ │ ├── logo_caf_cotes_armor.png │ │ ├── logo_caf_creuse.png │ │ ├── logo_caf_deux_sevres.png │ │ ├── logo_caf_dordogne.png │ │ ├── logo_caf_doubs.png │ │ ├── logo_caf_drome.png │ │ ├── logo_caf_essonne.png │ │ ├── logo_caf_eure.png │ │ ├── logo_caf_eure_et_loir.png │ │ ├── logo_caf_finistere.png │ │ ├── logo_caf_gard.png │ │ ├── logo_caf_gers.png │ │ ├── logo_caf_gironde.png │ │ ├── logo_caf_guadeloupe.png │ │ ├── logo_caf_guyane.png │ │ ├── logo_caf_haut_rhin.png │ │ ├── logo_caf_haute_corse.png │ │ ├── logo_caf_haute_garonne.png │ │ ├── logo_caf_haute_loire.png │ │ ├── logo_caf_haute_marne.png │ │ ├── logo_caf_haute_saone.png │ │ ├── logo_caf_haute_savoie.png │ │ ├── logo_caf_haute_vienne.png │ │ ├── logo_caf_hautes_alpes.png │ │ ├── logo_caf_hautes_pyrenees.png │ │ ├── logo_caf_hauts_de_seine.png │ │ ├── logo_caf_herault.png │ │ ├── logo_caf_ille_et_vilaine.png │ │ ├── logo_caf_indre.png │ │ ├── logo_caf_indre_et_loire.png │ │ ├── logo_caf_isere.png │ │ ├── logo_caf_jura.png │ │ ├── logo_caf_la_reunion.png │ │ ├── logo_caf_landes.png │ │ ├── logo_caf_loir_et_cher.png │ │ ├── logo_caf_loire.png │ │ ├── logo_caf_loire_atlantique.png │ │ ├── logo_caf_loiret.png │ │ ├── logo_caf_lot.png │ │ ├── logo_caf_lot_et_garonne.png │ │ ├── logo_caf_lozere.png │ │ ├── logo_caf_maine_et_loire.png │ │ ├── logo_caf_manche.png │ │ ├── logo_caf_marne.png │ │ ├── logo_caf_martinique.png │ │ ├── logo_caf_mayenne.png │ │ ├── logo_caf_mayotte.png │ │ ├── logo_caf_meurthe_et_moselle.png │ │ ├── logo_caf_meuse.png │ │ ├── logo_caf_morbihan.png │ │ ├── logo_caf_moselle.png │ │ ├── logo_caf_nievre.png │ │ ├── logo_caf_nord.png │ │ ├── logo_caf_nord_quadrichromie.jpg │ │ ├── logo_caf_oise.png │ │ ├── logo_caf_orne.png │ │ ├── logo_caf_paris.png │ │ ├── logo_caf_pas_de_calais.png │ │ ├── logo_caf_puy_de_dome.png │ │ ├── logo_caf_pyrenees_atlantiques.png │ │ ├── logo_caf_pyrenees_orientales.png │ │ ├── logo_caf_rhone.png │ │ ├── logo_caf_saone_et_loire.png │ │ ├── logo_caf_sarthe.png │ │ ├── logo_caf_savoie.png │ │ ├── logo_caf_seine_et_marne.png │ │ ├── logo_caf_seine_maritime.png │ │ ├── logo_caf_seine_st_denis.png │ │ ├── logo_caf_somme.png │ │ ├── logo_caf_tarn.png │ │ ├── logo_caf_tarn_et_garonne.png │ │ ├── logo_caf_territoire_de_belfort.png │ │ ├── logo_caf_val_de_marne.png │ │ ├── logo_caf_val_oise.png │ │ ├── logo_caf_var.png │ │ ├── logo_caf_vaucluse.png │ │ ├── logo_caf_vendee.png │ │ ├── logo_caf_vienne.png │ │ ├── logo_caf_vosges.png │ │ ├── logo_caf_yonne.png │ │ ├── logo_caf_yvelines.png │ │ ├── logo_cambrai.png │ │ ├── logo_carpiquet.png │ │ ├── logo_carvin.png │ │ ├── logo_castres_mazamet.png │ │ ├── logo_cc_albret_communaute.png │ │ ├── logo_cc_alsace_rhin_brisach.png │ │ ├── logo_cc_ambert_livradois_forez.png │ │ ├── logo_cc_anjou_bleu_communaute.png │ │ ├── logo_cc_arbois_poligny_salins_coeur_du_jura.png │ │ ├── logo_cc_arc_sud_bretagne.png │ │ ├── logo_cc_ardeche_rhone_coiron.png │ │ ├── logo_cc_arve_et_saleve.png │ │ ├── logo_cc_auray_quiberon_terre_atlantique.png │ │ ├── logo_cc_bievre_isere.png │ │ ├── logo_cc_bouzonvillois_trois_frontieres.png │ │ ├── logo_cc_bretagne_porte_de_loire_communaute.png │ │ ├── logo_cc_bugey_sud.png │ │ ├── logo_cc_carmausin_segala.png │ │ ├── logo_cc_centre_morbihan_communaute.png │ │ ├── logo_cc_challans_gois_communaute.png │ │ ├── logo_cc_chateaubriant_derval.png │ │ ├── logo_cc_chinon_vienne_et_loire.png │ │ ├── logo_cc_cluses_arve_et_montagnes.png │ │ ├── logo_cc_coeur_de_maurienne_arvan.png │ │ ├── logo_cc_coeur_de_nacre.png │ │ ├── logo_cc_coeur_de_savoie.png │ │ ├── logo_cc_coeur_de_tarentaise.png │ │ ├── logo_cc_coeur_dostrevent_ccco.png │ │ ├── logo_cc_cote_demeraude.jpg │ │ ├── logo_cc_couesnon_marches_de_bretagne.png │ │ ├── logo_cc_de_bayeux_intercom.png │ │ ├── logo_cc_de_cattenom_et_environs.png │ │ ├── logo_cc_de_gevrey_chambertin_et_de_nuits_saint_georges.png │ │ ├── logo_cc_de_haute_cornouaille.png │ │ ├── logo_cc_de_la_brie_champenoise.png │ │ ├── logo_cc_de_la_champagne_picarde.png │ │ ├── logo_cc_de_la_cote_dalbatre.jpg │ │ ├── logo_cc_de_la_cotiere_a_montluel.png │ │ ├── logo_cc_de_la_haute_somme.png │ │ ├── logo_cc_de_la_plaine_de_lain.png │ │ ├── logo_cc_de_la_plaine_destrees.png │ │ ├── logo_cc_de_la_region_de_guebwiller.png │ │ ├── logo_cc_de_la_region_de_molsheim_mutzig.png │ │ ├── logo_cc_de_la_vallee_de_kaysersberg.png │ │ ├── logo_cc_de_la_vallee_de_la_doller_et_du_soultzbach.png │ │ ├── logo_cc_de_la_vallee_de_lhomme.png │ │ ├── logo_cc_de_la_vallee_de_ville.png │ │ ├── logo_cc_de_la_vallee_dossau.png │ │ ├── logo_cc_de_laillantais_en_bourgogne.png │ │ ├── logo_cc_de_larc_mosellan.png │ │ ├── logo_cc_de_lile_de_re.png │ │ ├── logo_cc_de_louest_vosgien.png │ │ ├── logo_cc_de_loust_a_broceliande.png │ │ ├── logo_cc_de_puisaye_forterre.png │ │ ├── logo_cc_de_saint_flour.png │ │ ├── logo_cc_de_saulieu.png │ │ ├── logo_cc_de_semur_en_brionnais.png │ │ ├── logo_cc_des_4_rivieres.png │ │ ├── logo_cc_des_7_vallees.png │ │ ├── logo_cc_des_campagnes_de_lartois.png │ │ ├── logo_cc_des_cevennes_gangeoises_et_sumenoises.jpg │ │ ├── logo_cc_des_coevrons.png │ │ ├── logo_cc_des_cretes_preardennaises.png │ │ ├── logo_cc_des_monts_du_pilat.png │ │ ├── logo_cc_des_pays_de_laigle.png │ │ ├── logo_cc_des_paysages_de_la_champagne.png │ │ ├── logo_cc_des_portes_de_romilly_sur_seine.jpg │ │ ├── logo_cc_des_portes_de_rosheim.jpg │ │ ├── logo_cc_des_portes_du_luxembourg.png │ │ ├── logo_cc_des_portes_eureliennes_dile_de_france.png │ │ ├── logo_cc_des_sablons.png │ │ ├── logo_cc_des_terres_du_val_de_loire.png │ │ ├── logo_cc_des_vallees_dauge_et_du_merlerault.png │ │ ├── logo_cc_des_vallees_du_clain.png │ │ ├── logo_cc_des_villes_soeurs.png │ │ ├── logo_cc_dieulefit_bourdeaux.jpg │ │ ├── logo_cc_dombes_saone_vallee.png │ │ ├── logo_cc_douarnenez_communaute.png │ │ ├── logo_cc_du_bassin_daubenas.png │ │ ├── logo_cc_du_bassin_de_pompey.png │ │ ├── logo_cc_du_bocage_mayennais.png │ │ ├── logo_cc_du_canton_derstein.png │ │ ├── logo_cc_du_centre_du_haut_rhin.png │ │ ├── logo_cc_du_chemin_des_dames.png │ │ ├── logo_cc_du_crestois_et_de_pays_de_saillans_coeur_de_drome.png │ │ ├── logo_cc_du_golfe_de_saint_tropez.png │ │ ├── logo_cc_du_grand_chateaudun.png │ │ ├── logo_cc_du_grand_cubzaguais.png │ │ ├── logo_cc_du_grand_roye.png │ │ ├── logo_cc_du_haut_bearn.png │ │ ├── logo_cc_du_haut_poitou.png │ │ ├── logo_cc_du_haut_vallespir.png │ │ ├── logo_cc_du_kreiz_breizh_cckb.jpg │ │ ├── logo_cc_du_massif_du_vercors.png │ │ ├── logo_cc_du_pays_dancenis.png │ │ ├── logo_cc_du_pays_de_barr.png │ │ ├── logo_cc_du_pays_de_dol_et_de_la_baie_du_mont_saint_michel.png │ │ ├── logo_cc_du_pays_de_fenelon.png │ │ ├── logo_cc_du_pays_de_honfleur_beuzeville.jpg │ │ ├── logo_cc_du_pays_de_larbresle_ccpa.png │ │ ├── logo_cc_du_pays_de_lozon.png │ │ ├── logo_cc_du_pays_de_mormal.png │ │ ├── logo_cc_du_pays_de_mortagne.png │ │ ├── logo_cc_du_pays_de_pouzauges.png │ │ ├── logo_cc_du_pays_de_rouffach_vignobles_et_chateaux.png │ │ ├── logo_cc_du_pays_de_saverne.png │ │ ├── logo_cc_du_pays_diroise.png │ │ ├── logo_cc_du_pays_haut_val_dalzette.png │ │ ├── logo_cc_du_pays_mornantais_copamo.png │ │ ├── logo_cc_du_pays_orne_moselle.png │ │ ├── logo_cc_du_pays_rhenan.png │ │ ├── logo_cc_du_pays_rochois.jpg │ │ ├── logo_cc_du_pays_sabolien.png │ │ ├── logo_cc_du_ried_de_marckolsheim.png │ │ ├── logo_cc_du_saulnois.png │ │ ├── logo_cc_du_sisteronais_buech.png │ │ ├── logo_cc_du_sud_artois.png │ │ ├── logo_cc_du_sud_messin.png │ │ ├── logo_cc_du_val_dargent.png │ │ ├── logo_cc_du_val_de_drome_en_biovallee.png │ │ ├── logo_cc_du_vexin_normand.png │ │ ├── logo_cc_entre_arroux_loire_et_somme.png │ │ ├── logo_cc_ernee.jpg │ │ ├── logo_cc_falaises_du_talou.png │ │ ├── logo_cc_fier_et_usses.png │ │ ├── logo_cc_flandre_interieure.jpg │ │ ├── logo_cc_flandre_lys.png │ │ ├── logo_cc_genevois.jpg │ │ ├── logo_cc_grand_orb_communaute_de_communes_en_languedoc.jpg │ │ ├── logo_cc_grand_saint_emilionnais.jpg │ │ ├── logo_cc_grande_vallee_de_la_marne.png │ │ ├── logo_cc_haut_chemin_pays_de_pange.png │ │ ├── logo_cc_haut_val_de_sevre.png │ │ ├── logo_cc_haute_correze_communaute.png │ │ ├── logo_cc_haute_tarentaise.png │ │ ├── logo_cc_inter-caux-vexin.png │ │ ├── logo_cc_intercom_de_la_vire_au_noireau.png │ │ ├── logo_cc_lac_aiguebelette.png │ │ ├── logo_cc_le_grand_charolais.png │ │ ├── logo_cc_leff_armor_communaute.png │ │ ├── logo_cc_les_avant_monts.png │ │ ├── logo_cc_les_balcons_du_dauphine.png │ │ ├── logo_cc_les_portes_briardes_entre_villes_et_forets.png │ │ ├── logo_cc_liffre_cormier_communaute.png │ │ ├── logo_cc_loir_luce_berce.png │ │ ├── logo_cc_loire_layon_aubance.png │ │ ├── logo_cc_loue_lison.png │ │ ├── logo_cc_lyon_saint_exupery_en_dauphine.png │ │ ├── logo_cc_lyons_andelle.png │ │ ├── logo_cc_marches_du_velay_rochebaron.png │ │ ├── logo_cc_maremne_adour_cote_sud.png │ │ ├── logo_cc_mayenne_communaute.png │ │ ├── logo_cc_montfort_communaute.png │ │ ├── logo_cc_moselle_et_madon.png │ │ ├── logo_cc_nievre_et_somme.png │ │ ├── logo_cc_normandie_cabourg_pays_dauge.png │ │ ├── logo_cc_ocean_marais_de_monts.png │ │ ├── logo_cc_orne_lorraine_confluences.png │ │ ├── logo_cc_osartis_marquion.png │ │ ├── logo_cc_pays_d_evian.png │ │ ├── logo_cc_pays_de_chateaugiron_communaute.png │ │ ├── logo_cc_pays_de_cruseilles.png │ │ ├── logo_cc_pays_de_la_chataigneraie.png │ │ ├── logo_cc_pays_de_la_serre.png │ │ ├── logo_cc_pays_des_achards.png │ │ ├── logo_cc_pays_des_sorgues_et_des_monts_de_vaucluse.png │ │ ├── logo_cc_pays_dorthe_et_arrigans.png │ │ ├── logo_cc_pays_flechois.png │ │ ├── logo_cc_pays_forcalquier_et_montagne_de_lure.png │ │ ├── logo_cc_pays_saint_gilles_croix_de_vie.jpg │ │ ├── logo_cc_pevele_carembault.png │ │ ├── logo_cc_picardie_verte.png │ │ ├── logo_cc_plaine_limagne.png │ │ ├── logo_cc_ploermel_communaute.png │ │ ├── logo_cc_poher_communaute.png │ │ ├── logo_cc_porte_de_dromardeche.png │ │ ├── logo_cc_portes_de_sologne.png │ │ ├── logo_cc_presquile_de_crozon_aulne_maritime.png │ │ ├── logo_cc_provence_verdon.png │ │ ├── logo_cc_rhone_lez_provence.png │ │ ├── logo_cc_rives_de_moselle.png │ │ ├── logo_cc_saint_marcellin_vercors_isere_communaute.png │ │ ├── logo_cc_saint_pourcain_sioule_limagne.png │ │ ├── logo_cc_saone_beaujolais.png │ │ ├── logo_cc_sarrebourg_moselle_sud.png │ │ ├── logo_cc_selestat.png │ │ ├── logo_cc_serein_et_armance.png │ │ ├── logo_cc_somme_sud_ouest.png │ │ ├── logo_cc_sud_alsace_largue.png │ │ ├── logo_cc_sud_vendee_littoral.png │ │ ├── logo_cc_sundgau.png │ │ ├── logo_cc_terre_dauge.jpg │ │ ├── logo_cc_terre_deau.png │ │ ├── logo_cc_terre_demeraude_communaute.png │ │ ├── logo_cc_terre_des_deux_caps.png │ │ ├── logo_cc_terre_valserhone.png │ │ ├── logo_cc_terres_de_montaigu_cc_montaigu_rocheserviere.png │ │ ├── logo_cc_territoriale_sud_luberon.png │ │ ├── logo_cc_thelloise.png │ │ ├── logo_cc_touraine_vallee_de_l_indre.png │ │ ├── logo_cc_usses_rhone.png │ │ ├── logo_cc_val_de_saone_centre.png │ │ ├── logo_cc_val_guiers.png │ │ ├── logo_cc_val_vanoise.png │ │ ├── logo_cc_vallees_d_aigueblanche.png │ │ ├── logo_cc_vallees_de_lorne_et_de_lodon.png │ │ ├── logo_cc_vallees_haut_anjou.png │ │ ├── logo_cc_vendee_grand_littoral.png │ │ ├── logo_cc_versants_d_aime.png │ │ ├── logo_cc_vezere_monedieres_millesources.png │ │ ├── logo_cc_vienne_et_gartempe.png │ │ ├── logo_cc_yenne.png │ │ ├── logo_cc_yvetot_normandie.png │ │ ├── logo_cd01.png │ │ ├── logo_cd02.png │ │ ├── logo_cd03.png │ │ ├── logo_cd04.jpg │ │ ├── logo_cd04.png │ │ ├── logo_cd05.png │ │ ├── logo_cd06.png │ │ ├── logo_cd07.png │ │ ├── logo_cd08.png │ │ ├── logo_cd09.png │ │ ├── logo_cd11.png │ │ ├── logo_cd12.png │ │ ├── logo_cd13.png │ │ ├── logo_cd14.png │ │ ├── logo_cd15.png │ │ ├── logo_cd16.png │ │ ├── logo_cd17.png │ │ ├── logo_cd18.png │ │ ├── logo_cd19.png │ │ ├── logo_cd21.png │ │ ├── logo_cd22.jpg │ │ ├── logo_cd24.png │ │ ├── logo_cd25.png │ │ ├── logo_cd26.png │ │ ├── logo_cd28.png │ │ ├── logo_cd29.png │ │ ├── logo_cd30.png │ │ ├── logo_cd31.png │ │ ├── logo_cd33.png │ │ ├── logo_cd34.png │ │ ├── logo_cd35.png │ │ ├── logo_cd36.png │ │ ├── logo_cd37.png │ │ ├── logo_cd38.png │ │ ├── logo_cd39.png │ │ ├── logo_cd40.png │ │ ├── logo_cd41.png │ │ ├── logo_cd42.png │ │ ├── logo_cd44.png │ │ ├── logo_cd45.jpg │ │ ├── logo_cd45.png │ │ ├── logo_cd46.png │ │ ├── logo_cd49.png │ │ ├── logo_cd50.png │ │ ├── logo_cd51.png │ │ ├── logo_cd53.png │ │ ├── logo_cd56.png │ │ ├── logo_cd57.png │ │ ├── logo_cd59.png │ │ ├── logo_cd60.png │ │ ├── logo_cd62.png │ │ ├── logo_cd63.png │ │ ├── logo_cd64.png │ │ ├── logo_cd67.png │ │ ├── logo_cd68.png │ │ ├── logo_cd69.png │ │ ├── logo_cd71.png │ │ ├── logo_cd72.png │ │ ├── logo_cd74.png │ │ ├── logo_cd75.png │ │ ├── logo_cd76.png │ │ ├── logo_cd77.png │ │ ├── logo_cd78.png │ │ ├── logo_cd80.png │ │ ├── logo_cd83.png │ │ ├── logo_cd84.png │ │ ├── logo_cd85.png │ │ ├── logo_cd86.png │ │ ├── logo_cd91.png │ │ ├── logo_cd92.png │ │ ├── logo_cd93.png │ │ ├── logo_cd94.png │ │ ├── logo_cd95.png │ │ ├── logo_cd974.png │ │ ├── logo_cd_generique.png │ │ ├── logo_cebazat.png │ │ ├── logo_centre_val_de_loire.png │ │ ├── logo_charente.jpeg │ │ ├── logo_charenton_le_pont.png │ │ ├── logo_cheque_energie.png │ │ ├── logo_colmar.png │ │ ├── logo_combloux.png │ │ ├── logo_comines.png │ │ ├── logo_communaute_agglo_henin_carvin.png │ │ ├── logo_communaute_agglo_lens_lievin.png │ │ ├── logo_communaute_agglomeration_grand_albigeois.png │ │ ├── logo_communaute_agglomeration_pays_de_l_or.png │ │ ├── logo_communaute_communes_sud_herault.png │ │ ├── logo_communaute_urbaine_caen_la_mer.png │ │ ├── logo_communaute_urbaine_dunkerque.png │ │ ├── logo_cormelles_le_royal.png │ │ ├── logo_courbevoie.png │ │ ├── logo_cournon_auvergne.png │ │ ├── logo_cu_dalencon.png │ │ ├── logo_cu_du_grand_reims.png │ │ ├── logo_cu_grand_besancon_metropole.png │ │ ├── logo_cu_le_creusot_montceau_les_mines.png │ │ ├── logo_cu_limoges_metropole.png │ │ ├── logo_cu_perpignan_mediterranee_metropole.png │ │ ├── logo_daix.png │ │ ├── logo_departement_aube.png │ │ ├── logo_departement_corse.png │ │ ├── logo_departement_eure.png │ │ ├── logo_departement_haute_marne.png │ │ ├── logo_departement_haute_saone.png │ │ ├── logo_departement_haute_vienne.png │ │ ├── logo_departement_mayenne.png │ │ ├── logo_departement_meurthe_et_moselle.png │ │ ├── logo_departement_orne.png │ │ ├── logo_drancy.png │ │ ├── logo_drumettaz.jpg │ │ ├── logo_dunkerque.png │ │ ├── logo_education_nationale.png │ │ ├── logo_education_nationale_256.png │ │ ├── logo_ehop.png │ │ ├── logo_epci_caux.png │ │ ├── logo_epci_charlieu_belmont.jpg │ │ ├── logo_epci_giennoises.png │ │ ├── logo_epci_poitiers.png │ │ ├── logo_epci_saumur.png │ │ ├── logo_epci_sevres_loire.png │ │ ├── logo_epci_sud_estuaire.png │ │ ├── logo_epci_sud_nivernais.jpg │ │ ├── logo_epci_tarbes_lourdes_pyrenees.png │ │ ├── logo_epci_vallons.png │ │ ├── logo_epinal.png │ │ ├── logo_etat_francais.png │ │ ├── logo_faches_thumesnil.png │ │ ├── logo_fastt.png │ │ ├── logo_figeac.png │ │ ├── logo_fontenay_sous_bois.png │ │ ├── logo_france_travail.png │ │ ├── logo_frejus.png │ │ ├── logo_gennevilliers.png │ │ ├── logo_golfe_du_morbihan_vannes.png │ │ ├── logo_grand_est.png │ │ ├── logo_grand_lyon_la_metropole.png │ │ ├── logo_grandest.png │ │ ├── logo_grentheville.png │ │ ├── logo_gruson.png │ │ ├── logo_guadeloupe.png │ │ ├── logo_guichen_pont_rean.png │ │ ├── logo_haut-rhin.png │ │ ├── logo_hauts_de_france.png │ │ ├── logo_hem.png │ │ ├── logo_herouville_saint_clair.png │ │ ├── logo_ifs.png │ │ ├── logo_ile_de_france.png │ │ ├── logo_illkirch.png │ │ ├── logo_incubateur.png │ │ ├── logo_intercommunalite_amiens.png │ │ ├── logo_intercommunalite_angers_loire.png │ │ ├── logo_intercommunalite_annemasse.png │ │ ├── logo_intercommunalite_ardenne.png │ │ ├── logo_intercommunalite_arras.png │ │ ├── logo_intercommunalite_bordeaux.png │ │ ├── logo_intercommunalite_bourges.png │ │ ├── logo_intercommunalite_bretagne_romantique.png │ │ ├── logo_intercommunalite_chateauroux.png │ │ ├── logo_intercommunalite_erdre_et_gesvres.png │ │ ├── logo_intercommunalite_grand_annecy.png │ │ ├── logo_intercommunalite_grand_avignon.png │ │ ├── logo_intercommunalite_grand_montauban.png │ │ ├── logo_intercommunalite_la_roche_sur_yon.png │ │ ├── logo_intercommunalite_la_rochelle.png │ │ ├── logo_intercommunalite_laval.png │ │ ├── logo_intercommunalite_les_sables_d_olonne.png │ │ ├── logo_intercommunalite_sophia_antipolis.png │ │ ├── logo_intercommunalite_sorgues_du_comtat.png │ │ ├── logo_intercommunalite_vallons_du_lyonnais.png │ │ ├── logo_intercommunaute_riviera_francaise.png │ │ ├── logo_iwuy.jpg │ │ ├── logo_la_madeleine.png │ │ ├── logo_la_reunion.jpeg │ │ ├── logo_le_cateau.png │ │ ├── logo_le_choletais.png │ │ ├── logo_le_mans_sarthe_mobilites.png │ │ ├── logo_les_rues_des_vignes.png │ │ ├── logo_lescar.jpg │ │ ├── logo_lezennes.png │ │ ├── logo_lille_metropole.png │ │ ├── logo_lorient_agglomeration.png │ │ ├── logo_lyon_metropole.png │ │ ├── logo_mandelieu_la_napoule.png │ │ ├── logo_marignier.png │ │ ├── logo_marquette_lez_lille.png │ │ ├── logo_martigues.png │ │ ├── logo_martinique.png │ │ ├── logo_mer.png │ │ ├── logo_metropole_daix_marseille_provence.png │ │ ├── logo_metropole_nice_cote_d_azur.png │ │ ├── logo_metropole_rouen_normandie.png │ │ ├── logo_metropole_savoie.png │ │ ├── logo_meyreuil.png │ │ ├── logo_ministere_cohesion_territoires.png │ │ ├── logo_mission_locale_henin_carvin.png │ │ ├── logo_mission_locale_lens_lievin.png │ │ ├── logo_monaco.png │ │ ├── logo_mondeville.png │ │ ├── logo_mons_en_baroeul.png │ │ ├── logo_mont_de_marsans.png │ │ ├── logo_montbeliard.png │ │ ├── logo_montlouis_sur_loire.png │ │ ├── logo_montlucon_communaute.png │ │ ├── logo_montpellier.png │ │ ├── logo_montpellier_mediterranee_metropole.png │ │ ├── logo_montval_sur_loir.png │ │ ├── logo_mougins.png │ │ ├── logo_mulhouse_alsace_agglomeration.png │ │ ├── logo_mutualite_sociale_agricole.png │ │ ├── logo_nanterre.png │ │ ├── logo_nantes_metropole.png │ │ ├── logo_nevers_agglomeration.png │ │ ├── logo_nice_metropole.png │ │ ├── logo_normandie.png │ │ ├── logo_nouvelle_aquitaine.png │ │ ├── logo_occitanie.png │ │ ├── logo_orleans_metropole.png │ │ ├── logo_ouistreham_riva_bella.png │ │ ├── logo_pantin.png │ │ ├── logo_paris.png │ │ ├── logo_paris_512.png │ │ ├── logo_pau_bearn_pyrenees.png │ │ ├── logo_pavilly.png │ │ ├── logo_pays_de_la_loire.png │ │ ├── logo_pays_de_laon.png │ │ ├── logo_pays_de_lumbres.png │ │ ├── logo_pays_de_montbeliard.png │ │ ├── logo_pays_de_sainte_odile.png │ │ ├── logo_pays_des_herbiers.png │ │ ├── logo_pays_issoire.png │ │ ├── logo_pays_saint_omer.png │ │ ├── logo_petr_bruche_mossig.png │ │ ├── logo_petr_pays_brie_et_champagne.png │ │ ├── logo_plie_lens_lievin.png │ │ ├── logo_ploemeur.png │ │ ├── logo_plouzane.png │ │ ├── logo_pole_metropolitain_genevois_francais.png │ │ ├── logo_pontivy_communaute.png │ │ ├── logo_pro_btp.png │ │ ├── logo_provence_alpes_cote_azur.jpg │ │ ├── logo_pyrenees-orientales.jpeg │ │ ├── logo_quimper_bretagne_occidentale.png │ │ ├── logo_region_corse.png │ │ ├── logo_reims.png │ │ ├── logo_rennes_metropole.png │ │ ├── logo_rennes_metropole_512.png │ │ ├── logo_rivery.png │ │ ├── logo_rochefort.png │ │ ├── logo_romagnat.png │ │ ├── logo_ronchin.png │ │ ├── logo_rueil_malmaison.png │ │ ├── logo_sable_sur_sarthe.png │ │ ├── logo_sainghin_en_melantois.png │ │ ├── logo_saint_etienne_metropole.jpg │ │ ├── logo_saint_germain_la_blanche_herbe.png │ │ ├── logo_saint_jacques_de-_la_lande.png │ │ ├── logo_saint_jean_de_vedas.png │ │ ├── logo_saint_martin_de_crau.png │ │ ├── logo_saint_remy.png │ │ ├── logo_sainte_foy_les_lyon.png │ │ ├── logo_sarlat.png │ │ ├── logo_smm_aire_grenobloise.png │ │ ├── logo_smt_du_petit_cul_de_sac_marin.png │ │ ├── logo_smtc_agglomeration_clermontoise.png │ │ ├── logo_smtc_du_territoire_de_belfort.png │ │ ├── logo_sncf.png │ │ ├── logo_strasbourg_eurometropole.png │ │ ├── logo_syndicat_des_mobilites_de_touraine.png │ │ ├── logo_syndicat_pays_de_maurienne.png │ │ ├── logo_thiais.png │ │ ├── logo_thionville.png │ │ ├── logo_toulon_provence_mediterranee.png │ │ ├── logo_toulouse_metropole.png │ │ ├── logo_tours_metropole.png │ │ ├── logo_union_europeenne.png │ │ ├── logo_valence_romans.png │ │ ├── logo_valence_romans_mobilites.png │ │ ├── logo_valenciennes_metropole.png │ │ ├── logo_verson.png │ │ ├── logo_vif.png │ │ ├── logo_ville_ajaccio.png │ │ ├── logo_ville_albert.png │ │ ├── logo_ville_amboise.png │ │ ├── logo_ville_angers.png │ │ ├── logo_ville_annoeullin.png │ │ ├── logo_ville_antony.png │ │ ├── logo_ville_anzin.png │ │ ├── logo_ville_aubervilliers.png │ │ ├── logo_ville_avignon.png │ │ ├── logo_ville_bannalec.png │ │ ├── logo_ville_bar_le_duc.png │ │ ├── logo_ville_barcelonnette.png │ │ ├── logo_ville_baud.png │ │ ├── logo_ville_begles.png │ │ ├── logo_ville_belfort.png │ │ ├── logo_ville_berre_l_etang.png │ │ ├── logo_ville_bidart.png │ │ ├── logo_ville_binic_etables_sur_mer.png │ │ ├── logo_ville_boe.png │ │ ├── logo_ville_bonningues_les_calais.png │ │ ├── logo_ville_bourg_saint_maurice.png │ │ ├── logo_ville_bram.png │ │ ├── logo_ville_camon.jpg │ │ ├── logo_ville_canejan.png │ │ ├── logo_ville_castelnau_de_medoc.png │ │ ├── logo_ville_cazouls_les_beziers.png │ │ ├── logo_ville_cenon.png │ │ ├── logo_ville_cerizay.png │ │ ├── logo_ville_ceyrat.png │ │ ├── logo_ville_chalette_sur_loing.png │ │ ├── logo_ville_champagne_au_mont_d_or.png │ │ ├── logo_ville_champagne_au_mont_d_or.svg.png │ │ ├── logo_ville_chatel.png │ │ ├── logo_ville_chaumes_en_retz.png │ │ ├── logo_ville_chemille_en_anjou.png │ │ ├── logo_ville_chenove.png │ │ ├── logo_ville_chevilly_larue.png │ │ ├── logo_ville_cholet.png │ │ ├── logo_ville_clisson.png │ │ ├── logo_ville_colomiers.png │ │ ├── logo_ville_correze.png │ │ ├── logo_ville_crolles.png │ │ ├── logo_ville_dardilly.png │ │ ├── logo_ville_de_carcassonne.png │ │ ├── logo_ville_de_lille.png │ │ ├── logo_ville_de_nice.png │ │ ├── logo_ville_deauville.png │ │ ├── logo_ville_demouville.png │ │ ├── logo_ville_denain.png │ │ ├── logo_ville_dieppe.png │ │ ├── logo_ville_divonne_les_bains.png │ │ ├── logo_ville_dreux.png │ │ ├── logo_ville_eckbolsheim.png │ │ ├── logo_ville_ecommoy.png │ │ ├── logo_ville_ecully.png │ │ ├── logo_ville_elbeuf.jpg │ │ ├── logo_ville_entzheim.jpg │ │ ├── logo_ville_epernay.png │ │ ├── logo_ville_eschau.png │ │ ├── logo_ville_evian_les_bains.png │ │ ├── logo_ville_falaise.png │ │ ├── logo_ville_feignies.png │ │ ├── logo_ville_feyzin.png │ │ ├── logo_ville_fourmies.png │ │ ├── logo_ville_gap.png │ │ ├── logo_ville_geispolsheim.png │ │ ├── logo_ville_gerstheim.png │ │ ├── logo_ville_givors.png │ │ ├── logo_ville_gouesnou.png │ │ ├── logo_ville_grande_synthe.png │ │ ├── logo_ville_granville.png │ │ ├── logo_ville_gravelines.png │ │ ├── logo_ville_grigny.png │ │ ├── logo_ville_hangenbieten.png │ │ ├── logo_ville_hennebont.png │ │ ├── logo_ville_hermanville_sur_mer.png │ │ ├── logo_ville_igny.png │ │ ├── logo_ville_irigny.png │ │ ├── logo_ville_istres.png │ │ ├── logo_ville_joinville.png │ │ ├── logo_ville_joinville_le_pont.png │ │ ├── logo_ville_la_ferte_saint_aubin.png │ │ ├── logo_ville_la_motte_servolex.png │ │ ├── logo_ville_la_tour_du_pin.png │ │ ├── logo_ville_labege.png │ │ ├── logo_ville_lanester.png │ │ ├── logo_ville_larcay.png │ │ ├── logo_ville_le_bourget_du_lac.png │ │ ├── logo_ville_le_kremlin_bicetre.png │ │ ├── logo_ville_le_petit_quevilly.png │ │ ├── logo_ville_le_pont_de_beauvoisin.png │ │ ├── logo_ville_le_relecq_kerhuon.png │ │ ├── logo_ville_le_vigan.png │ │ ├── logo_ville_lempdes.png │ │ ├── logo_ville_lesquin.png │ │ ├── logo_ville_lievin.png │ │ ├── logo_ville_linselles.png │ │ ├── logo_ville_lisieux.png │ │ ├── logo_ville_lodeve.png │ │ ├── logo_ville_longuenesse.png │ │ ├── logo_ville_loos_en_gohelle.png │ │ ├── logo_ville_lyon.png │ │ ├── logo_ville_marckolsheim.png │ │ ├── logo_ville_marcq_en_baroeul.png │ │ ├── logo_ville_mennecy.png │ │ ├── logo_ville_merignac.png │ │ ├── logo_ville_montagnole.png │ │ ├── logo_ville_montbard.png │ │ ├── logo_ville_monthoiron.png │ │ ├── logo_ville_montigny_les_metz.png │ │ ├── logo_ville_montmorillon.png │ │ ├── logo_ville_mornant.png │ │ ├── logo_ville_morzine.png │ │ ├── logo_ville_noirmoutier.png │ │ ├── logo_ville_noyarey.png │ │ ├── logo_ville_oullins.png │ │ ├── logo_ville_perros_guirec.png │ │ ├── logo_ville_petit_couronne.png │ │ ├── logo_ville_pierre_benite.png │ │ ├── logo_ville_plobsheim.jpg │ │ ├── logo_ville_plougastel_daoulas.jpg │ │ ├── logo_ville_pont_sainte_maxence.png │ │ ├── logo_ville_puteaux.png │ │ ├── logo_ville_quesnoy_sur_deule.png │ │ ├── logo_ville_queven.png │ │ ├── logo_ville_roubaix.png │ │ ├── logo_ville_saint_alban_leysse.png │ │ ├── logo_ville_saint_louis.jpg │ │ ├── logo_ville_saint_omer.png │ │ ├── logo_ville_saint_pair_sur_mer.png │ │ ├── logo_ville_saint_pierre_du_mont.png │ │ ├── logo_ville_saint_pol_de_leon.png │ │ ├── logo_ville_saint_remy_de_provence.png │ │ ├── logo_ville_salon_de_provence.png │ │ ├── logo_ville_taillan_medoc.png │ │ ├── logo_ville_talant.png │ │ ├── logo_ville_talence.png │ │ ├── logo_ville_thue_et_mue.png │ │ ├── logo_ville_tournefeuille.png │ │ ├── logo_ville_trebeurden.png │ │ ├── logo_ville_trouville_sur_mer.png │ │ ├── logo_ville_unieux.jpg │ │ ├── logo_ville_val_au_perche.png │ │ ├── logo_ville_val_de_reuil.png │ │ ├── logo_ville_val_revermont.png │ │ ├── logo_ville_vannes.png │ │ ├── logo_ville_vauvert.png │ │ ├── logo_ville_vendenheim.jpg │ │ ├── logo_ville_vertou.png │ │ ├── logo_ville_ville_sur_jarnioux.png │ │ ├── logo_ville_villefranche_sur_saone.png │ │ ├── logo_ville_villeneuve_les_avignon.jpg │ │ ├── logo_ville_villers_sur_mer.png │ │ ├── logo_ville_villeurbanne.png │ │ ├── logo_ville_villiers_en_biere.png │ │ ├── logo_ville_wambrechies.png │ │ ├── logo_ville_wasselonne.png │ │ ├── logo_ville_witry_les_reims.png │ │ ├── logo_voglans.png │ │ ├── logo_wasquehal.png │ │ └── ville_vaucresson.png │ ├── logo-proconnect.svg │ ├── logo_rf.png │ ├── logo_rf.svg │ ├── mariane_no_text.svg │ ├── marianne.png │ ├── marianne.svg │ ├── partners │ │ ├── bordeaux-metropole.jpg │ │ ├── bordeaux-metropole.webp │ │ ├── cc-pays-chataigneraie.jpg │ │ ├── cc-pays-chataigneraie.webp │ │ ├── covoiturage.beta.gouv.fr.jpg │ │ ├── covoiturage.beta.gouv.fr.webp │ │ ├── demarches-simplifiees.jpg │ │ ├── demarches-simplifiees.webp │ │ ├── domifa.jpg │ │ ├── domifa.webp │ │ ├── etudiant.gouv.fr.jpg │ │ ├── etudiant.gouv.fr.webp │ │ ├── jeunes.gouv.fr.jpg │ │ ├── jeunes.gouv.fr.png │ │ ├── jeunes.gouv.fr.webp │ │ ├── mesaidesvelo.jpg │ │ ├── mesaidesvelo.webp │ │ ├── montpellier-metropole.jpg │ │ ├── montpellier-metropole.webp │ │ ├── openfisca.jpg │ │ ├── openfisca.webp │ │ ├── rdv-service-public.jpg │ │ ├── rdv-service-public.webp │ │ ├── toulon-metropole.jpg │ │ ├── toulon-metropole.webp │ │ ├── ville-aubervilliers.jpg │ │ ├── ville-aubervilliers.webp │ │ ├── ville-vannes.jpg │ │ └── ville-vannes.webp │ └── social │ │ ├── picto_facebook.png │ │ └── picto_twitter.png └── robots.txt ├── rollup ├── benefits.ts ├── generator.rollup.ts ├── institutions.ts └── sitemap.rollup.ts ├── src ├── app.vue ├── assets │ └── images │ │ ├── arrow-back.png │ │ ├── doigt.svg │ │ ├── done.svg │ │ ├── home_illustration.png │ │ └── warning.svg ├── components │ ├── 1j1s │ │ ├── footer-1j1s.vue │ │ ├── header-1j1s.vue │ │ └── navigation-1j1s.vue │ ├── action-buttons.vue │ ├── alert-revenir-plus-tard.vue │ ├── bandeau-demo.vue │ ├── base-layout.vue │ ├── benefit-cta-link.vue │ ├── benefit-cta.vue │ ├── benefit-preview.vue │ ├── benefits-group-preview.vue │ ├── benefits-list.vue │ ├── buttons │ │ ├── analytic-router-link.vue │ │ ├── back-button.vue │ │ ├── home-simulation-group-buttons.vue │ │ └── send-recap-button.vue │ ├── commune-benefits.vue │ ├── droit-estime.vue │ ├── droit-header.vue │ ├── droits-contributions.vue │ ├── droits-details-lieux.vue │ ├── droits-details.vue │ ├── en-savoir-plus-content.vue │ ├── en-savoir-plus.vue │ ├── error-block.vue │ ├── error-save-block.vue │ ├── feedback.vue │ ├── home │ │ ├── benefits-showcase-section.vue │ │ ├── features-section.vue │ │ ├── hero-section.vue │ │ ├── how-it-works-section.vue │ │ └── partners-section.vue │ ├── iframe-layout.vue │ ├── input-date.vue │ ├── input-depcom.vue │ ├── input-error.vue │ ├── input-month.vue │ ├── input-number.vue │ ├── lieu-informations.vue │ ├── lieu-light.vue │ ├── lieu.vue │ ├── loading-modal.vue │ ├── matomo-opt-out.vue │ ├── mes-aides-layout.vue │ ├── mes-aides │ │ ├── header-mes-aides.vue │ │ └── navigation-mes-aides.vue │ ├── modals │ │ ├── errors-email-and-sms-modal.vue │ │ └── recap-email-and-sms-modal.vue │ ├── month-input.vue │ ├── month-label.vue │ ├── multiple-answers.vue │ ├── mutualized-step-title.vue │ ├── offline-results.vue │ ├── progress-bar.vue │ ├── progress.vue │ ├── recap-email-and-sms-form.vue │ ├── ressource │ │ ├── exploitant-agricole.vue │ │ ├── micro-entreprise.vue │ │ ├── montants.vue │ │ ├── profession-liberale.vue │ │ └── types.vue │ ├── resultat-inattendu │ │ ├── aide-logement.vue │ │ ├── contrat-engagement-jeune.vue │ │ ├── ppa.vue │ │ └── year-minus-two.vue │ ├── start-simulation-cta.vue │ ├── step-view.vue │ ├── summary.vue │ ├── support │ │ ├── copy-button.vue │ │ ├── simulation-search.vue │ │ └── survey-email-search.vue │ ├── titre-chapitre.vue │ ├── trouver-interlocuteur.vue │ ├── warning-message.vue │ └── yes-no-question.vue ├── composables │ ├── individu.ts │ ├── progress.ts │ ├── use-benefits.ts │ ├── use-followup-survey-data.ts │ ├── use-lieux.ts │ └── use-voluntary-organisations.ts ├── context │ ├── base.ts │ ├── index.ts │ └── mes-aides.ts ├── directives │ ├── analytics.ts │ ├── mail.ts │ └── select-on-click.ts ├── fonts │ ├── Marianne-Bold.woff2 │ ├── Marianne-ExtraBold.woff2 │ ├── Marianne-Regular.woff2 │ ├── WorkSans-VariableFont_wght.ttf │ └── remixicon.woff2 ├── lib │ ├── benefits.ts │ ├── commune.ts │ ├── hint.ts │ ├── mock-results.ts │ ├── nationality.ts │ ├── simulation.ts │ ├── statistics-service │ │ ├── matomo.ts │ │ ├── recorder.ts │ │ └── shared.ts │ ├── storage-service.ts │ ├── transition.ts │ └── warnings.ts ├── main.ts ├── mixins │ ├── benefit-image-mixin.ts │ ├── contact-email.ts │ ├── layout-route-mixin.ts │ ├── ressource-processor.ts │ ├── statistics.ts │ └── tns-ressource-updator.ts ├── plugins │ ├── ab-testing-service.ts │ ├── mails.ts │ ├── state-service.ts │ ├── theme-service.ts │ └── tracker.ts ├── router.ts ├── shims-vue.d.ts ├── stores │ ├── iframe.ts │ ├── index.ts │ ├── results.ts │ └── theme.ts ├── styles │ ├── aides-jeunes.css │ ├── partials │ │ ├── desktop │ │ │ └── _iframe.scss │ │ └── mobile │ │ │ └── _iframe.scss │ └── themes │ │ ├── bordeaux-metropole.css │ │ ├── default-dsfr.css │ │ ├── light-blue.css │ │ └── soliguide.css ├── types │ └── css.d.ts └── views │ ├── accessibilite.vue │ ├── accompagnement │ └── accompagnement.vue │ ├── aide.vue │ ├── cgu.vue │ ├── confidentialite.vue │ ├── contact.vue │ ├── faq.vue │ ├── france-connect-callback.vue │ ├── home.vue │ ├── iframe.vue │ ├── liste-aides.vue │ ├── mentions-legales.vue │ ├── parcours.vue │ ├── preparer-rentree-etudiante-logement-budget-aides.vue │ ├── preremplissage.vue │ ├── preview.vue │ ├── redirection.vue │ ├── simulation.vue │ ├── simulation │ ├── Menage │ │ └── loyer.vue │ ├── Ressources │ │ ├── enfants.vue │ │ ├── fiscales.vue │ │ ├── montants.vue │ │ ├── patrimoine.vue │ │ └── types.vue │ ├── depcom-step.vue │ ├── enfants.vue │ ├── famille.vue │ ├── individu.vue │ ├── menage.vue │ ├── mutualized-step.vue │ ├── recapitulatif.vue │ ├── resultats │ │ ├── benefits-list.vue │ │ ├── lieu-informations.vue │ │ ├── lieux-generiques.vue │ │ ├── resultat-inattendu.vue │ │ ├── resultats-details.vue │ │ ├── resultats-wrapper.vue │ │ └── resultats.vue │ └── revenir-plus-tard.vue │ ├── simulez-aides-mobilite-internationale-preparez-depart-sereinement.vue │ ├── stats.vue │ ├── suivi.vue │ └── villes │ ├── bordeaux.vue │ ├── lille.vue │ ├── lyon.vue │ ├── marseille.vue │ ├── montpellier.vue │ ├── nantes.vue │ ├── nice.vue │ ├── paris.vue │ ├── rouen.vue │ ├── strasbourg.vue │ └── toulouse.vue ├── tests ├── __mocks__ │ └── axios.js ├── integration │ ├── benefits-description.spec.ts │ ├── benefits-geographical-constraint-consistency.spec.ts │ ├── caf-benefits.spec.ts │ ├── schema-validation-benefits-javascript.spec.ts │ ├── schema-validation-benefits-openfisca.spec.ts │ ├── schema-validation-config.spec.ts │ ├── schema-validation-institutions.spec.ts │ ├── test-benefit-generators.spec.ts │ ├── test-benefit-ids.spec.ts │ ├── test-filename.spec.ts │ └── test-institution-ids.spec.ts └── unit │ ├── backend │ ├── followup-factory.spec.ts │ ├── migration-to-v15.spec.ts │ ├── outils.spec.ts │ ├── survey.spec.ts │ └── webhook.spec.ts │ ├── components │ ├── input-date.spec.ts │ ├── input-number.spec.ts │ └── types.spec.ts │ ├── lib │ ├── index.spec.ts │ └── messaging-sms.spec.ts │ ├── openfisca │ ├── bulk.spec.ts │ ├── dispatch-individuals.spec.ts │ ├── index.spec.ts │ ├── individu.spec.ts │ ├── past-resources-proxy.spec.ts │ ├── property-move.spec.ts │ └── test.spec.ts │ ├── other │ ├── aides-velo-benefit-generator.spec.ts │ ├── answer.spec.ts │ ├── benefits-generate.spec.ts │ ├── commune.spec.ts │ ├── compute-aides-velo-benefits.spec.ts │ ├── compute-aides.spec.ts │ ├── compute-javascript-benefits.spec.ts │ ├── definitions.spec.ts │ ├── etablissements.spec.ts │ ├── geographical-benefit-count.spec.ts │ ├── incitations-covoiturage-benefit-generator.spec.ts │ ├── round.spec.ts │ ├── situation.spec.ts │ └── utils.spec.ts │ ├── tools │ ├── cleaner.spec.ts │ ├── existing.spec.ts │ ├── new.spec.ts │ └── utils.ts │ └── views │ └── fiscales.spec.ts ├── tools ├── add-milestone-to-merged-prs.ts ├── check-links-validity.ts ├── cleaner.ts ├── create-temp-smtp-server.ts ├── distance-communes.js ├── download-incitations-covoiturage-generate-missing-institutions.ts ├── email-sending-tool.ts ├── email-summary-tool.ts ├── evaluate-benefits.ts ├── generate-missing-institutions-aides-velo.ts ├── generate-missing-institutions.ts ├── geographical-benefits-details.ts ├── get-all-steps.ts ├── get-latest-simulation-ids.ts ├── iframe-build-control.sh ├── institutions-logo-check.ts ├── mjml.ts ├── mongo-query.ts ├── sms-sending-tool.ts ├── test-benefits-geographical-constraint-consistency.ts ├── test-definition-periods.ts └── views │ ├── index.html │ └── institutions.html ├── tsconfig.json ├── tsconfig.server.json ├── vite.config.ts └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.e2e: -------------------------------------------------------------------------------- 1 | SMTP_REQUIRE_TLS=false 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.env.example -------------------------------------------------------------------------------- /.env.iframe_build_control: -------------------------------------------------------------------------------- 1 | MES_AIDES_ROOT_URL=https://mes-aides.1jeune1solution.beta.gouv.fr 2 | -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/has-file-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.github/has-file-changes.sh -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/.prettierignore -------------------------------------------------------------------------------- /.talismanrc: -------------------------------------------------------------------------------- 1 | scopeconfig: 2 | - scope: node 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/README.md -------------------------------------------------------------------------------- /backend/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | node: true 3 | -------------------------------------------------------------------------------- /backend/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/config/index.ts -------------------------------------------------------------------------------- /backend/config/mongoose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/config/mongoose.ts -------------------------------------------------------------------------------- /backend/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/configure.ts -------------------------------------------------------------------------------- /backend/controllers/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/data.ts -------------------------------------------------------------------------------- /backend/controllers/emails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/emails.ts -------------------------------------------------------------------------------- /backend/controllers/followups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/followups.ts -------------------------------------------------------------------------------- /backend/controllers/france-connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/france-connect.ts -------------------------------------------------------------------------------- /backend/controllers/moncomptepro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/moncomptepro.ts -------------------------------------------------------------------------------- /backend/controllers/openfisca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/openfisca.ts -------------------------------------------------------------------------------- /backend/controllers/outils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/outils.ts -------------------------------------------------------------------------------- /backend/controllers/simulation-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/simulation-demo.ts -------------------------------------------------------------------------------- /backend/controllers/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/simulation.ts -------------------------------------------------------------------------------- /backend/controllers/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/controllers/webhook.ts -------------------------------------------------------------------------------- /backend/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/dev.ts -------------------------------------------------------------------------------- /backend/lib/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/definitions.ts -------------------------------------------------------------------------------- /backend/lib/followup-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/followup-factory.ts -------------------------------------------------------------------------------- /backend/lib/france-connect-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/france-connect-service.ts -------------------------------------------------------------------------------- /backend/lib/mes-aides/distance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/mes-aides/distance.ts -------------------------------------------------------------------------------- /backend/lib/mes-aides/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/mes-aides/emails/index.ts -------------------------------------------------------------------------------- /backend/lib/mes-aides/emails/templates/1jeune1solution/style.yaml: -------------------------------------------------------------------------------- 1 | ctaBackgroundColor: "#5770be" 2 | -------------------------------------------------------------------------------- /backend/lib/messaging/sending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/messaging/sending.ts -------------------------------------------------------------------------------- /backend/lib/migrations/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/migrations/apply.ts -------------------------------------------------------------------------------- /backend/lib/migrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/migrations/index.ts -------------------------------------------------------------------------------- /backend/lib/migrations/looper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/migrations/looper.sh -------------------------------------------------------------------------------- /backend/lib/mongo-connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/mongo-connector.ts -------------------------------------------------------------------------------- /backend/lib/openfisca/bulk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/openfisca/bulk/index.ts -------------------------------------------------------------------------------- /backend/lib/openfisca/getter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/openfisca/getter.ts -------------------------------------------------------------------------------- /backend/lib/openfisca/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/openfisca/index.ts -------------------------------------------------------------------------------- /backend/lib/openfisca/mapping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/openfisca/mapping/index.ts -------------------------------------------------------------------------------- /backend/lib/openfisca/mapping/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/openfisca/mapping/utils.ts -------------------------------------------------------------------------------- /backend/lib/openfisca/parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/openfisca/parameters.ts -------------------------------------------------------------------------------- /backend/lib/openfisca/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/openfisca/test.ts -------------------------------------------------------------------------------- /backend/lib/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/simulation.ts -------------------------------------------------------------------------------- /backend/lib/smtp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/smtp.ts -------------------------------------------------------------------------------- /backend/lib/stats/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/stats/cli.ts -------------------------------------------------------------------------------- /backend/lib/stats/funnel-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/stats/funnel-service.ts -------------------------------------------------------------------------------- /backend/lib/stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/stats/index.ts -------------------------------------------------------------------------------- /backend/lib/stats/institutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/stats/institutions.ts -------------------------------------------------------------------------------- /backend/lib/stats/mongodb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/stats/mongodb.ts -------------------------------------------------------------------------------- /backend/lib/stats/piwik.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/stats/piwik.ts -------------------------------------------------------------------------------- /backend/lib/teleservices/pnds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/teleservices/pnds.ts -------------------------------------------------------------------------------- /backend/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/lib/utils.ts -------------------------------------------------------------------------------- /backend/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/mock.ts -------------------------------------------------------------------------------- /backend/models/followup-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/models/followup-schema.ts -------------------------------------------------------------------------------- /backend/models/followup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/models/followup.ts -------------------------------------------------------------------------------- /backend/models/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/models/simulation.ts -------------------------------------------------------------------------------- /backend/models/survey-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/models/survey-schema.ts -------------------------------------------------------------------------------- /backend/routes-loader/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes-loader/api.ts -------------------------------------------------------------------------------- /backend/routes-loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes-loader/index.ts -------------------------------------------------------------------------------- /backend/routes/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/data.ts -------------------------------------------------------------------------------- /backend/routes/emails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/emails.ts -------------------------------------------------------------------------------- /backend/routes/followup-redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/followup-redirect.ts -------------------------------------------------------------------------------- /backend/routes/followups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/followups.ts -------------------------------------------------------------------------------- /backend/routes/france-connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/france-connect.ts -------------------------------------------------------------------------------- /backend/routes/legacy-sms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/legacy-sms.ts -------------------------------------------------------------------------------- /backend/routes/moncomptepro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/moncomptepro.ts -------------------------------------------------------------------------------- /backend/routes/openfisca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/openfisca.ts -------------------------------------------------------------------------------- /backend/routes/outils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/outils.ts -------------------------------------------------------------------------------- /backend/routes/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/proxy.ts -------------------------------------------------------------------------------- /backend/routes/short.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/short.ts -------------------------------------------------------------------------------- /backend/routes/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/simulation.ts -------------------------------------------------------------------------------- /backend/routes/support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/support.ts -------------------------------------------------------------------------------- /backend/routes/teleservices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/teleservices.ts -------------------------------------------------------------------------------- /backend/routes/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/routes/webhook.ts -------------------------------------------------------------------------------- /backend/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/server.ts -------------------------------------------------------------------------------- /backend/types/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/types/config.d.ts -------------------------------------------------------------------------------- /backend/types/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/types/express.d.ts -------------------------------------------------------------------------------- /backend/types/models.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/types/models.d.ts -------------------------------------------------------------------------------- /backend/types/openfisca.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/types/openfisca.d.ts -------------------------------------------------------------------------------- /backend/types/question.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/types/question.d.ts -------------------------------------------------------------------------------- /backend/types/rdv-aide-numerique.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/types/rdv-aide-numerique.d.ts -------------------------------------------------------------------------------- /backend/types/stats.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/backend/types/stats.d.ts -------------------------------------------------------------------------------- /contribuer/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/.eslintrc.js -------------------------------------------------------------------------------- /contribuer/.prettierignore: -------------------------------------------------------------------------------- 1 | out 2 | .next 3 | -------------------------------------------------------------------------------- /contribuer/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/next.config.js -------------------------------------------------------------------------------- /contribuer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/package-lock.json -------------------------------------------------------------------------------- /contribuer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/package.json -------------------------------------------------------------------------------- /contribuer/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/pages/_app.js -------------------------------------------------------------------------------- /contribuer/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/pages/_document.js -------------------------------------------------------------------------------- /contribuer/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/pages/index.js -------------------------------------------------------------------------------- /contribuer/public/admin/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/admin/admin.css -------------------------------------------------------------------------------- /contribuer/public/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/admin/config.yml -------------------------------------------------------------------------------- /contribuer/public/admin/description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/admin/description.js -------------------------------------------------------------------------------- /contribuer/public/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/admin/index.html -------------------------------------------------------------------------------- /contribuer/public/admin/institution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/admin/institution.js -------------------------------------------------------------------------------- /contribuer/public/admin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/admin/main.js -------------------------------------------------------------------------------- /contribuer/public/css/institution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/css/institution.css -------------------------------------------------------------------------------- /contribuer/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/public/css/style.css -------------------------------------------------------------------------------- /contribuer/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/contribuer/styles/main.css -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/base.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/e2e/base.cy.js -------------------------------------------------------------------------------- /cypress/e2e/family.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/e2e/family.cy.js -------------------------------------------------------------------------------- /cypress/e2e/handicap.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/e2e/handicap.cy.js -------------------------------------------------------------------------------- /cypress/e2e/patrimoine.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/e2e/patrimoine.cy.js -------------------------------------------------------------------------------- /cypress/e2e/student.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/e2e/student.cy.js -------------------------------------------------------------------------------- /cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/package.json -------------------------------------------------------------------------------- /cypress/utils/come-back-later.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/come-back-later.js -------------------------------------------------------------------------------- /cypress/utils/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/controllers.js -------------------------------------------------------------------------------- /cypress/utils/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/form.js -------------------------------------------------------------------------------- /cypress/utils/foyer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/foyer.js -------------------------------------------------------------------------------- /cypress/utils/logement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/logement.js -------------------------------------------------------------------------------- /cypress/utils/navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/navigate.js -------------------------------------------------------------------------------- /cypress/utils/profil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/profil.js -------------------------------------------------------------------------------- /cypress/utils/projet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/projet.js -------------------------------------------------------------------------------- /cypress/utils/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/results.js -------------------------------------------------------------------------------- /cypress/utils/revenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/revenu.js -------------------------------------------------------------------------------- /cypress/utils/smtp-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/cypress/utils/smtp-proxy.js -------------------------------------------------------------------------------- /data/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/all.ts -------------------------------------------------------------------------------- /data/benefits/aides-velo-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/aides-velo-generator.ts -------------------------------------------------------------------------------- /data/benefits/dynamic/apa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/dynamic/apa.ts -------------------------------------------------------------------------------- /data/benefits/dynamic/fsl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/dynamic/fsl.ts -------------------------------------------------------------------------------- /data/benefits/openfisca/aah.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/aah.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/aeeh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/aeeh.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/af.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/af.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/agepi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/agepi.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/ars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/ars.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/asf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/asf.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/asi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/asi.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/aspa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/aspa.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/ass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/ass.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/caah.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/caah.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/cf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/cf.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/paje_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/paje_base.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/pass_colo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/pass_colo.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/pass_sport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/pass_sport.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/ppa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/ppa.yml -------------------------------------------------------------------------------- /data/benefits/openfisca/rsa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/benefits/openfisca/rsa.yml -------------------------------------------------------------------------------- /data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/index.ts -------------------------------------------------------------------------------- /data/institution_types/autre.yml: -------------------------------------------------------------------------------- 1 | name: Autre 2 | -------------------------------------------------------------------------------- /data/institution_types/caf.yml: -------------------------------------------------------------------------------- 1 | name: CAF locale 2 | -------------------------------------------------------------------------------- /data/institution_types/commune.yml: -------------------------------------------------------------------------------- 1 | name: Commune 2 | -------------------------------------------------------------------------------- /data/institution_types/departement.yml: -------------------------------------------------------------------------------- 1 | name: Département 2 | -------------------------------------------------------------------------------- /data/institution_types/epci.yml: -------------------------------------------------------------------------------- 1 | name: EPCI (Métropole, inter-communauté, etc.) 2 | -------------------------------------------------------------------------------- /data/institution_types/europeen.yml: -------------------------------------------------------------------------------- 1 | name: europeen 2 | -------------------------------------------------------------------------------- /data/institution_types/msa.yml: -------------------------------------------------------------------------------- 1 | name: MSA locale 2 | -------------------------------------------------------------------------------- /data/institution_types/national.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institution_types/national.yml -------------------------------------------------------------------------------- /data/institution_types/region.yml: -------------------------------------------------------------------------------- 1 | name: Région 2 | -------------------------------------------------------------------------------- /data/institutions/action_logement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/action_logement.yml -------------------------------------------------------------------------------- /data/institutions/artois-mobilites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/artois-mobilites.yml -------------------------------------------------------------------------------- /data/institutions/atmb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/atmb.yml -------------------------------------------------------------------------------- /data/institutions/banque_de_france.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/banque_de_france.yml -------------------------------------------------------------------------------- /data/institutions/ca_arche_agglo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_arche_agglo.yml -------------------------------------------------------------------------------- /data/institutions/ca_arlysere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_arlysere.yml -------------------------------------------------------------------------------- /data/institutions/ca_dagen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_dagen.yml -------------------------------------------------------------------------------- /data/institutions/ca_de_cambrai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_de_cambrai.yml -------------------------------------------------------------------------------- /data/institutions/ca_de_lauxerrois.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_de_lauxerrois.yml -------------------------------------------------------------------------------- /data/institutions/ca_de_saintes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_de_saintes.yml -------------------------------------------------------------------------------- /data/institutions/ca_de_vesoul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_de_vesoul.yml -------------------------------------------------------------------------------- /data/institutions/ca_du_beauvaisis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_du_beauvaisis.yml -------------------------------------------------------------------------------- /data/institutions/ca_du_libournais.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_du_libournais.yml -------------------------------------------------------------------------------- /data/institutions/ca_du_niortais.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_du_niortais.yml -------------------------------------------------------------------------------- /data/institutions/ca_flers_agglo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_flers_agglo.yml -------------------------------------------------------------------------------- /data/institutions/ca_grand_lac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_grand_lac.yml -------------------------------------------------------------------------------- /data/institutions/ca_grand_verdun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_grand_verdun.yml -------------------------------------------------------------------------------- /data/institutions/ca_lunel_agglo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_lunel_agglo.yml -------------------------------------------------------------------------------- /data/institutions/ca_mauges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_mauges.yml -------------------------------------------------------------------------------- /data/institutions/ca_pays_ajaccien.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_pays_ajaccien.yml -------------------------------------------------------------------------------- /data/institutions/ca_pays_de_gex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_pays_de_gex.yml -------------------------------------------------------------------------------- /data/institutions/ca_pays_de_l_or.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_pays_de_l_or.yml -------------------------------------------------------------------------------- /data/institutions/ca_seine_eure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_seine_eure.yml -------------------------------------------------------------------------------- /data/institutions/ca_tulle_agglo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_tulle_agglo.yml -------------------------------------------------------------------------------- /data/institutions/ca_val_parisis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ca_val_parisis.yml -------------------------------------------------------------------------------- /data/institutions/caf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf.yml -------------------------------------------------------------------------------- /data/institutions/caf_ain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_ain.yml -------------------------------------------------------------------------------- /data/institutions/caf_aisne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_aisne.yml -------------------------------------------------------------------------------- /data/institutions/caf_allier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_allier.yml -------------------------------------------------------------------------------- /data/institutions/caf_ardeche.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_ardeche.yml -------------------------------------------------------------------------------- /data/institutions/caf_ardennes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_ardennes.yml -------------------------------------------------------------------------------- /data/institutions/caf_ariege.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_ariege.yml -------------------------------------------------------------------------------- /data/institutions/caf_aube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_aube.yml -------------------------------------------------------------------------------- /data/institutions/caf_aude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_aude.yml -------------------------------------------------------------------------------- /data/institutions/caf_aveyron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_aveyron.yml -------------------------------------------------------------------------------- /data/institutions/caf_bas_rhin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_bas_rhin.yml -------------------------------------------------------------------------------- /data/institutions/caf_calvados.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_calvados.yml -------------------------------------------------------------------------------- /data/institutions/caf_cantal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_cantal.yml -------------------------------------------------------------------------------- /data/institutions/caf_charente.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_charente.yml -------------------------------------------------------------------------------- /data/institutions/caf_cher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_cher.yml -------------------------------------------------------------------------------- /data/institutions/caf_correze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_correze.yml -------------------------------------------------------------------------------- /data/institutions/caf_corse_du_sud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_corse_du_sud.yml -------------------------------------------------------------------------------- /data/institutions/caf_cote_or.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_cote_or.yml -------------------------------------------------------------------------------- /data/institutions/caf_cotes_armor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_cotes_armor.yml -------------------------------------------------------------------------------- /data/institutions/caf_creuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_creuse.yml -------------------------------------------------------------------------------- /data/institutions/caf_deux_sevres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_deux_sevres.yml -------------------------------------------------------------------------------- /data/institutions/caf_dordogne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_dordogne.yml -------------------------------------------------------------------------------- /data/institutions/caf_doubs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_doubs.yml -------------------------------------------------------------------------------- /data/institutions/caf_drome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_drome.yml -------------------------------------------------------------------------------- /data/institutions/caf_essonne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_essonne.yml -------------------------------------------------------------------------------- /data/institutions/caf_eure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_eure.yml -------------------------------------------------------------------------------- /data/institutions/caf_eure_et_loir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_eure_et_loir.yml -------------------------------------------------------------------------------- /data/institutions/caf_finistere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_finistere.yml -------------------------------------------------------------------------------- /data/institutions/caf_gard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_gard.yml -------------------------------------------------------------------------------- /data/institutions/caf_gers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_gers.yml -------------------------------------------------------------------------------- /data/institutions/caf_gironde.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_gironde.yml -------------------------------------------------------------------------------- /data/institutions/caf_guadeloupe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_guadeloupe.yml -------------------------------------------------------------------------------- /data/institutions/caf_guyane.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_guyane.yml -------------------------------------------------------------------------------- /data/institutions/caf_haut_rhin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_haut_rhin.yml -------------------------------------------------------------------------------- /data/institutions/caf_haute_corse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_haute_corse.yml -------------------------------------------------------------------------------- /data/institutions/caf_haute_loire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_haute_loire.yml -------------------------------------------------------------------------------- /data/institutions/caf_haute_marne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_haute_marne.yml -------------------------------------------------------------------------------- /data/institutions/caf_haute_saone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_haute_saone.yml -------------------------------------------------------------------------------- /data/institutions/caf_haute_savoie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_haute_savoie.yml -------------------------------------------------------------------------------- /data/institutions/caf_haute_vienne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_haute_vienne.yml -------------------------------------------------------------------------------- /data/institutions/caf_hautes_alpes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_hautes_alpes.yml -------------------------------------------------------------------------------- /data/institutions/caf_herault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_herault.yml -------------------------------------------------------------------------------- /data/institutions/caf_indre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_indre.yml -------------------------------------------------------------------------------- /data/institutions/caf_isere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_isere.yml -------------------------------------------------------------------------------- /data/institutions/caf_jura.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_jura.yml -------------------------------------------------------------------------------- /data/institutions/caf_la_reunion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_la_reunion.yml -------------------------------------------------------------------------------- /data/institutions/caf_landes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_landes.yml -------------------------------------------------------------------------------- /data/institutions/caf_loir_et_cher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_loir_et_cher.yml -------------------------------------------------------------------------------- /data/institutions/caf_loire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_loire.yml -------------------------------------------------------------------------------- /data/institutions/caf_loiret.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_loiret.yml -------------------------------------------------------------------------------- /data/institutions/caf_lot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_lot.yml -------------------------------------------------------------------------------- /data/institutions/caf_lozere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_lozere.yml -------------------------------------------------------------------------------- /data/institutions/caf_manche.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_manche.yml -------------------------------------------------------------------------------- /data/institutions/caf_marne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_marne.yml -------------------------------------------------------------------------------- /data/institutions/caf_martinique.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_martinique.yml -------------------------------------------------------------------------------- /data/institutions/caf_mayenne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_mayenne.yml -------------------------------------------------------------------------------- /data/institutions/caf_mayotte.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_mayotte.yml -------------------------------------------------------------------------------- /data/institutions/caf_meuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_meuse.yml -------------------------------------------------------------------------------- /data/institutions/caf_morbihan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_morbihan.yml -------------------------------------------------------------------------------- /data/institutions/caf_moselle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_moselle.yml -------------------------------------------------------------------------------- /data/institutions/caf_nievre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_nievre.yml -------------------------------------------------------------------------------- /data/institutions/caf_nord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_nord.yml -------------------------------------------------------------------------------- /data/institutions/caf_oise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_oise.yml -------------------------------------------------------------------------------- /data/institutions/caf_orne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_orne.yml -------------------------------------------------------------------------------- /data/institutions/caf_paris.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_paris.yml -------------------------------------------------------------------------------- /data/institutions/caf_puy_de_dome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_puy_de_dome.yml -------------------------------------------------------------------------------- /data/institutions/caf_rhone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_rhone.yml -------------------------------------------------------------------------------- /data/institutions/caf_sarthe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_sarthe.yml -------------------------------------------------------------------------------- /data/institutions/caf_savoie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_savoie.yml -------------------------------------------------------------------------------- /data/institutions/caf_somme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_somme.yml -------------------------------------------------------------------------------- /data/institutions/caf_tarn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_tarn.yml -------------------------------------------------------------------------------- /data/institutions/caf_val_de_marne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_val_de_marne.yml -------------------------------------------------------------------------------- /data/institutions/caf_val_oise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_val_oise.yml -------------------------------------------------------------------------------- /data/institutions/caf_var.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_var.yml -------------------------------------------------------------------------------- /data/institutions/caf_vaucluse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_vaucluse.yml -------------------------------------------------------------------------------- /data/institutions/caf_vendee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_vendee.yml -------------------------------------------------------------------------------- /data/institutions/caf_vienne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_vienne.yml -------------------------------------------------------------------------------- /data/institutions/caf_vosges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_vosges.yml -------------------------------------------------------------------------------- /data/institutions/caf_yonne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_yonne.yml -------------------------------------------------------------------------------- /data/institutions/caf_yvelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/caf_yvelines.yml -------------------------------------------------------------------------------- /data/institutions/cc-sud-herault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc-sud-herault.yml -------------------------------------------------------------------------------- /data/institutions/cc_bievre_isere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_bievre_isere.yml -------------------------------------------------------------------------------- /data/institutions/cc_bugey_sud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_bugey_sud.yml -------------------------------------------------------------------------------- /data/institutions/cc_de_lile_de_re.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_de_lile_de_re.yml -------------------------------------------------------------------------------- /data/institutions/cc_de_saulieu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_de_saulieu.yml -------------------------------------------------------------------------------- /data/institutions/cc_des_7_vallees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_des_7_vallees.yml -------------------------------------------------------------------------------- /data/institutions/cc_des_coevrons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_des_coevrons.yml -------------------------------------------------------------------------------- /data/institutions/cc_des_sablons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_des_sablons.yml -------------------------------------------------------------------------------- /data/institutions/cc_du_grand_roye.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_du_grand_roye.yml -------------------------------------------------------------------------------- /data/institutions/cc_du_haut_bearn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_du_haut_bearn.yml -------------------------------------------------------------------------------- /data/institutions/cc_du_saulnois.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_du_saulnois.yml -------------------------------------------------------------------------------- /data/institutions/cc_du_sud_artois.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_du_sud_artois.yml -------------------------------------------------------------------------------- /data/institutions/cc_du_sud_messin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_du_sud_messin.yml -------------------------------------------------------------------------------- /data/institutions/cc_ernee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_ernee.yml -------------------------------------------------------------------------------- /data/institutions/cc_fier_et_usses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_fier_et_usses.yml -------------------------------------------------------------------------------- /data/institutions/cc_flandre_lys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_flandre_lys.yml -------------------------------------------------------------------------------- /data/institutions/cc_genevois.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_genevois.yml -------------------------------------------------------------------------------- /data/institutions/cc_giennoises.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_giennoises.yml -------------------------------------------------------------------------------- /data/institutions/cc_grand_lieu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_grand_lieu.yml -------------------------------------------------------------------------------- /data/institutions/cc_loue_lison.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_loue_lison.yml -------------------------------------------------------------------------------- /data/institutions/cc_lyons_andelle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_lyons_andelle.yml -------------------------------------------------------------------------------- /data/institutions/cc_pays_d_evian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_pays_d_evian.yml -------------------------------------------------------------------------------- /data/institutions/cc_pays_flechois.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_pays_flechois.yml -------------------------------------------------------------------------------- /data/institutions/cc_selestat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_selestat.yml -------------------------------------------------------------------------------- /data/institutions/cc_sud_estuaire.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_sud_estuaire.yml -------------------------------------------------------------------------------- /data/institutions/cc_sud_nivernais.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_sud_nivernais.yml -------------------------------------------------------------------------------- /data/institutions/cc_sundgau.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_sundgau.yml -------------------------------------------------------------------------------- /data/institutions/cc_terre_dauge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_terre_dauge.yml -------------------------------------------------------------------------------- /data/institutions/cc_terre_deau.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_terre_deau.yml -------------------------------------------------------------------------------- /data/institutions/cc_thelloise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_thelloise.yml -------------------------------------------------------------------------------- /data/institutions/cc_val_guiers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_val_guiers.yml -------------------------------------------------------------------------------- /data/institutions/cc_val_vanoise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_val_vanoise.yml -------------------------------------------------------------------------------- /data/institutions/cc_yenne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cc_yenne.yml -------------------------------------------------------------------------------- /data/institutions/cu_caen_la_mer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cu_caen_la_mer.yml -------------------------------------------------------------------------------- /data/institutions/cu_dalencon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cu_dalencon.yml -------------------------------------------------------------------------------- /data/institutions/cu_dunkerque.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/cu_dunkerque.yml -------------------------------------------------------------------------------- /data/institutions/departement_ain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_ain.yml -------------------------------------------------------------------------------- /data/institutions/departement_aube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_aube.yml -------------------------------------------------------------------------------- /data/institutions/departement_aude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_aude.yml -------------------------------------------------------------------------------- /data/institutions/departement_cher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_cher.yml -------------------------------------------------------------------------------- /data/institutions/departement_gard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_gard.yml -------------------------------------------------------------------------------- /data/institutions/departement_jura.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_jura.yml -------------------------------------------------------------------------------- /data/institutions/departement_lot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_lot.yml -------------------------------------------------------------------------------- /data/institutions/departement_nord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_nord.yml -------------------------------------------------------------------------------- /data/institutions/departement_oise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_oise.yml -------------------------------------------------------------------------------- /data/institutions/departement_orne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_orne.yml -------------------------------------------------------------------------------- /data/institutions/departement_var.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departement_var.yml -------------------------------------------------------------------------------- /data/institutions/departements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/departements.yml -------------------------------------------------------------------------------- /data/institutions/ehop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ehop.yml -------------------------------------------------------------------------------- /data/institutions/etat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/etat.yml -------------------------------------------------------------------------------- /data/institutions/france_travail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/france_travail.yml -------------------------------------------------------------------------------- /data/institutions/grand_est.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/grand_est.yml -------------------------------------------------------------------------------- /data/institutions/guadeloupe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/guadeloupe.yml -------------------------------------------------------------------------------- /data/institutions/guyane.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/guyane.yml -------------------------------------------------------------------------------- /data/institutions/hauts_de_france.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/hauts_de_france.yml -------------------------------------------------------------------------------- /data/institutions/martinique.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/martinique.yml -------------------------------------------------------------------------------- /data/institutions/metropole_savoie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/metropole_savoie.yml -------------------------------------------------------------------------------- /data/institutions/msa_armorique.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/msa_armorique.yml -------------------------------------------------------------------------------- /data/institutions/nantes_metropole.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/nantes_metropole.yml -------------------------------------------------------------------------------- /data/institutions/paris.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/paris.yml -------------------------------------------------------------------------------- /data/institutions/pro_btp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/pro_btp.yml -------------------------------------------------------------------------------- /data/institutions/region_bretagne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/region_bretagne.yml -------------------------------------------------------------------------------- /data/institutions/region_corse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/region_corse.yml -------------------------------------------------------------------------------- /data/institutions/region_normandie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/region_normandie.yml -------------------------------------------------------------------------------- /data/institutions/region_occitanie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/region_occitanie.yml -------------------------------------------------------------------------------- /data/institutions/rennes_metropole.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/rennes_metropole.yml -------------------------------------------------------------------------------- /data/institutions/sm_de_touraine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/sm_de_touraine.yml -------------------------------------------------------------------------------- /data/institutions/sncf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/sncf.yml -------------------------------------------------------------------------------- /data/institutions/union_europeenne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/union_europeenne.yml -------------------------------------------------------------------------------- /data/institutions/ville-angers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville-angers.yml -------------------------------------------------------------------------------- /data/institutions/ville-de-roubaix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville-de-roubaix.yml -------------------------------------------------------------------------------- /data/institutions/ville-de-vannes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville-de-vannes.yml -------------------------------------------------------------------------------- /data/institutions/ville_ajaccio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_ajaccio.yml -------------------------------------------------------------------------------- /data/institutions/ville_albert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_albert.yml -------------------------------------------------------------------------------- /data/institutions/ville_amboise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_amboise.yml -------------------------------------------------------------------------------- /data/institutions/ville_annoeullin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_annoeullin.yml -------------------------------------------------------------------------------- /data/institutions/ville_antony.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_antony.yml -------------------------------------------------------------------------------- /data/institutions/ville_anzin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_anzin.yml -------------------------------------------------------------------------------- /data/institutions/ville_arcachon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_arcachon.yml -------------------------------------------------------------------------------- /data/institutions/ville_aubiere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_aubiere.yml -------------------------------------------------------------------------------- /data/institutions/ville_avignon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_avignon.yml -------------------------------------------------------------------------------- /data/institutions/ville_baisieux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_baisieux.yml -------------------------------------------------------------------------------- /data/institutions/ville_bannalec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_bannalec.yml -------------------------------------------------------------------------------- /data/institutions/ville_bar_le_duc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_bar_le_duc.yml -------------------------------------------------------------------------------- /data/institutions/ville_baud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_baud.yml -------------------------------------------------------------------------------- /data/institutions/ville_begles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_begles.yml -------------------------------------------------------------------------------- /data/institutions/ville_belfort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_belfort.yml -------------------------------------------------------------------------------- /data/institutions/ville_betheny.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_betheny.yml -------------------------------------------------------------------------------- /data/institutions/ville_bethune.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_bethune.yml -------------------------------------------------------------------------------- /data/institutions/ville_bidart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_bidart.yml -------------------------------------------------------------------------------- /data/institutions/ville_boe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_boe.yml -------------------------------------------------------------------------------- /data/institutions/ville_bram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_bram.yml -------------------------------------------------------------------------------- /data/institutions/ville_caen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_caen.yml -------------------------------------------------------------------------------- /data/institutions/ville_cambrai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_cambrai.yml -------------------------------------------------------------------------------- /data/institutions/ville_camon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_camon.yml -------------------------------------------------------------------------------- /data/institutions/ville_canejan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_canejan.yml -------------------------------------------------------------------------------- /data/institutions/ville_carpiquet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_carpiquet.yml -------------------------------------------------------------------------------- /data/institutions/ville_carvin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_carvin.yml -------------------------------------------------------------------------------- /data/institutions/ville_cebazat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_cebazat.yml -------------------------------------------------------------------------------- /data/institutions/ville_cenon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_cenon.yml -------------------------------------------------------------------------------- /data/institutions/ville_cerizay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_cerizay.yml -------------------------------------------------------------------------------- /data/institutions/ville_ceyrat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_ceyrat.yml -------------------------------------------------------------------------------- /data/institutions/ville_chatel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_chatel.yml -------------------------------------------------------------------------------- /data/institutions/ville_chenove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_chenove.yml -------------------------------------------------------------------------------- /data/institutions/ville_cholet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_cholet.yml -------------------------------------------------------------------------------- /data/institutions/ville_clisson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_clisson.yml -------------------------------------------------------------------------------- /data/institutions/ville_colmar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_colmar.yml -------------------------------------------------------------------------------- /data/institutions/ville_colomiers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_colomiers.yml -------------------------------------------------------------------------------- /data/institutions/ville_combloux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_combloux.yml -------------------------------------------------------------------------------- /data/institutions/ville_comines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_comines.yml -------------------------------------------------------------------------------- /data/institutions/ville_correze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_correze.yml -------------------------------------------------------------------------------- /data/institutions/ville_courbevoie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_courbevoie.yml -------------------------------------------------------------------------------- /data/institutions/ville_crolles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_crolles.yml -------------------------------------------------------------------------------- /data/institutions/ville_d_amiens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_d_amiens.yml -------------------------------------------------------------------------------- /data/institutions/ville_d_elbeuf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_d_elbeuf.yml -------------------------------------------------------------------------------- /data/institutions/ville_daix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_daix.yml -------------------------------------------------------------------------------- /data/institutions/ville_dardilly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_dardilly.yml -------------------------------------------------------------------------------- /data/institutions/ville_de_blacé.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_de_blacé.yml -------------------------------------------------------------------------------- /data/institutions/ville_de_larcay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_de_larcay.yml -------------------------------------------------------------------------------- /data/institutions/ville_de_lescar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_de_lescar.yml -------------------------------------------------------------------------------- /data/institutions/ville_de_lyon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_de_lyon.yml -------------------------------------------------------------------------------- /data/institutions/ville_de_pavilly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_de_pavilly.yml -------------------------------------------------------------------------------- /data/institutions/ville_de_voglans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_de_voglans.yml -------------------------------------------------------------------------------- /data/institutions/ville_deauville.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_deauville.yml -------------------------------------------------------------------------------- /data/institutions/ville_demouville.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_demouville.yml -------------------------------------------------------------------------------- /data/institutions/ville_denain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_denain.yml -------------------------------------------------------------------------------- /data/institutions/ville_dieppe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_dieppe.yml -------------------------------------------------------------------------------- /data/institutions/ville_drancy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_drancy.yml -------------------------------------------------------------------------------- /data/institutions/ville_dreux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_dreux.yml -------------------------------------------------------------------------------- /data/institutions/ville_dunkerque.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_dunkerque.yml -------------------------------------------------------------------------------- /data/institutions/ville_ecommoy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_ecommoy.yml -------------------------------------------------------------------------------- /data/institutions/ville_ecully.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_ecully.yml -------------------------------------------------------------------------------- /data/institutions/ville_entzheim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_entzheim.yml -------------------------------------------------------------------------------- /data/institutions/ville_epernay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_epernay.yml -------------------------------------------------------------------------------- /data/institutions/ville_eschau.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_eschau.yml -------------------------------------------------------------------------------- /data/institutions/ville_falaise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_falaise.yml -------------------------------------------------------------------------------- /data/institutions/ville_feignies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_feignies.yml -------------------------------------------------------------------------------- /data/institutions/ville_feyzin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_feyzin.yml -------------------------------------------------------------------------------- /data/institutions/ville_figeac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_figeac.yml -------------------------------------------------------------------------------- /data/institutions/ville_fourmies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_fourmies.yml -------------------------------------------------------------------------------- /data/institutions/ville_frejus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_frejus.yml -------------------------------------------------------------------------------- /data/institutions/ville_gap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_gap.yml -------------------------------------------------------------------------------- /data/institutions/ville_gerstheim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_gerstheim.yml -------------------------------------------------------------------------------- /data/institutions/ville_givors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_givors.yml -------------------------------------------------------------------------------- /data/institutions/ville_gouesnou.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_gouesnou.yml -------------------------------------------------------------------------------- /data/institutions/ville_granville.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_granville.yml -------------------------------------------------------------------------------- /data/institutions/ville_gravelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_gravelines.yml -------------------------------------------------------------------------------- /data/institutions/ville_grigny.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_grigny.yml -------------------------------------------------------------------------------- /data/institutions/ville_gruson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_gruson.yml -------------------------------------------------------------------------------- /data/institutions/ville_hem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_hem.yml -------------------------------------------------------------------------------- /data/institutions/ville_hennebont.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_hennebont.yml -------------------------------------------------------------------------------- /data/institutions/ville_ifs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_ifs.yml -------------------------------------------------------------------------------- /data/institutions/ville_igny.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_igny.yml -------------------------------------------------------------------------------- /data/institutions/ville_irigny.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_irigny.yml -------------------------------------------------------------------------------- /data/institutions/ville_istres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_istres.yml -------------------------------------------------------------------------------- /data/institutions/ville_iwuy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_iwuy.yml -------------------------------------------------------------------------------- /data/institutions/ville_joinville.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_joinville.yml -------------------------------------------------------------------------------- /data/institutions/ville_labege.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_labege.yml -------------------------------------------------------------------------------- /data/institutions/ville_lanester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lanester.yml -------------------------------------------------------------------------------- /data/institutions/ville_le_cateau.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_le_cateau.yml -------------------------------------------------------------------------------- /data/institutions/ville_le_vigan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_le_vigan.yml -------------------------------------------------------------------------------- /data/institutions/ville_lempdes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lempdes.yml -------------------------------------------------------------------------------- /data/institutions/ville_lesquin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lesquin.yml -------------------------------------------------------------------------------- /data/institutions/ville_lezennes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lezennes.yml -------------------------------------------------------------------------------- /data/institutions/ville_lievin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lievin.yml -------------------------------------------------------------------------------- /data/institutions/ville_lille.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lille.yml -------------------------------------------------------------------------------- /data/institutions/ville_linselles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_linselles.yml -------------------------------------------------------------------------------- /data/institutions/ville_lisieux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lisieux.yml -------------------------------------------------------------------------------- /data/institutions/ville_lodeve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_lodeve.yml -------------------------------------------------------------------------------- /data/institutions/ville_marignier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_marignier.yml -------------------------------------------------------------------------------- /data/institutions/ville_martigues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_martigues.yml -------------------------------------------------------------------------------- /data/institutions/ville_mennecy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_mennecy.yml -------------------------------------------------------------------------------- /data/institutions/ville_mer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_mer.yml -------------------------------------------------------------------------------- /data/institutions/ville_merignac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_merignac.yml -------------------------------------------------------------------------------- /data/institutions/ville_meyreuil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_meyreuil.yml -------------------------------------------------------------------------------- /data/institutions/ville_mondeville.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_mondeville.yml -------------------------------------------------------------------------------- /data/institutions/ville_montagnole.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_montagnole.yml -------------------------------------------------------------------------------- /data/institutions/ville_montbard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_montbard.yml -------------------------------------------------------------------------------- /data/institutions/ville_monthoiron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_monthoiron.yml -------------------------------------------------------------------------------- /data/institutions/ville_mornant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_mornant.yml -------------------------------------------------------------------------------- /data/institutions/ville_morzine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_morzine.yml -------------------------------------------------------------------------------- /data/institutions/ville_mougins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_mougins.yml -------------------------------------------------------------------------------- /data/institutions/ville_nanterre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_nanterre.yml -------------------------------------------------------------------------------- /data/institutions/ville_nice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_nice.yml -------------------------------------------------------------------------------- /data/institutions/ville_noyarey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_noyarey.yml -------------------------------------------------------------------------------- /data/institutions/ville_oullins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_oullins.yml -------------------------------------------------------------------------------- /data/institutions/ville_pantin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_pantin.yml -------------------------------------------------------------------------------- /data/institutions/ville_plobsheim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_plobsheim.yml -------------------------------------------------------------------------------- /data/institutions/ville_ploemeur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_ploemeur.yml -------------------------------------------------------------------------------- /data/institutions/ville_plouzane.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_plouzane.yml -------------------------------------------------------------------------------- /data/institutions/ville_puteaux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_puteaux.yml -------------------------------------------------------------------------------- /data/institutions/ville_queven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_queven.yml -------------------------------------------------------------------------------- /data/institutions/ville_reims.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_reims.yml -------------------------------------------------------------------------------- /data/institutions/ville_rivery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_rivery.yml -------------------------------------------------------------------------------- /data/institutions/ville_romagnat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_romagnat.yml -------------------------------------------------------------------------------- /data/institutions/ville_ronchin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_ronchin.yml -------------------------------------------------------------------------------- /data/institutions/ville_saint_omer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_saint_omer.yml -------------------------------------------------------------------------------- /data/institutions/ville_sarlat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_sarlat.yml -------------------------------------------------------------------------------- /data/institutions/ville_talant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_talant.yml -------------------------------------------------------------------------------- /data/institutions/ville_talence.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_talence.yml -------------------------------------------------------------------------------- /data/institutions/ville_thiais.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_thiais.yml -------------------------------------------------------------------------------- /data/institutions/ville_thionville.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_thionville.yml -------------------------------------------------------------------------------- /data/institutions/ville_trebeurden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_trebeurden.yml -------------------------------------------------------------------------------- /data/institutions/ville_unieux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_unieux.yml -------------------------------------------------------------------------------- /data/institutions/ville_vaucresson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_vaucresson.yml -------------------------------------------------------------------------------- /data/institutions/ville_vauvert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_vauvert.yml -------------------------------------------------------------------------------- /data/institutions/ville_vendenheim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_vendenheim.yml -------------------------------------------------------------------------------- /data/institutions/ville_verson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_verson.yml -------------------------------------------------------------------------------- /data/institutions/ville_vertou.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_vertou.yml -------------------------------------------------------------------------------- /data/institutions/ville_vif.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_vif.yml -------------------------------------------------------------------------------- /data/institutions/ville_wasquehal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_wasquehal.yml -------------------------------------------------------------------------------- /data/institutions/ville_wasselonne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/institutions/ville_wasselonne.yml -------------------------------------------------------------------------------- /data/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/schemas.ts -------------------------------------------------------------------------------- /data/types/benefits.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/types/benefits.d.ts -------------------------------------------------------------------------------- /data/types/generator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/types/generator.d.ts -------------------------------------------------------------------------------- /data/types/institutions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/types/institutions.d.ts -------------------------------------------------------------------------------- /data/types/jamstack.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/data/types/jamstack.d.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/eslint.config.js -------------------------------------------------------------------------------- /iframes/iframe-integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/iframes/iframe-integration.ts -------------------------------------------------------------------------------- /iframes/iframes.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/iframes/iframes.config.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/index.html -------------------------------------------------------------------------------- /lib/activite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/activite.ts -------------------------------------------------------------------------------- /lib/answers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/answers.ts -------------------------------------------------------------------------------- /lib/benefits/compute-aides-velo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/compute-aides-velo.ts -------------------------------------------------------------------------------- /lib/benefits/compute-javascript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/compute-javascript.ts -------------------------------------------------------------------------------- /lib/benefits/compute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/compute.ts -------------------------------------------------------------------------------- /lib/benefits/customization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/customization.ts -------------------------------------------------------------------------------- /lib/benefits/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/details.ts -------------------------------------------------------------------------------- /lib/benefits/filter-interest-flag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/filter-interest-flag.ts -------------------------------------------------------------------------------- /lib/benefits/lieux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/lieux.ts -------------------------------------------------------------------------------- /lib/benefits/link-validity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/benefits/link-validity.ts -------------------------------------------------------------------------------- /lib/chapters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/chapters.ts -------------------------------------------------------------------------------- /lib/cleaner-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/cleaner-functions.ts -------------------------------------------------------------------------------- /lib/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/dates.ts -------------------------------------------------------------------------------- /lib/enfants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enfants.ts -------------------------------------------------------------------------------- /lib/enums/activite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/activite.ts -------------------------------------------------------------------------------- /lib/enums/chapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/chapter.ts -------------------------------------------------------------------------------- /lib/enums/cta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/cta.ts -------------------------------------------------------------------------------- /lib/enums/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/error.ts -------------------------------------------------------------------------------- /lib/enums/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/event.ts -------------------------------------------------------------------------------- /lib/enums/logement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/logement.ts -------------------------------------------------------------------------------- /lib/enums/messaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/messaging.ts -------------------------------------------------------------------------------- /lib/enums/nationality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/nationality.ts -------------------------------------------------------------------------------- /lib/enums/patrimoine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/patrimoine.ts -------------------------------------------------------------------------------- /lib/enums/scolarite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/scolarite.ts -------------------------------------------------------------------------------- /lib/enums/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/simulation.ts -------------------------------------------------------------------------------- /lib/enums/survey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/survey.ts -------------------------------------------------------------------------------- /lib/enums/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/themes.ts -------------------------------------------------------------------------------- /lib/enums/velo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/enums/velo.ts -------------------------------------------------------------------------------- /lib/grist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/grist.ts -------------------------------------------------------------------------------- /lib/individu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/individu.ts -------------------------------------------------------------------------------- /lib/logement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/logement.ts -------------------------------------------------------------------------------- /lib/mutualized-steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/mutualized-steps.ts -------------------------------------------------------------------------------- /lib/phone-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/phone-number.ts -------------------------------------------------------------------------------- /lib/properties/depcom-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/properties/depcom-properties.ts -------------------------------------------------------------------------------- /lib/properties/famille-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/properties/famille-properties.ts -------------------------------------------------------------------------------- /lib/properties/individu-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/properties/individu-properties.ts -------------------------------------------------------------------------------- /lib/properties/menage-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/properties/menage-properties.ts -------------------------------------------------------------------------------- /lib/properties/parents-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/properties/parents-properties.ts -------------------------------------------------------------------------------- /lib/properties/property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/properties/property.ts -------------------------------------------------------------------------------- /lib/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/resources.ts -------------------------------------------------------------------------------- /lib/ressource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/ressource.ts -------------------------------------------------------------------------------- /lib/scolarite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/scolarite.ts -------------------------------------------------------------------------------- /lib/simulation.ts: -------------------------------------------------------------------------------- 1 | export const version = 17 2 | -------------------------------------------------------------------------------- /lib/situation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/situation.ts -------------------------------------------------------------------------------- /lib/situations-familiales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/situations-familiales.ts -------------------------------------------------------------------------------- /lib/situations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/situations.ts -------------------------------------------------------------------------------- /lib/state/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/state/blocks.ts -------------------------------------------------------------------------------- /lib/state/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/state/generator.ts -------------------------------------------------------------------------------- /lib/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/state/index.ts -------------------------------------------------------------------------------- /lib/state/step-conditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/state/step-conditions.ts -------------------------------------------------------------------------------- /lib/state/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/state/steps.ts -------------------------------------------------------------------------------- /lib/types/abtesting.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/abtesting.d.ts -------------------------------------------------------------------------------- /lib/types/answer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/answer.d.ts -------------------------------------------------------------------------------- /lib/types/benefits.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/benefits.d.ts -------------------------------------------------------------------------------- /lib/types/blocks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/blocks.d.ts -------------------------------------------------------------------------------- /lib/types/chapters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/chapters.d.ts -------------------------------------------------------------------------------- /lib/types/commune.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/commune.d.ts -------------------------------------------------------------------------------- /lib/types/dates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/dates.d.ts -------------------------------------------------------------------------------- /lib/types/details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/details.d.ts -------------------------------------------------------------------------------- /lib/types/email.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/email.d.ts -------------------------------------------------------------------------------- /lib/types/enfant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/enfant.d.ts -------------------------------------------------------------------------------- /lib/types/followup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/followup.d.ts -------------------------------------------------------------------------------- /lib/types/individu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/individu.d.ts -------------------------------------------------------------------------------- /lib/types/lieu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/lieu.d.ts -------------------------------------------------------------------------------- /lib/types/link-validity.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/link-validity.d.ts -------------------------------------------------------------------------------- /lib/types/logement.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/logement.d.ts -------------------------------------------------------------------------------- /lib/types/parameters.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/parameters.d.ts -------------------------------------------------------------------------------- /lib/types/property.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/property.d.ts -------------------------------------------------------------------------------- /lib/types/resources.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/resources.d.ts -------------------------------------------------------------------------------- /lib/types/route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/route.d.ts -------------------------------------------------------------------------------- /lib/types/simulation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/simulation.d.ts -------------------------------------------------------------------------------- /lib/types/situations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/situations.d.ts -------------------------------------------------------------------------------- /lib/types/steps.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/steps.d.ts -------------------------------------------------------------------------------- /lib/types/store.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/store.d.ts -------------------------------------------------------------------------------- /lib/types/survey.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/types/survey.d.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/netlify.toml -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/nodemon.json -------------------------------------------------------------------------------- /openfisca/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/openfisca/Dockerfile -------------------------------------------------------------------------------- /openfisca/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/openfisca/api.py -------------------------------------------------------------------------------- /openfisca/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/openfisca/config.py -------------------------------------------------------------------------------- /openfisca/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/openfisca/requirements.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/artois-mobilite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/artois-mobilite.png -------------------------------------------------------------------------------- /public/img/benefits/logo-atouts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/benefits/logo-atouts.jpg -------------------------------------------------------------------------------- /public/img/benefits/logo-bafa-bafd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/benefits/logo-bafa-bafd.png -------------------------------------------------------------------------------- /public/img/benefits/logo-velo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/benefits/logo-velo.jpg -------------------------------------------------------------------------------- /public/img/devise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/devise.svg -------------------------------------------------------------------------------- /public/img/france-relance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/france-relance.svg -------------------------------------------------------------------------------- /public/img/institutions/epci_aunis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/epci_aunis.jpg -------------------------------------------------------------------------------- /public/img/institutions/logo_atmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_atmb.png -------------------------------------------------------------------------------- /public/img/institutions/logo_blace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_blace.png -------------------------------------------------------------------------------- /public/img/institutions/logo_blois.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_blois.png -------------------------------------------------------------------------------- /public/img/institutions/logo_caba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_caba.png -------------------------------------------------------------------------------- /public/img/institutions/logo_caen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_caen.png -------------------------------------------------------------------------------- /public/img/institutions/logo_caf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_caf.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd01.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd02.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd03.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd04.jpg -------------------------------------------------------------------------------- /public/img/institutions/logo_cd04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd04.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd05.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd06.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd07.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd08.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd09.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd11.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd12.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd13.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd14.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd15.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd16.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd17.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd18.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd19.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd21.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd22.jpg -------------------------------------------------------------------------------- /public/img/institutions/logo_cd24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd24.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd25.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd26.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd28.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd29.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd30.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd31.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd33.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd34.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd35.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd36.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd37.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd38.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd39.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd40.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd41.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd42.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd44.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd45.jpg -------------------------------------------------------------------------------- /public/img/institutions/logo_cd45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd45.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd46.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd49.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd50.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd51.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd53.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd56.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd57.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd59.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd60.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd62.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd63.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd64.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd67.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd68.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd69.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd71.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd72.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd74.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd75.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd76.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd77.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd78.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd80.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd83.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd84.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd85.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd86.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd91.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd92.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd93.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd94.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd95.png -------------------------------------------------------------------------------- /public/img/institutions/logo_cd974.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_cd974.png -------------------------------------------------------------------------------- /public/img/institutions/logo_daix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_daix.png -------------------------------------------------------------------------------- /public/img/institutions/logo_ehop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_ehop.png -------------------------------------------------------------------------------- /public/img/institutions/logo_fastt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_fastt.png -------------------------------------------------------------------------------- /public/img/institutions/logo_hem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_hem.png -------------------------------------------------------------------------------- /public/img/institutions/logo_ifs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_ifs.png -------------------------------------------------------------------------------- /public/img/institutions/logo_iwuy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_iwuy.jpg -------------------------------------------------------------------------------- /public/img/institutions/logo_mer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_mer.png -------------------------------------------------------------------------------- /public/img/institutions/logo_paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_paris.png -------------------------------------------------------------------------------- /public/img/institutions/logo_reims.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_reims.png -------------------------------------------------------------------------------- /public/img/institutions/logo_sncf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_sncf.png -------------------------------------------------------------------------------- /public/img/institutions/logo_vif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/institutions/logo_vif.png -------------------------------------------------------------------------------- /public/img/logo-proconnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/logo-proconnect.svg -------------------------------------------------------------------------------- /public/img/logo_rf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/logo_rf.png -------------------------------------------------------------------------------- /public/img/logo_rf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/logo_rf.svg -------------------------------------------------------------------------------- /public/img/mariane_no_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/mariane_no_text.svg -------------------------------------------------------------------------------- /public/img/marianne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/marianne.png -------------------------------------------------------------------------------- /public/img/marianne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/marianne.svg -------------------------------------------------------------------------------- /public/img/partners/domifa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/domifa.jpg -------------------------------------------------------------------------------- /public/img/partners/domifa.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/domifa.webp -------------------------------------------------------------------------------- /public/img/partners/jeunes.gouv.fr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/jeunes.gouv.fr.jpg -------------------------------------------------------------------------------- /public/img/partners/jeunes.gouv.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/jeunes.gouv.fr.png -------------------------------------------------------------------------------- /public/img/partners/mesaidesvelo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/mesaidesvelo.jpg -------------------------------------------------------------------------------- /public/img/partners/mesaidesvelo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/mesaidesvelo.webp -------------------------------------------------------------------------------- /public/img/partners/openfisca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/openfisca.jpg -------------------------------------------------------------------------------- /public/img/partners/openfisca.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/openfisca.webp -------------------------------------------------------------------------------- /public/img/partners/ville-vannes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/ville-vannes.jpg -------------------------------------------------------------------------------- /public/img/partners/ville-vannes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/partners/ville-vannes.webp -------------------------------------------------------------------------------- /public/img/social/picto_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/social/picto_facebook.png -------------------------------------------------------------------------------- /public/img/social/picto_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/img/social/picto_twitter.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/public/robots.txt -------------------------------------------------------------------------------- /rollup/benefits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/rollup/benefits.ts -------------------------------------------------------------------------------- /rollup/generator.rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/rollup/generator.rollup.ts -------------------------------------------------------------------------------- /rollup/institutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/rollup/institutions.ts -------------------------------------------------------------------------------- /rollup/sitemap.rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/rollup/sitemap.rollup.ts -------------------------------------------------------------------------------- /src/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/app.vue -------------------------------------------------------------------------------- /src/assets/images/arrow-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/assets/images/arrow-back.png -------------------------------------------------------------------------------- /src/assets/images/doigt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/assets/images/doigt.svg -------------------------------------------------------------------------------- /src/assets/images/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/assets/images/done.svg -------------------------------------------------------------------------------- /src/assets/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/assets/images/warning.svg -------------------------------------------------------------------------------- /src/components/1j1s/footer-1j1s.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/1j1s/footer-1j1s.vue -------------------------------------------------------------------------------- /src/components/1j1s/header-1j1s.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/1j1s/header-1j1s.vue -------------------------------------------------------------------------------- /src/components/action-buttons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/action-buttons.vue -------------------------------------------------------------------------------- /src/components/bandeau-demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/bandeau-demo.vue -------------------------------------------------------------------------------- /src/components/base-layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/base-layout.vue -------------------------------------------------------------------------------- /src/components/benefit-cta-link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/benefit-cta-link.vue -------------------------------------------------------------------------------- /src/components/benefit-cta.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/benefit-cta.vue -------------------------------------------------------------------------------- /src/components/benefit-preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/benefit-preview.vue -------------------------------------------------------------------------------- /src/components/benefits-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/benefits-list.vue -------------------------------------------------------------------------------- /src/components/buttons/back-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/buttons/back-button.vue -------------------------------------------------------------------------------- /src/components/commune-benefits.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/commune-benefits.vue -------------------------------------------------------------------------------- /src/components/droit-estime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/droit-estime.vue -------------------------------------------------------------------------------- /src/components/droit-header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/droit-header.vue -------------------------------------------------------------------------------- /src/components/droits-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/droits-details.vue -------------------------------------------------------------------------------- /src/components/en-savoir-plus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/en-savoir-plus.vue -------------------------------------------------------------------------------- /src/components/error-block.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/error-block.vue -------------------------------------------------------------------------------- /src/components/error-save-block.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/error-save-block.vue -------------------------------------------------------------------------------- /src/components/feedback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/feedback.vue -------------------------------------------------------------------------------- /src/components/home/hero-section.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/home/hero-section.vue -------------------------------------------------------------------------------- /src/components/iframe-layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/iframe-layout.vue -------------------------------------------------------------------------------- /src/components/input-date.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/input-date.vue -------------------------------------------------------------------------------- /src/components/input-depcom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/input-depcom.vue -------------------------------------------------------------------------------- /src/components/input-error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/input-error.vue -------------------------------------------------------------------------------- /src/components/input-month.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/input-month.vue -------------------------------------------------------------------------------- /src/components/input-number.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/input-number.vue -------------------------------------------------------------------------------- /src/components/lieu-informations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/lieu-informations.vue -------------------------------------------------------------------------------- /src/components/lieu-light.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/lieu-light.vue -------------------------------------------------------------------------------- /src/components/lieu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/lieu.vue -------------------------------------------------------------------------------- /src/components/loading-modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/loading-modal.vue -------------------------------------------------------------------------------- /src/components/matomo-opt-out.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/matomo-opt-out.vue -------------------------------------------------------------------------------- /src/components/mes-aides-layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/mes-aides-layout.vue -------------------------------------------------------------------------------- /src/components/month-input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/month-input.vue -------------------------------------------------------------------------------- /src/components/month-label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/month-label.vue -------------------------------------------------------------------------------- /src/components/multiple-answers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/multiple-answers.vue -------------------------------------------------------------------------------- /src/components/offline-results.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/offline-results.vue -------------------------------------------------------------------------------- /src/components/progress-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/progress-bar.vue -------------------------------------------------------------------------------- /src/components/progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/progress.vue -------------------------------------------------------------------------------- /src/components/ressource/montants.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/ressource/montants.vue -------------------------------------------------------------------------------- /src/components/ressource/types.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/ressource/types.vue -------------------------------------------------------------------------------- /src/components/step-view.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/step-view.vue -------------------------------------------------------------------------------- /src/components/summary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/summary.vue -------------------------------------------------------------------------------- /src/components/support/copy-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/support/copy-button.vue -------------------------------------------------------------------------------- /src/components/titre-chapitre.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/titre-chapitre.vue -------------------------------------------------------------------------------- /src/components/warning-message.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/warning-message.vue -------------------------------------------------------------------------------- /src/components/yes-no-question.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/components/yes-no-question.vue -------------------------------------------------------------------------------- /src/composables/individu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/composables/individu.ts -------------------------------------------------------------------------------- /src/composables/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/composables/progress.ts -------------------------------------------------------------------------------- /src/composables/use-benefits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/composables/use-benefits.ts -------------------------------------------------------------------------------- /src/composables/use-lieux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/composables/use-lieux.ts -------------------------------------------------------------------------------- /src/context/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/context/base.ts -------------------------------------------------------------------------------- /src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/context/index.ts -------------------------------------------------------------------------------- /src/context/mes-aides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/context/mes-aides.ts -------------------------------------------------------------------------------- /src/directives/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/directives/analytics.ts -------------------------------------------------------------------------------- /src/directives/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/directives/mail.ts -------------------------------------------------------------------------------- /src/directives/select-on-click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/directives/select-on-click.ts -------------------------------------------------------------------------------- /src/fonts/Marianne-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/fonts/Marianne-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/Marianne-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/fonts/Marianne-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/fonts/Marianne-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/fonts/Marianne-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/fonts/remixicon.woff2 -------------------------------------------------------------------------------- /src/lib/benefits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/benefits.ts -------------------------------------------------------------------------------- /src/lib/commune.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/commune.ts -------------------------------------------------------------------------------- /src/lib/hint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/hint.ts -------------------------------------------------------------------------------- /src/lib/mock-results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/mock-results.ts -------------------------------------------------------------------------------- /src/lib/nationality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/nationality.ts -------------------------------------------------------------------------------- /src/lib/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/simulation.ts -------------------------------------------------------------------------------- /src/lib/statistics-service/matomo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/statistics-service/matomo.ts -------------------------------------------------------------------------------- /src/lib/statistics-service/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/statistics-service/recorder.ts -------------------------------------------------------------------------------- /src/lib/statistics-service/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/statistics-service/shared.ts -------------------------------------------------------------------------------- /src/lib/storage-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/storage-service.ts -------------------------------------------------------------------------------- /src/lib/transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/transition.ts -------------------------------------------------------------------------------- /src/lib/warnings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/lib/warnings.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/mixins/benefit-image-mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/mixins/benefit-image-mixin.ts -------------------------------------------------------------------------------- /src/mixins/contact-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/mixins/contact-email.ts -------------------------------------------------------------------------------- /src/mixins/layout-route-mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/mixins/layout-route-mixin.ts -------------------------------------------------------------------------------- /src/mixins/ressource-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/mixins/ressource-processor.ts -------------------------------------------------------------------------------- /src/mixins/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/mixins/statistics.ts -------------------------------------------------------------------------------- /src/mixins/tns-ressource-updator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/mixins/tns-ressource-updator.ts -------------------------------------------------------------------------------- /src/plugins/ab-testing-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/plugins/ab-testing-service.ts -------------------------------------------------------------------------------- /src/plugins/mails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/plugins/mails.ts -------------------------------------------------------------------------------- /src/plugins/state-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/plugins/state-service.ts -------------------------------------------------------------------------------- /src/plugins/theme-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/plugins/theme-service.ts -------------------------------------------------------------------------------- /src/plugins/tracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/plugins/tracker.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/stores/iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/stores/iframe.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/stores/results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/stores/results.ts -------------------------------------------------------------------------------- /src/stores/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/stores/theme.ts -------------------------------------------------------------------------------- /src/styles/aides-jeunes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/styles/aides-jeunes.css -------------------------------------------------------------------------------- /src/styles/themes/default-dsfr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/styles/themes/default-dsfr.css -------------------------------------------------------------------------------- /src/styles/themes/light-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/styles/themes/light-blue.css -------------------------------------------------------------------------------- /src/styles/themes/soliguide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/styles/themes/soliguide.css -------------------------------------------------------------------------------- /src/types/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/types/css.d.ts -------------------------------------------------------------------------------- /src/views/accessibilite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/accessibilite.vue -------------------------------------------------------------------------------- /src/views/aide.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/aide.vue -------------------------------------------------------------------------------- /src/views/cgu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/cgu.vue -------------------------------------------------------------------------------- /src/views/confidentialite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/confidentialite.vue -------------------------------------------------------------------------------- /src/views/contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/contact.vue -------------------------------------------------------------------------------- /src/views/faq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/faq.vue -------------------------------------------------------------------------------- /src/views/france-connect-callback.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/france-connect-callback.vue -------------------------------------------------------------------------------- /src/views/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/home.vue -------------------------------------------------------------------------------- /src/views/iframe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/iframe.vue -------------------------------------------------------------------------------- /src/views/liste-aides.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/liste-aides.vue -------------------------------------------------------------------------------- /src/views/mentions-legales.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/mentions-legales.vue -------------------------------------------------------------------------------- /src/views/parcours.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/parcours.vue -------------------------------------------------------------------------------- /src/views/preremplissage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/preremplissage.vue -------------------------------------------------------------------------------- /src/views/preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/preview.vue -------------------------------------------------------------------------------- /src/views/redirection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/redirection.vue -------------------------------------------------------------------------------- /src/views/simulation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/simulation.vue -------------------------------------------------------------------------------- /src/views/simulation/Menage/loyer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/simulation/Menage/loyer.vue -------------------------------------------------------------------------------- /src/views/simulation/enfants.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/simulation/enfants.vue -------------------------------------------------------------------------------- /src/views/simulation/famille.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/simulation/famille.vue -------------------------------------------------------------------------------- /src/views/simulation/individu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/simulation/individu.vue -------------------------------------------------------------------------------- /src/views/simulation/menage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/simulation/menage.vue -------------------------------------------------------------------------------- /src/views/stats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/stats.vue -------------------------------------------------------------------------------- /src/views/suivi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/suivi.vue -------------------------------------------------------------------------------- /src/views/villes/bordeaux.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/bordeaux.vue -------------------------------------------------------------------------------- /src/views/villes/lille.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/lille.vue -------------------------------------------------------------------------------- /src/views/villes/lyon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/lyon.vue -------------------------------------------------------------------------------- /src/views/villes/marseille.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/marseille.vue -------------------------------------------------------------------------------- /src/views/villes/montpellier.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/montpellier.vue -------------------------------------------------------------------------------- /src/views/villes/nantes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/nantes.vue -------------------------------------------------------------------------------- /src/views/villes/nice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/nice.vue -------------------------------------------------------------------------------- /src/views/villes/paris.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/paris.vue -------------------------------------------------------------------------------- /src/views/villes/rouen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/rouen.vue -------------------------------------------------------------------------------- /src/views/villes/strasbourg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/strasbourg.vue -------------------------------------------------------------------------------- /src/views/villes/toulouse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/src/views/villes/toulouse.vue -------------------------------------------------------------------------------- /tests/__mocks__/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/__mocks__/axios.js -------------------------------------------------------------------------------- /tests/unit/backend/outils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/backend/outils.spec.ts -------------------------------------------------------------------------------- /tests/unit/backend/survey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/backend/survey.spec.ts -------------------------------------------------------------------------------- /tests/unit/backend/webhook.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/backend/webhook.spec.ts -------------------------------------------------------------------------------- /tests/unit/components/types.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/components/types.spec.ts -------------------------------------------------------------------------------- /tests/unit/lib/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/lib/index.spec.ts -------------------------------------------------------------------------------- /tests/unit/openfisca/bulk.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/openfisca/bulk.spec.ts -------------------------------------------------------------------------------- /tests/unit/openfisca/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/openfisca/index.spec.ts -------------------------------------------------------------------------------- /tests/unit/openfisca/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/openfisca/test.spec.ts -------------------------------------------------------------------------------- /tests/unit/other/answer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/other/answer.spec.ts -------------------------------------------------------------------------------- /tests/unit/other/commune.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/other/commune.spec.ts -------------------------------------------------------------------------------- /tests/unit/other/round.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/other/round.spec.ts -------------------------------------------------------------------------------- /tests/unit/other/situation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/other/situation.spec.ts -------------------------------------------------------------------------------- /tests/unit/other/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/other/utils.spec.ts -------------------------------------------------------------------------------- /tests/unit/tools/cleaner.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/tools/cleaner.spec.ts -------------------------------------------------------------------------------- /tests/unit/tools/existing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/tools/existing.spec.ts -------------------------------------------------------------------------------- /tests/unit/tools/new.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/tools/new.spec.ts -------------------------------------------------------------------------------- /tests/unit/tools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/tools/utils.ts -------------------------------------------------------------------------------- /tests/unit/views/fiscales.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tests/unit/views/fiscales.spec.ts -------------------------------------------------------------------------------- /tools/check-links-validity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/check-links-validity.ts -------------------------------------------------------------------------------- /tools/cleaner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/cleaner.ts -------------------------------------------------------------------------------- /tools/create-temp-smtp-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/create-temp-smtp-server.ts -------------------------------------------------------------------------------- /tools/distance-communes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/distance-communes.js -------------------------------------------------------------------------------- /tools/email-sending-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/email-sending-tool.ts -------------------------------------------------------------------------------- /tools/email-summary-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/email-summary-tool.ts -------------------------------------------------------------------------------- /tools/evaluate-benefits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/evaluate-benefits.ts -------------------------------------------------------------------------------- /tools/get-all-steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/get-all-steps.ts -------------------------------------------------------------------------------- /tools/get-latest-simulation-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/get-latest-simulation-ids.ts -------------------------------------------------------------------------------- /tools/iframe-build-control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/iframe-build-control.sh -------------------------------------------------------------------------------- /tools/institutions-logo-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/institutions-logo-check.ts -------------------------------------------------------------------------------- /tools/mjml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/mjml.ts -------------------------------------------------------------------------------- /tools/mongo-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/mongo-query.ts -------------------------------------------------------------------------------- /tools/sms-sending-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/sms-sending-tool.ts -------------------------------------------------------------------------------- /tools/test-definition-periods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/test-definition-periods.ts -------------------------------------------------------------------------------- /tools/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/views/index.html -------------------------------------------------------------------------------- /tools/views/institutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tools/views/institutions.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/tsconfig.server.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betagouv/aides-jeunes/HEAD/vitest.config.ts --------------------------------------------------------------------------------