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,3519 @@
1
+ ---
2
+ type: doc
3
+ content:
4
+ - type: paragraph
5
+ content:
6
+ - type: text
7
+ marks:
8
+ - type: strong
9
+ text: P  25    Jordan    LIR
10
+ - type: paragraph
11
+ content:
12
+ - type: text
13
+ marks:
14
+ - type: strong
15
+ text: 'COL  2  REP         '
16
+ - type: text
17
+ text: Jordan Telecom Group, Amman
18
+ - type: paragraph
19
+ content:
20
+ - type: text
21
+ marks:
22
+ - type: em
23
+ - type: strong
24
+ text: "              by             "
25
+ - type: text
26
+ marks:
27
+ - type: strong
28
+ text: Unitel
29
+ - type: paragraph
30
+ content:
31
+ - type: text
32
+ text: " "
33
+ - type: table
34
+ content:
35
+ - type: table_row
36
+ content:
37
+ - type: table_cell
38
+ attrs:
39
+ colspan: 1
40
+ rowspan: 1
41
+ colwidth:
42
+ content:
43
+ - type: paragraph
44
+ content:
45
+ - type: text
46
+ text: Country/
47
+ - type: hard_break
48
+ - type: text
49
+ text: geographical Area
50
+ - type: table_cell
51
+ attrs:
52
+ colspan: 1
53
+ rowspan: 1
54
+ colwidth:
55
+ content:
56
+ - type: paragraph
57
+ content:
58
+ - type: text
59
+ text: Network
60
+ - type: hard_break
61
+ - type: text
62
+ text: "(Administration/"
63
+ - type: hard_break
64
+ - type: text
65
+ text: ROA)
66
+ - type: table_cell
67
+ attrs:
68
+ colspan: 1
69
+ rowspan: 1
70
+ colwidth:
71
+ content:
72
+ - type: paragraph
73
+ content:
74
+ - type: text
75
+ text: Destination Indicator (DI)
76
+ - type: hard_break
77
+ - type: text
78
+ text: "(First 2 letters ="
79
+ - type: hard_break
80
+ - type: text
81
+ text: Telegram Network
82
+ - type: hard_break
83
+ - type: text
84
+ text: Code)
85
+ - type: table_cell
86
+ attrs:
87
+ colspan: 1
88
+ rowspan: 1
89
+ colwidth:
90
+ content:
91
+ - type: paragraph
92
+ content:
93
+ - type: text
94
+ text: Name of
95
+ - type: hard_break
96
+ - type: text
97
+ text: Telegraph Office
98
+ - type: table_cell
99
+ attrs:
100
+ colspan: 1
101
+ rowspan: 1
102
+ colwidth:
103
+ content:
104
+ - type: paragraph
105
+ content:
106
+ - type: text
107
+ text: DI Assigned to
108
+ - type: hard_break
109
+ - type: text
110
+ text: Telegraph Office
111
+ - type: hard_break
112
+ - type: text
113
+ text: "(Third and fourth letters = Office Code)"
114
+ - type: table_row
115
+ content:
116
+ - type: table_cell
117
+ attrs:
118
+ colspan: 1
119
+ rowspan: 1
120
+ colwidth:
121
+ content:
122
+ - type: paragraph
123
+ content:
124
+ - type: text
125
+ text: '1'
126
+ - type: table_cell
127
+ attrs:
128
+ colspan: 1
129
+ rowspan: 1
130
+ colwidth:
131
+ content:
132
+ - type: paragraph
133
+ content:
134
+ - type: text
135
+ text: '2'
136
+ - type: table_cell
137
+ attrs:
138
+ colspan: 1
139
+ rowspan: 1
140
+ colwidth:
141
+ content:
142
+ - type: paragraph
143
+ content:
144
+ - type: text
145
+ text: '3'
146
+ - type: table_cell
147
+ attrs:
148
+ colspan: 1
149
+ rowspan: 1
150
+ colwidth:
151
+ content:
152
+ - type: paragraph
153
+ content:
154
+ - type: text
155
+ text: '4'
156
+ - type: table_cell
157
+ attrs:
158
+ colspan: 1
159
+ rowspan: 1
160
+ colwidth:
161
+ content:
162
+ - type: paragraph
163
+ content:
164
+ - type: text
165
+ text: '5'
166
+ - type: table_row
167
+ content:
168
+ - type: table_cell
169
+ attrs:
170
+ colspan: 1
171
+ rowspan: 1
172
+ colwidth:
173
+ content:
174
+ - type: paragraph
175
+ content:
176
+ - type: text
177
+ marks:
178
+ - type: strong
179
+ text: JORDANIE
180
+ - type: table_cell
181
+ attrs:
182
+ colspan: 1
183
+ rowspan: 1
184
+ colwidth:
185
+ content:
186
+ - type: paragraph
187
+ content:
188
+ - type: text
189
+ text: Unitel
190
+ - type: table_cell
191
+ attrs:
192
+ colspan: 1
193
+ rowspan: 1
194
+ colwidth:
195
+ content:
196
+ - type: paragraph
197
+ content:
198
+ - type: text
199
+ text: JO- -
200
+ - type: table_cell
201
+ attrs:
202
+ colspan: 1
203
+ rowspan: 1
204
+ colwidth:
205
+ content:
206
+ - type: paragraph
207
+ content:
208
+ - type: text
209
+ text: " "
210
+ - type: table_cell
211
+ attrs:
212
+ colspan: 1
213
+ rowspan: 1
214
+ colwidth:
215
+ content:
216
+ - type: paragraph
217
+ content:
218
+ - type: text
219
+ text: " "
220
+ - type: table_row
221
+ content:
222
+ - type: table_cell
223
+ attrs:
224
+ colspan: 1
225
+ rowspan: 1
226
+ colwidth:
227
+ content:
228
+ - type: paragraph
229
+ content:
230
+ - type: text
231
+ marks:
232
+ - type: strong
233
+ text: JORDAN
234
+ - type: table_cell
235
+ attrs:
236
+ colspan: 1
237
+ rowspan: 1
238
+ colwidth:
239
+ content:
240
+ - type: paragraph
241
+ content:
242
+ - type: text
243
+ text: " "
244
+ - type: table_cell
245
+ attrs:
246
+ colspan: 1
247
+ rowspan: 1
248
+ colwidth:
249
+ content:
250
+ - type: paragraph
251
+ content:
252
+ - type: text
253
+ text: " "
254
+ - type: table_cell
255
+ attrs:
256
+ colspan: 1
257
+ rowspan: 1
258
+ colwidth:
259
+ content:
260
+ - type: paragraph
261
+ content:
262
+ - type: text
263
+ text: Amman
264
+ - type: table_cell
265
+ attrs:
266
+ colspan: 1
267
+ rowspan: 1
268
+ colwidth:
269
+ content:
270
+ - type: paragraph
271
+ content:
272
+ - type: text
273
+ text: JOAM
274
+ - type: table_row
275
+ content:
276
+ - type: table_cell
277
+ attrs:
278
+ colspan: 1
279
+ rowspan: 1
280
+ colwidth:
281
+ content:
282
+ - type: paragraph
283
+ content:
284
+ - type: text
285
+ marks:
286
+ - type: strong
287
+ text: JORDANIA
288
+ - type: table_cell
289
+ attrs:
290
+ colspan: 1
291
+ rowspan: 1
292
+ colwidth:
293
+ content:
294
+ - type: paragraph
295
+ content:
296
+ - type: text
297
+ text: " "
298
+ - type: table_cell
299
+ attrs:
300
+ colspan: 1
301
+ rowspan: 1
302
+ colwidth:
303
+ content:
304
+ - type: paragraph
305
+ content:
306
+ - type: text
307
+ text: " "
308
+ - type: table_cell
309
+ attrs:
310
+ colspan: 1
311
+ rowspan: 1
312
+ colwidth:
313
+ content:
314
+ - type: paragraph
315
+ content:
316
+ - type: text
317
+ text: Jerusalem Jordan
318
+ - type: table_cell
319
+ attrs:
320
+ colspan: 1
321
+ rowspan: 1
322
+ colwidth:
323
+ content:
324
+ - type: paragraph
325
+ content:
326
+ - type: text
327
+ text: JOJM
328
+ - type: table_row
329
+ content:
330
+ - type: table_cell
331
+ attrs:
332
+ colspan: 1
333
+ rowspan: 1
334
+ colwidth:
335
+ content:
336
+ - type: paragraph
337
+ content:
338
+ - type: text
339
+ text: " "
340
+ - type: table_cell
341
+ attrs:
342
+ colspan: 1
343
+ rowspan: 1
344
+ colwidth:
345
+ content:
346
+ - type: paragraph
347
+ content:
348
+ - type: text
349
+ text: " "
350
+ - type: table_cell
351
+ attrs:
352
+ colspan: 1
353
+ rowspan: 1
354
+ colwidth:
355
+ content:
356
+ - type: paragraph
357
+ content:
358
+ - type: text
359
+ text: " "
360
+ - type: table_cell
361
+ attrs:
362
+ colspan: 1
363
+ rowspan: 1
364
+ colwidth:
365
+ content:
366
+ - type: paragraph
367
+ content:
368
+ - type: text
369
+ text: All others
370
+ - type: table_cell
371
+ attrs:
372
+ colspan: 1
373
+ rowspan: 1
374
+ colwidth:
375
+ content:
376
+ - type: paragraph
377
+ content:
378
+ - type: text
379
+ text: JOAX
380
+ - type: paragraph
381
+ content:
382
+ - type: text
383
+ text: " "
384
+ - type: paragraph
385
+ content:
386
+ - type: text
387
+ text: ____________
388
+ - type: paragraph
389
+ content:
390
+ - type: text
391
+ text: "*         See Note published in present ITU Operational Bulletin No. 1000
392
+ of 15.III.2012, page 5."
393
+ - type: paragraph
394
+ content:
395
+ - type: text
396
+ text: " "
397
+ - type: table
398
+ content:
399
+ - type: table_row
400
+ content:
401
+ - type: table_cell
402
+ attrs:
403
+ colspan: 2
404
+ rowspan: 1
405
+ colwidth:
406
+ content:
407
+ - type: paragraph
408
+ content:
409
+ - type: text
410
+ text: " "
411
+ - type: table_cell
412
+ attrs:
413
+ colspan: 2
414
+ rowspan: 1
415
+ colwidth:
416
+ content:
417
+ - type: paragraph
418
+ content:
419
+ - type: text
420
+ marks:
421
+ - type: strong
422
+ text: INTERNATIONAL TELECOMMUNICATION UNION
423
+ - type: hard_break
424
+ marks:
425
+ - type: strong
426
+ - type: text
427
+ marks:
428
+ - type: strong
429
+ text: UNIVERSAL POSTAL UNION
430
+ - type: paragraph
431
+ content:
432
+ - type: text
433
+ marks:
434
+ - type: strong
435
+ text: " "
436
+ - type: table_cell
437
+ attrs:
438
+ colspan: 3
439
+ rowspan: 1
440
+ colwidth:
441
+ content:
442
+ - type: paragraph
443
+ content:
444
+ - type: text
445
+ text: " "
446
+ - type: table_row
447
+ content:
448
+ - type: table_cell
449
+ attrs:
450
+ colspan: 3
451
+ rowspan: 1
452
+ colwidth:
453
+ content:
454
+ - type: paragraph
455
+ content:
456
+ - type: text
457
+ text: " "
458
+ - type: table_cell
459
+ attrs:
460
+ colspan: 2
461
+ rowspan: 1
462
+ colwidth:
463
+ content:
464
+ - type: paragraph
465
+ content:
466
+ - type: text
467
+ text: " "
468
+ - type: table_cell
469
+ attrs:
470
+ colspan: 2
471
+ rowspan: 1
472
+ colwidth:
473
+ content:
474
+ - type: paragraph
475
+ content:
476
+ - type: text
477
+ text: " "
478
+ - type: table_row
479
+ content:
480
+ - type: table_cell
481
+ attrs:
482
+ colspan: 1
483
+ rowspan: 1
484
+ colwidth:
485
+ content:
486
+ - type: paragraph
487
+ content:
488
+ - type: text
489
+ text: " "
490
+ - type: table_cell
491
+ attrs:
492
+ colspan: 5
493
+ rowspan: 1
494
+ colwidth:
495
+ content:
496
+ - type: paragraph
497
+ content:
498
+ - type: text
499
+ marks:
500
+ - type: strong
501
+ text: BUREAUFAX TABLE
502
+ - type: paragraph
503
+ content:
504
+ - type: text
505
+ text: International public facsimile service between public bureaux
506
+ - type: paragraph
507
+ content:
508
+ - type: text
509
+ text: 'Electronic version: '
510
+ - type: text
511
+ marks:
512
+ - type: link
513
+ attrs:
514
+ href: http://www.itu.int/itu-t/bureaufax
515
+ title:
516
+ text: http://www.itu.int/itu-t/bureaufax
517
+ - type: table_cell
518
+ attrs:
519
+ colspan: 1
520
+ rowspan: 1
521
+ colwidth:
522
+ content:
523
+ - type: paragraph
524
+ content:
525
+ - type: text
526
+ text: " "
527
+ - type: table_row
528
+ content:
529
+ - type: table_cell
530
+ attrs:
531
+ colspan: 1
532
+ rowspan: 1
533
+ colwidth:
534
+ content:
535
+ - type: paragraph
536
+ - type: table_cell
537
+ attrs:
538
+ colspan: 1
539
+ rowspan: 1
540
+ colwidth:
541
+ content:
542
+ - type: paragraph
543
+ - type: table_cell
544
+ attrs:
545
+ colspan: 1
546
+ rowspan: 1
547
+ colwidth:
548
+ content:
549
+ - type: paragraph
550
+ - type: table_cell
551
+ attrs:
552
+ colspan: 1
553
+ rowspan: 1
554
+ colwidth:
555
+ content:
556
+ - type: paragraph
557
+ - type: table_cell
558
+ attrs:
559
+ colspan: 1
560
+ rowspan: 1
561
+ colwidth:
562
+ content:
563
+ - type: paragraph
564
+ - type: table_cell
565
+ attrs:
566
+ colspan: 1
567
+ rowspan: 1
568
+ colwidth:
569
+ content:
570
+ - type: paragraph
571
+ - type: table_cell
572
+ attrs:
573
+ colspan: 1
574
+ rowspan: 1
575
+ colwidth:
576
+ content:
577
+ - type: paragraph
578
+ - type: paragraph
579
+ content:
580
+ - type: text
581
+ text: "(ITU-T Rec. F.170)"
582
+ - type: paragraph
583
+ content:
584
+ - type: text
585
+ text: "•   Under the heading "
586
+ - type: text
587
+ marks:
588
+ - type: strong
589
+ text: Data 7:  Pakistan - Switzerland
590
+ - type: hard_break
591
+ marks:
592
+ - type: strong
593
+ - type: text
594
+ text: INformation concerning
595
+ - type: text
596
+ marks:
597
+ - type: strong
598
+ text: " SEYCHELLES "
599
+ - type: text
600
+ text: 'is '
601
+ - type: text
602
+ marks:
603
+ - type: strong
604
+ text: UPDATED
605
+ - type: text
606
+ text: ":"
607
+ - type: paragraph
608
+ content:
609
+ - type: text
610
+ text: " "
611
+ - type: table
612
+ content:
613
+ - type: table_row
614
+ content:
615
+ - type: table_cell
616
+ attrs:
617
+ colspan: 1
618
+ rowspan: 1
619
+ colwidth:
620
+ content:
621
+ - type: paragraph
622
+ content:
623
+ - type: text
624
+ marks:
625
+ - type: strong
626
+ text: Derniere modification
627
+ - type: paragraph
628
+ content:
629
+ - type: text
630
+ marks:
631
+ - type: strong
632
+ text: 15.III.2012
633
+ - type: table_cell
634
+ attrs:
635
+ colspan: 1
636
+ rowspan: 1
637
+ colwidth:
638
+ content:
639
+ - type: paragraph
640
+ content:
641
+ - type: text
642
+ marks:
643
+ - type: strong
644
+ text: Last modification 
645
+ - type: paragraph
646
+ content:
647
+ - type: text
648
+ marks:
649
+ - type: strong
650
+ text: 15.III.2012
651
+ - type: table_cell
652
+ attrs:
653
+ colspan: 1
654
+ rowspan: 1
655
+ colwidth:
656
+ content:
657
+ - type: paragraph
658
+ content:
659
+ - type: text
660
+ marks:
661
+ - type: strong
662
+ text: Ultima modificación
663
+ - type: paragraph
664
+ content:
665
+ - type: text
666
+ marks:
667
+ - type: strong
668
+ text: 15.III.2012 
669
+ - type: paragraph
670
+ content:
671
+ - type: text
672
+ text: " "
673
+ - type: table
674
+ content:
675
+ - type: table_row
676
+ content:
677
+ - type: table_cell
678
+ attrs:
679
+ colspan: 2
680
+ rowspan: 1
681
+ colwidth:
682
+ content:
683
+ - type: paragraph
684
+ content:
685
+ - type: text
686
+ marks:
687
+ - type: strong
688
+ text: seychelles (c&w) 1)
689
+ - type: table_cell
690
+ attrs:
691
+ colspan: 3
692
+ rowspan: 1
693
+ colwidth:
694
+ content:
695
+ - type: paragraph
696
+ content:
697
+ - type: text
698
+ marks:
699
+ - type: strong
700
+ text: seychelles (c&w) 1)
701
+ - type: table_cell
702
+ attrs:
703
+ colspan: 3
704
+ rowspan: 1
705
+ colwidth:
706
+ content:
707
+ - type: paragraph
708
+ content:
709
+ - type: text
710
+ marks:
711
+ - type: strong
712
+ text: seychelles (c&w) 1)
713
+ - type: table_cell
714
+ attrs:
715
+ colspan: 1
716
+ rowspan: 1
717
+ colwidth:
718
+ content:
719
+ - type: paragraph
720
+ content:
721
+ - type: text
722
+ text: " "
723
+ - type: table_row
724
+ content:
725
+ - type: table_cell
726
+ attrs:
727
+ colspan: 2
728
+ rowspan: 1
729
+ colwidth:
730
+ content:
731
+ - type: paragraph
732
+ content:
733
+ - type: text
734
+ marks:
735
+ - type: strong
736
+ text: " "
737
+ - type: table_cell
738
+ attrs:
739
+ colspan: 3
740
+ rowspan: 1
741
+ colwidth:
742
+ content:
743
+ - type: paragraph
744
+ content:
745
+ - type: text
746
+ marks:
747
+ - type: strong
748
+ text: " "
749
+ - type: table_cell
750
+ attrs:
751
+ colspan: 3
752
+ rowspan: 1
753
+ colwidth:
754
+ content:
755
+ - type: paragraph
756
+ content:
757
+ - type: text
758
+ marks:
759
+ - type: strong
760
+ text: " "
761
+ - type: table_cell
762
+ attrs:
763
+ colspan: 1
764
+ rowspan: 1
765
+ colwidth:
766
+ content:
767
+ - type: paragraph
768
+ content:
769
+ - type: text
770
+ text: " "
771
+ - type: table_row
772
+ content:
773
+ - type: table_cell
774
+ attrs:
775
+ colspan: 1
776
+ rowspan: 1
777
+ colwidth:
778
+ content:
779
+ - type: paragraph
780
+ content:
781
+ - type: text
782
+ marks:
783
+ - type: strong
784
+ text: er
785
+ - type: hard_break
786
+ marks:
787
+ - type: strong
788
+ - type: text
789
+ marks:
790
+ - type: strong
791
+ text: 'CONTACT/CONTACTO:'
792
+ - type: table_cell
793
+ attrs:
794
+ colspan: 3
795
+ rowspan: 1
796
+ colwidth:
797
+ content:
798
+ - type: paragraph
799
+ content:
800
+ - type: text
801
+ text: " "
802
+ - type: table_cell
803
+ attrs:
804
+ colspan: 3
805
+ rowspan: 1
806
+ colwidth:
807
+ content:
808
+ - type: paragraph
809
+ content:
810
+ - type: text
811
+ text: " "
812
+ - type: table_cell
813
+ attrs:
814
+ colspan: 2
815
+ rowspan: 1
816
+ colwidth:
817
+ content:
818
+ - type: paragraph
819
+ content:
820
+ - type: text
821
+ text: " "
822
+ - type: table_row
823
+ content:
824
+ - type: table_cell
825
+ attrs:
826
+ colspan: 3
827
+ rowspan: 1
828
+ colwidth:
829
+ content:
830
+ - type: paragraph
831
+ content:
832
+ - type: text
833
+ text: " "
834
+ - type: table_cell
835
+ attrs:
836
+ colspan: 3
837
+ rowspan: 1
838
+ colwidth:
839
+ content:
840
+ - type: paragraph
841
+ content:
842
+ - type: text
843
+ text: " "
844
+ - type: table_cell
845
+ attrs:
846
+ colspan: 3
847
+ rowspan: 1
848
+ colwidth:
849
+ content:
850
+ - type: paragraph
851
+ content:
852
+ - type: text
853
+ text: " "
854
+ - type: table_row
855
+ content:
856
+ - type: table_cell
857
+ attrs:
858
+ colspan: 3
859
+ rowspan: 1
860
+ colwidth:
861
+ content:
862
+ - type: paragraph
863
+ content:
864
+ - type: text
865
+ text: Cable & Wireless (Seychelles) Ltd.
866
+ - type: paragraph
867
+ content:
868
+ - type: text
869
+ text: P.O. Box 4
870
+ - type: paragraph
871
+ content:
872
+ - type: text
873
+ text: VICTORIA MAHE
874
+ - type: paragraph
875
+ content:
876
+ - type: text
877
+ text: Seychelles
878
+ - type: table_cell
879
+ attrs:
880
+ colspan: 3
881
+ rowspan: 1
882
+ colwidth:
883
+ content:
884
+ - type: paragraph
885
+ content:
886
+ - type: text
887
+ text: TG             Cablewire
888
+ - type: paragraph
889
+ content:
890
+ - type: text
891
+ text: "                  MaheSeychelles"
892
+ - type: paragraph
893
+ content:
894
+ - type: text
895
+ text: TLX            2210 cwexec sz
896
+ - type: table_cell
897
+ attrs:
898
+ colspan: 3
899
+ rowspan: 1
900
+ colwidth:
901
+ content:
902
+ - type: paragraph
903
+ content:
904
+ - type: text
905
+ text: FAX           +248 432 2777
906
+ - type: paragraph
907
+ content:
908
+ - type: text
909
+ text: GR             3/2
910
+ - type: paragraph
911
+ content:
912
+ - type: text
913
+ text: TF              +248 432 2221
914
+ - type: paragraph
915
+ content:
916
+ - type: text
917
+ text: " "
918
+ - type: table_row
919
+ content:
920
+ - type: table_cell
921
+ attrs:
922
+ colspan: 1
923
+ rowspan: 1
924
+ colwidth:
925
+ content:
926
+ - type: paragraph
927
+ - type: table_cell
928
+ attrs:
929
+ colspan: 1
930
+ rowspan: 1
931
+ colwidth:
932
+ content:
933
+ - type: paragraph
934
+ - type: table_cell
935
+ attrs:
936
+ colspan: 1
937
+ rowspan: 1
938
+ colwidth:
939
+ content:
940
+ - type: paragraph
941
+ - type: table_cell
942
+ attrs:
943
+ colspan: 1
944
+ rowspan: 1
945
+ colwidth:
946
+ content:
947
+ - type: paragraph
948
+ - type: table_cell
949
+ attrs:
950
+ colspan: 1
951
+ rowspan: 1
952
+ colwidth:
953
+ content:
954
+ - type: paragraph
955
+ - type: table_cell
956
+ attrs:
957
+ colspan: 1
958
+ rowspan: 1
959
+ colwidth:
960
+ content:
961
+ - type: paragraph
962
+ - type: table_cell
963
+ attrs:
964
+ colspan: 1
965
+ rowspan: 1
966
+ colwidth:
967
+ content:
968
+ - type: paragraph
969
+ - type: table_cell
970
+ attrs:
971
+ colspan: 1
972
+ rowspan: 1
973
+ colwidth:
974
+ content:
975
+ - type: paragraph
976
+ - type: table_cell
977
+ attrs:
978
+ colspan: 1
979
+ rowspan: 1
980
+ colwidth:
981
+ content:
982
+ - type: paragraph
983
+ - type: paragraph
984
+ content:
985
+ - type: text
986
+ text: " "
987
+ - type: table
988
+ content:
989
+ - type: table_row
990
+ content:
991
+ - type: table_cell
992
+ attrs:
993
+ colspan: 1
994
+ rowspan: 1
995
+ colwidth:
996
+ content:
997
+ - type: paragraph
998
+ content:
999
+ - type: text
1000
+ marks:
1001
+ - type: strong
1002
+ text: PARTIE II
1003
+ - type: table_cell
1004
+ attrs:
1005
+ colspan: 1
1006
+ rowspan: 1
1007
+ colwidth:
1008
+ content:
1009
+ - type: paragraph
1010
+ content:
1011
+ - type: text
1012
+ marks:
1013
+ - type: strong
1014
+ text: PART II
1015
+ - type: table_cell
1016
+ attrs:
1017
+ colspan: 1
1018
+ rowspan: 1
1019
+ colwidth:
1020
+ content:
1021
+ - type: paragraph
1022
+ content:
1023
+ - type: text
1024
+ marks:
1025
+ - type: strong
1026
+ text: PARTE II
1027
+ - type: paragraph
1028
+ content:
1029
+ - type: text
1030
+ text: " "
1031
+ - type: table
1032
+ content:
1033
+ - type: table_row
1034
+ content:
1035
+ - type: table_cell
1036
+ attrs:
1037
+ colspan: 1
1038
+ rowspan: 1
1039
+ colwidth:
1040
+ content:
1041
+ - type: paragraph
1042
+ content:
1043
+ - type: text
1044
+ text: " "
1045
+ - type: table_cell
1046
+ attrs:
1047
+ colspan: 1
1048
+ rowspan: 1
1049
+ colwidth:
1050
+ content:
1051
+ - type: paragraph
1052
+ content:
1053
+ - type: text
1054
+ text: A
1055
+ - type: table_cell
1056
+ attrs:
1057
+ colspan: 1
1058
+ rowspan: 1
1059
+ colwidth:
1060
+ content:
1061
+ - type: paragraph
1062
+ content:
1063
+ - type: text
1064
+ text: B
1065
+ - type: table_cell
1066
+ attrs:
1067
+ colspan: 1
1068
+ rowspan: 1
1069
+ colwidth:
1070
+ content:
1071
+ - type: paragraph
1072
+ content:
1073
+ - type: text
1074
+ text: C
1075
+ - type: table_cell
1076
+ attrs:
1077
+ colspan: 1
1078
+ rowspan: 1
1079
+ colwidth:
1080
+ content:
1081
+ - type: paragraph
1082
+ content:
1083
+ - type: text
1084
+ text: D
1085
+ - type: table_cell
1086
+ attrs:
1087
+ colspan: 1
1088
+ rowspan: 1
1089
+ colwidth:
1090
+ content:
1091
+ - type: paragraph
1092
+ content:
1093
+ - type: text
1094
+ text: E
1095
+ - type: table_cell
1096
+ attrs:
1097
+ colspan: 1
1098
+ rowspan: 1
1099
+ colwidth:
1100
+ content:
1101
+ - type: paragraph
1102
+ content:
1103
+ - type: text
1104
+ text: F
1105
+ - type: table_cell
1106
+ attrs:
1107
+ colspan: 1
1108
+ rowspan: 1
1109
+ colwidth:
1110
+ content:
1111
+ - type: paragraph
1112
+ content:
1113
+ - type: text
1114
+ text: G
1115
+ - type: table_cell
1116
+ attrs:
1117
+ colspan: 1
1118
+ rowspan: 1
1119
+ colwidth:
1120
+ content:
1121
+ - type: paragraph
1122
+ content:
1123
+ - type: text
1124
+ text: T
1125
+ - type: table_row
1126
+ content:
1127
+ - type: table_cell
1128
+ attrs:
1129
+ colspan: 1
1130
+ rowspan: 1
1131
+ colwidth:
1132
+ content:
1133
+ - type: paragraph
1134
+ content:
1135
+ - type: text
1136
+ text: " "
1137
+ - type: table_cell
1138
+ attrs:
1139
+ colspan: 1
1140
+ rowspan: 1
1141
+ colwidth:
1142
+ content:
1143
+ - type: paragraph
1144
+ content:
1145
+ - type: text
1146
+ text: " "
1147
+ - type: table_cell
1148
+ attrs:
1149
+ colspan: 1
1150
+ rowspan: 1
1151
+ colwidth:
1152
+ content:
1153
+ - type: paragraph
1154
+ content:
1155
+ - type: text
1156
+ text: " "
1157
+ - type: table_cell
1158
+ attrs:
1159
+ colspan: 1
1160
+ rowspan: 1
1161
+ colwidth:
1162
+ content:
1163
+ - type: paragraph
1164
+ content:
1165
+ - type: text
1166
+ text: " "
1167
+ - type: table_cell
1168
+ attrs:
1169
+ colspan: 1
1170
+ rowspan: 1
1171
+ colwidth:
1172
+ content:
1173
+ - type: paragraph
1174
+ content:
1175
+ - type: text
1176
+ text: " "
1177
+ - type: table_cell
1178
+ attrs:
1179
+ colspan: 1
1180
+ rowspan: 1
1181
+ colwidth:
1182
+ content:
1183
+ - type: paragraph
1184
+ content:
1185
+ - type: text
1186
+ text: " "
1187
+ - type: table_cell
1188
+ attrs:
1189
+ colspan: 1
1190
+ rowspan: 1
1191
+ colwidth:
1192
+ content:
1193
+ - type: paragraph
1194
+ content:
1195
+ - type: text
1196
+ text: " "
1197
+ - type: table_cell
1198
+ attrs:
1199
+ colspan: 1
1200
+ rowspan: 1
1201
+ colwidth:
1202
+ content:
1203
+ - type: paragraph
1204
+ content:
1205
+ - type: text
1206
+ text: " "
1207
+ - type: table_cell
1208
+ attrs:
1209
+ colspan: 1
1210
+ rowspan: 1
1211
+ colwidth:
1212
+ content:
1213
+ - type: paragraph
1214
+ content:
1215
+ - type: text
1216
+ text: " "
1217
+ - type: table_row
1218
+ content:
1219
+ - type: table_cell
1220
+ attrs:
1221
+ colspan: 1
1222
+ rowspan: 1
1223
+ colwidth:
1224
+ content:
1225
+ - type: paragraph
1226
+ content:
1227
+ - type: text
1228
+ text: " "
1229
+ - type: table_cell
1230
+ attrs:
1231
+ colspan: 1
1232
+ rowspan: 1
1233
+ colwidth:
1234
+ content:
1235
+ - type: paragraph
1236
+ content:
1237
+ - type: text
1238
+ text: x
1239
+ - type: table_cell
1240
+ attrs:
1241
+ colspan: 1
1242
+ rowspan: 1
1243
+ colwidth:
1244
+ content:
1245
+ - type: paragraph
1246
+ content:
1247
+ - type: text
1248
+ text: " "
1249
+ - type: table_cell
1250
+ attrs:
1251
+ colspan: 1
1252
+ rowspan: 1
1253
+ colwidth:
1254
+ content:
1255
+ - type: paragraph
1256
+ content:
1257
+ - type: text
1258
+ text: " "
1259
+ - type: table_cell
1260
+ attrs:
1261
+ colspan: 1
1262
+ rowspan: 1
1263
+ colwidth:
1264
+ content:
1265
+ - type: paragraph
1266
+ content:
1267
+ - type: text
1268
+ text: x
1269
+ - type: table_cell
1270
+ attrs:
1271
+ colspan: 1
1272
+ rowspan: 1
1273
+ colwidth:
1274
+ content:
1275
+ - type: paragraph
1276
+ content:
1277
+ - type: text
1278
+ text: x
1279
+ - type: table_cell
1280
+ attrs:
1281
+ colspan: 1
1282
+ rowspan: 1
1283
+ colwidth:
1284
+ content:
1285
+ - type: paragraph
1286
+ content:
1287
+ - type: text
1288
+ text: x
1289
+ - type: table_cell
1290
+ attrs:
1291
+ colspan: 1
1292
+ rowspan: 1
1293
+ colwidth:
1294
+ content:
1295
+ - type: paragraph
1296
+ content:
1297
+ - type: text
1298
+ text: x
1299
+ - type: table_cell
1300
+ attrs:
1301
+ colspan: 1
1302
+ rowspan: 1
1303
+ colwidth:
1304
+ content:
1305
+ - type: paragraph
1306
+ content:
1307
+ - type: text
1308
+ text: " "
1309
+ - type: paragraph
1310
+ content:
1311
+ - type: text
1312
+ text: " "
1313
+ - type: table
1314
+ content:
1315
+ - type: table_row
1316
+ content:
1317
+ - type: table_cell
1318
+ attrs:
1319
+ colspan: 1
1320
+ rowspan: 1
1321
+ colwidth:
1322
+ content:
1323
+ - type: paragraph
1324
+ content:
1325
+ - type: text
1326
+ marks:
1327
+ - type: strong
1328
+ text: PARTIE III
1329
+ - type: table_cell
1330
+ attrs:
1331
+ colspan: 1
1332
+ rowspan: 1
1333
+ colwidth:
1334
+ content:
1335
+ - type: paragraph
1336
+ content:
1337
+ - type: text
1338
+ marks:
1339
+ - type: strong
1340
+ text: PART III
1341
+ - type: table_cell
1342
+ attrs:
1343
+ colspan: 1
1344
+ rowspan: 1
1345
+ colwidth:
1346
+ content:
1347
+ - type: paragraph
1348
+ content:
1349
+ - type: text
1350
+ marks:
1351
+ - type: strong
1352
+ text: PARTE III
1353
+ - type: paragraph
1354
+ content:
1355
+ - type: text
1356
+ text: " "
1357
+ - type: table
1358
+ content:
1359
+ - type: table_row
1360
+ content:
1361
+ - type: table_cell
1362
+ attrs:
1363
+ colspan: 1
1364
+ rowspan: 1
1365
+ colwidth:
1366
+ content:
1367
+ - type: paragraph
1368
+ content:
1369
+ - type: text
1370
+ text: 1a
1371
+ - type: table_cell
1372
+ attrs:
1373
+ colspan: 1
1374
+ rowspan: 1
1375
+ colwidth:
1376
+ content:
1377
+ - type: paragraph
1378
+ content:
1379
+ - type: text
1380
+ text: 1b
1381
+ - type: table_cell
1382
+ attrs:
1383
+ colspan: 1
1384
+ rowspan: 1
1385
+ colwidth:
1386
+ content:
1387
+ - type: paragraph
1388
+ content:
1389
+ - type: text
1390
+ text: '2'
1391
+ - type: table_cell
1392
+ attrs:
1393
+ colspan: 1
1394
+ rowspan: 1
1395
+ colwidth:
1396
+ content:
1397
+ - type: paragraph
1398
+ content:
1399
+ - type: text
1400
+ text: '3'
1401
+ - type: table_cell
1402
+ attrs:
1403
+ colspan: 1
1404
+ rowspan: 1
1405
+ colwidth:
1406
+ content:
1407
+ - type: paragraph
1408
+ content:
1409
+ - type: text
1410
+ text: 4a
1411
+ - type: table_cell
1412
+ attrs:
1413
+ colspan: 1
1414
+ rowspan: 1
1415
+ colwidth:
1416
+ content:
1417
+ - type: paragraph
1418
+ content:
1419
+ - type: text
1420
+ text: 4b
1421
+ - type: table_cell
1422
+ attrs:
1423
+ colspan: 1
1424
+ rowspan: 1
1425
+ colwidth:
1426
+ content:
1427
+ - type: paragraph
1428
+ content:
1429
+ - type: text
1430
+ text: 4c
1431
+ - type: table_row
1432
+ content:
1433
+ - type: table_cell
1434
+ attrs:
1435
+ colspan: 1
1436
+ rowspan: 1
1437
+ colwidth:
1438
+ content:
1439
+ - type: paragraph
1440
+ content:
1441
+ - type: text
1442
+ text: " "
1443
+ - type: table_cell
1444
+ attrs:
1445
+ colspan: 1
1446
+ rowspan: 1
1447
+ colwidth:
1448
+ content:
1449
+ - type: paragraph
1450
+ content:
1451
+ - type: text
1452
+ text: TETE DE LIGNE/
1453
+ - type: text
1454
+ marks:
1455
+ - type: em
1456
+ text: GATEWAY
1457
+ - type: text
1458
+ text: "/"
1459
+ - type: paragraph
1460
+ content:
1461
+ - type: text
1462
+ text: CABEZA DE LINEA
1463
+ - type: table_cell
1464
+ attrs:
1465
+ colspan: 1
1466
+ rowspan: 1
1467
+ colwidth:
1468
+ content:
1469
+ - type: paragraph
1470
+ content:
1471
+ - type: text
1472
+ text: RESEAU
1473
+ - type: text
1474
+ marks:
1475
+ - type: em
1476
+ text: "/NETWORK/"
1477
+ - type: paragraph
1478
+ content:
1479
+ - type: text
1480
+ text: RED
1481
+ - type: text
1482
+ marks:
1483
+ - type: em
1484
+ text: "-"
1485
+ - type: text
1486
+ text: RTPC/
1487
+ - type: text
1488
+ marks:
1489
+ - type: em
1490
+ text: PSTN
1491
+ - type: table_cell
1492
+ attrs:
1493
+ colspan: 1
1494
+ rowspan: 1
1495
+ colwidth:
1496
+ content:
1497
+ - type: paragraph
1498
+ content:
1499
+ - type: text
1500
+ text: " "
1501
+ - type: table_cell
1502
+ attrs:
1503
+ colspan: 1
1504
+ rowspan: 1
1505
+ colwidth:
1506
+ content:
1507
+ - type: paragraph
1508
+ content:
1509
+ - type: text
1510
+ text: " "
1511
+ - type: table_cell
1512
+ attrs:
1513
+ colspan: 1
1514
+ rowspan: 1
1515
+ colwidth:
1516
+ content:
1517
+ - type: paragraph
1518
+ content:
1519
+ - type: text
1520
+ text: " "
1521
+ - type: table_cell
1522
+ attrs:
1523
+ colspan: 1
1524
+ rowspan: 1
1525
+ colwidth:
1526
+ content:
1527
+ - type: paragraph
1528
+ content:
1529
+ - type: text
1530
+ text: " "
1531
+ - type: table_row
1532
+ content:
1533
+ - type: table_cell
1534
+ attrs:
1535
+ colspan: 1
1536
+ rowspan: 1
1537
+ colwidth:
1538
+ content:
1539
+ - type: paragraph
1540
+ content:
1541
+ - type: text
1542
+ text: " "
1543
+ - type: table_cell
1544
+ attrs:
1545
+ colspan: 1
1546
+ rowspan: 1
1547
+ colwidth:
1548
+ content:
1549
+ - type: paragraph
1550
+ content:
1551
+ - type: text
1552
+ text: " "
1553
+ - type: table_cell
1554
+ attrs:
1555
+ colspan: 1
1556
+ rowspan: 1
1557
+ colwidth:
1558
+ content:
1559
+ - type: paragraph
1560
+ content:
1561
+ - type: text
1562
+ text: " "
1563
+ - type: table_cell
1564
+ attrs:
1565
+ colspan: 1
1566
+ rowspan: 1
1567
+ colwidth:
1568
+ content:
1569
+ - type: paragraph
1570
+ content:
1571
+ - type: text
1572
+ text: " "
1573
+ - type: table_cell
1574
+ attrs:
1575
+ colspan: 1
1576
+ rowspan: 1
1577
+ colwidth:
1578
+ content:
1579
+ - type: paragraph
1580
+ content:
1581
+ - type: text
1582
+ text: " "
1583
+ - type: table_cell
1584
+ attrs:
1585
+ colspan: 1
1586
+ rowspan: 1
1587
+ colwidth:
1588
+ content:
1589
+ - type: paragraph
1590
+ content:
1591
+ - type: text
1592
+ text: " "
1593
+ - type: table_cell
1594
+ attrs:
1595
+ colspan: 1
1596
+ rowspan: 1
1597
+ colwidth:
1598
+ content:
1599
+ - type: paragraph
1600
+ content:
1601
+ - type: text
1602
+ text: " "
1603
+ - type: table_row
1604
+ content:
1605
+ - type: table_cell
1606
+ attrs:
1607
+ colspan: 1
1608
+ rowspan: 1
1609
+ colwidth:
1610
+ content:
1611
+ - type: paragraph
1612
+ content:
1613
+ - type: text
1614
+ text: " "
1615
+ - type: table_cell
1616
+ attrs:
1617
+ colspan: 1
1618
+ rowspan: 1
1619
+ colwidth:
1620
+ content:
1621
+ - type: paragraph
1622
+ content:
1623
+ - type: text
1624
+ text: VICTORIA MAHE
1625
+ - type: paragraph
1626
+ content:
1627
+ - type: text
1628
+ text: Cable & Wireless (Seychelles) Ltd.
1629
+ - type: paragraph
1630
+ content:
1631
+ - type: text
1632
+ text: P.O. Box 4
1633
+ - type: paragraph
1634
+ content:
1635
+ - type: text
1636
+ text: Francis Rachel Street
1637
+ - type: table_cell
1638
+ attrs:
1639
+ colspan: 1
1640
+ rowspan: 1
1641
+ colwidth:
1642
+ content:
1643
+ - type: paragraph
1644
+ content:
1645
+ - type: text
1646
+ text: "+248 432 2555"
1647
+ - type: table_cell
1648
+ attrs:
1649
+ colspan: 1
1650
+ rowspan: 1
1651
+ colwidth:
1652
+ content:
1653
+ - type: paragraph
1654
+ content:
1655
+ - type: text
1656
+ text: 3/2
1657
+ - type: table_cell
1658
+ attrs:
1659
+ colspan: 1
1660
+ rowspan: 1
1661
+ colwidth:
1662
+ content:
1663
+ - type: paragraph
1664
+ content:
1665
+ - type: text
1666
+ text: "N"
1667
+ - type: table_cell
1668
+ attrs:
1669
+ colspan: 1
1670
+ rowspan: 1
1671
+ colwidth:
1672
+ content:
1673
+ - type: paragraph
1674
+ content:
1675
+ - type: text
1676
+ text: "N"
1677
+ - type: table_cell
1678
+ attrs:
1679
+ colspan: 1
1680
+ rowspan: 1
1681
+ colwidth:
1682
+ content:
1683
+ - type: paragraph
1684
+ content:
1685
+ - type: text
1686
+ text: "N"
1687
+ - type: table_row
1688
+ content:
1689
+ - type: table_cell
1690
+ attrs:
1691
+ colspan: 1
1692
+ rowspan: 1
1693
+ colwidth:
1694
+ content:
1695
+ - type: paragraph
1696
+ content:
1697
+ - type: text
1698
+ text: " "
1699
+ - type: table_cell
1700
+ attrs:
1701
+ colspan: 1
1702
+ rowspan: 1
1703
+ colwidth:
1704
+ content:
1705
+ - type: paragraph
1706
+ content:
1707
+ - type: text
1708
+ text: " "
1709
+ - type: table_cell
1710
+ attrs:
1711
+ colspan: 1
1712
+ rowspan: 1
1713
+ colwidth:
1714
+ content:
1715
+ - type: paragraph
1716
+ content:
1717
+ - type: text
1718
+ text: " "
1719
+ - type: table_cell
1720
+ attrs:
1721
+ colspan: 1
1722
+ rowspan: 1
1723
+ colwidth:
1724
+ content:
1725
+ - type: paragraph
1726
+ content:
1727
+ - type: text
1728
+ text: " "
1729
+ - type: table_cell
1730
+ attrs:
1731
+ colspan: 1
1732
+ rowspan: 1
1733
+ colwidth:
1734
+ content:
1735
+ - type: paragraph
1736
+ content:
1737
+ - type: text
1738
+ text: " "
1739
+ - type: table_cell
1740
+ attrs:
1741
+ colspan: 1
1742
+ rowspan: 1
1743
+ colwidth:
1744
+ content:
1745
+ - type: paragraph
1746
+ content:
1747
+ - type: text
1748
+ text: " "
1749
+ - type: table_cell
1750
+ attrs:
1751
+ colspan: 1
1752
+ rowspan: 1
1753
+ colwidth:
1754
+ content:
1755
+ - type: paragraph
1756
+ content:
1757
+ - type: text
1758
+ text: " "
1759
+ - type: paragraph
1760
+ content:
1761
+ - type: text
1762
+ text: " "
1763
+ - type: table
1764
+ content:
1765
+ - type: table_row
1766
+ content:
1767
+ - type: table_cell
1768
+ attrs:
1769
+ colspan: 1
1770
+ rowspan: 1
1771
+ colwidth:
1772
+ content:
1773
+ - type: paragraph
1774
+ content:
1775
+ - type: text
1776
+ marks:
1777
+ - type: strong
1778
+ text: PARTIE V
1779
+ - type: table_cell
1780
+ attrs:
1781
+ colspan: 1
1782
+ rowspan: 1
1783
+ colwidth:
1784
+ content:
1785
+ - type: paragraph
1786
+ content:
1787
+ - type: text
1788
+ marks:
1789
+ - type: strong
1790
+ text: PART V
1791
+ - type: table_cell
1792
+ attrs:
1793
+ colspan: 1
1794
+ rowspan: 1
1795
+ colwidth:
1796
+ content:
1797
+ - type: paragraph
1798
+ content:
1799
+ - type: text
1800
+ marks:
1801
+ - type: strong
1802
+ text: PARTE V
1803
+ - type: paragraph
1804
+ content:
1805
+ - type: text
1806
+ text: " "
1807
+ - type: paragraph
1808
+ content:
1809
+ - type: text
1810
+ text: '1) Le service Bureaufax est assuré par le Centre d''exploitation télégraphique,
1811
+ qui est installé dans le bureau principal, à l''adresse suivante : "Francis
1812
+ Rachel Street, Victoria, Mahe". Son exploitation se fait dans les mêmes locaux
1813
+ que ceux des autres services publics internationaux de télécommunication : télex
1814
+ entre bureaux publics, services des télégrammes, communications téléphoniques
1815
+ internationales, établies par l''intermédiaire de cabines spéciales.'
1816
+ - type: text
1817
+ marks:
1818
+ - type: em
1819
+ text: " "
1820
+ - type: paragraph
1821
+ content:
1822
+ - type: text
1823
+ marks:
1824
+ - type: em
1825
+ text: 1) Bureaufax service is provided from the Telegraph Control Center at the
1826
+ Main Office in Francis Rachel Street, Victoria, Mahe. This service is operated
1827
+ from the same location as other public international telecommunication services
1828
+ including Telex Bureau, Telegram and International Telephone calls connected
1829
+ through special booths.
1830
+ - type: paragraph
1831
+ content:
1832
+ - type: text
1833
+ text: 1) El servicio Burofax se facilita a través del Centro de control telegráfico
1834
+ en el oficina principal de "Francis Rachel Street, Victoria, Mahe". La explotación
1835
+ de este servicio se efectúa en el mismo emplazamiento que los demás servicios
1836
+ de telecomunicaciones internacionales públicas, incluidos el télex, los telegramas
1837
+ y las llamadas telefónicas internacionales conectadas a través de cabinas especiales.
1838
+ - type: paragraph
1839
+ content:
1840
+ - type: text
1841
+ text: " "
1842
+ - type: paragraph
1843
+ content:
1844
+ - type: text
1845
+ text: 'Under the heading '
1846
+ - type: text
1847
+ marks:
1848
+ - type: strong
1849
+ text: 'Data 8: '
1850
+ - type: text
1851
+ marks:
1852
+ - type: link
1853
+ attrs:
1854
+ href: http://www.itu.int/oth/T0205000008/en
1855
+ title:
1856
+ - type: strong
1857
+ text: Tanzania – Zimbabwe
1858
+ - type: text
1859
+ text: " "
1860
+ - type: hard_break
1861
+ - type: text
1862
+ text: INformation concerning
1863
+ - type: text
1864
+ marks:
1865
+ - type: strong
1866
+ text: " TOGO "
1867
+ - type: text
1868
+ text: 'is '
1869
+ - type: text
1870
+ marks:
1871
+ - type: strong
1872
+ text: UPDATED
1873
+ - type: text
1874
+ text: ":"
1875
+ - type: paragraph
1876
+ content:
1877
+ - type: text
1878
+ text: " "
1879
+ - type: table
1880
+ content:
1881
+ - type: table_row
1882
+ content:
1883
+ - type: table_cell
1884
+ attrs:
1885
+ colspan: 1
1886
+ rowspan: 1
1887
+ colwidth:
1888
+ content:
1889
+ - type: paragraph
1890
+ content:
1891
+ - type: text
1892
+ marks:
1893
+ - type: strong
1894
+ text: Derniere modification
1895
+ - type: paragraph
1896
+ content:
1897
+ - type: text
1898
+ marks:
1899
+ - type: strong
1900
+ text: 15.III.2012
1901
+ - type: table_cell
1902
+ attrs:
1903
+ colspan: 1
1904
+ rowspan: 1
1905
+ colwidth:
1906
+ content:
1907
+ - type: paragraph
1908
+ content:
1909
+ - type: text
1910
+ marks:
1911
+ - type: strong
1912
+ text: Last modification 
1913
+ - type: paragraph
1914
+ content:
1915
+ - type: text
1916
+ marks:
1917
+ - type: strong
1918
+ text: 15.III.2012
1919
+ - type: table_cell
1920
+ attrs:
1921
+ colspan: 1
1922
+ rowspan: 1
1923
+ colwidth:
1924
+ content:
1925
+ - type: paragraph
1926
+ content:
1927
+ - type: text
1928
+ marks:
1929
+ - type: strong
1930
+ text: Ultima modificación
1931
+ - type: paragraph
1932
+ content:
1933
+ - type: text
1934
+ marks:
1935
+ - type: strong
1936
+ text: 15.III.2012 
1937
+ - type: paragraph
1938
+ content:
1939
+ - type: text
1940
+ text: " "
1941
+ - type: table
1942
+ content:
1943
+ - type: table_row
1944
+ content:
1945
+ - type: table_cell
1946
+ attrs:
1947
+ colspan: 2
1948
+ rowspan: 1
1949
+ colwidth:
1950
+ content:
1951
+ - type: paragraph
1952
+ content:
1953
+ - type: text
1954
+ marks:
1955
+ - type: strong
1956
+ text: TOGO
1957
+ - type: table_cell
1958
+ attrs:
1959
+ colspan: 3
1960
+ rowspan: 1
1961
+ colwidth:
1962
+ content:
1963
+ - type: paragraph
1964
+ content:
1965
+ - type: text
1966
+ marks:
1967
+ - type: strong
1968
+ text: TOGO
1969
+ - type: table_cell
1970
+ attrs:
1971
+ colspan: 3
1972
+ rowspan: 1
1973
+ colwidth:
1974
+ content:
1975
+ - type: paragraph
1976
+ content:
1977
+ - type: text
1978
+ marks:
1979
+ - type: strong
1980
+ text: TOGO
1981
+ - type: table_cell
1982
+ attrs:
1983
+ colspan: 1
1984
+ rowspan: 1
1985
+ colwidth:
1986
+ content:
1987
+ - type: paragraph
1988
+ content:
1989
+ - type: text
1990
+ text: " "
1991
+ - type: table_row
1992
+ content:
1993
+ - type: table_cell
1994
+ attrs:
1995
+ colspan: 2
1996
+ rowspan: 1
1997
+ colwidth:
1998
+ content:
1999
+ - type: paragraph
2000
+ content:
2001
+ - type: text
2002
+ marks:
2003
+ - type: strong
2004
+ text: " "
2005
+ - type: table_cell
2006
+ attrs:
2007
+ colspan: 3
2008
+ rowspan: 1
2009
+ colwidth:
2010
+ content:
2011
+ - type: paragraph
2012
+ content:
2013
+ - type: text
2014
+ marks:
2015
+ - type: strong
2016
+ text: " "
2017
+ - type: table_cell
2018
+ attrs:
2019
+ colspan: 3
2020
+ rowspan: 1
2021
+ colwidth:
2022
+ content:
2023
+ - type: paragraph
2024
+ content:
2025
+ - type: text
2026
+ marks:
2027
+ - type: strong
2028
+ text: " "
2029
+ - type: table_cell
2030
+ attrs:
2031
+ colspan: 1
2032
+ rowspan: 1
2033
+ colwidth:
2034
+ content:
2035
+ - type: paragraph
2036
+ content:
2037
+ - type: text
2038
+ text: " "
2039
+ - type: table_row
2040
+ content:
2041
+ - type: table_cell
2042
+ attrs:
2043
+ colspan: 1
2044
+ rowspan: 1
2045
+ colwidth:
2046
+ content:
2047
+ - type: paragraph
2048
+ content:
2049
+ - type: text
2050
+ marks:
2051
+ - type: strong
2052
+ text: bureaufax-super
2053
+ - type: paragraph
2054
+ content:
2055
+ - type: text
2056
+ marks:
2057
+ - type: strong
2058
+ text: express
2059
+ - type: paragraph
2060
+ content:
2061
+ - type: text
2062
+ marks:
2063
+ - type: strong
2064
+ text: poste
2065
+ - type: paragraph
2066
+ content:
2067
+ - type: text
2068
+ marks:
2069
+ - type: strong
2070
+ text: 'CONTACT/CONTACTO:'
2071
+ - type: table_cell
2072
+ attrs:
2073
+ colspan: 3
2074
+ rowspan: 1
2075
+ colwidth:
2076
+ content:
2077
+ - type: paragraph
2078
+ content:
2079
+ - type: text
2080
+ text: " "
2081
+ - type: table_cell
2082
+ attrs:
2083
+ colspan: 3
2084
+ rowspan: 1
2085
+ colwidth:
2086
+ content:
2087
+ - type: paragraph
2088
+ content:
2089
+ - type: text
2090
+ text: " "
2091
+ - type: table_cell
2092
+ attrs:
2093
+ colspan: 2
2094
+ rowspan: 1
2095
+ colwidth:
2096
+ content:
2097
+ - type: paragraph
2098
+ content:
2099
+ - type: text
2100
+ text: " "
2101
+ - type: table_row
2102
+ content:
2103
+ - type: table_cell
2104
+ attrs:
2105
+ colspan: 3
2106
+ rowspan: 1
2107
+ colwidth:
2108
+ content:
2109
+ - type: paragraph
2110
+ content:
2111
+ - type: text
2112
+ text: " "
2113
+ - type: table_cell
2114
+ attrs:
2115
+ colspan: 3
2116
+ rowspan: 1
2117
+ colwidth:
2118
+ content:
2119
+ - type: paragraph
2120
+ content:
2121
+ - type: text
2122
+ text: " "
2123
+ - type: table_cell
2124
+ attrs:
2125
+ colspan: 3
2126
+ rowspan: 1
2127
+ colwidth:
2128
+ content:
2129
+ - type: paragraph
2130
+ content:
2131
+ - type: text
2132
+ text: " "
2133
+ - type: table_row
2134
+ content:
2135
+ - type: table_cell
2136
+ attrs:
2137
+ colspan: 3
2138
+ rowspan: 1
2139
+ colwidth:
2140
+ content:
2141
+ - type: paragraph
2142
+ content:
2143
+ - type: text
2144
+ text: Togo Telecom
2145
+ - type: paragraph
2146
+ content:
2147
+ - type: text
2148
+ text: B.P. 333
2149
+ - type: paragraph
2150
+ content:
2151
+ - type: text
2152
+ text: LOME
2153
+ - type: paragraph
2154
+ content:
2155
+ - type: text
2156
+ text: Togo
2157
+ - type: table_cell
2158
+ attrs:
2159
+ colspan: 3
2160
+ rowspan: 1
2161
+ colwidth:
2162
+ content:
2163
+ - type: paragraph
2164
+ content:
2165
+ - type: text
2166
+ text: TG            
2167
+ - type: paragraph
2168
+ content:
2169
+ - type: text
2170
+ text: TLX          
2171
+ - type: paragraph
2172
+ content:
2173
+ - type: text
2174
+ text: TLX          
2175
+ - type: table_cell
2176
+ attrs:
2177
+ colspan: 3
2178
+ rowspan: 1
2179
+ colwidth:
2180
+ content:
2181
+ - type: paragraph
2182
+ content:
2183
+ - type: text
2184
+ text: FAX          +228 2221 0373
2185
+ - type: paragraph
2186
+ content:
2187
+ - type: text
2188
+ text: GR            3
2189
+ - type: paragraph
2190
+ content:
2191
+ - type: text
2192
+ text: TF             +228 2221 4401
2193
+ - type: paragraph
2194
+ content:
2195
+ - type: text
2196
+ text: " "
2197
+ - type: table_row
2198
+ content:
2199
+ - type: table_cell
2200
+ attrs:
2201
+ colspan: 1
2202
+ rowspan: 1
2203
+ colwidth:
2204
+ content:
2205
+ - type: paragraph
2206
+ - type: table_cell
2207
+ attrs:
2208
+ colspan: 1
2209
+ rowspan: 1
2210
+ colwidth:
2211
+ content:
2212
+ - type: paragraph
2213
+ - type: table_cell
2214
+ attrs:
2215
+ colspan: 1
2216
+ rowspan: 1
2217
+ colwidth:
2218
+ content:
2219
+ - type: paragraph
2220
+ - type: table_cell
2221
+ attrs:
2222
+ colspan: 1
2223
+ rowspan: 1
2224
+ colwidth:
2225
+ content:
2226
+ - type: paragraph
2227
+ - type: table_cell
2228
+ attrs:
2229
+ colspan: 1
2230
+ rowspan: 1
2231
+ colwidth:
2232
+ content:
2233
+ - type: paragraph
2234
+ - type: table_cell
2235
+ attrs:
2236
+ colspan: 1
2237
+ rowspan: 1
2238
+ colwidth:
2239
+ content:
2240
+ - type: paragraph
2241
+ - type: table_cell
2242
+ attrs:
2243
+ colspan: 1
2244
+ rowspan: 1
2245
+ colwidth:
2246
+ content:
2247
+ - type: paragraph
2248
+ - type: table_cell
2249
+ attrs:
2250
+ colspan: 1
2251
+ rowspan: 1
2252
+ colwidth:
2253
+ content:
2254
+ - type: paragraph
2255
+ - type: table_cell
2256
+ attrs:
2257
+ colspan: 1
2258
+ rowspan: 1
2259
+ colwidth:
2260
+ content:
2261
+ - type: paragraph
2262
+ - type: paragraph
2263
+ content:
2264
+ - type: text
2265
+ text: " "
2266
+ - type: table
2267
+ content:
2268
+ - type: table_row
2269
+ content:
2270
+ - type: table_cell
2271
+ attrs:
2272
+ colspan: 1
2273
+ rowspan: 1
2274
+ colwidth:
2275
+ content:
2276
+ - type: paragraph
2277
+ content:
2278
+ - type: text
2279
+ marks:
2280
+ - type: strong
2281
+ text: PARTIE II
2282
+ - type: table_cell
2283
+ attrs:
2284
+ colspan: 1
2285
+ rowspan: 1
2286
+ colwidth:
2287
+ content:
2288
+ - type: paragraph
2289
+ content:
2290
+ - type: text
2291
+ marks:
2292
+ - type: strong
2293
+ text: PART II
2294
+ - type: table_cell
2295
+ attrs:
2296
+ colspan: 1
2297
+ rowspan: 1
2298
+ colwidth:
2299
+ content:
2300
+ - type: paragraph
2301
+ content:
2302
+ - type: text
2303
+ marks:
2304
+ - type: strong
2305
+ text: PARTE II
2306
+ - type: paragraph
2307
+ content:
2308
+ - type: text
2309
+ text: " "
2310
+ - type: table
2311
+ content:
2312
+ - type: table_row
2313
+ content:
2314
+ - type: table_cell
2315
+ attrs:
2316
+ colspan: 1
2317
+ rowspan: 1
2318
+ colwidth:
2319
+ content:
2320
+ - type: paragraph
2321
+ content:
2322
+ - type: text
2323
+ text: " "
2324
+ - type: table_cell
2325
+ attrs:
2326
+ colspan: 1
2327
+ rowspan: 1
2328
+ colwidth:
2329
+ content:
2330
+ - type: paragraph
2331
+ content:
2332
+ - type: text
2333
+ text: COL A
2334
+ - type: table_cell
2335
+ attrs:
2336
+ colspan: 1
2337
+ rowspan: 1
2338
+ colwidth:
2339
+ content:
2340
+ - type: paragraph
2341
+ content:
2342
+ - type: text
2343
+ text: COL B
2344
+ - type: table_cell
2345
+ attrs:
2346
+ colspan: 1
2347
+ rowspan: 1
2348
+ colwidth:
2349
+ content:
2350
+ - type: paragraph
2351
+ content:
2352
+ - type: text
2353
+ text: COL C
2354
+ - type: table_cell
2355
+ attrs:
2356
+ colspan: 1
2357
+ rowspan: 1
2358
+ colwidth:
2359
+ content:
2360
+ - type: paragraph
2361
+ content:
2362
+ - type: text
2363
+ text: COL D
2364
+ - type: table_cell
2365
+ attrs:
2366
+ colspan: 1
2367
+ rowspan: 1
2368
+ colwidth:
2369
+ content:
2370
+ - type: paragraph
2371
+ content:
2372
+ - type: text
2373
+ text: COL E
2374
+ - type: table_cell
2375
+ attrs:
2376
+ colspan: 1
2377
+ rowspan: 1
2378
+ colwidth:
2379
+ content:
2380
+ - type: paragraph
2381
+ content:
2382
+ - type: text
2383
+ text: COL F
2384
+ - type: table_cell
2385
+ attrs:
2386
+ colspan: 1
2387
+ rowspan: 1
2388
+ colwidth:
2389
+ content:
2390
+ - type: paragraph
2391
+ content:
2392
+ - type: text
2393
+ text: COL G
2394
+ - type: table_cell
2395
+ attrs:
2396
+ colspan: 1
2397
+ rowspan: 1
2398
+ colwidth:
2399
+ content:
2400
+ - type: paragraph
2401
+ content:
2402
+ - type: text
2403
+ text: COL T
2404
+ - type: table_row
2405
+ content:
2406
+ - type: table_cell
2407
+ attrs:
2408
+ colspan: 1
2409
+ rowspan: 1
2410
+ colwidth:
2411
+ content:
2412
+ - type: paragraph
2413
+ content:
2414
+ - type: text
2415
+ text: " "
2416
+ - type: table_cell
2417
+ attrs:
2418
+ colspan: 1
2419
+ rowspan: 1
2420
+ colwidth:
2421
+ content:
2422
+ - type: paragraph
2423
+ content:
2424
+ - type: text
2425
+ text: " "
2426
+ - type: table_cell
2427
+ attrs:
2428
+ colspan: 1
2429
+ rowspan: 1
2430
+ colwidth:
2431
+ content:
2432
+ - type: paragraph
2433
+ content:
2434
+ - type: text
2435
+ text: " "
2436
+ - type: table_cell
2437
+ attrs:
2438
+ colspan: 1
2439
+ rowspan: 1
2440
+ colwidth:
2441
+ content:
2442
+ - type: paragraph
2443
+ content:
2444
+ - type: text
2445
+ text: " "
2446
+ - type: table_cell
2447
+ attrs:
2448
+ colspan: 1
2449
+ rowspan: 1
2450
+ colwidth:
2451
+ content:
2452
+ - type: paragraph
2453
+ content:
2454
+ - type: text
2455
+ text: " "
2456
+ - type: table_cell
2457
+ attrs:
2458
+ colspan: 1
2459
+ rowspan: 1
2460
+ colwidth:
2461
+ content:
2462
+ - type: paragraph
2463
+ content:
2464
+ - type: text
2465
+ text: " "
2466
+ - type: table_cell
2467
+ attrs:
2468
+ colspan: 1
2469
+ rowspan: 1
2470
+ colwidth:
2471
+ content:
2472
+ - type: paragraph
2473
+ content:
2474
+ - type: text
2475
+ text: " "
2476
+ - type: table_cell
2477
+ attrs:
2478
+ colspan: 1
2479
+ rowspan: 1
2480
+ colwidth:
2481
+ content:
2482
+ - type: paragraph
2483
+ content:
2484
+ - type: text
2485
+ text: " "
2486
+ - type: table_cell
2487
+ attrs:
2488
+ colspan: 1
2489
+ rowspan: 1
2490
+ colwidth:
2491
+ content:
2492
+ - type: paragraph
2493
+ content:
2494
+ - type: text
2495
+ text: " "
2496
+ - type: table_row
2497
+ content:
2498
+ - type: table_cell
2499
+ attrs:
2500
+ colspan: 1
2501
+ rowspan: 1
2502
+ colwidth:
2503
+ content:
2504
+ - type: paragraph
2505
+ content:
2506
+ - type: text
2507
+ text: " "
2508
+ - type: table_cell
2509
+ attrs:
2510
+ colspan: 1
2511
+ rowspan: 1
2512
+ colwidth:
2513
+ content:
2514
+ - type: paragraph
2515
+ content:
2516
+ - type: text
2517
+ text: " "
2518
+ - type: table_cell
2519
+ attrs:
2520
+ colspan: 1
2521
+ rowspan: 1
2522
+ colwidth:
2523
+ content:
2524
+ - type: paragraph
2525
+ content:
2526
+ - type: text
2527
+ text: " "
2528
+ - type: table_cell
2529
+ attrs:
2530
+ colspan: 1
2531
+ rowspan: 1
2532
+ colwidth:
2533
+ content:
2534
+ - type: paragraph
2535
+ content:
2536
+ - type: text
2537
+ text: " "
2538
+ - type: table_cell
2539
+ attrs:
2540
+ colspan: 1
2541
+ rowspan: 1
2542
+ colwidth:
2543
+ content:
2544
+ - type: paragraph
2545
+ content:
2546
+ - type: text
2547
+ text: x
2548
+ - type: table_cell
2549
+ attrs:
2550
+ colspan: 1
2551
+ rowspan: 1
2552
+ colwidth:
2553
+ content:
2554
+ - type: paragraph
2555
+ content:
2556
+ - type: text
2557
+ text: x
2558
+ - type: table_cell
2559
+ attrs:
2560
+ colspan: 1
2561
+ rowspan: 1
2562
+ colwidth:
2563
+ content:
2564
+ - type: paragraph
2565
+ content:
2566
+ - type: text
2567
+ text: " "
2568
+ - type: table_cell
2569
+ attrs:
2570
+ colspan: 1
2571
+ rowspan: 1
2572
+ colwidth:
2573
+ content:
2574
+ - type: paragraph
2575
+ content:
2576
+ - type: text
2577
+ text: " "
2578
+ - type: table_cell
2579
+ attrs:
2580
+ colspan: 1
2581
+ rowspan: 1
2582
+ colwidth:
2583
+ content:
2584
+ - type: paragraph
2585
+ content:
2586
+ - type: text
2587
+ text: " "
2588
+ - type: paragraph
2589
+ content:
2590
+ - type: text
2591
+ text: " "
2592
+ - type: table
2593
+ content:
2594
+ - type: table_row
2595
+ content:
2596
+ - type: table_cell
2597
+ attrs:
2598
+ colspan: 1
2599
+ rowspan: 1
2600
+ colwidth:
2601
+ content:
2602
+ - type: paragraph
2603
+ content:
2604
+ - type: text
2605
+ marks:
2606
+ - type: strong
2607
+ text: PARTIE III
2608
+ - type: table_cell
2609
+ attrs:
2610
+ colspan: 1
2611
+ rowspan: 1
2612
+ colwidth:
2613
+ content:
2614
+ - type: paragraph
2615
+ content:
2616
+ - type: text
2617
+ marks:
2618
+ - type: strong
2619
+ text: PART III
2620
+ - type: table_cell
2621
+ attrs:
2622
+ colspan: 1
2623
+ rowspan: 1
2624
+ colwidth:
2625
+ content:
2626
+ - type: paragraph
2627
+ content:
2628
+ - type: text
2629
+ marks:
2630
+ - type: strong
2631
+ text: PARTE III
2632
+ - type: paragraph
2633
+ content:
2634
+ - type: text
2635
+ text: " "
2636
+ - type: table
2637
+ content:
2638
+ - type: table_row
2639
+ content:
2640
+ - type: table_cell
2641
+ attrs:
2642
+ colspan: 1
2643
+ rowspan: 1
2644
+ colwidth:
2645
+ content:
2646
+ - type: paragraph
2647
+ content:
2648
+ - type: text
2649
+ text: 1a
2650
+ - type: table_cell
2651
+ attrs:
2652
+ colspan: 1
2653
+ rowspan: 1
2654
+ colwidth:
2655
+ content:
2656
+ - type: paragraph
2657
+ content:
2658
+ - type: text
2659
+ text: 1b
2660
+ - type: table_cell
2661
+ attrs:
2662
+ colspan: 1
2663
+ rowspan: 1
2664
+ colwidth:
2665
+ content:
2666
+ - type: paragraph
2667
+ content:
2668
+ - type: text
2669
+ text: '2'
2670
+ - type: table_cell
2671
+ attrs:
2672
+ colspan: 1
2673
+ rowspan: 1
2674
+ colwidth:
2675
+ content:
2676
+ - type: paragraph
2677
+ content:
2678
+ - type: text
2679
+ text: '3'
2680
+ - type: table_cell
2681
+ attrs:
2682
+ colspan: 1
2683
+ rowspan: 1
2684
+ colwidth:
2685
+ content:
2686
+ - type: paragraph
2687
+ content:
2688
+ - type: text
2689
+ text: 4a
2690
+ - type: table_cell
2691
+ attrs:
2692
+ colspan: 1
2693
+ rowspan: 1
2694
+ colwidth:
2695
+ content:
2696
+ - type: paragraph
2697
+ content:
2698
+ - type: text
2699
+ text: 4b
2700
+ - type: table_cell
2701
+ attrs:
2702
+ colspan: 1
2703
+ rowspan: 1
2704
+ colwidth:
2705
+ content:
2706
+ - type: paragraph
2707
+ content:
2708
+ - type: text
2709
+ text: 4c
2710
+ - type: table_row
2711
+ content:
2712
+ - type: table_cell
2713
+ attrs:
2714
+ colspan: 1
2715
+ rowspan: 1
2716
+ colwidth:
2717
+ content:
2718
+ - type: paragraph
2719
+ content:
2720
+ - type: text
2721
+ text: " "
2722
+ - type: table_cell
2723
+ attrs:
2724
+ colspan: 1
2725
+ rowspan: 1
2726
+ colwidth:
2727
+ content:
2728
+ - type: paragraph
2729
+ content:
2730
+ - type: text
2731
+ text: TETE DE LIGNE/
2732
+ - type: text
2733
+ marks:
2734
+ - type: em
2735
+ text: GATEWAY
2736
+ - type: text
2737
+ text: "/"
2738
+ - type: paragraph
2739
+ content:
2740
+ - type: text
2741
+ text: CABEZA DE LINEA
2742
+ - type: table_cell
2743
+ attrs:
2744
+ colspan: 1
2745
+ rowspan: 1
2746
+ colwidth:
2747
+ content:
2748
+ - type: paragraph
2749
+ content:
2750
+ - type: text
2751
+ text: RESEAU
2752
+ - type: text
2753
+ marks:
2754
+ - type: em
2755
+ text: "/NETWORK/"
2756
+ - type: paragraph
2757
+ content:
2758
+ - type: text
2759
+ text: RED
2760
+ - type: text
2761
+ marks:
2762
+ - type: em
2763
+ text: "-"
2764
+ - type: text
2765
+ text: RTPC/
2766
+ - type: text
2767
+ marks:
2768
+ - type: em
2769
+ text: PSTN
2770
+ - type: table_cell
2771
+ attrs:
2772
+ colspan: 1
2773
+ rowspan: 1
2774
+ colwidth:
2775
+ content:
2776
+ - type: paragraph
2777
+ content:
2778
+ - type: text
2779
+ text: " "
2780
+ - type: table_cell
2781
+ attrs:
2782
+ colspan: 1
2783
+ rowspan: 1
2784
+ colwidth:
2785
+ content:
2786
+ - type: paragraph
2787
+ content:
2788
+ - type: text
2789
+ text: " "
2790
+ - type: table_cell
2791
+ attrs:
2792
+ colspan: 1
2793
+ rowspan: 1
2794
+ colwidth:
2795
+ content:
2796
+ - type: paragraph
2797
+ content:
2798
+ - type: text
2799
+ text: " "
2800
+ - type: table_cell
2801
+ attrs:
2802
+ colspan: 1
2803
+ rowspan: 1
2804
+ colwidth:
2805
+ content:
2806
+ - type: paragraph
2807
+ content:
2808
+ - type: text
2809
+ text: " "
2810
+ - type: table_row
2811
+ content:
2812
+ - type: table_cell
2813
+ attrs:
2814
+ colspan: 1
2815
+ rowspan: 1
2816
+ colwidth:
2817
+ content:
2818
+ - type: paragraph
2819
+ content:
2820
+ - type: text
2821
+ text: " "
2822
+ - type: table_cell
2823
+ attrs:
2824
+ colspan: 1
2825
+ rowspan: 1
2826
+ colwidth:
2827
+ content:
2828
+ - type: paragraph
2829
+ content:
2830
+ - type: text
2831
+ text: " "
2832
+ - type: table_cell
2833
+ attrs:
2834
+ colspan: 1
2835
+ rowspan: 1
2836
+ colwidth:
2837
+ content:
2838
+ - type: paragraph
2839
+ content:
2840
+ - type: text
2841
+ text: " "
2842
+ - type: table_cell
2843
+ attrs:
2844
+ colspan: 1
2845
+ rowspan: 1
2846
+ colwidth:
2847
+ content:
2848
+ - type: paragraph
2849
+ content:
2850
+ - type: text
2851
+ text: " "
2852
+ - type: table_cell
2853
+ attrs:
2854
+ colspan: 1
2855
+ rowspan: 1
2856
+ colwidth:
2857
+ content:
2858
+ - type: paragraph
2859
+ content:
2860
+ - type: text
2861
+ text: " "
2862
+ - type: table_cell
2863
+ attrs:
2864
+ colspan: 1
2865
+ rowspan: 1
2866
+ colwidth:
2867
+ content:
2868
+ - type: paragraph
2869
+ content:
2870
+ - type: text
2871
+ text: " "
2872
+ - type: table_cell
2873
+ attrs:
2874
+ colspan: 1
2875
+ rowspan: 1
2876
+ colwidth:
2877
+ content:
2878
+ - type: paragraph
2879
+ content:
2880
+ - type: text
2881
+ text: " "
2882
+ - type: table_row
2883
+ content:
2884
+ - type: table_cell
2885
+ attrs:
2886
+ colspan: 1
2887
+ rowspan: 1
2888
+ colwidth:
2889
+ content:
2890
+ - type: paragraph
2891
+ content:
2892
+ - type: text
2893
+ text: " "
2894
+ - type: table_cell
2895
+ attrs:
2896
+ colspan: 1
2897
+ rowspan: 1
2898
+ colwidth:
2899
+ content:
2900
+ - type: paragraph
2901
+ content:
2902
+ - type: text
2903
+ text: LOME NYEKO
2904
+ - type: table_cell
2905
+ attrs:
2906
+ colspan: 1
2907
+ rowspan: 1
2908
+ colwidth:
2909
+ content:
2910
+ - type: paragraph
2911
+ content:
2912
+ - type: text
2913
+ text: "+228 2221 2903"
2914
+ - type: table_cell
2915
+ attrs:
2916
+ colspan: 1
2917
+ rowspan: 1
2918
+ colwidth:
2919
+ content:
2920
+ - type: paragraph
2921
+ content:
2922
+ - type: text
2923
+ text: '3'
2924
+ - type: table_cell
2925
+ attrs:
2926
+ colspan: 1
2927
+ rowspan: 1
2928
+ colwidth:
2929
+ content:
2930
+ - type: paragraph
2931
+ content:
2932
+ - type: text
2933
+ text: 0700-1900
2934
+ - type: table_cell
2935
+ attrs:
2936
+ colspan: 1
2937
+ rowspan: 1
2938
+ colwidth:
2939
+ content:
2940
+ - type: paragraph
2941
+ content:
2942
+ - type: text
2943
+ text: 0700-1300
2944
+ - type: table_cell
2945
+ attrs:
2946
+ colspan: 1
2947
+ rowspan: 1
2948
+ colwidth:
2949
+ content:
2950
+ - type: paragraph
2951
+ content:
2952
+ - type: text
2953
+ text: '0800-1300-'
2954
+ - type: table_row
2955
+ content:
2956
+ - type: table_cell
2957
+ attrs:
2958
+ colspan: 1
2959
+ rowspan: 1
2960
+ colwidth:
2961
+ content:
2962
+ - type: paragraph
2963
+ content:
2964
+ - type: text
2965
+ text: " "
2966
+ - type: table_cell
2967
+ attrs:
2968
+ colspan: 1
2969
+ rowspan: 1
2970
+ colwidth:
2971
+ content:
2972
+ - type: paragraph
2973
+ content:
2974
+ - type: text
2975
+ text: Burfax
2976
+ - type: table_cell
2977
+ attrs:
2978
+ colspan: 1
2979
+ rowspan: 1
2980
+ colwidth:
2981
+ content:
2982
+ - type: paragraph
2983
+ content:
2984
+ - type: text
2985
+ text: " "
2986
+ - type: table_cell
2987
+ attrs:
2988
+ colspan: 1
2989
+ rowspan: 1
2990
+ colwidth:
2991
+ content:
2992
+ - type: paragraph
2993
+ content:
2994
+ - type: text
2995
+ text: " "
2996
+ - type: table_cell
2997
+ attrs:
2998
+ colspan: 1
2999
+ rowspan: 1
3000
+ colwidth:
3001
+ content:
3002
+ - type: paragraph
3003
+ content:
3004
+ - type: text
3005
+ text: " "
3006
+ - type: table_cell
3007
+ attrs:
3008
+ colspan: 1
3009
+ rowspan: 1
3010
+ colwidth:
3011
+ content:
3012
+ - type: paragraph
3013
+ content:
3014
+ - type: text
3015
+ text: " "
3016
+ - type: table_cell
3017
+ attrs:
3018
+ colspan: 1
3019
+ rowspan: 1
3020
+ colwidth:
3021
+ content:
3022
+ - type: paragraph
3023
+ content:
3024
+ - type: text
3025
+ text: 1)
3026
+ - type: table_row
3027
+ content:
3028
+ - type: table_cell
3029
+ attrs:
3030
+ colspan: 1
3031
+ rowspan: 1
3032
+ colwidth:
3033
+ content:
3034
+ - type: paragraph
3035
+ content:
3036
+ - type: text
3037
+ text: " "
3038
+ - type: table_cell
3039
+ attrs:
3040
+ colspan: 1
3041
+ rowspan: 1
3042
+ colwidth:
3043
+ content:
3044
+ - type: paragraph
3045
+ content:
3046
+ - type: text
3047
+ text: " "
3048
+ - type: table_cell
3049
+ attrs:
3050
+ colspan: 1
3051
+ rowspan: 1
3052
+ colwidth:
3053
+ content:
3054
+ - type: paragraph
3055
+ content:
3056
+ - type: text
3057
+ text: " "
3058
+ - type: table_cell
3059
+ attrs:
3060
+ colspan: 1
3061
+ rowspan: 1
3062
+ colwidth:
3063
+ content:
3064
+ - type: paragraph
3065
+ content:
3066
+ - type: text
3067
+ text: " "
3068
+ - type: table_cell
3069
+ attrs:
3070
+ colspan: 1
3071
+ rowspan: 1
3072
+ colwidth:
3073
+ content:
3074
+ - type: paragraph
3075
+ content:
3076
+ - type: text
3077
+ text: " "
3078
+ - type: table_cell
3079
+ attrs:
3080
+ colspan: 1
3081
+ rowspan: 1
3082
+ colwidth:
3083
+ content:
3084
+ - type: paragraph
3085
+ content:
3086
+ - type: text
3087
+ text: " "
3088
+ - type: table_cell
3089
+ attrs:
3090
+ colspan: 1
3091
+ rowspan: 1
3092
+ colwidth:
3093
+ content:
3094
+ - type: paragraph
3095
+ content:
3096
+ - type: text
3097
+ text: " "
3098
+ - type: table_row
3099
+ content:
3100
+ - type: table_cell
3101
+ attrs:
3102
+ colspan: 1
3103
+ rowspan: 1
3104
+ colwidth:
3105
+ content:
3106
+ - type: paragraph
3107
+ content:
3108
+ - type: text
3109
+ text: " "
3110
+ - type: table_cell
3111
+ attrs:
3112
+ colspan: 1
3113
+ rowspan: 1
3114
+ colwidth:
3115
+ content:
3116
+ - type: paragraph
3117
+ content:
3118
+ - type: text
3119
+ text: LOME RP
3120
+ - type: table_cell
3121
+ attrs:
3122
+ colspan: 1
3123
+ rowspan: 1
3124
+ colwidth:
3125
+ content:
3126
+ - type: paragraph
3127
+ content:
3128
+ - type: text
3129
+ text: "+228 2221 5706"
3130
+ - type: table_cell
3131
+ attrs:
3132
+ colspan: 1
3133
+ rowspan: 1
3134
+ colwidth:
3135
+ content:
3136
+ - type: paragraph
3137
+ content:
3138
+ - type: text
3139
+ text: '3'
3140
+ - type: table_cell
3141
+ attrs:
3142
+ colspan: 1
3143
+ rowspan: 1
3144
+ colwidth:
3145
+ content:
3146
+ - type: paragraph
3147
+ content:
3148
+ - type: text
3149
+ text: 0700-1900
3150
+ - type: table_cell
3151
+ attrs:
3152
+ colspan: 1
3153
+ rowspan: 1
3154
+ colwidth:
3155
+ content:
3156
+ - type: paragraph
3157
+ content:
3158
+ - type: text
3159
+ text: 0700-1300
3160
+ - type: table_cell
3161
+ attrs:
3162
+ colspan: 1
3163
+ rowspan: 1
3164
+ colwidth:
3165
+ content:
3166
+ - type: paragraph
3167
+ content:
3168
+ - type: text
3169
+ text: '0800-1300-'
3170
+ - type: table_row
3171
+ content:
3172
+ - type: table_cell
3173
+ attrs:
3174
+ colspan: 1
3175
+ rowspan: 1
3176
+ colwidth:
3177
+ content:
3178
+ - type: paragraph
3179
+ content:
3180
+ - type: text
3181
+ text: " "
3182
+ - type: table_cell
3183
+ attrs:
3184
+ colspan: 1
3185
+ rowspan: 1
3186
+ colwidth:
3187
+ content:
3188
+ - type: paragraph
3189
+ content:
3190
+ - type: text
3191
+ text: Burfax
3192
+ - type: table_cell
3193
+ attrs:
3194
+ colspan: 1
3195
+ rowspan: 1
3196
+ colwidth:
3197
+ content:
3198
+ - type: paragraph
3199
+ content:
3200
+ - type: text
3201
+ text: " "
3202
+ - type: table_cell
3203
+ attrs:
3204
+ colspan: 1
3205
+ rowspan: 1
3206
+ colwidth:
3207
+ content:
3208
+ - type: paragraph
3209
+ content:
3210
+ - type: text
3211
+ text: " "
3212
+ - type: table_cell
3213
+ attrs:
3214
+ colspan: 1
3215
+ rowspan: 1
3216
+ colwidth:
3217
+ content:
3218
+ - type: paragraph
3219
+ content:
3220
+ - type: text
3221
+ text: " "
3222
+ - type: table_cell
3223
+ attrs:
3224
+ colspan: 1
3225
+ rowspan: 1
3226
+ colwidth:
3227
+ content:
3228
+ - type: paragraph
3229
+ content:
3230
+ - type: text
3231
+ text: " "
3232
+ - type: table_cell
3233
+ attrs:
3234
+ colspan: 1
3235
+ rowspan: 1
3236
+ colwidth:
3237
+ content:
3238
+ - type: paragraph
3239
+ content:
3240
+ - type: text
3241
+ text: 1)
3242
+ - type: table_row
3243
+ content:
3244
+ - type: table_cell
3245
+ attrs:
3246
+ colspan: 1
3247
+ rowspan: 1
3248
+ colwidth:
3249
+ content:
3250
+ - type: paragraph
3251
+ content:
3252
+ - type: text
3253
+ text: " "
3254
+ - type: table_cell
3255
+ attrs:
3256
+ colspan: 1
3257
+ rowspan: 1
3258
+ colwidth:
3259
+ content:
3260
+ - type: paragraph
3261
+ content:
3262
+ - type: text
3263
+ text: " "
3264
+ - type: table_cell
3265
+ attrs:
3266
+ colspan: 1
3267
+ rowspan: 1
3268
+ colwidth:
3269
+ content:
3270
+ - type: paragraph
3271
+ content:
3272
+ - type: text
3273
+ text: " "
3274
+ - type: table_cell
3275
+ attrs:
3276
+ colspan: 1
3277
+ rowspan: 1
3278
+ colwidth:
3279
+ content:
3280
+ - type: paragraph
3281
+ content:
3282
+ - type: text
3283
+ text: " "
3284
+ - type: table_cell
3285
+ attrs:
3286
+ colspan: 1
3287
+ rowspan: 1
3288
+ colwidth:
3289
+ content:
3290
+ - type: paragraph
3291
+ content:
3292
+ - type: text
3293
+ text: " "
3294
+ - type: table_cell
3295
+ attrs:
3296
+ colspan: 1
3297
+ rowspan: 1
3298
+ colwidth:
3299
+ content:
3300
+ - type: paragraph
3301
+ content:
3302
+ - type: text
3303
+ text: " "
3304
+ - type: table_cell
3305
+ attrs:
3306
+ colspan: 1
3307
+ rowspan: 1
3308
+ colwidth:
3309
+ content:
3310
+ - type: paragraph
3311
+ content:
3312
+ - type: text
3313
+ text: " "
3314
+ - type: table_row
3315
+ content:
3316
+ - type: table_cell
3317
+ attrs:
3318
+ colspan: 1
3319
+ rowspan: 1
3320
+ colwidth:
3321
+ content:
3322
+ - type: paragraph
3323
+ content:
3324
+ - type: text
3325
+ text: " "
3326
+ - type: table_cell
3327
+ attrs:
3328
+ colspan: 1
3329
+ rowspan: 1
3330
+ colwidth:
3331
+ content:
3332
+ - type: paragraph
3333
+ content:
3334
+ - type: text
3335
+ text: " "
3336
+ - type: table_cell
3337
+ attrs:
3338
+ colspan: 1
3339
+ rowspan: 1
3340
+ colwidth:
3341
+ content:
3342
+ - type: paragraph
3343
+ content:
3344
+ - type: text
3345
+ text: " "
3346
+ - type: table_cell
3347
+ attrs:
3348
+ colspan: 1
3349
+ rowspan: 1
3350
+ colwidth:
3351
+ content:
3352
+ - type: paragraph
3353
+ content:
3354
+ - type: text
3355
+ text: " "
3356
+ - type: table_cell
3357
+ attrs:
3358
+ colspan: 1
3359
+ rowspan: 1
3360
+ colwidth:
3361
+ content:
3362
+ - type: paragraph
3363
+ content:
3364
+ - type: text
3365
+ text: " "
3366
+ - type: table_cell
3367
+ attrs:
3368
+ colspan: 1
3369
+ rowspan: 1
3370
+ colwidth:
3371
+ content:
3372
+ - type: paragraph
3373
+ content:
3374
+ - type: text
3375
+ text: " "
3376
+ - type: table_cell
3377
+ attrs:
3378
+ colspan: 1
3379
+ rowspan: 1
3380
+ colwidth:
3381
+ content:
3382
+ - type: paragraph
3383
+ content:
3384
+ - type: text
3385
+ text: " "
3386
+ - type: table_row
3387
+ content:
3388
+ - type: table_cell
3389
+ attrs:
3390
+ colspan: 1
3391
+ rowspan: 1
3392
+ colwidth:
3393
+ content:
3394
+ - type: paragraph
3395
+ content:
3396
+ - type: text
3397
+ text: " "
3398
+ - type: table_cell
3399
+ attrs:
3400
+ colspan: 1
3401
+ rowspan: 1
3402
+ colwidth:
3403
+ content:
3404
+ - type: paragraph
3405
+ content:
3406
+ - type: text
3407
+ text: " "
3408
+ - type: table_cell
3409
+ attrs:
3410
+ colspan: 1
3411
+ rowspan: 1
3412
+ colwidth:
3413
+ content:
3414
+ - type: paragraph
3415
+ content:
3416
+ - type: text
3417
+ text: " "
3418
+ - type: table_cell
3419
+ attrs:
3420
+ colspan: 1
3421
+ rowspan: 1
3422
+ colwidth:
3423
+ content:
3424
+ - type: paragraph
3425
+ content:
3426
+ - type: text
3427
+ text: " "
3428
+ - type: table_cell
3429
+ attrs:
3430
+ colspan: 1
3431
+ rowspan: 1
3432
+ colwidth:
3433
+ content:
3434
+ - type: paragraph
3435
+ content:
3436
+ - type: text
3437
+ text: " "
3438
+ - type: table_cell
3439
+ attrs:
3440
+ colspan: 1
3441
+ rowspan: 1
3442
+ colwidth:
3443
+ content:
3444
+ - type: paragraph
3445
+ content:
3446
+ - type: text
3447
+ text: " "
3448
+ - type: table_cell
3449
+ attrs:
3450
+ colspan: 1
3451
+ rowspan: 1
3452
+ colwidth:
3453
+ content:
3454
+ - type: paragraph
3455
+ content:
3456
+ - type: text
3457
+ text: " "
3458
+ - type: paragraph
3459
+ content:
3460
+ - type: text
3461
+ text: " "
3462
+ - type: table
3463
+ content:
3464
+ - type: table_row
3465
+ content:
3466
+ - type: table_cell
3467
+ attrs:
3468
+ colspan: 1
3469
+ rowspan: 1
3470
+ colwidth:
3471
+ content:
3472
+ - type: paragraph
3473
+ content:
3474
+ - type: text
3475
+ marks:
3476
+ - type: strong
3477
+ text: PARTIE V
3478
+ - type: table_cell
3479
+ attrs:
3480
+ colspan: 1
3481
+ rowspan: 1
3482
+ colwidth:
3483
+ content:
3484
+ - type: paragraph
3485
+ content:
3486
+ - type: text
3487
+ marks:
3488
+ - type: strong
3489
+ text: PART V
3490
+ - type: table_cell
3491
+ attrs:
3492
+ colspan: 1
3493
+ rowspan: 1
3494
+ colwidth:
3495
+ content:
3496
+ - type: paragraph
3497
+ content:
3498
+ - type: text
3499
+ marks:
3500
+ - type: strong
3501
+ text: PARTE V
3502
+ - type: paragraph
3503
+ content:
3504
+ - type: text
3505
+ text: " "
3506
+ - type: paragraph
3507
+ content:
3508
+ - type: text
3509
+ text: 1)Sauf dimanche.
3510
+ - type: paragraph
3511
+ content:
3512
+ - type: text
3513
+ marks:
3514
+ - type: em
3515
+ text: 2)Except Sunday
3516
+ - type: paragraph
3517
+ content:
3518
+ - type: text
3519
+ text: 3)Salvo domingo