-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomef_metadata.csv
We can't make this file beautiful and searchable because it's too large.
2694 lines (2694 loc) · 726 KB
/
comef_metadata.csv
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
2024-09-11 09:08:05.6886 2024-09-11 09:08:05.688603 60c90fa0-ca00-4129-997a-8f80285a6a41 {"pid": "7523", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A009955971"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:05.758671 2024-09-11 09:08:05.758677 68fb8bb7-cd92-47fc-b468-a1aa511b72ec {"pid": "7524", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A010077990"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:05.811984 2024-09-11 09:08:05.811989 2bb8934f-4f04-48fa-9c55-12e3ee9a2ba2 {"pid": "7525", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001001"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:05.866449 2024-09-11 09:08:05.866459 c5a8076f-ab0a-4886-b6c5-26987ddf5847 {"pid": "7526", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001003"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:05.920124 2024-09-11 09:08:05.920129 1a1c7389-7604-49c1-9632-f54f8b37d975 {"pid": "7527", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001004"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:05.971165 2024-09-11 09:08:05.971169 9d35fa7d-9043-4498-817c-a8715ff2b510 {"pid": "7528", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001005"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.025563 2024-09-11 09:08:06.025568 262d8153-6369-44b6-838e-f211feb40858 {"pid": "7529", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001006"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.082007 2024-09-11 09:08:06.082012 54f4e316-5154-475a-a162-b5233b40fcd3 {"pid": "7530", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001007"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.133513 2024-09-11 09:08:06.133518 55044a1d-4d80-43b3-8e53-a85177f88b10 {"pid": "7531", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001008"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.182995 2024-09-11 09:08:06.183 a40f3726-ce43-4f09-b219-8883e03fdb4d {"pid": "7532", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001009"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.228355 2024-09-11 09:08:06.22836 e07423fa-381a-47d5-ab1c-8767a416305e {"pid": "7533", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001012"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.277485 2024-09-11 09:08:06.27749 662f134b-8680-4463-8775-7b8bfa3804b2 {"pid": "7534", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001013"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.325732 2024-09-11 09:08:06.325736 efe35257-bdb6-4fb2-91dd-0853e70addd5 {"pid": "7535", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001014"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.372956 2024-09-11 09:08:06.37296 aeaaebe0-d823-495e-aefd-a5c56c960c5b {"pid": "7536", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001016"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.423623 2024-09-11 09:08:06.423627 1da1d468-42eb-4808-8404-d473fd89b285 {"pid": "7537", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001017"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.472548 2024-09-11 09:08:06.472552 5ede6751-8cf7-489d-beac-91c5bd69f64a {"pid": "7538", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001018"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.526236 2024-09-11 09:08:06.526241 15019c5f-cbe4-44c3-bdc9-f68c658a9dd6 {"pid": "7539", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001021"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.576783 2024-09-11 09:08:06.576788 767ac92b-9678-4510-a74b-1f56ce5e53e7 {"pid": "7540", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001023"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.638755 2024-09-11 09:08:06.63876 390e8b08-138e-4109-b8a4-e321de6de7a7 {"pid": "7541", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001024"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:06.689332 2024-09-11 09:08:06.689336 f0582a61-9b41-4282-8507-be1434980f0c {"pid": "7542", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001025"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:08.583273 2024-09-11 09:08:08.583278 e7bf15e8-3711-4e71-a37b-c08c9f70837c {"pid": "7543", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027225798"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:08.657488 2024-09-11 09:08:08.657492 58ed918e-ffab-4769-8e7e-066778bc47db {"pid": "7544", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027242250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:08.729029 2024-09-11 09:08:08.729034 a6f27df7-0d4b-48c8-8dec-56ed6d708192 {"pid": "7545", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027246159"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:08.800393 2024-09-11 09:08:08.800397 eb02a2cc-5505-4965-b01d-259d1638ad5e {"pid": "7546", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027248062"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:08.85489 2024-09-11 09:08:08.854894 597bcb16-4945-417a-9d22-6b48bf7dc7e3 {"pid": "7547", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027255468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:08.910346 2024-09-11 09:08:08.910348 8057f0af-3949-4a84-b6c1-87ec889ef846 {"pid": "7548", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027256138"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:08.968783 2024-09-11 09:08:08.968786 258999cb-9084-407d-98d9-582adc655b1c {"pid": "7549", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027257045"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.024799 2024-09-11 09:08:09.024804 8126f6ed-ea25-4de6-b7ae-542eb1c262d5 {"pid": "7550", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027268284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.078129 2024-09-11 09:08:09.078133 bde06283-3b75-4fbd-a159-7a9c1136fadb {"pid": "7551", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027274144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.132206 2024-09-11 09:08:09.13221 c0994b6f-f11e-4fd7-9e22-061a9af2249b {"pid": "7552", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02727991X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.188759 2024-09-11 09:08:09.188763 fa8df2d5-b120-49da-91ec-71871a12aa3b {"pid": "7553", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02728607X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.242075 2024-09-11 09:08:09.242079 8d8aa11e-2388-49a5-a121-276c4f3cd52e {"pid": "7554", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027292916"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.298508 2024-09-11 09:08:09.298512 240a40a5-e589-4505-be9c-ec89cf5224d5 {"pid": "7555", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027302148"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.348792 2024-09-11 09:08:09.348796 15c2fac6-82e3-411f-9aa1-481b1ece8d88 {"pid": "7556", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027308359"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.405675 2024-09-11 09:08:09.40568 e01ad29a-9181-4189-b7e4-9f04478c08cc {"pid": "7557", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027317145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.459786 2024-09-11 09:08:09.45979 99c6ab62-477f-4f65-8154-b928d7b1b774 {"pid": "7558", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027323552"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.554862 2024-09-11 09:08:09.554865 c890f4a5-7a0a-423d-8b75-3c78f7a0f07f {"pid": "7559", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027328589"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.60963 2024-09-11 09:08:09.609634 47fb59bb-000e-46ff-b42e-4c2dd15a5ed9 {"pid": "7560", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027330176"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.661486 2024-09-11 09:08:09.66149 8e32a2cd-7bb1-461a-9300-0fb5195fbbe6 {"pid": "7561", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027333930"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.718257 2024-09-11 09:08:09.718261 64e5dba3-ca7a-43d8-b1d9-ca0236941f16 {"pid": "7562", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027336913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.770774 2024-09-11 09:08:09.770778 ebfbcf18-bbe8-424c-b8c4-eaf8f23fee2d {"pid": "7563", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027345203"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.830409 2024-09-11 09:08:09.830414 eac29314-94e5-4a28-8a52-f3aeb71a1eee {"pid": "7564", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.884463 2024-09-11 09:08:09.884468 4d9c1208-fa20-4aeb-946d-61a2be017eab {"pid": "7565", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.940446 2024-09-11 09:08:09.940449 84aebe81-0b3c-45d1-a551-afb987e9ae20 {"pid": "7566", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355985"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:09.998038 2024-09-11 09:08:09.998043 83e5481b-9156-4534-aa1b-3a906620ccc3 {"pid": "7567", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027356493"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.055296 2024-09-11 09:08:10.0553 9a8767a0-acf1-46c0-9824-511b64c63264 {"pid": "7568", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027365697"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.116188 2024-09-11 09:08:10.116191 8c6f4f60-d25a-4832-87bf-56913bef6bb6 {"pid": "7569", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027368661"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.167858 2024-09-11 09:08:10.167861 d1d86296-a758-4d97-b5dc-205b7761e2fd {"pid": "7570", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027374351"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.22583 2024-09-11 09:08:10.225834 fc8bd79a-586d-435b-9443-b3ac47408b98 {"pid": "7571", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027376982"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.279572 2024-09-11 09:08:10.279576 93b1ac02-afab-46d3-b4f1-0473046afaa8 {"pid": "7572", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027391396"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.334561 2024-09-11 09:08:10.334565 075e3eee-bcdc-46e1-b711-de63677bd701 {"pid": "7573", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027396924"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.393356 2024-09-11 09:08:10.393359 d940e038-b680-455d-9960-1d8e58c3711e {"pid": "7574", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02739770X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.450692 2024-09-11 09:08:10.450696 130a9b46-95a7-4636-af48-dbd6e8a5b826 {"pid": "7575", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027415252"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.507413 2024-09-11 09:08:10.507416 3cb85bf3-d73e-47c4-9649-6a10d335b7ce {"pid": "7576", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02743141X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.564254 2024-09-11 09:08:10.56426 9776e847-a72e-44db-a9fb-96ca51ef8ba0 {"pid": "7577", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027431444"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.633239 2024-09-11 09:08:10.633243 23f82ba9-d93f-4e4e-8ea8-87aba09f4ad2 {"pid": "7578", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027436683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.687139 2024-09-11 09:08:10.687143 55549e85-551d-4657-b329-325da201e516 {"pid": "7579", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027455092"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.740421 2024-09-11 09:08:10.740425 01900a18-84cd-4cef-99a2-a422d4f46a04 {"pid": "7580", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027461599"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.800543 2024-09-11 09:08:10.800547 04d366f9-da10-43d5-b984-45f643320547 {"pid": "7581", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027478033"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.855285 2024-09-11 09:08:10.85529 a0c79fe0-af04-44f6-8502-fa1ccbfb3c16 {"pid": "7582", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027481352"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.910565 2024-09-11 09:08:10.910568 c10e390b-1cf3-4eb3-b8b7-122acf619aae {"pid": "7583", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027486753"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:10.964498 2024-09-11 09:08:10.964503 03e1002f-a359-444a-8bf2-018847c8bd34 {"pid": "7584", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027493032"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.017242 2024-09-11 09:08:11.017247 9cede3f8-31af-48df-9d18-1a08178c054b {"pid": "7585", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027495213"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.072571 2024-09-11 09:08:11.072574 f77a92ca-1332-49a7-8d10-ca98ea017690 {"pid": "7586", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027495922"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.133267 2024-09-11 09:08:11.133272 9eeb170a-6cec-4fe5-bed7-8251e5dd28a7 {"pid": "7587", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02750333X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.189971 2024-09-11 09:08:11.189973 41820b0b-4e34-4be6-9840-47d8d360b8a9 {"pid": "7588", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027506762"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.242657 2024-09-11 09:08:11.242661 ae89feb1-bf69-40b3-9246-49399fe2a6bd {"pid": "7589", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027516652"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.300396 2024-09-11 09:08:11.300399 e272de1e-337a-4b7e-b163-3ad5be70640b {"pid": "7590", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027519546"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.357599 2024-09-11 09:08:11.357603 d035732b-ead7-4449-9a5b-dfd3ab0df4bf {"pid": "7591", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027519686"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.418539 2024-09-11 09:08:11.418543 e9eb0805-0b1b-443e-b8e2-f8ee9145d72f {"pid": "7592", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027528820"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.474527 2024-09-11 09:08:11.47453 0ee85ce4-d33b-4d64-a692-9035545d1895 {"pid": "7593", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027532488"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.53355 2024-09-11 09:08:11.533554 822f421b-2b42-4315-b416-5433a729692a {"pid": "7594", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027545822"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.592288 2024-09-11 09:08:11.592291 a159e475-45a5-4658-8fd9-89ee51d62055 {"pid": "7595", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027564878"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.662675 2024-09-11 09:08:11.66268 8ebf73f3-479f-4484-bddc-7de61ea0e26a {"pid": "7596", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027578747"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.719745 2024-09-11 09:08:11.719751 7952685c-ebc1-47e2-b96d-d7d43b8dea73 {"pid": "7597", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02758254X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.777481 2024-09-11 09:08:11.777486 d003c195-0055-4d43-acbb-9af5c1ef6e2b {"pid": "7598", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027613275"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.838877 2024-09-11 09:08:11.838881 0bee8006-4de5-4601-871c-2fc0cf5d0a7a {"pid": "7599", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027616908"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.893881 2024-09-11 09:08:11.893885 cb424196-2003-465d-b711-ea44a741adc2 {"pid": "7600", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027636461"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:11.944489 2024-09-11 09:08:11.944492 d697e602-97bd-48c3-9f8e-ca9b14e663b4 {"pid": "7601", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027674118"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.002672 2024-09-11 09:08:12.002674 0b869c3c-3217-41bc-84a8-010f951fa489 {"pid": "7602", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027674150"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.065694 2024-09-11 09:08:12.065698 0ce374e5-a058-48c9-8355-3d647321b918 {"pid": "7603", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027682226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.121557 2024-09-11 09:08:12.121561 5d2263ee-063b-445b-92f7-8498b5088bea {"pid": "7604", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027688836"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.174999 2024-09-11 09:08:12.175003 697c5072-deb2-4e56-a410-7203f64f3403 {"pid": "7605", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027694852"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.233645 2024-09-11 09:08:12.233649 bb36c15c-69c6-4eac-bbf2-334337bc8f0b {"pid": "7606", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027710025"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.297214 2024-09-11 09:08:12.297219 aefd2e24-bab0-4f96-9cb4-73b9e0908c25 {"pid": "7607", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027727327"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.353957 2024-09-11 09:08:12.353961 8ee936b4-4833-43fc-8efa-c52dd1b3e56a {"pid": "7608", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027727521"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.422352 2024-09-11 09:08:12.422355 9930cba9-a72f-440b-8652-113fe083bf0a {"pid": "7609", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027729044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.506206 2024-09-11 09:08:12.506211 15c6a287-cee8-48d3-8f40-cbc144db557d {"pid": "7610", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027735893"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.566656 2024-09-11 09:08:12.566662 3561cbc0-affb-4f73-b17d-632ff771b2d2 {"pid": "7611", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027756580"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.625711 2024-09-11 09:08:12.625716 97879e2d-3348-4f78-a0a6-81593bb83feb {"pid": "7612", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027756653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.68179 2024-09-11 09:08:12.681793 38e54d2b-24b4-42f8-8f55-30d08dee2d99 {"pid": "7613", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027759547"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.735281 2024-09-11 09:08:12.735285 ffb0d518-8384-40df-a926-30b06c54e4a3 {"pid": "7614", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027789551"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.790809 2024-09-11 09:08:12.790815 72b7f346-9383-4f19-80dc-48a72ab038a5 {"pid": "7615", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027793575"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.845032 2024-09-11 09:08:12.845035 eb03e5d4-2ca0-4e7c-a3a4-06baca5f406b {"pid": "7616", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027808394"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.900884 2024-09-11 09:08:12.900886 324a302e-8261-43a1-995d-972cc3de6bf7 {"pid": "7617", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027808629"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:12.951768 2024-09-11 09:08:12.951771 bd62bfb4-dfa9-44f6-988c-e6bf301a57f6 {"pid": "7618", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027826171"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.015859 2024-09-11 09:08:13.015864 dd58c0b2-ab14-409f-a688-c8fa4e37975a {"pid": "7619", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027845214"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.075228 2024-09-11 09:08:13.07523 e8887791-0c61-4f6e-bf2b-037f9f905f11 {"pid": "7620", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02785082X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.13334 2024-09-11 09:08:13.133345 88fa9cf1-507d-4b67-8f7a-ddcd6bf7c5dc {"pid": "7621", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027856097"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.192132 2024-09-11 09:08:13.192136 af8f26f9-ff11-4614-b366-ce84e7670335 {"pid": "7622", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02785714X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.254936 2024-09-11 09:08:13.254939 2897e530-09b3-417b-b33a-e091bf32f058 {"pid": "7623", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027867277"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.309631 2024-09-11 09:08:13.309635 544b37ad-8908-43ad-a542-b6b707b9261f {"pid": "7624", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02786765X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.35962 2024-09-11 09:08:13.359623 e242373d-b9ff-4bdd-9f6b-fbb49927c441 {"pid": "7625", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027868338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.424443 2024-09-11 09:08:13.424447 3fa66f91-427e-49d2-811e-efdb57c8fe84 {"pid": "7626", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027870510"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.489445 2024-09-11 09:08:13.48945 8c5554d9-3afe-4aaa-b4db-1b0d6f2f05e5 {"pid": "7627", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027873196"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.544261 2024-09-11 09:08:13.544264 0a20f7ae-f1c6-41ce-b264-27df8379b081 {"pid": "7628", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02787608X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.600148 2024-09-11 09:08:13.600153 46f6c733-e5af-4533-adda-3d34006136a7 {"pid": "7629", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027883094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.658793 2024-09-11 09:08:13.658797 d60f395e-0b32-4e02-bb56-c38f5527fc59 {"pid": "7630", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02788547X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.721626 2024-09-11 09:08:13.721631 30752f86-9a3e-42ae-867b-fde87efaedc0 {"pid": "7631", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027885496"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.781614 2024-09-11 09:08:13.781617 e189639a-cf24-4a36-88d7-7a3246bc12bf {"pid": "7632", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027887960"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.836205 2024-09-11 09:08:13.836209 0e131dff-8981-4a4c-bb11-d2aa4e41fa8c {"pid": "7633", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027908380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.899395 2024-09-11 09:08:13.899399 239f9920-6533-462e-a8e7-873dffc9579a {"pid": "7634", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027910210"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:13.95915 2024-09-11 09:08:13.959154 be159dd6-d42e-42ad-90ae-991180dc8c25 {"pid": "7635", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027915115"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.011554 2024-09-11 09:08:14.011557 313aabb6-d1b3-46db-ae46-17d421d118f0 {"pid": "7636", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027920216"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.068879 2024-09-11 09:08:14.068882 22a6cd1e-33fa-469e-80c1-8ebbf2147009 {"pid": "7637", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027940373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.123928 2024-09-11 09:08:14.123932 6413247f-274f-4846-b6c2-0e4018715229 {"pid": "7638", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027944492"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.184165 2024-09-11 09:08:14.184168 3e6faa32-b9a0-477c-a0e5-93acfd9fa5b5 {"pid": "7639", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027950808"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.239431 2024-09-11 09:08:14.239435 bb471ea0-d660-4661-9c01-03ea49982735 {"pid": "7640", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027963675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.309832 2024-09-11 09:08:14.309835 ad258b45-e832-45f5-9ff9-30b4d375b10e {"pid": "7641", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028060563"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.373445 2024-09-11 09:08:14.373448 49742550-7d07-41ef-a2fe-9b4469c58d59 {"pid": "7642", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028071867"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.431078 2024-09-11 09:08:14.431083 be0a839f-46a6-47bd-9e53-ded4c7bb9ffd {"pid": "7643", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028071964"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.486695 2024-09-11 09:08:14.4867 4586e733-9506-45d2-b283-4d3a87d8886c {"pid": "7644", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02807842X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.540085 2024-09-11 09:08:14.540089 35288f86-bd34-45ed-81e6-595e05986dce {"pid": "7645", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02810160X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.604161 2024-09-11 09:08:14.604166 397e69c9-7ad9-4e0b-aaf1-a66392bc91a5 {"pid": "7646", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028140362"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.669206 2024-09-11 09:08:14.66921 1e3b0848-77c9-4cd0-96b2-6b78983b498b {"pid": "7647", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028148800"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.732894 2024-09-11 09:08:14.732896 96aadc67-d725-4c29-bfad-5af96fb2a0df {"pid": "7648", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028211162"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.793316 2024-09-11 09:08:14.79332 aeaba265-1bcb-42d8-ac51-3edb22c6b949 {"pid": "7649", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028225090"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.848977 2024-09-11 09:08:14.848982 cd120802-be83-45f6-b030-8e1aa2113d2d {"pid": "7650", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028225767"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.902857 2024-09-11 09:08:14.902861 cd24de49-cb6e-4c08-9cfd-9e6129740272 {"pid": "7651", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028233506"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:14.957859 2024-09-11 09:08:14.957863 0ffd6d84-f92e-48d7-b8ed-b8a1725d3f33 {"pid": "7652", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028262220"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.015626 2024-09-11 09:08:15.015629 ed5a02d2-1cd2-49f4-9f89-3bccf88014cf {"pid": "7653", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028287169"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.071837 2024-09-11 09:08:15.07184 9dc5182d-ef94-47cf-a4e8-3b38b7516822 {"pid": "7654", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028359380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.131346 2024-09-11 09:08:15.131351 b32a24d0-eb2a-47f5-8904-feefeffa2cb4 {"pid": "7655", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028431855"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.192583 2024-09-11 09:08:15.192585 4974cc23-f10b-481f-b7f4-ae9a4cb61371 {"pid": "7656", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028433890"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.261152 2024-09-11 09:08:15.261157 c944de77-f3e6-47f1-a553-51dbb182b725 {"pid": "7657", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028497244"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.320822 2024-09-11 09:08:15.320826 fc44a013-6171-4758-8896-051508274fb2 {"pid": "7658", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028517180"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.375829 2024-09-11 09:08:15.375833 75372b95-0069-4e04-9517-c326a7990a26 {"pid": "7659", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02852019X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.433616 2024-09-11 09:08:15.433619 493eba84-4a83-437d-a379-d95ffdc434c0 {"pid": "7660", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028549082"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.490079 2024-09-11 09:08:15.490084 7b998a78-52c0-4dc4-a75f-bf5246843a6f {"pid": "7661", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028631609"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.550461 2024-09-11 09:08:15.550466 01f56ea0-5cbc-40f8-abe6-0b57d4ee4c82 {"pid": "7662", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028637720"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.613199 2024-09-11 09:08:15.613203 e08e6252-98bc-4b33-99dc-899dbd1bf766 {"pid": "7663", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028675274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.672405 2024-09-11 09:08:15.672409 b7c8d154-9a28-42a4-ac09-e00f558cd151 {"pid": "7664", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028676661"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.724176 2024-09-11 09:08:15.724178 f99e07e4-602b-48a0-b123-141b34c89342 {"pid": "7665", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02868589X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.782858 2024-09-11 09:08:15.782865 01d81717-b7fc-4e3b-974c-0713b79337bc {"pid": "7666", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028698703"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.842893 2024-09-11 09:08:15.842897 aedd1d7b-54f5-4248-9f69-ef590d76c207 {"pid": "7667", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028700139"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.899307 2024-09-11 09:08:15.899312 051c1942-2628-4984-94c5-440d70865921 {"pid": "7668", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028700171"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:15.957481 2024-09-11 09:08:15.957486 c155c592-9ee0-471e-b18f-69811f81e25b {"pid": "7669", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028725387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.011102 2024-09-11 09:08:16.011107 eec43f90-1e5f-4814-b69d-15357458f20f {"pid": "7670", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028898338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.078679 2024-09-11 09:08:16.078683 d842b170-e4b9-4a1b-b199-d9d598bc4951 {"pid": "7671", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028909917"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.146541 2024-09-11 09:08:16.146546 6f33ebf2-9940-49e2-b89d-66d4a6ac1a1e {"pid": "7672", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028910737"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.212583 2024-09-11 09:08:16.212587 2c3116d1-b5a7-471a-bb49-56f81b638e69 {"pid": "7673", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028912098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.274798 2024-09-11 09:08:16.274801 1048773c-3c69-4dd2-8306-5c26d2b6a4b6 {"pid": "7674", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028929098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.33182 2024-09-11 09:08:16.331825 cd017d50-e577-4aeb-81da-1064b92fa0e5 {"pid": "7675", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028973631"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.38632 2024-09-11 09:08:16.386322 e95b10ec-6b84-490a-88e3-2c34c98101fa {"pid": "7676", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02900294X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.450224 2024-09-11 09:08:16.450229 4ca36ea5-8050-4fc5-b602-e1fcb8f747da {"pid": "7677", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02904197X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.513947 2024-09-11 09:08:16.51395 468a65cd-43f9-4eeb-8460-9ea16fb1087f {"pid": "7678", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029042046"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.569556 2024-09-11 09:08:16.56956 a691fd40-8fa2-4e17-a19f-6d894695bef3 {"pid": "7679", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029042186"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.632682 2024-09-11 09:08:16.632687 a4c5987c-e249-421e-aef6-f051cb57d7a5 {"pid": "7680", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02905026X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.686462 2024-09-11 09:08:16.686466 f4ee349f-70da-489b-8af9-7cdb10d01097 {"pid": "7681", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029182387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.74543 2024-09-11 09:08:16.745435 74adbcf9-94db-450b-8a2e-446b897d4dc5 {"pid": "7682", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029205794"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.80629 2024-09-11 09:08:16.806292 886e6836-3699-4061-b863-77c908c06e9a {"pid": "7683", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029342147"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.865108 2024-09-11 09:08:16.865113 879e1a8b-be35-43d8-b5c6-a6e6f7d58886 {"pid": "7684", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029344212"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.921023 2024-09-11 09:08:16.921028 a6e42643-53e7-433f-9e22-9b0cc072d5fe {"pid": "7685", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029347254"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:16.975202 2024-09-11 09:08:16.975207 20e68db4-ab1e-48db-8cd9-5448462584e5 {"pid": "7686", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029349230"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.03774 2024-09-11 09:08:17.037743 d16e8f66-4685-48cb-81f4-1c39454f3dde {"pid": "7687", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029404614"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.095377 2024-09-11 09:08:17.09538 483aaf74-38a9-4b55-a188-0eb38c16be35 {"pid": "7688", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029410312"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.156063 2024-09-11 09:08:17.156068 9dc33eeb-b3c1-46c7-a863-516d1a4b64ef {"pid": "7689", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029575168"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.213605 2024-09-11 09:08:17.213608 38203505-2fec-407b-a5cc-9d6b042d203f {"pid": "7690", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029652308"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.268518 2024-09-11 09:08:17.268523 382b38d8-7313-4044-be3d-175e6b2effc6 {"pid": "7691", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029726190"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.326426 2024-09-11 09:08:17.32643 67854d94-4071-4731-bb21-d4a064556aaf {"pid": "7692", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029753090"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.386776 2024-09-11 09:08:17.38678 f7bec825-d51b-41f3-9a72-6ce076046e21 {"pid": "7693", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029755999"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.44237 2024-09-11 09:08:17.442374 3c8eeb51-d4ec-4926-9d90-9b441ea3ac48 {"pid": "7694", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029795826"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.49934 2024-09-11 09:08:17.499344 541f89b4-f178-4eac-b1a0-f6caf306bb16 {"pid": "7695", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029888026"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.566704 2024-09-11 09:08:17.566709 6543185e-37bf-4d4d-874f-6e374f06ac46 {"pid": "7696", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029918006"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.622175 2024-09-11 09:08:17.622181 d5989516-8133-4cdd-b741-99dcfbe0c65e {"pid": "7697", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029933730"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.678797 2024-09-11 09:08:17.678801 8a5d3924-bda2-4036-a651-54216f9d667c {"pid": "7698", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029958857"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.734873 2024-09-11 09:08:17.734875 6b20c1d8-b06c-4dce-8c4d-cdf90737c3e5 {"pid": "7699", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03001235X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.793109 2024-09-11 09:08:17.793113 20c15b8c-e2ff-47af-ace3-521f4e531a48 {"pid": "7700", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030017653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.857719 2024-09-11 09:08:17.857724 953499f6-41b7-40e1-9f07-156f239a0930 {"pid": "7701", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030055849"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.920178 2024-09-11 09:08:17.920182 441773f0-5df3-4576-b124-842bdc6c67c3 {"pid": "7702", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030086469"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:17.976693 2024-09-11 09:08:17.976697 852cd0d9-8507-43f6-8a72-074921b6ae9e {"pid": "7703", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030128145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.039681 2024-09-11 09:08:18.039685 d4422d84-e0b5-447e-9332-2924efff6b2b {"pid": "7704", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03018729X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.098292 2024-09-11 09:08:18.098297 d860000d-8d75-4863-90ce-5ccbd37a39b3 {"pid": "7705", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030219884"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.159681 2024-09-11 09:08:18.159686 ecd6f523-4df5-4854-876e-4c519b81daf9 {"pid": "7706", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030336880"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.22436 2024-09-11 09:08:18.224365 629381fa-c543-477e-b146-d0269ccadbd5 {"pid": "7707", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030423724"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.286715 2024-09-11 09:08:18.286721 74fea9b4-a9f7-4bdb-ab34-a97997793c2f {"pid": "7708", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030435056"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.353522 2024-09-11 09:08:18.353526 bea3a6b5-6bdd-4935-a395-b68c6176d32a {"pid": "7709", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030642841"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.423569 2024-09-11 09:08:18.423573 7024bb61-a121-422e-bbae-45a83f7d0ac8 {"pid": "7710", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030768381"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.485975 2024-09-11 09:08:18.485981 2cc33c96-f9bd-4e64-b2f9-3f11190439c0 {"pid": "7711", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03082401X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.545289 2024-09-11 09:08:18.545293 c0b2aedd-cb04-4e76-97ee-6a9cdf8f668e {"pid": "7712", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030904218"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.604163 2024-09-11 09:08:18.604166 2a9285d5-4f2f-41e0-85e2-3a21eab0e045 {"pid": "7713", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030909120"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.68403 2024-09-11 09:08:18.684037 fad4f17e-8d54-41b7-80fe-ac840f8f7fed {"pid": "7714", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030924987"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.748902 2024-09-11 09:08:18.748905 95903e07-068f-437f-83be-b45b0f14ccc7 {"pid": "7715", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030975689"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.813132 2024-09-11 09:08:18.813136 c16cdc30-da49-4b73-9ea3-4c73cccd88b3 {"pid": "7716", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031018866"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.880306 2024-09-11 09:08:18.880311 9175f01c-8bec-405f-bc85-d2c856d09322 {"pid": "7717", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031067956"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:18.951265 2024-09-11 09:08:18.951271 2040cd76-0c74-45d2-aff5-56ba4212e8f4 {"pid": "7718", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031208495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.015116 2024-09-11 09:08:19.015121 6e2b236f-3b10-4853-9928-b2d2021c8abd {"pid": "7719", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031380107"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.076587 2024-09-11 09:08:19.076591 812f68f9-5028-4973-8857-3a8c6c5e3401 {"pid": "7720", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031531121"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.141711 2024-09-11 09:08:19.141714 0bf8c061-0f87-487c-adad-79285fe27f8d {"pid": "7721", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03166010X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.211916 2024-09-11 09:08:19.21192 598401aa-e637-41fc-b173-550b9b97b512 {"pid": "7722", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031819877"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.273518 2024-09-11 09:08:19.273522 1295baaa-1728-4545-9ca6-d585383af9f3 {"pid": "7723", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032027524"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.331486 2024-09-11 09:08:19.33149 e87aad76-6299-4643-a205-413c32fe51aa {"pid": "7724", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032184034"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.389288 2024-09-11 09:08:19.389291 fb835cdb-1bc6-4599-9679-4c9f9fabfeb8 {"pid": "7725", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032317468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.445809 2024-09-11 09:08:19.445812 bc813c6a-7f57-4840-b1a8-f6769f2fca1f {"pid": "7726", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032324650"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.50489 2024-09-11 09:08:19.504895 b37432eb-2808-48c8-8b14-a363dccd6781 {"pid": "7727", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032324804"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.566767 2024-09-11 09:08:19.56677 aab9b7cf-9504-4fdd-9ea6-0fef80667eb4 {"pid": "7728", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032370474"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.631699 2024-09-11 09:08:19.631702 a454acd5-2cf6-464e-9945-7f9bb1795f32 {"pid": "7729", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03243782X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.702263 2024-09-11 09:08:19.702268 c60cad63-067b-4301-813b-100f4ff8cd33 {"pid": "7730", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032493940"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.768065 2024-09-11 09:08:19.768072 5d26df17-8a98-40df-9094-d623d2c17176 {"pid": "7731", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032506929"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.829861 2024-09-11 09:08:19.829866 84d3efc0-ef21-443d-8717-70f9739f0781 {"pid": "7732", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03256953X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.889898 2024-09-11 09:08:19.8899 4f708c9a-66ef-4290-8465-82d5f9626f31 {"pid": "7733", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032675011"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:19.950498 2024-09-11 09:08:19.950503 a9c5673c-faac-4712-a84d-353e0f3d327a {"pid": "7734", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032709501"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.01039 2024-09-11 09:08:20.010393 5add4eab-8bd2-4929-8fd4-424ab7fe1b5e {"pid": "7735", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032916078"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.072791 2024-09-11 09:08:20.072795 3426e50b-5fed-463b-8895-4d713142d75c {"pid": "7736", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032978294"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.130042 2024-09-11 09:08:20.130045 99ef88a2-fde3-46cf-a94d-4efffe661c1c {"pid": "7737", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033125341"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.19597 2024-09-11 09:08:20.195975 a7bfd65d-eead-4418-a186-ed04f8f1945d {"pid": "7738", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033136831"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.25391 2024-09-11 09:08:20.253912 388ad2d0-1cc1-46d7-ab6c-ec6b70d13e69 {"pid": "7739", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033422605"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.314493 2024-09-11 09:08:20.314497 4e91a50b-43ab-4391-852a-5455feabf8a3 {"pid": "7740", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033433763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.38277 2024-09-11 09:08:20.382775 aa03c677-5bb1-4cce-a566-6126de38eb7c {"pid": "7741", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033642036"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.444664 2024-09-11 09:08:20.444666 39b4bb8e-d705-4bd9-8fbe-e2ece2fe4bba {"pid": "7742", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033738653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.507713 2024-09-11 09:08:20.507717 29472fdc-ad10-44bd-af5c-5760d62b60fc {"pid": "7743", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03374033X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.640766 2024-09-11 09:08:20.640771 40d59f97-d8f2-491b-a101-c9377dde8e8b {"pid": "7745", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033895732"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.707816 2024-09-11 09:08:20.70782 0852ab0a-e7e4-4871-8726-53bd09262728 {"pid": "7746", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034054693"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.761241 2024-09-11 09:08:20.761245 5274068f-3473-458c-828f-d2f141a077b5 {"pid": "7747", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03405491X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.818196 2024-09-11 09:08:20.818199 a29be910-4013-496b-b0e5-80103eff7ea5 {"pid": "7748", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034133704"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.879731 2024-09-11 09:08:20.879735 8d976fa5-8b2e-4ece-82dd-d892dd74bbb9 {"pid": "7749", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034195688"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.935602 2024-09-11 09:08:20.935606 4a4a1275-b69f-444c-8bc8-34c8c3db4c73 {"pid": "7750", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034254145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:20.995069 2024-09-11 09:08:20.995074 c4090b37-f3f9-4966-8773-bb607ac32f61 {"pid": "7751", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034259910"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.061917 2024-09-11 09:08:21.061922 7c50bb91-1fa6-4da5-a6d6-4dc31c085197 {"pid": "7752", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034308695"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.120969 2024-09-11 09:08:21.120972 1f875285-1e63-4593-8d5b-130d4a0da500 {"pid": "7753", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034342230"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.176066 2024-09-11 09:08:21.17607 3161f2b5-843e-4834-b2cb-c983a4fcd7f3 {"pid": "7754", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034566228"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.234105 2024-09-11 09:08:21.234108 d4287ba9-bc07-4246-98dd-670bed66b3b0 {"pid": "7755", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034591966"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.291023 2024-09-11 09:08:21.291028 d765eeca-7867-49de-9762-082c485163cc {"pid": "7756", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034623574"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.350749 2024-09-11 09:08:21.350752 2eee7895-8161-4174-b9b2-ec0fbc55dd70 {"pid": "7757", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034679391"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.408348 2024-09-11 09:08:21.408353 9006b27b-60d6-459c-95c2-b0795fb9e70c {"pid": "7758", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034705384"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.470596 2024-09-11 09:08:21.470601 41a84157-0f48-4ce7-9bec-036758c7d517 {"pid": "7759", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03472690X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.52915 2024-09-11 09:08:21.529154 a86ecdf9-07c2-4d21-99b9-e08acd2c8301 {"pid": "7760", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034766995"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.587392 2024-09-11 09:08:21.587395 e88903d1-17f8-4a68-86a2-10ca821087f8 {"pid": "7761", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034781897"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.661623 2024-09-11 09:08:21.661626 62302b1f-e58e-4cd0-aae2-438d31d393ef {"pid": "7762", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034857923"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.720535 2024-09-11 09:08:21.720539 d41040ba-3ee9-4226-9d8e-60f49e37a95a {"pid": "7763", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034885420"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.78041 2024-09-11 09:08:21.780424 968447bf-2fa1-4400-863c-369eec040d20 {"pid": "7764", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034892710"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.840475 2024-09-11 09:08:21.840479 35768127-a0a7-4fe8-9747-526fe073b0b1 {"pid": "7765", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034960848"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.899717 2024-09-11 09:08:21.89972 71c7d16f-31ff-45b1-b183-3c74a8876a3c {"pid": "7766", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035061308"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:21.962701 2024-09-11 09:08:21.962704 787e014f-6739-45bf-bdeb-daffce524f1c {"pid": "7767", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035095679"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.027161 2024-09-11 09:08:22.027164 64cdd54e-d613-4ff8-ba72-129bdd9084c5 {"pid": "7768", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035167734"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.091716 2024-09-11 09:08:22.091721 0daacef5-f333-493e-97c6-c293fef43280 {"pid": "7769", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035198222"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.153587 2024-09-11 09:08:22.153591 4913f69a-6375-4e06-9b78-ca3204c233fd {"pid": "7770", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035260521"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.214107 2024-09-11 09:08:22.214112 3b377da8-d2bf-4d97-9459-49c13b993cf8 {"pid": "7771", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035461152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.27337 2024-09-11 09:08:22.273373 6ab753a1-9048-499a-9f05-e5e5d277eac4 {"pid": "7772", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035486686"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.331525 2024-09-11 09:08:22.331527 6f49698e-b04c-4274-8072-701123bdcfeb {"pid": "7773", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035527250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.392119 2024-09-11 09:08:22.392123 206f0d94-abbb-4c9a-bc3d-f5ff6ee0a84d {"pid": "7774", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035621664"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.456178 2024-09-11 09:08:22.456181 4e1d659d-3019-46ec-816a-9331a648b2d5 {"pid": "7775", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035634847"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.515278 2024-09-11 09:08:22.515282 e8e99cb5-38a8-422b-b0be-076902f061c0 {"pid": "7776", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035650532"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.577148 2024-09-11 09:08:22.57715 dd9d8ddc-c689-41cd-981b-437b5b2f2d9e {"pid": "7777", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035658622"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.633399 2024-09-11 09:08:22.633401 9f35da52-9604-4efe-a62b-c6d22b784e3a {"pid": "7778", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035724099"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.709519 2024-09-11 09:08:22.709524 a5d48aa2-588c-4ae9-b42a-c7d6f88641e3 {"pid": "7779", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050124315"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.769437 2024-09-11 09:08:22.769441 c4f80b52-10d1-4ceb-94a6-d8332a101868 {"pid": "7780", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050186647"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.826608 2024-09-11 09:08:22.826612 8f1422ee-5b87-48a8-afff-aa248f271699 {"pid": "7781", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050220284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.891925 2024-09-11 09:08:22.891928 08ed1f7c-531b-4e7a-9230-5a6cd0b2e5a3 {"pid": "7782", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050366157"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:22.952685 2024-09-11 09:08:22.952691 d2f00b98-2da0-4209-9fad-3ff694a09910 {"pid": "7783", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05041870X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.012763 2024-09-11 09:08:23.012768 85ff64f2-1b33-407e-88c6-76612237ea8a {"pid": "7784", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050516760"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.078168 2024-09-11 09:08:23.078171 2c062981-a0f0-49e1-8669-9acb550a37bc {"pid": "7785", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050518526"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.140546 2024-09-11 09:08:23.140551 7e68e06e-93f9-4a76-b4b9-a21a720e8fdb {"pid": "7786", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050534882"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.193659 2024-09-11 09:08:23.193663 88cfd49a-56b2-401c-b752-236da74cee9f {"pid": "7787", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05056479X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.256008 2024-09-11 09:08:23.256011 fc45e51f-6b3e-470a-8f3d-6debb7783aa1 {"pid": "7788", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050582453"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.311498 2024-09-11 09:08:23.311501 d2445b25-b39e-4828-a7e5-461d7f7d7f8c {"pid": "7789", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050602195"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.373144 2024-09-11 09:08:23.373148 1733b78c-06d4-4465-92fd-ae1c2890a548 {"pid": "7790", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050627953"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.432492 2024-09-11 09:08:23.432494 bf005b44-ef9b-4730-8f33-87da5e13c593 {"pid": "7791", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050702858"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.489584 2024-09-11 09:08:23.489588 2cf00afd-dd46-4bf1-9948-3db3cc280ea4 {"pid": "7792", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050764861"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.548871 2024-09-11 09:08:23.548874 215652de-9b0a-4f0c-96d0-825da8ea1a28 {"pid": "7793", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050773313"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.626343 2024-09-11 09:08:23.626348 829ec786-3317-4c86-8633-e40b2ccc3c54 {"pid": "7794", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050784005"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.683873 2024-09-11 09:08:23.683877 2eab52ec-c76a-4380-aeb8-93d33f8b99ea {"pid": "7795", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050808583"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.736969 2024-09-11 09:08:23.736972 33725dea-ab9f-4493-8dd3-f2e8333883b5 {"pid": "7796", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050827405"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.794038 2024-09-11 09:08:23.794042 74433b0d-d7e7-447c-ac67-7a7ceee33c05 {"pid": "7797", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/052587207"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.852714 2024-09-11 09:08:23.852718 ade075fd-7e6d-4ab1-a34b-be0636cd1cdd {"pid": "7798", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/052634833"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.911401 2024-09-11 09:08:23.911405 f8d0e58f-1f61-4088-97af-785fdd1150be {"pid": "7799", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/053469844"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:23.969031 2024-09-11 09:08:23.969036 1db06404-8bba-42df-a351-ef1cbfc023b3 {"pid": "7800", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/055308600"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.036737 2024-09-11 09:08:24.03674 7d1daf3d-df1b-4ba5-a626-43b46b4a3327 {"pid": "7801", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/059302208"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.091636 2024-09-11 09:08:24.09164 196890e1-a3e5-466a-b3af-1996beb7b5dd {"pid": "7802", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05930278X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.154421 2024-09-11 09:08:24.154425 6528e820-228c-482c-9d80-adcd96f1d8d2 {"pid": "7803", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/059307374"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.215237 2024-09-11 09:08:24.215241 4769f095-73f1-4048-a17f-25789784bc79 {"pid": "7804", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06082929X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.276147 2024-09-11 09:08:24.276151 6f57375e-3025-461a-bb2f-2d9a67809513 {"pid": "7805", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06160738X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.341265 2024-09-11 09:08:24.341269 4b13c696-2076-4175-b53d-cfa08ce2b11c {"pid": "7806", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/075000504"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.397559 2024-09-11 09:08:24.397562 9aacccfc-8972-464b-be6f-51d1b367597e {"pid": "7807", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077057589"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.457196 2024-09-11 09:08:24.4572 c9f9855e-a684-4df3-a528-02725896f893 {"pid": "7808", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077060377"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.514966 2024-09-11 09:08:24.51497 b0a660e9-2572-49cf-90c6-b6720b30a864 {"pid": "7809", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077062809"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.573081 2024-09-11 09:08:24.573085 13fc2ebf-98eb-416f-849c-649c6da2687c {"pid": "7810", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077075757"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.660494 2024-09-11 09:08:24.660498 e7bc534b-7a07-4179-b2cc-7a1ceff1fbf4 {"pid": "7811", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077088883"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.728789 2024-09-11 09:08:24.728794 36bf6d0f-983a-4fe3-81c0-cc6e50866a4a {"pid": "7812", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077091035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.787026 2024-09-11 09:08:24.78703 ebed4c7d-794a-4430-ac8b-f67c8609662d {"pid": "7813", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077397827"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.851911 2024-09-11 09:08:24.851915 0c228fec-3078-484b-8860-8a2db101423e {"pid": "7814", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077937007"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.911134 2024-09-11 09:08:24.911137 85a35c45-4662-43a5-89f4-8fec3f0c7aa6 {"pid": "7815", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/078974089"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:24.977363 2024-09-11 09:08:24.977366 2635a4d9-4ac6-4714-bf66-efc4595fc819 {"pid": "7816", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/079180043"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.037559 2024-09-11 09:08:25.037563 1ab35dea-a21e-4167-8281-62c5f157c90b {"pid": "7817", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/081665660"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.094969 2024-09-11 09:08:25.094973 d8f6aa0b-9f01-411d-84ca-9f8662349bce {"pid": "7818", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083421467"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.156128 2024-09-11 09:08:25.156131 2274bc36-9485-4429-9c23-1884928243aa {"pid": "7819", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083972684"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.21809 2024-09-11 09:08:25.218095 9c8ad8c8-86b6-4d07-b14d-1e46a0916ffe {"pid": "7820", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/08523611X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.28459 2024-09-11 09:08:25.284595 65a382d9-9865-4ae9-9574-0c915aa2dd8d {"pid": "7821", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/087834979"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.369119 2024-09-11 09:08:25.369123 ca8ed834-5784-4725-b9c3-063fe66cd42a {"pid": "7822", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/087960621"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.42658 2024-09-11 09:08:25.426583 1e7ee1dd-2e2c-4c1b-a226-0b3666417369 {"pid": "7823", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.483744 2024-09-11 09:08:25.483749 96c5025a-00e9-48ad-9ac8-55f8d0c30d83 {"pid": "7824", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468950"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.542788 2024-09-11 09:08:25.542792 473c550b-621a-448d-afec-f985d5434436 {"pid": "7825", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.601003 2024-09-11 09:08:25.601005 fdfb2655-1ff5-4fdf-8d13-4ed1f914cd09 {"pid": "7826", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/110905687"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.670306 2024-09-11 09:08:25.670311 9e557238-a68a-42ab-996f-0f2b5df4839d {"pid": "7827", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/111597153"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.737605 2024-09-11 09:08:25.737611 dbfa805c-9dba-4a56-86dc-9801c63e57b9 {"pid": "7828", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/112539750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.794945 2024-09-11 09:08:25.794947 e4615c6f-9724-4c3f-89f1-c2649c8d2f0b {"pid": "7829", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/115898840"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.856116 2024-09-11 09:08:25.85612 a7e882f4-c399-408d-91d4-a28ab1af9a20 {"pid": "7830", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/118419722"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.922759 2024-09-11 09:08:25.922761 ccf1db81-9f8b-482e-bc32-538fa5edc276 {"pid": "7831", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/118420763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:25.9805 2024-09-11 09:08:25.980505 f940a302-8734-4856-b5a1-693036b1c22b {"pid": "7832", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/11948949X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.042371 2024-09-11 09:08:26.042376 1f2ad8b3-8b7a-4446-8114-341431b4fb66 {"pid": "7833", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/120299658"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.099637 2024-09-11 09:08:26.09964 2892b30e-663f-4179-a042-f701ec425c59 {"pid": "7834", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/12059353X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.163357 2024-09-11 09:08:26.163361 7712e753-9ace-447f-a222-73e49237c2f8 {"pid": "7835", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122348486"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.220634 2024-09-11 09:08:26.220638 2be4e4cd-e909-4cf4-900a-fa976fefd9a8 {"pid": "7836", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122348877"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.274534 2024-09-11 09:08:26.274538 9862e579-be57-4fa3-ae3a-0c14578eb248 {"pid": "7837", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122957032"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.334776 2024-09-11 09:08:26.334778 e9aa91b0-d300-42c7-89dc-c3388858d481 {"pid": "7838", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/123472466"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.388756 2024-09-11 09:08:26.388758 4fd1999b-d82c-4e85-9013-0e04ea4546b9 {"pid": "7839", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/124452248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.448849 2024-09-11 09:08:26.448853 9ef28656-1076-4308-9874-03d261a2e938 {"pid": "7840", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/129822051"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.509748 2024-09-11 09:08:26.509752 bcaf964b-351a-4349-96fa-2e7790f94361 {"pid": "7841", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/130683035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.57602 2024-09-11 09:08:26.576024 a8ecf56f-214f-4678-ad47-5321b2b27c5b {"pid": "7842", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/13073019X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.642307 2024-09-11 09:08:26.642312 9ddd46e3-15a6-4777-b79e-2a846b0c7ad7 {"pid": "7843", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/131981226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.715029 2024-09-11 09:08:26.715034 3325c2dc-7c7c-4c1b-9f6a-ea192c62ac61 {"pid": "7844", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/132211378"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.772942 2024-09-11 09:08:26.772945 67815eca-66af-4434-80e8-4a3134c9b746 {"pid": "7845", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/133566129"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.836641 2024-09-11 09:08:26.836649 8f785980-f4c1-4b43-9848-04bbcf1f6755 {"pid": "7846", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/135615003"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.893436 2024-09-11 09:08:26.893439 8168f82b-6f7d-48ee-bc35-f2e2a416bb29 {"pid": "7847", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/136707165"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:26.95177 2024-09-11 09:08:26.951775 e1d3c542-7762-4a78-ae9e-c9192639ca0d {"pid": "7848", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/13776541X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.015517 2024-09-11 09:08:27.015522 10168191-fe0b-43d5-b27b-59dacb10fb21 {"pid": "7849", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/137978685"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.074186 2024-09-11 09:08:27.07419 8f4b15e3-e0a5-4517-8819-b4be8d3d5d59 {"pid": "7850", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/139100857"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.131345 2024-09-11 09:08:27.131349 61b04520-8834-4ade-a817-aa8294820d5e {"pid": "7851", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/142761583"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.189984 2024-09-11 09:08:27.189988 e3d369ed-3d93-4152-83f3-e1db7843774a {"pid": "7852", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144664194"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.255059 2024-09-11 09:08:27.255062 f4ced338-ddac-4a8b-b2f8-81da2128e5c4 {"pid": "7853", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/145035468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.309905 2024-09-11 09:08:27.309909 e1eda898-6304-4bc0-a92f-c28a83c41d99 {"pid": "7854", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/145909093"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.368483 2024-09-11 09:08:27.368486 3a2d29ff-dce9-4ee7-9554-5537ef1c23fb {"pid": "7855", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146923081"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.427302 2024-09-11 09:08:27.427306 5cf1eba9-6a73-4274-b228-0881e5cae866 {"pid": "7856", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/147286433"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.487851 2024-09-11 09:08:27.487855 9a9d456d-a0e4-4304-9a9c-4f072fabf50c {"pid": "7857", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148541372"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.565767 2024-09-11 09:08:27.565771 86616797-4c2a-44aa-85e4-89ad02fdf921 {"pid": "7858", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148542182"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.627 2024-09-11 09:08:27.627004 471402dd-72d0-47d5-b4c9-016aacc5fdeb {"pid": "7859", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/151385432"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.684057 2024-09-11 09:08:27.684061 e288f299-871e-4002-93b4-db5bbd50c745 {"pid": "7860", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/15212201X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.740666 2024-09-11 09:08:27.740668 da0273f7-d3db-4955-9121-60061cc166bf {"pid": "7861", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/15909545X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.799669 2024-09-11 09:08:27.799672 bc39d15c-4e1b-4047-98a0-acc41e747eb6 {"pid": "7862", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/167934813"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.863873 2024-09-11 09:08:27.863876 3787001f-6464-43dc-99a6-4921499e1697 {"pid": "7863", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/168476010"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.930647 2024-09-11 09:08:27.930651 b2a35244-f49b-4b53-87df-b4ff26d39d03 {"pid": "7864", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/169910733"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:27.99328 2024-09-11 09:08:27.993283 b6cadb43-98a1-45d7-bb32-235fd6e6b4b5 {"pid": "7865", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17129226X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.061313 2024-09-11 09:08:28.061317 d36548f3-feb7-4dcd-82de-2cb0f3d0f7df {"pid": "7866", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17523308X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.120883 2024-09-11 09:08:28.120886 518bea16-d9ca-4860-8ce0-00f5fcf3a547 {"pid": "7867", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17939360X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.179631 2024-09-11 09:08:28.179636 ec2be3c0-4451-4f19-9346-196b7a0c318c {"pid": "7868", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180214845"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.238095 2024-09-11 09:08:28.238098 a200e3e5-5ce1-4c17-9c83-42c42c3cd7a9 {"pid": "7869", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180214926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.29764 2024-09-11 09:08:28.297644 d8706a1a-c1cb-4b54-a94a-ae5e216f7c78 {"pid": "7870", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/18028505X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.357771 2024-09-11 09:08:28.357775 a3cff396-3f80-4a80-95b8-c60832b3df78 {"pid": "7871", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/181882604"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.41494 2024-09-11 09:08:28.414945 5eae82a2-eee9-4050-805f-625ffd445a89 {"pid": "7872", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/182446174"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.478288 2024-09-11 09:08:28.478293 25bf17b5-65f1-496e-9ae0-c6baa1b94466 {"pid": "7873", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/183790936"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.550315 2024-09-11 09:08:28.55032 f664ccfd-1d54-4e09-a148-74c7d5cba25c {"pid": "7874", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/183791428"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.610718 2024-09-11 09:08:28.610721 29ec0015-ff58-41f2-8df7-d830c101085f {"pid": "7875", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/184625807"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.671507 2024-09-11 09:08:28.67151 b511963d-fcd6-4abb-9bb0-99e8f36ecf51 {"pid": "7876", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/185018440"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.735777 2024-09-11 09:08:28.735779 64b58f65-4047-4d90-a512-2c010b159c27 {"pid": "7877", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/187082324"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.794695 2024-09-11 09:08:28.794699 17c55edd-0cec-4e2a-a3af-f52df5dee8da {"pid": "7878", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/190795786"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.853918 2024-09-11 09:08:28.853937 088a2178-0f51-452f-9fd1-8890ca5093af {"pid": "7879", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/190994320"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.914359 2024-09-11 09:08:28.914362 7be90e7e-7eac-4c6c-8290-d68b5abe1b26 {"pid": "7880", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/193304104"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:28.970342 2024-09-11 09:08:28.970347 1229b1ce-6959-4c20-ac65-aac420054b73 {"pid": "7881", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/193617668"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.030141 2024-09-11 09:08:29.030145 29910fb5-36a6-4dc6-b415-4648a8ebef5a {"pid": "7882", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/196951763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.094679 2024-09-11 09:08:29.094685 2a3fd35f-4731-4777-ae6c-f95970ea8241 {"pid": "7883", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/197956653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.152947 2024-09-11 09:08:29.15295 25ece9d8-01a3-4b96-b899-cba59dc150c2 {"pid": "7884", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/197957358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.210389 2024-09-11 09:08:29.210394 5788a1b1-c7c7-43ab-8ccf-9e8b53451f48 {"pid": "7885", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/199344019"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.273241 2024-09-11 09:08:29.273247 d8ba2d37-08b3-4446-9e91-6b65447d349d {"pid": "7886", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/199344248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.334886 2024-09-11 09:08:29.334889 1d7e35e3-d6be-43d1-9f20-b974c3ccdb45 {"pid": "7887", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/200582038"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.394332 2024-09-11 09:08:29.394335 b0db3cd8-0827-41d3-856b-71acc1308662 {"pid": "7888", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/200884530"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.45227 2024-09-11 09:08:29.452273 dae3f365-e772-457a-be6e-9b49bf128478 {"pid": "7889", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/204008557"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.516752 2024-09-11 09:08:29.516757 24aa6915-5a71-415e-bac8-9a648cf2d9c2 {"pid": "7890", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/219951152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.581681 2024-09-11 09:08:29.581698 dfb64b13-7170-4689-8fd7-00281c709ef9 {"pid": "7891", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/219966540"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.647214 2024-09-11 09:08:29.647218 1bca1458-07bd-4d2d-aa64-142a0a808d44 {"pid": "7892", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/223495913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.704297 2024-09-11 09:08:29.704301 9c27d4f2-e645-468a-846e-18973815e7bf {"pid": "7893", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/223831840"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.764237 2024-09-11 09:08:29.764241 b2cd5a51-e91d-44ee-8232-5a1e352eaa67 {"pid": "7894", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/225382520"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.832054 2024-09-11 09:08:29.832057 146b5406-2df7-4990-afa8-0f642854c32e {"pid": "7895", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/227367677"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.891838 2024-09-11 09:08:29.891842 9cdd416c-6fd1-4bb9-a4d2-54bfe0ba08d2 {"pid": "7896", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/227858689"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:29.951902 2024-09-11 09:08:29.951906 f4eaf2f2-ac30-4130-a1a5-6c8dcef3ba8b {"pid": "7897", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/228803608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.009707 2024-09-11 09:08:30.009711 4e10996b-795e-44eb-b8da-c0fa0d5e0321 {"pid": "7898", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/232818665"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.07782 2024-09-11 09:08:30.077822 a97d9396-3c48-4a25-b73f-8e3d7223208f {"pid": "7899", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/234183721"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.135768 2024-09-11 09:08:30.135771 1867b0b1-1977-4822-8486-3c1505364897 {"pid": "7900", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/236280147"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.194942 2024-09-11 09:08:30.194946 4f449dc1-595f-499d-9c29-6dbde526f6a7 {"pid": "7901", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26110683X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.253574 2024-09-11 09:08:30.253577 8bdea4c1-a994-4ff7-9d92-6fd7f3cf169a {"pid": "7902", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261107119"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.315621 2024-09-11 09:08:30.315626 9905fbb5-fa52-4890-a287-a97bc259f914 {"pid": "7903", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261901915"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.379235 2024-09-11 09:08:30.379239 9e10bd9c-af9d-483d-a4dc-532abc76c196 {"pid": "7904", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263499758"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.438329 2024-09-11 09:08:30.438334 dbf65995-c6b2-419a-9384-46542617c844 {"pid": "7905", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264222423"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.497006 2024-09-11 09:08:30.497009 6d196dcd-3be3-4b6a-af31-835f126f2047 {"pid": "7906", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264325974"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.572473 2024-09-11 09:08:30.572477 300cf4b7-a78b-4684-9a57-bc1fde9e9274 {"pid": "7907", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264387414"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.638555 2024-09-11 09:08:30.638559 9a80f8a1-99d4-4780-bfb8-f1b92ccf8049 {"pid": "7908", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264387538"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.698821 2024-09-11 09:08:30.698825 1e77f5f8-d3f6-4c3f-8f0a-ab4829966e6f {"pid": "7909", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26438833X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.762228 2024-09-11 09:08:30.762231 4a0998e9-14b9-4745-a722-1e5b5bf0d88e {"pid": "7910", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/271981423"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.819024 2024-09-11 09:08:30.819029 9204a626-bad6-49d6-8911-9fddf5b48e66 {"pid": "7911", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874690X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.879159 2024-09-11 09:08:30.879163 ee789fcc-1907-4fce-8fa7-5e26543860ca {"pid": "7912", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746969"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:30.936838 2024-09-11 09:08:30.936842 e7d84323-c21b-4b90-a7d6-3cfe9c9266dd {"pid": "7913", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746985"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.000446 2024-09-11 09:08:31.000454 ab186327-78ca-4677-a194-d5f8deb9ecf8 {"pid": "7914", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746993"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.065271 2024-09-11 09:08:31.065273 8058e5f5-7982-4310-a4c2-7c39fd26581a {"pid": "7915", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747000"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.125471 2024-09-11 09:08:31.125476 9eafa2e6-4691-4c70-b660-907fd60ff8b4 {"pid": "7916", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747019"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.179606 2024-09-11 09:08:31.179611 6cd35b84-5af8-4ccb-a6a3-b6a98fd03c3e {"pid": "7917", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747043"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.237632 2024-09-11 09:08:31.237638 f856fe45-4ae3-4f6b-a8f5-ca420aa759ba {"pid": "7918", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747167"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.301363 2024-09-11 09:08:31.301366 20c16a27-3c6d-4351-b0e9-1a87769d7e61 {"pid": "7919", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747175"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.361716 2024-09-11 09:08:31.361722 d00285ac-564c-4165-9f8b-495fd432e695 {"pid": "7920", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747183"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.437762 2024-09-11 09:08:31.437768 a3456686-206c-4852-aaa9-d30d00f53434 {"pid": "7921", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747191"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.50604 2024-09-11 09:08:31.506043 ed9caf0e-bce3-4335-b35f-2aeec9a15dce {"pid": "7922", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874723X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.561875 2024-09-11 09:08:31.561879 820ea248-ff28-43f6-b032-c78d0cf6f6cf {"pid": "7923", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747280"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.619837 2024-09-11 09:08:31.619841 e3f09caf-0739-481f-bb59-c657acf4b76a {"pid": "7924", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747329"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.681355 2024-09-11 09:08:31.681359 8e9341ff-902e-4243-9783-65fb9e390534 {"pid": "7925", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034725"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.746014 2024-09-11 09:08:31.746018 ff287530-4253-4b42-862b-a45a6c87487f {"pid": "7926", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034733"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.803368 2024-09-11 09:08:31.803373 d9d91156-46e1-4d6e-9846-dde66d4b2b4e {"pid": "7927", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034741"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.872073 2024-09-11 09:08:31.872076 dad6ee31-1f6c-408a-b84d-d7359592f99e {"pid": "7928", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903475X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.929797 2024-09-11 09:08:31.929801 7d968f29-6187-4d1e-95f7-54f7b01450ca {"pid": "7929", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034806"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:31.9881 2024-09-11 09:08:31.988104 32abe329-de98-451f-a556-6abb2366dcfd {"pid": "7930", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034814"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.053263 2024-09-11 09:08:32.053268 caacae0f-4a9e-4e05-9bcd-d409d7d0a25c {"pid": "7931", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034822"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.112684 2024-09-11 09:08:32.112687 05121198-2933-46b0-9f9f-896966abf811 {"pid": "7932", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034849"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.172034 2024-09-11 09:08:32.172038 fb4c7773-3a00-4431-8139-8840b1eca46a {"pid": "7933", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034881"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.22979 2024-09-11 09:08:32.229793 c544e395-5d8e-491a-a438-7a15a57467e5 {"pid": "7934", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903492X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.284694 2024-09-11 09:08:32.284697 2063c4fa-d344-4632-a433-0d0c5e0fc0a5 {"pid": "7935", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034946"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.338486 2024-09-11 09:08:32.33849 85d33c6d-8647-457c-867e-7e8fa01a95a8 {"pid": "7936", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034962"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.408435 2024-09-11 09:08:32.408439 52802833-aa22-41cb-9ab4-2baddd5af280 {"pid": "7937", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034970"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.468114 2024-09-11 09:08:32.468118 c69b37ef-0b45-4fb2-ad40-49e63b5a36c4 {"pid": "7938", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034997"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.526712 2024-09-11 09:08:32.526715 7aaf6d78-e3e9-4990-925d-888eb484ba61 {"pid": "7939", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035020"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.586567 2024-09-11 09:08:32.586571 e9f8eb60-26e0-4520-b8c4-31294594bf72 {"pid": "7940", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035063"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.645038 2024-09-11 09:08:32.645043 85165943-f364-4bfa-92e4-a6e5b083dec0 {"pid": "7941", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.703323 2024-09-11 09:08:32.703328 370fa86a-1089-4aef-9022-d9167d57ceaa {"pid": "7942", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903508X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.765429 2024-09-11 09:08:32.76543 b0cfa4db-57d1-4f93-b27b-c180b0c704eb {"pid": "7943", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.824959 2024-09-11 09:08:32.824963 db558182-c37c-4afa-ab07-ae9d223d09f3 {"pid": "7944", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035101"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.891115 2024-09-11 09:08:32.891118 95582d00-8bd8-400c-b750-1a3310c14915 {"pid": "7945", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:32.954994 2024-09-11 09:08:32.954998 57464e78-5adc-4b3f-8309-78289d292fd2 {"pid": "7946", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035241"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.014132 2024-09-11 09:08:33.014135 22c2882e-4ad1-4540-9ec7-8c3126b6d737 {"pid": "7947", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027233960"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.075971 2024-09-11 09:08:33.075974 1da71ad2-46e3-49af-a3e4-5e23dafb57be {"pid": "7948", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027238431"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.140877 2024-09-11 09:08:33.140882 2962705d-76db-4fc3-8a07-c1c2a0717ed2 {"pid": "7949", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027248720"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.207343 2024-09-11 09:08:33.207347 51171c0a-6d2b-4ebb-84ea-fe8c1bdd4e54 {"pid": "7950", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027255522"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.262793 2024-09-11 09:08:33.262795 53599f97-7d71-4a7f-9849-147925b8f557 {"pid": "7951", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027258556"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.322205 2024-09-11 09:08:33.322208 94cc8453-f75a-4d90-9aed-2ad48d2b3955 {"pid": "7952", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027266273"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.398289 2024-09-11 09:08:33.398293 a9526292-0aab-4a8c-8487-3de8d4a31e5d {"pid": "7953", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027314073"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.460197 2024-09-11 09:08:33.460201 c284cf75-a471-4802-ad5e-13f7167030bc {"pid": "7954", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027361705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.520004 2024-09-11 09:08:33.520009 c04d88e4-2c02-4afa-97eb-1b0382a52feb {"pid": "7955", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027390349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.575874 2024-09-11 09:08:33.575878 00c31455-a5e5-44cc-abc3-fab7f53cf865 {"pid": "7956", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02741664X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.636451 2024-09-11 09:08:33.636453 8fe8ac5c-a311-434c-ae96-d8864fd01ea9 {"pid": "7957", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027802973"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.694416 2024-09-11 09:08:33.694421 4ce171a0-f7fc-4ba7-9b39-7608a8678bc6 {"pid": "7958", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027824586"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.757552 2024-09-11 09:08:33.757555 01bf6ba1-9164-44e1-a375-1048d391d2a6 {"pid": "7959", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027855929"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.814562 2024-09-11 09:08:33.814566 e9c0ff3a-b902-470e-8ed3-ef00173ea8a1 {"pid": "7960", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028205847"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.872228 2024-09-11 09:08:33.872233 1176d762-698d-4499-b67b-e052eb8ceebe {"pid": "7961", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028221044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.928256 2024-09-11 09:08:33.92826 9d9b57df-71e7-4471-9316-c5a7a15ed12b {"pid": "7962", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028889347"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:33.988307 2024-09-11 09:08:33.98831 92e3bc7d-d33b-493c-aadf-28d2812c3991 {"pid": "7963", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028938615"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.050169 2024-09-11 09:08:34.050173 6cd5adfe-3c8a-4d69-a4be-1059372bdbd7 {"pid": "7964", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031082599"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.112344 2024-09-11 09:08:34.112348 40c1f558-60ea-45a5-ab5e-4f486f805daf {"pid": "7965", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031955274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.188718 2024-09-11 09:08:34.188723 4e36e3a9-7cfd-4aba-b429-25b4c16f3b62 {"pid": "7966", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03465500X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.268481 2024-09-11 09:08:34.268487 6f9e0f2a-b105-4179-8947-c8e080f3e310 {"pid": "7967", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035141913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.324844 2024-09-11 09:08:34.324847 b4f173c1-3fdd-4e5f-8fbe-9c0fe32b5e05 {"pid": "7968", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05058748X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.383602 2024-09-11 09:08:34.383607 4d0375ac-9e86-4160-9c08-cfe988b16d43 {"pid": "7969", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061612820"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.439462 2024-09-11 09:08:34.439466 23c62cdb-a1ad-4ef7-a774-1acebc0edcd7 {"pid": "7970", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/127977996"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.501781 2024-09-11 09:08:34.501789 5f305ab2-aff7-4ae5-80aa-20a3cd83e60f {"pid": "7971", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/131462415"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.555137 2024-09-11 09:08:34.55514 ef6b19e3-561a-48a3-826f-5dec94db434c {"pid": "7972", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144331373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.609656 2024-09-11 09:08:34.609658 dd5292f6-a495-4a1a-a5c9-06ec81874045 {"pid": "7973", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180213911"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.668028 2024-09-11 09:08:34.66803 bc39080e-ce66-4f2c-ad3f-854e3f425cbd {"pid": "7974", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/181492628"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.731464 2024-09-11 09:08:34.731467 d0a9a89d-959f-4b78-aafd-bac4bcd4dcff {"pid": "7975", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372734"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.796669 2024-09-11 09:08:34.796672 9d84f2f4-9d87-4d4f-9cb3-50aaf9dab5c6 {"pid": "7976", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372742"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.858666 2024-09-11 09:08:34.858668 770129cd-1416-4157-a790-4751b8612771 {"pid": "7977", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.939174 2024-09-11 09:08:34.939177 37f49886-df39-4c68-b156-315878061f61 {"pid": "7978", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372777"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:34.997526 2024-09-11 09:08:34.997529 7685db14-267c-41fe-94ad-d7ad1a9eae13 {"pid": "7979", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372785"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.058699 2024-09-11 09:08:35.058703 a61351e6-3af6-4a8a-a0c9-4bdf6ec3d0ce {"pid": "7980", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/277418216"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.120451 2024-09-11 09:08:35.120455 b8163c87-f605-4e9b-ac05-c51815bc2f2c {"pid": "7981", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.190376 2024-09-11 09:08:35.190379 44dad344-f72e-4620-9530-f7e3009902bc {"pid": "7982", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035160"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.250322 2024-09-11 09:08:35.250327 721f334a-e46d-4563-9c94-eb9a5062d50e {"pid": "7983", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035179"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.31048 2024-09-11 09:08:35.310484 156490a6-b0b4-4fc4-bcc8-47cb4a59c263 {"pid": "7984", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035187"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.3785 2024-09-11 09:08:35.378506 a4feea09-b634-408f-9721-16d80b891a07 {"pid": "7985", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307322"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.439352 2024-09-11 09:08:35.439355 751636f1-fae4-4007-99c7-1e6ad85492ba {"pid": "7986", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307330"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.49946 2024-09-11 09:08:35.499463 fe7dcd0d-731b-4b1a-abe9-ff021a985d36 {"pid": "7987", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.561239 2024-09-11 09:08:35.561244 3eddda6e-a623-48e5-969c-ad42e082544b {"pid": "7988", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307357"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.625076 2024-09-11 09:08:35.62508 f6e9f6a9-75d0-43f9-a50d-03eb4b2c6f48 {"pid": "7989", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307365"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.689798 2024-09-11 09:08:35.689802 e8641381-d7f8-435e-bb3d-1ce7f88f5684 {"pid": "7990", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.749042 2024-09-11 09:08:35.749047 c93688fa-8fbf-452e-9488-301a4384fbe7 {"pid": "7991", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307462"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.810357 2024-09-11 09:08:35.81036 19437f13-5f56-487b-a486-41593f898755 {"pid": "7992", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307470"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.870889 2024-09-11 09:08:35.870894 9e94dd72-46e5-46eb-8d66-7d7d81300c4c {"pid": "7993", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307519"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.93516 2024-09-11 09:08:35.935164 939aa95c-508b-471d-8a50-c826b1e3e6f9 {"pid": "7994", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307535"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:35.988052 2024-09-11 09:08:35.988056 0734bc58-641f-43a0-808a-9a0e8df952ec {"pid": "7995", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930756X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.051689 2024-09-11 09:08:36.051695 dd6dc992-21b2-4cfb-8246-3741e97999d1 {"pid": "7996", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.12021 2024-09-11 09:08:36.120214 2b030111-d8b0-4618-a466-6b52939270d9 {"pid": "7997", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307586"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.184057 2024-09-11 09:08:36.184062 29cac78f-01c3-4a54-836f-6887fceda5e8 {"pid": "7998", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.24614 2024-09-11 09:08:36.246145 acead1f7-02ad-46b5-9b93-37c4b5f9e788 {"pid": "7999", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307632"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.309107 2024-09-11 09:08:36.309111 4791b986-5e2a-4db3-9bc5-b544b9d5e278 {"pid": "8000", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307713"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.371338 2024-09-11 09:08:36.371344 a85e12dd-916d-48bf-afec-28881f390bba {"pid": "8001", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930773X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.435618 2024-09-11 09:08:36.435624 fa3d41d2-2cbf-4410-821f-fa1780941baf {"pid": "8002", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307748"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.491572 2024-09-11 09:08:36.491577 45d37919-535b-465b-8418-ed1566ebca91 {"pid": "8003", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307780"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.553814 2024-09-11 09:08:36.553816 f8a8a7ef-1ab5-4771-92d0-b317ab8425e3 {"pid": "8004", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307799"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.610072 2024-09-11 09:08:36.610076 b826eb4e-bef4-471b-beaa-ae4a33c951c9 {"pid": "8005", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307810"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.669086 2024-09-11 09:08:36.669093 7dd45acb-2c04-40bb-91fc-572baf273d05 {"pid": "8006", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307837"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.726956 2024-09-11 09:08:36.72696 9690dedc-dfd0-47ad-aa3b-1fdbb3299c01 {"pid": "8007", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307853"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.787131 2024-09-11 09:08:36.787136 f84fe3ed-c8b3-4aa0-b7d7-d792307c2a35 {"pid": "8008", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027222144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.849831 2024-09-11 09:08:36.849835 a417ac6b-83f8-4058-8167-bf2e6e685acb {"pid": "8009", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027236897"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.919299 2024-09-11 09:08:36.919303 b747c812-ac62-4dff-ab54-74fffeec3bce {"pid": "8010", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027276457"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:36.979025 2024-09-11 09:08:36.979029 7b9759f2-9393-48c5-a0af-a16fea624a4f {"pid": "8011", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027307565"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.037747 2024-09-11 09:08:37.037749 302877af-f71a-401a-850d-9706e8295648 {"pid": "8012", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02767391X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.097063 2024-09-11 09:08:37.097066 75b6371e-39b1-4ef5-afe9-8af2b3fa96c4 {"pid": "8013", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027800512"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.163001 2024-09-11 09:08:37.163004 a4ac6933-1b47-40c2-9a86-515b8ab4bc2b {"pid": "8014", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02781971X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.23009 2024-09-11 09:08:37.230093 cb4ef189-16a1-449d-8258-b0b98be7909f {"pid": "8015", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02787642X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.294024 2024-09-11 09:08:37.294028 c744bbf1-072a-4d30-a374-9ed98d6568d6 {"pid": "8016", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028374878"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.358472 2024-09-11 09:08:37.358477 542db0d6-d909-47c6-9d02-2e5ba7fb3133 {"pid": "8017", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028932358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.421259 2024-09-11 09:08:37.421262 a99b3123-1168-4867-a891-e8c9d8a52e81 {"pid": "8018", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030120640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.478081 2024-09-11 09:08:37.478083 2faf5a0b-c48a-49d3-9b1a-5fee119a8047 {"pid": "8019", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03136795X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.541582 2024-09-11 09:08:37.541586 f179ad9f-cf9f-4109-aae8-c6f16d44e692 {"pid": "8020", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033293074"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.601211 2024-09-11 09:08:37.601215 f1d12b9d-e4bf-4f09-a60e-4040dcaaab09 {"pid": "8021", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050174495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.657966 2024-09-11 09:08:37.657971 78ee5278-9ba8-42a9-aee4-59e1613bb41e {"pid": "8022", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06008989X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.71934 2024-09-11 09:08:37.719345 4d147631-a753-4b85-875c-b610290dd502 {"pid": "8023", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061604496"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.784725 2024-09-11 09:08:37.784728 e0f62a32-a1cf-4e3e-b83c-84a892311e1d {"pid": "8024", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/178480231"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.841853 2024-09-11 09:08:37.841857 38b543a9-8663-410e-966c-ddd1fbc3ddd6 {"pid": "8025", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/238529495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.900122 2024-09-11 09:08:37.900125 b3b53ef1-59d0-4e17-a326-0a4e60286cfb {"pid": "8026", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263906442"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:37.957299 2024-09-11 09:08:37.957303 6ca89511-31d0-40ed-ba35-0c3110ddb6b9 {"pid": "8027", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264225260"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.017092 2024-09-11 09:08:38.017094 4a3a3580-bdb1-46f1-af10-b0d4d9da5f8c {"pid": "8028", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/276037685"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.0738 2024-09-11 09:08:38.073805 91c55f12-44e0-41a3-9b9a-688a6fd3cbee {"pid": "8029", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746896"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.131814 2024-09-11 09:08:38.131817 6103372a-fb10-489b-8ad5-f2a1746911ab {"pid": "8030", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746918"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.195552 2024-09-11 09:08:38.195556 b1ab1c4d-9913-494b-be95-7603870811d5 {"pid": "8031", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.256791 2024-09-11 09:08:38.256794 f04f5589-ae2b-4c78-bfba-7155d01d3a5c {"pid": "8032", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746934"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.316781 2024-09-11 09:08:38.316786 e0222e6d-ffe2-4bb2-8c92-9ef9581f5572 {"pid": "8033", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746942"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.368569 2024-09-11 09:08:38.368572 3bf02a1e-936c-4bff-b8b3-4f05b4649926 {"pid": "8034", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746950"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.42547 2024-09-11 09:08:38.425474 1cd730ca-3c22-4c31-ae8f-9a84be95f9fc {"pid": "8035", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746977"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.477414 2024-09-11 09:08:38.477419 1118e91d-07b0-4874-a95b-9a5482b05055 {"pid": "8036", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747027"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.532707 2024-09-11 09:08:38.53271 537f8b52-8884-4600-95d3-e307856433a5 {"pid": "8037", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.59199 2024-09-11 09:08:38.591995 162cfc01-26fc-4a56-b214-264fb4f8f69b {"pid": "8038", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747051"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.657544 2024-09-11 09:08:38.657547 eb842338-a60f-460d-8f30-9574d52a8370 {"pid": "8039", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874706X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.725049 2024-09-11 09:08:38.725053 65e6db2e-c92d-4c50-860f-cdca328ce195 {"pid": "8040", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747086"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.781846 2024-09-11 09:08:38.78185 512266e7-2a2e-483c-9b81-9dd9e7606da7 {"pid": "8041", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.843709 2024-09-11 09:08:38.843714 a5b28ae3-393d-4315-8828-f0da45628f59 {"pid": "8042", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747108"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.90062 2024-09-11 09:08:38.900627 bd3963ea-506d-4c1e-a9fc-86089ecb7972 {"pid": "8043", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747116"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:38.962088 2024-09-11 09:08:38.962093 1d965063-44d4-4706-a882-4f58871b12c8 {"pid": "8044", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747124"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.025256 2024-09-11 09:08:39.02526 76924892-17dc-42c5-a10a-c02f493e7c36 {"pid": "8045", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747132"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.084182 2024-09-11 09:08:39.084185 42d620d1-e6b2-4a31-a04d-b1152cecc703 {"pid": "8046", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747140"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.142682 2024-09-11 09:08:39.142686 469d375f-ed16-4822-878f-66e351a72616 {"pid": "8047", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747159"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.200108 2024-09-11 09:08:39.200111 35174538-9c05-47a1-b105-79b40cb48b03 {"pid": "8048", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747213"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.262507 2024-09-11 09:08:39.26251 f6e249fa-8da6-4f24-a847-4cec3e6500fc {"pid": "8049", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747221"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.318328 2024-09-11 09:08:39.318331 7dbde98d-92c3-4f47-b21e-12d85e0a70e7 {"pid": "8050", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.376547 2024-09-11 09:08:39.376552 c32e5812-a7f2-495f-a2db-2484b0111268 {"pid": "8051", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747256"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.438757 2024-09-11 09:08:39.438761 9a55d833-a9da-476f-a0fa-ccaafc796c95 {"pid": "8052", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747264"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.504614 2024-09-11 09:08:39.504619 19baa9ad-d6cb-467e-87b1-aaa524fc076e {"pid": "8053", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747272"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.561897 2024-09-11 09:08:39.561901 1f8cb497-61a9-4963-9eae-4c71d4dc50e4 {"pid": "8054", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747299"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.620892 2024-09-11 09:08:39.620895 4610c930-620c-4cb8-89cb-48d8ff6d3dd7 {"pid": "8055", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747302"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.678182 2024-09-11 09:08:39.678187 dbd68415-ae75-4cd4-b0dd-7d7c49a0363e {"pid": "8056", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034768"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.743868 2024-09-11 09:08:39.743872 dce3638e-b07f-4499-8a47-011b0aed0703 {"pid": "8057", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034776"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.816462 2024-09-11 09:08:39.816467 f5517235-13bf-4a2a-a706-634e2bf11908 {"pid": "8058", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034784"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.879295 2024-09-11 09:08:39.879299 c197e8db-e956-4dcd-81e5-784b5c5379b2 {"pid": "8059", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034792"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:39.935881 2024-09-11 09:08:39.935885 061a7431-e0cf-4a1e-a386-81651ab82d96 {"pid": "8060", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034865"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.049829 2024-09-11 09:08:40.049834 de89461f-0bed-4f82-96a1-06bf07793ec3 {"pid": "8061", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034873"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.109163 2024-09-11 09:08:40.109168 32e7ad3f-1672-4224-8a9a-0e48aa19dba5 {"pid": "8062", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903489X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.164699 2024-09-11 09:08:40.164703 bee38286-dee4-48fe-9135-e7ed3c42b28e {"pid": "8063", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034903"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.224122 2024-09-11 09:08:40.224126 ca7696e2-ab86-4844-833c-cfa734c13d7c {"pid": "8064", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035039"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.283605 2024-09-11 09:08:40.283611 2e9d005f-1694-4d67-829e-8a5d7111882f {"pid": "8065", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027275639"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.346607 2024-09-11 09:08:40.346612 3938f1e5-4e38-40e1-9409-645b36963d45 {"pid": "8066", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027362434"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.406338 2024-09-11 09:08:40.406341 69fd6e9c-6b00-4fed-bb65-5cc1cd0ff7b5 {"pid": "8067", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027612163"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.463779 2024-09-11 09:08:40.463783 b73ef90f-da53-43f2-a3b1-2a5ce247f07c {"pid": "8068", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029385571"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.523947 2024-09-11 09:08:40.523951 a581230d-55bc-4073-9783-b50ad5b29c7a {"pid": "8069", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029877555"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.582467 2024-09-11 09:08:40.582472 6e33e550-1d9d-43ab-8082-881ca02ff79d {"pid": "8070", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033689725"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.646984 2024-09-11 09:08:40.646988 405beb1a-cb67-4f1a-99c3-ea83b6383222 {"pid": "8071", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035381795"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.709727 2024-09-11 09:08:40.709731 07da1e59-64e9-4eaa-9bb7-f1ce2d5837f1 {"pid": "8072", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/174718276"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.779552 2024-09-11 09:08:40.779557 0e887b1d-47cf-4858-aedf-45aa0c71e252 {"pid": "8073", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747078"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.85106 2024-09-11 09:08:40.851063 650f558c-3ed5-489d-98c3-cc067991af79 {"pid": "8074", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034954"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.91175 2024-09-11 09:08:40.911752 306b2639-00d2-4fdc-bb3a-e5f2c7fdd8ae {"pid": "8075", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307381"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:40.97131 2024-09-11 09:08:40.971313 d6bac467-88f0-46b0-943c-9af2c79381a0 {"pid": "8076", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930739X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.041752 2024-09-11 09:08:41.041756 505f3be3-4840-4849-bfd8-fd5f3e5a7c4e {"pid": "8077", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307403"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.097489 2024-09-11 09:08:41.097492 fd03a327-ddce-4c23-996e-e2e0bb553c03 {"pid": "8078", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307411"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.157149 2024-09-11 09:08:41.157151 b0d8ae1b-6e3f-42f0-beb8-67c3360db4ea {"pid": "8079", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930742X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.221417 2024-09-11 09:08:41.221421 1ce22dd9-d2d1-439f-98b9-0a2a064e2699 {"pid": "8080", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307438"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.283813 2024-09-11 09:08:41.283818 59311b40-e6ad-4daf-812a-2629765e5169 {"pid": "8081", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307446"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.339991 2024-09-11 09:08:41.339995 2b88fcd1-089f-471e-8b63-65bb39879095 {"pid": "8082", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307454"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.395796 2024-09-11 09:08:41.3958 0eeb1924-c139-4b3e-9696-8ca0c3779876 {"pid": "8083", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307543"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.456903 2024-09-11 09:08:41.456908 3aa910fb-d004-4ee9-a227-be77ead5ab20 {"pid": "8084", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.551171 2024-09-11 09:08:41.551177 72f3f2da-2801-4dd5-a96e-a1983281b26a {"pid": "8085", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307616"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.612911 2024-09-11 09:08:41.612915 0137ccbc-3e3e-4daa-8bc1-242cba16c71f {"pid": "8086", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.675459 2024-09-11 09:08:41.675463 41eb3fac-793c-4302-bfac-abb8268549ec {"pid": "8087", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307659"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.745677 2024-09-11 09:08:41.745682 e90a2d28-8e75-4344-9822-58aa9a7e1b96 {"pid": "8088", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307667"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.812675 2024-09-11 09:08:41.812679 e8e07261-6a35-4a40-b449-91f448387398 {"pid": "8089", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.876327 2024-09-11 09:08:41.87633 33b99077-a3d6-4654-b506-e93c1b2e162c {"pid": "8090", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.935464 2024-09-11 09:08:41.935469 24636522-4bd6-46e7-9ef8-fdd92c03bbf2 {"pid": "8091", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:41.999794 2024-09-11 09:08:41.999799 a4f131c8-f68f-4983-ba46-3976bc70bb70 {"pid": "8092", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307721"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:42.057138 2024-09-11 09:08:42.057142 e146a576-c555-4c41-9d49-ebcdff8978e6 {"pid": "8093", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307756"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:43.963585 2024-09-11 09:08:43.963589 d10425ac-7454-4c6c-907f-19baf4f83379 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334542139"}, "pid": "8094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.037022 2024-09-11 09:08:44.037026 4faa2e68-6fa9-41d6-8efe-dde292a07d16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334538549"}, "pid": "8095", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.090275 2024-09-11 09:08:44.090278 446571b8-1c5a-4da2-b007-56ff86b8ab91 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334484775"}, "pid": "8096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.147305 2024-09-11 09:08:44.147309 da8ee197-df49-4d7b-b78f-09aa14534122 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334336342"}, "pid": "8097", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.201596 2024-09-11 09:08:44.201601 dfff5b98-35fb-4c57-9a82-1355d8f1a807 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334320462"}, "pid": "8098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.261108 2024-09-11 09:08:44.261111 60a760f6-7ca5-4c9a-b219-0e573aae4fe8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334314950"}, "pid": "8099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.313236 2024-09-11 09:08:44.31324 aaf01e37-d975-483d-8483-246c4cb62a47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334231826"}, "pid": "8100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.364677 2024-09-11 09:08:44.36468 d4332a38-90af-4aea-babb-ac4c85f82f08 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334230463"}, "pid": "8101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.417878 2024-09-11 09:08:44.417882 af7a5b54-9455-4bc2-8581-31c6c6ef4e38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334227209"}, "pid": "8102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.469011 2024-09-11 09:08:44.469014 57e918e5-2b5c-455b-b511-7ec0c69eb99c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334225907"}, "pid": "8103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.522303 2024-09-11 09:08:44.522308 c6502658-c395-46d3-9dbc-2d9833ce09c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334131074"}, "pid": "8104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.572725 2024-09-11 09:08:44.572729 2d1d0489-153d-41f1-b2a0-9771bd2061f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334127158"}, "pid": "8105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.626772 2024-09-11 09:08:44.626776 7096b333-eba2-4a84-a239-5da4b87dd4cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334091412"}, "pid": "8106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.682464 2024-09-11 09:08:44.682469 106fbaa2-95b5-4715-9452-8d4d0e5a2279 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334089663"}, "pid": "8107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.740262 2024-09-11 09:08:44.740266 bcc13b8d-cde6-44ed-babf-357ab69ce56d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334088837"}, "pid": "8108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.799925 2024-09-11 09:08:44.79993 6c4a1846-9aa1-49c8-b87c-9dfbec61caef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334088217"}, "pid": "8109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.849932 2024-09-11 09:08:44.849937 be56b150-3641-4243-84d0-184bc7b4ee96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334087156"}, "pid": "8110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.903412 2024-09-11 09:08:44.903417 af40cc61-0f40-43c1-987b-ff6389c4d462 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133400076X"}, "pid": "8111", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:44.982704 2024-09-11 09:08:44.982709 671d985a-4f83-4bc8-93bd-c35db9b9350e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333993331"}, "pid": "8112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.036755 2024-09-11 09:08:45.036759 40358686-21c0-4928-a292-39dc29d109a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333992548"}, "pid": "8113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.087589 2024-09-11 09:08:45.087593 d8732b02-2086-450b-8885-c23e5047d799 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333987366"}, "pid": "8114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.139221 2024-09-11 09:08:45.139224 82b0764e-767a-4a1a-871e-5e0b0430b6e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133396420X"}, "pid": "8115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.191608 2024-09-11 09:08:45.191613 6afe42e2-6e62-4c33-a9d1-b8cd3650b838 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333876874"}, "pid": "8116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.24253 2024-09-11 09:08:45.242533 877de846-29e4-409e-8d8c-63b1947ab940 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333855907"}, "pid": "8117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.294649 2024-09-11 09:08:45.294652 d36ef08f-e340-49c5-b133-e56b7e0507f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133385501X"}, "pid": "8118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.345284 2024-09-11 09:08:45.345288 619a6a29-1295-47c5-9df7-c24ceba3aab4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333853084"}, "pid": "8119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.443352 2024-09-11 09:08:45.443356 e364e1b8-b7f0-4a8e-81da-c1816758eceb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333852673"}, "pid": "8120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.498046 2024-09-11 09:08:45.49805 83c812da-0ea6-4e85-be45-5bee1169b241 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849788"}, "pid": "8121", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.552359 2024-09-11 09:08:45.552363 48bce065-3d03-40ea-9705-df22f1e7bdd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849435"}, "pid": "8122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.602997 2024-09-11 09:08:45.603002 50758d2d-d208-4fad-9798-1d39c4e24504 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333729863"}, "pid": "8123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.656392 2024-09-11 09:08:45.656396 4825f50b-8a24-4716-b812-a70e737a4d1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333716354"}, "pid": "8124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.707315 2024-09-11 09:08:45.70732 c07cf68d-09ec-4382-a7e9-9732989839d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333566352"}, "pid": "8125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.759403 2024-09-11 09:08:45.759408 2b32c6b0-e50b-4c6c-b43f-8a6e14ca9e19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333421427"}, "pid": "8126", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.813498 2024-09-11 09:08:45.813502 b8e916f2-904c-4936-afc0-dfe8104e5749 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333376049"}, "pid": "8127", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.862665 2024-09-11 09:08:45.862668 67f55fc2-bd47-476d-af2e-f87502b7ac5a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133335245X"}, "pid": "8128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.913922 2024-09-11 09:08:45.913927 4ed6df4c-1cbc-4fca-91dd-f4f1efe2af9b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333352085"}, "pid": "8129", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:45.963273 2024-09-11 09:08:45.963277 fc96b1d0-d347-4432-b487-4c87c523391f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333331002"}, "pid": "8130", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.016979 2024-09-11 09:08:46.016984 f0ed98e3-042e-49dd-9ad8-fd9ecca04fde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333323778"}, "pid": "8131", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.076794 2024-09-11 09:08:46.076798 041d6505-e990-4f5b-97c4-733bba03531c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333312415"}, "pid": "8132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.138406 2024-09-11 09:08:46.13841 bacecb28-ad9b-4c88-b487-0c3215ccaffd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333312326"}, "pid": "8133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.203928 2024-09-11 09:08:46.203933 65dbdc7e-628e-4eff-bb25-e2dca1bc5654 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333270267"}, "pid": "8134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.272999 2024-09-11 09:08:46.273002 56167e5f-d456-4a91-b3a2-160bc4ad90e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133326514X"}, "pid": "8135", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.328679 2024-09-11 09:08:46.328681 64aef07b-97da-45da-af0c-0be8274b2b25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333260830"}, "pid": "8136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.377264 2024-09-11 09:08:46.377268 bc9af770-4dde-460d-beff-2fd8f44628fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333256302"}, "pid": "8137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.425243 2024-09-11 09:08:46.425247 cc952789-f2f1-4af9-83a3-d77f33d9d117 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133325590X"}, "pid": "8138", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.474967 2024-09-11 09:08:46.474971 3c932e6f-b26c-4a0c-b3ee-9ec9d6280baf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333255616"}, "pid": "8139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.522757 2024-09-11 09:08:46.52276 a37fa583-58b3-473e-afa8-2f4a04f1baf2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333210043"}, "pid": "8140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.573458 2024-09-11 09:08:46.573461 bc960a1f-10f5-4d1e-a1e6-2ba5d2db2c4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333209908"}, "pid": "8141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.626718 2024-09-11 09:08:46.626723 99167645-ba8b-47ee-8170-7bc9f3375ad1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333208901"}, "pid": "8142", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.6794 2024-09-11 09:08:46.679404 76d4a336-66d7-413c-866f-dddefb392c5a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333141017"}, "pid": "8143", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.730043 2024-09-11 09:08:46.730047 4ff53093-14be-47ae-bb0a-7fa92302af08 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333125127"}, "pid": "8144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.782699 2024-09-11 09:08:46.782702 a789eaf6-cb22-4ade-bbe4-8c43c9952ffa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333119267"}, "pid": "8145", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.839643 2024-09-11 09:08:46.839647 35fa0fae-f07e-4a37-9ab8-438d3e83600a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333118023"}, "pid": "8146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.891811 2024-09-11 09:08:46.891816 9e32991b-1d20-4516-b55a-2cb26118cbf1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333117329"}, "pid": "8147", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:46.951346 2024-09-11 09:08:46.951349 6b4f1151-06d1-4212-9131-b2674bb5c0a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333115881"}, "pid": "8148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.003282 2024-09-11 09:08:47.003286 6b035e31-d405-47a9-b7eb-39967243473c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333113749"}, "pid": "8149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.055664 2024-09-11 09:08:47.055667 64bcd8fb-06ab-4645-b2b2-a0a87c2ffc0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333065841"}, "pid": "8150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.107854 2024-09-11 09:08:47.107857 9d20c3d2-33c0-4207-8336-dc3f3a0f883e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333064136"}, "pid": "8151", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.161468 2024-09-11 09:08:47.161472 a3db7a1a-2bb4-4df1-b373-70753718d035 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333063970"}, "pid": "8152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.220392 2024-09-11 09:08:47.220395 509e98c5-32f6-4162-b345-1d0ba0c3340d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333063717"}, "pid": "8153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.270985 2024-09-11 09:08:47.270989 22db0990-a20b-47df-bb82-1ad5e5ae7f00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133306179X"}, "pid": "8154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.326279 2024-09-11 09:08:47.326284 548499ae-f8cc-4b1c-b2fd-00973c3a45fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333037414"}, "pid": "8155", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.382882 2024-09-11 09:08:47.382886 3f7bb910-c41f-4e7b-8f95-548e26c7c5ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333027249"}, "pid": "8156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.444447 2024-09-11 09:08:47.444452 4bfa4792-180c-4a6f-ae44-731767d7475d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332990258"}, "pid": "8157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.501641 2024-09-11 09:08:47.501646 cb25e36f-cbe7-4357-a20a-a8998330b444 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332899730"}, "pid": "8158", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.549949 2024-09-11 09:08:47.549954 d6a9bca8-fcf1-4853-8e71-e3e0755b878c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332895018"}, "pid": "8159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.604889 2024-09-11 09:08:47.604892 759c0155-d6e1-4fb0-b13b-af73cfabf364 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332889549"}, "pid": "8160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.65997 2024-09-11 09:08:47.659974 93f162ea-861a-46df-81cc-efaec7b16aec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332775381"}, "pid": "8161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.710372 2024-09-11 09:08:47.710376 78a042db-b459-4285-aefa-d1b3d2bc8a75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332774113"}, "pid": "8162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.763818 2024-09-11 09:08:47.763821 c4108445-4957-49b8-aee1-1c5f7666f1a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133276648X"}, "pid": "8163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.816579 2024-09-11 09:08:47.816584 d2afbe69-6d1c-4cc2-8628-08a57b4036dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332759254"}, "pid": "8164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.872458 2024-09-11 09:08:47.872461 7b1982ac-be69-406d-b2b6-d79f1311af81 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332688047"}, "pid": "8165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.921325 2024-09-11 09:08:47.921328 40492d38-419e-4dff-b79f-639868f755f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332661297"}, "pid": "8166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:47.968437 2024-09-11 09:08:47.968442 558508cc-31ef-4eac-b555-396ebf372cce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332657273"}, "pid": "8167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.021699 2024-09-11 09:08:48.021702 81611f07-42ec-4081-99e4-bf12ae789eec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332649688"}, "pid": "8168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.076426 2024-09-11 09:08:48.076431 33d13c39-b126-474a-a97f-58d15407cd88 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332459587"}, "pid": "8169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.131186 2024-09-11 09:08:48.13119 564fee23-c438-47f7-a719-f91825171668 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332430376"}, "pid": "8170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.183318 2024-09-11 09:08:48.183325 67790500-b791-47e3-a19d-0e5c64abb754 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332426751"}, "pid": "8171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.236681 2024-09-11 09:08:48.236687 9b3bf4d6-b14d-4e20-8802-24ae3d50ea2c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332365841"}, "pid": "8172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.29184 2024-09-11 09:08:48.291844 24c4b680-7e4d-462d-88a2-495820d5825f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332318142"}, "pid": "8173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.343196 2024-09-11 09:08:48.3432 04b5063a-64b0-4085-a3d2-ed5e8c8c5da9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332111971"}, "pid": "8174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.397727 2024-09-11 09:08:48.397731 5d69aa2a-f617-4ed5-a0d5-5d09a5cdc50e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332095119"}, "pid": "8175", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.447077 2024-09-11 09:08:48.447081 b9c9bb74-039b-4dce-b58d-09fca9daccae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133197612X"}, "pid": "8176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.502714 2024-09-11 09:08:48.502717 03c30212-8bd9-43df-bae1-625f73d97cb2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133197593X"}, "pid": "8177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.556193 2024-09-11 09:08:48.556196 9df4c7bb-458f-447b-82bf-91dbe7ce2952 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331975794"}, "pid": "8178", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.609761 2024-09-11 09:08:48.609765 b054e210-a693-438e-ba39-779a4745c500 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331886929"}, "pid": "8179", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.661985 2024-09-11 09:08:48.661989 a2362f09-4704-4128-b999-36fb675de766 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331876540"}, "pid": "8180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.728908 2024-09-11 09:08:48.728913 bfa351e7-78e2-497d-8569-d179517ba65f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331840627"}, "pid": "8181", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.792341 2024-09-11 09:08:48.792346 3d805579-2afc-415d-a640-7dc16a5e864e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331747716"}, "pid": "8182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.84654 2024-09-11 09:08:48.846544 46abfcc5-8cee-46a6-ab8b-f9acdea882de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331734126"}, "pid": "8183", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.902848 2024-09-11 09:08:48.902855 05ca5d4e-b067-45bb-b2ca-cf7e91f485bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331734045"}, "pid": "8184", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:48.956752 2024-09-11 09:08:48.956755 35c70fde-afdf-41cc-9304-b50cd677d957 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331733316"}, "pid": "8185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.008956 2024-09-11 09:08:49.008961 c6463c3d-a1fb-4116-a5eb-49966157eac5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331723361"}, "pid": "8186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.061381 2024-09-11 09:08:49.061386 74af14e8-e01a-4a07-b878-6f50222acb83 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331719054"}, "pid": "8187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.114016 2024-09-11 09:08:49.11402 8dc68807-a138-4906-8df4-fa6569e1acfb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331717353"}, "pid": "8188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.168408 2024-09-11 09:08:49.168413 9f50a182-4fdf-49be-9117-22368d41d705 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331710464"}, "pid": "8189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.232073 2024-09-11 09:08:49.232077 83c6990a-bffe-40e9-ab5a-795b5534a033 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331704014"}, "pid": "8190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.292365 2024-09-11 09:08:49.292369 0fe455be-f7c0-4b60-ba56-e4ae71122f70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331614392"}, "pid": "8191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.346758 2024-09-11 09:08:49.346762 c0d791de-3a20-4320-a20c-b4e50fdba657 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331613426"}, "pid": "8192", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.399916 2024-09-11 09:08:49.39992 167b087f-8ce2-440a-9566-cb041bce0238 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331605164"}, "pid": "8193", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.458156 2024-09-11 09:08:49.45816 80c96ea2-5bc4-4993-980b-e5688b6c8ee3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331605091"}, "pid": "8194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.511136 2024-09-11 09:08:49.511139 7b076c24-23fd-4a6f-85ab-0434445c2d13 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331604893"}, "pid": "8195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.565795 2024-09-11 09:08:49.565799 3ba6f3bc-cc84-4d3a-8a84-d343bd2888a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331603897"}, "pid": "8196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.625433 2024-09-11 09:08:49.625437 a0bdf3d1-75ec-4594-9f91-29110484dd54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331594014"}, "pid": "8197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.678997 2024-09-11 09:08:49.679 2c379b53-5c3e-4475-a374-4b6e170861f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331592208"}, "pid": "8198", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.732618 2024-09-11 09:08:49.732622 8492095b-e29b-450b-ba55-adcd47a4a0b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331584167"}, "pid": "8199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.788702 2024-09-11 09:08:49.788705 71bc665d-af59-4528-bd28-6791da28272b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331530806"}, "pid": "8200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.860085 2024-09-11 09:08:49.860089 b35f659f-94d4-4511-a8c6-df2e0480961e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331496918"}, "pid": "8201", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.91509 2024-09-11 09:08:49.915094 727510f8-3734-4dc7-93c9-3d875c9968d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331482941"}, "pid": "8202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:49.970128 2024-09-11 09:08:49.970133 4472049b-f503-443b-ba25-698aefe645e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331380073"}, "pid": "8203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.031189 2024-09-11 09:08:50.031193 d670d9cc-01da-4fcd-a51e-2b803bd5263a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331102170"}, "pid": "8204", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.087522 2024-09-11 09:08:50.087526 83f0c461-42ad-4484-9e28-2f3512e33ee7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330854640"}, "pid": "8205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.138486 2024-09-11 09:08:50.138489 369dfa01-ed3c-4209-86cb-8f2e441d8045 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330843584"}, "pid": "8206", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.191414 2024-09-11 09:08:50.191419 23db87a9-0981-4fd0-8aa8-4b7f66ec841b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330586557"}, "pid": "8207", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.25097 2024-09-11 09:08:50.250974 f1fc0b07-3ce0-4194-9a6b-9b580e2c1dd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330586271"}, "pid": "8208", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.311248 2024-09-11 09:08:50.311251 15c71fdb-1ad5-41f9-af69-0281ed673952 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330585992"}, "pid": "8209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.367271 2024-09-11 09:08:50.367276 195df9a6-1de8-40f5-be60-a85ad052d70e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330585747"}, "pid": "8210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.421444 2024-09-11 09:08:50.421447 680ca2d1-1ca3-41aa-b431-4f245c346975 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330447611"}, "pid": "8211", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.472929 2024-09-11 09:08:50.472933 75d7fbb9-7e31-4b50-8166-7a8f1f420c65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330433858"}, "pid": "8212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.530617 2024-09-11 09:08:50.530621 b1688a2d-767e-470d-9ff3-3135ef9e63bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330430964"}, "pid": "8213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.58465 2024-09-11 09:08:50.584654 0ebc0b68-bcd8-4d1c-9058-d00690189318 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330343085"}, "pid": "8214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.64212 2024-09-11 09:08:50.642124 5536f4f6-c200-4a82-bad8-93b8524bf868 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330186664"}, "pid": "8215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.694308 2024-09-11 09:08:50.694313 bb46cbe2-71a6-4387-a3d5-93b341d58ab2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329650123"}, "pid": "8216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.746696 2024-09-11 09:08:50.746702 e0344993-2cbd-45fa-bb44-e066c8e5f31e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329573331"}, "pid": "8217", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.801562 2024-09-11 09:08:50.801568 b9427ce9-9943-4d6a-85fd-f2ea99d31097 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329325958"}, "pid": "8218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.852063 2024-09-11 09:08:50.852066 873d03c4-e2d6-4d1e-a405-ee8e38d697bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328905152"}, "pid": "8219", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.907791 2024-09-11 09:08:50.907796 78dbc407-c3ec-48f6-9184-2be413041c10 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328159116"}, "pid": "8220", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:50.964142 2024-09-11 09:08:50.964148 70973f6a-839b-446b-89b4-cd5375715a1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328114813"}, "pid": "8221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.024745 2024-09-11 09:08:51.024749 9514b0ae-7dd1-40bf-bfac-e458d9961c04 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1326598325"}, "pid": "8222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.083152 2024-09-11 09:08:51.083158 d71070f4-73f9-426d-ae57-b375a25b7fdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325970743"}, "pid": "8223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.136157 2024-09-11 09:08:51.136161 efeff1de-4c10-4136-beac-12428fd67e11 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325836214"}, "pid": "8224", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.203157 2024-09-11 09:08:51.203162 5f2b4b48-aa4f-4878-b995-af968311c33b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325526541"}, "pid": "8225", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.261954 2024-09-11 09:08:51.261957 7cb2509c-156a-412a-bde7-7fac738e68b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324473703"}, "pid": "8226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.313753 2024-09-11 09:08:51.313757 e9bb1017-1a02-4876-a8a3-9b117a0ef7de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324101571"}, "pid": "8227", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.363002 2024-09-11 09:08:51.363006 9c9b6349-410a-43bb-93df-2d2d68e01f34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322498083"}, "pid": "8228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.419518 2024-09-11 09:08:51.419522 33af17ab-9af4-4a72-82c2-7256b3984d27 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321930690"}, "pid": "8229", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.471364 2024-09-11 09:08:51.47137 69805ccf-c64e-4531-9fc4-7bdfdc91c5da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321369956"}, "pid": "8230", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.523722 2024-09-11 09:08:51.523726 7577143d-cc9a-4c8f-a904-b43cd9c821fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321325754"}, "pid": "8231", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.57712 2024-09-11 09:08:51.577124 5f6e1f35-73de-439d-addb-efb1d40d66d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132121202X"}, "pid": "8232", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.632107 2024-09-11 09:08:51.63211 17dffd88-3e6f-4f83-918e-41deb7624ba7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319608302"}, "pid": "8233", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.683354 2024-09-11 09:08:51.68336 f4850d94-83c6-456b-8c57-6b4e26184e2d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319352146"}, "pid": "8234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.739443 2024-09-11 09:08:51.739447 c2a79950-84fa-420b-906e-262eff10a1b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318875676"}, "pid": "8235", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.798853 2024-09-11 09:08:51.798856 d72578be-cc59-458b-919f-9b73b010b83f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318600871"}, "pid": "8236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.857527 2024-09-11 09:08:51.857531 31bbc7e5-1a54-482f-b703-a23322973c23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318529573"}, "pid": "8237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.910496 2024-09-11 09:08:51.910499 72730daa-ba69-4a9b-b90c-3d61533d177d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315438240"}, "pid": "8238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:51.966004 2024-09-11 09:08:51.966009 4cfb075e-ea1a-46e0-8121-a70bf4e3ef00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315344238"}, "pid": "8239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.024177 2024-09-11 09:08:52.024181 94287ebe-fe43-42bf-9d62-70baf8203a3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315166526"}, "pid": "8240", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.079396 2024-09-11 09:08:52.0794 3bb259c3-b447-4572-b905-7184b78cfa62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314207296"}, "pid": "8241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.134577 2024-09-11 09:08:52.134582 a3a3ec56-a851-4405-8f30-20b910a73f37 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314016547"}, "pid": "8242", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.188826 2024-09-11 09:08:52.188829 df6ef305-0622-42a6-85f0-661c2c08ce3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314016032"}, "pid": "8243", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.242807 2024-09-11 09:08:52.242812 964e13ca-27b7-4ab4-a2f7-c5dabd90299c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311509100"}, "pid": "8244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.297552 2024-09-11 09:08:52.297556 d33d62c3-cce9-4ecf-8976-d675ae9ef551 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/131143609X"}, "pid": "8245", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.350922 2024-09-11 09:08:52.350927 dd80b8b9-a795-4e47-83a5-63d6686076bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311352430"}, "pid": "8246", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.406556 2024-09-11 09:08:52.406561 81fb0382-3a1a-4ec9-9ffb-b6acd3bcd836 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1310159343"}, "pid": "8247", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.471876 2024-09-11 09:08:52.471883 75b89fc5-879a-4f28-841c-466109c00ee8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130899687X"}, "pid": "8248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.531951 2024-09-11 09:08:52.531955 abbc3251-dae5-4f3e-87d3-09f081fb2f93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1308455038"}, "pid": "8249", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.585942 2024-09-11 09:08:52.585945 e7089972-1d18-4b24-b47a-e685fe71365c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1305992857"}, "pid": "8250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.643318 2024-09-11 09:08:52.643321 2c5421f8-f963-4f67-80c4-eba9b233e042 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302496050"}, "pid": "8251", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.711734 2024-09-11 09:08:52.711738 d560d133-db85-40c5-b726-2262498de7b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/129922539X"}, "pid": "8252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.770794 2024-09-11 09:08:52.770799 f4422a86-95b2-4dff-923b-3711e0e80065 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298858054"}, "pid": "8253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.823209 2024-09-11 09:08:52.823212 bbb039f4-48ed-466b-9140-274c1a040738 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298312817"}, "pid": "8254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.873991 2024-09-11 09:08:52.873995 edd7bbc9-febf-46e3-8026-92c59cdb0eab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1297822668"}, "pid": "8255", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.927768 2024-09-11 09:08:52.927772 58b0b476-4ab2-4705-8c21-42964112ae23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1295539519"}, "pid": "8256", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:52.986525 2024-09-11 09:08:52.986528 f88e54bf-be6b-42c2-a245-e289a2b521db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1293306673"}, "pid": "8257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.04189 2024-09-11 09:08:53.041895 87e3eb5b-1999-40ee-bb61-9626ecff24fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1283002477"}, "pid": "8258", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.097394 2024-09-11 09:08:53.097399 5edecaa6-4168-4b00-be22-a6afe03a2d8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127857025X"}, "pid": "8259", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.151714 2024-09-11 09:08:53.151718 e23fcfd9-d0b2-4332-99af-b16a5dee3061 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1278063730"}, "pid": "8260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.207067 2024-09-11 09:08:53.20707 643ce590-bf15-4925-a089-4fe74ae90591 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1277678871"}, "pid": "8261", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.259075 2024-09-11 09:08:53.25908 86f2306b-8dec-4b28-8534-df3b3ad908c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1277560676"}, "pid": "8262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.313284 2024-09-11 09:08:53.313288 065c8ecc-5e01-4dbf-b8d9-675cbf83bcd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1276707304"}, "pid": "8263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.366129 2024-09-11 09:08:53.366132 53a744a5-685f-4010-a991-7ea92c458028 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1276176597"}, "pid": "8264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.424889 2024-09-11 09:08:53.424893 d3fc2b06-5f4c-46fd-aba6-40c2fef5cd66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275619533"}, "pid": "8265", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.480663 2024-09-11 09:08:53.480666 913cb3ad-a470-4739-8d22-867d7e21be69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275172962"}, "pid": "8266", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.536143 2024-09-11 09:08:53.536146 8442003d-68b4-4b9e-b39f-23df79c931e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274948169"}, "pid": "8267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.603222 2024-09-11 09:08:53.603227 6356d037-5599-43d9-b06e-0076b4033e0f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274269121"}, "pid": "8268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.661085 2024-09-11 09:08:53.661091 da118a1e-c2fc-40cd-86ec-b16f83c307f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273395077"}, "pid": "8269", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.716168 2024-09-11 09:08:53.716173 204f1db4-ff14-4f1d-8f76-c29e31e52b9d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273298268"}, "pid": "8270", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.770844 2024-09-11 09:08:53.770849 b871c8f9-cb10-41f4-8089-820dc7d74adc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273295374"}, "pid": "8271", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.825364 2024-09-11 09:08:53.825368 a5d7500a-53d5-4f03-b7eb-413d00c6b23f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1270459880"}, "pid": "8272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.87736 2024-09-11 09:08:53.877363 e31e1489-d150-4406-aa13-97d7507c55f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1268867829"}, "pid": "8273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.932349 2024-09-11 09:08:53.932352 8738a5b4-567c-47a8-9000-002696283c06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267608781"}, "pid": "8274", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:53.991383 2024-09-11 09:08:53.991387 5952f024-36b4-4c36-b0b1-bff2c47f69f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267608366"}, "pid": "8275", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.050334 2024-09-11 09:08:54.05034 e755f942-2d87-4a7f-b730-ce5ea7ac82e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267358122"}, "pid": "8276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.108245 2024-09-11 09:08:54.108249 100b8347-6f7e-4d33-aee8-5c760a289b16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266800611"}, "pid": "8277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.162947 2024-09-11 09:08:54.162952 b582ae7e-f3ac-42f5-b4ae-d2675bb853a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266799931"}, "pid": "8278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.226091 2024-09-11 09:08:54.226094 be79a697-8c92-4f1e-8d8d-fef580dab7bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1264956134"}, "pid": "8279", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.286766 2024-09-11 09:08:54.28677 91195108-b898-47f7-84bd-a2694d4b4bbf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1262928265"}, "pid": "8280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.342774 2024-09-11 09:08:54.342777 d3ef7a77-16b8-40a7-a457-119b7582adfe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1261933737"}, "pid": "8281", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.405061 2024-09-11 09:08:54.405065 0b655a57-e7ad-4320-ad57-dbd7363136e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1259460460"}, "pid": "8282", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.4652 2024-09-11 09:08:54.465203 6f3154c5-37ac-495c-bc47-67b1a66a2283 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1258881675"}, "pid": "8283", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.520231 2024-09-11 09:08:54.520235 e23d5ca6-80f7-43f2-a5c8-61bd9d0e81a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/125746423X"}, "pid": "8284", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.575855 2024-09-11 09:08:54.575859 cf9faa5a-ab18-4fcf-b46d-19326191cdd0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257346415"}, "pid": "8285", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.63472 2024-09-11 09:08:54.634724 84b0369c-e0d6-4a1c-87b0-ff56e085cea5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257092804"}, "pid": "8286", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.700887 2024-09-11 09:08:54.700893 01d023ec-958d-429f-abe9-a357758788b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254569642"}, "pid": "8287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.767684 2024-09-11 09:08:54.767688 8e62c4cf-58e6-4555-9506-8a5c060c6de6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254535594"}, "pid": "8288", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.825286 2024-09-11 09:08:54.82529 4b56cbb2-acc2-490d-a34b-54800ac5ce89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1253837457"}, "pid": "8289", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.879879 2024-09-11 09:08:54.879883 b9dd1749-8a29-4b79-bdb4-b0ecc5fcfa25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1252827512"}, "pid": "8290", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.934866 2024-09-11 09:08:54.934869 cc9e6072-f0cd-4eab-bafe-fead4875cbe8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1252257295"}, "pid": "8291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:54.989667 2024-09-11 09:08:54.98967 808db494-8535-450e-ba5b-52a360e5ba4b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1251536492"}, "pid": "8292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.048318 2024-09-11 09:08:55.048322 b628f1f6-90f0-4770-81b2-3f0761764987 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1250258731"}, "pid": "8293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.102739 2024-09-11 09:08:55.102744 eb692926-439a-4b36-bddb-f252968c1ccb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124994516X"}, "pid": "8294", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.16125 2024-09-11 09:08:55.161254 2c1dbccd-dfa5-4603-9125-2e3a652ec825 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1249112877"}, "pid": "8295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.222437 2024-09-11 09:08:55.222441 53203182-9086-4fe8-881d-d94b0eb1f72f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1248945506"}, "pid": "8296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.298034 2024-09-11 09:08:55.298038 338cfc4a-b19f-4347-b29a-26c78f76029a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1247639401"}, "pid": "8297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.353279 2024-09-11 09:08:55.353282 5a4a8ea5-4c3a-4770-b279-3f795156617a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1246126877"}, "pid": "8298", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.405511 2024-09-11 09:08:55.405514 154b6657-d41b-4548-8cee-da66fc8332be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124608841X"}, "pid": "8299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.459567 2024-09-11 09:08:55.459571 cf5788ef-9855-41ae-8a80-3dbf076739f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1241975299"}, "pid": "8300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.522035 2024-09-11 09:08:55.522038 9d0441da-7dfb-4ca9-993b-d6a260538c68 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1234514702"}, "pid": "8301", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.622561 2024-09-11 09:08:55.622565 441f4ae6-3501-46c2-8946-cb5d7407cc45 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1232346071"}, "pid": "8302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.676755 2024-09-11 09:08:55.676759 ab37b96b-1734-4409-bfc4-81546a7e00fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1228154325"}, "pid": "8303", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.733917 2024-09-11 09:08:55.733921 927be1a2-8f51-4dd2-ab2b-2bfcee53616f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1225893461"}, "pid": "8304", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.792767 2024-09-11 09:08:55.792771 c1e07b51-dd75-4807-9470-2b8e812a3474 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1219598135"}, "pid": "8305", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.85773 2024-09-11 09:08:55.857735 870f7fa7-ed8d-4bc5-be99-8f6eb5def22f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1210456753"}, "pid": "8306", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.915351 2024-09-11 09:08:55.915355 9e70a815-31f4-48b5-bc80-cb564441cd4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1202575048"}, "pid": "8307", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:55.971353 2024-09-11 09:08:55.971359 15d197ef-3564-408c-8650-7f94138fb9f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1201330661"}, "pid": "8308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.03406 2024-09-11 09:08:56.034065 e3ed219c-024f-48f9-9f08-9ab78ab5ca6f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1199404365"}, "pid": "8309", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.086371 2024-09-11 09:08:56.086377 effe939a-207c-4509-8eaa-93a7bef685ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1198723262"}, "pid": "8310", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.142403 2024-09-11 09:08:56.142407 024f3cf9-22cb-4b19-a335-9d9ca332388d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1191508781"}, "pid": "8311", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.197875 2024-09-11 09:08:56.19788 5d9d1f13-7cd1-458f-b86d-b14fa86fff1e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1188589024"}, "pid": "8312", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.255139 2024-09-11 09:08:56.255141 5cc8cb73-5b32-4470-9520-b749fd26bf9d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1183863349"}, "pid": "8313", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.310952 2024-09-11 09:08:56.310955 37d58990-26fa-4bb3-880e-09716bfaa1da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181268311"}, "pid": "8314", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.367131 2024-09-11 09:08:56.367134 145f3e67-400c-4a80-a418-e1c671e73142 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181007100"}, "pid": "8315", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.427358 2024-09-11 09:08:56.427361 fb8ac5c8-904a-437e-9bd9-063b2b921ee9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1173842845"}, "pid": "8316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.485402 2024-09-11 09:08:56.485407 10fc4ffc-44b6-44a6-ba08-4bbd4b481923 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1173062238"}, "pid": "8317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.54426 2024-09-11 09:08:56.544264 197dd5a1-6062-4814-bfd6-a2477b6d50ff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1172567794"}, "pid": "8318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.601096 2024-09-11 09:08:56.601101 7939cdfd-5cb9-4251-b6cc-70c7f1c46edc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1166161722"}, "pid": "8319", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.656431 2024-09-11 09:08:56.656435 03ad4262-0797-4625-96b9-265da4aa66e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1165352362"}, "pid": "8320", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.716908 2024-09-11 09:08:56.716913 be0ebe57-8e2f-4dd9-afc5-15c0ac03b3e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1165347768"}, "pid": "8321", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.770055 2024-09-11 09:08:56.77006 4d467020-8c7c-4ad1-b858-61100e7fd28d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162072040"}, "pid": "8322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.826619 2024-09-11 09:08:56.826623 14576877-17f9-4b1d-9a70-9ffc3cbcac70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1161142878"}, "pid": "8323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.882221 2024-09-11 09:08:56.882226 71e2f3b2-a8db-4ff8-9011-7b20e6fe09ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1155851412"}, "pid": "8324", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:56.937953 2024-09-11 09:08:56.937958 b79fd861-f5c6-47ce-a8ea-90b62acbc84c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1155424573"}, "pid": "8325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.000343 2024-09-11 09:08:57.000346 470f2f2f-273a-47ef-b4a6-ca243578712a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153834367"}, "pid": "8326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.055079 2024-09-11 09:08:57.055083 73b0b581-982c-48d9-a4e8-ec00284c7272 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1150861010"}, "pid": "8327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.122768 2024-09-11 09:08:57.122771 3d1bbaae-dea9-4d34-910b-ba02441d7d51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1145186815"}, "pid": "8328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.17679 2024-09-11 09:08:57.176793 fc916a8c-058a-48e4-ac95-ea7784457648 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1144301971"}, "pid": "8329", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.233851 2024-09-11 09:08:57.233857 94575f28-caff-41f9-940b-8258528cd99d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/114005791X"}, "pid": "8330", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.28816 2024-09-11 09:08:57.288163 0acbc63c-da96-467a-8e6c-14b28f409d26 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1139178725"}, "pid": "8331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.350621 2024-09-11 09:08:57.350626 8d2eefb9-2f00-4845-8b3b-535335803d65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1135938261"}, "pid": "8332", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.407765 2024-09-11 09:08:57.407769 7a1be4a8-98ba-4896-b84b-64b9b44e0c34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1122355092"}, "pid": "8333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.468857 2024-09-11 09:08:57.468862 664f3855-202c-477b-bb00-73569640926c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1121689914"}, "pid": "8334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.524649 2024-09-11 09:08:57.524653 ba73b06a-eeb2-4349-9ab6-826214b53f9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1118514823"}, "pid": "8335", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.580441 2024-09-11 09:08:57.580446 6888edcc-d98c-4daa-908a-859b1caedfa7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1117164012"}, "pid": "8336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.648503 2024-09-11 09:08:57.648508 0a329aff-d606-43b5-bff0-cea8fd395ca9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1116981521"}, "pid": "8337", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.705318 2024-09-11 09:08:57.705322 a97cd512-0a5f-4655-bb06-a52b6b19f8af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1115371371"}, "pid": "8338", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.759045 2024-09-11 09:08:57.759049 8daaa28a-7371-4cfe-be7e-ba43a5484fc3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1099123399"}, "pid": "8339", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.810345 2024-09-11 09:08:57.810349 e11c59a3-5e16-49da-8ee7-a1f72b1429e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1081489480"}, "pid": "8340", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.8649 2024-09-11 09:08:57.864903 d6c5a240-2d4e-409b-adb7-ef9542b6e6b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1078298378"}, "pid": "8341", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.919973 2024-09-11 09:08:57.919976 e0078423-81a4-46a9-9b07-7174f5f03fb1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/107366371X"}, "pid": "8342", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:57.970928 2024-09-11 09:08:57.970933 6afa5e0f-b640-43e2-8fe8-751252f8cf9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1073212491"}, "pid": "8343", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.02811 2024-09-11 09:08:58.028114 2f450073-7d4c-4d16-87bb-517d3ca97c4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1072727021"}, "pid": "8344", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.09269 2024-09-11 09:08:58.092695 1435150c-8189-4480-b205-b15bf346c468 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1072723875"}, "pid": "8345", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.15526 2024-09-11 09:08:58.155263 1dfae54d-1311-4afe-ab76-aa685784829b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/107257439X"}, "pid": "8346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.20964 2024-09-11 09:08:58.209644 3db6b1e2-06c1-4f03-b7d8-ceeeb004f5fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1070750409"}, "pid": "8347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.264769 2024-09-11 09:08:58.264773 0ed6e07a-1e84-4533-90d0-891d8a2cb8b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069698822"}, "pid": "8348", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.32229 2024-09-11 09:08:58.322294 7621d8cf-b51a-4b9d-926d-0003ed55d775 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069336971"}, "pid": "8349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.381974 2024-09-11 09:08:58.381979 29125a67-219c-46ac-8fe5-adad9df22006 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068604875"}, "pid": "8350", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.448782 2024-09-11 09:08:58.448786 e2a717ee-1faa-4611-a746-a8f8f385167d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1066801789"}, "pid": "8351", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.504731 2024-09-11 09:08:58.504737 a9ed1d0b-71ac-48ee-acb6-73df2301805c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064698727"}, "pid": "8352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.558335 2024-09-11 09:08:58.558337 3b214fac-6487-4ba9-86db-97a22ebb032d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064281230"}, "pid": "8353", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.617253 2024-09-11 09:08:58.617257 d4146124-d3f1-4b84-963c-0b9d20fe5d9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064280692"}, "pid": "8354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.670316 2024-09-11 09:08:58.670321 5acad3b3-cb72-43ad-a880-eed9e6f18a5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106427546X"}, "pid": "8355", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.724085 2024-09-11 09:08:58.724089 69816e9c-6aa2-42fa-8c1b-d113c5b3711d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064098363"}, "pid": "8356", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.780529 2024-09-11 09:08:58.780534 81e39a44-c3ad-458c-8b00-ebe2c73fa49d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063927137"}, "pid": "8357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.835045 2024-09-11 09:08:58.835048 6303d849-9357-4e67-90cf-7923386da3a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063927110"}, "pid": "8358", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.891405 2024-09-11 09:08:58.891408 ebd75482-8cd7-4559-99ba-2c4aa49f1653 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063925908"}, "pid": "8359", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:58.945504 2024-09-11 09:08:58.945508 39f03613-afdd-4d41-b21b-84f9e8009d4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063349230"}, "pid": "8360", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.001118 2024-09-11 09:08:59.001122 a9cf522a-e6d1-4db5-95fa-9215e882f892 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1062937325"}, "pid": "8361", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.062429 2024-09-11 09:08:59.062433 8ee8698e-87c7-4042-9ccc-516cfbda428b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060931796"}, "pid": "8362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.12057 2024-09-11 09:08:59.120574 a0fb5d9d-3cb9-4740-ad8e-cd312c4bbd32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060912503"}, "pid": "8363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.179131 2024-09-11 09:08:59.179134 02560090-4cd5-40c8-b37b-950f4bd87698 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060909251"}, "pid": "8364", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.245283 2024-09-11 09:08:59.245289 9ac53631-bf02-44a3-a88f-b9bac7ab01d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060907534"}, "pid": "8365", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.310361 2024-09-11 09:08:59.310365 3b253550-f2f8-4648-99f5-1acfa7cc98fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060882345"}, "pid": "8366", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.362428 2024-09-11 09:08:59.362431 aaa0825c-68c7-4410-966c-79edcc09b22d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060882191"}, "pid": "8367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.413641 2024-09-11 09:08:59.413645 167a7a6f-bfe9-4221-8810-6226d9f2ed18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060881373"}, "pid": "8368", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.466388 2024-09-11 09:08:59.466391 a88d4447-a7b8-430b-a588-94ffce75a751 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060881039"}, "pid": "8369", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.521867 2024-09-11 09:08:59.52187 84b151e7-5a74-442f-96f0-8924471ee55c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060858703"}, "pid": "8370", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.582815 2024-09-11 09:08:59.58282 62901358-afa7-4963-aa58-d7c881924429 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060811529"}, "pid": "8371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.636924 2024-09-11 09:08:59.636929 0da16089-7dee-4526-9bdc-06b5089633ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060804263"}, "pid": "8372", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.690012 2024-09-11 09:08:59.690016 cfc07ffb-d48a-4435-b77c-203af4fa7e99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060778947"}, "pid": "8373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.745763 2024-09-11 09:08:59.745767 4a8e1474-af91-41ce-85c2-b7841a9919f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060674483"}, "pid": "8374", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.803976 2024-09-11 09:08:59.80398 2e70a099-d75c-4f43-a4bb-1733bc1ef11e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060581957"}, "pid": "8375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.860794 2024-09-11 09:08:59.860797 ad19a04e-a884-4626-b582-b2e3c75a35cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060577895"}, "pid": "8376", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.91712 2024-09-11 09:08:59.917125 dabff3e0-6610-44f5-8700-143935f7396e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106057683X"}, "pid": "8377", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:08:59.971209 2024-09-11 09:08:59.971212 3a6f21b3-582a-4b6c-84dd-1aadf9ca6139 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060521229"}, "pid": "8378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.026225 2024-09-11 09:09:00.026229 fd46865f-0400-44b3-89ce-783b2eb07e6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060471329"}, "pid": "8379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.077959 2024-09-11 09:09:00.077963 62de2013-a5e5-442f-9bc7-ff6ef0d67af2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060399172"}, "pid": "8380", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.135018 2024-09-11 09:09:00.135025 6010f2d5-b780-490a-9aec-bc58d1e63d5c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060358328"}, "pid": "8381", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.195314 2024-09-11 09:09:00.195318 8a716385-6bb1-4e4a-8920-45a8fa52ce48 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106013411X"}, "pid": "8382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.251231 2024-09-11 09:09:00.251235 298837a0-2527-4f8a-99ea-b851e5da18fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060114909"}, "pid": "8383", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.303889 2024-09-11 09:09:00.303893 d662c3e3-dda9-40a1-970e-4b20eca5707c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060090236"}, "pid": "8384", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.356887 2024-09-11 09:09:00.356892 f8e6f6d3-2835-4018-9226-542a16449ad5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060077914"}, "pid": "8385", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.412728 2024-09-11 09:09:00.412733 303dbb40-67f2-4eb5-b64b-261fa5c5b2d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060077817"}, "pid": "8386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.469864 2024-09-11 09:09:00.469868 aa94f405-f632-4687-a61f-4ce59ce69b23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059889455"}, "pid": "8387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.524838 2024-09-11 09:09:00.524843 92ec02f5-01fd-4629-876a-0cf3094f5aed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059823527"}, "pid": "8388", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.578215 2024-09-11 09:09:00.578219 69ec5411-93a9-4323-abba-4c7dc4783b3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059732483"}, "pid": "8389", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.641837 2024-09-11 09:09:00.641842 fa931fc8-cabd-441d-8b64-f9c61fd81727 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105962091X"}, "pid": "8390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.722654 2024-09-11 09:09:00.72266 a7f6a9f5-2697-4527-84ff-27612452f784 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105960552X"}, "pid": "8391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.787115 2024-09-11 09:09:00.787119 7d4e352a-e58e-4cb8-977b-44698d12a543 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059558653"}, "pid": "8392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.859223 2024-09-11 09:09:00.859232 e34faee4-9837-4c70-b8ca-b4644871abdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059464667"}, "pid": "8393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.928934 2024-09-11 09:09:00.928939 fd95751e-cb0e-41f0-837d-8f3f69a35891 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059463385"}, "pid": "8394", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:00.99184 2024-09-11 09:09:00.991844 bf5f92e5-8d25-438c-82f2-79faef684c3d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059408058"}, "pid": "8395", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.070653 2024-09-11 09:09:01.070661 32c552fa-b866-41d7-9f30-bb24b5634986 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388502"}, "pid": "8396", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.137352 2024-09-11 09:09:01.137355 d5368694-62fa-4d02-86d8-eb416b18e397 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388499"}, "pid": "8397", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.200965 2024-09-11 09:09:01.20097 8ac19977-ca8e-4106-bb7d-ca3efd5feab8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388464"}, "pid": "8398", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.260978 2024-09-11 09:09:01.260982 52adbe10-3fe0-4efe-bdf0-6598cec403f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059384434"}, "pid": "8399", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.330776 2024-09-11 09:09:01.33078 fcb96ec4-b2e3-4390-b463-5a3827e6bbbb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059383780"}, "pid": "8400", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.38762 2024-09-11 09:09:01.387623 c6e63295-794e-49b7-b21d-e3b9132d53d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059323001"}, "pid": "8401", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.444078 2024-09-11 09:09:01.444084 7c91cf6a-f9bd-421d-a45d-767d280c8087 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059271745"}, "pid": "8402", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.506108 2024-09-11 09:09:01.506112 c3b9d78f-850b-4908-bb05-11ab893d4ec4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059254697"}, "pid": "8403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.564281 2024-09-11 09:09:01.564285 4fecf265-9048-4d79-811f-36aaccd833f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059254646"}, "pid": "8404", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.623846 2024-09-11 09:09:01.62385 2f34c97c-36f3-4c01-a8ea-73abd70d6ea9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059226529"}, "pid": "8405", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.680674 2024-09-11 09:09:01.680678 e0057648-c72a-405a-a27a-602295dfc29b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059152312"}, "pid": "8406", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.736287 2024-09-11 09:09:01.736292 1fd76a80-df1b-4e62-9150-13d57f5cf7d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059103257"}, "pid": "8407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.79287 2024-09-11 09:09:01.792874 2d6190b1-98d8-4806-8327-2da3d54cbd3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059090767"}, "pid": "8408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.848341 2024-09-11 09:09:01.848345 04e09a71-9b16-4af6-a67a-e2109cafb3d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059087871"}, "pid": "8409", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.904254 2024-09-11 09:09:01.904258 7ec88d9c-3921-468b-a69d-7d18f49a16d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058986295"}, "pid": "8410", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:01.959771 2024-09-11 09:09:01.959776 83c316d1-c121-4ae4-88a4-874ebb0a1c53 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105896920X"}, "pid": "8411", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.017107 2024-09-11 09:09:02.017113 7ce461f0-87bd-4130-a397-26d82d126d94 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058846361"}, "pid": "8412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.075411 2024-09-11 09:09:02.075416 22271c7f-713a-4673-adee-0e8a3d454f45 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058723790"}, "pid": "8413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.13949 2024-09-11 09:09:02.139494 f3d03d45-6ab9-4f8f-887c-f5b6b5a5f43d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058674900"}, "pid": "8414", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.201495 2024-09-11 09:09:02.2015 a6cced13-1655-4da7-a51f-c202fcdc8e28 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058669559"}, "pid": "8415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.254706 2024-09-11 09:09:02.25471 375d1dca-44f6-4782-ad37-855c45f63513 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105862394X"}, "pid": "8416", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.310398 2024-09-11 09:09:02.310402 b29458b6-30fc-4be3-8f29-0666266bd82f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058513710"}, "pid": "8417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.366434 2024-09-11 09:09:02.366441 2d3cacd1-82cc-4a4b-81f8-06ea3493299e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058507044"}, "pid": "8418", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.423185 2024-09-11 09:09:02.423188 74a5da78-6b35-44b0-a541-c9e265fdd5c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058389041"}, "pid": "8419", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.478048 2024-09-11 09:09:02.478051 ae1bcf8f-cf4c-4357-b704-b4d72dca31c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058382799"}, "pid": "8420", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.531201 2024-09-11 09:09:02.531206 187c7d9f-6309-4f22-92ca-16a441242427 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058371266"}, "pid": "8421", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.591213 2024-09-11 09:09:02.591216 cde46517-4e1a-4a41-bb6c-cad9b032f04a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058370677"}, "pid": "8422", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.64386 2024-09-11 09:09:02.643864 53c9180b-af25-48e3-a3a8-65e724d2d658 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284371"}, "pid": "8423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.699829 2024-09-11 09:09:02.699831 69fcfdb1-0d6d-4a38-a781-255d285015fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284304"}, "pid": "8424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.755777 2024-09-11 09:09:02.75578 44be44ed-484b-4e19-8b20-e7bf956deb8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284096"}, "pid": "8425", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.81118 2024-09-11 09:09:02.811184 2eff6f12-b6de-46a7-a419-f3efda29847b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058280910"}, "pid": "8426", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.865765 2024-09-11 09:09:02.86577 d13b267f-88b0-4591-9a86-0c11d66fc774 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058249436"}, "pid": "8427", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.91762 2024-09-11 09:09:02.917625 c20e237f-1286-4c9b-b832-8a2382017d78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058206753"}, "pid": "8428", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:02.974001 2024-09-11 09:09:02.974006 cf87a1c6-a168-4675-9b67-bfe5f7669dbe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058118161"}, "pid": "8429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.030798 2024-09-11 09:09:03.030803 71a4e03b-c350-4fd2-9ab3-5abffb7ade7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1055857745"}, "pid": "8430", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.090213 2024-09-11 09:09:03.090217 62a06362-28aa-410a-a9b1-d15b721da024 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054037531"}, "pid": "8431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.142633 2024-09-11 09:09:03.142637 c242b11b-35f8-479b-b894-c7dc5e93947e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1052970427"}, "pid": "8432", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.196179 2024-09-11 09:09:03.196181 4453565f-a40a-417e-bef5-9c2434eaa545 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1051355478"}, "pid": "8433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.264695 2024-09-11 09:09:03.2647 ac60ed9c-de59-417f-9a5a-5129288e1c55 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1050801644"}, "pid": "8434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.328333 2024-09-11 09:09:03.328338 ce950700-ed6a-46b3-bae7-0eefe19008b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1050440188"}, "pid": "8435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.385386 2024-09-11 09:09:03.38539 02c38177-ea13-485c-836f-e1813286e4fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049971213"}, "pid": "8436", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.444909 2024-09-11 09:09:03.444913 f05206a6-2463-42f6-8950-1a1c95386ecc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049453719"}, "pid": "8437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.508 2024-09-11 09:09:03.508003 1a733363-7c28-45f4-ae5c-c5ff9c397f28 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/104797553X"}, "pid": "8438", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.564944 2024-09-11 09:09:03.564946 4d4ba2ab-8fad-4e7d-b330-5c8de460d978 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1047231085"}, "pid": "8439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.626135 2024-09-11 09:09:03.62614 7101c6bd-9e84-4f36-bb68-dc2dac29c6d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1041610890"}, "pid": "8440", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.683673 2024-09-11 09:09:03.683676 b1a47461-d857-43ed-9fff-bcea8e917001 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1037919874"}, "pid": "8441", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.743478 2024-09-11 09:09:03.74348 a215e39f-106c-4f8a-8de7-a61a072e0623 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1034281828"}, "pid": "8442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.801694 2024-09-11 09:09:03.801698 72ad4836-9e60-44b2-88c5-ebef8d0e2325 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1033705691"}, "pid": "8443", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.857034 2024-09-11 09:09:03.857039 369bb12d-3a08-4176-b59e-d7e43a2af5b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1030464197"}, "pid": "8444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.913984 2024-09-11 09:09:03.913987 1aa2367d-a2b6-4697-bccf-ce5b19291cd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1028524978"}, "pid": "8445", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:03.974899 2024-09-11 09:09:03.974903 538d62e5-b870-40df-8ec9-c4e686380b8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1027073808"}, "pid": "8446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.036461 2024-09-11 09:09:04.036463 85475fe7-9164-4774-92b5-da114d156303 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1027071171"}, "pid": "8447", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.096674 2024-09-11 09:09:04.096679 1f87f354-c337-4af2-843b-c1944bbbf1ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1026470986"}, "pid": "8448", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.151086 2024-09-11 09:09:04.151094 bbd1a37e-70b9-48bc-9973-671840abeb1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1026351537"}, "pid": "8449", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.207435 2024-09-11 09:09:04.207439 b5b076c9-388e-41be-b4fe-749d95097486 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1025228928"}, "pid": "8450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.272477 2024-09-11 09:09:04.27248 ef981523-3945-43a6-bbd2-b45f4cd4b9a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1023745712"}, "pid": "8451", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.326474 2024-09-11 09:09:04.326477 bece6af0-72b8-4376-b7dd-5eba88553b44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1023362872"}, "pid": "8452", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.381606 2024-09-11 09:09:04.381611 2005c0d0-cc16-46f7-8886-d89286e5f2f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1022832425"}, "pid": "8453", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.442068 2024-09-11 09:09:04.442072 cdeba99c-6e96-423f-8003-cd2054d6059b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1021256064"}, "pid": "8454", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.498857 2024-09-11 09:09:04.498862 f0bba441-076b-4071-b432-7435aed59afd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1018220429"}, "pid": "8455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.553906 2024-09-11 09:09:04.553911 b7e2cb4e-8c74-4d3f-873d-c5a7f19f8139 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017491062"}, "pid": "8456", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.606413 2024-09-11 09:09:04.606416 809965da-7efa-444f-b164-0d0d2ccb67cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017490090"}, "pid": "8457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.658409 2024-09-11 09:09:04.658414 96dd772a-0a06-43d1-92c6-d0d4ed45aad7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017217165"}, "pid": "8458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.712471 2024-09-11 09:09:04.712474 db9e5a9a-5e5c-4af1-81ab-f6b977294bc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017177503"}, "pid": "8459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.765078 2024-09-11 09:09:04.765081 635c9893-2440-4ed8-87a4-b1f99cada4f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017027366"}, "pid": "8460", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.828051 2024-09-11 09:09:04.828053 458c13dd-fbc0-4b9b-846f-32f7a0bfb2f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016810989"}, "pid": "8461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:04.887127 2024-09-11 09:09:04.887131 bbdc289e-38a2-4785-8331-60f442d0a453 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016599463"}, "pid": "8462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.008682 2024-09-11 09:09:05.008686 225654c9-01c6-4d1e-a12c-9c8a35343ad8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016326106"}, "pid": "8463", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.066617 2024-09-11 09:09:05.066622 351731ea-b9d0-4665-a8ed-e807dcea6f3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1015079253"}, "pid": "8464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.127422 2024-09-11 09:09:05.127426 f36d43fd-000a-4a41-9566-b60d6428d716 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1013014065"}, "pid": "8465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.180726 2024-09-11 09:09:05.18073 d50455b1-0f7d-41c3-9f22-4f8ebd6e5e5f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011954141"}, "pid": "8466", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.237361 2024-09-11 09:09:05.237366 7296ba49-7b3b-41c2-a6f4-af85b539e657 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011935201"}, "pid": "8467", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.292762 2024-09-11 09:09:05.292766 da1b18a6-5807-4bbf-a382-695fc192e22f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011536455"}, "pid": "8468", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.350896 2024-09-11 09:09:05.350902 c931d5cd-cb82-402b-830e-ab27de8ec730 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011385856"}, "pid": "8469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.403689 2024-09-11 09:09:05.403693 95b6ea0a-7324-49cb-a508-e1964c3c7031 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011285738"}, "pid": "8470", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.46049 2024-09-11 09:09:05.460494 330dff3e-a6c4-4953-b7cd-e59f51216300 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011285436"}, "pid": "8471", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.531641 2024-09-11 09:09:05.531646 d2e726f9-aabe-4e25-9aab-3ab9d4ca042e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011282518"}, "pid": "8472", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.596246 2024-09-11 09:09:05.59625 08497322-c32d-4799-92b5-da8d690eb474 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011281368"}, "pid": "8473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.653749 2024-09-11 09:09:05.653752 0b44f340-f67b-4359-93da-96811235d4fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011278723"}, "pid": "8474", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.709087 2024-09-11 09:09:05.709092 afad0eff-eaf1-4f4c-aaad-ab6870c90286 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011253313"}, "pid": "8475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.767828 2024-09-11 09:09:05.767833 8a855338-5426-48a8-a42c-f38e678ee50a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011212722"}, "pid": "8476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.826915 2024-09-11 09:09:05.82692 cd865085-c4f3-4568-98ed-716da33fed0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011172399"}, "pid": "8477", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.883013 2024-09-11 09:09:05.883017 bc7f5b73-850c-4734-bae9-2d296763aa30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011095351"}, "pid": "8478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:05.946333 2024-09-11 09:09:05.946339 287ad6a9-a294-4180-95f0-6a68efa547e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010824597"}, "pid": "8479", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.011148 2024-09-11 09:09:06.011154 51a024e6-6903-475e-b63d-4b2d8a0a05f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010820389"}, "pid": "8480", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.073518 2024-09-11 09:09:06.073523 1ce30042-c510-49d7-bfd8-b29926e9d5de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/101081933X"}, "pid": "8481", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.139559 2024-09-11 09:09:06.139564 c9a65ee5-f7e3-4efa-82bf-2acdac70f70c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100974786X"}, "pid": "8482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.205642 2024-09-11 09:09:06.205646 8903d2a4-bdcd-40ef-b9fa-7dc998dfc662 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1009172255"}, "pid": "8483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.262561 2024-09-11 09:09:06.262566 455256e6-aa7f-4b11-8ebc-bacaba4df3ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100914135X"}, "pid": "8484", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.324389 2024-09-11 09:09:06.324393 2f43903d-a8cc-4b0e-95e7-459360d4571e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1008599360"}, "pid": "8485", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.381543 2024-09-11 09:09:06.381547 74f2284f-e2d4-422d-a80f-8f7dcb6933cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007558903"}, "pid": "8486", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.440629 2024-09-11 09:09:06.440634 cbc81aa8-61b3-4bef-a876-b34fdd38194c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007553405"}, "pid": "8487", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.499464 2024-09-11 09:09:06.49947 9672a0ef-03bc-4211-a181-760b8bc0c202 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007096462"}, "pid": "8488", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.555517 2024-09-11 09:09:06.555521 f88b5937-f15c-41d4-bf32-eec6bd4ddfee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1006156577"}, "pid": "8489", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.613935 2024-09-11 09:09:06.613939 f0cb5df0-b0af-4504-8110-e74ceefc87f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005952930"}, "pid": "8490", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.671193 2024-09-11 09:09:06.671197 17ad52a3-c41b-457e-9cc8-badb4ffe493f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005638322"}, "pid": "8491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.726066 2024-09-11 09:09:06.72607 1f6a84a5-fc12-44d7-ab96-48dc422ba5fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005003262"}, "pid": "8492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.784289 2024-09-11 09:09:06.784294 906f0bfb-b528-4625-bc36-3ac02c4548c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1003591590"}, "pid": "8493", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.849108 2024-09-11 09:09:06.849111 a6e696a7-111d-43f3-a067-784c70cfa6b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1001213157"}, "pid": "8494", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.916755 2024-09-11 09:09:06.916759 8b386e66-f6e8-4449-ad81-d0425554509a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1000465403"}, "pid": "8495", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:06.981955 2024-09-11 09:09:06.981958 18a6689e-5212-4c06-8dac-9d88214a7e56 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999617249"}, "pid": "8496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.044129 2024-09-11 09:09:07.044134 d868962d-a758-426c-97cb-8444201c10c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999602810"}, "pid": "8497", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.105848 2024-09-11 09:09:07.105852 63a613ee-c70a-4259-ba58-c4fccc74de77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999129317"}, "pid": "8498", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.16241 2024-09-11 09:09:07.162413 275e5f36-f311-4e8d-9ae0-76075a4254a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999038095"}, "pid": "8499", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.219024 2024-09-11 09:09:07.219028 b83c708d-ced7-449d-8c74-083b5b4a77a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/998759074"}, "pid": "8500", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.274575 2024-09-11 09:09:07.27458 10d8d084-9062-4b2c-80f2-ee79cf5887ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/997781491"}, "pid": "8501", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.326694 2024-09-11 09:09:07.326698 bfc52e2f-1562-4daa-a621-6726d209fae1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994660987"}, "pid": "8502", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.384509 2024-09-11 09:09:07.384512 a8ac3256-d26d-489b-ae74-9ee6ed1832c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994508417"}, "pid": "8503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.442158 2024-09-11 09:09:07.442161 095292f3-dca5-4bb4-930d-a41e27d39c41 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994042582"}, "pid": "8504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.505818 2024-09-11 09:09:07.505821 a6c2f356-e5fa-4a79-bc72-cdd0c6c9c085 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/993971806"}, "pid": "8505", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.570043 2024-09-11 09:09:07.570046 45aee367-687d-4849-b32e-5b7a62aa6916 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992779871"}, "pid": "8506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.628172 2024-09-11 09:09:07.628176 14141ad0-9492-4f14-9587-b077c759d4e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992757681"}, "pid": "8507", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.681326 2024-09-11 09:09:07.681329 0fb50ef8-8a99-4566-8ff0-80739e971fd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754151"}, "pid": "8508", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.731914 2024-09-11 09:09:07.731919 610cb18f-e6bd-43f9-b186-046c4c866308 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992753589"}, "pid": "8509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.786107 2024-09-11 09:09:07.786112 ef9b7578-58b1-42e7-94fc-4bf75d5229a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992747260"}, "pid": "8510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.84181 2024-09-11 09:09:07.841814 6e1dc348-8a7c-4154-b8e1-ed6c4bfcc875 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745489"}, "pid": "8511", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.904276 2024-09-11 09:09:07.904281 b6287f80-89e1-4521-b029-6c5f4f32f194 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744431"}, "pid": "8512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:07.973722 2024-09-11 09:09:07.973726 7bc4a5db-26bd-4d06-a486-6a2ffaf3a590 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744040"}, "pid": "8513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.035251 2024-09-11 09:09:08.035256 b4667688-e60c-441d-8384-b71185882c50 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742145"}, "pid": "8514", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.094791 2024-09-11 09:09:08.094794 d1b0fa66-bd28-4413-8103-037d9c7412f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992740622"}, "pid": "8515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.147547 2024-09-11 09:09:08.147551 f1a686d7-398a-420c-90de-ee685654a4a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992740002"}, "pid": "8516", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.204307 2024-09-11 09:09:08.20431 b475b242-e694-4086-b5b5-33fcf531efcf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992739888"}, "pid": "8517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.263707 2024-09-11 09:09:08.263713 645492f4-f958-48b8-8db4-7d80586b010e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992734894"}, "pid": "8518", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.317116 2024-09-11 09:09:08.317122 d744ca03-0a23-4524-acb0-71f36b663899 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992733510"}, "pid": "8519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.369973 2024-09-11 09:09:08.369977 13c3b525-e7e6-4ef1-a784-ec6e26583683 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992258820"}, "pid": "8520", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.431469 2024-09-11 09:09:08.431472 a0e2c6fc-ea5f-42ef-b622-590c6dc9535c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/991512669"}, "pid": "8521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.490579 2024-09-11 09:09:08.490583 17465708-2b0e-407a-b6cc-8b42174c0caf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99110546X"}, "pid": "8522", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1
2024-09-11 09:09:08.542171 2024-09-11 09:09:08.542176 38c15871-eb7e-4d29-8e0a-e6f417d03f5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/990635139"}, "pid": "8523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1