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,1534 @@
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
+ "text": "Country/ Geographical Area"
24
+ }
25
+ ]
26
+ }
27
+ ]
28
+ },
29
+ {
30
+ "type": "table_cell",
31
+ "attrs": {
32
+ "colspan": 1,
33
+ "rowspan": 2,
34
+ "colwidth": null
35
+ },
36
+ "content": [
37
+ {
38
+ "type": "paragraph",
39
+ "content": [
40
+ {
41
+ "type": "text",
42
+ "text": "Unique name of the signalling point"
43
+ }
44
+ ]
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "type": "table_cell",
50
+ "attrs": {
51
+ "colspan": 1,
52
+ "rowspan": 2,
53
+ "colwidth": null
54
+ },
55
+ "content": [
56
+ {
57
+ "type": "paragraph",
58
+ "content": [
59
+ {
60
+ "type": "text",
61
+ "text": "Name of the signalling point operator"
62
+ }
63
+ ]
64
+ }
65
+ ]
66
+ }
67
+ ]
68
+ },
69
+ {
70
+ "type": "table_row",
71
+ "content": [
72
+ {
73
+ "type": "table_cell",
74
+ "attrs": {
75
+ "colspan": 1,
76
+ "rowspan": 1,
77
+ "colwidth": null
78
+ },
79
+ "content": [
80
+ {
81
+ "type": "paragraph",
82
+ "content": [
83
+ {
84
+ "type": "text",
85
+ "text": "ISPC"
86
+ }
87
+ ]
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ "type": "table_cell",
93
+ "attrs": {
94
+ "colspan": 1,
95
+ "rowspan": 1,
96
+ "colwidth": null
97
+ },
98
+ "content": [
99
+ {
100
+ "type": "paragraph",
101
+ "content": [
102
+ {
103
+ "type": "text",
104
+ "text": "DEC"
105
+ }
106
+ ]
107
+ }
108
+ ]
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ "type": "table_row",
114
+ "content": [
115
+ {
116
+ "type": "table_cell",
117
+ "attrs": {
118
+ "colspan": 4,
119
+ "rowspan": 1,
120
+ "colwidth": null
121
+ },
122
+ "content": [
123
+ {
124
+ "type": "paragraph",
125
+ "content": [
126
+ {
127
+ "type": "text",
128
+ "marks": [
129
+ {
130
+ "type": "strong"
131
+ }
132
+ ],
133
+ "text": "P  34   France    ADD"
134
+ }
135
+ ]
136
+ }
137
+ ]
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ "type": "table_row",
143
+ "content": [
144
+ {
145
+ "type": "table_cell",
146
+ "attrs": {
147
+ "colspan": 1,
148
+ "rowspan": 1,
149
+ "colwidth": null
150
+ },
151
+ "content": [
152
+ {
153
+ "type": "paragraph",
154
+ "content": [
155
+ {
156
+ "type": "text",
157
+ "text": "3-232-0"
158
+ }
159
+ ]
160
+ }
161
+ ]
162
+ },
163
+ {
164
+ "type": "table_cell",
165
+ "attrs": {
166
+ "colspan": 1,
167
+ "rowspan": 1,
168
+ "colwidth": null
169
+ },
170
+ "content": [
171
+ {
172
+ "type": "paragraph",
173
+ "content": [
174
+ {
175
+ "type": "text",
176
+ "text": "8000"
177
+ }
178
+ ]
179
+ }
180
+ ]
181
+ },
182
+ {
183
+ "type": "table_cell",
184
+ "attrs": {
185
+ "colspan": 1,
186
+ "rowspan": 1,
187
+ "colwidth": null
188
+ },
189
+ "content": [
190
+ {
191
+ "type": "paragraph",
192
+ "content": [
193
+ {
194
+ "type": "text",
195
+ "text": "Omer Telecom Limited - Aubervilliers"
196
+ }
197
+ ]
198
+ }
199
+ ]
200
+ },
201
+ {
202
+ "type": "table_cell",
203
+ "attrs": {
204
+ "colspan": 1,
205
+ "rowspan": 1,
206
+ "colwidth": null
207
+ },
208
+ "content": [
209
+ {
210
+ "type": "paragraph",
211
+ "content": [
212
+ {
213
+ "type": "text",
214
+ "text": "Omer Telecom Limited"
215
+ }
216
+ ]
217
+ }
218
+ ]
219
+ }
220
+ ]
221
+ },
222
+ {
223
+ "type": "table_row",
224
+ "content": [
225
+ {
226
+ "type": "table_cell",
227
+ "attrs": {
228
+ "colspan": 1,
229
+ "rowspan": 1,
230
+ "colwidth": null
231
+ },
232
+ "content": [
233
+ {
234
+ "type": "paragraph",
235
+ "content": [
236
+ {
237
+ "type": "text",
238
+ "text": "3-232-1"
239
+ }
240
+ ]
241
+ }
242
+ ]
243
+ },
244
+ {
245
+ "type": "table_cell",
246
+ "attrs": {
247
+ "colspan": 1,
248
+ "rowspan": 1,
249
+ "colwidth": null
250
+ },
251
+ "content": [
252
+ {
253
+ "type": "paragraph",
254
+ "content": [
255
+ {
256
+ "type": "text",
257
+ "text": "8001"
258
+ }
259
+ ]
260
+ }
261
+ ]
262
+ },
263
+ {
264
+ "type": "table_cell",
265
+ "attrs": {
266
+ "colspan": 1,
267
+ "rowspan": 1,
268
+ "colwidth": null
269
+ },
270
+ "content": [
271
+ {
272
+ "type": "paragraph",
273
+ "content": [
274
+ {
275
+ "type": "text",
276
+ "text": "Omer Telecom Limited - Courbevoie"
277
+ }
278
+ ]
279
+ }
280
+ ]
281
+ },
282
+ {
283
+ "type": "table_cell",
284
+ "attrs": {
285
+ "colspan": 1,
286
+ "rowspan": 1,
287
+ "colwidth": null
288
+ },
289
+ "content": [
290
+ {
291
+ "type": "paragraph",
292
+ "content": [
293
+ {
294
+ "type": "text",
295
+ "text": "Omer Telecom Limited"
296
+ }
297
+ ]
298
+ }
299
+ ]
300
+ }
301
+ ]
302
+ },
303
+ {
304
+ "type": "table_row",
305
+ "content": [
306
+ {
307
+ "type": "table_cell",
308
+ "attrs": {
309
+ "colspan": 1,
310
+ "rowspan": 1,
311
+ "colwidth": null
312
+ },
313
+ "content": [
314
+ {
315
+ "type": "paragraph",
316
+ "content": [
317
+ {
318
+ "type": "text",
319
+ "text": "3-232-2"
320
+ }
321
+ ]
322
+ }
323
+ ]
324
+ },
325
+ {
326
+ "type": "table_cell",
327
+ "attrs": {
328
+ "colspan": 1,
329
+ "rowspan": 1,
330
+ "colwidth": null
331
+ },
332
+ "content": [
333
+ {
334
+ "type": "paragraph",
335
+ "content": [
336
+ {
337
+ "type": "text",
338
+ "text": "8002"
339
+ }
340
+ ]
341
+ }
342
+ ]
343
+ },
344
+ {
345
+ "type": "table_cell",
346
+ "attrs": {
347
+ "colspan": 1,
348
+ "rowspan": 1,
349
+ "colwidth": null
350
+ },
351
+ "content": [
352
+ {
353
+ "type": "paragraph",
354
+ "content": [
355
+ {
356
+ "type": "text",
357
+ "text": "NRJ Mobile - Aubervilliers 1"
358
+ }
359
+ ]
360
+ }
361
+ ]
362
+ },
363
+ {
364
+ "type": "table_cell",
365
+ "attrs": {
366
+ "colspan": 1,
367
+ "rowspan": 1,
368
+ "colwidth": null
369
+ },
370
+ "content": [
371
+ {
372
+ "type": "paragraph",
373
+ "content": [
374
+ {
375
+ "type": "text",
376
+ "text": "NRJ Mobile"
377
+ }
378
+ ]
379
+ }
380
+ ]
381
+ }
382
+ ]
383
+ },
384
+ {
385
+ "type": "table_row",
386
+ "content": [
387
+ {
388
+ "type": "table_cell",
389
+ "attrs": {
390
+ "colspan": 1,
391
+ "rowspan": 1,
392
+ "colwidth": null
393
+ },
394
+ "content": [
395
+ {
396
+ "type": "paragraph",
397
+ "content": [
398
+ {
399
+ "type": "text",
400
+ "text": "3-232-3"
401
+ }
402
+ ]
403
+ }
404
+ ]
405
+ },
406
+ {
407
+ "type": "table_cell",
408
+ "attrs": {
409
+ "colspan": 1,
410
+ "rowspan": 1,
411
+ "colwidth": null
412
+ },
413
+ "content": [
414
+ {
415
+ "type": "paragraph",
416
+ "content": [
417
+ {
418
+ "type": "text",
419
+ "text": "8003"
420
+ }
421
+ ]
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ "type": "table_cell",
427
+ "attrs": {
428
+ "colspan": 1,
429
+ "rowspan": 1,
430
+ "colwidth": null
431
+ },
432
+ "content": [
433
+ {
434
+ "type": "paragraph",
435
+ "content": [
436
+ {
437
+ "type": "text",
438
+ "text": "NRJ Mobile  - Aubervilliers 2"
439
+ }
440
+ ]
441
+ }
442
+ ]
443
+ },
444
+ {
445
+ "type": "table_cell",
446
+ "attrs": {
447
+ "colspan": 1,
448
+ "rowspan": 1,
449
+ "colwidth": null
450
+ },
451
+ "content": [
452
+ {
453
+ "type": "paragraph",
454
+ "content": [
455
+ {
456
+ "type": "text",
457
+ "text": "NRJ Mobile"
458
+ }
459
+ ]
460
+ }
461
+ ]
462
+ }
463
+ ]
464
+ },
465
+ {
466
+ "type": "table_row",
467
+ "content": [
468
+ {
469
+ "type": "table_cell",
470
+ "attrs": {
471
+ "colspan": 1,
472
+ "rowspan": 1,
473
+ "colwidth": null
474
+ },
475
+ "content": [
476
+ {
477
+ "type": "paragraph",
478
+ "content": [
479
+ {
480
+ "type": "text",
481
+ "text": "6-233-5"
482
+ }
483
+ ]
484
+ }
485
+ ]
486
+ },
487
+ {
488
+ "type": "table_cell",
489
+ "attrs": {
490
+ "colspan": 1,
491
+ "rowspan": 1,
492
+ "colwidth": null
493
+ },
494
+ "content": [
495
+ {
496
+ "type": "paragraph",
497
+ "content": [
498
+ {
499
+ "type": "text",
500
+ "text": "14157"
501
+ }
502
+ ]
503
+ }
504
+ ]
505
+ },
506
+ {
507
+ "type": "table_cell",
508
+ "attrs": {
509
+ "colspan": 1,
510
+ "rowspan": 1,
511
+ "colwidth": null
512
+ },
513
+ "content": [
514
+ {
515
+ "type": "paragraph",
516
+ "content": [
517
+ {
518
+ "type": "text",
519
+ "text": "Mobiqui Things - Vitry 1"
520
+ }
521
+ ]
522
+ }
523
+ ]
524
+ },
525
+ {
526
+ "type": "table_cell",
527
+ "attrs": {
528
+ "colspan": 1,
529
+ "rowspan": 1,
530
+ "colwidth": null
531
+ },
532
+ "content": [
533
+ {
534
+ "type": "paragraph",
535
+ "content": [
536
+ {
537
+ "type": "text",
538
+ "text": "Mobiqui Things"
539
+ }
540
+ ]
541
+ }
542
+ ]
543
+ }
544
+ ]
545
+ },
546
+ {
547
+ "type": "table_row",
548
+ "content": [
549
+ {
550
+ "type": "table_cell",
551
+ "attrs": {
552
+ "colspan": 1,
553
+ "rowspan": 1,
554
+ "colwidth": null
555
+ },
556
+ "content": [
557
+ {
558
+ "type": "paragraph",
559
+ "content": [
560
+ {
561
+ "type": "text",
562
+ "text": "6-233-6"
563
+ }
564
+ ]
565
+ }
566
+ ]
567
+ },
568
+ {
569
+ "type": "table_cell",
570
+ "attrs": {
571
+ "colspan": 1,
572
+ "rowspan": 1,
573
+ "colwidth": null
574
+ },
575
+ "content": [
576
+ {
577
+ "type": "paragraph",
578
+ "content": [
579
+ {
580
+ "type": "text",
581
+ "text": "14158"
582
+ }
583
+ ]
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "type": "table_cell",
589
+ "attrs": {
590
+ "colspan": 1,
591
+ "rowspan": 1,
592
+ "colwidth": null
593
+ },
594
+ "content": [
595
+ {
596
+ "type": "paragraph",
597
+ "content": [
598
+ {
599
+ "type": "text",
600
+ "text": "Alpha Com - Clichy"
601
+ }
602
+ ]
603
+ }
604
+ ]
605
+ },
606
+ {
607
+ "type": "table_cell",
608
+ "attrs": {
609
+ "colspan": 1,
610
+ "rowspan": 1,
611
+ "colwidth": null
612
+ },
613
+ "content": [
614
+ {
615
+ "type": "paragraph",
616
+ "content": [
617
+ {
618
+ "type": "text",
619
+ "text": "Alpha Com"
620
+ }
621
+ ]
622
+ }
623
+ ]
624
+ }
625
+ ]
626
+ },
627
+ {
628
+ "type": "table_row",
629
+ "content": [
630
+ {
631
+ "type": "table_cell",
632
+ "attrs": {
633
+ "colspan": 1,
634
+ "rowspan": 1,
635
+ "colwidth": null
636
+ },
637
+ "content": [
638
+ {
639
+ "type": "paragraph",
640
+ "content": [
641
+ {
642
+ "type": "text",
643
+ "text": "6-233-7"
644
+ }
645
+ ]
646
+ }
647
+ ]
648
+ },
649
+ {
650
+ "type": "table_cell",
651
+ "attrs": {
652
+ "colspan": 1,
653
+ "rowspan": 1,
654
+ "colwidth": null
655
+ },
656
+ "content": [
657
+ {
658
+ "type": "paragraph",
659
+ "content": [
660
+ {
661
+ "type": "text",
662
+ "text": "14159"
663
+ }
664
+ ]
665
+ }
666
+ ]
667
+ },
668
+ {
669
+ "type": "table_cell",
670
+ "attrs": {
671
+ "colspan": 1,
672
+ "rowspan": 1,
673
+ "colwidth": null
674
+ },
675
+ "content": [
676
+ {
677
+ "type": "paragraph",
678
+ "content": [
679
+ {
680
+ "type": "text",
681
+ "text": "Mobiqui Things - Vitry 2"
682
+ }
683
+ ]
684
+ }
685
+ ]
686
+ },
687
+ {
688
+ "type": "table_cell",
689
+ "attrs": {
690
+ "colspan": 1,
691
+ "rowspan": 1,
692
+ "colwidth": null
693
+ },
694
+ "content": [
695
+ {
696
+ "type": "paragraph",
697
+ "content": [
698
+ {
699
+ "type": "text",
700
+ "text": "Mobiqui Things"
701
+ }
702
+ ]
703
+ }
704
+ ]
705
+ }
706
+ ]
707
+ },
708
+ {
709
+ "type": "table_row",
710
+ "content": [
711
+ {
712
+ "type": "table_cell",
713
+ "attrs": {
714
+ "colspan": 4,
715
+ "rowspan": 1,
716
+ "colwidth": null
717
+ },
718
+ "content": [
719
+ {
720
+ "type": "paragraph",
721
+ "content": [
722
+ {
723
+ "type": "text",
724
+ "marks": [
725
+ {
726
+ "type": "strong"
727
+ }
728
+ ],
729
+ "text": "P  102   Sweden    ADD"
730
+ }
731
+ ]
732
+ }
733
+ ]
734
+ }
735
+ ]
736
+ },
737
+ {
738
+ "type": "table_row",
739
+ "content": [
740
+ {
741
+ "type": "table_cell",
742
+ "attrs": {
743
+ "colspan": 1,
744
+ "rowspan": 1,
745
+ "colwidth": null
746
+ },
747
+ "content": [
748
+ {
749
+ "type": "paragraph",
750
+ "content": [
751
+ {
752
+ "type": "text",
753
+ "text": "6-229-0"
754
+ }
755
+ ]
756
+ }
757
+ ]
758
+ },
759
+ {
760
+ "type": "table_cell",
761
+ "attrs": {
762
+ "colspan": 1,
763
+ "rowspan": 1,
764
+ "colwidth": null
765
+ },
766
+ "content": [
767
+ {
768
+ "type": "paragraph",
769
+ "content": [
770
+ {
771
+ "type": "text",
772
+ "text": "14120"
773
+ }
774
+ ]
775
+ }
776
+ ]
777
+ },
778
+ {
779
+ "type": "table_cell",
780
+ "attrs": {
781
+ "colspan": 1,
782
+ "rowspan": 1,
783
+ "colwidth": null
784
+ },
785
+ "content": [
786
+ {
787
+ "type": "paragraph",
788
+ "content": [
789
+ {
790
+ "type": "text",
791
+ "text": "MISTH-3"
792
+ }
793
+ ]
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "type": "table_cell",
799
+ "attrs": {
800
+ "colspan": 1,
801
+ "rowspan": 1,
802
+ "colwidth": null
803
+ },
804
+ "content": [
805
+ {
806
+ "type": "paragraph",
807
+ "content": [
808
+ {
809
+ "type": "text",
810
+ "text": "Mercury International Carrier Services"
811
+ }
812
+ ]
813
+ }
814
+ ]
815
+ }
816
+ ]
817
+ },
818
+ {
819
+ "type": "table_row",
820
+ "content": [
821
+ {
822
+ "type": "table_cell",
823
+ "attrs": {
824
+ "colspan": 1,
825
+ "rowspan": 1,
826
+ "colwidth": null
827
+ },
828
+ "content": [
829
+ {
830
+ "type": "paragraph",
831
+ "content": [
832
+ {
833
+ "type": "text",
834
+ "text": "6-229-1"
835
+ }
836
+ ]
837
+ }
838
+ ]
839
+ },
840
+ {
841
+ "type": "table_cell",
842
+ "attrs": {
843
+ "colspan": 1,
844
+ "rowspan": 1,
845
+ "colwidth": null
846
+ },
847
+ "content": [
848
+ {
849
+ "type": "paragraph",
850
+ "content": [
851
+ {
852
+ "type": "text",
853
+ "text": "14121"
854
+ }
855
+ ]
856
+ }
857
+ ]
858
+ },
859
+ {
860
+ "type": "table_cell",
861
+ "attrs": {
862
+ "colspan": 1,
863
+ "rowspan": 1,
864
+ "colwidth": null
865
+ },
866
+ "content": [
867
+ {
868
+ "type": "paragraph",
869
+ "content": [
870
+ {
871
+ "type": "text",
872
+ "text": "MISTH-4"
873
+ }
874
+ ]
875
+ }
876
+ ]
877
+ },
878
+ {
879
+ "type": "table_cell",
880
+ "attrs": {
881
+ "colspan": 1,
882
+ "rowspan": 1,
883
+ "colwidth": null
884
+ },
885
+ "content": [
886
+ {
887
+ "type": "paragraph",
888
+ "content": [
889
+ {
890
+ "type": "text",
891
+ "text": "Mercury International Carrier Services"
892
+ }
893
+ ]
894
+ }
895
+ ]
896
+ }
897
+ ]
898
+ },
899
+ {
900
+ "type": "table_row",
901
+ "content": [
902
+ {
903
+ "type": "table_cell",
904
+ "attrs": {
905
+ "colspan": 4,
906
+ "rowspan": 1,
907
+ "colwidth": null
908
+ },
909
+ "content": [
910
+ {
911
+ "type": "paragraph",
912
+ "content": [
913
+ {
914
+ "type": "text",
915
+ "marks": [
916
+ {
917
+ "type": "strong"
918
+ }
919
+ ],
920
+ "text": "P  102   Sweden    LIR"
921
+ }
922
+ ]
923
+ }
924
+ ]
925
+ }
926
+ ]
927
+ },
928
+ {
929
+ "type": "table_row",
930
+ "content": [
931
+ {
932
+ "type": "table_cell",
933
+ "attrs": {
934
+ "colspan": 1,
935
+ "rowspan": 1,
936
+ "colwidth": null
937
+ },
938
+ "content": [
939
+ {
940
+ "type": "paragraph",
941
+ "content": [
942
+ {
943
+ "type": "text",
944
+ "text": "6-238-0"
945
+ }
946
+ ]
947
+ }
948
+ ]
949
+ },
950
+ {
951
+ "type": "table_cell",
952
+ "attrs": {
953
+ "colspan": 1,
954
+ "rowspan": 1,
955
+ "colwidth": null
956
+ },
957
+ "content": [
958
+ {
959
+ "type": "paragraph",
960
+ "content": [
961
+ {
962
+ "type": "text",
963
+ "text": "14192"
964
+ }
965
+ ]
966
+ }
967
+ ]
968
+ },
969
+ {
970
+ "type": "table_cell",
971
+ "attrs": {
972
+ "colspan": 1,
973
+ "rowspan": 1,
974
+ "colwidth": null
975
+ },
976
+ "content": [
977
+ {
978
+ "type": "paragraph",
979
+ "content": [
980
+ {
981
+ "type": "text",
982
+ "text": "CT-STP1 (Frankfurt)"
983
+ }
984
+ ]
985
+ }
986
+ ]
987
+ },
988
+ {
989
+ "type": "table_cell",
990
+ "attrs": {
991
+ "colspan": 1,
992
+ "rowspan": 1,
993
+ "colwidth": null
994
+ },
995
+ "content": [
996
+ {
997
+ "type": "paragraph",
998
+ "content": [
999
+ {
1000
+ "type": "text",
1001
+ "text": "Compatel Ltd"
1002
+ }
1003
+ ]
1004
+ }
1005
+ ]
1006
+ }
1007
+ ]
1008
+ },
1009
+ {
1010
+ "type": "table_row",
1011
+ "content": [
1012
+ {
1013
+ "type": "table_cell",
1014
+ "attrs": {
1015
+ "colspan": 1,
1016
+ "rowspan": 1,
1017
+ "colwidth": null
1018
+ },
1019
+ "content": [
1020
+ {
1021
+ "type": "paragraph",
1022
+ "content": [
1023
+ {
1024
+ "type": "text",
1025
+ "text": "6-238-1"
1026
+ }
1027
+ ]
1028
+ }
1029
+ ]
1030
+ },
1031
+ {
1032
+ "type": "table_cell",
1033
+ "attrs": {
1034
+ "colspan": 1,
1035
+ "rowspan": 1,
1036
+ "colwidth": null
1037
+ },
1038
+ "content": [
1039
+ {
1040
+ "type": "paragraph",
1041
+ "content": [
1042
+ {
1043
+ "type": "text",
1044
+ "text": "14193"
1045
+ }
1046
+ ]
1047
+ }
1048
+ ]
1049
+ },
1050
+ {
1051
+ "type": "table_cell",
1052
+ "attrs": {
1053
+ "colspan": 1,
1054
+ "rowspan": 1,
1055
+ "colwidth": null
1056
+ },
1057
+ "content": [
1058
+ {
1059
+ "type": "paragraph",
1060
+ "content": [
1061
+ {
1062
+ "type": "text",
1063
+ "text": "CT-STP2 (Frankfurt)"
1064
+ }
1065
+ ]
1066
+ }
1067
+ ]
1068
+ },
1069
+ {
1070
+ "type": "table_cell",
1071
+ "attrs": {
1072
+ "colspan": 1,
1073
+ "rowspan": 1,
1074
+ "colwidth": null
1075
+ },
1076
+ "content": [
1077
+ {
1078
+ "type": "paragraph",
1079
+ "content": [
1080
+ {
1081
+ "type": "text",
1082
+ "text": "Compatel Ltd"
1083
+ }
1084
+ ]
1085
+ }
1086
+ ]
1087
+ }
1088
+ ]
1089
+ },
1090
+ {
1091
+ "type": "table_row",
1092
+ "content": [
1093
+ {
1094
+ "type": "table_cell",
1095
+ "attrs": {
1096
+ "colspan": 1,
1097
+ "rowspan": 1,
1098
+ "colwidth": null
1099
+ },
1100
+ "content": [
1101
+ {
1102
+ "type": "paragraph",
1103
+ "content": [
1104
+ {
1105
+ "type": "text",
1106
+ "text": "6-238-3"
1107
+ }
1108
+ ]
1109
+ }
1110
+ ]
1111
+ },
1112
+ {
1113
+ "type": "table_cell",
1114
+ "attrs": {
1115
+ "colspan": 1,
1116
+ "rowspan": 1,
1117
+ "colwidth": null
1118
+ },
1119
+ "content": [
1120
+ {
1121
+ "type": "paragraph",
1122
+ "content": [
1123
+ {
1124
+ "type": "text",
1125
+ "text": "14195"
1126
+ }
1127
+ ]
1128
+ }
1129
+ ]
1130
+ },
1131
+ {
1132
+ "type": "table_cell",
1133
+ "attrs": {
1134
+ "colspan": 1,
1135
+ "rowspan": 1,
1136
+ "colwidth": null
1137
+ },
1138
+ "content": [
1139
+ {
1140
+ "type": "paragraph",
1141
+ "content": [
1142
+ {
1143
+ "type": "text",
1144
+ "text": "Digitel Mobile Srl (Pescara)"
1145
+ }
1146
+ ]
1147
+ }
1148
+ ]
1149
+ },
1150
+ {
1151
+ "type": "table_cell",
1152
+ "attrs": {
1153
+ "colspan": 1,
1154
+ "rowspan": 1,
1155
+ "colwidth": null
1156
+ },
1157
+ "content": [
1158
+ {
1159
+ "type": "paragraph",
1160
+ "content": [
1161
+ {
1162
+ "type": "text",
1163
+ "text": "Digitel Mobile Srl"
1164
+ }
1165
+ ]
1166
+ }
1167
+ ]
1168
+ }
1169
+ ]
1170
+ },
1171
+ {
1172
+ "type": "table_row",
1173
+ "content": [
1174
+ {
1175
+ "type": "table_cell",
1176
+ "attrs": {
1177
+ "colspan": 1,
1178
+ "rowspan": 1,
1179
+ "colwidth": null
1180
+ },
1181
+ "content": [
1182
+ {
1183
+ "type": "paragraph",
1184
+ "content": [
1185
+ {
1186
+ "type": "text",
1187
+ "text": "6-238-4"
1188
+ }
1189
+ ]
1190
+ }
1191
+ ]
1192
+ },
1193
+ {
1194
+ "type": "table_cell",
1195
+ "attrs": {
1196
+ "colspan": 1,
1197
+ "rowspan": 1,
1198
+ "colwidth": null
1199
+ },
1200
+ "content": [
1201
+ {
1202
+ "type": "paragraph",
1203
+ "content": [
1204
+ {
1205
+ "type": "text",
1206
+ "text": "14196"
1207
+ }
1208
+ ]
1209
+ }
1210
+ ]
1211
+ },
1212
+ {
1213
+ "type": "table_cell",
1214
+ "attrs": {
1215
+ "colspan": 1,
1216
+ "rowspan": 1,
1217
+ "colwidth": null
1218
+ },
1219
+ "content": [
1220
+ {
1221
+ "type": "paragraph",
1222
+ "content": [
1223
+ {
1224
+ "type": "text",
1225
+ "text": "INFOBIP GE (SMSC1) (Frankfurt)"
1226
+ }
1227
+ ]
1228
+ }
1229
+ ]
1230
+ },
1231
+ {
1232
+ "type": "table_cell",
1233
+ "attrs": {
1234
+ "colspan": 1,
1235
+ "rowspan": 1,
1236
+ "colwidth": null
1237
+ },
1238
+ "content": [
1239
+ {
1240
+ "type": "paragraph",
1241
+ "content": [
1242
+ {
1243
+ "type": "text",
1244
+ "text": "Infobip Ltd"
1245
+ }
1246
+ ]
1247
+ }
1248
+ ]
1249
+ }
1250
+ ]
1251
+ },
1252
+ {
1253
+ "type": "table_row",
1254
+ "content": [
1255
+ {
1256
+ "type": "table_cell",
1257
+ "attrs": {
1258
+ "colspan": 1,
1259
+ "rowspan": 1,
1260
+ "colwidth": null
1261
+ },
1262
+ "content": [
1263
+ {
1264
+ "type": "paragraph",
1265
+ "content": [
1266
+ {
1267
+ "type": "text",
1268
+ "text": "6-238-5"
1269
+ }
1270
+ ]
1271
+ }
1272
+ ]
1273
+ },
1274
+ {
1275
+ "type": "table_cell",
1276
+ "attrs": {
1277
+ "colspan": 1,
1278
+ "rowspan": 1,
1279
+ "colwidth": null
1280
+ },
1281
+ "content": [
1282
+ {
1283
+ "type": "paragraph",
1284
+ "content": [
1285
+ {
1286
+ "type": "text",
1287
+ "text": "14197"
1288
+ }
1289
+ ]
1290
+ }
1291
+ ]
1292
+ },
1293
+ {
1294
+ "type": "table_cell",
1295
+ "attrs": {
1296
+ "colspan": 1,
1297
+ "rowspan": 1,
1298
+ "colwidth": null
1299
+ },
1300
+ "content": [
1301
+ {
1302
+ "type": "paragraph",
1303
+ "content": [
1304
+ {
1305
+ "type": "text",
1306
+ "text": "INFOBIP GE (SMSC2) (Frankfurt)"
1307
+ }
1308
+ ]
1309
+ }
1310
+ ]
1311
+ },
1312
+ {
1313
+ "type": "table_cell",
1314
+ "attrs": {
1315
+ "colspan": 1,
1316
+ "rowspan": 1,
1317
+ "colwidth": null
1318
+ },
1319
+ "content": [
1320
+ {
1321
+ "type": "paragraph",
1322
+ "content": [
1323
+ {
1324
+ "type": "text",
1325
+ "text": "Infobip Ltd"
1326
+ }
1327
+ ]
1328
+ }
1329
+ ]
1330
+ }
1331
+ ]
1332
+ },
1333
+ {
1334
+ "type": "table_row",
1335
+ "content": [
1336
+ {
1337
+ "type": "table_cell",
1338
+ "attrs": {
1339
+ "colspan": 1,
1340
+ "rowspan": 1,
1341
+ "colwidth": null
1342
+ },
1343
+ "content": [
1344
+ {
1345
+ "type": "paragraph",
1346
+ "content": [
1347
+ {
1348
+ "type": "text",
1349
+ "text": "6-238-6"
1350
+ }
1351
+ ]
1352
+ }
1353
+ ]
1354
+ },
1355
+ {
1356
+ "type": "table_cell",
1357
+ "attrs": {
1358
+ "colspan": 1,
1359
+ "rowspan": 1,
1360
+ "colwidth": null
1361
+ },
1362
+ "content": [
1363
+ {
1364
+ "type": "paragraph",
1365
+ "content": [
1366
+ {
1367
+ "type": "text",
1368
+ "text": "14198"
1369
+ }
1370
+ ]
1371
+ }
1372
+ ]
1373
+ },
1374
+ {
1375
+ "type": "table_cell",
1376
+ "attrs": {
1377
+ "colspan": 1,
1378
+ "rowspan": 1,
1379
+ "colwidth": null
1380
+ },
1381
+ "content": [
1382
+ {
1383
+ "type": "paragraph",
1384
+ "content": [
1385
+ {
1386
+ "type": "text",
1387
+ "text": "INFOBIP GE (SMSC3) (Frankfurt)"
1388
+ }
1389
+ ]
1390
+ }
1391
+ ]
1392
+ },
1393
+ {
1394
+ "type": "table_cell",
1395
+ "attrs": {
1396
+ "colspan": 1,
1397
+ "rowspan": 1,
1398
+ "colwidth": null
1399
+ },
1400
+ "content": [
1401
+ {
1402
+ "type": "paragraph",
1403
+ "content": [
1404
+ {
1405
+ "type": "text",
1406
+ "text": "Infobip Ltd"
1407
+ }
1408
+ ]
1409
+ }
1410
+ ]
1411
+ }
1412
+ ]
1413
+ },
1414
+ {
1415
+ "type": "table_row",
1416
+ "content": [
1417
+ {
1418
+ "type": "table_cell",
1419
+ "attrs": {
1420
+ "colspan": 1,
1421
+ "rowspan": 1,
1422
+ "colwidth": null
1423
+ },
1424
+ "content": [
1425
+ {
1426
+ "type": "paragraph",
1427
+ "content": [
1428
+ {
1429
+ "type": "text",
1430
+ "text": "6-238-7"
1431
+ }
1432
+ ]
1433
+ }
1434
+ ]
1435
+ },
1436
+ {
1437
+ "type": "table_cell",
1438
+ "attrs": {
1439
+ "colspan": 1,
1440
+ "rowspan": 1,
1441
+ "colwidth": null
1442
+ },
1443
+ "content": [
1444
+ {
1445
+ "type": "paragraph",
1446
+ "content": [
1447
+ {
1448
+ "type": "text",
1449
+ "text": "14199"
1450
+ }
1451
+ ]
1452
+ }
1453
+ ]
1454
+ },
1455
+ {
1456
+ "type": "table_cell",
1457
+ "attrs": {
1458
+ "colspan": 1,
1459
+ "rowspan": 1,
1460
+ "colwidth": null
1461
+ },
1462
+ "content": [
1463
+ {
1464
+ "type": "paragraph",
1465
+ "content": [
1466
+ {
1467
+ "type": "text",
1468
+ "text": "INFOBIP GE (SMSC4) (Frankfurt)"
1469
+ }
1470
+ ]
1471
+ }
1472
+ ]
1473
+ },
1474
+ {
1475
+ "type": "table_cell",
1476
+ "attrs": {
1477
+ "colspan": 1,
1478
+ "rowspan": 1,
1479
+ "colwidth": null
1480
+ },
1481
+ "content": [
1482
+ {
1483
+ "type": "paragraph",
1484
+ "content": [
1485
+ {
1486
+ "type": "text",
1487
+ "text": "Infobip Ltd"
1488
+ }
1489
+ ]
1490
+ }
1491
+ ]
1492
+ }
1493
+ ]
1494
+ }
1495
+ ]
1496
+ },
1497
+ {
1498
+ "type": "paragraph",
1499
+ "content": [
1500
+ {
1501
+ "type": "text",
1502
+ "text": " "
1503
+ }
1504
+ ]
1505
+ },
1506
+ {
1507
+ "type": "paragraph",
1508
+ "content": [
1509
+ {
1510
+ "type": "text",
1511
+ "text": "ISPC:      International Signalling Point Codes."
1512
+ }
1513
+ ]
1514
+ },
1515
+ {
1516
+ "type": "paragraph",
1517
+ "content": [
1518
+ {
1519
+ "type": "text",
1520
+ "text": "              Codes de points sémaphores internationaux (CPSI)."
1521
+ }
1522
+ ]
1523
+ },
1524
+ {
1525
+ "type": "paragraph",
1526
+ "content": [
1527
+ {
1528
+ "type": "text",
1529
+ "text": "              Códigos de puntos de señalización internacional (CPSI)."
1530
+ }
1531
+ ]
1532
+ }
1533
+ ]
1534
+ }