Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
TRUNCATE TABLE thesaurus;
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (1, '01 - MONDE AGRICOLE', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (2, '02 - COMMUNICATION-CULTURE-EDUCATION', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (3, '03 - MONDE ECONOMIQUE', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (4, '04 - ENVIRONNEMENT', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (5, '05 - INTERNATIONAL ET UNION EUROPEENNE', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (6, '06 - SANTE', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (7, '07 - SOCIAL', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (8, '08 - SOCIETE', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (9, '09 - VIE ADMINISTRATIVE ET POLITIQUE', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (10, '10 - VIE PROFESSIONNELLE', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (11, '11 - LISTES ANNEXES', '', '', '', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (12, 'Abandon d''enfant', '', '', 'Situation familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (13, 'Abattement', '', '', 'Fiscalité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (14, 'Abattoir', '', '', 'Industrie agroalimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (15, 'Abeille', '', '', 'Insecte', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (16, 'Abrogation', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (17, 'Absentéisme', '', '', 'Comportement au travail', NULL, 'Absence');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (18, 'Abus sexuel', '', '', 'Problème social', NULL, 'Violence sexuelle');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (19, 'Accès aux documents administratifs', '', '', 'Relation administration-usager', NULL, 'Communication des documents administratifs');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (20, 'Accès aux origines', 'La loi 2001-93 du 11 janvier 2001 relative à l''accès aux origines des personnes adoptées et pupilles de l''État vise à limiter les cas dans lesquels un enfant peut être privé des informations concernant son identité et ses origines et tend également à favoriser les retrouvailles entre l''enfant et ses parents biologiques en créant le Conseil national pour l''accès aux origines personnelles (CNAOP).', '', 'Situation familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (21, 'Accès aux soins', '', '', 'Planification sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (22, 'Accession à la propriété', '', 'Plan local d''urbanisme (PLU)', 'Propriété', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (23, 'Accident', '', '', 'Situation de crise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (24, 'Accident chimique', '', '', 'Accident technologique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (25, 'Accident d''avion', '', 'Accident', 'Sécurité aérienne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (26, 'Accident domestique', '', '', 'Santé individuelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (27, 'Accident du travail', '', '', 'Sécurité au travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (28, 'Accident nucléaire', '', '', 'Accident technologique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (29, 'Accident scolaire', '', '', 'Education', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (30, 'Accident technologique', '', '', 'Risque majeur', NULL, 'Accident industriel');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (31, 'Accident vasculaire cérébral (AVC)', '', '', 'Maladie cérébro-vasculaire', NULL, 'AVC');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (32, 'Accompagnement scolaire', '', 'Réserve citoyenne', 'Scolarité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (33, 'Accord', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (34, 'Accord cadre', 'L''accord cadre est un accord général conclu entre différentes parties (partenaires sociaux, Etat) Il fixe de grands principes destinés à être précisés ultérieurement. Cette notion s''emploie dans différents domaines notamment dans le cadre de la négociation collective, mais également dans le cadre des marchés publics.', '', 'Texte juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (35, 'Accord collectif de travail', '', '', 'Négociation collective', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (36, 'Accord de branche', '', '', 'Négociation collective', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (37, 'Accord de groupe', '', '', 'Négociation collective', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (38, 'Accord de pêche', '', '', 'Politique de la pêche', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (39, 'Accord de Schengen', '', '', 'Droit de l''Union européenne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (40, 'Accord d''entreprise', '', '', 'Négociation collective', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (41, 'Accord préélectoral', '', '', 'Election', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (42, 'Accord salarial', '', '', 'Négociation collective', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (43, 'Accord UE - Turquie sur les migrants', '', '', 'Droit de l''Union européenne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (44, 'Accords de Paris', '', '', 'Changement climatique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (45, 'Accouchement', '', '', 'Obstétrique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (46, 'Accouchement sous X', '', '', 'Situation familiale', NULL, 'Accouchement anonyme');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (47, 'Accueil', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (48, 'Accueil de jour médicalisé', 'Constitue une déclinaison de l''accueil de jour qui consiste à accueillir pour une ou plusieurs journées par semaine, voire une demi-journée des personnes âgées vivant à leur domicile, dans des locaux dédiés à cet accueil. Ce type d''accueil s''adresse essentiellement à des personnes atteintes de maladie d''Alzheimer ou de troubles apparentés. Ils peuvent être autonomes ou rattachés à une structure telle qu''un EHPAD. Il s''agit d''un ESMS tel défini à l''article L311-1.I.6e du code de l''action sociale et des familles.', '', 'Hôpital', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (49, 'Accueillant familial', 'Titulaire d''un agrément, l''accueillant familial accueille à son domicile moyennant rémunération des personnes âgées ou des personnes handicapées. Son statut est fixé par la loi du 17 janvier 2001 de modernisation sociale et complétée par l''article 57 de la loi du 5 mars 2007 instituant le droit au logement opposable.', '', 'Métier de la dépendance', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (50, 'Acharnement thérapeutique', '', '', 'Fin de vie', NULL, 'Acharnement médical');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (51, 'Achat public', '', '', 'Marché public', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (52, 'Acquisition de la nationalité', '', '', 'Nationalité', NULL, 'Naturalisation');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (53, 'Acte administratif', '', '', 'Droit public', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (54, 'Acte médical', '', '', 'Corps humain et pratique médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (55, 'Acte unique européen', '', '', 'Union européenne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (56, 'Action culturelle', '', '', 'Politique culturelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (57, 'Action logement', 'Participation des employeurs à l''effort de construction (PEEC)', '', 'Politique du logement', NULL, '1 % logement');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (58, 'Action parlementaire', '', '', 'Parlement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (59, 'Actionnariat', '', '', 'Financement de l''économie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (60, 'Actionnariat salarial', '', '', 'Financement de l''économie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (61, 'Activité agricole', '', '', 'Agriculture', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (62, 'Activité syndicale', '', '', 'Syndicalisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (63, 'Activités d''adultes relais', '', '', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (64, 'Acupuncture', '', '', 'Médecine non conventionnelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (65, 'Addictologie', '', '', 'Spécialité médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (66, 'Adhésion', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (67, 'Adhésion à l''Union européenne', '', '', 'Elargissement de l''Union européenne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (68, 'Administration centrale', '', '', 'Organisation administrative', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (69, 'Administration publique', '', '', '09 - VIE ADMINISTRATIVE ET POLITIQUE', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (70, 'Admission', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (71, 'ADN', '', '', 'Chromosome', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (72, 'Adoption', '', '', 'Situation familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (73, 'Aéronef', '', '', 'Transport aérien', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (74, 'Aéroport', '', '', 'Infrastructure aéronautique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (75, 'Affaires intérieures', '', '', '09 - VIE ADMINISTRATIVE ET POLITIQUE', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (76, 'Affection de longue durée', '', '', 'Remboursement', NULL, 'Maladie de longue durée/ALD');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (77, 'Affiliation', '', '', 'Organisation de la sécurité sociale', NULL, 'Assujettissement');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (78, 'Afghanistan', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (79, 'Afrique', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (80, 'Afrique du Nord', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (81, 'Afrique du sud', '', '', 'Pays étranger', NULL, 'République d''Afrique du Sud/République sud-africaine');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (82, 'Afrique noire', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (83, 'Afrique sub-saharienne', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (84, 'Age de la retraite', '', '', 'Retraite', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (85, 'Agence nationale de rénovation urbaine (ANRU)', '', '', 'Politique de la ville', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (86, 'Agence nationale de traitement automatisé des infractions (ANTAI)', '', '', 'Permis de conduire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (87, 'Agence Nationale pour l''Amélioration de l''Habitat (ANAH)', '', '', 'Amélioration de l''habitat', NULL, 'Agence nationale pour l''amélioration de l''habitat');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (88, 'Agence Régionale de Santé (ARS)', 'Les Agences régionales de santé (ARS) visent à décloisonner, à rassembler le pilotage des politiques de santé au niveau régional et à contrôler les dépenses de santé. La création de ces agences, prévue dans la loi Hôpital, patients, santé et territoire (HPST) n° 2009-879 du 11 juillet 2009, est effective depuis avril 2010.', '', 'Politique de la santé', NULL, 'ARS');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (89, 'Agent artistique', '', '', 'Métier du spectacle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (90, 'Agent cancérigène', '', '', 'Sécurité sanitaire', NULL, 'Agent carcinogène/Cancérogénicité');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (91, 'Agent contractuel', '', '', 'Agent public', NULL, 'Contractuel');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (92, 'Agent de joueurs', '', '', 'Métier du sport', NULL, 'Agent sportif');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (93, 'Agent de santé communautaire', '', '', 'Profession paramédicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (94, 'Agent non titulaire', '', '', 'Agent public', NULL, 'Non titulaire');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (95, 'Agent public', '', '', 'Statut général', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (96, 'Agent toxique', '', '', 'Polluant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (97, 'Agglomération', '', '', 'Milieu urbain', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (98, 'Agression', '', '', 'Violence', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (99, 'Agriculteur', '', '', 'Métier de l''agriculture', NULL, 'Exploitant agricole');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (100, 'Agriculture', '', '', '01 - MONDE AGRICOLE', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (101, 'Agriculture biologique', '', '', 'Agriculture', NULL, 'Agrobiologie');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (102, 'Aide', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (103, 'Aide à la création d''entreprise', 'Mesure d''aide à la création d''entreprise au bénéfice des demandeurs d''emploi, des bénéficiaires de minima sociaux, des jeunes de moins de 16 ans, des créateurs d''entreprise en ZUS.', '', 'Aide aux entreprises', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (104, 'Aide à la formation', '', '', 'Financement de la formation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (105, 'Aide à l''emploi', '', '', 'Emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (106, 'Aide alimentaire', '', '', 'Aide sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (107, 'Aide au logement', '', '', 'Politique du logement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (108, 'Aide au logement temporaire (ALT)', 'Créée dans le cadre de la loi contre les exclusions de juillet 1998', '', 'Dispositif d''accueil', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (109, 'Aide au retour', '', '', 'Retour au pays d''origine', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (110, 'Aide aux chômeurs créateurs et repreneurs d''entreprise (ACCRE)', '', '', 'Aide aux entreprises', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (111, 'Aide aux entreprises', '', '', 'Entreprise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (112, 'Aide communautaire', '', '', 'Politique commune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (113, 'Aide humanitaire', '', '', 'Aide sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (114, 'Aide juridictionnelle', '', '', 'Procédure', NULL, 'Aide judiciaire');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (115, 'Aide médicale de l''Etat', 'Dispositif spécifique conçu pour prendre en charge les frais de soins des personnes de nationalité étrangère, résidant en France sans titre de séjour régulier, depuis la disparition de l''aide médicale départementale à la suite de la création de la CMU.', '', 'Aide humanitaire', NULL, 'AME');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (116, 'Aide personnalisée au logement (APL)', 'L''aide personnalisée au logement (APL) est attribuée sous conditions de ressources, aux personnes qui occupent un logement conventionné avec l''État, quelles que soient les caractéristiques familiales des occupants.', '', 'Aide au logement', NULL, 'APL');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (117, 'Aide sociale', '', '', '07 - SOCIAL', NULL, 'Assistance');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (118, 'Aide sociale à l''enfance (ASE)', '', '', 'Protection de l''enfance', NULL, 'Aide sociale à l''enfance');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (119, 'Aide-soignant', '', '', 'Profession paramédicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (120, 'Ain', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (121, 'Air France', '', '', 'Compagnie aérienne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (122, 'Aire d''accueil des gens du voyage', '', '', 'Equipement collectif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (123, 'Aisne', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (124, 'Aix-en-Provence', '', '', 'Bouches du Rhône', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (125, 'Aix-Marseille-Provence', '', '', 'Métropole', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (126, 'Albanie', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (127, 'Alcool', '', 'Vin', 'Boisson', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (128, 'Alcoolisme', '', '', 'Pratique addictive', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (129, 'Alcoologie', '', '', 'Spécialité médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (130, 'Aléa thérapeutique', '', '', 'Déontologie médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (131, 'Alerte épidémiologique', '', '', 'Epidémie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (132, 'Algérie', '', 'Maghreb', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (133, 'Algue verte', '', '', 'Pollution de la mer', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (134, 'Aliment de substitution', '', '', 'Hygiène alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (135, 'Aliment du bétail', '', 'Production végétale', 'Alimentation animale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (136, 'Aliment transformé', '', '', 'Produit alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (137, 'Alimentation animale', '', '', 'Bien-être animal', NULL, 'Alimentation des animaux/Alimentation du bétail');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (138, 'Allaitement', '', '', 'Maternité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (139, 'Allemagne', '', 'RDA', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (140, 'Allergie', '', '', 'Pathologie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (141, 'Allergologie', '', '', 'Spécialité médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (142, 'Allier', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (143, 'Allocation adulte handicapé (AAH)', '', '', 'Prestation handicapé', NULL, 'Allocation aux adultes handicapés');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (144, 'Allocation de logement familiale (ALF)', 'L''allocation de logement familiale (ALF) est attribuée spécifiquement aux ménages ou personnes isolées ayant des personnes à charge.', '', 'Aide au logement', NULL, 'ALF');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (145, 'Allocation de logement sociale (ALS)', 'L''allocation de logement sociale (ALS) est attribuée à certaines catégories de personnes, autre que les familles, caractérisées par le niveau modeste de leurs ressources.', '', 'Aide au logement', NULL, 'ALS');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (146, 'Allocation de rentrée scolaire', '', '', 'Prestation familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (147, 'Allocation de solidarité spécifique', '', '', 'Prestations chômage', NULL, 'ASS');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (148, 'Allocation de soutien familial (ASF)', '', '', 'Prestation familiale', NULL, 'Allocation de soutien familial');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (149, 'Allocation d''éducation de l''enfant handicapé (AEEH)', 'Remplace l''Allocation d''éducation spéciale depuis le 1er janvier 2006', '', 'Prestation handicapé', NULL, 'AEEH');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (150, 'Allocation d''orphelin', '', '', 'Prestation familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (328, 'Banque centrale européenne (BCE)', '', '', 'Organe communautaire', NULL, 'Banque centrale européenne');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (329, 'Banque mondiale', '', '', 'Finances internationales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (604, 'Commerce de détail', '', '', 'Commerce', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (151, 'Allocation journalière de présence parentale', 'L''allocation journalière de présence parentale (AJPP) est attribuée à toute personne qui interrompt ponctuellement son contrat de travail ou bénéficie d''un congé de présence parentale pour assumer la charge d''un enfant âgé de moins de 10 ans atteint d''une maladie, d''un handicap ou victime d''un accident d''une particulière gravité.', '', 'Prestation familiale', NULL, 'AJPP');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (152, 'Allocation parent isolé (API)', '', '', 'Prestation familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (153, 'Allocation parentale d''éducation (APE)', '', '', 'Prestation familiale', NULL, 'Allocation parentale d''éducation');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (154, 'Allocation personnalisée d''autonomie (APA)', 'Fait suite à la PSD, à compter du 1er janvier 2001', '', 'Prestation vieillesse', NULL, 'Allocation personnalisée d''autonomie');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (155, 'Allocation Retour à l''Emploi (ARE)', '', '', 'Prestations chômage', NULL, 'ARE');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (156, 'Alpes de Haute Provence', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (157, 'Alpes Maritimes', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (158, 'Alphabétisation', '', 'Analphabétisme', 'Enseignement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (159, 'Alternance', '', '', 'Stage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (160, 'Ambassade', '', '', 'Représentation diplomatique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (161, 'Ambulances', '', '', 'Transport sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (162, 'Ambulancier', '', '', 'Profession paramédicale', NULL, 'brancardier');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (163, 'Amélioration de l''habitat', '', '', 'Logement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (164, 'Aménagement du temps de travail', '', '', 'Durée du travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (165, 'Aménagement du territoire', '', '', 'Organisation territoriale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (166, 'Aménagement foncier', '', '', 'Aménagement du territoire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (167, 'Aménagement rural', '', '', 'Milieu rural', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (168, 'Aménagement urbain', '', '', 'Urbanisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (169, 'Amérique', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (170, 'Amérique du Nord', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (171, 'Amérique latine', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (172, 'Amiante', '', '', 'Polluant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (173, 'Anarchisme', '', '', 'Idéologie politique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (174, 'Anatomie', '', '', 'Corps humain et pratique médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (175, 'Ancien combattant et victime de guerre', '', '', 'Armée', NULL, 'Ancien combattant');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (176, 'Ancien ministre', '', '', 'Ministre', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (177, 'Ancien Premier ministre', '', '', 'Premier ministre', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (178, 'Ancien Président de la République', '', '', 'Président de la République', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (179, 'Andorre', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (180, 'Anesthésie', '', '', 'Spécialité médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (181, 'Angleterre', '', '', 'Royaume-Uni', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (182, 'Angola', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (183, 'Animal de laboratoire', '', '', 'Bien-être animal', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (184, 'Animal domestique', '', '', 'Faune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (185, 'Animal sauvage', '', '', 'Faune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (186, 'Animateur social', '', '', 'Travailleur social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (187, 'Animateur sportif', '', '', 'Métier du sport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (188, 'Annecy', '', '', 'Haute Savoie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (189, 'Annuaire', '', '', 'Publication', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (190, 'Annuaire international', '', '', 'Annuaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (191, 'Annulation', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (192, 'Annulation d''élection', '', '', 'Droit électoral', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (193, 'Anorexie', '', '', 'Trouble du comportement alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (194, 'Anthropologie', '', '', 'Sciences humaines', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (195, 'Antibiotique', '', '', 'Médicament', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (196, 'Antigua-et-Barbuda', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (197, 'Antilles', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (198, 'Antimusulman', '', '', 'Racisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (199, 'Antisémitisme', '', '', 'Lutte contre les discriminations', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (200, 'Apatride', '', '', 'Droit d''asile', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (201, 'Apiculture', '', 'Abeille', 'Elevage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (202, 'Appareillage', '', '', 'Corps humain et pratique médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (203, 'Appartement thérapeutique', '', '', 'Hôpital', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (204, 'Appel à projet', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (205, 'Appel d''offres', '', '', 'Marché public', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (206, 'Apprenti', '', '', 'Apprentissage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (207, 'Apprentissage', '', '', 'Stage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (208, 'Aptitude au travail', '', '', 'Conditions de travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (209, 'Aquaculture', '', '', 'Pêche', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (210, 'Aqueduc', '', '', 'Ouvrage d''art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (211, 'Aquitaine-Limousin-Poitou-Charentes', '', '', 'France par région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (212, 'Arabie saoudite', '', 'Moyen Orient', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (213, 'Arbitre', '', '', 'Métier du sport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (214, 'Arboriculture', '', '', 'Production végétale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (215, 'Architecte', '', '', 'Métier du bâtiment et de la construction', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (216, 'Architecture', '', '', 'Logement et hébergement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (217, 'Archives', '', '', 'Communication', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (218, 'Ardèche', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (219, 'Ardennes', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (220, 'Argentine', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (221, 'Ariège', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (222, 'Armateur', '', '', 'Transport maritime', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (223, 'Arme chimique', '', '', 'Armement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (224, 'Arme nucléaire', '', '', 'Armement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (225, 'Armée', '', '', 'Défense', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (226, 'Armée de l''air', '', '', 'Forces armées', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (227, 'Armée de terre', '', '', 'Forces armées', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (228, 'Armement', '', '', 'Défense', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (229, 'Arménie', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (230, 'Arrêté', '', '', 'Norme juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (231, 'Art', '', '', 'Culture', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (232, 'Artisan', '', '', 'Artisanat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (233, 'Artisanat', '', '', 'Secteur économique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (234, 'Arts graphiques', '', '', 'Art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (235, 'Arts martiaux mixtes (MMA)', '', '', 'Discipline sportive', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (236, 'Arts plastiques', '', '', 'Art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (237, 'Asie', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (238, 'Asie du Sud-est', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (239, 'Assainissement collectif', '', '', 'Assainissement de l''eau', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (240, 'Assainissement de l''eau', '', '', 'Gestion de l''eau', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (241, 'Assainissement industriel', '', '', 'Assainissement de l''eau', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (242, 'Assainissement non collectif', '', '', 'Assainissement de l''eau', NULL, 'Assainissement autonome/Assainissement individuel');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (243, 'Assemblée nationale', '', '', 'Parlement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (244, 'Assiduité', '', '', 'Action parlementaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (245, 'Assistant de service social', '', '', 'Travailleur social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (330, 'Banque publique d''investissement (BPI)', '', '', 'Aide aux entreprises', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (331, 'Barème', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (246, 'Assistant de vie aux familles', 'Créé par l''arrêté du 11 juillet 2003 relatif au titre professionnel d''assistant de vie, l''assistant de vie aux familles apporte une aide professionnalisée à domicile auprès de familles, de personnes dites fragilisées ou sensibles comme les jeunes enfants, les personnes âgées ou handicapées.', '', 'Travailleur social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (247, 'Assistant familial', '', '', 'Travailleur social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (248, 'Assistante maternelle', '', '', 'Profession sanitaire et sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (249, 'Association', '', '', 'Aide sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (250, 'Association caritative', '', '', 'Association', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (251, 'Association de 1901', '', '', 'Association', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (252, 'Association de défense de l''environnement', '', '', 'Protection de l''environnement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (253, 'Association de malades', '', '', 'Association d''usagers', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (254, 'Association d''usagers', '', '', 'Association', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (255, 'Association générale des institutions de retraite des cadres (AGIRC)', 'Régime de retraite complémentaire des salariés cadres, qui complète le régime ARRCO', '', 'Institutions de retraites complémentaires', NULL, 'Association générale des institutions de retraite des cadres');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (256, 'Association pour le régime de retraite complémentaire des salariés (ARRCO)', 'Régime de retraite complémentaire de tous les salariés du secteur privé', '', 'Institutions de retraites complémentaires', NULL, 'Association pour le régime de retraite complémentaire des salariés');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (257, 'Assujettissement', '', '', 'Fiscalité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (258, 'Assurance', '', '', 'Financement de l''économie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (259, 'Assurance chômage', '', 'Pôle emploi', 'Chômage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (260, 'Assurance décès', '', '', 'Assurance sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (261, 'Assurance invalidité', '', '', 'Assurance sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (262, 'Assurance maladie', '', '', 'Sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (263, 'Assurance sociale', '', '', 'Sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (264, 'Assurance vie', '', '', 'Assurance', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (265, 'Assuré social', '', '', 'Assurance maladie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (266, 'Asthme', '', '', 'Maladie de l''appareil respiratoire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (267, 'Astreinte', '', '', 'Durée du travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (268, 'Athlétisme', '', '', 'Discipline sportive', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (269, 'Atlanta', '', '', 'Etats-Unis', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (270, 'Atlas', '', '', 'Publication', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (271, 'Attentat', '', '', 'Terrorisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (272, 'Attractivité du territoire', 'Capacité d''un territoire, pour une période donnée, à attirer toutes sortes d''activités économiques et facteurs de production mobiles', '', 'Politique d''aménagement du territoire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (273, 'Attributions des fonds de péréquation et de solidarité', '', '', 'Fiscalité locale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (274, 'Aube', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (275, 'Aude', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (276, 'Audience', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (277, 'Audiovisuel', '', '', 'Information', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (278, 'Australie', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (279, 'Autisme', '', '', 'Personne handicapée', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (280, 'Autobiographie', '', '', 'Publication', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (281, 'Autobus', '', '', 'Transport en commun en site propre', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (282, 'Autocar', '', '', 'Transport routier de personnes', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (283, 'Auto-entrepreneur', '', '', 'Auto-entreprise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (284, 'Auto-entreprise', 'Nouveau régime instauré par la loi 2008-776 du 4 août 2008 qui s''adresse en particulier aux personnes qui ne veulent pas nécessairement créer une société commerciale pour exercer leur nouvelle activité et souhaitent pouvoir débuter ou arrêter facilement leur activité indépendante.', '', 'Statut de l''entreprise', NULL, 'Auto-entrepreneur');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (285, 'Autogestion', '', '', 'Mode de gestion', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (286, 'Automédication', '', '', 'Comportement de santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (287, 'Autonomie', '', '', 'Vieillesse', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (288, 'Autopsie', '', '', 'Décès', NULL, 'Autopsie médico-scientifique');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (289, 'Autorisation', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (290, 'Autorisation de Mise sur le Marché (AMM)', '', '', 'Contrôle des médicaments', NULL, 'Autorisation de mise sur le marché');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (291, 'Autorisation Temporaire d''Utilisation (ATU)', '', '', 'Contrôle des médicaments', NULL, 'Autorisation temporaire d''utilisation');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (292, 'Autorité administrative indépendante (AAI)', '', '', 'Institution publique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (293, 'Autorité parentale', '', '', 'Droit de la famille', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (294, 'Autoroute', '', '', 'Infrastructure de transport routier', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (295, 'Autoroute de la mer', '', '', 'Transport maritime', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (296, 'Autres contributions directes', '', '', 'Fiscalité locale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (297, 'Autres décorations', '', '', 'Décoration', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (298, 'Autriche', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (299, 'Auvergne-Rhône-Alpes', '', '', 'France par région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (300, 'Auxiliaire de vie scolaire', '', '', 'Métier de l''éducation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (301, 'Auxiliaire de vie sociale', 'Les auxiliaires de vie deviennent des auxiliaires de vie sociale, diplômés (décret 2001-410)', '', 'Travailleur social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (302, 'Avalanche', '', '', 'Catastrophe naturelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (303, 'Avenant', '', '', 'Contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (304, 'Avertisseur de radar', '', '', 'Radar', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (305, 'Aveyron', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (306, 'Aviculture', '', 'Viande de volaille', 'Elevage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (307, 'Avion', '', '', 'Aéronef', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (308, 'Aviron', '', '', 'Sport nautique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (309, 'Avis', '', '', 'Norme juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (310, 'Avocat', '', '', 'Métier du droit', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (311, 'Avortement', '', '', 'Obstétrique', NULL, 'IVG');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (312, 'Azerbaïdjan', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (313, 'Baccalauréat', '', '', 'Diplôme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (314, 'Baccalauréat professionnel et technique', '', '', 'Diplôme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (315, 'Bagagiste', '', '', 'Personnel au sol', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (316, 'Bahamas', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (317, 'Bahreïn', '', 'Moyen Orient', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (318, 'Bail', '', '', 'Bailleur', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (319, 'Bail emphytéotique', 'Le bail emphytéotique est un bail immobilier de très longue durée, qui confère au preneur un droit réel sur la chose donnée à bail, à charge pour lui d''améliorer le fonds et de payer un loyer modique, les améliorations bénéficiant au bailleur en fin de bail sans que ce dernier ait à indemniser l''emphytéote.', '', 'Bail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (320, 'Bailleur', '', '', 'Relations propriétaire-locataire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (321, 'Baleine', '', '', 'Classement des espèces protégées', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (322, 'Balkans', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (323, 'Bandes dessinées', '', '', 'Art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (324, 'Bangladesh', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (325, 'Banlieue', '', '', 'Ville', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (326, 'Banque', '', '', 'Etablissement financier', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (327, 'Banque alimentaire', '', '', 'Aide alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (332, 'Barrage', '', '', 'Ouvrage d''art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (333, 'Bas Rhin', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (334, 'Basketball', '', '', 'Discipline sportive', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (335, 'Bassin de vie', '', '', 'Milieu rural', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (336, 'Bassin méditerranéen', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (337, 'Bassin versant', '', '', 'Cours d''eau', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (338, 'Bâtiment', '', '', 'Rénovation urbaine', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (339, 'Belgique', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (340, 'Belize', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (341, 'Bénéfice', '', '', 'Gestion comptable', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (342, 'Bénéficiaire', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (343, 'Benelux', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (344, 'Bénévolat', '', '', 'Volontariat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (345, 'Bénin', '', '', 'Pays étranger', NULL, 'République populaire du Bénin');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (346, 'BEP', '', '', 'Diplôme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (347, 'Besançon', '', '', 'Doubs', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (348, 'Bhoutan', '', '', 'Pays étranger', NULL, 'Bouthan');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (349, 'Bibliothécaire-Documentaliste', '', '', 'Métier de l''information', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (350, 'Bibliothèque', '', '', 'Documentation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (351, 'Biélorussie', '', 'CEI', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (352, 'Bien-être animal', '', 'Médecine vétérinaire', 'Faune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (353, 'Bilan de santé', '', '', 'Prévention en santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (354, 'Bilan énergétique', '', '', 'Logement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (355, 'Bilan social', '', '', 'Relations professionnelles', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (356, 'Biodiversité', '', '', 'Milieu naturel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (357, 'Bioéthique', '', '', 'Corps humain et pratique médicale', NULL, 'Ethique médicale');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (358, 'Biographie', '', '', 'Publication', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (359, 'Biologie', '', '', 'Recherche médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (360, 'Biomasse', '', '', 'Energie renouvelable', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (361, 'Bioterrorisme', '', '', 'Crime et délit', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (362, 'Birmanie', '', 'Myanmar', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (363, 'Biscuiterie', '', '', 'Industrie agroalimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (364, 'Bisphénol A', 'Le bisphénol A (BPA) est un composé chimique issu de la réaction entre deux équivalents de phénol et un équivalent d''acétone.', '', 'Polluant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (365, 'Bizutage', '', '', 'Education', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (366, 'Blois', '', '', 'Loir et Cher', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (367, 'Boisson', '', '', 'Produit alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (368, 'Bolivie', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (369, 'Bordeaux', '', '', 'Gironde', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (370, 'Bosnie-Herzégovine', '', 'Yougoslavie', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (371, 'Botswana', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (372, 'Botulisme', '', '', 'Intoxication alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (373, 'Bouches du Rhône', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (374, 'Bouddhisme', '', '', 'Religion', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (375, 'Boues', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (376, 'Boulangerie', '', '', 'Industrie agroalimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (377, 'Boulimie', '', '', 'Trouble du comportement alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (378, 'Boulogne-sur-Mer', '', '', 'Pas de Calais', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (379, 'Bourgogne-Franche-Comté', '', '', 'France par région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (380, 'Bourse', '', '', 'Scolarité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (381, 'Bourse du commerce', '', '', 'Commerce', NULL, 'Bourse de commerce');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (382, 'Bovin', '', 'Viande de bœuf', 'Cheptel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (383, 'Boxe', '', '', 'Discipline sportive', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (384, 'Branche professionnelle', '', '', 'Relations professionnelles', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (385, 'Brésil', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (386, 'Brest', '', '', 'Finistère', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (387, 'Bretagne', '', '', 'France par région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (388, 'Brevet d''invention', '', '', 'Droit de la propriété industrielle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (389, 'Brittany Ferries', '', '', 'Ferry', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (390, 'Brochure', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (391, 'Bruit', '', '', 'Pollution sonore', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (392, 'Bruit de voisinage', '', '', 'Bruit', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (393, 'Brunei', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (394, 'BTP', '', '', 'Type d''industrie', NULL, 'bâtiment-travaux publics/Industrie du bâtiment/Travaux publics');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (395, 'BTS', '', '', 'Diplôme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (396, 'Budget', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (397, 'Budget communautaire', '', '', 'Politique commune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (398, 'Budget de l''éducation', '', '', 'Politique de l''éducation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (399, 'Budget de l''Etat', '', '', 'Finances et comptes public', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (400, 'Budget familial', '', '', 'Economie', NULL, 'budget de la famille');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (401, 'Budget global', '', '', 'Gestion hospitalière', NULL, 'DGA/Dotation globale annuelle');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (402, 'Bulgarie', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (403, 'Bulletin de paye', '', '', 'Salaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (404, 'Bureau d''aide sociale', '', '', 'Equipement social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (405, 'Bureau d''enquêtes et d''analyses (BEA)', '', '', 'Sécurité aérienne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (406, 'Bureau international du travail (BIT)', '', '', 'Organisation internationale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (407, 'Burkina Faso', '', '', 'Pays étranger', NULL, 'Haute Volta');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (408, 'Burn-out', '', '', 'Maladie professionnelle', NULL, 'Souffrance');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (409, 'Burundi', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (410, 'Cabinet ministériel', '', '', 'Ministère', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (411, 'Cadavre d''animal', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (412, 'Cadeau', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (413, 'Cadre de santé', 'Créé par le décret 95-916 du 18 août 1995', '', 'Profession paramédicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (414, 'Caisse d''Allocations Familiales (CAF)', '', '', 'Organisme de sécurité sociale', NULL, 'Caisse d''allocations familiales');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (415, 'Caisse d''assurance maladie', '', '', 'Organisme de sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (416, 'Caisse de retraite', '', '', 'Organisme de sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (417, 'Caisse nationale de retraite des agents des collectivités locales', '', '', 'Retraite de la fonction publique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (418, 'Calendrier', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (419, 'Calorifugeage', '', '', 'Technique d''isolation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (420, 'Calvados', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (421, 'Cambodge', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (422, 'Cameroun', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (423, 'Campagne', '', '', 'Site naturel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (424, 'Campagne électorale', '', '', 'Election', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (425, 'Camping', '', '', 'Hébergement touristique', NULL, 'Terrain de camping');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (426, 'Canada', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (427, 'Canal', '', '', 'Ouvrage d''art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (428, 'Canal du midi', '', '', 'Canaux', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (429, 'Canal Rhin-Rhône', '', '', 'Canaux', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (430, 'Canal Seine Nord Europe', '', '', 'Canaux', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (431, 'Canalisation', '', '', 'Ouvrage d''art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (432, 'Canaries', '', '', 'Espagne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (433, 'Canaux', '', '', 'Transport fluvial', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (434, 'Cancer', '', '', 'Pathologie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (435, 'Cancérologie', '', '', 'Spécialité médicale', NULL, 'Oncologie');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (436, 'Candidature', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (437, 'Candidature aux jeux olympiques', '', '', 'Jeux olympiques d''été', NULL, 'Paris 2024');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (438, 'Canicule', '', '', 'Météorologie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (439, 'Cannabis', '', '', 'Drogue', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (440, 'Cannes', '', '', 'Alpes Maritime', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (441, 'Canoë kayak', '', '', 'Sport nautique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (442, 'Cantal', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (443, 'CAP {diplôme}', '', '', 'Diplôme', NULL, 'Certificat d''aptitude professionnelle');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (444, 'Capital-décès', 'Le capital-décès est une indemnité. Elle permet aux proches de l''assuré de faire face aux frais immédiats entraînés par son décès (notamment les frais d''obsèques).', '', 'Assurance décès', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (445, 'Capitalisme', '', '', 'Système économique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (446, 'Caprin', '', '', 'Cheptel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (447, 'Captage', '', 'Source', 'Production de l''eau', NULL, 'Recaptage');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (448, 'Cap-Vert', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (449, 'Caraïbes', '', '', 'Zone géographique et géopolitique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (450, 'Carbone', '', '', 'Substances chimiques', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (451, 'Carburant', '', '', 'Energie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (452, 'Cardiologie', '', '', 'Spécialité médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (453, 'Cargo', '', '', 'Navire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (454, 'Carnet de santé', '', '', 'Surveillance médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (455, 'Carrefour', '', '', 'Infrastructure de transport routier', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (456, 'Carrière professionnelle', '', '', 'Travail', NULL, 'Parcours professionnel/Trajectoire professionnelle');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (457, 'Carroyage', '', '', 'Nouvelle géographie prioritaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (458, 'Carte de vœux', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (459, 'Carte d''invalidité', '', '', 'Assurance maladie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (460, 'Carte du combattant', '', '', 'Ancien combattant et victime de guerre', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (461, 'Carte européenne d''assurance maladie', '', '', 'Assurance maladie', NULL, 'CEAM');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (462, 'Carte judiciaire', '', '', 'Organisation de la justice', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (463, 'Carte sanitaire', '', '', 'Planification sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (464, 'Carte vitale', '', '', 'Assurance maladie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (465, 'Catalogue', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (466, 'Catastrophe naturelle', '', 'Situation de crise', 'Milieu naturel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (467, 'Catégorie A', '', '', 'Structure des carrières', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (468, 'Catégorie B', '', '', 'Structure des carrières', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (469, 'Catégorie C', '', '', 'Structure des carrières', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (470, 'Catholicisme', '', '', 'Christianisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (471, 'Cellule', '', '', 'Recherche médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (472, 'Cellule de crise', '', '', 'Situation de crise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (473, 'Cellule souche', '', '', 'Cellule', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (474, 'Centrale nucléaire', '', '', 'Energie nucléaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (475, 'Centre antipoison', 'Les centres antipoison (CAP) et de toxicovigilance sont des centres d''information sur les risques toxiques de tous les produits médicamenteux, industriels et naturels. Ils ont un rôle d''information auprès des professionnels de santé et du public.', '', 'Etablissement sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (476, 'Centre commercial', '', '', 'Equipement urbain', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (477, 'Centre communal d''action sociale (CCAS)', '', '', 'Equipement social', NULL, 'Centre communal d''action sociale');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (478, 'Centre d''accueil', '', '', 'Hébergement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (479, 'Centre d''accueil pour les demandeurs d''asile', '', '', 'Demandeur d''asile', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (480, 'Centre de documentation', '', '', 'Documentation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (481, 'Centre de gestion', '', '', 'Fonction publique territoriale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (482, 'Centre de loisirs', '', '', 'Equipement de loisirs', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (483, 'Centre de lutte contre le cancer', 'Remplace les centres anti-cancéreux à partir de 1964. Les centres régionaux de lutte contre le cancer (CRLCC), érigés le 1er octobre 1945 par une ordonnance du Général de Gaulle (art. L.311 & s. du Code de la santé publique). Les centres de lutte contre le cancer sont des établissements entièrement consacrés au dépistage, au diagnostic et aux traitements des cancers.', '', 'Etablissement sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (484, 'Centre de rétention administrative', '', '', 'Rétention administrative', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (485, 'Centre de santé', 'Les centres de santé sont des structures sanitaires de proximité qui assurent des activités de soins sans hébergement et mènent des actions de santé publique, de prévention, d''éducation pour la santé, d''éducation thérapeutique des patients, des actions sociales et pratiquent la délégation du paiement du tiers.', '', 'Etablissement sanitaire', NULL, 'Centre de santé intégré/Dispensaire');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (486, 'Centre de transfusion sanguine', '', '', 'Etablissement sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (487, 'Centre de vacances', '', '', 'Equipement touristique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (488, 'Centre de vacances et de loisirs', '', '', 'Equipement social', NULL, 'Centre aéré/Colonie de vacances');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (489, 'Centre d''hébergement', '', '', 'Hébergement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (490, 'Centre équestre', '', '', 'Equipement de loisirs', NULL, 'Etablissement équestre/Relais équestre');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (491, 'Centre hospitalier universitaire (CHU)', '', '', 'Hôpital', NULL, 'Centre hospitalier universitaire');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (492, 'Centre médico-social', 'Un centre médico-social regroupe des professionnels médicaux et sociaux qui sont à l''écoute et proposent à titre gratuit : un accueil adapté pour les personnes en difficulté, des consultations de dépistage et de prévention, des informations, des conseils, une orientation médicale et sociale.', '', 'Etablissement sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (493, 'Centre Régional des Œuvres Universitaires et Scolaires (CROUS)', '', '', 'Scolarité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (494, 'Centre-Val-de-Loire', '', '', 'France par région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (495, 'Céréale', '', '', 'Culture céréalière', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (496, 'Cérémonie', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (497, 'Certificat de nationalité', '', '', 'Droit de la nationalité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (498, 'Certificat d''urbanisme', '', '', 'Document d''urbanisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (499, 'Certificat médical', '', '', 'Surveillance médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (500, 'CFDT', '', '', 'Syndicat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (501, 'CFE-CGC', '', '', 'Syndicat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (502, 'CFTC', '', '', 'Syndicat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (503, 'CGT', '', '', 'Syndicat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (504, 'Châlons-en-Champagne', '', '', 'Marne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (505, 'Chambre d''agriculture', '', '', 'Agriculture', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (506, 'Chambre de commerce (CCI)', '', '', 'Economie', NULL, 'Chambre de commerce et d''industrie');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (507, 'Chambre des métiers et d''artisanat', '', '', 'Economie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (508, 'Chambre des professions libérales', '', '', 'Economie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (509, 'Chambre régionale des comptes', '', '', 'Cour des comptes', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (510, 'Chambre universitaire', '', '', 'Scolarité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (511, 'Championnat', '', '', 'Evénement sportif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (512, 'Changement climatique', '', '', 'Protection de l''environnement', NULL, 'Réchauffement climatique');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (513, 'Chanteur', '', '', 'Métier du spectacle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (514, 'Charbon', '', '', 'Energie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (515, 'Charente', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (603, 'Commerce ambulant', '', '', 'Commerce', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (516, 'Charente Maritime', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (517, 'Charges', '', '', 'Syndic', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (518, 'Charte', '', '', 'Texte juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (519, 'Charte communautaire des droits sociaux fondamentaux des travailleurs', '', '', 'Droit social européen', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (520, 'Charte de la santé', '', '', 'Santé individuelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (521, 'Charte de l''environnement', '', '', 'Politique de l''environnement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (522, 'Charte des droits fondamentaux de l''Union européenne', '', '', 'Droits de l''homme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (523, 'Charte sociale européenne', '', '', 'Droit social européen', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (524, 'Chasse', '', '', 'Agriculture', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (525, 'Chasse, pêche, nature et traditions (CPNT)', '', '', 'Parti politique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (526, 'Chauffage', '', '', 'Equipement du logement', NULL, 'Chauffage domestique');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (527, 'Chemin communal', '', '', 'Infrastructure de transport routier', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (528, 'Cheminée', '', '', 'Equipement du logement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (529, 'Cheptel', '', '', 'Elevage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (530, 'Chèque emploi associatif', '', '', 'Moyen de paiement et de déclaration utilisé dans les emplois', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (531, 'Chèque emploi service universel', 'Créé par la loi 2005-841 du 16 juillet 2005, le chèque emploi service universel remplace le chèque emploi service et le titre emploi service.', '', 'Moyen de paiement et de déclaration utilisé dans les emplois', NULL, 'CESU');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (532, 'Chèque transport', 'Créé par la loi 2006-1770, c''est un titre de paiement préfinancé par l''employeur pour le paiement des dépenses liées au déplacement des salariés entre leur résidence et leur lieu de travail.', '', 'Moyen de paiement et de déclaration utilisé dans les emplois', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (533, 'Chèque vacances (ANCV)', '', '', 'Moyen de paiement et de déclaration utilisé dans les emplois', NULL, 'ANCV');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (534, 'Cher', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (535, 'Chercheur', '', '', 'Métier de la recherche', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (536, 'Chili', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (537, 'Chimie', '', '', 'Recherche', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (538, 'Chimiothérapie', '', '', 'Thérapeutique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (539, 'Chine', '', '', 'Pays étranger', NULL, 'République populaire de Chine');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (540, 'Chirurgie', '', '', 'Spécialité médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (541, 'Chirurgie dentaire', '', '', 'Chirurgie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (542, 'Chirurgie plastique', 'La chirurgie plastique englobe la totalité des interventions qui modifient, réparent ou embellissent les téguments et les formes.', '', 'Chirurgie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (543, 'Chirurgien-dentiste', '', '', 'Profession médicale', NULL, 'Dentiste');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (544, 'Cholestérol', '', '', 'Pathologie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (545, 'Chômage', '', '', 'Emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (546, 'Chômeur', '', '', 'Chômage', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (547, 'Christianisme', '', '', 'Religion', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (548, 'Chromosome', '', '', 'Cellule', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (549, 'Chypre', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (550, 'Cigarette électronique', '', '', 'Tabagisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (551, 'Cimetière', '', '', 'Pompes funèbres', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (552, 'Cinéma', '', '', 'Art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (553, 'Circoncision', '', '', 'Modification corporelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (554, 'Circulaire', '', '', 'Norme juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (555, 'Circulation aérienne', '', '', 'Infrastructure aéronautique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (556, 'Circulation alternée', '', 'Politique de l''environnement', 'Circulation routière', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (557, 'Circulation routière', '', '', 'Sécurité routière', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (558, 'Cirque', '', '', 'Art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (559, 'Citoyenneté', '', '', 'Nationalité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (560, 'Classe d''Intégration Scolaire (CLIS)', 'Les CLIS ont été créées pour organiser la scolarité des élèves qui ne peuvent, dans l''immédiat, être accueillis dans une classe ordinaire et pour lesquels l''admission dans un établissement spécialisé ne s''impose pas.', '', 'Intégration scolaire', NULL, 'CLIS');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (561, 'Classe moyenne', '', '', 'Classe sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (562, 'Classe ouvrière', '', '', 'Classe sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (563, 'Classe préparatoire aux grandes écoles', '', '', 'Grande école', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (564, 'Classe sociale', '', '', 'Société', NULL, 'Milieu social');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (565, 'Classement des communes', '', '', 'Commune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (566, 'Classement des espèces protégées', '', '', 'Faune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (567, 'Clermont-Ferrand', '', '', 'Puy de Dôme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (568, 'Climatisation', '', '', 'Equipement du logement', NULL, 'Air conditionné');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (569, 'Climatologie', '', '', 'Météorologie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (570, 'Climatosceptique', '', '', 'Changement climatique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (571, 'Clinique', '', '', 'Etablissement sanitaire', NULL, 'Clinique privée');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (572, 'Clipperton', '', '', 'Sous l''autorité directe du Gouvernement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (573, 'Clonage', '', '', 'Génétique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (574, 'Club sportif', '', '', 'Sport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (575, 'Cocaïne', '', '', 'Drogue', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (576, 'Code', '', '', 'Norme juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (577, 'Code de la route', '', '', 'Sécurité routière', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (578, 'Co-gestion', '', '', 'Mode de gestion', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (579, 'Collecte des déchets', '', '', 'Gestion des déchets', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (580, 'Collecte des eaux pluviales', '', '', 'Réseau d''assainissement', NULL, 'Réseau d''eau pluviale');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (581, 'Collecte et traitement des eaux usées', '', '', 'Assainissement collectif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (582, 'Collectivité sui generis', '', '', 'France d''outre-mer', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (583, 'Collectivités d''outre-mer (COM)', '', '', 'France d''outre-mer', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (584, 'Collectivités territoriales', '', '', 'Organisation territoriale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (585, 'Collège', '', '', 'Enseignement secondaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (586, 'Collège interentreprises de sécurité, de santé et des conditions de travail (CISSCT)', '', '', 'Représentation du personnel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (587, 'Colmar', '', '', 'Haut Rhin', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (588, 'Colombie', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (589, 'Colonialisme', '', '', 'Idéologie politique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (590, 'Combustible nucléaire', '', '', 'Energie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (591, 'Comédien', '', '', 'Métier du spectacle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (592, 'Comité', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (593, 'Comité d''entreprise', '', '', 'Représentation du personnel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (594, 'Comité des citoyens', '', '', 'Vie démocratique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (595, 'Comité des régions', '', '', 'Organe communautaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (596, 'Comité d''hygiène, de sécurité et des conditions de travail (CHSCT)', '', '', 'Instance de représentation et de dialogue', NULL, 'Comité d''hygiène de sécurité et des conditions de travail');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (597, 'Comité économique et social des Communautés européennes', '', '', 'Organe communautaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (598, 'Comité interministériel des villes', '', '', 'Politique de la ville', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (599, 'Comité international de la Croix-Rouge (CICR)', '', '', 'Organisation internationale', NULL, 'Comité international de la Croix-Rouge');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (600, 'Commémoration', '', '', 'Défense', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (601, 'Commerce', '', '', 'Secteur économique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (602, 'Commerce alimentaire', '', '', 'Commerce de détail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (605, 'Commerce extérieur', '', '', 'Economie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (606, 'Commission', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (607, 'Commission administrative paritaire (CAP)', '', '', 'Instance de représentation et de dialogue', NULL, 'Commission administrative paritaire');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (608, 'Commission d''accès aux documents administratifs (CADA)', '', '', 'Accès aux documents administratifs', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (609, 'Commission de recours amiable', '', '', 'Contentieux de la sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (610, 'Commission de sécurité', '', '', 'Dispositif de sécurité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (611, 'Commission des comptes de la sécurité sociale', '', '', 'Comptes de la sécurité sociale', NULL, 'CCSS');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (612, 'Commission des droits et de l''autonomie des personnes handicapées ', 'Cette commission prend les décisions relatives à l''ensemble des droits d''une personne handicapée notamment en matière d''attribution de prestations et d''orientation (Loi 2005-101 du 11 février 2005. Elle remplace la Commission départementale de l''éducation spéciale (CDES), la COTOREP et le Site pour la vie autonome.', 'Commission technique d''orientation et de reclassement professionnel (COTOREP)', 'Maison départementale des personnes handicapées (MDPH)', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (613, 'Commission européenne', '', '', 'Institution communautaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (614, 'Commune', '', '', 'Collectivités territoriales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (615, 'Communes nouvelles', '', '', 'Commune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (616, 'Communication', '', '', '02 - COMMUNICATION-CULTURE-EDUCATION', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (617, 'Comores', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (618, 'Compagnie aérienne', '', '', 'Infrastructure aéronautique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (619, 'Compagnie d''assurance', '', '', 'Assurance', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (620, 'Compagnonnage', '', '', 'Type de formation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (621, 'Comparaison', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (622, 'Comparaison internationale', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (623, 'Compensation du handicap', '', '', 'Prestation handicapé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (624, 'Compétitivité', '', '', 'Macroénomie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (625, 'Complément alimentaire', 'Un complément alimentaire est une denrée alimentaire dont le but est de fournir un complément de nutriments. À la différence des additifs alimentaires, qui sont mélangés à certains aliments, le complément est une source concentrée qui est vendue de façon isolée.', '', 'Produit alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (626, 'Complément de libre choix de mode de garde', 'Le complément de libre choix du mode de garde s''est substitué, depuis le 1er janvier 2004, à l''allocation pour la garde d''enfant à domicile et l''allocation d''aide à la famille pour l''emploi d''une assistante maternelle agréée (article L 531-5 du code de la sécurité sociale).', '', 'Prestation d''accueil du jeune enfant (PAJE)', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (627, 'Complémentaire santé', '', '', 'Sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (628, 'Complémentaire santé d''entreprise', '', '', 'Mutuelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (629, 'Comportement au travail', '', '', 'Conditions de travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (630, 'Comportement de santé', '', '', 'Santé individuelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (631, 'Comptabilité nationale', '', '', 'Budget de l''Etat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (632, 'Compte personnel de formation (CPF)', '', '', 'Droit à la formation', NULL, 'CPF');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (633, 'Comptes de la sécurité sociale', '', '', 'Sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (634, 'Compteur électrique', '', '', 'Réseau de distribution', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (635, 'Concertation', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (636, 'Concession autoroutière', '', '', 'Autoroute', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (637, 'Concours administratif', '', '', 'Statut général', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (638, 'Concours financier exceptionnel de l''Etat', '', '', 'Finances locales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (639, 'Concours financier pérenne de l''Etat', '', '', 'Finances locales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (640, 'Concurrence', '', '', 'Macroéconomie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (641, 'Conditions de détention', '', '', 'Prison', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (642, 'Conditions de travail', '', '', 'Travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (643, 'Condoléances', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (644, 'Conférence de la famille', 'Depuis 1996, la Conférence de la famille réunit tous les ans, sous la présidence du Premier ministre, les associations familiales, les partenaires sociaux, les organismes de protection sociale, des élus locaux et plusieurs ministres. Elle permet de présenter les grandes orientations et l''état d''avancement de la politique familiale. ', '', 'Politique de la famille', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (645, 'Conférence intergouvernementale', 'La Conférence intergouvernementale (CIG) est la réunion des représentants des gouvernements des Etats membres. Son objectif est de négocier des modifications aux traités de l''Union européenne. Ce n''est pas une institution permanente.', '', 'Organisation communautaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (646, 'Conférence mondiale sur les femmes', 'Créée en 1975, la première conférence a eu lieu à Mexico', '', 'Organisation des nations unies (ONU)', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (647, 'Conférence nationale de lutte contre l''exclusion', '', '', 'Politique de lutte contre l''exclusion', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (648, 'Conférence nationale de santé', '', '', 'Politique de la santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (649, 'Conférence régionale de santé et de l''Autonomie (CRSA)', '', '', 'Politique de la santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (650, 'Confidentialité', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (651, 'Confiserie', '', '', 'Industrie agroalimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (652, 'Conflit armé', '', '', 'Défense', NULL, 'Guerre');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (653, 'Conflit du travail', '', '', 'Relations professionnelles', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (654, 'Congé', '', '', 'Travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (655, 'Congé annuel', '', '', 'Congé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (656, 'Congé bonifié', '', '', 'Congé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (657, 'Congé d''accompagnement de fin de vie', '', '', 'Congé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (658, 'Congé de formation', '', '', 'Congé', NULL, 'Congé formation/Congé individuel de formation');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (659, 'Congé de maladie', '', '', 'Congé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (660, 'Congé de maternité', '', '', 'Congé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (661, 'Congé de paternité', '', '', 'Congé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (662, 'Congo', '', '', 'Pays étranger', NULL, 'République populaire du Congo');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (663, 'Congrès', '', '', 'Parlement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (664, 'Conjoint collaborateur', 'Personne qui participe à l''activité professionnelle non salariée de son conjoint. En droit de la sécurité sociale, il relève à titre obligatoire du régime social des indépendants (L 741-6 CSS) Au plan commercial, le conjoint de l''entrepreneur individuel peut opter entre 3 statuts distincts : collaborateur, salarié ou associé.', '', 'Retraite', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (665, 'Conjoncture économique', '', '', 'Macroéconomie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (666, 'Conseil constitutionnel', '', '', 'Institution politique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (667, 'Conseil de la vie sociale', 'Remplace le conseil d''établissement (loi du 1er janvier 2001)', '', 'Equipement social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (668, 'Conseil de l''Europe', '', '', 'Institution européenne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (669, 'Conseil de l''Union européenne', '', '', 'Institution communautaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (670, 'Conseil de Prud''homme', '', '', 'Juridiction civile', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (671, 'Conseil départemental', '', 'Elu', 'Département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (672, 'Conseil d''Etat', '', '', 'Juridiction administrative', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (673, 'Conseil économique social et environnemental (CESE)', '', '', 'Institution politique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (674, 'Conseil municipal', '', '', 'Commune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (675, 'Conseil régional', '', 'Elu', 'Région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (676, 'Conseiller conjugal et familial', 'Le conseiller conjugal reçoit des personnes et des couples, parfois des familles, ayant une demande d''aide liée à des difficultés relationnelles, affectives, sexuelles ou éducatives, rencontrées dans leur vie personnelle, leur vie de couple ou leur vie familiale.', '', 'Travailleur social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (677, 'Conseiller en économie sociale et familiale', '', '', 'Travailleur social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (678, 'Conseiller prud''homme', '', '', 'Conseil de Prud''homme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (679, 'Conservation des aliments', '', '', 'Produit alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (680, 'Conserverie', '', '', 'Industrie agroalimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (681, 'Consommateur', '', '', 'Consommation', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (682, 'Consommation', '', '', 'Economie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (683, 'Consommation énergétique', '', '', 'Energie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (684, 'Constitution', '', '', 'Droit constitutionnel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (685, 'Construction', '', '', 'Logement et hébergement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (686, 'Construction européenne', '', '', 'Questions européennes', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (687, 'Construction navale', '', '', 'Type d''industrie', NULL, 'Chantier naval');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (688, 'Consulat', '', '', 'Représentation diplomatique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (689, 'Consultation', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (690, 'Contentieux', '', '', 'Procédure', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (691, 'Contentieux administratif', '', '', 'Droit administratif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (692, 'Contentieux de la sécurité sociale', '', '', 'Droit de la sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (693, 'Continuité territoriale', '', '', 'Transport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (694, 'Contournement', '', '', 'Périphérique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (695, 'Contraception', '', '', 'Corps humain et pratique médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (696, 'Contrat', '', '', 'Texte juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (697, 'Contrat à durée déterminée à objet défini', '', '', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (698, 'Contrat à temps partagé', '', '', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (699, 'Contrat administratif', '', '', 'Droit public', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (700, 'Contrat d''apprentissage', '', 'Apprenti/Apprentissage/', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (701, 'Contrat d''assurance', '', '', 'Assurance', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (702, 'Contrat d''autonomie', 'Dispositif issu du plan "Espoir banlieues" en vue de favoriser l''accès à l''emploi des jeunes dans les zones urbaines sensibles (ZUS)', '', 'Insertion professionnelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (703, 'Contrat d''avenir', 'Créé par la loi 2005-31 du 18 janvier 2005, le contrat d''avenir est destiné aux titulaires du RMI, de l''ASS ou de l''API et doit prévoir des actions de formation. Il sera remplacé au 1er janvier 2010 par le contrat unique d''insertion (loi RSA 2008-1149 du 1er décembre 2008).', '', 'Mesures pour l''emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (704, 'Contrat de développement territorial', '', '', 'Politique de la ville', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (705, 'Contrat de génération', 'Le contrat de génération est un dispositif d''aide à l''emploi visant à créer des binômes jeune-senior pour encourager l''embauche des jeunes et garantir le maintien dans l''emploi des seniors, tout en assurant la transmission des compétences.', '', 'Mesures pour l''emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (706, 'Contrat de partenariat', '', '', 'Contrat administratif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (707, 'Contrat de pays', '', '', 'Développement local', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (708, 'Contrat de plan', '', '', 'Développement régional', NULL, 'Contrat de plan Etat-région');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (709, 'Contrat de professionnalisation', 'Se substitue au contrat de qualification, d''adaptation et d''orientation', 'Formation en alternance', 'Mesures pour l''emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (710, 'Contrat de responsabilité parentale', 'Proposé par le président du Conseil général, le contrat de responsabilité parentale doit aider les parents à exercer pleinement leur autorité parentale lorsqu''ils sont confrontés à l''absentéisme scolaire de leur enfant ou à une grave difficulté éducative.', '', 'Autorité parentale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (711, 'Contrat de séjour', '', '', 'Contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (712, 'Contrat de site', 'Dispositif sous la forme d''un contrat entre l''Etat, les collectivités territoriales et les acteurs socio-économiques destiné à mettre en place les actions de revitalisation nécessaires à court et moyen termes en faveur des territoires les plus touchés par les mutations économiques', '', 'Développement local', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (713, 'Contrat de travail', '', '', 'Travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (714, 'Contrat de travail à durée déterminée', '', '', 'Type de contrat', NULL, 'CDD');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (715, 'Contrat de travail à durée indéterminée', '', '', 'Type de contrat', NULL, 'CDI');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (716, 'Contrat de travail à temps partiel', '', '', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (717, 'Contrat de travail intermittent', '', '', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (718, 'Contrat de travail international', '', '', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (719, 'Contrat de travail temporaire', '', '', 'Type de contrat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (720, 'Contrat de ville nouvelle génération', '', '', 'Politique de la ville', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (721, 'Contrat d''insertion dans la vie sociale (CIVIS)', '', '', 'Mesures pour l''emploi', NULL, 'Contrat d''insertion dans la vie sociale');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (722, 'Contrat jeunes en entreprise (CJE)', '', '', 'Aide aux entreprises', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (723, 'Contrat local de santé', '', '', 'Planification sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (724, 'Contrat local de sécurité', '', '', 'Politique de sécurité', NULL, 'CLSPD (Contrat local de sécurité et de prévention de la délinquance)');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (725, 'Contrat nouvelles embauches', 'Créé par l''ordonnance 2005-893 du 1er août 2005, le contrat nouvelles embauches permet aux entreprises qui emploient au plus 10 salariés de conclure ce contrat sans détermination de durée qui peut être rompu à tout moment pendant une période de 1 an.', '', 'Type de contrat', NULL, 'CNE');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (726, 'Contrat pluriannuel d''objectifs et de moyens', 'Le contrat pluriannuel d''objectifs et de moyens (CPOM) est, en droit français, le contrat par lequel un organisme gestionnaire d''établissements ou services sociaux ou médico-sociaux s''engage auprès d''une autorité de tarification sur une période pluriannuelle pour, en fonction des objectifs d''activité poursuivis par ses établissements, bénéficier d''allocations budgétaires correspondantes. Le régime juridique du CPOM est défini à l''article L. 313-11 du Code de l''action sociale et des familles (CASF).', '', 'Contrat', NULL, 'CPOM');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (727, 'Contrat première embauche', '', '', 'Type de contrat', NULL, 'CPE');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (728, 'Contrat unique d''insertion (CUI)', '', '', 'Mesures pour l''emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (729, 'Contrefaçon', '', '', 'Marque', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (730, 'Contribution additionnelle de solidarité pour l''autonomie', '', '', 'Prélèvement social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (731, 'Contribution économique territoriale', '', '', 'Fiscalité locale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (732, 'Contribution foncière des entreprises (CFE)', '', '', 'Fiscalité locale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (733, 'Contribution pour le remboursement de la dette sociale (CRDS)', '', '', 'Prélèvement social', NULL, 'Contribution pour le remboursement de la dette sociale');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (734, 'Contribution sociale de solidarité des sociétés', '', '', 'Impôt sur les sociétés', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (735, 'Contribution sociale généralisée (CSG)', '', '', 'Prélèvement social', NULL, 'Contribution sociale généralisée');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (736, 'Contribution solidarité autonomie', '', '', 'Prélèvement social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (737, 'Contrôle', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (738, 'Contrôle de gestion', 'Le contrôle de gestion est l''activité visant la maîtrise de la conduite d''une organisation en prévoyant les événements et en s''adaptant à l''évolution, en définissant les objectifs, en mettant en place les moyens, en comparant les performances et les objectifs, en corrigeant les objectifs et les moyens. ', '', 'Gouvernance de l''entreprise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (739, 'Contrôle de l''Etat', '', '', 'Administration centrale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (740, 'Contrôle des médicaments', '', '', 'Santé individuelle', NULL, 'Contrôle pharmaceutique');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (741, 'Contrôle fiscal', '', 'Redressement fiscal', 'Fiscalité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (742, 'Contrôle médical', '', '', 'Sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (743, 'Contrôle technique', '', '', 'Véhicule', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (744, 'Convention', '', '', 'Texte juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (745, 'Convention collective', '', '', 'Négociation collective', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (746, 'Convention de coopération', '', '', 'Aide à l''emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (747, 'Convention de stage', '', '', 'Convention', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (748, 'Convention d''objectifs et de gestion', '', '', 'Gestion publique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (749, 'Convention européenne des droits de l''homme', '', '', 'Droits de l''homme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (750, 'Convention européenne sur l''exercice des droits des enfants', 'Convention adoptée à Strasbourg le 15 janvier 1996, ratifiée par la loi 2007-1155 du 1er août 2007.', '', 'Droits de l''enfant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (751, 'Convention internationale', '', 'Relations internationales', 'Texte officiel', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (752, 'Convention internationale de sécurité sociale', '', '', 'Sécurité sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (753, 'Convention internationale des droits de l''enfant', '', '', 'Droits de l''enfant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (754, 'Convention nationale', '', '', 'Convention', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (755, 'Convention relative aux droits des personnes handicapées', '', '', 'Droits des personnes handicapées', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (756, 'Convention sur le commerce international des espèces de faune et flore sauvages menacées d’extinction (CITES)', '', '', 'Classement des espèces protégées', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (757, 'Coopération', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (758, 'Coopération intercommunale', '', '', 'Commune', NULL, 'Intercommunalité');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (759, 'Coopération inter-hospitalière', '', '', 'Politique hospitalière', NULL, 'Groupement interhospitalier');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (760, 'Coopération internationale', '', '', 'Relations internationales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (761, 'Coopération territoriale', '', '', 'Aménagement du territoire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (762, 'Coopération transfrontalière', '', '', 'Aménagement du territoire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (763, 'Coopérative', '', '', 'Type d''entreprise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (764, 'Coordination', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (765, 'Coordonnateur de sécurité', 'Personne physique ou morale désignée par le maître d''ouvrage pour tout chantier de bâtiment ou de génie civil. Il a pour but de prévenir les risques d''accidents liés à l''intervention de plusieurs entreprises sur les chantiers.', '', 'Métier du bâtiment et de la construction', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (766, 'COP 21', '', '', 'Changement climatique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (767, 'Copropriété', '', '', 'Propriété', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (768, 'Corée du Nord', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (769, 'Corée du Sud', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (770, 'Corps humain et pratique médicale', '', '', 'Médecine', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (771, 'Corrèze', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (772, 'Corrida', '', '', 'Faune', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (773, 'Corruption', '', '', 'Crime et délit', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (774, 'Corse', '', '', 'France par région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (775, 'Corse du Sud', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (776, 'Corsica Ferries', '', '', 'Ferry', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (777, 'Costa Rica', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (778, 'Côte d''Ivoire', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (779, 'Côte d''Or', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (780, 'Côtes d''Armor', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (781, 'Cotisation foncière des entreprises (CFE)', '', '', 'Fiscalité locale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (782, 'Cotisation patronale', '', '', 'Recouvrement des cotisations sociales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (783, 'Cotisation salariale', '', '', 'Recouvrement des cotisations sociales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (784, 'Cotisation sociale', '', '', 'Entreprise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (785, 'Couloir aérien', '', '', 'Circulation aérienne', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (786, 'Coupe du monde', '', '', 'Evénement sportif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (787, 'Cour administrative d''appel', '', '', 'Juridiction administrative', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (788, 'Cour d''appel', '', '', 'Juridiction civile', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (789, 'Cour d''assises', '', '', 'Juridiction pénale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (790, 'Cour de cassation', '', '', 'Juridiction civile', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (791, 'Cour de justice de l''Union européenne (CJUE)', 'La CJUE a remplacé la CJCE au 1er décembre 2009 avec l''entrée en vigueur du traité de Lisbonne.', '', 'Juridiction européenne', NULL, 'Cour de justice de l''Union européenne');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (792, 'Cour des comptes', '', '', 'Juridiction financière', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (793, 'Cour des comptes européenne', 'La Cour des comptes européenne examine les finances de l''Union. Elle a pour mission d''améliorer la gestion financière de l''UE et de rendre compte de l''utilisation de l''argent public. Créée en 1975, elle a son siège à Luxembourg.', '', 'Juridiction européenne', NULL, 'Cour des comptes des Communautés européennes/Cour des comptes de l''Union européenne');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (794, 'Cour européenne des droits de l''homme', '', '', 'Droits de l''homme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (795, 'Cours d''eau', '', '', 'Site naturel', NULL, 'Fleuve/Rivière');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (796, 'Coût', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (797, 'Couverture maladie universelle (CMU)', 'La couverture maladie universelle de base permet l''accès à l''assurance maladie pour toutes les personnes résidant en France de manière stable et régulière depuis plus de trois mois, et qui n''ont pas droit à l''assurance maladie à un autre titre (activité professionnelle, etc.).', '', 'Assurance maladie', NULL, 'Assurance maladie universelle/Couverture maladie universelle');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (798, 'Covoiturage', '', '', 'Transport routier de personnes', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (799, 'Crack', '', '', 'Drogue', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (800, 'Crèche', '', '', 'Mode de garde', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (801, 'Crédit', '', '', 'Financement de l''économie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (802, 'Crédit d''impôt', '', '', 'Fiscalité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (803, 'Crédit d''impôt formation', '', '', 'Politique de l''emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (804, 'Crédit impôt recherche', '', '', 'Aide aux entreprises', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (805, 'Creuse', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (806, 'Crime et délit', '', '', 'Procédure pénale', NULL, 'Crime/Délit');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (807, 'Criminalité', '', '', 'Problème social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (808, 'Crise', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (809, 'Crise économique', '', '', 'Macroéconomie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (810, 'Crise monétaire', '', '', 'Union économique et monétaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (811, 'Critère', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (812, 'Critique', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (813, 'Croatie', '', 'Yougoslavie', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (814, 'Croisière', '', '', 'Transport maritime', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (815, 'Croissance démographique', '', '', 'Démographie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (816, 'Croissance économique', '', '', 'Macroéconomie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (817, 'Crowdfunding', '', '', 'Financement participatif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (818, 'CTP', '', '', 'Instance de représentation et de dialogue', NULL, 'Comité technique paritaire');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (819, 'Cuba', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (820, 'Cultes', '', '', 'Affaires intérieures', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (821, 'Culture', '', '', '02 - COMMUNICATION-CULTURE-EDUCATION', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (822, 'Culture céréalière', '', '', 'Production végétale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (823, 'Culture fruitière', '', '', 'Production végétale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (824, 'Culture maraîchère', '', '', 'Production végétale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (825, 'Culture urbaine', '', '', 'Culture', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (826, 'Cumul', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (827, 'Cumul des mandats', '', '', 'Mandat politique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (828, 'Cumul emploi retraite', '', '', 'Retraite', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (829, 'Curatelle', '', '', 'Tutelle', NULL, 'Protection du majeur');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (830, 'Cure', '', '', 'Etablissement thermal', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (831, 'Curriculum vitae', '', '', 'Recherche d''emploi', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (832, 'Cursus universitaire', '', 'Licence Master Doctorat (LMD)', 'Université', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (833, 'Cyber surveillance', '', '', 'Surveillance', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (834, 'Cyberdéfense', '', '', 'Informatique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (835, 'Cyclisme', '', '', 'Discipline sportive', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (836, 'Cyclone', '', '', 'Catastrophe naturelle', NULL, 'Ouragan/Tornade');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (837, 'Danemark', '', 'Pays nordiques', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (838, 'Danse', '', '', 'Art', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (839, 'Débat politique', '', '', 'Vie démocratique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (840, 'Débit de boisson', '', '', 'Commerce de détail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (841, 'Déblocage anticipé d''épargne', '', '', 'Crédit', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (842, 'Debout la France', '', '', 'Parti politique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (843, 'Décentralisation', '', '', 'Collectivités territoriales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (844, 'Décès', '', '', 'Santé individuelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (845, 'Décharge', '', '', 'Gestion des déchets', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (846, 'Déchet', '', '', 'Gestion des déchets', NULL, 'Résidus');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (847, 'Déchet agricole', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (848, 'Déchet d''activités de soins', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (849, 'Déchet de chantier', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (850, 'Déchet d''équipements électriques et électroniques', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (851, 'Déchet encombrant', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (852, 'Déchet industriel', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (853, 'Déchet radioactif', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (854, 'Déchetterie', '', '', 'Collecte des déchets', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (855, 'Décision', '', '', 'Norme juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (856, 'Déclaration', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (857, 'Déclaration d''utilité publique', '', '', 'Enquête publique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (858, 'Déclaration universelle des droits de l''Homme', '', '', 'Droits de l''homme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (859, 'Déconcentration', '', '', 'Organisation territoriale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (860, 'Décontamination', '', '', 'Technique sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (861, 'Décontamination radioactive', '', '', 'Radioprotection', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (862, 'Décoration', '', '', 'Droit public', NULL, 'Médaille');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (863, 'Décret', '', '', 'Norme juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (864, 'Dédicace', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (865, 'Déduction fiscale', '', '', 'Fiscalité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (866, 'Défense', '', '', '09 - VIE ADMINISTRATIVE ET POLITIQUE', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (867, 'Défenseur des droits', 'La loi constitutionnelle 2008-714 du 13 juillet 2008 (art. 41) crée le Défenseur des droits qui remplace le Médiateur de la République.', '', 'Relation administration-usager', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (868, 'Défibrillateur', '', '', 'Matériel médical', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (869, 'Déficit extérieur', '', '', 'Commerce extérieur', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (870, 'Défilé du 14 juillet', '', '', 'Commémoration', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (871, 'Définition', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (872, 'Déjection animale', '', '', 'Déchet', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (873, 'Délai', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (874, 'Délégation à la sécurité et à la circulation routière (DSCR)', '', '', 'Sécurité routière', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (875, 'Délégation de service public', '', '', 'Contrat administratif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (876, 'Délinquance', '', '', 'Problème social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (877, 'Délocalisation', '', '', 'Entreprise', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (878, 'Demande de logement', '', '', 'Logement social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (879, 'Demande de nomination', '', '', 'Acte administratif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (880, 'Demandeur d''asile', '', '', 'Migration', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (881, 'Démarche participative', '', '', 'Vie sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (882, 'Démocratie', '', '', 'Vie démocratique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (883, 'Démographie', '', '', 'Société', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (884, 'Démographie médicale', '', '', 'Planification sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (885, 'Démolition', '', '', 'Construction', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (886, 'Dengue', '', '', 'Maladie infectieuse', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (887, 'Déontologie médicale', '', '', 'Corps humain et pratique médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (888, 'Déontologie professionnelle', '', '', 'Organisation du travail', NULL, 'Déontologie');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (889, 'Départ à la retraite', '', '', 'Retraite', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (890, 'Départ négocié', '', '', 'Rupture du contrat de travail', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (891, 'Département', '', '', 'Collectivités territoriales', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (892, 'Département et région d''outre-mer (DROM)', '', '', 'France d''outre-mer', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (893, 'Dépassement d''honoraires', '', '', 'Honoraires médicaux', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (894, 'Dépendance', '', '', 'Vieillesse', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (895, 'Dépense d''assurance maladie', '', '', 'Economie de la protection sociale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (896, 'Dépenses de l''Etat', '', '', 'Budget de l''Etat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (897, 'Dépenses hospitalières', '', '', 'Gestion hospitalière', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (898, 'Dépistage', '', '', 'Prévention en santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (899, 'Dépollution', '', '', 'Technique sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (900, 'Déporté', '', '', 'Victime de guerre', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (901, 'Dépression', '', '', 'Maladie mentale', NULL, 'Dépression nerveuse');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (902, 'Député', '', '', 'Elu', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (903, 'Dératisation', '', '', 'Lutte antivectorielle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (904, 'Dérive sectaire', '', '', 'Problème social', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (905, 'Dermatologie', '', '', 'Spécialité médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (906, 'Désamiantage', '', 'Amiante', 'Polluant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (907, 'Déscolarisation', '', '', 'Scolarité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (908, 'Désenclavement', '', '', 'Transport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (909, 'Désertification rurale', '', '', 'Milieu rural', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (910, 'Déserts médicaux', '', '', 'Démographie médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (911, 'Désignation', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (912, 'Désindustrialisation', '', '', 'Industrie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (913, 'Désinsectisation', '', 'Chikungunya', 'Lutte antivectorielle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (914, 'Désintoxication', '', '', 'Thérapeutique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (915, 'Desserte aérienne', '', '', 'Aéroport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (916, 'Desserte de la Corse', '', '', 'Continuité territoriale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (917, 'Desserte ferroviaire', '', '', 'Infrastructure ferroviaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (918, 'Détection', '', '', 'Technique sanitaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (919, 'Détenu', '', '', 'Prison', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (920, 'Dette publique', '', '', 'Macroéconomie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (921, 'Deux Sèvres', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (922, 'Deux-roues motorisées', '', '', 'Véhicule', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (923, 'Développement durable', '', '', '04 - ENVIRONNEMENT', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (924, 'Développement local', '', '', 'Aménagement du territoire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (925, 'Développement régional', '', '', 'Aménagement du territoire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (926, 'Déviation', '', '', 'Infrastructure de transport routier', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (927, 'Diabète', '', '', 'Pathologie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (928, 'Dialogue social', '', '', 'Relations professionnelles', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (929, 'Dictionnaire', '', '', 'Publication', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (930, 'Diesel', '', '', 'Carburant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (931, 'Diététicien', '', '', 'Profession paramédicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (932, 'Diététique', '', '', 'Hygiène alimentaire', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (933, 'Difficultés financières', '', '', 'Budget familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (934, 'Diffusion', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (935, 'Dijon', '', '', 'Côte d''Or', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (936, 'Dioxine', '', '', 'Substances chimiques', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (937, 'Diplôme', '', '', 'Scolarité', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (938, 'Diplôme de grande école', '', '', 'Diplôme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (939, 'Direction départementale interministérielle (DDI)', '', '', 'Préfecture de département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (940, 'Directions régionales', '', '', 'Préfecture de région', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (941, 'Directive', '', '', 'Norme juridique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (942, 'Discipline enseignée', '', '', 'Enseignement', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (943, 'Discipline sportive', '', '', 'Sport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (944, 'Discours', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (945, 'Discrimination positive', '', '', 'Lutte contre les discriminations', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (946, 'Discrimination sexuelle', '', '', 'Lutte contre les discriminations', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (947, 'Dispersion des polluants', '', '', 'Polluant', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (948, 'Dispositif', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (949, 'Dispositif d''accueil', '', '', 'Migration', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (950, 'Dispositif de sécurité', '', '', 'Sécurité civile', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (951, 'Dispositif de signalisation', '', '', 'Transport routier de personnes', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (952, 'Dispositif d''intervention', '', '', 'Sécurité civile', NULL, 'Plan d''alerte/Plan d''intervention');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (953, 'Dispositif local d''accompagnement (DLA)', 'Le dispositif local d''accompagnement a été créé en 2001 à l''initiative de l''Etat et de la Caisse et dépôts et consignations. Il est destiné à soutenir l''activité et l''emploi dans le secteur associatif et plus généralement dans l''économie sociale et solidaire.', '', 'Mesures pour l''emploi', NULL, 'DLA');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (954, 'Dispositif médical', '', '', 'Services de santé', NULL, 'Dispositifs médicaux/Equipement médical');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (955, 'Dispositif Orsec', 'Organisation de la réponse de sécurité civile', '', 'Dispositif d''intervention', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (956, 'Distributeur de presse', '', '', 'Presse', NULL, 'Distributeur de journaux et de prospectus');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (957, 'Distribution de l''eau', '', '', 'Gestion de l''eau', NULL, 'Adduction d''eau/AEP/Alimentation en eau potable');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (958, 'Divorce', '', '', 'Situation familiale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (959, 'Djibouti', '', '', 'Pays étranger', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (960, 'Dock', '', '', 'Transport maritime', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (961, 'Document', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (962, 'Document d''urbanisme', '', '', 'Urbanisme', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (963, 'Documentation', '', '', 'Communication', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (964, 'Domaine public', '', '', 'Droit administratif', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (965, 'Dommages et intérêts', 'Somme d''argent compensatoire du dommage subi par une personne en raison de l''inexécution ou de la mauvaise exécution d''une obligation ou d''un devoir juridique par un cocontractant ou un tiers.', '', 'Procédure', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (966, 'Don', '', '', 'Aide sociale', NULL, 'Altruisme');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (967, 'Don de gamète', '', '', 'Comportement de santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (968, 'Don de sperme', '', '', 'Comportement de santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (969, 'Don de tissu humain', '', '', 'Comportement de santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (970, 'Don d''organe', '', '', 'Comportement de santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (971, 'Don d''ovocyte', '', '', 'Comportement de santé', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (972, 'Don du corps', '', '', 'Comportement de santé', NULL, 'Don de corps');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (973, 'Donation', '', '', 'Succession', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (974, 'Données personnelles', '', '', 'Liberté individuelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (975, 'Données publiques', '', 'Open data', 'Relation administration-usager', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (976, 'Dopage', '', '', 'Sport', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (977, 'Dordogne', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (978, 'Dossier de presse', '', '', 'Mots-outils', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (979, 'Dossier médical partagé', '', '', 'Surveillance médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (980, 'Dossier médical personnel', '', '', 'Surveillance médicale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (981, 'Dotation de développement urbain', '', '', 'Politique de la ville', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (982, 'Dotation de solidarité urbaine (DSU)', '', '', 'Politique de la ville', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (983, 'Dotation d''équipement des territoires ruraux (DETR)', '', '', 'Concours financier pérenne de l''Etat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (984, 'Dotation générale de décentralisation (DGD)', '', '', 'Concours financier pérenne de l''Etat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (985, 'Dotation globale de fonctionnement (DGF)', '', '', 'Concours financier pérenne de l''Etat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (986, 'Dotation globale d''équipement (DGE)', '', '', 'Concours financier pérenne de l''Etat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (987, 'Dotation régionale d''équipement scolaire des lycées (DRES)', '', '', 'Concours financier pérenne de l''Etat', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (988, 'Dotations de compensation au titre des taxes foncières et de la taxe professionnelle', '', '', 'Fiscalité locale', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (989, 'Douai', '', '', 'Nord', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (990, 'Double peine', '', '', 'Sanction', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (991, 'Doubs', '', '', 'France par département', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (992, 'Douleur', '', '', 'Pathologie', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (993, 'Drogue', '', '', 'Pratique addictive', NULL, 'Stupéfiant');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (994, 'Droit à la formation', '', '', 'Formation professionnelle', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (995, 'Droit administratif', '', '', 'Droit public', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (996, 'Droit civil', '', '', 'Justice', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (997, 'Droit commercial', '', '', 'Secteur économique', NULL, '');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (998, 'Droit communautaire', '', '', 'Questions européennes', NULL, 'Droit européen');
INSERT INTO thesaurus (thesaurus_id, thesaurus_name, thesaurus_description, thesaurus_name_associate, thesaurus_parent_id, creation_date, used_for) VALUES (999, 'Droit comparé', '', '', 'Droit international', NULL, '');