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,1093 @@
1
+ {
2
+ "type": "doc",
3
+ "content": [
4
+ {
5
+ "type": "paragraph",
6
+ "content": [
7
+ {
8
+ "type": "text",
9
+ "marks": [
10
+ {
11
+ "type": "strong"
12
+ }
13
+ ],
14
+ "text": "P "
15
+ },
16
+ {
17
+ "type": "text",
18
+ "text": " "
19
+ },
20
+ {
21
+ "type": "text",
22
+ "marks": [
23
+ {
24
+ "type": "strong"
25
+ }
26
+ ],
27
+ "text": "16 and 17  "
28
+ },
29
+ {
30
+ "type": "text",
31
+ "text": " "
32
+ },
33
+ {
34
+ "type": "text",
35
+ "marks": [
36
+ {
37
+ "type": "strong"
38
+ }
39
+ ],
40
+ "text": "Denmark"
41
+ },
42
+ {
43
+ "type": "text",
44
+ "text": "   "
45
+ },
46
+ {
47
+ "type": "text",
48
+ "marks": [
49
+ {
50
+ "type": "strong"
51
+ }
52
+ ],
53
+ "text": "SUP (delete)"
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "type": "paragraph",
59
+ "content": [
60
+ {
61
+ "type": "text",
62
+ "text": " "
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "type": "table",
68
+ "content": [
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
+ "marks": [
86
+ {
87
+ "type": "em"
88
+ }
89
+ ],
90
+ "text": "Country/"
91
+ }
92
+ ]
93
+ },
94
+ {
95
+ "type": "paragraph",
96
+ "content": [
97
+ {
98
+ "type": "text",
99
+ "marks": [
100
+ {
101
+ "type": "em"
102
+ }
103
+ ],
104
+ "text": "geographical area"
105
+ }
106
+ ]
107
+ }
108
+ ]
109
+ },
110
+ {
111
+ "type": "table_cell",
112
+ "attrs": {
113
+ "colspan": 1,
114
+ "rowspan": 1,
115
+ "colwidth": null
116
+ },
117
+ "content": [
118
+ {
119
+ "type": "paragraph",
120
+ "content": [
121
+ {
122
+ "type": "text",
123
+ "marks": [
124
+ {
125
+ "type": "em"
126
+ }
127
+ ],
128
+ "text": "Company Name/Address"
129
+ }
130
+ ]
131
+ }
132
+ ]
133
+ },
134
+ {
135
+ "type": "table_cell",
136
+ "attrs": {
137
+ "colspan": 1,
138
+ "rowspan": 1,
139
+ "colwidth": null
140
+ },
141
+ "content": [
142
+ {
143
+ "type": "paragraph",
144
+ "content": [
145
+ {
146
+ "type": "text",
147
+ "marks": [
148
+ {
149
+ "type": "em"
150
+ }
151
+ ],
152
+ "text": "Issuer Identifier Number"
153
+ }
154
+ ]
155
+ }
156
+ ]
157
+ },
158
+ {
159
+ "type": "table_cell",
160
+ "attrs": {
161
+ "colspan": 1,
162
+ "rowspan": 1,
163
+ "colwidth": null
164
+ },
165
+ "content": [
166
+ {
167
+ "type": "paragraph",
168
+ "content": [
169
+ {
170
+ "type": "text",
171
+ "marks": [
172
+ {
173
+ "type": "em"
174
+ }
175
+ ],
176
+ "text": "Contact"
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
+ "marks": [
196
+ {
197
+ "type": "em"
198
+ }
199
+ ],
200
+ "text": "Effective date of cancellation"
201
+ }
202
+ ]
203
+ }
204
+ ]
205
+ }
206
+ ]
207
+ },
208
+ {
209
+ "type": "table_row",
210
+ "content": [
211
+ {
212
+ "type": "table_cell",
213
+ "attrs": {
214
+ "colspan": 1,
215
+ "rowspan": 3,
216
+ "colwidth": null
217
+ },
218
+ "content": [
219
+ {
220
+ "type": "paragraph",
221
+ "content": [
222
+ {
223
+ "type": "text",
224
+ "text": "Denmark"
225
+ }
226
+ ]
227
+ }
228
+ ]
229
+ },
230
+ {
231
+ "type": "table_cell",
232
+ "attrs": {
233
+ "colspan": 1,
234
+ "rowspan": 1,
235
+ "colwidth": null
236
+ },
237
+ "content": [
238
+ {
239
+ "type": "paragraph",
240
+ "content": [
241
+ {
242
+ "type": "text",
243
+ "marks": [
244
+ {
245
+ "type": "strong"
246
+ }
247
+ ],
248
+ "text": "Telia Mobile"
249
+ },
250
+ {
251
+ "type": "hard_break",
252
+ "marks": [
253
+ {
254
+ "type": "strong"
255
+ }
256
+ ]
257
+ },
258
+ {
259
+ "type": "text",
260
+ "text": "Holmbladsgade 139"
261
+ },
262
+ {
263
+ "type": "hard_break"
264
+ },
265
+ {
266
+ "type": "text",
267
+ "text": "2300 COPENHAGEN S"
268
+ },
269
+ {
270
+ "type": "hard_break"
271
+ },
272
+ {
273
+ "type": "hard_break"
274
+ }
275
+ ]
276
+ },
277
+ {
278
+ "type": "paragraph",
279
+ "content": [
280
+ {
281
+ "type": "text",
282
+ "text": " "
283
+ }
284
+ ]
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "type": "table_cell",
290
+ "attrs": {
291
+ "colspan": 1,
292
+ "rowspan": 1,
293
+ "colwidth": null
294
+ },
295
+ "content": [
296
+ {
297
+ "type": "paragraph",
298
+ "content": [
299
+ {
300
+ "type": "text",
301
+ "marks": [
302
+ {
303
+ "type": "strong"
304
+ }
305
+ ],
306
+ "text": "89  45  05"
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "type": "paragraph",
312
+ "content": [
313
+ {
314
+ "type": "text",
315
+ "marks": [
316
+ {
317
+ "type": "strong"
318
+ }
319
+ ],
320
+ "text": " "
321
+ }
322
+ ]
323
+ }
324
+ ]
325
+ },
326
+ {
327
+ "type": "table_cell",
328
+ "attrs": {
329
+ "colspan": 1,
330
+ "rowspan": 1,
331
+ "colwidth": null
332
+ },
333
+ "content": [
334
+ {
335
+ "type": "paragraph",
336
+ "content": [
337
+ {
338
+ "type": "text",
339
+ "text": "Lene Damgaard"
340
+ },
341
+ {
342
+ "type": "hard_break"
343
+ },
344
+ {
345
+ "type": "text",
346
+ "text": "Holmbladsgade 139"
347
+ },
348
+ {
349
+ "type": "hard_break"
350
+ },
351
+ {
352
+ "type": "text",
353
+ "text": "DK-2300 KOBENHAVN S"
354
+ },
355
+ {
356
+ "type": "hard_break"
357
+ },
358
+ {
359
+ "type": "text",
360
+ "text": "Tel:        +45 2610 0762"
361
+ },
362
+ {
363
+ "type": "hard_break"
364
+ },
365
+ {
366
+ "type": "text",
367
+ "text": "Fax:       +45 8233 7309"
368
+ },
369
+ {
370
+ "type": "hard_break"
371
+ },
372
+ {
373
+ "type": "text",
374
+ "text": "Email:   lene.damgaard@telia.dk"
375
+ }
376
+ ]
377
+ }
378
+ ]
379
+ },
380
+ {
381
+ "type": "table_cell",
382
+ "attrs": {
383
+ "colspan": 1,
384
+ "rowspan": 1,
385
+ "colwidth": null
386
+ },
387
+ "content": [
388
+ {
389
+ "type": "paragraph",
390
+ "content": [
391
+ {
392
+ "type": "text",
393
+ "text": "21.XI.2011"
394
+ }
395
+ ]
396
+ }
397
+ ]
398
+ }
399
+ ]
400
+ },
401
+ {
402
+ "type": "table_row",
403
+ "content": [
404
+ {
405
+ "type": "table_cell",
406
+ "attrs": {
407
+ "colspan": 1,
408
+ "rowspan": 1,
409
+ "colwidth": null
410
+ },
411
+ "content": [
412
+ {
413
+ "type": "paragraph",
414
+ "content": [
415
+ {
416
+ "type": "text",
417
+ "marks": [
418
+ {
419
+ "type": "strong"
420
+ }
421
+ ],
422
+ "text": "TDC  A/S"
423
+ },
424
+ {
425
+ "type": "hard_break",
426
+ "marks": [
427
+ {
428
+ "type": "strong"
429
+ }
430
+ ]
431
+ },
432
+ {
433
+ "type": "text",
434
+ "text": "Telegade 2 "
435
+ },
436
+ {
437
+ "type": "hard_break"
438
+ },
439
+ {
440
+ "type": "text",
441
+ "text": "DK-2630 TAASTR"
442
+ }
443
+ ]
444
+ }
445
+ ]
446
+ },
447
+ {
448
+ "type": "table_cell",
449
+ "attrs": {
450
+ "colspan": 1,
451
+ "rowspan": 1,
452
+ "colwidth": null
453
+ },
454
+ "content": [
455
+ {
456
+ "type": "paragraph",
457
+ "content": [
458
+ {
459
+ "type": "text",
460
+ "marks": [
461
+ {
462
+ "type": "strong"
463
+ }
464
+ ],
465
+ "text": "89  45  00"
466
+ }
467
+ ]
468
+ }
469
+ ]
470
+ },
471
+ {
472
+ "type": "table_cell",
473
+ "attrs": {
474
+ "colspan": 1,
475
+ "rowspan": 1,
476
+ "colwidth": null
477
+ },
478
+ "content": [
479
+ {
480
+ "type": "paragraph",
481
+ "content": [
482
+ {
483
+ "type": "text",
484
+ "text": "TDC A/S, PMB"
485
+ },
486
+ {
487
+ "type": "hard_break"
488
+ },
489
+ {
490
+ "type": "text",
491
+ "text": "Teglholmsgade 1"
492
+ },
493
+ {
494
+ "type": "hard_break"
495
+ },
496
+ {
497
+ "type": "text",
498
+ "text": "DK-0900 COPENHAGEN C"
499
+ },
500
+ {
501
+ "type": "hard_break"
502
+ },
503
+ {
504
+ "type": "text",
505
+ "text": "Tel:        +45 33 992091"
506
+ },
507
+ {
508
+ "type": "hard_break"
509
+ },
510
+ {
511
+ "type": "text",
512
+ "text": "Fax:       +45 33 200318"
513
+ },
514
+ {
515
+ "type": "hard_break"
516
+ },
517
+ {
518
+ "type": "text",
519
+ "text": "Email:"
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": "2.XII.2011"
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
+ "marks": [
563
+ {
564
+ "type": "strong"
565
+ }
566
+ ],
567
+ "text": "TDC  A/S"
568
+ },
569
+ {
570
+ "type": "hard_break",
571
+ "marks": [
572
+ {
573
+ "type": "strong"
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "type": "text",
579
+ "text": "Telegade 2 "
580
+ },
581
+ {
582
+ "type": "hard_break"
583
+ },
584
+ {
585
+ "type": "text",
586
+ "text": "DK-2630 TAASTR"
587
+ }
588
+ ]
589
+ }
590
+ ]
591
+ },
592
+ {
593
+ "type": "table_cell",
594
+ "attrs": {
595
+ "colspan": 1,
596
+ "rowspan": 1,
597
+ "colwidth": null
598
+ },
599
+ "content": [
600
+ {
601
+ "type": "paragraph",
602
+ "content": [
603
+ {
604
+ "type": "text",
605
+ "marks": [
606
+ {
607
+ "type": "strong"
608
+ }
609
+ ],
610
+ "text": "89  45  02"
611
+ }
612
+ ]
613
+ }
614
+ ]
615
+ },
616
+ {
617
+ "type": "table_cell",
618
+ "attrs": {
619
+ "colspan": 1,
620
+ "rowspan": 1,
621
+ "colwidth": null
622
+ },
623
+ "content": [
624
+ {
625
+ "type": "paragraph",
626
+ "content": [
627
+ {
628
+ "type": "text",
629
+ "text": "TDC A/S, PMB "
630
+ },
631
+ {
632
+ "type": "hard_break"
633
+ },
634
+ {
635
+ "type": "text",
636
+ "text": "Teglholmsgade 1"
637
+ },
638
+ {
639
+ "type": "hard_break"
640
+ },
641
+ {
642
+ "type": "text",
643
+ "text": "DK-0900 COPENHAGEN C"
644
+ },
645
+ {
646
+ "type": "hard_break"
647
+ },
648
+ {
649
+ "type": "text",
650
+ "text": "Tel:        +45 33 992091"
651
+ },
652
+ {
653
+ "type": "hard_break"
654
+ },
655
+ {
656
+ "type": "text",
657
+ "text": "Fax:       +45 33 200318"
658
+ },
659
+ {
660
+ "type": "hard_break"
661
+ },
662
+ {
663
+ "type": "text",
664
+ "text": "Email:"
665
+ }
666
+ ]
667
+ }
668
+ ]
669
+ },
670
+ {
671
+ "type": "table_cell",
672
+ "attrs": {
673
+ "colspan": 1,
674
+ "rowspan": 1,
675
+ "colwidth": null
676
+ },
677
+ "content": [
678
+ {
679
+ "type": "paragraph",
680
+ "content": [
681
+ {
682
+ "type": "text",
683
+ "text": "2.XII.2011"
684
+ }
685
+ ]
686
+ }
687
+ ]
688
+ }
689
+ ]
690
+ }
691
+ ]
692
+ },
693
+ {
694
+ "type": "paragraph",
695
+ "content": [
696
+ {
697
+ "type": "text",
698
+ "marks": [
699
+ {
700
+ "type": "strong"
701
+ }
702
+ ],
703
+ "text": " "
704
+ }
705
+ ]
706
+ },
707
+ {
708
+ "type": "paragraph",
709
+ "content": [
710
+ {
711
+ "type": "text",
712
+ "marks": [
713
+ {
714
+ "type": "strong"
715
+ }
716
+ ],
717
+ "text": "P "
718
+ },
719
+ {
720
+ "type": "text",
721
+ "text": " "
722
+ },
723
+ {
724
+ "type": "text",
725
+ "marks": [
726
+ {
727
+ "type": "strong"
728
+ }
729
+ ],
730
+ "text": "56   United Kingdom"
731
+ },
732
+ {
733
+ "type": "text",
734
+ "text": "    "
735
+ },
736
+ {
737
+ "type": "text",
738
+ "marks": [
739
+ {
740
+ "type": "strong"
741
+ }
742
+ ],
743
+ "text": "ADD"
744
+ }
745
+ ]
746
+ },
747
+ {
748
+ "type": "paragraph",
749
+ "content": [
750
+ {
751
+ "type": "text",
752
+ "text": " "
753
+ }
754
+ ]
755
+ },
756
+ {
757
+ "type": "table",
758
+ "content": [
759
+ {
760
+ "type": "table_row",
761
+ "content": [
762
+ {
763
+ "type": "table_cell",
764
+ "attrs": {
765
+ "colspan": 1,
766
+ "rowspan": 1,
767
+ "colwidth": null
768
+ },
769
+ "content": [
770
+ {
771
+ "type": "paragraph",
772
+ "content": [
773
+ {
774
+ "type": "text",
775
+ "marks": [
776
+ {
777
+ "type": "em"
778
+ }
779
+ ],
780
+ "text": "Country/"
781
+ },
782
+ {
783
+ "type": "hard_break",
784
+ "marks": [
785
+ {
786
+ "type": "em"
787
+ }
788
+ ]
789
+ },
790
+ {
791
+ "type": "text",
792
+ "marks": [
793
+ {
794
+ "type": "em"
795
+ }
796
+ ],
797
+ "text": "geographical area"
798
+ }
799
+ ]
800
+ }
801
+ ]
802
+ },
803
+ {
804
+ "type": "table_cell",
805
+ "attrs": {
806
+ "colspan": 1,
807
+ "rowspan": 1,
808
+ "colwidth": null
809
+ },
810
+ "content": [
811
+ {
812
+ "type": "paragraph",
813
+ "content": [
814
+ {
815
+ "type": "text",
816
+ "marks": [
817
+ {
818
+ "type": "em"
819
+ }
820
+ ],
821
+ "text": "Company Name/Address"
822
+ }
823
+ ]
824
+ }
825
+ ]
826
+ },
827
+ {
828
+ "type": "table_cell",
829
+ "attrs": {
830
+ "colspan": 1,
831
+ "rowspan": 1,
832
+ "colwidth": null
833
+ },
834
+ "content": [
835
+ {
836
+ "type": "paragraph",
837
+ "content": [
838
+ {
839
+ "type": "text",
840
+ "marks": [
841
+ {
842
+ "type": "em"
843
+ }
844
+ ],
845
+ "text": "Issuer Identifier Number"
846
+ }
847
+ ]
848
+ }
849
+ ]
850
+ },
851
+ {
852
+ "type": "table_cell",
853
+ "attrs": {
854
+ "colspan": 1,
855
+ "rowspan": 1,
856
+ "colwidth": null
857
+ },
858
+ "content": [
859
+ {
860
+ "type": "paragraph",
861
+ "content": [
862
+ {
863
+ "type": "text",
864
+ "marks": [
865
+ {
866
+ "type": "em"
867
+ }
868
+ ],
869
+ "text": "Contact"
870
+ }
871
+ ]
872
+ }
873
+ ]
874
+ },
875
+ {
876
+ "type": "table_cell",
877
+ "attrs": {
878
+ "colspan": 1,
879
+ "rowspan": 1,
880
+ "colwidth": null
881
+ },
882
+ "content": [
883
+ {
884
+ "type": "paragraph",
885
+ "content": [
886
+ {
887
+ "type": "text",
888
+ "marks": [
889
+ {
890
+ "type": "em"
891
+ }
892
+ ],
893
+ "text": "Effective date of usage"
894
+ }
895
+ ]
896
+ }
897
+ ]
898
+ }
899
+ ]
900
+ },
901
+ {
902
+ "type": "table_row",
903
+ "content": [
904
+ {
905
+ "type": "table_cell",
906
+ "attrs": {
907
+ "colspan": 1,
908
+ "rowspan": 1,
909
+ "colwidth": null
910
+ },
911
+ "content": [
912
+ {
913
+ "type": "paragraph",
914
+ "content": [
915
+ {
916
+ "type": "text",
917
+ "text": "United Kingdom"
918
+ }
919
+ ]
920
+ }
921
+ ]
922
+ },
923
+ {
924
+ "type": "table_cell",
925
+ "attrs": {
926
+ "colspan": 1,
927
+ "rowspan": 1,
928
+ "colwidth": null
929
+ },
930
+ "content": [
931
+ {
932
+ "type": "paragraph",
933
+ "content": [
934
+ {
935
+ "type": "text",
936
+ "text": "Valuedial LTD"
937
+ },
938
+ {
939
+ "type": "hard_break"
940
+ },
941
+ {
942
+ "type": "text",
943
+ "text": "4 Paradise Street"
944
+ },
945
+ {
946
+ "type": "hard_break"
947
+ },
948
+ {
949
+ "type": "text",
950
+ "text": "Sheffield"
951
+ },
952
+ {
953
+ "type": "hard_break"
954
+ },
955
+ {
956
+ "type": "text",
957
+ "text": "South Yorkshire S1 2DF"
958
+ },
959
+ {
960
+ "type": "hard_break"
961
+ },
962
+ {
963
+ "type": "text",
964
+ "text": "United Kingdom"
965
+ }
966
+ ]
967
+ }
968
+ ]
969
+ },
970
+ {
971
+ "type": "table_cell",
972
+ "attrs": {
973
+ "colspan": 1,
974
+ "rowspan": 1,
975
+ "colwidth": null
976
+ },
977
+ "content": [
978
+ {
979
+ "type": "paragraph",
980
+ "content": [
981
+ {
982
+ "type": "text",
983
+ "marks": [
984
+ {
985
+ "type": "strong"
986
+ }
987
+ ],
988
+ "text": "89 44 06"
989
+ }
990
+ ]
991
+ }
992
+ ]
993
+ },
994
+ {
995
+ "type": "table_cell",
996
+ "attrs": {
997
+ "colspan": 1,
998
+ "rowspan": 1,
999
+ "colwidth": null
1000
+ },
1001
+ "content": [
1002
+ {
1003
+ "type": "paragraph",
1004
+ "content": [
1005
+ {
1006
+ "type": "text",
1007
+ "text": "Mr Chris Baxter"
1008
+ },
1009
+ {
1010
+ "type": "hard_break"
1011
+ },
1012
+ {
1013
+ "type": "text",
1014
+ "text": "Valuedial LTD"
1015
+ },
1016
+ {
1017
+ "type": "hard_break"
1018
+ },
1019
+ {
1020
+ "type": "text",
1021
+ "text": "4 Paradise Street"
1022
+ },
1023
+ {
1024
+ "type": "hard_break"
1025
+ },
1026
+ {
1027
+ "type": "text",
1028
+ "text": "Sheffield"
1029
+ },
1030
+ {
1031
+ "type": "hard_break"
1032
+ },
1033
+ {
1034
+ "type": "text",
1035
+ "text": "South Yorkshire S1 2DF"
1036
+ },
1037
+ {
1038
+ "type": "hard_break"
1039
+ },
1040
+ {
1041
+ "type": "text",
1042
+ "text": "United Kingdom"
1043
+ },
1044
+ {
1045
+ "type": "hard_break"
1046
+ },
1047
+ {
1048
+ "type": "text",
1049
+ "text": "Tel:        +44 1143 190525"
1050
+ },
1051
+ {
1052
+ "type": "hard_break"
1053
+ },
1054
+ {
1055
+ "type": "text",
1056
+ "text": "Fax:       +44 871 974 3425"
1057
+ },
1058
+ {
1059
+ "type": "hard_break"
1060
+ },
1061
+ {
1062
+ "type": "text",
1063
+ "text": "E-mail:  chris@valuedial.co.uk"
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": "3.III.2012"
1083
+ }
1084
+ ]
1085
+ }
1086
+ ]
1087
+ }
1088
+ ]
1089
+ }
1090
+ ]
1091
+ }
1092
+ ]
1093
+ }