-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcat-wordlist-utf8.html
10401 lines (10401 loc) · 454 KB
/
cat-wordlist-utf8.html
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
<!DOCTYPE html>
<html lang="ca">
<head>
<title>Llista Diceware</title>
<meta charset="UTF-8">
<style type="text/css">
<!--
th {
font-family: monospace;
font-weight: normal;
color: red;
}
@media print {
.page {
page-break-after: always;
}
}
-->
</style>
</head>
<body>
<table>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<tbody>
<tr>
<th scope="colgroup">11111</th><td>1r</td>
<th scope="colgroup">11112</th><td>2n</td>
<th scope="colgroup">11113</th><td>3r</td>
<th scope="colgroup">11114</th><td>4t</td>
<th scope="colgroup">11115</th><td>5è</td>
<th scope="colgroup">11116</th><td>6è</td>
</tr>
<tr>
<th scope="colgroup">11121</th><td>7è</td>
<th scope="colgroup">11122</th><td>8è</td>
<th scope="colgroup">11123</th><td>9è</td>
<th scope="colgroup">11124</th><td>10è</td>
<th scope="colgroup">11125</th><td>20è</td>
<th scope="colgroup">11126</th><td>30è</td>
</tr>
<tr>
<th scope="colgroup">11131</th><td>40è</td>
<th scope="colgroup">11132</th><td>50è</td>
<th scope="colgroup">11133</th><td>60è</td>
<th scope="colgroup">11134</th><td>70è</td>
<th scope="colgroup">11135</th><td>80è</td>
<th scope="colgroup">11136</th><td>90è</td>
</tr>
<tr>
<th scope="colgroup">11141</th><td>100è</td>
<th scope="colgroup">11142</th><td>200è</td>
<th scope="colgroup">11143</th><td>300è</td>
<th scope="colgroup">11144</th><td>400è</td>
<th scope="colgroup">11145</th><td>500è</td>
<th scope="colgroup">11146</th><td>600è</td>
</tr>
<tr>
<th scope="colgroup">11151</th><td>700è</td>
<th scope="colgroup">11152</th><td>800è</td>
<th scope="colgroup">11153</th><td>900è</td>
<th scope="colgroup">11154</th><td>1000è</td>
<th scope="colgroup">11155</th><td>2000è</td>
<th scope="colgroup">11156</th><td>3000è</td>
</tr>
<tr>
<th scope="colgroup">11161</th><td>4000è</td>
<th scope="colgroup">11162</th><td>5000è</td>
<th scope="colgroup">11163</th><td>6000è</td>
<th scope="colgroup">11164</th><td>7000è</td>
<th scope="colgroup">11165</th><td>8000è</td>
<th scope="colgroup">11166</th><td>9000è</td>
</tr>
<tr>
<th scope="colgroup">11211</th><td>àbac</td>
<th scope="colgroup">11212</th><td>abàsia</td>
<th scope="colgroup">11213</th><td>abasteix</td>
<th scope="colgroup">11214</th><td>abat</td>
<th scope="colgroup">11215</th><td>abatre</td>
<th scope="colgroup">11216</th><td>abdica</td>
</tr>
<tr>
<th scope="colgroup">11221</th><td>abellix</td>
<th scope="colgroup">11222</th><td>abeureu</td>
<th scope="colgroup">11223</th><td>abillada</td>
<th scope="colgroup">11224</th><td>abjure</td>
<th scope="colgroup">11225</th><td>ablanir</td>
<th scope="colgroup">11226</th><td>aboqui</td>
</tr>
<tr>
<th scope="colgroup">11231</th><td>abracin</td>
<th scope="colgroup">11232</th><td>abrasiu</td>
<th scope="colgroup">11233</th><td>abrasix</td>
<th scope="colgroup">11234</th><td>abrigar</td>
<th scope="colgroup">11235</th><td>abrinada</td>
<th scope="colgroup">11236</th><td>abrioleu</td>
</tr>
<tr>
<th scope="colgroup">11241</th><td>abrusem</td>
<th scope="colgroup">11242</th><td>abscés</td>
<th scope="colgroup">11243</th><td>àbsida</td>
<th scope="colgroup">11244</th><td>abstinga</td>
<th scope="colgroup">11245</th><td>abundava</td>
<th scope="colgroup">11246</th><td>acabable</td>
</tr>
<tr>
<th scope="colgroup">11251</th><td>acabali</td>
<th scope="colgroup">11252</th><td>acalorar</td>
<th scope="colgroup">11253</th><td>acantaci</td>
<th scope="colgroup">11254</th><td>acapare</td>
<th scope="colgroup">11255</th><td>acapten</td>
<th scope="colgroup">11256</th><td>àcar</td>
</tr>
<tr>
<th scope="colgroup">11261</th><td>acarreri</td>
<th scope="colgroup">11262</th><td>accedix</td>
<th scope="colgroup">11263</th><td>àccia</td>
<th scope="colgroup">11264</th><td>aceri</td>
<th scope="colgroup">11265</th><td>acerin</td>
<th scope="colgroup">11266</th><td>acescent</td>
</tr>
<tr>
<th scope="colgroup">11311</th><td>acetàbul</td>
<th scope="colgroup">11312</th><td>acíclic</td>
<th scope="colgroup">11313</th><td>acicular</td>
<th scope="colgroup">11314</th><td>àcid</td>
<th scope="colgroup">11315</th><td>àcida</td>
<th scope="colgroup">11316</th><td>acidada</td>
</tr>
<tr>
<th scope="colgroup">11321</th><td>acidesa</td>
<th scope="colgroup">11322</th><td>acidúria</td>
<th scope="colgroup">11323</th><td>àcins</td>
<th scope="colgroup">11324</th><td>aclarint</td>
<th scope="colgroup">11325</th><td>aclarit</td>
<th scope="colgroup">11326</th><td>aclofat</td>
</tr>
<tr>
<th scope="colgroup">11331</th><td>acloqueu</td>
<th scope="colgroup">11332</th><td>acolli</td>
<th scope="colgroup">11333</th><td>acolloni</td>
<th scope="colgroup">11334</th><td>acomiade</td>
<th scope="colgroup">11335</th><td>acomodin</td>
<th scope="colgroup">11336</th><td>acomplit</td>
</tr>
<tr>
<th scope="colgroup">11341</th><td>acopi</td>
<th scope="colgroup">11342</th><td>acorren</td>
<th scope="colgroup">11343</th><td>acorruat</td>
<th scope="colgroup">11344</th><td>acorruïn</td>
<th scope="colgroup">11345</th><td>acoste</td>
<th scope="colgroup">11346</th><td>àcrata</td>
</tr>
<tr>
<th scope="colgroup">11351</th><td>àcron</td>
<th scope="colgroup">11352</th><td>acrònica</td>
<th scope="colgroup">11353</th><td>actuada</td>
<th scope="colgroup">11354</th><td>acuitat</td>
<th scope="colgroup">11355</th><td>acunça</td>
<th scope="colgroup">11356</th><td>adargui</td>
</tr>
<tr>
<th scope="colgroup">11361</th><td>adenina</td>
<th scope="colgroup">11362</th><td>àdhuc</td>
<th scope="colgroup">11363</th><td>adinyant</td>
<th scope="colgroup">11364</th><td>adinyeu</td>
<th scope="colgroup">11365</th><td>adinyin</td>
<th scope="colgroup">11366</th><td>adiposi</td>
</tr>
<tr>
<th scope="colgroup">11411</th><td>adiré</td>
<th scope="colgroup">11412</th><td>adirem</td>
<th scope="colgroup">11413</th><td>admirem</td>
<th scope="colgroup">11414</th><td>adoba</td>
<th scope="colgroup">11415</th><td>adobador</td>
<th scope="colgroup">11416</th><td>adoben</td>
</tr>
<tr>
<th scope="colgroup">11421</th><td>adolori</td>
<th scope="colgroup">11422</th><td>adomassa</td>
<th scope="colgroup">11423</th><td>adondar</td>
<th scope="colgroup">11424</th><td>adori</td>
<th scope="colgroup">11425</th><td>adormiu</td>
<th scope="colgroup">11426</th><td>adossa</td>
</tr>
<tr>
<th scope="colgroup">11431</th><td>adossi</td>
<th scope="colgroup">11432</th><td>adroguer</td>
<th scope="colgroup">11433</th><td>advendré</td>
<th scope="colgroup">11434</th><td>advengui</td>
<th scope="colgroup">11435</th><td>aerosol</td>
<th scope="colgroup">11436</th><td>afanau</td>
</tr>
<tr>
<th scope="colgroup">11441</th><td>afanyat</td>
<th scope="colgroup">11442</th><td>afegix</td>
<th scope="colgroup">11443</th><td>afeixant</td>
<th scope="colgroup">11444</th><td>afeixin</td>
<th scope="colgroup">11445</th><td>afermem</td>
<th scope="colgroup">11446</th><td>afibla</td>
</tr>
<tr>
<th scope="colgroup">11451</th><td>afiblar</td>
<th scope="colgroup">11452</th><td>afigurau</td>
<th scope="colgroup">11453</th><td>afilerem</td>
<th scope="colgroup">11454</th><td>afillant</td>
<th scope="colgroup">11455</th><td>afixa</td>
<th scope="colgroup">11456</th><td>aflamava</td>
</tr>
<tr>
<th scope="colgroup">11461</th><td>afligiu</td>
<th scope="colgroup">11462</th><td>aflorat</td>
<th scope="colgroup">11463</th><td>aflori</td>
<th scope="colgroup">11464</th><td>àfon</td>
<th scope="colgroup">11465</th><td>àfona</td>
<th scope="colgroup">11466</th><td>àfrica</td>
</tr>
<tr>
<th scope="colgroup">11511</th><td>africava</td>
<th scope="colgroup">11512</th><td>afrodita</td>
<th scope="colgroup">11513</th><td>aftosa</td>
<th scope="colgroup">11514</th><td>afuen</td>
<th scope="colgroup">11515</th><td>afusant</td>
<th scope="colgroup">11516</th><td>agabelle</td>
</tr>
<tr>
<th scope="colgroup">11521</th><td>àgada</td>
<th scope="colgroup">11522</th><td>agalline</td>
<th scope="colgroup">11523</th><td>àgam</td>
<th scope="colgroup">11524</th><td>agamba</td>
<th scope="colgroup">11525</th><td>agamís</td>
<th scope="colgroup">11526</th><td>agarena</td>
</tr>
<tr>
<th scope="colgroup">11531</th><td>agarrin</td>
<th scope="colgroup">11532</th><td>àgata</td>
<th scope="colgroup">11533</th><td>agençada</td>
<th scope="colgroup">11534</th><td>àger</td>
<th scope="colgroup">11535</th><td>agermana</td>
<th scope="colgroup">11536</th><td>agilitzi</td>
</tr>
<tr>
<th scope="colgroup">11541</th><td>agilulf</td>
<th scope="colgroup">11542</th><td>àgio</td>
<th scope="colgroup">11543</th><td>aglanau</td>
<th scope="colgroup">11544</th><td>aglevi</td>
<th scope="colgroup">11545</th><td>àgnata</td>
<th scope="colgroup">11546</th><td>agofrè</td>
</tr>
<tr>
<th scope="colgroup">11551</th><td>agonia</td>
<th scope="colgroup">11552</th><td>agoste</td>
<th scope="colgroup">11553</th><td>agraciïn</td>
<th scope="colgroup">11554</th><td>agradat</td>
<th scope="colgroup">11555</th><td>agredir</td>
<th scope="colgroup">11556</th><td>agreugen</td>
</tr>
<tr>
<th scope="colgroup">11561</th><td>aguerrir</td>
<th scope="colgroup">11562</th><td>agullona</td>
<th scope="colgroup">11563</th><td>ahuixe</td>
<th scope="colgroup">11564</th><td>aïllava</td>
<th scope="colgroup">11565</th><td>aïlli</td>
<th scope="colgroup">11566</th><td>aimina</td>
</tr>
<tr>
<th scope="colgroup">11611</th><td>aiús</td>
<th scope="colgroup">11612</th><td>aixerriï</td>
<th scope="colgroup">11613</th><td>ajaci</td>
<th scope="colgroup">11614</th><td>ajovau</td>
<th scope="colgroup">11615</th><td>ajudau</td>
<th scope="colgroup">11616</th><td>alabatia</td>
</tr>
<tr>
<th scope="colgroup">11621</th><td>aladreu</td>
<th scope="colgroup">11622</th><td>alallarg</td>
<th scope="colgroup">11623</th><td>alasà</td>
<th scope="colgroup">11624</th><td>alauí</td>
<th scope="colgroup">11625</th><td>albaidí</td>
<th scope="colgroup">11626</th><td>albarca</td>
</tr>
<tr>
<th scope="colgroup">11631</th><td>albardau</td>
<th scope="colgroup">11632</th><td>albatera</td>
<th scope="colgroup">11633</th><td>albenca</td>
<th scope="colgroup">11634</th><td>àlbum</td>
<th scope="colgroup">11635</th><td>àlcali</td>
<th scope="colgroup">11636</th><td>alcanyís</td>
</tr>
<tr>
<th scope="colgroup">11641</th><td>aldea</td>
<th scope="colgroup">11642</th><td>àlef</td>
<th scope="colgroup">11643</th><td>aleixos</td>
<th scope="colgroup">11644</th><td>alem</td>
<th scope="colgroup">11645</th><td>alemanda</td>
<th scope="colgroup">11646</th><td>aleurona</td>
</tr>
<tr>
<th scope="colgroup">11651</th><td>algarra</td>
<th scope="colgroup">11652</th><td>àlgebra</td>
<th scope="colgroup">11653</th><td>àlgia</td>
<th scope="colgroup">11654</th><td>àlgida</td>
<th scope="colgroup">11655</th><td>algímia</td>
<th scope="colgroup">11656</th><td>àlguema</td>
</tr>
<tr>
<th scope="colgroup">11661</th><td>àlic</td>
<th scope="colgroup">11662</th><td>aliè</td>
<th scope="colgroup">11663</th><td>àlies</td>
<th scope="colgroup">11664</th><td>alieu</td>
<th scope="colgroup">11665</th><td>alipi</td>
<th scope="colgroup">11666</th><td>aljuber</td>
</tr>
<tr class="page">
<th scope="colgroup">12111</th><td>allarga</td>
<th scope="colgroup">12112</th><td>allegeu</td>
<th scope="colgroup">12113</th><td>allerar</td>
<th scope="colgroup">12114</th><td>allevat</td>
<th scope="colgroup">12115</th><td>allioli</td>
<th scope="colgroup">12116</th><td>alliten</td>
</tr>
<tr>
<th scope="colgroup">12121</th><td>allotgeu</td>
<th scope="colgroup">12122</th><td>almescau</td>
<th scope="colgroup">12123</th><td>àloe</td>
<th scope="colgroup">12124</th><td>aloètic</td>
<th scope="colgroup">12125</th><td>alpina</td>
<th scope="colgroup">12126</th><td>alquenar</td>
</tr>
<tr>
<th scope="colgroup">12131</th><td>altabó</td>
<th scope="colgroup">12132</th><td>altina</td>
<th scope="colgroup">12133</th><td>altive</td>
<th scope="colgroup">12134</th><td>alumeneu</td>
<th scope="colgroup">12135</th><td>álvarez</td>
<th scope="colgroup">12136</th><td>àlvarez</td>
</tr>
<tr>
<th scope="colgroup">12141</th><td>alvernès</td>
<th scope="colgroup">12142</th><td>alzín</td>
<th scope="colgroup">12143</th><td>alzinada</td>
<th scope="colgroup">12144</th><td>amadeu</td>
<th scope="colgroup">12145</th><td>amaineu</td>
<th scope="colgroup">12146</th><td>amalric</td>
</tr>
<tr>
<th scope="colgroup">12151</th><td>amanç</td>
<th scope="colgroup">12152</th><td>amansi</td>
<th scope="colgroup">12153</th><td>amanyac</td>
<th scope="colgroup">12154</th><td>amarrint</td>
<th scope="colgroup">12155</th><td>amatina</td>
<th scope="colgroup">12156</th><td>àmbit</td>
</tr>
<tr>
<th scope="colgroup">12161</th><td>ambrós</td>
<th scope="colgroup">12162</th><td>ameli</td>
<th scope="colgroup">12163</th><td>amelin</td>
<th scope="colgroup">12164</th><td>amència</td>
<th scope="colgroup">12165</th><td>amerat</td>
<th scope="colgroup">12166</th><td>amical</td>
</tr>
<tr>
<th scope="colgroup">12211</th><td>amidable</td>
<th scope="colgroup">12212</th><td>aminació</td>
<th scope="colgroup">12213</th><td>àmnica</td>
<th scope="colgroup">12214</th><td>amó</td>
<th scope="colgroup">12215</th><td>amolen</td>
<th scope="colgroup">12216</th><td>amoregen</td>
</tr>
<tr>
<th scope="colgroup">12221</th><td>amorosit</td>
<th scope="colgroup">12222</th><td>amorra</td>
<th scope="colgroup">12223</th><td>amorrant</td>
<th scope="colgroup">12224</th><td>amortau</td>
<th scope="colgroup">12225</th><td>amotava</td>
<th scope="colgroup">12226</th><td>amplejar</td>
</tr>
<tr>
<th scope="colgroup">12231</th><td>àmplia</td>
<th scope="colgroup">12232</th><td>amplien</td>
<th scope="colgroup">12233</th><td>amprat</td>
<th scope="colgroup">12234</th><td>amurar</td>
<th scope="colgroup">12235</th><td>anatoli</td>
<th scope="colgroup">12236</th><td>àncora</td>
</tr>
<tr>
<th scope="colgroup">12241</th><td>andarega</td>
<th scope="colgroup">12242</th><td>anecoica</td>
<th scope="colgroup">12243</th><td>àneda</td>
<th scope="colgroup">12244</th><td>ànet</td>
<th scope="colgroup">12245</th><td>àngel</td>
<th scope="colgroup">12246</th><td>àngela</td>
</tr>
<tr>
<th scope="colgroup">12251</th><td>angles</td>
<th scope="colgroup">12252</th><td>àngstrom</td>
<th scope="colgroup">12253</th><td>ànim</td>
<th scope="colgroup">12254</th><td>ànima</td>
<th scope="colgroup">12255</th><td>animisme</td>
<th scope="colgroup">12256</th><td>anisava</td>
</tr>
<tr>
<th scope="colgroup">12261</th><td>ànnera</td>
<th scope="colgroup">12262</th><td>anoa</td>
<th scope="colgroup">12263</th><td>ànode</td>
<th scope="colgroup">12264</th><td>anòmal</td>
<th scope="colgroup">12265</th><td>anomenen</td>
<th scope="colgroup">12266</th><td>anostrat</td>
</tr>
<tr>
<th scope="colgroup">12311</th><td>ànsia</td>
<th scope="colgroup">12312</th><td>antedate</td>
<th scope="colgroup">12313</th><td>antiginy</td>
<th scope="colgroup">12314</th><td>antilles</td>
<th scope="colgroup">12315</th><td>antivici</td>
<th scope="colgroup">12316</th><td>antràcic</td>
</tr>
<tr>
<th scope="colgroup">12321</th><td>àntrax</td>
<th scope="colgroup">12322</th><td>anyina</td>
<th scope="colgroup">12323</th><td>aombrava</td>
<th scope="colgroup">12324</th><td>apame</td>
<th scope="colgroup">12325</th><td>apana</td>
<th scope="colgroup">12326</th><td>aparedar</td>
</tr>
<tr>
<th scope="colgroup">12331</th><td>aparque</td>
<th scope="colgroup">12332</th><td>aparta</td>
<th scope="colgroup">12333</th><td>apassin</td>
<th scope="colgroup">12334</th><td>àpat</td>
<th scope="colgroup">12335</th><td>apeçonem</td>
<th scope="colgroup">12336</th><td>apegada</td>
</tr>
<tr>
<th scope="colgroup">12341</th><td>apeguen</td>
<th scope="colgroup">12342</th><td>apeixar</td>
<th scope="colgroup">12343</th><td>apeixava</td>
<th scope="colgroup">12344</th><td>apesarat</td>
<th scope="colgroup">12345</th><td>àpex</td>
<th scope="colgroup">12346</th><td>apilador</td>
</tr>
<tr>
<th scope="colgroup">12351</th><td>apilotar</td>
<th scope="colgroup">12352</th><td>apilotau</td>
<th scope="colgroup">12353</th><td>apitxen</td>
<th scope="colgroup">12354</th><td>apletat</td>
<th scope="colgroup">12355</th><td>apliquin</td>
<th scope="colgroup">12356</th><td>àpoca</td>
</tr>
<tr>
<th scope="colgroup">12361</th><td>apodema</td>
<th scope="colgroup">12362</th><td>apòleg</td>
<th scope="colgroup">12363</th><td>apòl·lon</td>
<th scope="colgroup">12364</th><td>apomada</td>
<th scope="colgroup">12365</th><td>apoquix</td>
<th scope="colgroup">12366</th><td>aportava</td>
</tr>
<tr>
<th scope="colgroup">12411</th><td>aporugue</td>
<th scope="colgroup">12412</th><td>apòstata</td>
<th scope="colgroup">12413</th><td>apostava</td>
<th scope="colgroup">12414</th><td>àpside</td>
<th scope="colgroup">12415</th><td>àpter</td>
<th scope="colgroup">12416</th><td>apugonau</td>
</tr>
<tr>
<th scope="colgroup">12421</th><td>apujau</td>
<th scope="colgroup">12422</th><td>apuntada</td>
<th scope="colgroup">12423</th><td>apunyale</td>
<th scope="colgroup">12424</th><td>aqueix</td>
<th scope="colgroup">12425</th><td>aquella</td>
<th scope="colgroup">12426</th><td>aqüífug</td>
</tr>
<tr>
<th scope="colgroup">12431</th><td>aquissem</td>
<th scope="colgroup">12432</th><td>aquisteu</td>
<th scope="colgroup">12433</th><td>aquitana</td>
<th scope="colgroup">12434</th><td>àrab</td>
<th scope="colgroup">12435</th><td>àrabis</td>
<th scope="colgroup">12436</th><td>àrbitre</td>
</tr>
<tr>
<th scope="colgroup">12441</th><td>arboç</td>
<th scope="colgroup">12442</th><td>arbore</td>
<th scope="colgroup">12443</th><td>àrdua</td>
<th scope="colgroup">12444</th><td>arduosa</td>
<th scope="colgroup">12445</th><td>arenc</td>
<th scope="colgroup">12446</th><td>arenca</td>
</tr>
<tr>
<th scope="colgroup">12451</th><td>arener</td>
<th scope="colgroup">12452</th><td>arenes</td>
<th scope="colgroup">12453</th><td>arester</td>
<th scope="colgroup">12454</th><td>argentí</td>
<th scope="colgroup">12455</th><td>ària</td>
<th scope="colgroup">12456</th><td>àries</td>
</tr>
<tr>
<th scope="colgroup">12461</th><td>armera</td>
<th scope="colgroup">12462</th><td>arniar</td>
<th scope="colgroup">12463</th><td>arpegiar</td>
<th scope="colgroup">12464</th><td>arpella</td>
<th scope="colgroup">12465</th><td>àrpies</td>
<th scope="colgroup">12466</th><td>arpis</td>
</tr>
<tr>
<th scope="colgroup">12511</th><td>arquejau</td>
<th scope="colgroup">12512</th><td>arramàs</td>
<th scope="colgroup">12513</th><td>arranant</td>
<th scope="colgroup">12514</th><td>arregla</td>
<th scope="colgroup">12515</th><td>arregnen</td>
<th scope="colgroup">12516</th><td>arrest</td>
</tr>
<tr>
<th scope="colgroup">12521</th><td>arriava</td>
<th scope="colgroup">12522</th><td>arribar</td>
<th scope="colgroup">12523</th><td>arrisseu</td>
<th scope="colgroup">12524</th><td>arrumbat</td>
<th scope="colgroup">12525</th><td>arrupint</td>
<th scope="colgroup">12526</th><td>arrupix</td>
</tr>
<tr>
<th scope="colgroup">12531</th><td>àrsia</td>
<th scope="colgroup">12532</th><td>artana</td>
<th scope="colgroup">12533</th><td>artorc</td>
<th scope="colgroup">12534</th><td>aruba</td>
<th scope="colgroup">12535</th><td>arxiver</td>
<th scope="colgroup">12536</th><td>arxiveu</td>
</tr>
<tr>
<th scope="colgroup">12541</th><td>àscia</td>
<th scope="colgroup">12542</th><td>asfèrica</td>
<th scope="colgroup">12543</th><td>asfixien</td>
<th scope="colgroup">12544</th><td>àsia</td>
<th scope="colgroup">12545</th><td>asilar</td>
<th scope="colgroup">12546</th><td>asístole</td>
</tr>
<tr>
<th scope="colgroup">12551</th><td>aspiar</td>
<th scope="colgroup">12552</th><td>àspid</td>
<th scope="colgroup">12553</th><td>assaoneu</td>
<th scope="colgroup">12554</th><td>asserim</td>
<th scope="colgroup">12555</th><td>assistim</td>
<th scope="colgroup">12556</th><td>assocau</td>
</tr>
<tr>
<th scope="colgroup">12561</th><td>associem</td>
<th scope="colgroup">12562</th><td>assotant</td>
<th scope="colgroup">12563</th><td>assotin</td>
<th scope="colgroup">12564</th><td>astènia</td>
<th scope="colgroup">12565</th><td>astol</td>
<th scope="colgroup">12566</th><td>astoret</td>
</tr>
<tr>
<th scope="colgroup">12611</th><td>astròcit</td>
<th scope="colgroup">12612</th><td>atabaqui</td>
<th scope="colgroup">12613</th><td>atalussi</td>
<th scope="colgroup">12614</th><td>atansant</td>
<th scope="colgroup">12615</th><td>ataquín</td>
<th scope="colgroup">12616</th><td>atard</td>
</tr>
<tr>
<th scope="colgroup">12621</th><td>atarteri</td>
<th scope="colgroup">12622</th><td>atauric</td>
<th scope="colgroup">12623</th><td>atàxic</td>
<th scope="colgroup">12624</th><td>atemorit</td>
<th scope="colgroup">12625</th><td>atenuem</td>
<th scope="colgroup">12626</th><td>atenya</td>
</tr>
<tr>
<th scope="colgroup">12631</th><td>ateseren</td>
<th scope="colgroup">12632</th><td>atestar</td>
<th scope="colgroup">12633</th><td>atingueu</td>
<th scope="colgroup">12634</th><td>atlètic</td>
<th scope="colgroup">12635</th><td>àtom</td>
<th scope="colgroup">12636</th><td>àton</td>
</tr>
<tr>
<th scope="colgroup">12641</th><td>àtona</td>
<th scope="colgroup">12642</th><td>atorgant</td>
<th scope="colgroup">12643</th><td>atorguin</td>
<th scope="colgroup">12644</th><td>atraqui</td>
<th scope="colgroup">12645</th><td>atregues</td>
<th scope="colgroup">12646</th><td>àtrop</td>
</tr>
<tr>
<th scope="colgroup">12651</th><td>àtropa</td>
<th scope="colgroup">12652</th><td>atuell</td>
<th scope="colgroup">12653</th><td>atupeu</td>
<th scope="colgroup">12654</th><td>atzerà</td>
<th scope="colgroup">12655</th><td>àudio</td>
<th scope="colgroup">12656</th><td>auditora</td>
</tr>
<tr>
<th scope="colgroup">12661</th><td>àugur</td>
<th scope="colgroup">12662</th><td>aureolin</td>
<th scope="colgroup">12663</th><td>àuria</td>
<th scope="colgroup">12664</th><td>àurica</td>
<th scope="colgroup">12665</th><td>aürteu</td>
<th scope="colgroup">12666</th><td>àuson</td>
</tr>
<tr class="page">
<th scope="colgroup">13111</th><td>àusona</td>
<th scope="colgroup">13112</th><td>auxilien</td>
<th scope="colgroup">13113</th><td>avalat</td>
<th scope="colgroup">13114</th><td>àvar</td>
<th scope="colgroup">13115</th><td>àvia</td>
<th scope="colgroup">13116</th><td>avià</td>
</tr>
<tr>
<th scope="colgroup">13121</th><td>aviastre</td>
<th scope="colgroup">13122</th><td>aviau</td>
<th scope="colgroup">13123</th><td>àvid</td>
<th scope="colgroup">13124</th><td>avidant</td>
<th scope="colgroup">13125</th><td>avideu</td>
<th scope="colgroup">13126</th><td>avidolar</td>
</tr>
<tr>
<th scope="colgroup">13131</th><td>àvila</td>
<th scope="colgroup">13132</th><td>avilava</td>
<th scope="colgroup">13133</th><td>avisat</td>
<th scope="colgroup">13134</th><td>àvolment</td>
<th scope="colgroup">13135</th><td>avorta</td>
<th scope="colgroup">13136</th><td>avortint</td>
</tr>
<tr>
<th scope="colgroup">13141</th><td>axial</td>
<th scope="colgroup">13142</th><td>àxon</td>
<th scope="colgroup">13143</th><td>àzeri</td>
<th scope="colgroup">13144</th><td>àzig</td>
<th scope="colgroup">13145</th><td>àziga</td>
<th scope="colgroup">13146</th><td>àzim</td>
</tr>
<tr>
<th scope="colgroup">13151</th><td>azina</td>
<th scope="colgroup">13152</th><td>azobenzè</td>
<th scope="colgroup">13153</th><td>azoic</td>
<th scope="colgroup">13154</th><td>bac</td>
<th scope="colgroup">13155</th><td>bacanal</td>
<th scope="colgroup">13156</th><td>baccífer</td>
</tr>
<tr>
<th scope="colgroup">13161</th><td>baccívor</td>
<th scope="colgroup">13162</th><td>bací</td>
<th scope="colgroup">13163</th><td>bacivant</td>
<th scope="colgroup">13164</th><td>bacive</td>
<th scope="colgroup">13165</th><td>bacoreta</td>
<th scope="colgroup">13166</th><td>badallin</td>
</tr>
<tr>
<th scope="colgroup">13211</th><td>badar</td>
<th scope="colgroup">13212</th><td>badat</td>
<th scope="colgroup">13213</th><td>baden</td>
<th scope="colgroup">13214</th><td>baduell</td>
<th scope="colgroup">13215</th><td>bafaner</td>
<th scope="colgroup">13216</th><td>bafarada</td>
</tr>
<tr>
<th scope="colgroup">13221</th><td>bafor</td>
<th scope="colgroup">13222</th><td>bagant</td>
<th scope="colgroup">13223</th><td>bagasser</td>
<th scope="colgroup">13224</th><td>bagolau</td>
<th scope="colgroup">13225</th><td>bagotem</td>
<th scope="colgroup">13226</th><td>bagoti</td>
</tr>
<tr>
<th scope="colgroup">13231</th><td>baixamar</td>
<th scope="colgroup">13232</th><td>baixant</td>
<th scope="colgroup">13233</th><td>baixegeu</td>
<th scope="colgroup">13234</th><td>baixen</td>
<th scope="colgroup">13235</th><td>bajà</td>
<th scope="colgroup">13236</th><td>balafiau</td>
</tr>
<tr>
<th scope="colgroup">13241</th><td>balafien</td>
<th scope="colgroup">13242</th><td>balaguer</td>
<th scope="colgroup">13243</th><td>balancer</td>
<th scope="colgroup">13244</th><td>balànic</td>
<th scope="colgroup">13245</th><td>balbem</td>
<th scope="colgroup">13246</th><td>balbí</td>
</tr>
<tr>
<th scope="colgroup">13251</th><td>balca</td>
<th scope="colgroup">13252</th><td>balcar</td>
<th scope="colgroup">13253</th><td>balènid</td>
<th scope="colgroup">13254</th><td>balí</td>
<th scope="colgroup">13255</th><td>balilla</td>
<th scope="colgroup">13256</th><td>ballable</td>
</tr>
<tr>
<th scope="colgroup">13261</th><td>ballaire</td>
<th scope="colgroup">13262</th><td>ballat</td>
<th scope="colgroup">13263</th><td>balli</td>
<th scope="colgroup">13264</th><td>baló</td>
<th scope="colgroup">13265</th><td>balsa</td>
<th scope="colgroup">13266</th><td>bamba</td>
</tr>
<tr>
<th scope="colgroup">13311</th><td>banau</td>
<th scope="colgroup">13312</th><td>bancada</td>
<th scope="colgroup">13313</th><td>bancant</td>
<th scope="colgroup">13314</th><td>bancau</td>
<th scope="colgroup">13315</th><td>bandejat</td>
<th scope="colgroup">13316</th><td>bandix</td>
</tr>
<tr>
<th scope="colgroup">13321</th><td>banquem</td>
<th scope="colgroup">13322</th><td>banqueta</td>
<th scope="colgroup">13323</th><td>banyant</td>
<th scope="colgroup">13324</th><td>banyat</td>
<th scope="colgroup">13325</th><td>banyegat</td>
<th scope="colgroup">13326</th><td>banyegue</td>
</tr>
<tr>
<th scope="colgroup">13331</th><td>baptisme</td>
<th scope="colgroup">13332</th><td>barata</td>
<th scope="colgroup">13333</th><td>barateu</td>
<th scope="colgroup">13334</th><td>barati</td>
<th scope="colgroup">13335</th><td>barbulli</td>
<th scope="colgroup">13336</th><td>barbutit</td>
</tr>
<tr>
<th scope="colgroup">13341</th><td>barem</td>
<th scope="colgroup">13342</th><td>baronet</td>
<th scope="colgroup">13343</th><td>baronia</td>
<th scope="colgroup">13344</th><td>barranc</td>
<th scope="colgroup">13345</th><td>barreig</td>
<th scope="colgroup">13346</th><td>barrigue</td>
</tr>
<tr>
<th scope="colgroup">13351</th><td>barró</td>
<th scope="colgroup">13352</th><td>bartalot</td>
<th scope="colgroup">13353</th><td>baruc</td>
<th scope="colgroup">13354</th><td>bassetja</td>
<th scope="colgroup">13355</th><td>bàssia</td>
<th scope="colgroup">13356</th><td>bastant</td>
</tr>
<tr>
<th scope="colgroup">13361</th><td>bastegin</td>
<th scope="colgroup">13362</th><td>bastida</td>
<th scope="colgroup">13363</th><td>bastió</td>
<th scope="colgroup">13364</th><td>bastità</td>
<th scope="colgroup">13365</th><td>batanet</td>
<th scope="colgroup">13366</th><td>batanga</td>
</tr>
<tr>
<th scope="colgroup">13411</th><td>batàvia</td>
<th scope="colgroup">13412</th><td>batega</td>
<th scope="colgroup">13413</th><td>batés</td>
<th scope="colgroup">13414</th><td>batibull</td>
<th scope="colgroup">13415</th><td>batin</td>
<th scope="colgroup">13416</th><td>batòlit</td>
</tr>
<tr>
<th scope="colgroup">13421</th><td>baulida</td>
<th scope="colgroup">13422</th><td>bauló</td>
<th scope="colgroup">13423</th><td>bavejant</td>
<th scope="colgroup">13424</th><td>beç</td>
<th scope="colgroup">13425</th><td>becant</td>
<th scope="colgroup">13426</th><td>beceda</td>
</tr>
<tr>
<th scope="colgroup">13431</th><td>beduí</td>
<th scope="colgroup">13432</th><td>begís</td>
<th scope="colgroup">13433</th><td>beguin</td>
<th scope="colgroup">13434</th><td>bellugue</td>
<th scope="colgroup">13435</th><td>bemoll</td>
<th scope="colgroup">13436</th><td>benanada</td>
</tr>
<tr>
<th scope="colgroup">13441</th><td>benítez</td>
<th scope="colgroup">13442</th><td>bentònic</td>
<th scope="colgroup">13443</th><td>benzílic</td>
<th scope="colgroup">13444</th><td>benzina</td>
<th scope="colgroup">13445</th><td>bèrcol</td>
<th scope="colgroup">13446</th><td>bereneu</td>
</tr>
<tr>
<th scope="colgroup">13451</th><td>berguedà</td>
<th scope="colgroup">13452</th><td>berna</td>
<th scope="colgroup">13453</th><td>bernal</td>
<th scope="colgroup">13454</th><td>bernès</td>
<th scope="colgroup">13455</th><td>berònic</td>
<th scope="colgroup">13456</th><td>bertral</td>
</tr>
<tr>
<th scope="colgroup">13461</th><td>bertulf</td>
<th scope="colgroup">13462</th><td>besanca</td>
<th scope="colgroup">13463</th><td>besau</td>
<th scope="colgroup">13464</th><td>bescanó</td>
<th scope="colgroup">13465</th><td>bescavi</td>
<th scope="colgroup">13466</th><td>bescuita</td>
</tr>
<tr>
<th scope="colgroup">13511</th><td>bessa</td>
<th scope="colgroup">13512</th><td>bessona</td>
<th scope="colgroup">13513</th><td>bestieja</td>
<th scope="colgroup">13514</th><td>bestraga</td>
<th scope="colgroup">13515</th><td>bestrega</td>
<th scope="colgroup">13516</th><td>besuc</td>
</tr>
<tr>
<th scope="colgroup">13521</th><td>besunyen</td>
<th scope="colgroup">13522</th><td>besunyi</td>
<th scope="colgroup">13523</th><td>besunyin</td>
<th scope="colgroup">13524</th><td>betum</td>
<th scope="colgroup">13525</th><td>bevem</td>
<th scope="colgroup">13526</th><td>bhutanès</td>
</tr>
<tr>
<th scope="colgroup">13531</th><td>biatleta</td>
<th scope="colgroup">13532</th><td>bibàsic</td>
<th scope="colgroup">13533</th><td>bíblia</td>
<th scope="colgroup">13534</th><td>bicromat</td>
<th scope="colgroup">13535</th><td>bifurcat</td>
<th scope="colgroup">13536</th><td>bignònia</td>
</tr>
<tr>
<th scope="colgroup">13541</th><td>bigós</td>
<th scope="colgroup">13542</th><td>bigot</td>
<th scope="colgroup">13543</th><td>bilabiat</td>
<th scope="colgroup">13544</th><td>biòcron</td>
<th scope="colgroup">13545</th><td>biosfera</td>
<th scope="colgroup">13546</th><td>bipartim</td>
</tr>
<tr>
<th scope="colgroup">13551</th><td>bipartix</td>
<th scope="colgroup">13552</th><td>birbau</td>
<th scope="colgroup">13553</th><td>birbem</td>
<th scope="colgroup">13554</th><td>bismarck</td>
<th scope="colgroup">13555</th><td>bit</td>
<th scope="colgroup">13556</th><td>biti</td>
</tr>
<tr>
<th scope="colgroup">13561</th><td>bitllar</td>
<th scope="colgroup">13562</th><td>bivac</td>
<th scope="colgroup">13563</th><td>blada</td>
<th scope="colgroup">13564</th><td>blaia</td>
<th scope="colgroup">13565</th><td>blande</td>
<th scope="colgroup">13566</th><td>blasó</td>
</tr>
<tr>
<th scope="colgroup">13611</th><td>blasoni</td>
<th scope="colgroup">13612</th><td>blastema</td>
<th scope="colgroup">13613</th><td>blaürant</td>
<th scope="colgroup">13614</th><td>blavegin</td>
<th scope="colgroup">13615</th><td>blavejar</td>
<th scope="colgroup">13616</th><td>blàzquez</td>
</tr>
<tr>
<th scope="colgroup">13621</th><td>blederia</td>
<th scope="colgroup">13622</th><td>blegava</td>
<th scope="colgroup">13623</th><td>bleixant</td>
<th scope="colgroup">13624</th><td>bloqui</td>
<th scope="colgroup">13625</th><td>bluf</td>
<th scope="colgroup">13626</th><td>bobinem</td>
</tr>
<tr>
<th scope="colgroup">13631</th><td>bocafí</td>
<th scope="colgroup">13632</th><td>bocassa</td>
<th scope="colgroup">13633</th><td>bocons</td>
<th scope="colgroup">13634</th><td>bodega</td>
<th scope="colgroup">13635</th><td>bòer</td>
<th scope="colgroup">13636</th><td>bofegat</td>
</tr>
<tr>
<th scope="colgroup">13641</th><td>bohri</td>
<th scope="colgroup">13642</th><td>boina</td>
<th scope="colgroup">13643</th><td>boixeda</td>
<th scope="colgroup">13644</th><td>boixin</td>
<th scope="colgroup">13645</th><td>bojor</td>
<th scope="colgroup">13646</th><td>boleng</td>
</tr>
<tr>
<th scope="colgroup">13651</th><td>bolero</td>
<th scope="colgroup">13652</th><td>bolet</td>
<th scope="colgroup">13653</th><td>bolgot</td>
<th scope="colgroup">13654</th><td>bolla</td>
<th scope="colgroup">13655</th><td>bolle</td>
<th scope="colgroup">13656</th><td>bolonyès</td>
</tr>
<tr>
<th scope="colgroup">13661</th><td>bolquera</td>
<th scope="colgroup">13662</th><td>bombó</td>
<th scope="colgroup">13663</th><td>bombona</td>
<th scope="colgroup">13664</th><td>bon</td>
<th scope="colgroup">13665</th><td>bonarrés</td>
<th scope="colgroup">13666</th><td>bonegat</td>
</tr>
<tr class="page">
<th scope="colgroup">14111</th><td>boneixin</td>
<th scope="colgroup">14112</th><td>bonfill</td>
<th scope="colgroup">14113</th><td>boniquet</td>
<th scope="colgroup">14114</th><td>bonisca</td>
<th scope="colgroup">14115</th><td>bonítol</td>
<th scope="colgroup">14116</th><td>bonrepòs</td>
</tr>
<tr>
<th scope="colgroup">14121</th><td>bonyegut</td>
<th scope="colgroup">14122</th><td>boquegin</td>
<th scope="colgroup">14123</th><td>boquina</td>
<th scope="colgroup">14124</th><td>borant</td>
<th scope="colgroup">14125</th><td>borderia</td>
<th scope="colgroup">14126</th><td>bordeus</td>
</tr>
<tr>
<th scope="colgroup">14131</th><td>bordonau</td>
<th scope="colgroup">14132</th><td>bordonem</td>
<th scope="colgroup">14133</th><td>borés</td>
<th scope="colgroup">14134</th><td>borinant</td>
<th scope="colgroup">14135</th><td>borine</td>
<th scope="colgroup">14136</th><td>borinen</td>
</tr>
<tr>
<th scope="colgroup">14141</th><td>borineu</td>
<th scope="colgroup">14142</th><td>borlava</td>
<th scope="colgroup">14143</th><td>borlet</td>
<th scope="colgroup">14144</th><td>bornador</td>
<th scope="colgroup">14145</th><td>bornau</td>
<th scope="colgroup">14146</th><td>borne</td>
</tr>
<tr>
<th scope="colgroup">14151</th><td>borneol</td>
<th scope="colgroup">14152</th><td>bornós</td>
<th scope="colgroup">14153</th><td>borraire</td>
<th scope="colgroup">14154</th><td>borràs</td>
<th scope="colgroup">14155</th><td>borregem</td>
<th scope="colgroup">14156</th><td>borrer</td>
</tr>
<tr>
<th scope="colgroup">14161</th><td>borroni</td>
<th scope="colgroup">14162</th><td>borrufem</td>
<th scope="colgroup">14163</th><td>borur</td>
<th scope="colgroup">14164</th><td>bos</td>
<th scope="colgroup">14165</th><td>bosca</td>
<th scope="colgroup">14166</th><td>boscà</td>
</tr>
<tr>
<th scope="colgroup">14211</th><td>boscau</td>
<th scope="colgroup">14212</th><td>bòsnia</td>
<th scope="colgroup">14213</th><td>bosqueu</td>
<th scope="colgroup">14214</th><td>bossut</td>
<th scope="colgroup">14215</th><td>botavant</td>
<th scope="colgroup">14216</th><td>botegen</td>
</tr>
<tr>
<th scope="colgroup">14221</th><td>botejar</td>
<th scope="colgroup">14222</th><td>botell</td>
<th scope="colgroup">14223</th><td>botera</td>
<th scope="colgroup">14224</th><td>boterat</td>
<th scope="colgroup">14225</th><td>botix</td>
<th scope="colgroup">14226</th><td>botona</td>
</tr>
<tr>
<th scope="colgroup">14231</th><td>botonava</td>
<th scope="colgroup">14232</th><td>botri</td>
<th scope="colgroup">14233</th><td>boueja</td>
<th scope="colgroup">14234</th><td>bouejar</td>
<th scope="colgroup">14235</th><td>bouejava</td>
<th scope="colgroup">14236</th><td>bouenc</td>
</tr>
<tr>
<th scope="colgroup">14241</th><td>boutique</td>
<th scope="colgroup">14242</th><td>braçalet</td>
<th scope="colgroup">14243</th><td>bracegen</td>
<th scope="colgroup">14244</th><td>braçol</td>
<th scope="colgroup">14245</th><td>bragueta</td>
<th scope="colgroup">14246</th><td>bragulat</td>
</tr>
<tr>
<th scope="colgroup">14251</th><td>bramador</td>
<th scope="colgroup">14252</th><td>bramant</td>
<th scope="colgroup">14253</th><td>bramat</td>
<th scope="colgroup">14254</th><td>bramava</td>
<th scope="colgroup">14255</th><td>bran</td>
<th scope="colgroup">14256</th><td>braseja</td>
</tr>
<tr>
<th scope="colgroup">14261</th><td>brasó</td>
<th scope="colgroup">14262</th><td>brauell</td>
<th scope="colgroup">14263</th><td>bravegeu</td>
<th scope="colgroup">14264</th><td>bravo</td>
<th scope="colgroup">14265</th><td>brea</td>
<th scope="colgroup">14266</th><td>bregatge</td>
</tr>
<tr>
<th scope="colgroup">14311</th><td>bregue</td>
<th scope="colgroup">14312</th><td>bregueja</td>
<th scope="colgroup">14313</th><td>bregueu</td>
<th scope="colgroup">14314</th><td>breix</td>
<th scope="colgroup">14315</th><td>brellant</td>
<th scope="colgroup">14316</th><td>brellava</td>
</tr>
<tr>
<th scope="colgroup">14321</th><td>brenui</td>
<th scope="colgroup">14322</th><td>bressau</td>