Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

QR.ps 33 KB

You have to be logged in to leave a comment. Sign In
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
  1. %!PS-Adobe-3.0
  2. %%BoundingBox: 0 0 612 792
  3. %%HiResBoundingBox: 0 0 612.0000 792.0000
  4. %%Title: GMT v6.0.0_ddaeea2-dirty_2019.03.23 [64-bit] Document from psxy
  5. %%Creator: GMT6
  6. %%For: unknown
  7. %%DocumentNeededResources: font Helvetica
  8. %%CreationDate: Tue Mar 26 10:46:12 2019
  9. %%LanguageLevel: 2
  10. %%DocumentData: Clean7Bit
  11. %%Orientation: Portrait
  12. %%Pages: 1
  13. %%EndComments
  14. %%BeginProlog
  15. 250 dict begin
  16. /! {bind def} bind def
  17. /# {load def}!
  18. /A /setgray #
  19. /B /setdash #
  20. /C /setrgbcolor #
  21. /D /rlineto #
  22. /E {dup stringwidth pop}!
  23. /F /fill #
  24. /G /rmoveto #
  25. /H /sethsbcolor #
  26. /I /setpattern #
  27. /K /setcmykcolor #
  28. /L /lineto #
  29. /M /moveto #
  30. /N /newpath #
  31. /P /closepath #
  32. /R /rotate #
  33. /S /stroke #
  34. /T /translate #
  35. /U /grestore #
  36. /V /gsave #
  37. /W /setlinewidth #
  38. /Y {findfont exch scalefont setfont}!
  39. /Z /show #
  40. /FP {true charpath flattenpath}!
  41. /MU {matrix setmatrix}!
  42. /MS {/SMat matrix currentmatrix def}!
  43. /MR {SMat setmatrix}!
  44. /edef {exch def}!
  45. /FS {/fc edef /fs {V fc F U} def}!
  46. /FQ {/fs {} def}!
  47. /O0 {/os {N} def}!
  48. /O1 {/os {P S} def}!
  49. /FO {fs os}!
  50. /Sa {M MS dup 0 exch G 0.726542528 mul -72 R dup 0 D 4 {72 R dup 0 D -144 R dup 0 D} repeat pop MR FO}!
  51. /Sb {M dup 0 D exch 0 exch D neg 0 D FO}!
  52. /SB {MS T /BoxR edef /BoxW edef /BoxH edef BoxR 0 M
  53. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  54. /Sc {N 3 -1 roll 0 360 arc FO}!
  55. /Sd {M 4 {dup} repeat 0 G neg dup dup D exch D D FO}!
  56. /Se {N MS T R scale 0 0 1 0 360 arc MR FO}!
  57. /Sg {M MS 22.5 R dup 0 exch G -22.5 R 0.765366865 mul dup 0 D 6 {-45 R dup 0 D} repeat pop MR FO}!
  58. /Sh {M MS dup 0 G -120 R dup 0 D 4 {-60 R dup 0 D} repeat pop MR FO}!
  59. /Si {M MS dup neg 0 exch G 60 R 1.732050808 mul dup 0 D 120 R 0 D MR FO}!
  60. /Sj {M MS R dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D MR FO}!
  61. /Sn {M MS dup 0 exch G -36 R 1.175570505 mul dup 0 D 3 {-72 R dup 0 D} repeat pop MR FO}!
  62. /Sp {N 3 -1 roll 0 360 arc fs N}!
  63. /SP {M {D} repeat FO}!
  64. /Sr {M dup -2 div 2 index -2 div G dup 0 D exch 0 exch D neg 0 D FO}!
  65. /SR {MS T /BoxR edef /BoxW edef /BoxH edef BoxR BoxW -2 div BoxH -2 div T BoxR 0 M
  66. BoxW 0 BoxW BoxH BoxR arct BoxW BoxH 0 BoxH BoxR arct 0 BoxH 0 0 BoxR arct 0 0 BoxW 0 BoxR arct MR FO}!
  67. /Ss {M 1.414213562 mul dup dup dup -2 div dup G 0 D 0 exch D neg 0 D FO}!
  68. /St {M MS dup 0 exch G -60 R 1.732050808 mul dup 0 D -120 R 0 D MR FO}!
  69. /SV {0 exch M 0 D D D D D 0 D FO}!
  70. /Sv {0 0 M D D 0 D D D D D 0 D D FO}!
  71. /Sw {2 copy M 5 2 roll arc FO}!
  72. /Sx {M 1.414213562 mul 5 {dup} repeat -2 div dup G D neg 0 G neg D S}!
  73. /Sy {M dup 0 exch G dup -2 mul dup 0 exch D S}!
  74. /S+ {M dup 0 G dup -2 mul dup 0 D exch dup G 0 exch D S}!
  75. /S- {M dup 0 G dup -2 mul dup 0 D S}!
  76. /sw {stringwidth pop}!
  77. /sh {V MU 0 0 M FP pathbbox N 4 1 roll pop pop pop U}!
  78. /sd {V MU 0 0 M FP pathbbox N pop pop exch pop U}!
  79. /sH {V MU 0 0 M FP pathbbox N exch pop exch sub exch pop U}!
  80. /sb {E exch sh}!
  81. /bl {}!
  82. /bc {E -2 div 0 G}!
  83. /br {E neg 0 G}!
  84. /ml {dup 0 exch sh -2 div G}!
  85. /mc {dup E -2 div exch sh -2 div G}!
  86. /mr {dup E neg exch sh -2 div G}!
  87. /tl {dup 0 exch sh neg G}!
  88. /tc {dup E -2 div exch sh neg G}!
  89. /tr {dup E neg exch sh neg G}!
  90. /mx {2 copy lt {exch} if pop}!
  91. /PSL_xorig 0 def /PSL_yorig 0 def
  92. /TM {2 copy T PSL_yorig add /PSL_yorig edef PSL_xorig add /PSL_xorig edef}!
  93. /PSL_reencode {findfont dup length dict begin
  94. {1 index /FID ne {def}{pop pop} ifelse} forall
  95. exch /Encoding edef currentdict end definefont pop
  96. }!
  97. /PSL_eps_begin {
  98. /PSL_eps_state save def
  99. /PSL_dict_count countdictstack def
  100. /PSL_op_count count 1 sub def
  101. userdict begin
  102. /showpage {} def
  103. 0 setgray 0 setlinecap 1 setlinewidth
  104. 0 setlinejoin 10 setmiterlimit [] 0 setdash newpath
  105. /languagelevel where
  106. {pop languagelevel 1 ne {false setstrokeadjust false setoverprint} if} if
  107. }!
  108. /PSL_eps_end {
  109. count PSL_op_count sub {pop} repeat
  110. countdictstack PSL_dict_count sub {end} repeat
  111. PSL_eps_state restore
  112. }!
  113. /PSL_transp {
  114. /.setopacityalpha where {pop .setblendmode .setopacityalpha}{
  115. /pdfmark where {pop [ /BM exch /CA exch dup /ca exch /SetTransparency pdfmark}
  116. {pop pop} ifelse} ifelse
  117. }!
  118. /ISOLatin1+_Encoding [
  119. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  120. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  121. /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
  122. /.notdef /bullet /ellipsis /trademark /emdash /endash /fi /zcaron
  123. /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright
  124. /parenleft /parenright /asterisk /plus /comma /minus /period /slash
  125. /zero /one /two /three /four /five /six /seven
  126. /eight /nine /colon /semicolon /less /equal /greater /question
  127. /at /A /B /C /D /E /F /G
  128. /H /I /J /K /L /M /N /O
  129. /P /Q /R /S /T /U /V /W
  130. /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
  131. /quoteleft /a /b /c /d /e /f /g
  132. /h /i /j /k /l /m /n /o
  133. /p /q /r /s /t /u /v /w
  134. /x /y /z /braceleft /bar /braceright /asciitilde /scaron
  135. /OE /dagger /daggerdbl /Lslash /fraction /guilsinglleft /Scaron /guilsinglright
  136. /oe /Ydieresis /Zcaron /lslash /perthousand /quotedblbase /quotedblleft /quotedblright
  137. /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
  138. /dieresis /quotesinglbase /ring /cedilla /quotesingle /hungarumlaut /ogonek /caron
  139. /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
  140. /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron
  141. /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered
  142. /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown
  143. /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
  144. /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis
  145. /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
  146. /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls
  147. /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
  148. /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis
  149. /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
  150. /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis
  151. ] def
  152. /PSL_font_encode 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 array astore def
  153. /F0 {/Helvetica Y}!
  154. /F1 {/Helvetica-Bold Y}!
  155. /F2 {/Helvetica-Oblique Y}!
  156. /F3 {/Helvetica-BoldOblique Y}!
  157. /F4 {/Times-Roman Y}!
  158. /F5 {/Times-Bold Y}!
  159. /F6 {/Times-Italic Y}!
  160. /F7 {/Times-BoldItalic Y}!
  161. /F8 {/Courier Y}!
  162. /F9 {/Courier-Bold Y}!
  163. /F10 {/Courier-Oblique Y}!
  164. /F11 {/Courier-BoldOblique Y}!
  165. /F12 {/Symbol Y}!
  166. /F13 {/AvantGarde-Book Y}!
  167. /F14 {/AvantGarde-BookOblique Y}!
  168. /F15 {/AvantGarde-Demi Y}!
  169. /F16 {/AvantGarde-DemiOblique Y}!
  170. /F17 {/Bookman-Demi Y}!
  171. /F18 {/Bookman-DemiItalic Y}!
  172. /F19 {/Bookman-Light Y}!
  173. /F20 {/Bookman-LightItalic Y}!
  174. /F21 {/Helvetica-Narrow Y}!
  175. /F22 {/Helvetica-Narrow-Bold Y}!
  176. /F23 {/Helvetica-Narrow-Oblique Y}!
  177. /F24 {/Helvetica-Narrow-BoldOblique Y}!
  178. /F25 {/NewCenturySchlbk-Roman Y}!
  179. /F26 {/NewCenturySchlbk-Italic Y}!
  180. /F27 {/NewCenturySchlbk-Bold Y}!
  181. /F28 {/NewCenturySchlbk-BoldItalic Y}!
  182. /F29 {/Palatino-Roman Y}!
  183. /F30 {/Palatino-Italic Y}!
  184. /F31 {/Palatino-Bold Y}!
  185. /F32 {/Palatino-BoldItalic Y}!
  186. /F33 {/ZapfChancery-MediumItalic Y}!
  187. /F34 {/ZapfDingbats Y}!
  188. /F35 {/Ryumin-Light-EUC-H Y}!
  189. /F36 {/Ryumin-Light-EUC-V Y}!
  190. /F37 {/GothicBBB-Medium-EUC-H Y}!
  191. /F38 {/GothicBBB-Medium-EUC-V Y}!
  192. /PSL_pathtextdict 26 dict def
  193. /PSL_pathtext
  194. {PSL_pathtextdict begin
  195. /ydepth exch def
  196. /textheight exch def
  197. /just exch def
  198. /offset exch def
  199. /str exch def
  200. /pathdist 0 def
  201. /setdist offset def
  202. /charcount 0 def
  203. /justy just 4 idiv textheight mul 2 div neg ydepth sub def
  204. V flattenpath
  205. {movetoproc} {linetoproc}
  206. {curvetoproc} {closepathproc}
  207. pathforall
  208. U N
  209. end
  210. } def
  211. PSL_pathtextdict begin
  212. /movetoproc
  213. { /newy exch def /newx exch def
  214. /firstx newx def /firsty newy def
  215. /ovr 0 def
  216. newx newy transform
  217. /cpy exch def /cpx exch def
  218. } def
  219. /linetoproc
  220. { /oldx newx def /oldy newy def
  221. /newy exch def /newx exch def
  222. /dx newx oldx sub def
  223. /dy newy oldy sub def
  224. /dist dx dup mul dy dup mul add sqrt def
  225. dist 0 ne
  226. { /dsx dx dist div ovr mul def
  227. /dsy dy dist div ovr mul def
  228. oldx dsx add oldy dsy add transform
  229. /cpy exch def /cpx exch def
  230. /pathdist pathdist dist add def
  231. {setdist pathdist le
  232. {charcount str length lt
  233. {setchar} {exit} ifelse}
  234. { /ovr setdist pathdist sub def
  235. exit}
  236. ifelse
  237. } loop
  238. } if
  239. } def
  240. /curvetoproc
  241. { (ERROR: No curveto's after flattenpath!)
  242. print
  243. } def
  244. /closepathproc
  245. {firstx firsty linetoproc
  246. firstx firsty movetoproc
  247. } def
  248. /setchar
  249. { /char str charcount 1 getinterval def
  250. /charcount charcount 1 add def
  251. /charwidth char stringwidth pop def
  252. V cpx cpy itransform T
  253. dy dx atan R
  254. 0 justy M
  255. char show
  256. 0 justy neg G
  257. currentpoint transform
  258. /cpy exch def /cpx exch def
  259. U /setdist setdist charwidth add def
  260. } def
  261. end
  262. /PSL_set_label_heights
  263. {
  264. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  265. /PSL_heights PSL_n_labels array def
  266. 0 1 PSL_n_labels_minus_1
  267. { /psl_k exch def
  268. /psl_label PSL_label_str psl_k get def
  269. PSL_label_font psl_k get cvx exec
  270. psl_label sH /PSL_height edef
  271. PSL_heights psl_k PSL_height put
  272. } for
  273. } def
  274. /PSL_curved_path_labels
  275. { /psl_bits exch def
  276. /PSL_placetext psl_bits 2 and 2 eq def
  277. /PSL_clippath psl_bits 4 and 4 eq def
  278. /PSL_strokeline false def
  279. /PSL_fillbox psl_bits 128 and 128 eq def
  280. /PSL_drawbox psl_bits 256 and 256 eq def
  281. /PSL_n_paths1 PSL_n_paths 1 sub def
  282. /PSL_usebox PSL_fillbox PSL_drawbox or def
  283. PSL_clippath {clipsave N clippath} if
  284. /psl_k 0 def
  285. /psl_p 0 def
  286. 0 1 PSL_n_paths1
  287. { /psl_kk exch def
  288. /PSL_n PSL_path_n psl_kk get def
  289. /PSL_m PSL_label_n psl_kk get def
  290. /PSL_x PSL_path_x psl_k PSL_n getinterval def
  291. /PSL_y PSL_path_y psl_k PSL_n getinterval def
  292. /PSL_node_tmp PSL_label_node psl_p PSL_m getinterval def
  293. /PSL_angle_tmp PSL_label_angle psl_p PSL_m getinterval def
  294. /PSL_str_tmp PSL_label_str psl_p PSL_m getinterval def
  295. /PSL_fnt_tmp PSL_label_font psl_p PSL_m getinterval def
  296. PSL_curved_path_label
  297. /psl_k psl_k PSL_n add def
  298. /psl_p psl_p PSL_m add def
  299. } for
  300. PSL_clippath {PSL_eoclip} if N
  301. } def
  302. /PSL_curved_path_label
  303. {
  304. /PSL_n1 PSL_n 1 sub def
  305. /PSL_m1 PSL_m 1 sub def
  306. PSL_CT_calcstringwidth
  307. PSL_CT_calclinedist
  308. PSL_CT_excludelabels
  309. PSL_CT_addcutpoints
  310. /PSL_nn1 PSL_nn 1 sub def
  311. /n 0 def
  312. /k 0 def
  313. /j 0 def
  314. /PSL_seg 0 def
  315. /PSL_xp PSL_nn array def
  316. /PSL_yp PSL_nn array def
  317. PSL_xp 0 PSL_xx 0 get put
  318. PSL_yp 0 PSL_yy 0 get put
  319. 1 1 PSL_nn1
  320. { /i exch def
  321. /node_type PSL_kind i get def
  322. /j j 1 add def
  323. PSL_xp j PSL_xx i get put
  324. PSL_yp j PSL_yy i get put
  325. node_type 1 eq
  326. {n 0 eq
  327. {PSL_CT_drawline}
  328. { PSL_CT_reversepath
  329. PSL_CT_textline} ifelse
  330. /j 0 def
  331. PSL_xp j PSL_xx i get put
  332. PSL_yp j PSL_yy i get put
  333. } if
  334. } for
  335. n 0 eq {PSL_CT_drawline} if
  336. } def
  337. /PSL_CT_textline
  338. { PSL_fnt k get cvx exec
  339. /PSL_height PSL_heights k get def
  340. PSL_placetext {PSL_CT_placelabel} if
  341. PSL_clippath {PSL_CT_clippath} if
  342. /n 0 def /k k 1 add def
  343. } def
  344. /PSL_CT_calcstringwidth
  345. { /PSL_width_tmp PSL_m array def
  346. 0 1 PSL_m1
  347. { /i exch def
  348. PSL_fnt_tmp i get cvx exec
  349. PSL_width_tmp i PSL_str_tmp i get stringwidth pop put
  350. } for
  351. } def
  352. /PSL_CT_calclinedist
  353. { /PSL_newx PSL_x 0 get def
  354. /PSL_newy PSL_y 0 get def
  355. /dist 0.0 def
  356. /PSL_dist PSL_n array def
  357. PSL_dist 0 0.0 put
  358. 1 1 PSL_n1
  359. { /i exch def
  360. /PSL_oldx PSL_newx def
  361. /PSL_oldy PSL_newy def
  362. /PSL_newx PSL_x i get def
  363. /PSL_newy PSL_y i get def
  364. /dx PSL_newx PSL_oldx sub def
  365. /dy PSL_newy PSL_oldy sub def
  366. /dist dist dx dx mul dy dy mul add sqrt add def
  367. PSL_dist i dist put
  368. } for
  369. } def
  370. /PSL_CT_excludelabels
  371. { /k 0 def
  372. /PSL_width PSL_m array def
  373. /PSL_angle PSL_m array def
  374. /PSL_node PSL_m array def
  375. /PSL_str PSL_m array def
  376. /PSL_fnt PSL_m array def
  377. /lastdist PSL_dist PSL_n1 get def
  378. 0 1 PSL_m1
  379. { /i exch def
  380. /dist PSL_dist PSL_node_tmp i get get def
  381. /halfwidth PSL_width_tmp i get 2 div PSL_gap_x add def
  382. /L_dist dist halfwidth sub def
  383. /R_dist dist halfwidth add def
  384. L_dist 0 gt R_dist lastdist lt and
  385. {
  386. PSL_width k PSL_width_tmp i get put
  387. PSL_node k PSL_node_tmp i get put
  388. PSL_angle k PSL_angle_tmp i get put
  389. PSL_str k PSL_str_tmp i get put
  390. PSL_fnt k PSL_fnt_tmp i get put
  391. /k k 1 add def
  392. } if
  393. } for
  394. /PSL_m k def
  395. /PSL_m1 PSL_m 1 sub def
  396. } def
  397. /PSL_CT_addcutpoints
  398. { /k 0 def
  399. /PSL_nc PSL_m 2 mul 1 add def
  400. /PSL_cuts PSL_nc array def
  401. /PSL_nc1 PSL_nc 1 sub def
  402. 0 1 PSL_m1
  403. { /i exch def
  404. /dist PSL_dist PSL_node i get get def
  405. /halfwidth PSL_width i get 2 div PSL_gap_x add def
  406. PSL_cuts k dist halfwidth sub put
  407. /k k 1 add def
  408. PSL_cuts k dist halfwidth add put
  409. /k k 1 add def
  410. } for
  411. PSL_cuts k 100000.0 put
  412. /PSL_nn PSL_n PSL_m 2 mul add def
  413. /PSL_xx PSL_nn array def
  414. /PSL_yy PSL_nn array def
  415. /PSL_kind PSL_nn array def
  416. /j 0 def
  417. /k 0 def
  418. /dist 0.0 def
  419. 0 1 PSL_n1
  420. { /i exch def
  421. /last_dist dist def
  422. /dist PSL_dist i get def
  423. k 1 PSL_nc1
  424. { /kk exch def
  425. /this_cut PSL_cuts kk get def
  426. dist this_cut gt
  427. { /ds dist last_dist sub def
  428. /f ds 0.0 eq {0.0} {dist this_cut sub ds div} ifelse def
  429. /i1 i 0 eq {0} {i 1 sub} ifelse def
  430. PSL_xx j PSL_x i get dup PSL_x i1 get sub f mul sub put
  431. PSL_yy j PSL_y i get dup PSL_y i1 get sub f mul sub put
  432. PSL_kind j 1 put
  433. /j j 1 add def
  434. /k k 1 add def
  435. } if
  436. } for
  437. dist PSL_cuts k get le
  438. {PSL_xx j PSL_x i get put PSL_yy j PSL_y i get put
  439. PSL_kind j 0 put
  440. /j j 1 add def
  441. } if
  442. } for
  443. } def
  444. /PSL_CT_reversepath
  445. {PSL_xp j get PSL_xp 0 get lt
  446. {0 1 j 2 idiv
  447. { /left exch def
  448. /right j left sub def
  449. /tmp PSL_xp left get def
  450. PSL_xp left PSL_xp right get put
  451. PSL_xp right tmp put
  452. /tmp PSL_yp left get def
  453. PSL_yp left PSL_yp right get put
  454. PSL_yp right tmp put
  455. } for
  456. } if
  457. } def
  458. /PSL_CT_placelabel
  459. {
  460. /PSL_just PSL_label_justify k get def
  461. /PSL_height PSL_heights k get def
  462. /psl_label PSL_str k get def
  463. /psl_depth psl_label sd def
  464. PSL_usebox
  465. {PSL_CT_clippath
  466. PSL_fillbox
  467. {V PSL_setboxrgb fill U} if
  468. PSL_drawbox
  469. {V PSL_setboxpen S U} if N
  470. } if
  471. PSL_CT_placeline psl_label PSL_gap_x PSL_just PSL_height psl_depth PSL_pathtext
  472. } def
  473. /PSL_CT_clippath
  474. {
  475. /H PSL_height 2 div PSL_gap_y add def
  476. /xoff j 1 add array def
  477. /yoff j 1 add array def
  478. /angle 0 def
  479. 0 1 j {
  480. /ii exch def
  481. /x PSL_xp ii get def
  482. /y PSL_yp ii get def
  483. ii 0 eq {
  484. /x1 PSL_xp 1 get def
  485. /y1 PSL_yp 1 get def
  486. /dx x1 x sub def
  487. /dy y1 y sub def
  488. }
  489. { /i1 ii 1 sub def
  490. /x1 PSL_xp i1 get def
  491. /y1 PSL_yp i1 get def
  492. /dx x x1 sub def
  493. /dy y y1 sub def
  494. } ifelse
  495. dx 0.0 eq dy 0.0 eq and not
  496. { /angle dy dx atan 90 add def} if
  497. /sina angle sin def
  498. /cosa angle cos def
  499. xoff ii H cosa mul put
  500. yoff ii H sina mul put
  501. } for
  502. PSL_xp 0 get xoff 0 get add PSL_yp 0 get yoff 0 get add M
  503. 1 1 j {
  504. /ii exch def
  505. PSL_xp ii get xoff ii get add PSL_yp ii get yoff ii get add L
  506. } for
  507. j -1 0 {
  508. /ii exch def
  509. PSL_xp ii get xoff ii get sub PSL_yp ii get yoff ii get sub L
  510. } for P
  511. } def
  512. /PSL_CT_drawline
  513. {
  514. /str 20 string def
  515. PSL_strokeline
  516. {PSL_CT_placeline S} if
  517. /PSL_seg PSL_seg 1 add def
  518. /n 1 def
  519. } def
  520. /PSL_CT_placeline
  521. {PSL_xp 0 get PSL_yp 0 get M
  522. 1 1 j { /ii exch def PSL_xp ii get PSL_yp ii get L} for
  523. } def
  524. /PSL_draw_path_lines
  525. {
  526. /PSL_n_paths1 PSL_n_paths 1 sub def
  527. V
  528. /psl_start 0 def
  529. 0 1 PSL_n_paths1
  530. { /psl_k exch def
  531. /PSL_n PSL_path_n psl_k get def
  532. /PSL_n1 PSL_n 1 sub def
  533. PSL_path_pen psl_k get cvx exec
  534. N
  535. PSL_path_x psl_start get PSL_path_y psl_start get M
  536. 1 1 PSL_n1
  537. { /psl_i exch def
  538. /psl_kk psl_i psl_start add def
  539. PSL_path_x psl_kk get PSL_path_y psl_kk get L
  540. } for
  541. /psl_xclose PSL_path_x psl_kk get PSL_path_x psl_start get sub def
  542. /psl_yclose PSL_path_y psl_kk get PSL_path_y psl_start get sub def
  543. psl_xclose 0 eq psl_yclose 0 eq and { P } if
  544. S
  545. /psl_start psl_start PSL_n add def
  546. } for
  547. U
  548. } def
  549. /PSL_straight_path_labels
  550. {
  551. /psl_bits exch def
  552. /PSL_placetext psl_bits 2 and 2 eq def
  553. /PSL_rounded psl_bits 32 and 32 eq def
  554. /PSL_fillbox psl_bits 128 and 128 eq def
  555. /PSL_drawbox psl_bits 256 and 256 eq def
  556. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  557. /PSL_usebox PSL_fillbox PSL_drawbox or def
  558. 0 1 PSL_n_labels_minus_1
  559. { /psl_k exch def
  560. PSL_ST_prepare_text
  561. PSL_usebox
  562. { PSL_rounded
  563. {PSL_ST_textbox_round}
  564. {PSL_ST_textbox_rect}
  565. ifelse
  566. PSL_fillbox {V PSL_setboxrgb fill U} if
  567. PSL_drawbox {V PSL_setboxpen S U} if
  568. N
  569. } if
  570. PSL_placetext {PSL_ST_place_label} if
  571. } for
  572. } def
  573. /PSL_straight_path_clip
  574. {
  575. /psl_bits exch def
  576. /PSL_rounded psl_bits 32 and 32 eq def
  577. /PSL_n_labels_minus_1 PSL_n_labels 1 sub def
  578. N clipsave clippath
  579. 0 1 PSL_n_labels_minus_1
  580. { /psl_k exch def
  581. PSL_ST_prepare_text
  582. PSL_rounded
  583. {PSL_ST_textbox_round}
  584. {PSL_ST_textbox_rect}
  585. ifelse
  586. } for
  587. PSL_eoclip N
  588. } def
  589. /PSL_ST_prepare_text
  590. {
  591. /psl_xp PSL_txt_x psl_k get def
  592. /psl_yp PSL_txt_y psl_k get def
  593. /psl_label PSL_label_str psl_k get def
  594. PSL_label_font psl_k get cvx exec
  595. /PSL_height PSL_heights psl_k get def
  596. /psl_boxH PSL_height PSL_gap_y 2 mul add def
  597. /PSL_just PSL_label_justify psl_k get def
  598. /PSL_justx PSL_just 4 mod 1 sub 2 div neg def
  599. /PSL_justy PSL_just 4 idiv 2 div neg def
  600. /psl_SW psl_label stringwidth pop def
  601. /psl_boxW psl_SW PSL_gap_x 2 mul add def
  602. /psl_x0 psl_SW PSL_justx mul def
  603. /psl_y0 PSL_justy PSL_height mul def
  604. /psl_angle PSL_label_angle psl_k get def
  605. } def
  606. /PSL_ST_textbox_rect
  607. {
  608. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  609. PSL_gap_x neg PSL_gap_y neg M
  610. 0 psl_boxH D psl_boxW 0 D 0 psl_boxH neg D P
  611. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  612. } def
  613. /PSL_ST_textbox_round
  614. {
  615. /psl_BoxR PSL_gap_x PSL_gap_y lt {PSL_gap_x} {PSL_gap_y} ifelse def
  616. /psl_xd PSL_gap_x psl_BoxR sub def
  617. /psl_yd PSL_gap_y psl_BoxR sub def
  618. /psl_xL PSL_gap_x neg def
  619. /psl_yB PSL_gap_y neg def
  620. /psl_yT psl_boxH psl_yB add def
  621. /psl_H2 PSL_height psl_yd 2 mul add def
  622. /psl_W2 psl_SW psl_xd 2 mul add def
  623. /psl_xR psl_xL psl_boxW add def
  624. /psl_x0 psl_SW PSL_justx mul def
  625. psl_xp psl_yp T psl_angle R psl_x0 psl_y0 T
  626. psl_xL psl_yd M
  627. psl_xL psl_yT psl_xR psl_yT psl_BoxR arct psl_W2 0 D
  628. psl_xR psl_yT psl_xR psl_yB psl_BoxR arct 0 psl_H2 neg D
  629. psl_xR psl_yB psl_xL psl_yB psl_BoxR arct psl_W2 neg 0 D
  630. psl_xL psl_yB psl_xL psl_yd psl_BoxR arct P
  631. psl_x0 neg psl_y0 neg T psl_angle neg R psl_xp neg psl_yp neg T
  632. } def
  633. /PSL_ST_place_label
  634. {
  635. V psl_xp psl_yp T psl_angle R
  636. psl_SW PSL_justx mul psl_y0 M
  637. psl_label dup sd neg 0 exch G show
  638. U
  639. } def
  640. /PSL_nclip 0 def
  641. /PSL_clip {clip /PSL_nclip PSL_nclip 1 add def} def
  642. /PSL_eoclip {eoclip /PSL_nclip PSL_nclip 1 add def} def
  643. /PSL_cliprestore {cliprestore /PSL_nclip PSL_nclip 1 sub def} def
  644. %%EndProlog
  645. %%BeginSetup
  646. /PSLevel /languagelevel where {pop languagelevel} {1} ifelse def
  647. PSLevel 1 gt { << /PageSize [612 792] /ImagingBBox null >> setpagedevice } if
  648. %%EndSetup
  649. %%Page: 1 1
  650. %%BeginPageSetup
  651. V 0.06 0.06 scale
  652. %%EndPageSetup
  653. /PSL_page_xsize 10200 def
  654. /PSL_page_ysize 13200 def
  655. /PSL_completion {} def
  656. /PSL_movie_completion {} def
  657. %PSL_End_Header
  658. gsave
  659. 0 A
  660. FQ
  661. O0
  662. -2400 PSL_xorig sub PSL_page_xsize 2 div add 1200 TM
  663. % PostScript produced by:
  664. %@GMT: gmt psxy -R0/4/0/4 -JX4i -P -B0 '-B+glightgray+tQR (opaque)' t.txt -Gred -SkQR/0.75i -Xc -K
  665. %@PROJ: xy 0.00000000 4.00000000 0.00000000 4.00000000 0.000 4.000 0.000 4.000 +xy
  666. %GMTBoundingBox: -144 72 288 288
  667. %%BeginObject PSL_Layer_1
  668. 0 setlinecap
  669. 0 setlinejoin
  670. 3.32551 setmiterlimit
  671. {0.827 A} FS
  672. -4800 0 0 4800 4800 0 3 0 0 SP
  673. clipsave
  674. 0 0 M
  675. 4800 0 D
  676. 0 4800 D
  677. -4800 0 D
  678. P
  679. PSL_clip N
  680. 4 W
  681. V
  682. /QR_outline false def
  683. /QR_fill {1 0 0 C} def
  684. /QR_outline true def
  685. /QR_pen {1 W 0 A [] 0 B} def
  686. {1 0 0 C} FS
  687. O1
  688. 0 W
  689. /Sk_QR {
  690. PSL_eps_begin
  691. 0.36000000 dup scale
  692. 1200 72 div dup scale
  693. %%BeginDocument: QR.eps
  694. % Made by Kristof Koch, February 28, 2019
  695. % psxy will define both QR_outline [false], QR_pen [undefined], and QR_fill [black]
  696. /QR {M 0 -6 D 6 0 D 0 6 D P F} bind def
  697. 1 A
  698. 0 200 M 0 -200 D 200 0 D 0 200 D P F
  699. QR_outline {0 200 M 0 -200 D 200 0 D 0 200 D P V F U QR_pen S} {0 200 M 0 -200 D 200 0 D 0 200 D P F} ifelse
  700. QR_fill
  701. 13 187 QR
  702. 19 187 QR
  703. 25 187 QR
  704. 31 187 QR
  705. 37 187 QR
  706. 43 187 QR
  707. 49 187 QR
  708. 67 187 QR
  709. 91 187 QR
  710. 127 187 QR
  711. 133 187 QR
  712. 145 187 QR
  713. 151 187 QR
  714. 157 187 QR
  715. 163 187 QR
  716. 169 187 QR
  717. 175 187 QR
  718. 181 187 QR
  719. 13 181 QR
  720. 49 181 QR
  721. 61 181 QR
  722. 67 181 QR
  723. 79 181 QR
  724. 85 181 QR
  725. 91 181 QR
  726. 97 181 QR
  727. 103 181 QR
  728. 109 181 QR
  729. 121 181 QR
  730. 145 181 QR
  731. 181 181 QR
  732. 13 175 QR
  733. 25 175 QR
  734. 31 175 QR
  735. 37 175 QR
  736. 49 175 QR
  737. 67 175 QR
  738. 73 175 QR
  739. 79 175 QR
  740. 97 175 QR
  741. 109 175 QR
  742. 121 175 QR
  743. 145 175 QR
  744. 157 175 QR
  745. 163 175 QR
  746. 169 175 QR
  747. 181 175 QR
  748. 13 169 QR
  749. 25 169 QR
  750. 31 169 QR
  751. 37 169 QR
  752. 49 169 QR
  753. 61 169 QR
  754. 67 169 QR
  755. 79 169 QR
  756. 103 169 QR
  757. 115 169 QR
  758. 133 169 QR
  759. 145 169 QR
  760. 157 169 QR
  761. 163 169 QR
  762. 169 169 QR
  763. 181 169 QR
  764. 13 163 QR
  765. 25 163 QR
  766. 31 163 QR
  767. 37 163 QR
  768. 49 163 QR
  769. 73 163 QR
  770. 85 163 QR
  771. 91 163 QR
  772. 109 163 QR
  773. 115 163 QR
  774. 121 163 QR
  775. 127 163 QR
  776. 133 163 QR
  777. 145 163 QR
  778. 157 163 QR
  779. 163 163 QR
  780. 169 163 QR
  781. 181 163 QR
  782. 13 157 QR
  783. 49 157 QR
  784. 61 157 QR
  785. 73 157 QR
  786. 91 157 QR
  787. 97 157 QR
  788. 103 157 QR
  789. 121 157 QR
  790. 133 157 QR
  791. 145 157 QR
  792. 181 157 QR
  793. 13 151 QR
  794. 19 151 QR
  795. 25 151 QR
  796. 31 151 QR
  797. 37 151 QR
  798. 43 151 QR
  799. 49 151 QR
  800. 61 151 QR
  801. 73 151 QR
  802. 85 151 QR
  803. 97 151 QR
  804. 109 151 QR
  805. 121 151 QR
  806. 133 151 QR
  807. 145 151 QR
  808. 151 151 QR
  809. 157 151 QR
  810. 163 151 QR
  811. 169 151 QR
  812. 175 151 QR
  813. 181 151 QR
  814. 85 145 QR
  815. 91 145 QR
  816. 13 139 QR
  817. 19 139 QR
  818. 25 139 QR
  819. 31 139 QR
  820. 37 139 QR
  821. 49 139 QR
  822. 55 139 QR
  823. 61 139 QR
  824. 67 139 QR
  825. 73 139 QR
  826. 85 139 QR
  827. 97 139 QR
  828. 103 139 QR
  829. 109 139 QR
  830. 115 139 QR
  831. 139 139 QR
  832. 151 139 QR
  833. 163 139 QR
  834. 175 139 QR
  835. 37 133 QR
  836. 55 133 QR
  837. 61 133 QR
  838. 67 133 QR
  839. 109 133 QR
  840. 115 133 QR
  841. 121 133 QR
  842. 127 133 QR
  843. 133 133 QR
  844. 139 133 QR
  845. 145 133 QR
  846. 151 133 QR
  847. 157 133 QR
  848. 181 133 QR
  849. 19 127 QR
  850. 25 127 QR
  851. 31 127 QR
  852. 37 127 QR
  853. 43 127 QR
  854. 49 127 QR
  855. 55 127 QR
  856. 67 127 QR
  857. 79 127 QR
  858. 85 127 QR
  859. 103 127 QR
  860. 109 127 QR
  861. 115 127 QR
  862. 133 127 QR
  863. 151 127 QR
  864. 13 121 QR
  865. 19 121 QR
  866. 37 121 QR
  867. 61 121 QR
  868. 67 121 QR
  869. 73 121 QR
  870. 79 121 QR
  871. 97 121 QR
  872. 109 121 QR
  873. 121 121 QR
  874. 133 121 QR
  875. 151 121 QR
  876. 157 121 QR
  877. 175 121 QR
  878. 13 115 QR
  879. 25 115 QR
  880. 31 115 QR
  881. 43 115 QR
  882. 49 115 QR
  883. 55 115 QR
  884. 61 115 QR
  885. 67 115 QR
  886. 79 115 QR
  887. 115 115 QR
  888. 127 115 QR
  889. 163 115 QR
  890. 169 115 QR
  891. 43 109 QR
  892. 55 109 QR
  893. 61 109 QR
  894. 73 109 QR
  895. 85 109 QR
  896. 91 109 QR
  897. 97 109 QR
  898. 109 109 QR
  899. 121 109 QR
  900. 127 109 QR
  901. 133 109 QR
  902. 139 109 QR
  903. 145 109 QR
  904. 151 109 QR
  905. 157 109 QR
  906. 169 109 QR
  907. 181 109 QR
  908. 25 103 QR
  909. 43 103 QR
  910. 49 103 QR
  911. 61 103 QR
  912. 73 103 QR
  913. 91 103 QR
  914. 97 103 QR
  915. 103 103 QR
  916. 115 103 QR
  917. 133 103 QR
  918. 145 103 QR
  919. 169 103 QR
  920. 31 97 QR
  921. 55 97 QR
  922. 61 97 QR
  923. 67 97 QR
  924. 85 97 QR
  925. 91 97 QR
  926. 109 97 QR
  927. 133 97 QR
  928. 139 97 QR
  929. 145 97 QR
  930. 151 97 QR
  931. 175 97 QR
  932. 13 91 QR
  933. 19 91 QR
  934. 43 91 QR
  935. 49 91 QR
  936. 61 91 QR
  937. 67 91 QR
  938. 73 91 QR
  939. 85 91 QR
  940. 97 91 QR
  941. 115 91 QR
  942. 121 91 QR
  943. 127 91 QR
  944. 169 91 QR
  945. 13 85 QR
  946. 37 85 QR
  947. 67 85 QR
  948. 73 85 QR
  949. 115 85 QR
  950. 121 85 QR
  951. 127 85 QR
  952. 139 85 QR
  953. 145 85 QR
  954. 157 85 QR
  955. 163 85 QR
  956. 169 85 QR
  957. 181 85 QR
  958. 13 79 QR
  959. 31 79 QR
  960. 43 79 QR
  961. 49 79 QR
  962. 67 79 QR
  963. 79 79 QR
  964. 85 79 QR
  965. 103 79 QR
  966. 109 79 QR
  967. 133 79 QR
  968. 151 79 QR
  969. 163 79 QR
  970. 169 79 QR
  971. 13 73 QR
  972. 37 73 QR
  973. 55 73 QR
  974. 67 73 QR
  975. 79 73 QR
  976. 97 73 QR
  977. 127 73 QR
  978. 151 73 QR
  979. 157 73 QR
  980. 175 73 QR
  981. 13 67 QR
  982. 25 67 QR
  983. 31 67 QR
  984. 37 67 QR
  985. 49 67 QR
  986. 55 67 QR
  987. 61 67 QR
  988. 79 67 QR
  989. 103 67 QR
  990. 109 67 QR
  991. 115 67 QR
  992. 133 67 QR
  993. 139 67 QR
  994. 145 67 QR
  995. 151 67 QR
  996. 157 67 QR
  997. 169 67 QR
  998. 175 67 QR
  999. 181 67 QR
  1000. 61 61 QR
  1001. 67 61 QR
  1002. 85 61 QR
  1003. 91 61 QR
  1004. 97 61 QR
  1005. 109 61 QR
  1006. 133 61 QR
  1007. 157 61 QR
  1008. 163 61 QR
  1009. 169 61 QR
  1010. 175 61 QR
  1011. 181 61 QR
  1012. 13 55 QR
  1013. 19 55 QR
  1014. 25 55 QR
  1015. 31 55 QR
  1016. 37 55 QR
  1017. 43 55 QR
  1018. 49 55 QR
  1019. 61 55 QR
  1020. 91 55 QR
  1021. 97 55 QR
  1022. 103 55 QR
  1023. 127 55 QR
  1024. 133 55 QR
  1025. 145 55 QR
  1026. 157 55 QR
  1027. 163 55 QR
  1028. 169 55 QR
  1029. 13 49 QR
  1030. 49 49 QR
  1031. 67 49 QR
  1032. 85 49 QR
  1033. 91 49 QR
  1034. 103 49 QR
  1035. 109 49 QR
  1036. 121 49 QR
  1037. 127 49 QR
  1038. 133 49 QR
  1039. 157 49 QR
  1040. 163 49 QR
  1041. 13 43 QR
  1042. 25 43 QR
  1043. 31 43 QR
  1044. 37 43 QR
  1045. 49 43 QR
  1046. 61 43 QR
  1047. 73 43 QR
  1048. 85 43 QR
  1049. 97 43 QR
  1050. 115 43 QR
  1051. 133 43 QR
  1052. 139 43 QR
  1053. 145 43 QR
  1054. 151 43 QR
  1055. 157 43 QR
  1056. 163 43 QR
  1057. 169 43 QR
  1058. 13 37 QR
  1059. 25 37 QR
  1060. 31 37 QR
  1061. 37 37 QR
  1062. 49 37 QR
  1063. 61 37 QR
  1064. 73 37 QR
  1065. 109 37 QR
  1066. 115 37 QR
  1067. 121 37 QR
  1068. 127 37 QR
  1069. 151 37 QR
  1070. 163 37 QR
  1071. 175 37 QR
  1072. 181 37 QR
  1073. 13 31 QR
  1074. 25 31 QR
  1075. 31 31 QR
  1076. 37 31 QR
  1077. 49 31 QR
  1078. 61 31 QR
  1079. 67 31 QR
  1080. 79 31 QR
  1081. 85 31 QR
  1082. 103 31 QR
  1083. 109 31 QR
  1084. 115 31 QR
  1085. 133 31 QR
  1086. 145 31 QR
  1087. 151 31 QR
  1088. 157 31 QR
  1089. 163 31 QR
  1090. 169 31 QR
  1091. 175 31 QR
  1092. 13 25 QR
  1093. 49 25 QR
  1094. 61 25 QR
  1095. 67 25 QR
  1096. 79 25 QR
  1097. 97 25 QR
  1098. 109 25 QR
  1099. 133 25 QR
  1100. 139 25 QR
  1101. 151 25 QR
  1102. 163 25 QR
  1103. 175 25 QR
  1104. 13 19 QR
  1105. 19 19 QR
  1106. 25 19 QR
  1107. 31 19 QR
  1108. 37 19 QR
  1109. 43 19 QR
  1110. 49 19 QR
  1111. 61 19 QR
  1112. 73 19 QR
  1113. 79 19 QR
  1114. 115 19 QR
  1115. 127 19 QR
  1116. 139 19 QR
  1117. 145 19 QR
  1118. 151 19 QR
  1119. 157 19 QR
  1120. 163 19 QR
  1121. 169 19 QR
  1122. % End of QR symbol definition
  1123. %%EndDocument
  1124. PSL_eps_end } def
  1125. V 750 750 T
  1126. 0.75 dup scale Sk_QR U
  1127. /QR_fill {1 0.753 0.796 C} def
  1128. /QR_outline true def
  1129. /QR_pen {1 W 0 A [] 0 B} def
  1130. {1 0.753 0.796 C} FS
  1131. 33 W
  1132. V 1950 750 T
  1133. 0.75 dup scale Sk_QR U
  1134. /QR_fill {1 1 0 C} def
  1135. /QR_outline false def
  1136. {1 1 0 C} FS
  1137. O0
  1138. 4 W
  1139. V 3150 750 T
  1140. 0.75 dup scale Sk_QR U
  1141. /QR_fill {0 0 1 C} def
  1142. /QR_outline true def
  1143. /QR_pen {1 W 0 A [] 0 B} def
  1144. {0 0 1 C} FS
  1145. O1
  1146. 17 W
  1147. 1 0 0 C
  1148. V 750 1950 T
  1149. 0.75 dup scale Sk_QR U
  1150. /QR_fill {0 1 0 C} def
  1151. /QR_outline true def
  1152. /QR_pen {1 W 0 A [] 0 B} def
  1153. {0 1 0 C} FS
  1154. 0 1 0 C
  1155. V 1950 1950 T
  1156. 0.75 dup scale Sk_QR U
  1157. /QR_fill {0 1 1 C} def
  1158. /QR_outline false def
  1159. {0 1 1 C} FS
  1160. O0
  1161. 4 W
  1162. 0 A
  1163. V 3150 1950 T
  1164. 0.75 dup scale Sk_QR U
  1165. /QR_fill {0.745 A} def
  1166. /QR_outline false def
  1167. {0.745 A} FS
  1168. V 750 3150 T
  1169. 0.75 dup scale Sk_QR U
  1170. /QR_fill {0 A} def
  1171. /QR_outline true def
  1172. /QR_pen {1 W 0 A [] 0 B} def
  1173. {0 A} FS
  1174. O1
  1175. 17 W
  1176. 1 A
  1177. V 1950 3150 T
  1178. 0.75 dup scale Sk_QR U
  1179. /QR_fill {0.647 0.165 0.165 C} def
  1180. /QR_outline true def
  1181. /QR_pen {1 W 0 A [] 0 B} def
  1182. {0.647 0.165 0.165 C} FS
  1183. 0 W
  1184. 0 A
  1185. V 3150 3150 T
  1186. 0.75 dup scale Sk_QR U
  1187. U
  1188. PSL_cliprestore
  1189. 25 W
  1190. 2 setlinecap
  1191. N 0 4800 M 0 -4800 D S
  1192. /PSL_A0_y 0 def
  1193. /PSL_A1_y 0 def
  1194. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1195. 4800 0 T
  1196. N 0 4800 M 0 -4800 D S
  1197. /PSL_A0_y 0 def
  1198. /PSL_A1_y 0 def
  1199. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1200. -4800 0 T
  1201. N 0 0 M 4800 0 D S
  1202. /PSL_A0_y 0 def
  1203. /PSL_A1_y 0 def
  1204. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1205. 0 4800 T
  1206. N 0 0 M 4800 0 D S
  1207. /PSL_A0_y 0 def
  1208. /PSL_A1_y 0 def
  1209. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1210. 0 -4800 T
  1211. 0 setlinecap
  1212. /PSL_H_y PSL_L_y PSL_LH add 233 add def
  1213. 2400 4800 PSL_H_y add M
  1214. PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1215. 400 F0
  1216. (QR \(opaque\)) bc Z
  1217. %%EndObject
  1218. 0 A
  1219. FQ
  1220. O0
  1221. 0 5700 TM
  1222. % PostScript produced by:
  1223. %@GMT: gmt psxy -R0/4/0/4 -JX4i -O -B0 '-B+glightgray+tQR (transparent)' t.txt -Gred -SkQR_transparent/0.75i -Y4.75i
  1224. %@PROJ: xy 0.00000000 4.00000000 0.00000000 4.00000000 0.000 4.000 0.000 4.000 +xy
  1225. %%BeginObject PSL_Layer_2
  1226. 0 setlinecap
  1227. 0 setlinejoin
  1228. 3.32551 setmiterlimit
  1229. {0.827 A} FS
  1230. -4800 0 0 4800 4800 0 3 0 0 SP
  1231. clipsave
  1232. 0 0 M
  1233. 4800 0 D
  1234. 0 4800 D
  1235. -4800 0 D
  1236. P
  1237. PSL_clip N
  1238. 4 W
  1239. V
  1240. /QR_outline false def
  1241. /QR_fill {1 0 0 C} def
  1242. /QR_outline true def
  1243. /QR_pen {1 W 0 A [] 0 B} def
  1244. {1 0 0 C} FS
  1245. O1
  1246. 0 W
  1247. /Sk_QR_transparent {
  1248. PSL_eps_begin
  1249. 0.36000000 dup scale
  1250. 1200 72 div dup scale
  1251. %%BeginDocument: QR_transparent.eps
  1252. % Made by Kristof Koch, February 28, 2019 (transparent version)
  1253. % psxy will define both QR_outline [false], QR_pen [undefined], and QR_fill [black]
  1254. /QR {M 0 -6 D 6 0 D 0 6 D P F} bind def
  1255. QR_outline {0 200 M 0 -200 D 200 0 D 0 200 D P QR_pen S} if
  1256. QR_fill
  1257. 13 187 QR
  1258. 19 187 QR
  1259. 25 187 QR
  1260. 31 187 QR
  1261. 37 187 QR
  1262. 43 187 QR
  1263. 49 187 QR
  1264. 67 187 QR
  1265. 91 187 QR
  1266. 127 187 QR
  1267. 133 187 QR
  1268. 145 187 QR
  1269. 151 187 QR
  1270. 157 187 QR
  1271. 163 187 QR
  1272. 169 187 QR
  1273. 175 187 QR
  1274. 181 187 QR
  1275. 13 181 QR
  1276. 49 181 QR
  1277. 61 181 QR
  1278. 67 181 QR
  1279. 79 181 QR
  1280. 85 181 QR
  1281. 91 181 QR
  1282. 97 181 QR
  1283. 103 181 QR
  1284. 109 181 QR
  1285. 121 181 QR
  1286. 145 181 QR
  1287. 181 181 QR
  1288. 13 175 QR
  1289. 25 175 QR
  1290. 31 175 QR
  1291. 37 175 QR
  1292. 49 175 QR
  1293. 67 175 QR
  1294. 73 175 QR
  1295. 79 175 QR
  1296. 97 175 QR
  1297. 109 175 QR
  1298. 121 175 QR
  1299. 145 175 QR
  1300. 157 175 QR
  1301. 163 175 QR
  1302. 169 175 QR
  1303. 181 175 QR
  1304. 13 169 QR
  1305. 25 169 QR
  1306. 31 169 QR
  1307. 37 169 QR
  1308. 49 169 QR
  1309. 61 169 QR
  1310. 67 169 QR
  1311. 79 169 QR
  1312. 103 169 QR
  1313. 115 169 QR
  1314. 133 169 QR
  1315. 145 169 QR
  1316. 157 169 QR
  1317. 163 169 QR
  1318. 169 169 QR
  1319. 181 169 QR
  1320. 13 163 QR
  1321. 25 163 QR
  1322. 31 163 QR
  1323. 37 163 QR
  1324. 49 163 QR
  1325. 73 163 QR
  1326. 85 163 QR
  1327. 91 163 QR
  1328. 109 163 QR
  1329. 115 163 QR
  1330. 121 163 QR
  1331. 127 163 QR
  1332. 133 163 QR
  1333. 145 163 QR
  1334. 157 163 QR
  1335. 163 163 QR
  1336. 169 163 QR
  1337. 181 163 QR
  1338. 13 157 QR
  1339. 49 157 QR
  1340. 61 157 QR
  1341. 73 157 QR
  1342. 91 157 QR
  1343. 97 157 QR
  1344. 103 157 QR
  1345. 121 157 QR
  1346. 133 157 QR
  1347. 145 157 QR
  1348. 181 157 QR
  1349. 13 151 QR
  1350. 19 151 QR
  1351. 25 151 QR
  1352. 31 151 QR
  1353. 37 151 QR
  1354. 43 151 QR
  1355. 49 151 QR
  1356. 61 151 QR
  1357. 73 151 QR
  1358. 85 151 QR
  1359. 97 151 QR
  1360. 109 151 QR
  1361. 121 151 QR
  1362. 133 151 QR
  1363. 145 151 QR
  1364. 151 151 QR
  1365. 157 151 QR
  1366. 163 151 QR
  1367. 169 151 QR
  1368. 175 151 QR
  1369. 181 151 QR
  1370. 85 145 QR
  1371. 91 145 QR
  1372. 13 139 QR
  1373. 19 139 QR
  1374. 25 139 QR
  1375. 31 139 QR
  1376. 37 139 QR
  1377. 49 139 QR
  1378. 55 139 QR
  1379. 61 139 QR
  1380. 67 139 QR
  1381. 73 139 QR
  1382. 85 139 QR
  1383. 97 139 QR
  1384. 103 139 QR
  1385. 109 139 QR
  1386. 115 139 QR
  1387. 139 139 QR
  1388. 151 139 QR
  1389. 163 139 QR
  1390. 175 139 QR
  1391. 37 133 QR
  1392. 55 133 QR
  1393. 61 133 QR
  1394. 67 133 QR
  1395. 109 133 QR
  1396. 115 133 QR
  1397. 121 133 QR
  1398. 127 133 QR
  1399. 133 133 QR
  1400. 139 133 QR
  1401. 145 133 QR
  1402. 151 133 QR
  1403. 157 133 QR
  1404. 181 133 QR
  1405. 19 127 QR
  1406. 25 127 QR
  1407. 31 127 QR
  1408. 37 127 QR
  1409. 43 127 QR
  1410. 49 127 QR
  1411. 55 127 QR
  1412. 67 127 QR
  1413. 79 127 QR
  1414. 85 127 QR
  1415. 103 127 QR
  1416. 109 127 QR
  1417. 115 127 QR
  1418. 133 127 QR
  1419. 151 127 QR
  1420. 13 121 QR
  1421. 19 121 QR
  1422. 37 121 QR
  1423. 61 121 QR
  1424. 67 121 QR
  1425. 73 121 QR
  1426. 79 121 QR
  1427. 97 121 QR
  1428. 109 121 QR
  1429. 121 121 QR
  1430. 133 121 QR
  1431. 151 121 QR
  1432. 157 121 QR
  1433. 175 121 QR
  1434. 13 115 QR
  1435. 25 115 QR
  1436. 31 115 QR
  1437. 43 115 QR
  1438. 49 115 QR
  1439. 55 115 QR
  1440. 61 115 QR
  1441. 67 115 QR
  1442. 79 115 QR
  1443. 115 115 QR
  1444. 127 115 QR
  1445. 163 115 QR
  1446. 169 115 QR
  1447. 43 109 QR
  1448. 55 109 QR
  1449. 61 109 QR
  1450. 73 109 QR
  1451. 85 109 QR
  1452. 91 109 QR
  1453. 97 109 QR
  1454. 109 109 QR
  1455. 121 109 QR
  1456. 127 109 QR
  1457. 133 109 QR
  1458. 139 109 QR
  1459. 145 109 QR
  1460. 151 109 QR
  1461. 157 109 QR
  1462. 169 109 QR
  1463. 181 109 QR
  1464. 25 103 QR
  1465. 43 103 QR
  1466. 49 103 QR
  1467. 61 103 QR
  1468. 73 103 QR
  1469. 91 103 QR
  1470. 97 103 QR
  1471. 103 103 QR
  1472. 115 103 QR
  1473. 133 103 QR
  1474. 145 103 QR
  1475. 169 103 QR
  1476. 31 97 QR
  1477. 55 97 QR
  1478. 61 97 QR
  1479. 67 97 QR
  1480. 85 97 QR
  1481. 91 97 QR
  1482. 109 97 QR
  1483. 133 97 QR
  1484. 139 97 QR
  1485. 145 97 QR
  1486. 151 97 QR
  1487. 175 97 QR
  1488. 13 91 QR
  1489. 19 91 QR
  1490. 43 91 QR
  1491. 49 91 QR
  1492. 61 91 QR
  1493. 67 91 QR
  1494. 73 91 QR
  1495. 85 91 QR
  1496. 97 91 QR
  1497. 115 91 QR
  1498. 121 91 QR
  1499. 127 91 QR
  1500. 169 91 QR
  1501. 13 85 QR
  1502. 37 85 QR
  1503. 67 85 QR
  1504. 73 85 QR
  1505. 115 85 QR
  1506. 121 85 QR
  1507. 127 85 QR
  1508. 139 85 QR
  1509. 145 85 QR
  1510. 157 85 QR
  1511. 163 85 QR
  1512. 169 85 QR
  1513. 181 85 QR
  1514. 13 79 QR
  1515. 31 79 QR
  1516. 43 79 QR
  1517. 49 79 QR
  1518. 67 79 QR
  1519. 79 79 QR
  1520. 85 79 QR
  1521. 103 79 QR
  1522. 109 79 QR
  1523. 133 79 QR
  1524. 151 79 QR
  1525. 163 79 QR
  1526. 169 79 QR
  1527. 13 73 QR
  1528. 37 73 QR
  1529. 55 73 QR
  1530. 67 73 QR
  1531. 79 73 QR
  1532. 97 73 QR
  1533. 127 73 QR
  1534. 151 73 QR
  1535. 157 73 QR
  1536. 175 73 QR
  1537. 13 67 QR
  1538. 25 67 QR
  1539. 31 67 QR
  1540. 37 67 QR
  1541. 49 67 QR
  1542. 55 67 QR
  1543. 61 67 QR
  1544. 79 67 QR
  1545. 103 67 QR
  1546. 109 67 QR
  1547. 115 67 QR
  1548. 133 67 QR
  1549. 139 67 QR
  1550. 145 67 QR
  1551. 151 67 QR
  1552. 157 67 QR
  1553. 169 67 QR
  1554. 175 67 QR
  1555. 181 67 QR
  1556. 61 61 QR
  1557. 67 61 QR
  1558. 85 61 QR
  1559. 91 61 QR
  1560. 97 61 QR
  1561. 109 61 QR
  1562. 133 61 QR
  1563. 157 61 QR
  1564. 163 61 QR
  1565. 169 61 QR
  1566. 175 61 QR
  1567. 181 61 QR
  1568. 13 55 QR
  1569. 19 55 QR
  1570. 25 55 QR
  1571. 31 55 QR
  1572. 37 55 QR
  1573. 43 55 QR
  1574. 49 55 QR
  1575. 61 55 QR
  1576. 91 55 QR
  1577. 97 55 QR
  1578. 103 55 QR
  1579. 127 55 QR
  1580. 133 55 QR
  1581. 145 55 QR
  1582. 157 55 QR
  1583. 163 55 QR
  1584. 169 55 QR
  1585. 13 49 QR
  1586. 49 49 QR
  1587. 67 49 QR
  1588. 85 49 QR
  1589. 91 49 QR
  1590. 103 49 QR
  1591. 109 49 QR
  1592. 121 49 QR
  1593. 127 49 QR
  1594. 133 49 QR
  1595. 157 49 QR
  1596. 163 49 QR
  1597. 13 43 QR
  1598. 25 43 QR
  1599. 31 43 QR
  1600. 37 43 QR
  1601. 49 43 QR
  1602. 61 43 QR
  1603. 73 43 QR
  1604. 85 43 QR
  1605. 97 43 QR
  1606. 115 43 QR
  1607. 133 43 QR
  1608. 139 43 QR
  1609. 145 43 QR
  1610. 151 43 QR
  1611. 157 43 QR
  1612. 163 43 QR
  1613. 169 43 QR
  1614. 13 37 QR
  1615. 25 37 QR
  1616. 31 37 QR
  1617. 37 37 QR
  1618. 49 37 QR
  1619. 61 37 QR
  1620. 73 37 QR
  1621. 109 37 QR
  1622. 115 37 QR
  1623. 121 37 QR
  1624. 127 37 QR
  1625. 151 37 QR
  1626. 163 37 QR
  1627. 175 37 QR
  1628. 181 37 QR
  1629. 13 31 QR
  1630. 25 31 QR
  1631. 31 31 QR
  1632. 37 31 QR
  1633. 49 31 QR
  1634. 61 31 QR
  1635. 67 31 QR
  1636. 79 31 QR
  1637. 85 31 QR
  1638. 103 31 QR
  1639. 109 31 QR
  1640. 115 31 QR
  1641. 133 31 QR
  1642. 145 31 QR
  1643. 151 31 QR
  1644. 157 31 QR
  1645. 163 31 QR
  1646. 169 31 QR
  1647. 175 31 QR
  1648. 13 25 QR
  1649. 49 25 QR
  1650. 61 25 QR
  1651. 67 25 QR
  1652. 79 25 QR
  1653. 97 25 QR
  1654. 109 25 QR
  1655. 133 25 QR
  1656. 139 25 QR
  1657. 151 25 QR
  1658. 163 25 QR
  1659. 175 25 QR
  1660. 13 19 QR
  1661. 19 19 QR
  1662. 25 19 QR
  1663. 31 19 QR
  1664. 37 19 QR
  1665. 43 19 QR
  1666. 49 19 QR
  1667. 61 19 QR
  1668. 73 19 QR
  1669. 79 19 QR
  1670. 115 19 QR
  1671. 127 19 QR
  1672. 139 19 QR
  1673. 145 19 QR
  1674. 151 19 QR
  1675. 157 19 QR
  1676. 163 19 QR
  1677. 169 19 QR
  1678. % End of QR symbol definition
  1679. %%EndDocument
  1680. PSL_eps_end } def
  1681. V 750 750 T
  1682. 0.75 dup scale Sk_QR_transparent U
  1683. /QR_fill {1 0.753 0.796 C} def
  1684. /QR_outline true def
  1685. /QR_pen {1 W 0 A [] 0 B} def
  1686. {1 0.753 0.796 C} FS
  1687. 33 W
  1688. V 1950 750 T
  1689. 0.75 dup scale Sk_QR_transparent U
  1690. /QR_fill {1 1 0 C} def
  1691. /QR_outline false def
  1692. {1 1 0 C} FS
  1693. O0
  1694. 4 W
  1695. V 3150 750 T
  1696. 0.75 dup scale Sk_QR_transparent U
  1697. /QR_fill {0 0 1 C} def
  1698. /QR_outline true def
  1699. /QR_pen {1 W 0 A [] 0 B} def
  1700. {0 0 1 C} FS
  1701. O1
  1702. 17 W
  1703. 1 0 0 C
  1704. V 750 1950 T
  1705. 0.75 dup scale Sk_QR_transparent U
  1706. /QR_fill {0 1 0 C} def
  1707. /QR_outline true def
  1708. /QR_pen {1 W 0 A [] 0 B} def
  1709. {0 1 0 C} FS
  1710. 0 1 0 C
  1711. V 1950 1950 T
  1712. 0.75 dup scale Sk_QR_transparent U
  1713. /QR_fill {0 1 1 C} def
  1714. /QR_outline false def
  1715. {0 1 1 C} FS
  1716. O0
  1717. 4 W
  1718. 0 A
  1719. V 3150 1950 T
  1720. 0.75 dup scale Sk_QR_transparent U
  1721. /QR_fill {0.745 A} def
  1722. /QR_outline false def
  1723. {0.745 A} FS
  1724. V 750 3150 T
  1725. 0.75 dup scale Sk_QR_transparent U
  1726. /QR_fill {0 A} def
  1727. /QR_outline true def
  1728. /QR_pen {1 W 0 A [] 0 B} def
  1729. {0 A} FS
  1730. O1
  1731. 17 W
  1732. 1 A
  1733. V 1950 3150 T
  1734. 0.75 dup scale Sk_QR_transparent U
  1735. /QR_fill {0.647 0.165 0.165 C} def
  1736. /QR_outline true def
  1737. /QR_pen {1 W 0 A [] 0 B} def
  1738. {0.647 0.165 0.165 C} FS
  1739. 0 W
  1740. 0 A
  1741. V 3150 3150 T
  1742. 0.75 dup scale Sk_QR_transparent U
  1743. U
  1744. PSL_cliprestore
  1745. 25 W
  1746. 2 setlinecap
  1747. N 0 4800 M 0 -4800 D S
  1748. /PSL_A0_y 0 def
  1749. /PSL_A1_y 0 def
  1750. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1751. 4800 0 T
  1752. N 0 4800 M 0 -4800 D S
  1753. /PSL_A0_y 0 def
  1754. /PSL_A1_y 0 def
  1755. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1756. -4800 0 T
  1757. N 0 0 M 4800 0 D S
  1758. /PSL_A0_y 0 def
  1759. /PSL_A1_y 0 def
  1760. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1761. 0 4800 T
  1762. N 0 0 M 4800 0 D S
  1763. /PSL_A0_y 0 def
  1764. /PSL_A1_y 0 def
  1765. /PSL_LH 0 def /PSL_L_y PSL_A0_y PSL_A1_y mx def
  1766. 0 -4800 T
  1767. 0 setlinecap
  1768. /PSL_H_y PSL_L_y PSL_LH add 233 add def
  1769. 2400 4800 PSL_H_y add M
  1770. PSL_font_encode 0 get 0 eq {ISOLatin1+_Encoding /Helvetica /Helvetica PSL_reencode PSL_font_encode 0 1 put} if
  1771. 400 F0
  1772. (QR \(transparent\)) bc Z
  1773. %%EndObject
  1774. grestore
  1775. PSL_movie_completion /PSL_movie_completion {} def
  1776. %PSL_Begin_Trailer
  1777. %%PageTrailer
  1778. U
  1779. showpage
  1780. %%Trailer
  1781. end
  1782. %%EOF
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...