prosereflect 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rake.yml +15 -0
  3. data/.github/workflows/release.yml +25 -0
  4. data/.gitignore +12 -0
  5. data/.rubocop.yml +1 -0
  6. data/.rubocop_todo.yml +228 -0
  7. data/CODE_OF_CONDUCT.md +132 -0
  8. data/Gemfile +10 -0
  9. data/README.adoc +268 -0
  10. data/Rakefile +12 -0
  11. data/debug_loading.rb +34 -0
  12. data/lib/prosereflect/document.rb +63 -0
  13. data/lib/prosereflect/hard_break.rb +22 -0
  14. data/lib/prosereflect/node.rb +77 -0
  15. data/lib/prosereflect/paragraph.rb +50 -0
  16. data/lib/prosereflect/parser.rb +56 -0
  17. data/lib/prosereflect/table.rb +64 -0
  18. data/lib/prosereflect/table_cell.rb +37 -0
  19. data/lib/prosereflect/table_row.rb +32 -0
  20. data/lib/prosereflect/text.rb +37 -0
  21. data/lib/prosereflect/version.rb +5 -0
  22. data/lib/prosereflect.rb +17 -0
  23. data/prosereflect.gemspec +33 -0
  24. data/sig/prosemirror.rbs +4 -0
  25. data/spec/fixtures/ituob-1000/ituob-1000-DP.json +366 -0
  26. data/spec/fixtures/ituob-1000/ituob-1000-DP.yaml +182 -0
  27. data/spec/fixtures/ituob-1000/ituob-1000-E118_IIN.json +381 -0
  28. data/spec/fixtures/ituob-1000/ituob-1000-E118_IIN.yaml +182 -0
  29. data/spec/fixtures/ituob-1000/ituob-1000-E164_ACN.json +203 -0
  30. data/spec/fixtures/ituob-1000/ituob-1000-E164_ACN.yaml +98 -0
  31. data/spec/fixtures/ituob-1000/ituob-1000-E212_MNC.json +202 -0
  32. data/spec/fixtures/ituob-1000/ituob-1000-E212_MNC.yaml +101 -0
  33. data/spec/fixtures/ituob-1000/ituob-1000-F32_TDI.json +6948 -0
  34. data/spec/fixtures/ituob-1000/ituob-1000-F32_TDI.yaml +3519 -0
  35. data/spec/fixtures/ituob-1000/ituob-1000-M1400_ICC.json +529 -0
  36. data/spec/fixtures/ituob-1000/ituob-1000-M1400_ICC.yaml +263 -0
  37. data/spec/fixtures/ituob-1000/ituob-1000-NNP.json +288 -0
  38. data/spec/fixtures/ituob-1000/ituob-1000-NNP.yaml +152 -0
  39. data/spec/fixtures/ituob-1000/ituob-1000-Q708_ISPC.json +1534 -0
  40. data/spec/fixtures/ituob-1000/ituob-1000-Q708_ISPC.yaml +789 -0
  41. data/spec/fixtures/ituob-1000/ituob-1000-Q708_SANC.json +252 -0
  42. data/spec/fixtures/ituob-1000/ituob-1000-Q708_SANC.yaml +123 -0
  43. data/spec/fixtures/ituob-1000/ituob-1000-R_SP_LM.V.json +428 -0
  44. data/spec/fixtures/ituob-1000/ituob-1000-R_SP_LM.V.yaml +208 -0
  45. data/spec/fixtures/ituob-1000/ituob-1000-T35_NA.json +621 -0
  46. data/spec/fixtures/ituob-1000/ituob-1000-T35_NA.yaml +317 -0
  47. data/spec/fixtures/ituob-1001/ituob-1001-DP.json +532 -0
  48. data/spec/fixtures/ituob-1001/ituob-1001-DP.yaml +266 -0
  49. data/spec/fixtures/ituob-1001/ituob-1001-E118_IIN.json +1093 -0
  50. data/spec/fixtures/ituob-1001/ituob-1001-E118_IIN.yaml +519 -0
  51. data/spec/fixtures/ituob-1001/ituob-1001-E164_ACN.json +449 -0
  52. data/spec/fixtures/ituob-1001/ituob-1001-E164_ACN.yaml +214 -0
  53. data/spec/fixtures/ituob-1001/ituob-1001-E164_CC.json +271 -0
  54. data/spec/fixtures/ituob-1001/ituob-1001-E164_CC.yaml +136 -0
  55. data/spec/fixtures/ituob-1001/ituob-1001-E212_MNC.json +199 -0
  56. data/spec/fixtures/ituob-1001/ituob-1001-E212_MNC.yaml +99 -0
  57. data/spec/fixtures/ituob-1001/ituob-1001-NNP.json +288 -0
  58. data/spec/fixtures/ituob-1001/ituob-1001-NNP.yaml +152 -0
  59. data/spec/fixtures/ituob-1001/ituob-1001-Q708_ISPC.json +960 -0
  60. data/spec/fixtures/ituob-1001/ituob-1001-Q708_ISPC.yaml +487 -0
  61. data/spec/prosereflect/document_spec.rb +149 -0
  62. data/spec/prosereflect/hard_break_spec.rb +51 -0
  63. data/spec/prosereflect/node_spec.rb +256 -0
  64. data/spec/prosereflect/paragraph_spec.rb +152 -0
  65. data/spec/prosereflect/parser_spec.rb +129 -0
  66. data/spec/prosereflect/table_cell_spec.rb +114 -0
  67. data/spec/prosereflect/table_row_spec.rb +77 -0
  68. data/spec/prosereflect/table_spec.rb +144 -0
  69. data/spec/prosereflect/text_spec.rb +116 -0
  70. data/spec/prosereflect/version_spec.rb +11 -0
  71. data/spec/prosereflect_spec.rb +57 -0
  72. data/spec/spec_helper.rb +21 -0
  73. data/spec/support/matchers.rb +131 -0
  74. data/spec/support/shared_examples.rb +220 -0
  75. metadata +133 -0
@@ -0,0 +1,960 @@
1
+ {
2
+ "type": "doc",
3
+ "content": [
4
+ {
5
+ "type": "table",
6
+ "content": [
7
+ {
8
+ "type": "table_row",
9
+ "content": [
10
+ {
11
+ "type": "table_cell",
12
+ "attrs": {
13
+ "colspan": 2,
14
+ "rowspan": 1,
15
+ "colwidth": null
16
+ },
17
+ "content": [
18
+ {
19
+ "type": "paragraph",
20
+ "content": [
21
+ {
22
+ "type": "text",
23
+ "marks": [
24
+ {
25
+ "type": "em"
26
+ }
27
+ ],
28
+ "text": "Country/ Geographical Area"
29
+ }
30
+ ]
31
+ }
32
+ ]
33
+ },
34
+ {
35
+ "type": "table_cell",
36
+ "attrs": {
37
+ "colspan": 1,
38
+ "rowspan": 2,
39
+ "colwidth": null
40
+ },
41
+ "content": [
42
+ {
43
+ "type": "paragraph",
44
+ "content": [
45
+ {
46
+ "type": "text",
47
+ "marks": [
48
+ {
49
+ "type": "em"
50
+ }
51
+ ],
52
+ "text": "Unique name of the signalling point"
53
+ }
54
+ ]
55
+ }
56
+ ]
57
+ },
58
+ {
59
+ "type": "table_cell",
60
+ "attrs": {
61
+ "colspan": 1,
62
+ "rowspan": 2,
63
+ "colwidth": null
64
+ },
65
+ "content": [
66
+ {
67
+ "type": "paragraph",
68
+ "content": [
69
+ {
70
+ "type": "text",
71
+ "marks": [
72
+ {
73
+ "type": "em"
74
+ }
75
+ ],
76
+ "text": "Name of the signalling point operator"
77
+ }
78
+ ]
79
+ }
80
+ ]
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "type": "table_row",
86
+ "content": [
87
+ {
88
+ "type": "table_cell",
89
+ "attrs": {
90
+ "colspan": 1,
91
+ "rowspan": 1,
92
+ "colwidth": null
93
+ },
94
+ "content": [
95
+ {
96
+ "type": "paragraph",
97
+ "content": [
98
+ {
99
+ "type": "text",
100
+ "marks": [
101
+ {
102
+ "type": "em"
103
+ }
104
+ ],
105
+ "text": "ISPC"
106
+ }
107
+ ]
108
+ }
109
+ ]
110
+ },
111
+ {
112
+ "type": "table_cell",
113
+ "attrs": {
114
+ "colspan": 1,
115
+ "rowspan": 1,
116
+ "colwidth": null
117
+ },
118
+ "content": [
119
+ {
120
+ "type": "paragraph",
121
+ "content": [
122
+ {
123
+ "type": "text",
124
+ "marks": [
125
+ {
126
+ "type": "em"
127
+ }
128
+ ],
129
+ "text": "DEC"
130
+ }
131
+ ]
132
+ }
133
+ ]
134
+ }
135
+ ]
136
+ },
137
+ {
138
+ "type": "table_row",
139
+ "content": [
140
+ {
141
+ "type": "table_cell",
142
+ "attrs": {
143
+ "colspan": 4,
144
+ "rowspan": 1,
145
+ "colwidth": null
146
+ },
147
+ "content": [
148
+ {
149
+ "type": "paragraph",
150
+ "content": [
151
+ {
152
+ "type": "text",
153
+ "marks": [
154
+ {
155
+ "type": "strong"
156
+ }
157
+ ],
158
+ "text": "P  20   Canada    ADD"
159
+ }
160
+ ]
161
+ }
162
+ ]
163
+ }
164
+ ]
165
+ },
166
+ {
167
+ "type": "table_row",
168
+ "content": [
169
+ {
170
+ "type": "table_cell",
171
+ "attrs": {
172
+ "colspan": 1,
173
+ "rowspan": 1,
174
+ "colwidth": null
175
+ },
176
+ "content": [
177
+ {
178
+ "type": "paragraph",
179
+ "content": [
180
+ {
181
+ "type": "text",
182
+ "text": "3-012-5"
183
+ }
184
+ ]
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "type": "table_cell",
190
+ "attrs": {
191
+ "colspan": 1,
192
+ "rowspan": 1,
193
+ "colwidth": null
194
+ },
195
+ "content": [
196
+ {
197
+ "type": "paragraph",
198
+ "content": [
199
+ {
200
+ "type": "text",
201
+ "text": "6245"
202
+ }
203
+ ]
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "type": "table_cell",
209
+ "attrs": {
210
+ "colspan": 1,
211
+ "rowspan": 1,
212
+ "colwidth": null
213
+ },
214
+ "content": [
215
+ {
216
+ "type": "paragraph",
217
+ "content": [
218
+ {
219
+ "type": "text",
220
+ "text": "IRISTEL INC., Toronto, Ontario"
221
+ }
222
+ ]
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "type": "table_cell",
228
+ "attrs": {
229
+ "colspan": 1,
230
+ "rowspan": 1,
231
+ "colwidth": null
232
+ },
233
+ "content": [
234
+ {
235
+ "type": "paragraph",
236
+ "content": [
237
+ {
238
+ "type": "text",
239
+ "text": "Iristel Inc."
240
+ }
241
+ ]
242
+ }
243
+ ]
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "type": "table_row",
249
+ "content": [
250
+ {
251
+ "type": "table_cell",
252
+ "attrs": {
253
+ "colspan": 4,
254
+ "rowspan": 1,
255
+ "colwidth": null
256
+ },
257
+ "content": [
258
+ {
259
+ "type": "paragraph",
260
+ "content": [
261
+ {
262
+ "type": "text",
263
+ "marks": [
264
+ {
265
+ "type": "strong"
266
+ }
267
+ ],
268
+ "text": "P  29   Estonia    SUP"
269
+ }
270
+ ]
271
+ }
272
+ ]
273
+ }
274
+ ]
275
+ },
276
+ {
277
+ "type": "table_row",
278
+ "content": [
279
+ {
280
+ "type": "table_cell",
281
+ "attrs": {
282
+ "colspan": 1,
283
+ "rowspan": 1,
284
+ "colwidth": null
285
+ },
286
+ "content": [
287
+ {
288
+ "type": "paragraph",
289
+ "content": [
290
+ {
291
+ "type": "text",
292
+ "text": "3-244-3"
293
+ }
294
+ ]
295
+ }
296
+ ]
297
+ },
298
+ {
299
+ "type": "table_cell",
300
+ "attrs": {
301
+ "colspan": 1,
302
+ "rowspan": 1,
303
+ "colwidth": null
304
+ },
305
+ "content": [
306
+ {
307
+ "type": "paragraph",
308
+ "content": [
309
+ {
310
+ "type": "text",
311
+ "text": "8099"
312
+ }
313
+ ]
314
+ }
315
+ ]
316
+ },
317
+ {
318
+ "type": "table_cell",
319
+ "attrs": {
320
+ "colspan": 1,
321
+ "rowspan": 1,
322
+ "colwidth": null
323
+ },
324
+ "content": [
325
+ {
326
+ "type": "paragraph",
327
+ "content": [
328
+ {
329
+ "type": "text",
330
+ "text": "Tallinn"
331
+ }
332
+ ]
333
+ }
334
+ ]
335
+ },
336
+ {
337
+ "type": "table_cell",
338
+ "attrs": {
339
+ "colspan": 1,
340
+ "rowspan": 1,
341
+ "colwidth": null
342
+ },
343
+ "content": [
344
+ {
345
+ "type": "paragraph",
346
+ "content": [
347
+ {
348
+ "type": "text",
349
+ "text": "OÜ General Transit Telecom"
350
+ }
351
+ ]
352
+ }
353
+ ]
354
+ }
355
+ ]
356
+ },
357
+ {
358
+ "type": "table_row",
359
+ "content": [
360
+ {
361
+ "type": "table_cell",
362
+ "attrs": {
363
+ "colspan": 4,
364
+ "rowspan": 1,
365
+ "colwidth": null
366
+ },
367
+ "content": [
368
+ {
369
+ "type": "paragraph",
370
+ "content": [
371
+ {
372
+ "type": "text",
373
+ "marks": [
374
+ {
375
+ "type": "strong"
376
+ }
377
+ ],
378
+ "text": "P  79   Norway    SUP"
379
+ }
380
+ ]
381
+ }
382
+ ]
383
+ }
384
+ ]
385
+ },
386
+ {
387
+ "type": "table_row",
388
+ "content": [
389
+ {
390
+ "type": "table_cell",
391
+ "attrs": {
392
+ "colspan": 1,
393
+ "rowspan": 1,
394
+ "colwidth": null
395
+ },
396
+ "content": [
397
+ {
398
+ "type": "paragraph",
399
+ "content": [
400
+ {
401
+ "type": "text",
402
+ "text": "2-087-3"
403
+ }
404
+ ]
405
+ }
406
+ ]
407
+ },
408
+ {
409
+ "type": "table_cell",
410
+ "attrs": {
411
+ "colspan": 1,
412
+ "rowspan": 1,
413
+ "colwidth": null
414
+ },
415
+ "content": [
416
+ {
417
+ "type": "paragraph",
418
+ "content": [
419
+ {
420
+ "type": "text",
421
+ "text": "4795"
422
+ }
423
+ ]
424
+ }
425
+ ]
426
+ },
427
+ {
428
+ "type": "table_cell",
429
+ "attrs": {
430
+ "colspan": 1,
431
+ "rowspan": 1,
432
+ "colwidth": null
433
+ },
434
+ "content": [
435
+ {
436
+ "type": "paragraph",
437
+ "content": [
438
+ {
439
+ "type": "text",
440
+ "text": "OS_B1-IWMSC"
441
+ }
442
+ ]
443
+ }
444
+ ]
445
+ },
446
+ {
447
+ "type": "table_cell",
448
+ "attrs": {
449
+ "colspan": 1,
450
+ "rowspan": 1,
451
+ "colwidth": null
452
+ },
453
+ "content": [
454
+ {
455
+ "type": "paragraph",
456
+ "content": [
457
+ {
458
+ "type": "text",
459
+ "text": "Mundio Mobile Norway Limited"
460
+ }
461
+ ]
462
+ }
463
+ ]
464
+ }
465
+ ]
466
+ },
467
+ {
468
+ "type": "table_row",
469
+ "content": [
470
+ {
471
+ "type": "table_cell",
472
+ "attrs": {
473
+ "colspan": 4,
474
+ "rowspan": 1,
475
+ "colwidth": null
476
+ },
477
+ "content": [
478
+ {
479
+ "type": "paragraph",
480
+ "content": [
481
+ {
482
+ "type": "text",
483
+ "marks": [
484
+ {
485
+ "type": "strong"
486
+ }
487
+ ],
488
+ "text": "P  79 to P  80   Norway    ADD"
489
+ }
490
+ ]
491
+ }
492
+ ]
493
+ }
494
+ ]
495
+ },
496
+ {
497
+ "type": "table_row",
498
+ "content": [
499
+ {
500
+ "type": "table_cell",
501
+ "attrs": {
502
+ "colspan": 1,
503
+ "rowspan": 1,
504
+ "colwidth": null
505
+ },
506
+ "content": [
507
+ {
508
+ "type": "paragraph",
509
+ "content": [
510
+ {
511
+ "type": "text",
512
+ "text": "2-087-3"
513
+ }
514
+ ]
515
+ }
516
+ ]
517
+ },
518
+ {
519
+ "type": "table_cell",
520
+ "attrs": {
521
+ "colspan": 1,
522
+ "rowspan": 1,
523
+ "colwidth": null
524
+ },
525
+ "content": [
526
+ {
527
+ "type": "paragraph",
528
+ "content": [
529
+ {
530
+ "type": "text",
531
+ "text": "4795"
532
+ }
533
+ ]
534
+ }
535
+ ]
536
+ },
537
+ {
538
+ "type": "table_cell",
539
+ "attrs": {
540
+ "colspan": 1,
541
+ "rowspan": 1,
542
+ "colwidth": null
543
+ },
544
+ "content": [
545
+ {
546
+ "type": "paragraph",
547
+ "content": [
548
+ {
549
+ "type": "text",
550
+ "text": "C4MSS1"
551
+ }
552
+ ]
553
+ }
554
+ ]
555
+ },
556
+ {
557
+ "type": "table_cell",
558
+ "attrs": {
559
+ "colspan": 1,
560
+ "rowspan": 1,
561
+ "colwidth": null
562
+ },
563
+ "content": [
564
+ {
565
+ "type": "paragraph",
566
+ "content": [
567
+ {
568
+ "type": "text",
569
+ "text": "Com 4"
570
+ }
571
+ ]
572
+ }
573
+ ]
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "type": "table_row",
579
+ "content": [
580
+ {
581
+ "type": "table_cell",
582
+ "attrs": {
583
+ "colspan": 1,
584
+ "rowspan": 1,
585
+ "colwidth": null
586
+ },
587
+ "content": [
588
+ {
589
+ "type": "paragraph",
590
+ "content": [
591
+ {
592
+ "type": "text",
593
+ "text": "7-240-2"
594
+ }
595
+ ]
596
+ }
597
+ ]
598
+ },
599
+ {
600
+ "type": "table_cell",
601
+ "attrs": {
602
+ "colspan": 1,
603
+ "rowspan": 1,
604
+ "colwidth": null
605
+ },
606
+ "content": [
607
+ {
608
+ "type": "paragraph",
609
+ "content": [
610
+ {
611
+ "type": "text",
612
+ "text": "16258"
613
+ }
614
+ ]
615
+ }
616
+ ]
617
+ },
618
+ {
619
+ "type": "table_cell",
620
+ "attrs": {
621
+ "colspan": 1,
622
+ "rowspan": 1,
623
+ "colwidth": null
624
+ },
625
+ "content": [
626
+ {
627
+ "type": "paragraph",
628
+ "content": [
629
+ {
630
+ "type": "text",
631
+ "text": "C4MGW1"
632
+ }
633
+ ]
634
+ }
635
+ ]
636
+ },
637
+ {
638
+ "type": "table_cell",
639
+ "attrs": {
640
+ "colspan": 1,
641
+ "rowspan": 1,
642
+ "colwidth": null
643
+ },
644
+ "content": [
645
+ {
646
+ "type": "paragraph",
647
+ "content": [
648
+ {
649
+ "type": "text",
650
+ "text": "Com 4"
651
+ }
652
+ ]
653
+ }
654
+ ]
655
+ }
656
+ ]
657
+ },
658
+ {
659
+ "type": "table_row",
660
+ "content": [
661
+ {
662
+ "type": "table_cell",
663
+ "attrs": {
664
+ "colspan": 4,
665
+ "rowspan": 1,
666
+ "colwidth": null
667
+ },
668
+ "content": [
669
+ {
670
+ "type": "paragraph",
671
+ "content": [
672
+ {
673
+ "type": "text",
674
+ "marks": [
675
+ {
676
+ "type": "strong"
677
+ }
678
+ ],
679
+ "text": "P  133   Yemen    ADD"
680
+ }
681
+ ]
682
+ }
683
+ ]
684
+ }
685
+ ]
686
+ },
687
+ {
688
+ "type": "table_row",
689
+ "content": [
690
+ {
691
+ "type": "table_cell",
692
+ "attrs": {
693
+ "colspan": 1,
694
+ "rowspan": 1,
695
+ "colwidth": null
696
+ },
697
+ "content": [
698
+ {
699
+ "type": "paragraph",
700
+ "content": [
701
+ {
702
+ "type": "text",
703
+ "text": "4-046-5"
704
+ }
705
+ ]
706
+ }
707
+ ]
708
+ },
709
+ {
710
+ "type": "table_cell",
711
+ "attrs": {
712
+ "colspan": 1,
713
+ "rowspan": 1,
714
+ "colwidth": null
715
+ },
716
+ "content": [
717
+ {
718
+ "type": "paragraph",
719
+ "content": [
720
+ {
721
+ "type": "text",
722
+ "text": "8565"
723
+ }
724
+ ]
725
+ }
726
+ ]
727
+ },
728
+ {
729
+ "type": "table_cell",
730
+ "attrs": {
731
+ "colspan": 1,
732
+ "rowspan": 1,
733
+ "colwidth": null
734
+ },
735
+ "content": [
736
+ {
737
+ "type": "paragraph",
738
+ "content": [
739
+ {
740
+ "type": "text",
741
+ "text": "YEM-YTel-3"
742
+ }
743
+ ]
744
+ }
745
+ ]
746
+ },
747
+ {
748
+ "type": "table_cell",
749
+ "attrs": {
750
+ "colspan": 1,
751
+ "rowspan": 1,
752
+ "colwidth": null
753
+ },
754
+ "content": [
755
+ {
756
+ "type": "paragraph",
757
+ "content": [
758
+ {
759
+ "type": "text",
760
+ "text": "Y-Telecom"
761
+ }
762
+ ]
763
+ }
764
+ ]
765
+ }
766
+ ]
767
+ },
768
+ {
769
+ "type": "table_row",
770
+ "content": [
771
+ {
772
+ "type": "table_cell",
773
+ "attrs": {
774
+ "colspan": 1,
775
+ "rowspan": 1,
776
+ "colwidth": null
777
+ },
778
+ "content": [
779
+ {
780
+ "type": "paragraph",
781
+ "content": [
782
+ {
783
+ "type": "text",
784
+ "text": "4-046-6"
785
+ }
786
+ ]
787
+ }
788
+ ]
789
+ },
790
+ {
791
+ "type": "table_cell",
792
+ "attrs": {
793
+ "colspan": 1,
794
+ "rowspan": 1,
795
+ "colwidth": null
796
+ },
797
+ "content": [
798
+ {
799
+ "type": "paragraph",
800
+ "content": [
801
+ {
802
+ "type": "text",
803
+ "text": "8566"
804
+ }
805
+ ]
806
+ }
807
+ ]
808
+ },
809
+ {
810
+ "type": "table_cell",
811
+ "attrs": {
812
+ "colspan": 1,
813
+ "rowspan": 1,
814
+ "colwidth": null
815
+ },
816
+ "content": [
817
+ {
818
+ "type": "paragraph",
819
+ "content": [
820
+ {
821
+ "type": "text",
822
+ "text": "YEM-YTel-4"
823
+ }
824
+ ]
825
+ }
826
+ ]
827
+ },
828
+ {
829
+ "type": "table_cell",
830
+ "attrs": {
831
+ "colspan": 1,
832
+ "rowspan": 1,
833
+ "colwidth": null
834
+ },
835
+ "content": [
836
+ {
837
+ "type": "paragraph",
838
+ "content": [
839
+ {
840
+ "type": "text",
841
+ "text": "Y-Telecom"
842
+ }
843
+ ]
844
+ }
845
+ ]
846
+ }
847
+ ]
848
+ },
849
+ {
850
+ "type": "table_row",
851
+ "content": [
852
+ {
853
+ "type": "table_cell",
854
+ "attrs": {
855
+ "colspan": 1,
856
+ "rowspan": 1,
857
+ "colwidth": null
858
+ },
859
+ "content": [
860
+ {
861
+ "type": "paragraph",
862
+ "content": [
863
+ {
864
+ "type": "text",
865
+ "text": "4-046-7"
866
+ }
867
+ ]
868
+ }
869
+ ]
870
+ },
871
+ {
872
+ "type": "table_cell",
873
+ "attrs": {
874
+ "colspan": 1,
875
+ "rowspan": 1,
876
+ "colwidth": null
877
+ },
878
+ "content": [
879
+ {
880
+ "type": "paragraph",
881
+ "content": [
882
+ {
883
+ "type": "text",
884
+ "text": "8567"
885
+ }
886
+ ]
887
+ }
888
+ ]
889
+ },
890
+ {
891
+ "type": "table_cell",
892
+ "attrs": {
893
+ "colspan": 1,
894
+ "rowspan": 1,
895
+ "colwidth": null
896
+ },
897
+ "content": [
898
+ {
899
+ "type": "paragraph",
900
+ "content": [
901
+ {
902
+ "type": "text",
903
+ "text": "YEM-YTel-5"
904
+ }
905
+ ]
906
+ }
907
+ ]
908
+ },
909
+ {
910
+ "type": "table_cell",
911
+ "attrs": {
912
+ "colspan": 1,
913
+ "rowspan": 1,
914
+ "colwidth": null
915
+ },
916
+ "content": [
917
+ {
918
+ "type": "paragraph",
919
+ "content": [
920
+ {
921
+ "type": "text",
922
+ "text": "Y-Telecom"
923
+ }
924
+ ]
925
+ }
926
+ ]
927
+ }
928
+ ]
929
+ }
930
+ ]
931
+ },
932
+ {
933
+ "type": "paragraph",
934
+ "content": [
935
+ {
936
+ "type": "text",
937
+ "text": "ISPC:      International Signalling Point Codes."
938
+ }
939
+ ]
940
+ },
941
+ {
942
+ "type": "paragraph",
943
+ "content": [
944
+ {
945
+ "type": "text",
946
+ "text": "              Codes de points sémaphores internationaux (CPSI)."
947
+ }
948
+ ]
949
+ },
950
+ {
951
+ "type": "paragraph",
952
+ "content": [
953
+ {
954
+ "type": "text",
955
+ "text": "              Códigos de puntos de señalización internacional (CPSI)."
956
+ }
957
+ ]
958
+ }
959
+ ]
960
+ }