-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjurisdictions-groupedby-type-with-city-name.json
1556 lines (1556 loc) · 55.8 KB
/
jurisdictions-groupedby-type-with-city-name.json
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
[
{
"code": "CA",
"frenchName": "Cours d'appel",
"arabicName": "محاكم الإستئناف",
"jurisdictions": [
{
"mahakimId": 1,
"type": "CA",
"frenchName": "La cour d'appel de rabat",
"arabicName": "محكمة الاستئناف بالرباط",
"cityFrenchName": ""
},
{
"mahakimId": 12,
"type": "CA",
"frenchName": "Cour d'appel de casablanca",
"arabicName": "محكمة الاستئناف الدار البيضاء",
"cityFrenchName": ""
},
{
"mahakimId": 18,
"type": "CA",
"frenchName": "Cour d'appel d'agadir",
"arabicName": "محكمة الاستئناف بأكادير",
"cityFrenchName": ""
},
{
"mahakimId": 48,
"type": "CA",
"frenchName": "cour d'appel de ouarzazate",
"arabicName": "محكمة الاستئناف بورزازات",
"cityFrenchName": ""
},
{
"mahakimId": 62,
"type": "CA",
"frenchName": "cour d'appel d'al-houceima",
"arabicName": "محكمة الاستئناف بالحسيمة",
"cityFrenchName": ""
},
{
"mahakimId": 69,
"type": "CA",
"frenchName": "Cour d'appel de taza",
"arabicName": "محكمة الاستئناف بتازة",
"cityFrenchName": ""
},
{
"mahakimId": 86,
"type": "CA",
"frenchName": "Cour d'appel de beni mellal",
"arabicName": "محكمة الاستئناف ببني ملال",
"cityFrenchName": ""
},
{
"mahakimId": 110,
"type": "CA",
"frenchName": "Cour d'appel de fès",
"arabicName": "محكمة الاستئناف بفاس",
"cityFrenchName": ""
},
{
"mahakimId": 130,
"type": "CA",
"frenchName": "La cour d'appel de kenitra",
"arabicName": "محكمة الاستئناف بالقنيطرة",
"cityFrenchName": ""
},
{
"mahakimId": 144,
"type": "CA",
"frenchName": "Cour d'appel d'El Aïoun",
"arabicName": "محكمة الاستئناف بالعيون",
"cityFrenchName": ""
},
{
"mahakimId": 149,
"type": "CA",
"frenchName": "La cour d'appel de marrakech",
"arabicName": "محكمة الاستئناف بمراكش",
"cityFrenchName": ""
},
{
"mahakimId": 160,
"type": "CA",
"frenchName": "La cour d'appel de meknes",
"arabicName": "محكمة الاستئناف بمكناس",
"cityFrenchName": ""
},
{
"mahakimId": 177,
"type": "CA",
"frenchName": "Cour d'appel d'Errachidia",
"arabicName": "محكمة الاستئناف بالرشيدية",
"cityFrenchName": ""
},
{
"mahakimId": 197,
"type": "CA",
"frenchName": "Cour d'appel de oujda",
"arabicName": "محكمة الاستئناف بوجدة",
"cityFrenchName": ""
},
{
"mahakimId": 216,
"type": "CA",
"frenchName": "La cour d'appel de nador",
"arabicName": "محكمة الاستئناف بالناضور",
"cityFrenchName": ""
},
{
"mahakimId": 222,
"type": "CA",
"frenchName": "Cour d'appel de safi",
"arabicName": "محكمة الاستئناف بآسفي",
"cityFrenchName": ""
},
{
"mahakimId": 232,
"type": "CA",
"frenchName": "La cour d'appel d'el jadida",
"arabicName": "محكمة الاستئناف بالجديدة",
"cityFrenchName": ""
},
{
"mahakimId": 241,
"type": "CA",
"frenchName": "Cour d'appel de settat",
"arabicName": "محكمة الاستئناف بسطات",
"cityFrenchName": ""
},
{
"mahakimId": 249,
"type": "CA",
"frenchName": "Cour d'appel de khouribga",
"arabicName": "محكمة الاستئناف بخريبكة",
"cityFrenchName": ""
},
{
"mahakimId": 253,
"type": "CA",
"frenchName": "La cour d'appel de tanger",
"arabicName": "محكمة الاستئناف بطنجة",
"cityFrenchName": ""
},
{
"mahakimId": 258,
"type": "CA",
"frenchName": "La cour d'appel de tetouan",
"arabicName": "محكمة الاستئناف بتطوان",
"cityFrenchName": ""
},
{
"mahakimId": 377,
"type": "CA",
"frenchName": "La cour d'appel de guelmim",
"arabicName": "محكمة الاستئناف بكلميم",
"cityFrenchName": ""
}
]
},
{
"code": "TPI",
"frenchName": "Tribunaux de première instance",
"arabicName": "المحاكم الإبتدائية",
"jurisdictions": [
{
"mahakimId": 2,
"type": "TPI",
"frenchName": "tribunal de première instance de rabat",
"arabicName": "المحكمة الابتدائية بالرباط",
"cityFrenchName": ""
},
{
"mahakimId": 3,
"type": "TPI",
"frenchName": "tribunal de première instance de Salé",
"arabicName": "المحكمة الابتدائية بسلا",
"cityFrenchName": ""
},
{
"mahakimId": 4,
"type": "TPI",
"frenchName": "tribunal de première instance de temara",
"arabicName": "المحكمة الابتدائية بتمارة",
"cityFrenchName": ""
},
{
"mahakimId": 7,
"type": "TPI",
"frenchName": "tribunal de première instance de Khémisset",
"arabicName": "المحكمة الابتدائية بالخميسات",
"cityFrenchName": ""
},
{
"mahakimId": 10,
"type": "TPI",
"frenchName": "tribunal de première instance de Tiflet",
"arabicName": "المحكمة الإبتدائية بتيفلت",
"cityFrenchName": ""
},
{
"mahakimId": 11,
"type": "TPI",
"frenchName": "tribunal de première instance de Rommani",
"arabicName": "المحكمة الابتدائية بالرماني",
"cityFrenchName": ""
},
{
"mahakimId": 272,
"type": "TPI",
"frenchName": "tribunal de première instance modéle",
"arabicName": "محكمة ابتدائية نموذجية",
"cityFrenchName": ""
},
{
"mahakimId": 305,
"type": "TPI",
"frenchName": "tribunal de première instance de rabat- département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بالرباط - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 336,
"type": "TPI",
"frenchName": "tribunal de première instance de salé - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بسلا- قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 376,
"type": "TPI",
"frenchName": "tribunal de première instance de Khémisset - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بالخميسات - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 2,
"type": "TPI",
"frenchName": "tribunal de première instance de rabat",
"arabicName": "المحكمة الابتدائية بالرباط",
"cityFrenchName": ""
},
{
"mahakimId": 3,
"type": "TPI",
"frenchName": "tribunal de première instance de salé",
"arabicName": "المحكمة الابتدائية بسلا",
"cityFrenchName": ""
},
{
"mahakimId": 4,
"type": "TPI",
"frenchName": "tribunal de première instance de temara",
"arabicName": "المحكمة الابتدائية بتمارة",
"cityFrenchName": ""
},
{
"mahakimId": 7,
"type": "TPI",
"frenchName": "tribunal de première instance de Khémisset",
"arabicName": "المحكمة الابتدائية بالخميسات",
"cityFrenchName": ""
},
{
"mahakimId": 10,
"type": "TPI",
"frenchName": "tribunal de première instance de Tiflet",
"arabicName": "المحكمة الإبتدائية بتيفلت",
"cityFrenchName": ""
},
{
"mahakimId": 11,
"type": "TPI",
"frenchName": "tribunal de première instance de Rommani",
"arabicName": "المحكمة الابتدائية بالرماني",
"cityFrenchName": ""
},
{
"mahakimId": 13,
"type": "TPI",
"frenchName": "tribunal de première instance de casablanca",
"arabicName": "المحكمة الابتدائية المدنية بالدار البيضاء",
"cityFrenchName": ""
},
{
"mahakimId": 15,
"type": "TPI",
"frenchName": "tribunal de première instance de mohammadia",
"arabicName": "المحكمة الابتدائية بالمحمدية",
"cityFrenchName": ""
},
{
"mahakimId": 16,
"type": "TPI",
"frenchName": "tribunal de première instance de benslimane",
"arabicName": "المحكمة الابتدائية ببنسليمان",
"cityFrenchName": ""
},
{
"mahakimId": 308,
"type": "TPI",
"frenchName": "tribunal social de première instance de casablanca",
"arabicName": "المحكمة الابتدائية الإجتماعية بالدار البيضاء",
"cityFrenchName": ""
},
{
"mahakimId": 13,
"type": "TPI",
"frenchName": "tribunal de première instance pénal de casablanca",
"arabicName": "المحكمة الابتدائية الزجرية بالدار البيضاء",
"cityFrenchName": ""
},
{
"mahakimId": 19,
"type": "TPI",
"frenchName": "tribunal de première instance d'agadir",
"arabicName": "المحكمة الإبتدائية بأكادير",
"cityFrenchName": ""
},
{
"mahakimId": 21,
"type": "TPI",
"frenchName": "tribunal de première instance d'inezgane",
"arabicName": "المحكمة الابتدائية بإنزكان",
"cityFrenchName": ""
},
{
"mahakimId": 26,
"type": "TPI",
"frenchName": "tribunal de première instance de taroudant - centre du juge résident à oulad tayima",
"arabicName": "المحكمة الإبتدائية بتارودانت - مركز القاضي المقيم بأولاد تايمة",
"cityFrenchName": ""
},
{
"mahakimId": 30,
"type": "TPI",
"frenchName": "tribunal de première instance de taroudant - centre du juge résident à oulad rhile",
"arabicName": "المحكمة الابتدائية بتارودانت - مركز القاضي المقيم بأولاد برحيل",
"cityFrenchName": ""
},
{
"mahakimId": 31,
"type": "TPI",
"frenchName": "tribunal de première instance de Taroudant - centre du juge résident à tafenkoulte",
"arabicName": "المحكمة الابتدائية بتارودانت - مركز القاضي المقيم بتافنكولت",
"cityFrenchName": ""
},
{
"mahakimId": 32,
"type": "TPI",
"frenchName": "tribunal de première instance de taroudant - centre du juge résident à taliwin",
"arabicName": "المحكمة الابتدائية بتارودانت - مركز القاضي المقيم بتالوين",
"cityFrenchName": ""
},
{
"mahakimId": 33,
"type": "TPI",
"frenchName": "tribunal de première instance de tiznit",
"arabicName": "المحكمة الابتدائية بتيزنيت",
"cityFrenchName": ""
},
{
"mahakimId": 42,
"type": "TPI",
"frenchName": "tribunal de première instance de tata",
"arabicName": "المحكمة الابتدائية بطاطا",
"cityFrenchName": ""
},
{
"mahakimId": 46,
"type": "TPI",
"frenchName": "tribunal de première instance d'asa zaak",
"arabicName": "المحكمة الابتدائية آسا الزاك",
"cityFrenchName": ""
},
{
"mahakimId": 150,
"type": "TPI",
"frenchName": "tribunal de première instance de taroudant",
"arabicName": "المحكمة الإبتدائية بتارودانت",
"cityFrenchName": ""
},
{
"mahakimId": 331,
"type": "TPI",
"frenchName": "tribunal de première instance de taroudant - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بتارودانت - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 346,
"type": "TPI",
"frenchName": "tribunal de première instance de tiznit - département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بتزنيت- قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 347,
"type": "TPI",
"frenchName": "tribunal de première instance de Inezgane - département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بإنزكان- قسم قضاء الأسرة-",
"cityFrenchName": ""
},
{
"mahakimId": 19,
"type": "TPI",
"frenchName": "tribunal de première instance d'agadir",
"arabicName": "المحكمة الابتدائية بأكادير",
"cityFrenchName": ""
},
{
"mahakimId": 21,
"type": "TPI",
"frenchName": "tribunal de première instance d'inezgane",
"arabicName": "المحكمة الابتدائية بانزكان",
"cityFrenchName": ""
},
{
"mahakimId": 25,
"type": "TPI",
"frenchName": "tribunal de première instance de taroudant",
"arabicName": "المحكمة الابتدائية بتارودانت",
"cityFrenchName": ""
},
{
"mahakimId": 33,
"type": "TPI",
"frenchName": "tribunal de première instance de tiznit",
"arabicName": "المحكمة الابتدائية بتيزنيت",
"cityFrenchName": ""
},
{
"mahakimId": 42,
"type": "TPI",
"frenchName": "tribunal de première instance de tata",
"arabicName": "المحكمة الابتدائية بطاطا",
"cityFrenchName": ""
},
{
"mahakimId": 49,
"type": "TPI",
"frenchName": "tribunal de première instance de Ouarzazate - le département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بورزازات-قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 51,
"type": "TPI",
"frenchName": "tribunal de première instance de tinguir",
"arabicName": "المحكمة الإبتدائية بتنغير",
"cityFrenchName": ""
},
{
"mahakimId": 55,
"type": "TPI",
"frenchName": "centre du juge résident à kelâat megouna - tribunal de première instance de tinguir",
"arabicName": "مركز القاضي المقيم بقلعة مكونة - المحكمة الإبتدائية بتنغير",
"cityFrenchName": ""
},
{
"mahakimId": 57,
"type": "TPI",
"frenchName": "tribunal de première instance de zagora",
"arabicName": "المحكمة الإبتدائية بزاكورة",
"cityFrenchName": ""
},
{
"mahakimId": 60,
"type": "TPI",
"frenchName": "centre du juge résident à Agdz - tribunal de première instance de zagora",
"arabicName": "مركز القاضي المقيم بأكدز - المحكمة الإبتدائية بزاكورة",
"cityFrenchName": ""
},
{
"mahakimId": 323,
"type": "TPI",
"frenchName": "tribunal de première instance de ouarzazate",
"arabicName": "المحكمة الإبتدائية بورزازات",
"cityFrenchName": ""
},
{
"mahakimId": 358,
"type": "TPI",
"frenchName": "tribunal de première instance de zagora - département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بزاكورة - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 49,
"type": "TPI",
"frenchName": "tribunal de première instance de ouarzazate",
"arabicName": "المحكمة الابتدائية بورزازات",
"cityFrenchName": ""
},
{
"mahakimId": 51,
"type": "TPI",
"frenchName": "tribunal de première instance de tinguir",
"arabicName": "المحكمة الإبتدائية بتنغير",
"cityFrenchName": ""
},
{
"mahakimId": 63,
"type": "TPI",
"frenchName": "tribunal de première instance d'al hoceima",
"arabicName": "المحكمة الابتدائية بالحسيمة",
"cityFrenchName": ""
},
{
"mahakimId": 65,
"type": "TPI",
"frenchName": "tribunal de première instance de Targuist",
"arabicName": "المحكمة الإبتدائية بتارجيست",
"cityFrenchName": ""
},
{
"mahakimId": 70,
"type": "TPI",
"frenchName": "tribunal de première instance de taza",
"arabicName": "المحكمة الإبتدائية بتازة",
"cityFrenchName": ""
},
{
"mahakimId": 81,
"type": "TPI",
"frenchName": "tribunal de première instance de taza - centre du juge résident à oulad amlil",
"arabicName": "المحكمة الابتدائية بتازة - مركز القاضي المقيم بواد أمليل",
"cityFrenchName": ""
},
{
"mahakimId": 343,
"type": "TPI",
"frenchName": "tribunal de première instance de taza - département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بتازة- قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 87,
"type": "TPI",
"frenchName": "tribunal de première instance de beni mellal",
"arabicName": "المحكمة الابتدائية ببني ملال",
"cityFrenchName": ""
},
{
"mahakimId": 89,
"type": "TPI",
"frenchName": "centre de juge résident à Targuist",
"arabicName": "مركز القاضي المقيم بتاكزيرت",
"cityFrenchName": ""
},
{
"mahakimId": 90,
"type": "TPI",
"frenchName": "tribunal de première instance de kasbat tadla",
"arabicName": "المحكمة الإبتدائية بقصبة تادلة",
"cityFrenchName": ""
},
{
"mahakimId": 91,
"type": "TPI",
"frenchName": "Centre de juge résident à Kasbat Tadla - tribunal de première instance de kasbat Tadla",
"arabicName": "مركز القاضي المقيم بالقصيبة - المحكمة الإبتدائية بقصبة تادلة",
"cityFrenchName": ""
},
{
"mahakimId": 92,
"type": "TPI",
"frenchName": "centre de juge résident à zaouia cheikh - tribunal de première instance de kasbat tadla",
"arabicName": "مركز القاضي المقيم بزاوية الشيخ - المحكمة الإبتدائية بقصبة تادلة",
"cityFrenchName": ""
},
{
"mahakimId": 93,
"type": "TPI",
"frenchName": "centre de juge résident à Aghbala - tribunal de première instance de Kasbat Tadla",
"arabicName": "مركز القاضي المقيم باغبالة - المحكمة الإبتدائية بقصبة تادلة",
"cityFrenchName": ""
},
{
"mahakimId": 94,
"type": "TPI",
"frenchName": "tribunal de première instance de faqih ben saleh",
"arabicName": "المحكمة الابتدائية بالفقيه بن صالح",
"cityFrenchName": ""
},
{
"mahakimId": 95,
"type": "TPI",
"frenchName": "tribunal de première instance de souk sebt oulad ennema - centre de juge résident à dar ouled zidoukh",
"arabicName": "المحكمة الإبتدائية بسوق السبت أولاد النمة - مركز القاضي المقيم بدار ولد زيدوح",
"cityFrenchName": ""
},
{
"mahakimId": 96,
"type": "TPI",
"frenchName": "tribunal de première instance de souk sebt oulad ennema",
"arabicName": "المحكمة الإبتدائية بسوق السبت أولاد النمة",
"cityFrenchName": ""
},
{
"mahakimId": 101,
"type": "TPI",
"frenchName": "tribunal de première instance de azilal - centre de juge résident à abzou",
"arabicName": "المحكمة الإبتدائية بأزيلال - مركز القاضي المقيم بابزو",
"cityFrenchName": ""
},
{
"mahakimId": 104,
"type": "TPI",
"frenchName": "tribunal de première instance de azzilal -centre de juge résident à damanat",
"arabicName": "المحكمة الابتدائية بازيلال - مركز القاضي المقيم بدمنات",
"cityFrenchName": ""
},
{
"mahakimId": 108,
"type": "TPI",
"frenchName": "tribunal de première instance de azilal - centre de juge résident à takfelt",
"arabicName": "المحكمة الإبتدائية بأزيلال - مركز القاضي المقيم بتاكفلت",
"cityFrenchName": ""
},
{
"mahakimId": 109,
"type": "TPI",
"frenchName": "tribunal de première instance de azilal - centre de juge résident à tiloukite",
"arabicName": "المحكمة الإبتدائية بأزيلاال - مركز القاضي المقيم بتيلوكيت",
"cityFrenchName": ""
},
{
"mahakimId": 167,
"type": "TPI",
"frenchName": "tribunal de première instance de khenifra",
"arabicName": "المحكمة الإبتدائية بخنيفرة",
"cityFrenchName": ""
},
{
"mahakimId": 284,
"type": "TPI",
"frenchName": "tribunal de première instance de azilal",
"arabicName": "المحكمة الإبتدائية بأزيلال",
"cityFrenchName": ""
},
{
"mahakimId": 315,
"type": "TPI",
"frenchName": "tribunal de première instance de khenifra - département judiciaire de la famille ",
"arabicName": "المحكمة الابتدائية بخنيفرة- قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 326,
"type": "TPI",
"frenchName": "tribunal de première instance de beni mellal - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية ببني ملال- قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 352,
"type": "TPI",
"frenchName": "tribunal de première instance de fqih ben saleh - département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بالفقيه بن صالح - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 366,
"type": "TPI",
"frenchName": "Cour bazilal de première instance de azzilal - centre de juge résident à ait aâtab",
"arabicName": "المحكمة الابتدائية بازيلال - مركز القاضي المقيم بايت اعتاب",
"cityFrenchName": ""
},
{
"mahakimId": 87,
"type": "TPI",
"frenchName": "tribunal de première instance de beni mellal",
"arabicName": "المحكمة الابتدائية ببني ملال",
"cityFrenchName": ""
},
{
"mahakimId": 94,
"type": "TPI",
"frenchName": "tribunal de première instance de fqih ben saleh",
"arabicName": "المحكمة الابتدائية بالفقيه بن صالح",
"cityFrenchName": ""
},
{
"mahakimId": 96,
"type": "TPI",
"frenchName": "tribunal de première instance de souk sabt ouled ennema",
"arabicName": "المحكمة الإبتدائية بسوق السبت أولاد النمة",
"cityFrenchName": ""
},
{
"mahakimId": 275,
"type": "TPI",
"frenchName": "tribunal de première instance de azilal",
"arabicName": "المحكمة الابتدائية بأزيلال",
"cityFrenchName": ""
},
{
"mahakimId": 111,
"type": "TPI",
"frenchName": "tribunal de première instance de fès",
"arabicName": "المحكمة الابتدائية بفاس",
"cityFrenchName": ""
},
{
"mahakimId": 112,
"type": "TPI",
"frenchName": "tribunal de première instance de Sefrou",
"arabicName": "المحكمة الابتدائية بصفرو",
"cityFrenchName": ""
},
{
"mahakimId": 120,
"type": "TPI",
"frenchName": "tribunal de première instance de Missour - centre de juge résident à Outat El Haj",
"arabicName": "المحكمة الابتائية لبولمان بميسور - مركز القاضي المقيم بأوطاط الحاج",
"cityFrenchName": ""
},
{
"mahakimId": 122,
"type": "TPI",
"frenchName": "tribunal de première instance de taounate",
"arabicName": "المحكمة الابتدائية بتاونات",
"cityFrenchName": ""
},
{
"mahakimId": 128,
"type": "TPI",
"frenchName": "tribunal de première instance de taounate - centre de juge résident à tissa",
"arabicName": "المحكمة الإبتدائية بتاونات - مركز القاضي المقيم بتيسة",
"cityFrenchName": ""
},
{
"mahakimId": 339,
"type": "TPI",
"frenchName": "tribunal de première instance de fes - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بفاس - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 111,
"type": "TPI",
"frenchName": "tribunal de première instance de fes",
"arabicName": "المحكمة الابتدائية بفاس",
"cityFrenchName": ""
},
{
"mahakimId": 112,
"type": "TPI",
"frenchName": "tribunal de première instance de safrou",
"arabicName": "المحكمة الابتدائية بصفرو",
"cityFrenchName": ""
},
{
"mahakimId": 116,
"type": "TPI",
"frenchName": "tribunal de première instance de Boulemane missour",
"arabicName": "المحكمة الإبتدائية لبولمان بميسور",
"cityFrenchName": ""
},
{
"mahakimId": 131,
"type": "TPI",
"frenchName": "tribunal de première instance de kenitra",
"arabicName": "المحكمة الابتدائية بالقنيطرة",
"cityFrenchName": ""
},
{
"mahakimId": 133,
"type": "TPI",
"frenchName": "tribunal de première instance de sidi slimane",
"arabicName": "المحكمة الإبتدائية بسيدي سليمان",
"cityFrenchName": ""
},
{
"mahakimId": 134,
"type": "TPI",
"frenchName": "tribunal de première instance de Souk El Arbaa",
"arabicName": "المحكمة الابتدائية بسوق أريعاء الغرب",
"cityFrenchName": ""
},
{
"mahakimId": 136,
"type": "TPI",
"frenchName": "tribunal de première instance de sidi kacem",
"arabicName": "المحكمة الابتدائية بسيدي قاسم",
"cityFrenchName": ""
},
{
"mahakimId": 137,
"type": "TPI",
"frenchName": "tribunal de première instance de mechra Bel Ksiri",
"arabicName": "المحكمة الإبتدائية بمشرع بلقصيري",
"cityFrenchName": ""
},
{
"mahakimId": 342,
"type": "TPI",
"frenchName": "tribunal de première instance de kenitra - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بالقنيطرة- قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 363,
"type": "TPI",
"frenchName": "tribunal de première instance de sidi kacem - département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بسيدي قاسم - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 133,
"type": "TPI",
"frenchName": "tribunal de première instance de sidi slimane",
"arabicName": "المحكمة الابتدائية بسيدي سليمان",
"cityFrenchName": ""
},
{
"mahakimId": 134,
"type": "TPI",
"frenchName": "tribunal de première instance de Souk El Arbaa",
"arabicName": "المحكمة الابتدائية بسوق الأريعاء",
"cityFrenchName": ""
},
{
"mahakimId": 146,
"type": "TPI",
"frenchName": "tribunal de première instance d'El Aïoun- centre de juge résident à Tarfaya",
"arabicName": "المحكمة الإبتدائية بالعيون - مركز القاضي المقيم بطرفاية",
"cityFrenchName": ""
},
{
"mahakimId": 147,
"type": "TPI",
"frenchName": "centre de juge résident à boujdour - tribunal de première instance d'el Aïoun",
"arabicName": "مركز القاضي المقيم ببوجدور - المحكمة الإبتدائية بالعيون",
"cityFrenchName": ""
},
{
"mahakimId": 279,
"type": "TPI",
"frenchName": "tribunal de première instance de la vallée de gold",
"arabicName": "المحكمة الإبتدائية بوادي الذهب",
"cityFrenchName": ""
},
{
"mahakimId": 348,
"type": "TPI",
"frenchName": "tribunal de première instance d'essemara - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بالسمارة - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 386,
"type": "TPI",
"frenchName": "tribunal de première instance de oued eddahab - centre de juge résident à bir kindouz",
"arabicName": "المحكمة الإبتدائية بوادي الذهب - مركز القاضي المقيم ببئر كندوز",
"cityFrenchName": ""
},
{
"mahakimId": 145,
"type": "TPI",
"frenchName": "tribunal de première instance de el Aïoun",
"arabicName": "المحكمة الابتدائية بالعيون",
"cityFrenchName": ""
},
{
"mahakimId": 279,
"type": "TPI",
"frenchName": "tribunal de première instance de dakhela",
"arabicName": "المحكمة الابتدائية بالداخلة",
"cityFrenchName": ""
},
{
"mahakimId": 148,
"type": "TPI",
"frenchName": "tribunal de première instance d'Essemara",
"arabicName": "المحكمة الابتدائية بالسمارة",
"cityFrenchName": ""
},
{
"mahakimId": 147,
"type": "TPI",
"frenchName": "centre de juge résident à boujdour",
"arabicName": "مركز القاضي المقيم ببوجدور",
"cityFrenchName": ""
},
{
"mahakimId": 151,
"type": "TPI",
"frenchName": "centre de juge résident à aït ourir - tribunal de première instance de marrakech",
"arabicName": "مركز القاضي المقيم بآيت اورير - المحكمة الإبتدائية بمراكش",
"cityFrenchName": ""
},
{
"mahakimId": 154,
"type": "TPI",
"frenchName": "tribunal de première instance",
"arabicName": "المحكمة الإبتدائية بامنتانوت",
"cityFrenchName": ""
},
{
"mahakimId": 155,
"type": "TPI",
"frenchName": "centre de juge résident à shishawah - tribunal de première instance de amantanot",
"arabicName": "مركز القاضي المقيم بشيشاوة - المحكمة الإبتدائية بامنتانوت",
"cityFrenchName": ""
},
{
"mahakimId": 156,
"type": "TPI",
"frenchName": "tribunal de première instance du château de saragna",
"arabicName": "المحكمة الإبتدائية بقلعة السراغنة",
"cityFrenchName": ""
},
{
"mahakimId": 157,
"type": "TPI",
"frenchName": "centre de juge résident à sidi rahal - tribunal de première instance du château de saragna",
"arabicName": "مركز القاضي المقيم بسيدي رحال - المحكمة الإبتدائية بقلعة السراغنة",
"cityFrenchName": ""
},
{
"mahakimId": 158,
"type": "TPI",
"frenchName": "tribunal de première instance de ibn jarir",
"arabicName": "المحكمة الابتدائية بابن جرير",
"cityFrenchName": ""
},
{
"mahakimId": 332,
"type": "TPI",
"frenchName": "tribunal de première instance de marrakech",
"arabicName": "المحكمة الإبتدائية بمراكش",
"cityFrenchName": ""
},
{
"mahakimId": 360,
"type": "TPI",
"frenchName": "tribunal de première instance de marrakech - département judiciaire de la famille",
"arabicName": "المحكمة الإبتدائية بمراكش - قسم قضاء الأسرة",
"cityFrenchName": ""
},
{
"mahakimId": 332,
"type": "TPI",
"frenchName": "tribunal de première instance de marrakech",
"arabicName": "المحكمة الابتدائية بمراكش",
"cityFrenchName": ""
},
{
"mahakimId": 154,
"type": "TPI",
"frenchName": "tribunal de première instance d'imintanoute",
"arabicName": "المحكمة الابتدائية بامنتانوت",
"cityFrenchName": ""
},
{
"mahakimId": 156,
"type": "TPI",
"frenchName": "tribunal de première instance de Kelaâ Sraghna",
"arabicName": "المحكمة الابتدائية بقلعة السراغنة",
"cityFrenchName": ""
},
{
"mahakimId": 158,
"type": "TPI",
"frenchName": "tribunal de première instance de Ben Guerir",
"arabicName": "المحكمة الابتدائية بابن جرير",
"cityFrenchName": ""
},
{
"mahakimId": 155,
"type": "TPI",
"frenchName": "centre de juge résident à Chichaoua",
"arabicName": "مركز القاضي المقيم بشيشاوة",
"cityFrenchName": ""
},
{
"mahakimId": 161,
"type": "TPI",
"frenchName": "tribunal de première instance de meknes",
"arabicName": "المحكمة الإبتدائية بمكناس",
"cityFrenchName": ""
},
{
"mahakimId": 165,
"type": "TPI",
"frenchName": "tribunal de première instance de azrou",
"arabicName": "المحكمة الإبتدائية بأزرو",
"cityFrenchName": ""
},
{
"mahakimId": 316,
"type": "TPI",
"frenchName": "tribunal de première instance de meknes - département judiciaire de la famille",
"arabicName": "المحكمة الابتدائية بمكناس- قسم قضاء الأسرة",
"cityFrenchName": ""
},