aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D01B/Simples/S3035.hs
blob: c335aaca77c081849884e8a93d6fd3425a0887b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
{-# LANGUAGE OverloadedStrings #-}

---- Machine generated code.
---- Output of edi-parser-scaffolder

module Text.Edifact.D01B.Simples.S3035
  ( simple3035
  ) where

import           Text.Edifact.Parsing
import           Text.Edifact.Types   (Value)

-- | Derived from this specification:
--
-- > *    3035  Party function code qualifier                           [C]
-- >
-- >      Desc: Code giving specific meaning to a party.
-- >
-- >      Repr: an..3
-- >
-- >      AA    Party to be billed (AAR Accounting rule 11)
-- >               Party to be billed in accordance with AAR Accounting
-- >               rule 11.
-- >
-- >      AB    Buyer's agent/representative
-- >               Third party who arranged the purchase of merchandise on
-- >               behalf of the actual buyer.
-- >
-- >      AE    Declarant's agent/representative
-- >               Any natural or legal person who makes a declaration to
-- >               an official body on behalf of another natural or legal
-- >               person, where legally permitted (CCC).
-- >
-- >      AF    Transit principal
-- >               Natural or legal person responsible for the satisfactory
-- >               performance of a Customs transit operation. Source: CCC.
-- >
-- >      AG    Agent/representative
-- >               (3196) Party authorized to act on behalf of another
-- >               party.
-- >
-- >      AH    Transit principal's agent/representative
-- >               Agent acting on behalf of the transit principal (CCC).
-- >
-- >      AI    Successful job applicant
-- >               Person who has been chosen for a job.
-- >
-- >      AJ    Party issuing mutually agreed codes
-- >               The party which has issued all mutually agreed codes
-- >               used in the message.
-- >
-- >      AK    Acknowledgement recipient
-- >               Party to whom acknowledgement should be sent.
-- >
-- >      AL    Principal
-- >               (3340) Party accepting liability for goods held or
-- >               moving (e.g. transit) under a Customs authorization and
-- >               - when applicable - a guarantee.
-- >
-- >      AM    Authorized official
-- >               Employee of a company or firm authorized to act on
-- >               behalf of that company or firm e.g. to make a Customs
-- >               declaration.
-- >
-- >      AN    Approved importer
-- >               Person or company which is authorised by the relevant
-- >               Customs authority to import goods without payment all
-- >               taxes or specific taxes at the point of entry into the
-- >               country.
-- >
-- >      AO    Account of
-- >               Party account is assigned to.
-- >
-- >      AP    Accepting party
-- >               (3352) Party accepting goods, products, services etc.
-- >
-- >      AQ    Approved consignor
-- >               Person or company approved by the relevant authority in
-- >               the country to pack and export specific goods under
-- >               Customs supervision.
-- >
-- >      AR    Authorized exporter
-- >               Exporter authorized/approved by Customs for special
-- >               Customs procedures e.g. simplified procedure.
-- >
-- >      AS    Account servicing financial institution
-- >               Identifies the financial institution servicing the
-- >               account(s).
-- >
-- >      AT    Authorized importer
-- >               Importer authorized/approved by Customs for special
-- >               Customs procedures e.g. simplified procedure.
-- >
-- >      AU    Authorized trader (transit)
-- >               Trader authorized/approved by Customs for special
-- >               transit procedures e.g. simplified procedure.
-- >
-- >      AV    Authorizing official
-- >               Party that has delegated the authority to take a certain
-- >               action on behalf of a company or agency.
-- >
-- >      AW    Applicant's bank
-- >               Financial institution which is requested to issue the
-- >               documentary credit.
-- >
-- >      AX    Authenticating party
-- >               Party which certifies that a document is authentic.
-- >
-- >      AY    Animal being investigated
-- >               Animal being investigated.
-- >
-- >      AZ    Issuing bank
-- >               Financial institution which issues the documentary
-- >               credit, if the applicant's bank is not acting as the
-- >               issuing bank.
-- >
-- >      B1    Contact bank 1
-- >               Identifies an additional bank which must be informed of
-- >               certain aspects of the message.
-- >
-- >      B2    Contact bank 2
-- >               Identifies an additional bank which must be informed of
-- >               certain aspects of the message.
-- >
-- >      BA    Booking agent
-- >               Party acting as a booking office for transport and
-- >               forwarding services.
-- >
-- >      BB    Buyer's bank
-- >               [3420] Bank employed by the buyer to make payment.
-- >
-- >      BC    Negotiating bank
-- >               Financial institution to whom a negotiable documentary
-- >               credit is directed.
-- >
-- >      BD    Documentary credit reimbursing bank
-- >               Self-explanatory.
-- >
-- >      BE    Beneficiary
-- >               The ultimate recipient of the funds. Normally the
-- >               account owner who is reimbursed by the payor.
-- >
-- >      BF    Beneficiary's bank
-- >               Identifies the account servicer for the beneficiary or
-- >               the payee.
-- >
-- >      BG    Employer
-- >               Self-explanatory.
-- >
-- >      BH    Previous employer
-- >               Previous employer of a person(s).
-- >
-- >      BI    Buyer's financial institution
-- >               Financial institution designated by buyer to make
-- >               payment.
-- >
-- >      BJ    Release to party
-- >               Party to which the goods or container(s) is (are) to be
-- >               released.
-- >
-- >      BK    Financial institution
-- >               Party acting as financial institution.
-- >
-- >      BL    Bill of lading recipient
-- >               Party to receive B/L.
-- >
-- >      BM    Insured
-- >               Party which is the object of an insurance contract.
-- >
-- >      BN    Insurance beneficiary
-- >               Party which benefits from insurance coverage.
-- >
-- >      BO    Broker or sales office
-- >               Party acting in the name of the seller as broker or as
-- >               sales office.
-- >
-- >      BP    Building site purchaser
-- >               Party at the building site responsible for the
-- >               purchasing of goods and services for that particular
-- >               site.
-- >
-- >      BQ    Cheque drawn bank
-- >               Identifies the bank on which the cheque should be drawn,
-- >               as instructed by the ordering customer.
-- >
-- >      BS    Bill and ship to
-- >               Party receiving goods and relevant invoice.
-- >
-- >      BT    Party to be billed for other than freight (bill to)
-- >               Party receiving invoice excluding freight costs.
-- >
-- >      BU    Service bureau
-- >               Party carrying out service bureau processing work, (e.g.
-- >               a payroll bureau).
-- >
-- >      BV    Member
-- >               Member of a group (e.g. of a group of persons or a
-- >               service scheme).
-- >
-- >      BW    Borrower
-- >               A person who acquires something temporarily with the
-- >               promise or intention of returning.
-- >
-- >      BX    Building site engineer
-- >               Party at the building site responsible for engineering
-- >               matters for that particular site.
-- >
-- >      BY    Buyer
-- >               Party to whom merchandise and/or service is sold.
-- >
-- >      BZ    Building site forwarder
-- >               Party at the building site responsible for forwarding
-- >               the received goods on that particular site.
-- >
-- >      C1    In care of party no. 1
-- >               A person taking responsibility on behalf of party no. 1.
-- >
-- >      C2    In care of party no. 2
-- >               A person taking responsibility on behalf of party no. 2.
-- >
-- >      CA    Carrier
-- >               (3126) Party undertaking or arranging transport of goods
-- >               between named points.
-- >
-- >      CB    Customs broker
-- >               Agent or representative or a professional Customs
-- >               clearing agent who deals directly with Customs on behalf
-- >               of the importer or exporter (CCC).
-- >
-- >      CC    Claimant
-- >               Party who claims goods or insurance.
-- >
-- >      CD    Agent's bank
-- >               Bank of the agent.
-- >
-- >      CE    Ceding company
-- >               Company which cedes something to someone.
-- >
-- >      CF    Container operator/lessee
-- >               Party to whom the possession of specified property (e.g.
-- >               container) has been conveyed for a period of time in
-- >               return for rental payments.
-- >
-- >      CG    Carrier's agent
-- >               Party authorized to act for or on behalf of carrier.
-- >
-- >      CH    Connecting carrier
-- >               Owner or operator of a transportation conveyance to
-- >               which goods in a given transaction will be transferred.
-- >
-- >      CI    Commission processor
-- >               Party who provides extra treatment to goods on
-- >               commission base.
-- >
-- >      CJ    Previous member
-- >               Previous member of a group of persons or a service
-- >               scheme.
-- >
-- >      CK    Empty equipment despatch party
-- >               Party from whose premises empty equipment will be or has
-- >               been despatched.
-- >
-- >      CL    Container location party
-- >               Party from whose premises container will be or has been
-- >               despatched.
-- >
-- >      CM    Customs
-- >               Identification of customs authority relevant to the
-- >               transaction or shipment.
-- >
-- >      CN    Consignee
-- >               (3132) Party to which goods are consigned.
-- >
-- >      CNX   Cash pool top account servicing financial institution
-- >               Identification of a financial institution servicing the
-- >               top account of a cash pool.
-- >
-- >      CNY   Cash pool level account servicing financial institution
-- >               Identification of a financial institution servicing the
-- >               level account of a cash pool.
-- >
-- >      CNZ   Cash pool sub-account servicing financial institution
-- >               Identification of a financial institution servicing the
-- >               sub-account of a cash pool.
-- >
-- >      CO    Corporate office
-- >               Identification of the Head Office within a company.
-- >
-- >      COA   Entity in which a financial interest is held
-- >               Business in which a financial interest is held.
-- >
-- >      COB   Intermediate level parent company
-- >               Identifies an intermediate parent company.
-- >
-- >      COC   Transshipment party
-- >               A party responsible for transshipment.
-- >
-- >      COD   Quotation requesting party
-- >               Party sending a request for a quotation.
-- >
-- >      COE   Party maintaining the codes used in the message
-- >               The party which maintains the codes used in the message.
-- >
-- >      COF   Party maintaining the identifiers used in the message
-- >               The party which maintains the identifiers used in the
-- >               message.
-- >
-- >      COG   Dispatcher
-- >               An individual responsible for sending something to a
-- >               destination.
-- >
-- >      COH   Submitter of sample
-- >               An entity responsible for the submission of a sample.
-- >
-- >      COI   Institutional provider
-- >               The institution providing the service.
-- >
-- >      COJ   Primary health care provider
-- >               Health care provider that has primary responsibility for
-- >               patient.
-- >
-- >      COK   Assistant surgeon
-- >               Physician assisting in surgery.
-- >
-- >      COL   Admitting health care provider
-- >               Health care provider that admitted the patient.
-- >
-- >      COM   Referring health care provider
-- >               Health care provider that referred patient to current
-- >               provider of services.
-- >
-- >      CON   Supervising health care provider
-- >               Health care provider that supervised the rendering of a
-- >               service.
-- >
-- >      COO   Party providing financing
-- >               Identifies the party providing the financing.
-- >
-- >      COP   Convoying party
-- >               Party designated to escort the transported goods.
-- >
-- >      COQ   Nominated bank
-- >               Identifies the nominated bank.
-- >
-- >      COR   Family member
-- >               Identifies a family member.
-- >
-- >      COS   Co-participant
-- >               Identifies another party who participates in an
-- >               activity.
-- >
-- >      COT   Involved party
-- >               Party which is involved in an activity.
-- >
-- >      COU   Assigner
-- >               Identifies the entity who assigns.
-- >
-- >      COV   Registered principal
-- >               An individual who is registered as a principal for an
-- >               entity.
-- >
-- >      COW   Freight payer on behalf of the consignor
-- >               Freight payer is a third party acting on behalf of the
-- >               consignor.
-- >
-- >      COX   Freight payer on behalf of the consignee
-- >               Freight payer is a third party acting on behalf of the
-- >               consignee.
-- >
-- >      COY   Party responsible for disinfection
-- >               Party responsible for performing disinfection
-- >               operations.
-- >
-- >      COZ   Party responsible for refueling
-- >               Party responsible for performing refueling operations.
-- >
-- >      CP    Party to receive certificate of compliance
-- >               Party acting for or on behalf of seller in matters
-- >               concerning compliance.
-- >
-- >      CPA   Advising bank
-- >               Identifies the financial institution used by the issuing
-- >               bank to advise the documentary credit.
-- >
-- >      CPB   Reimbursing bank
-- >               Identifies the financial institution through which the
-- >               reimbursement is to be effected.
-- >
-- >      CPC   Advise through bank
-- >               Identifies the financial institution through which the
-- >               advising bank is to advise.
-- >
-- >      CPD   Charges payer at destination
-- >               Party, other than the ordering party, which has to pay
-- >               the charges concerning the destination operations.
-- >
-- >      CPE   Vessel master
-- >               Master of the conveyance.
-- >
-- >      CPF   Means of transport charterer
-- >               Charterer of the means of transport.
-- >
-- >      CPG   Excise party
-- >               Party to whom excise must be paid.
-- >
-- >      CPH   Copy report to
-- >               Party receiving a copy of a report.
-- >
-- >      CPI   Related healthcare party
-- >               A healthcare party related to the subject.
-- >
-- >      CPJ   Clinical information provider
-- >               Party providing clinical information.
-- >
-- >      CPK   Service requester
-- >               Party requesting a service.
-- >
-- >      CPL   Patient admitted by
-- >               Party who admitted a patient.
-- >
-- >      CPM   Patient discharged to
-- >               The party who receives the discharged patient.
-- >
-- >      CPN   Patient hosted by
-- >               The party hosting the patient.
-- >
-- >      CPO   Prescriber’s contact person
-- >               Contact person for the prescriber.
-- >
-- >      CQ    Cheque order
-- >               Party to which the cheque will be ordered, when
-- >               different from the beneficiary.
-- >
-- >      CR    Empty equipment return party
-- >               Party to whose premises empty equipment will be or has
-- >               been returned.
-- >
-- >      CS    Consolidator
-- >               Party consolidating various consignments, payments etc.
-- >
-- >      CT    Consignee to be specified
-- >               The party to be identified at a later time as the
-- >               consignee.
-- >
-- >      CU    Container return company
-- >               The company to which containers have to be returned.
-- >
-- >      CV    Consignee of vessel
-- >               Party to which the vessel shall be delivered.
-- >
-- >      CW    Equipment owner
-- >               Owner of equipment (container, etc.).
-- >
-- >      CX    Consignee's agent
-- >               Party authorized to act on behalf of the consignee.
-- >
-- >      CY    Commissionable agent
-- >               IATA cargo agent entitled to commission.
-- >
-- >      CZ    Consignor
-- >               (3336) Party which, by contract with a carrier, consigns
-- >               or sends goods with the carrier, or has them conveyed by
-- >               him. Synonym: shipper, sender.
-- >
-- >      DA    Available with bank (documentary credits)
-- >               Financial institution with whom the documentary credit
-- >               is available.
-- >
-- >      DB    Distributor branch
-- >               The affiliate of a retailer or distributor.
-- >
-- >      DC    Deconsolidator
-- >               Party that splits up a large consignment composed of
-- >               separate consignments of goods. The smaller consignments
-- >               of goods were grouped together into that large
-- >               consignment for carriage as a larger unit in order to
-- >               obtain a reduced rate.
-- >
-- >      DCP   Despatch charge payer
-- >               Party, other than the ordering party, which has to pay
-- >               the charges concerning the despatch operations.
-- >
-- >      DCQ   Prescription database owner
-- >               Organisation or person owning a prescription database.
-- >
-- >      DCR   Original prescriber
-- >               The doctor who issued the original prescription.
-- >
-- >      DCS   Temporary employee
-- >               A person employed on a temporary basis.
-- >
-- >      DCT   Designer
-- >               A party who designs.
-- >
-- >      DCU   Quotation delivered to
-- >               Party to whom the quotation is to be or has been
-- >               delivered.
-- >
-- >      DCV   Developer
-- >               A party who develops.
-- >
-- >      DCW   Test execution party
-- >               The party performing a test.
-- >
-- >      DCX   Party to receive refund
-- >               Party to whom a refund is given.
-- >
-- >      DCY   Authorised issuer of prescription
-- >               Party authorised to issue a prescription.
-- >
-- >      DCZ   Authorised dispenser of medicine
-- >               Organisation or person authorised to dispense medicine.
-- >
-- >      DD    Documentary credit account party's bank
-- >               Bank of the documentary credit account party.
-- >
-- >      DDA   Report responsible party
-- >               The party or person taking responsibility for a report.
-- >
-- >      DDB   Initial sender
-- >               The party who does the initial sending.
-- >
-- >      DDC   The party authorising the original prescription
-- >               The party authorising the issuer of the original
-- >               prescription.
-- >
-- >      DDD   Applicant
-- >               A party who applies for something.
-- >
-- >      DDE   Meter reader
-- >               A party physically reading the meter.
-- >
-- >      DDF   Primary electronic business contact
-- >               Code specifying a party who serves as a business
-- >               entity’s primary contact for matters related to
-- >               electronic business.
-- >
-- >      DDG   Alternate electronic business contact
-- >               Code specifying a party who serves as a business
-- >               entity’s alternate contact for matters related to
-- >               electronic business.
-- >
-- >      DDH   Primary government business contact
-- >               Code specifying a party who serves as a business
-- >               entity’s primary contact for matters related to doing
-- >               business with the government.
-- >
-- >      DDI   Alternate government business contact
-- >               Code specifying a party who serves as a business
-- >               entity’s alternate contact for matters related to doing
-- >               business with the government.
-- >
-- >      DDJ   Past performance contact
-- >               Code specifying a party who serves as a business
-- >               entity’s contact for matters related to the past
-- >               performance of that entity.
-- >
-- >      DDK   Balance responsible party
-- >               A party responsible for balancing supply and
-- >               consumption.
-- >
-- > +    DDL   Group of passengers
-- >               A group of persons conveyed by a means of transport,
-- >               other than the crew.
-- >
-- >      DE    Depositor
-- >               Party depositing goods, financial payments or documents.
-- >
-- >      DF    Documentary credit applicant
-- >               Party at whose request the applicant's bank/issuing bank
-- >               is to issue a documentary credit.
-- >
-- >      DG    Documentary credit beneficiary
-- >               Party in whose favour the documentary credit is to be
-- >               issued and the party that must comply with the credit's
-- >               terms and conditions.
-- >
-- >      DH    Documentary credit account party
-- >               Party which is responsible for the payment settlement of
-- >               the documentary credit with the applicant's bank/issuing
-- >               bank, if different from the documentary credit
-- >               applicant.
-- >
-- >      DI    Documentary credit second beneficiary
-- >               Party to whom the documentary credit can be transferred.
-- >
-- >      DJ    Party according to documentary credit transaction
-- >               Party related to documentary credit transaction.
-- >
-- >      DK    Documentary credit beneficiary's bank
-- >               Financial institution with which the beneficiary of the
-- >               documentary credit maintains an account.
-- >
-- >      DL    Factor
-- >               Company offering a financial service whereby a firm
-- >               sells or transfers title to its accounts receivable to
-- >               the factoring company.
-- >
-- >      DM    Party to whom documents are to be presented
-- >               Party to whom documents are to be presented.
-- >
-- >      DN    Owner of operation
-- >               Owner of the operation.
-- >
-- >      DO    Document recipient
-- >               (1370) Party which should receive a specified document.
-- >
-- >      DP    Delivery party
-- >               (3144) Party to which goods should be delivered, if not
-- >               identical with consignee.
-- >
-- >      DQ    Owner's agent
-- >               Person acting on delegation of powers of the owner.
-- >
-- >      DR    Driver
-- >               Person who drives a means of transport.
-- >
-- >      DS    Distributor
-- >               Party distributing goods, financial payments or
-- >               documents.
-- >
-- >      DT    Declarant
-- >               (3140) Party who makes a declaration to an official body
-- >               or - where legally permitted - in whose name, or on
-- >               whose behalf, a declaration to an official body is made.
-- >
-- >      DU    Owner's representative
-- >               Person commissioned by the owner to represent him in
-- >               certain circumstances.
-- >
-- >      DV    Project management office
-- >               Party commissioned by the owner to follow through the
-- >               execution of all works.
-- >
-- >      DW    Drawee
-- >               Party on whom drafts must be drawn.
-- >
-- >      DX    Engineer (construction)
-- >               Party representing the contractor to advise and
-- >               supervise engineering aspects of the works.
-- >
-- >      DY    Engineer, resident (construction)
-- >               Party commissioned by the owner to advise and supervise
-- >               engineering aspects of the works.
-- >
-- >      DZ    Architect
-- >               A designer who prepares plans for buildings, ships, etc.
-- >               and supervises their construction.
-- >
-- >      EA    Architect-designer
-- >               Designer of the construction project.
-- >
-- >      EB    Building inspectorate
-- >               Party controlling the conformity of works to legal and
-- >               regulation rules.
-- >
-- >      EC    Exchanger
-- >               Party exchanging currencies or goods.
-- >
-- >      ED    Engineer, consultant
-- >               Party providing professional engineering services.
-- >
-- >      EE    Location of goods for customs examination before clearance
-- >               SE.
-- >
-- >      EF    Project coordination office
-- >               Party responsible for technical coordination of works.
-- >
-- >      EG    Surveyor, topographical
-- >               Party responsible for topographical measurements.
-- >
-- >      EH    Engineer, measurement
-- >               Party responsible for quantity measurements.
-- >
-- >      EI    Controller, quality
-- >               Party controlling the quality of goods and workmanship
-- >               for the project.
-- >
-- >      EJ    Surveyor, quantity
-- >               Party responsible for the quantification and valuation
-- >               of the works on behalf of the contractor.
-- >
-- >      EK    Surveyor (professional), quantity
-- >               Party responsible to the owner for the quantification
-- >               and valuation of the works.
-- >
-- >      EL    Project
-- >               Party responsible for a project, e.g. a construction
-- >               project.
-- >
-- >      EM    Party to receive electronic memo of invoice
-- >               Party being informed about invoice issue (via EDI).
-- >
-- >      EN    Tenderer
-- >               Firm answering an invitation to tender.
-- >
-- >      EO    Owner of equipment
-- >               Party who owns equipment.
-- >
-- >      EP    Equipment drop-off party
-- >               The party which drops off equipment.
-- >
-- >      EQ    Empty container responsible party
-- >               Party responsible for the empty container.
-- >
-- >      ER    Empty container return agent
-- >               Party, designated by owner of containers, responsible
-- >               for their collection as agreed between the owner and
-- >               customer/ consignee.
-- >
-- >      ES    Contractor, lead
-- >               Leader representing a grouping of co-contractors.
-- >
-- >      ET    Co-contractor
-- >               Member of a grouping of co-contractors.
-- >
-- >      EU    Contractor, general
-- >               Single contractor for the whole construction project,
-- >               working by his own or with subcontractors.
-- >
-- >      EV    Subcontractor
-- >               Firm carrying out a part of the works for a contractor.
-- >
-- >      EW    Subcontractor with direct payment
-- >               Subcontractor benefiting from direct payments.
-- >
-- >      EX    Exporter
-- >               (3030) Party who makes - or on whose behalf a Customs
-- >               clearing agent or other authorized person makes - an
-- >               export declaration. This may include a manufacturer,
-- >               seller or other person. Within a Customs union,
-- >               consignor may have the same meaning as exporter.
-- >
-- >      EY    Subcontractor, nominated
-- >               Subcontractor authorized by the owner after having been
-- >               proposed.
-- >
-- >      EZ    Operator, essential services
-- >               Operator of essential services e.g. water, sewerage
-- >               system, power.
-- >
-- >      FA    Operator, communication channel
-- >               Operator of a communication channel.
-- >
-- >      FB    Nominated freight company
-- >               Party nominated to act as transport company or carrier
-- >               for the goods.
-- >
-- >      FC    Contractor, main
-- >               Firm or grouping of co-contractors which has been
-- >               awarded the contract.
-- >
-- >      FD    Buyer's parent company
-- >               Parent company, e.g. holding company.
-- >
-- >      FE    Credit rating agency
-- >               A party which evaluates another party for credit rating.
-- >
-- >      FF    Factor, correspondent
-- >               Factoring company engaged by another factoring company
-- >               to assist the letter with the services provided to the
-- >               clients (sellers).
-- >
-- >      FG    Buyer as officially registered
-- >               Buying party as officially registered with government.
-- >
-- >      FH    Seller as officially registered
-- >               Selling party as officially registered with government.
-- >
-- >      FI    Copy message to
-- >               Party that is to receive a copy of a message.
-- >
-- >      FJ    Trade Union
-- >               Organisation representing employees.
-- >
-- >      FK    Previous Trade Union
-- >               Employee organisation who previously represented an
-- >               employee .
-- >
-- >      FL    Passenger
-- >               A person conveyed by a means of transport, other than
-- >               the crew.
-- >
-- >      FM    Crew member
-- >               A person manning a means of transport.
-- >
-- >      FN    Tariff issuer
-- >               The issuer of a tariff, e.g. a freight tariff.
-- >
-- >      FO    Party performing inspection
-- >               A party which inspects something.
-- >
-- >      FP    Freight/charges payer
-- >               Party responsible for the payment of freight.
-- >
-- >      FQ    Container survey agent
-- >               The container survey agency that will survey the
-- >               containers.
-- >
-- >      FR    Message from
-- >               Party where the message comes from.
-- >
-- >      FS    Party authorized to make definite a contract action
-- >               Party who has the authority to make definite a contract
-- >               action.
-- >
-- >      FT    Party responsible for financial settlement
-- >               (3450) Party responsible for either the transfer or
-- >               repatriation of the funds relating to a transaction.
-- >
-- >      FU    Hazardous material office
-- >               The office responsible for providing information
-- >               regarding hazardous material.
-- >
-- >      FV    Party providing government furnished property
-- >               The party responsible for providing government furnished
-- >               property.
-- >
-- >      FW    Freight forwarder
-- >               Party arranging forwarding of goods.
-- >
-- >      FX    Current receiver
-- >               Current receiver of the goods in a multi-step
-- >               transportation process (indirect flow) involving at
-- >               least one grouping centre.
-- >
-- >      FY    Current sender
-- >               Current sender of the goods in a multi-step
-- >               transportation process (indirect flow) involving at
-- >               least one grouping centre.
-- >
-- >      FZ    Grouping centre
-- >               A party in charge of groupage, including degroupage and
-- >               regroupage.
-- >
-- >      GA    Road carrier
-- >               A road carrier moving cargo.
-- >
-- >      GB    Chamber of commerce
-- >               Name of the Chamber of Commerce of the town where the
-- >               company is registered.
-- >
-- >      GC    Goods custodian
-- >               (3024) Party responsible for the keeping of goods.
-- >
-- >      GD    Producer
-- >               Party or person who has produced the produce.
-- >
-- >      GE    Registration tribunal
-- >               Name of the tribunal where the company is registered.
-- >
-- >      GF    Slot charter party
-- >               An identification code of a participant or user that
-- >               books slots (space) on a ship, more likely on a long
-- >               term basis on a series of sailings. He pays for the
-- >               space whether he uses it or not.
-- >
-- >      GG    Warehouse
-- >               The name of the warehouse where product is held.
-- >
-- >      GH    Applicant for job
-- >               A person who applied for a job.
-- >
-- >      GI    Spouse
-- >               Person is a spouse.
-- >
-- >      GJ    Mother
-- >               Person is a mother.
-- >
-- >      GK    Father
-- >               Person is a father.
-- >
-- >      GL    Socially insured person
-- >               A person who is registered in a social security scheme.
-- >
-- >      GM    Inventory controller
-- >               To specifically identify the party in charge of
-- >               inventory control.
-- >
-- >      GN    Processor
-- >               Party or person who has or will apply a process.
-- >
-- >      GO    Goods owner
-- >               The party which owns the goods.
-- >
-- >      GP    Packer
-- >               Party or person who has undertaken or will undertake
-- >               packing.
-- >
-- >      GQ    Slaughterer
-- >               Party or person who has undertaken or will undertake a
-- >               slaughter.
-- >
-- >      GR    Goods releaser
-- >               (3026) Party entitled to authorize release of goods from
-- >               custodian.
-- >
-- >      GS    Consignor's representative
-- >               Party authorised to represent the consignor.
-- >
-- >      GT    Rail carrier
-- >               A carrier moving cargo, including containers, via rail.
-- >
-- >      GU    Originator of article number
-- >               A code identifying the party which created a specific
-- >               article number.
-- >
-- >      GV    Procurement responsibility for order
-- >               A code used to identify the organization which is
-- >               responsible for the procurement.
-- >
-- >      GW    Party fulfilling all operations
-- >               Code indicating the fact that the party identified
-- >               carries out all operations within that company's
-- >               activities.
-- >
-- >      GX    Central catalogue party
-- >               Party controlling a central catalogue.
-- >
-- >      GY    Inventory reporting party
-- >               Party reporting inventory information.
-- >
-- >      GZ    Substitute supplier
-- >               Party which may be in a position to supply products or
-- >               services should the main usual supplier be unable to do
-- >               so.
-- >
-- >      HA    Party which delivers consignments to the terminal
-- >               Party which delivers consignments to a terminal.
-- >
-- >      HB    Party which picks up consignments from the terminal
-- >               Party which picks up consignments from a terminal.
-- >
-- >      HC    Transit freight forwarder
-- >               Freight forwarder to whom transit consignments are
-- >               addressed, and from whom they are to be on-forwarded.
-- >
-- >      HD    Inspection and acceptance party
-- >               The party who will perform inspection and acceptance.
-- >
-- >      HE    Transportation office
-- >               The office that provides transportation information.
-- >
-- >      HF    Contract administration office
-- >               The office responsible for the administration of a
-- >               contract.
-- >
-- >      HG    Investigator
-- >               A party who conducts investigations.
-- >
-- >      HH    Audit office
-- >               The office responsible for conducting audits.
-- >
-- >      HI    Requestor
-- >               The party requesting an action.
-- >
-- >      HJ    Foreign disclosure information office
-- >               The office that reviews sensitive information for
-- >               foreign disclosure.
-- >
-- >      HK    Mark-for party
-- >               The party within an organization for whom the material
-- >               is marked to be delivered.
-- >
-- >      HL    Party to receive reports
-- >               The party to whom reports are to be submitted.
-- >
-- >      HM    Alternative manufacturer
-- >               Party identification of an alternative manufacturer for
-- >               a product.
-- >
-- >      HN    Service performer
-- >               The party who is performing a service.
-- >
-- >      HO    Shipper's association
-- >               An association of shippers.
-- >
-- >      HP    Final message recipient
-- >               To identify the final recipient of the message.
-- >
-- >      HQ    Account owner
-- >               Identifies the owner of the account.
-- >
-- >      HR    Shipping line service
-- >               Identifies the shipping line service organization.
-- >
-- >      HS    Creditor
-- >               Party to whom payment is due.
-- >
-- >      HT    Clearing house
-- >               Institution through which funds will be paid.
-- >
-- >      HU    Ordering bank
-- >               Bank which instructed the sender to act on the
-- >               transaction(s).
-- >
-- >      HV    Receiver of funds
-- >               Identifies the party that receives the funds.
-- >
-- >      HW    Sender of funds
-- >               Identifies the party that sends the funds.
-- >
-- >      HX    Debtor
-- >               Party from whom payment is due.
-- >
-- >      HY    Presenting bank
-- >               The bank which presents documents to the drawee.
-- >
-- >      HZ    Work team
-- >               Team responsible for performing work.
-- >
-- >      I1    Intermediary bank 1
-- >               A financial institution between the ordered bank and the
-- >               beneficiary's bank.
-- >
-- >      I2    Intermediary bank 2
-- >               A financial institution between the ordered bank and the
-- >               beneficiary's bank.
-- >
-- >      IB    Intermediary/broker
-- >               A person intervening between parties to produce
-- >               agreement or reconciliation.
-- >
-- >      IC    Intermediate consignee
-- >               The intermediate consignee.
-- >
-- >      ID    Replacing manufacturer
-- >               A code used to identify a party who replaces the
-- >               previous party for the manufacture of an article.
-- >
-- >      IE    Non-resident third party company with whom financial
-- >            account is held
-- >               Identifies the non-resident third party company with
-- >               whom the financial account is held.
-- >
-- >      IF    Non-resident group company with whom financial account is
-- >            held
-- >               Identifies the non-resident group company with whom the
-- >               financial account is held.
-- >
-- >      IG    Non-resident beneficiary
-- >               The ultimate non-resident recipient of the funds.
-- >               Normally the account owner who is reimbursed by the
-- >               payor.
-- >
-- >      IH    Resident beneficiary
-- >               The ultimate resident recipient of the funds. Normally
-- >               the account owner who is reimbursed by the payor.
-- >
-- >      II    Issuer of invoice
-- >               (3028) Party issuing an invoice.
-- >
-- >      IJ    Non-resident instructing party
-- >               Identifies the non-resident party originating the
-- >               instruction.
-- >
-- >      IL    Resident instructing party
-- >               Identifies the resident party originating the
-- >               instruction.
-- >
-- >      IM    Importer
-- >               (3020) Party who makes - or on whose behalf a Customs
-- >               clearing agent or other authorized person makes - an
-- >               import declaration. This may include a person who has
-- >               possession of the goods or to whom the goods are
-- >               consigned.
-- >
-- >      IN    Insurer
-- >               A person or company offering insurance policies for
-- >               premiums.
-- >
-- >      IO    Insurance company
-- >               A company engaged in the business of insurance.
-- >
-- >      IP    Insurance claim adjuster
-- >               A party which adjusts losses on behalf of an insurer.
-- >
-- >      IQ    Domestic financial institution
-- >               Domestic party acting as financial institution.
-- >
-- >      IR    Non-domestic financial institution
-- >               Non-domestic party acting as financial institution.
-- >
-- >      IS    Party to receive certified inspection report
-- >               Party (at buyer) to receive certified inspection report.
-- >
-- >      IT    Installation on site
-- >               A party who possesses the site on which an installation
-- >               shall be made.
-- >
-- >      IU    Non-resident debtor
-- >               Non-resident party who makes the payment or against whom
-- >               a claim exists.
-- >
-- >      IV    Invoicee
-- >               (3006) Party to whom an invoice is issued.
-- >
-- >      IW    Non-resident creditor
-- >               Non-resident party receiving the payment or against whom
-- >               a liability exists.
-- >
-- >      IX    Supplier work team
-- >               The supplier's team responsible for performing the work.
-- >
-- >      IY    Tenant manager
-- >               A code to identify the party who rents the rights to use
-- >               the goodwill and facilities of an enterprise.
-- >
-- >      IZ    Party mandated to liquidate an enterprise
-- >               A code to identify the party who has been legally
-- >               mandated to sell off an enterprise.
-- >
-- >      JA    Certified accountant
-- >               Code identifying the party as a certified accountant.
-- >
-- >      JB    Goods collection party
-- >               Party that will collect or has collected the goods.
-- >
-- >      JC    Party at final place of positioning
-- >               Identifies the party at the final place of positioning.
-- >
-- >      JD    Customs office of clearance
-- >               Identifies the office where customs clearance procedures
-- >               take place.
-- >
-- >      JE    Party from whom customs documents are to be picked up
-- >               Identification of the party from whom customs documents
-- >               are to be picked up.
-- >
-- >      JF    Party from whom non-customs documents are to be picked up
-- >               Identification of the party from whom non-customs
-- >               documents are to be picked up.
-- >
-- >      JG    Party to receive customs documents
-- >               Identification of the party to whom customs documents
-- >               are to be delivered.
-- >
-- >      JH    Party to receive non-customs documents
-- >               Identification of the party to whom non-customs
-- >               documents are to be delivered.
-- >
-- >      LA    Party designated to provide living animal care
-- >               Party responsible to take care of transported living
-- >               animals.
-- >
-- >      LB    Co-producer
-- >               A code used to identify a party who participates in
-- >               production.
-- >
-- >      LC    Party declaring the Value Added Tax (VAT)
-- >               A code to identify the party who is responsible for
-- >               declaring the Value Added Tax (VAT) on the sale of goods
-- >               or services.
-- >
-- >      LD    Party recovering the Value Added Tax (VAT)
-- >               A code to identify the party who is eligible to recover
-- >               the Value Added Tax (VAT) on the sale of goods or
-- >               services.
-- >
-- >      LE    Person on claim
-- >               To identify the person who is the subject of the claim.
-- >
-- >      LF    Buyer's corporate office
-- >               The identification of the buyer's corporate office.
-- >
-- >      LG    Supplier's corporate office
-- >               The identification of the supplier's corporate office.
-- >
-- >      LH    Liquidator
-- >               The party responsible for settling or paying a debt.
-- >
-- >      LI    Account coordinator
-- >               An individual with coordination responsibilities for a
-- >               specific account.
-- >
-- >      LJ    Inspection leader
-- >               An individual responsible for an inspection team.
-- >
-- >      LK    Patient
-- >               A person receiving or registered to receive medical
-- >               treatment.
-- >
-- >      LL    Patient companion
-- >               Person accompanying the patient.
-- >
-- >      LM    Medical treatment executant
-- >               The party who executes a medical treatment.
-- >
-- >      LN    Lender
-- >               Party lending goods or equipment.
-- >
-- >      LO    Medical treatment prescriber
-- >               The party who prescribes a medical treatment.
-- >
-- >      LP    Loading party
-- >               Party responsible for the loading when other than
-- >               carrier.
-- >
-- >      LQ    Debt payment authorisation party
-- >               A party which authorises the payment of a debt.
-- >
-- >      LR    Administration centre
-- >               Identification of an administration centre.
-- >
-- >      LS    Product services and repairs centre
-- >               A centre which services and repairs products.
-- >
-- >      LT    Secretariat
-- >               Party is a secretariat.
-- >
-- >      LU    Entry point technical assessment group
-- >               Party acts as an entry point for technical assessment.
-- >
-- >      LV    Party assigning a status
-- >               Party responsible for assigning a status.
-- >
-- >      MA    Party for whom item is ultimately intended
-- >               Party for whom item is ultimately intended.
-- >
-- >      MF    Manufacturer of goods
-- >               Party who manufactures the goods.
-- >
-- >      MG    Party designated to execute re-icing
-- >               Party designated to execute re-icing, selected in the
-- >               official list of mandatories competent for this kind of
-- >               operation.
-- >
-- >      MI    Planning schedule/material release issuer
-- >               A party issuing a planning schedule/material release.
-- >
-- >      MP    Manufacturing plant
-- >               Self explanatory.
-- >
-- >      MR    Message recipient
-- >               A party to receive a message or messages.
-- >
-- >      MS    Document/message issuer/sender
-- >               Issuer of a document and/or sender of a message.
-- >
-- >      MT    Party designated to execute sanitary procedures
-- >               A party which is designated to execute sanitary
-- >               procedures.
-- >
-- >      N1    Notify party no. 1
-- >               The first party which is to be notified.
-- >
-- >      N2    Notify party no. 2
-- >               The second party which is to be notified.
-- >
-- >      NI    Notify party
-- >               (3180) Party to be notified of arrival of goods.
-- >
-- >      OA    Break bulk berth operator
-- >               Party who offers facilities for berthing of vessels,
-- >               handling and storage of break bulk cargo.
-- >
-- >      OB    Ordered by
-- >               Party who issued an order.
-- >
-- >      OC    Party data responsible party
-- >               The party responsible for all party data.
-- >
-- >      OD    Equipment repair party
-- >               A party making repairs to equipment.
-- >
-- >      OE    Owner of property
-- >               Party owning a property.
-- >
-- >      OF    On behalf of
-- >               Party on behalf of which an action is executed.
-- >
-- >      OG    Owner or lessor's surveyor
-- >               Surveyor hired by the owner or lessor of the item.
-- >
-- >      OH    Lessee's surveyor
-- >               Surveyor hired by the lessee of the item.
-- >
-- >      OI    Outside inspection agency
-- >               Third party inspecting goods or equipment.
-- >
-- >      OJ    Third party
-- >               Another party besides the two principals.
-- >
-- >      OK    Receiver's sub-entity
-- >               Identifies a sub-entity within the receiver's
-- >               organization.
-- >
-- >      OL    Case of need party
-- >               Party to be approached in case of difficulty.
-- >
-- >      OM    Collecting bank
-- >               Any bank, other than the remitting bank, involved in
-- >               processing the collection.
-- >
-- >      ON    Remitting bank
-- >               The bank to which the principal has entrusted the
-- >               handling of a collection.
-- >
-- >      OO    Order of the shipper party
-- >               The owner of goods under consignment which are moving
-- >               under a negotiable transport document and will only be
-- >               released upon receipt of the original transport
-- >               document.
-- >
-- >      OP    Operator of property or equipment
-- >               The party which operates property or a unit of
-- >               equipment.
-- >
-- >      OQ    Collection principal
-- >               The party entrusting the handling of a collection to a
-- >               bank.
-- >
-- >      OR    Ordered bank
-- >               Identifies the account servicer for the ordering
-- >               customer or payor.
-- >
-- >      OS    Original shipper
-- >               The original supplier of the goods.
-- >
-- >      OT    Outside test agency
-- >               Third party testing goods, equipment or services.
-- >
-- >      OU    Account owner's servicing bank on the sending side
-- >               Identifies the financial institution on the sending side
-- >               which services the account owner's bank account(s).
-- >
-- >      OV    Owner of means of transport
-- >               (3126) Party owning the means of transport. No synonym
-- >               of carrier = CA.
-- >
-- >      OW    Account owner's servicing bank on the receiving side
-- >               Identifies the financial institution on the receiving
-- >               side which services the account owner's bank account(s).
-- >
-- >      OX    Sender's correspondent bank
-- >               The account, or branch of the sender, or another
-- >               financial institution, through which the sender will
-- >               reimburse the receiver.
-- >
-- >      OY    Ordering customer
-- >               Identifies the originator of the instruction.
-- >
-- >      OZ    Receiver's correspondent bank
-- >               The branch of the receiver, or another financial
-- >               institution, at which the funds will be made available
-- >               to the receiver.
-- >
-- >      P1    Contact party 1
-- >               First party to contact.
-- >
-- >      P2    Contact party 2
-- >               Second party to contact.
-- >
-- >      P3    Contact party 3
-- >               Third party to contact.
-- >
-- >      P4    Contact party 4
-- >               Fourth party to contact.
-- >
-- >      PA    Party to receive inspection report
-- >               Party to whom the inspection report should be sent.
-- >
-- >      PB    Paying financial institution
-- >               Financial institution designated to make payment.
-- >
-- >      PC    Actual purchaser's customer
-- >               Party the purchaser within the actual message is selling
-- >               the ordered goods or services to.
-- >
-- >      PD    Purchaser's department buyer
-- >               Purchasing department of buyer.
-- >
-- >      PE    Payee
-- >               Identifies the credit party when other than the
-- >               beneficiary.
-- >
-- >      PF    Party to receive freight bill
-- >               Party to whom the freight bill should be sent.
-- >
-- >      PG    Prime contractor
-- >               Party responsible for the whole project if other than
-- >               the buyer.
-- >
-- >      PH    Payer's financial institution
-- >               Institution chosen by the payer to execute financial
-- >               transactions on his behalf.
-- >
-- >      PI    Payee's company name/ID
-- >               Receiving company name/ID (ACH transfers).
-- >
-- >      PJ    Party to receive correspondence
-- >               Second party designated by a first party to receive
-- >               certain correspondence in lieu of it being mailed
-- >               directly to this first party.
-- >
-- >      PK    Contact party
-- >               Party to contact.
-- >
-- >      PL    Payor
-- >               Identifies the debit party when other than the ordering
-- >               customer (for banking purposes).
-- >
-- >      PM    Party to receive paper memo of invoice
-- >               Party being informed about invoice issue (via paper).
-- >
-- >      PN    Party to receive shipping notice
-- >               The party is to be the recipient of the shipping notice.
-- >
-- >      PO    Ordering party
-- >               To be used only if ordering party and buyer are not
-- >               identical.
-- >
-- >      PQ    Certifying party
-- >               A party which certifies something.
-- >
-- >      PR    Payer
-- >               (3308) Party initiating payment.
-- >
-- >      PS    Payer's company name/ID (Check, Draft or Wire)
-- >               Party to send cheque, draft or wire for payment.
-- >
-- >      PT    Party to receive test report
-- >               A party which is named to be the recipient of test
-- >               reports.
-- >
-- >      PW    Despatch party
-- >               (3282) Party where goods are collected or taken over by
-- >               the carrier (i.e. if other than consignor).
-- >
-- >      PX    Party to receive all documents
-- >               A party which is named to be the recipient of all
-- >               documents.
-- >
-- >      PY    Checking party
-- >               Party or contact designated on behalf of carrier or his
-- >               agent to establish the actual figures for quantities,
-- >               weight, volume and/or (cube) measurements of goods or
-- >               containers which are to appear in the transport contract
-- >               and on which charges will be based.
-- >
-- >      PZ    Party to print some document
-- >               The party that is to print a specific document.
-- >
-- >      RA    Central bank or regulatory authority
-- >               Identifies central bank or regulatory authority which
-- >               must be informed of certain aspects of a message.
-- >
-- >      RB    Receiving financial institution
-- >               Financial institution designated to receive payment.
-- >
-- >      RE    Party to receive commercial invoice remittance
-- >               Party to whom payment for a commercial invoice or bill
-- >               should be remitted.
-- >
-- >      RF    Received from
-- >               Name of a person or department which actually delivers
-- >               the goods.
-- >
-- >      RH    Seller's financial institution
-- >               Financial institution designated by seller to receive
-- >               payment. RDFI (ACH transfers).
-- >
-- >      RI    Reinsurance intermediary/broker
-- >               Intermediary party between ceding company and
-- >               reinsurance.
-- >
-- >      RL    Reporting carrier (Customs)
-- >               Party who makes the cargo report to Customs.
-- >
-- >      RM    Reporting carrier's nominated agent/representative
-- >            (Customs)
-- >               Agent who formally makes a cargo report to Customs on
-- >               behalf of the carrier.
-- >
-- >      RP    Routing party
-- >               Party responsible for the selection of the carrier(s).
-- >
-- >      RS    Party to receive statement of account
-- >               Party to whom the statement of account should be sent.
-- >
-- >      RV    Receiver of cheque
-- >               Identifies the party which is to receive the actual
-- >               cheque, when different from the receiver of funds.
-- >
-- >      RW    Issuer of waybill
-- >               Party issuing the contract (waybill) for carriage.
-- >
-- >      SB    Sales responsibility
-- >               A party being responsible for sales.
-- >
-- >      SE    Seller
-- >               (3346) Party selling merchandise to a buyer.
-- >
-- >      SF    Ship from
-- >               Identification of the party from where goods will be or
-- >               have been shipped.
-- >
-- >      SG    Store group
-- >               A chain of shops or stores.
-- >
-- >      SI    Shipping schedule issuer
-- >               The party which issues a shipping schedule.
-- >
-- >      SK    Plant
-- >               Self explanatory.
-- >
-- >      SN    Store keeper
-- >               A party keeping a shop or store.
-- >
-- >      SO    Sold to if different than bill to
-- >               Party to whom the goods have been sold, if different to
-- >               the bill to party.
-- >
-- >      SR    Seller's agent/representative
-- >               (3254) Party representing the seller for the purpose of
-- >               the trade transaction.
-- >
-- >      SS    Social securities collector's office
-- >               Party collecting social securities premiums.
-- >
-- >      ST    Ship to
-- >               Identification of the party to where goods will be or
-- >               have been shipped.
-- >
-- >      SU    Supplier
-- >               Party who supplies goods and/or services.
-- >
-- >      SX    Surety for additions
-- >               Natural of legal person (generally a bank of insurance
-- >               company) who accepts responsibility in due legal form
-- >               for the financial guarantee to Customs of the payment of
-- >               additional duties or fees that become due against a
-- >               particular shipment, which have not previously been
-- >               covered by surety.
-- >
-- >      SY    Surety
-- >               Natural or legal person (generally a bank or insurance
-- >               company) who accepts responsibility in due legal form
-- >               for the financial consequences of non-fulfillment of
-- >               another's obligations to the Customs (CCC).
-- >
-- >      SZ    Surety for antidumping/countervailing duty
-- >               Natural or legal person that has been contracted by the
-- >               importer to guarantee to Customs the payment of
-- >               antidumping and/or countervailing duties that become due
-- >               against a particular shipment.
-- >
-- >      TA    Legal receiver
-- >               The party responsible for a receivership.
-- >
-- >      TB    Submitter
-- >               To specify that the party is a submitter.
-- >
-- >      TC    Tax collector's office
-- >               Party collecting taxes.
-- >
-- >      TCP   Transit charge payer
-- >               Party, other than the ordering party, which has to pay
-- >               the charges concerning the transit operations.
-- >
-- >      TD    Party to receive technical documentation
-- >               Party to whom technical documentation should be sent.
-- >
-- >      TE    Bankruptcy referee
-- >               To specify that the party is a referee in a bankruptcy
-- >               case.
-- >
-- >      TF    Source of information
-- >               To specify that the party is the source of information.
-- >
-- >      TG    Judge
-- >               To specify that the party is a judge.
-- >
-- >      TH    Attorney
-- >               To specify that the party is an attorney.
-- >
-- >      TI    Law firm
-- >               To specify that the party is a law firm.
-- >
-- >      TJ    Trustee
-- >               To specify that the party is a trustee.
-- >
-- >      TK    Signatory
-- >               To specify that the party is a signatory.
-- >
-- >      TL    Occupant
-- >               The party is an occupant.
-- >
-- >      TM    Co-occupant
-- >               The party is a co-occupant.
-- >
-- >      TN    Subject of inquiry
-- >               The party is the subject of an inquiry.
-- >
-- >      TO    Lessor
-- >               The party is a lessor.
-- >
-- >      TP    Owner of residence
-- >               Identifies the owner of a residence.
-- >
-- >      TQ    Founder
-- >               Identifies the founder.
-- >
-- >      TR    Terminal operator
-- >               A party which handles the loading and unloading of
-- >               marine vessels.
-- >
-- >      TS    Party to receive certified test results
-- >               Party to whom the certified test results should be sent.
-- >
-- >      TT    Transfer to
-- >               The party which is the recipient of a transfer.
-- >
-- >      TU    President
-- >               Identifies the president.
-- >
-- >      TV    Chairperson
-- >               Identifies the chairperson.
-- >
-- >      TW    Legal title holder
-- >               Identifies the legal title holder.
-- >
-- >      TX    Shareholder
-- >               Identifies a shareholder.
-- >
-- >      TY    Provider
-- >               Identifies the provider.
-- >
-- >      TZ    Military branch
-- >               Identifies the branch of the military.
-- >
-- >      UA    Educational institution
-- >               Identifies a university, college or school.
-- >
-- >      UB    Assignor
-- >               Identifies the assignor.
-- >
-- >      UC    Ultimate consignee
-- >               Party who has been designated on the invoice or packing
-- >               list as the final recipient of the stated merchandise.
-- >
-- >      UD    Ultimate customer
-- >               The final recipient of goods.
-- >
-- >      UE    Advisor
-- >               Identifies the advisor.
-- >
-- >      UF    Co-defendant
-- >               Identifies the co-defendant.
-- >
-- >      UG    Merged company with retained identity
-- >               Company whose identity has been retained from a merger.
-- >
-- >      UH    Party represented
-- >               Identifies the party represented.
-- >
-- >      UHP   Unexpected handling party
-- >               Party authorized (during a voyage) to apply unexpected
-- >               handling procedures or party having applied these
-- >               procedures.
-- >
-- >      UI    Assignee
-- >               Identifies the assignee.
-- >
-- >      UJ    Key person
-- >               Identifies the key person.
-- >
-- >      UK    Author
-- >               Identifies the author.
-- >
-- >      UL    Ultimate parent company
-- >               Identifies the ultimate parent company.
-- >
-- >      UM    Party not to be confused with
-- >               Identifies a party not to be confused with another
-- >               party.
-- >
-- >      UN    Accountant
-- >               Identifies the accountant.
-- >
-- >      UO    Plaintiff
-- >               Identifies the plaintiff.
-- >
-- >      UP    Unloading party
-- >               A party to unload the goods.
-- >
-- >      UQ    Parent company
-- >               Identifies the parent company.
-- >
-- >      UR    Affiliated company
-- >               Identifies the affiliated company.
-- >
-- >      US    Bailiff
-- >               Identifies the bailiff.
-- >
-- >      UT    Merged company
-- >               Identifies the company involved in a merger.
-- >
-- >      UU    Defendant
-- >               Identifies the defendant.
-- >
-- >      UV    Petitioning creditor
-- >               Identifies the petitioning creditor.
-- >
-- >      UW    Guarantee agency
-- >               Identifies the guarantee agency.
-- >
-- >      UX    Organization group
-- >               Identifies the organization group.
-- >
-- >      UY    Subsidiary
-- >               Identifies the subsidiary.
-- >
-- >      UZ    Industry association
-- >               Identifies the industry association.
-- >
-- >      VA    Joint owner
-- >               Identifies the joint owner.
-- >
-- >      VB    Joint venture
-- >               Identifies the joint venture.
-- >
-- >      VC    Filing office
-- >               Identifies the filing office.
-- >
-- >      VE    Court
-- >               Identifies the court.
-- >
-- >      VF    Liability holder
-- >               Identifies the liability holder.
-- >
-- >      VG    Local government sponsor
-- >               Identifies the local government sponsor.
-- >
-- >      VH    Mortgage company
-- >               Identifies the mortgage company.
-- >
-- >      VI    Notary public
-- >               Identifies the notary public.
-- >
-- >      VJ    Officer
-- >               Identifies the officer.
-- >
-- >      VK    Publisher
-- >               Identifies the publisher.
-- >
-- >      VL    Party manufactured for
-- >               Identifies the party for whom manufacturing of goods is
-- >               done.
-- >
-- >      VM    Previous owner
-- >               Identifies the previous owner.
-- >
-- >      VN    Vendor
-- >               Party vending goods or services.
-- >
-- >      VO    Purchased company
-- >               Identifies the purchased company.
-- >
-- >      VP    Receiver manager
-- >               Manager of a business which is in receivership status
-- >               and which will not be liquidated.
-- >
-- >      VQ    Responsible government agency
-- >               Identifies the responsible government agency.
-- >
-- >      VR    Sole proprietor
-- >               Identifies the sole proprietor.
-- >
-- >      VS    Auctioneer
-- >               Identifies the auctioneer.
-- >
-- >      VT    Branch
-- >               Identifies the branch.
-- >
-- >      VU    Business
-- >               Identifies the business.
-- >
-- >      VV    Ultimate same country parent company
-- >               Identifies the highest level parent company in the same
-- >               country.
-- >
-- >      VW    Responsible party
-- >               Identifies the party that can be called to account.
-- >
-- >      VX    Secured party
-- >               Identifies a party that is guaranteed against loss.
-- >
-- >      VY    Other related party
-- >               Identifies an entity as an unspecified but related
-- >               party.
-- >
-- >      VZ    Co-debtor
-- >               Identifies an entity as a joint or mutual debtor.
-- >
-- >      WA    Company which holds financial interest
-- >               Identifies a company which holds any financial stake in
-- >               an undertaking or organization.
-- >
-- >      WB    Rating organization
-- >               Identifies an organization responsible for assigning a
-- >               classification or rating.
-- >
-- >      WC    Information reference agency
-- >               The agency responsible for the reference of information.
-- >
-- >      WD    Warehouse depositor
-- >               (3004) Party depositing goods in a warehouse.
-- >
-- >      WE    Compilation agency
-- >               The agency responsible for the compilation of
-- >               information.
-- >
-- >      WF    Information maintenance agency
-- >               The agency responsible for the maintenance of
-- >               information.
-- >
-- >      WG    Information dissemination agency
-- >               The agency responsible for the dissemination of
-- >               information.
-- >
-- >      WH    Warehouse keeper
-- >               (3022) Party taking responsibility for goods entered
-- >               into a warehouse.
-- >
-- >      WI    Inspection address
-- >               Specifies the address for an inspection.
-- >
-- >      WJ    Refusal party
-- >               Identification of the party responsible for a refusal.
-- >
-- >      WK    Value added network provider
-- >               A party that provides telecommunications
-- >               interconnectivity services in an electronic data
-- >               interchange environment.
-- >
-- >      WL    Agency
-- >               The business or establishment of an agent.
-- >
-- >      WM    Works manager
-- >               A party managing works.
-- >
-- >      WN    Party to receive order to supply
-- >               Party designated by the registering party to receive a
-- >               binding direction to supply something.
-- >
-- >      WO    Party to receive invitation to offer
-- >               An entity to receive an invitation to offer.
-- >
-- >      WP    Sub-entity
-- >               A part into which an entity has been divided.
-- >
-- >      WPA   Weighting party
-- >               Party designated (legally accepted) to ascertain the
-- >               weight.
-- >
-- >      WQ    Doing business as
-- >               The name under which business is conducted.
-- >
-- >      WR    Party submitting quote
-- >               The party stating the price of something to be
-- >               purchased.
-- >
-- >      WS    Wholesaler
-- >               Seller of articles, often in large quantities, to be
-- >               retailed by others.
-- >
-- >      WT    Affiliated party
-- >               A party attached or connected to another party.
-- >
-- >      WU    Previous name
-- >               Name of an entity used before the current name.
-- >
-- >      WV    Party performing task
-- >               An entity responsible for performing a task to be
-- >               undertaken.
-- >
-- >      WW    Registering party
-- >               Party performing the registration.
-- >
-- >      XX    No heading
-- >               Description to be provided.
-- >
-- >      ZZZ   Mutually defined
-- >               Party specification mutually agreed between
-- >               interchanging parties.
simple3035 :: Parser Value
simple3035 = simple "3035" (alphaNumeric `upTo` 3)