aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/qpdf/issue-335a.out
blob: 812fa5703b146140d345f3d372abbeada83370fd (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
WARNING: issue-335a.pdf: can't find PDF header
WARNING: issue-335a.pdf: file is damaged
WARNING: issue-335a.pdf: can't find startxref
WARNING: issue-335a.pdf: Attempting to reconstruct cross-reference table
WARNING: issue-335a.pdf (trailer, offset 26): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 27): unexpected )
WARNING: issue-335a.pdf (trailer, offset 28): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 29): unexpected )
WARNING: issue-335a.pdf (trailer, offset 30): unexpected )
WARNING: issue-335a.pdf (trailer, offset 63): unexpected )
WARNING: issue-335a.pdf (trailer, offset 63): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 44): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 61): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 62): unexpected )
WARNING: issue-335a.pdf (trailer, offset 63): unexpected )
WARNING: issue-335a.pdf (trailer, offset 64): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 67): unexpected )
WARNING: issue-335a.pdf (trailer, offset 68): unexpected )
WARNING: issue-335a.pdf (trailer, offset 68): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 59): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 60): unexpected )
WARNING: issue-335a.pdf (trailer, offset 61): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 62): unexpected )
WARNING: issue-335a.pdf (trailer, offset 63): unexpected )
WARNING: issue-335a.pdf (trailer, offset 64): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 67): unexpected )
WARNING: issue-335a.pdf (trailer, offset 67): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 96): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 113): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 114): unexpected )
WARNING: issue-335a.pdf (trailer, offset 115): unexpected )
WARNING: issue-335a.pdf (trailer, offset 116): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 119): unexpected )
WARNING: issue-335a.pdf (trailer, offset 120): unexpected )
WARNING: issue-335a.pdf (trailer, offset 120): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 111): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 112): unexpected )
WARNING: issue-335a.pdf (trailer, offset 113): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 114): unexpected )
WARNING: issue-335a.pdf (trailer, offset 115): unexpected )
WARNING: issue-335a.pdf (trailer, offset 116): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 119): unexpected )
WARNING: issue-335a.pdf (trailer, offset 119): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 134): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 150): unexpected )
WARNING: issue-335a.pdf (trailer, offset 280): unexpected )
WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 284): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 148): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 149): unexpected )
WARNING: issue-335a.pdf (trailer, offset 150): unexpected )
WARNING: issue-335a.pdf (trailer, offset 280): unexpected )
WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 284): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 164): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 217): unexpected )
WARNING: issue-335a.pdf (trailer, offset 280): unexpected )
WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 284): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 178): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 212): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 213): unexpected )
WARNING: issue-335a.pdf (trailer, offset 214): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 215): unexpected )
WARNING: issue-335a.pdf (trailer, offset 216): unexpected )
WARNING: issue-335a.pdf (trailer, offset 217): unexpected )
WARNING: issue-335a.pdf (trailer, offset 217): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 231): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 247): unexpected )
WARNING: issue-335a.pdf (trailer, offset 280): unexpected )
WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 284): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 245): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 246): unexpected )
WARNING: issue-335a.pdf (trailer, offset 247): unexpected )
WARNING: issue-335a.pdf (trailer, offset 280): unexpected )
WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 284): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 261): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 278): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 279): unexpected )
WARNING: issue-335a.pdf (trailer, offset 280): unexpected )
WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 284): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): unexpected )
WARNING: issue-335a.pdf (trailer, offset 285): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 276): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 277): unexpected )
WARNING: issue-335a.pdf (trailer, offset 278): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 279): unexpected )
WARNING: issue-335a.pdf (trailer, offset 280): unexpected )
WARNING: issue-335a.pdf (trailer, offset 281): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 284): unexpected )
WARNING: issue-335a.pdf (trailer, offset 284): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 299): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 315): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 313): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 314): unexpected )
WARNING: issue-335a.pdf (trailer, offset 315): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 329): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 403): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 361): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 379): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 380): unexpected )
WARNING: issue-335a.pdf (trailer, offset 381): unexpected )
WARNING: issue-335a.pdf (trailer, offset 403): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 377): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 378): unexpected )
WARNING: issue-335a.pdf (trailer, offset 379): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 380): unexpected )
WARNING: issue-335a.pdf (trailer, offset 381): unexpected )
WARNING: issue-335a.pdf (trailer, offset 403): unexpected )
WARNING: issue-335a.pdf (trailer, offset 403): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 395): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 401): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 402): unexpected )
WARNING: issue-335a.pdf (trailer, offset 403): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 417): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 433): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 431): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 432): unexpected )
WARNING: issue-335a.pdf (trailer, offset 433): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 447): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 450): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 461): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 464): invalid character (¨) in hexstring
WARNING: issue-335a.pdf (trailer, offset 499): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 461): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 479): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 497): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 498): unexpected )
WARNING: issue-335a.pdf (trailer, offset 499): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 495): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 496): unexpected )
WARNING: issue-335a.pdf (trailer, offset 497): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 498): unexpected )
WARNING: issue-335a.pdf (trailer, offset 499): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 513): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 529): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 527): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 528): unexpected )
WARNING: issue-335a.pdf (trailer, offset 529): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 543): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 561): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 562): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 559): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 560): unexpected )
WARNING: issue-335a.pdf (trailer, offset 561): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 562): unexpected )
WARNING: issue-335a.pdf (trailer, offset 563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 577): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 594): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 595): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 601): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 592): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 593): unexpected )
WARNING: issue-335a.pdf (trailer, offset 594): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 595): unexpected )
WARNING: issue-335a.pdf (trailer, offset 596): unexpected )
WARNING: issue-335a.pdf (trailer, offset 597): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 600): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 629): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 646): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 647): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 653): unexpected )
WARNING: issue-335a.pdf (trailer, offset 653): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 644): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 645): unexpected )
WARNING: issue-335a.pdf (trailer, offset 646): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 647): unexpected )
WARNING: issue-335a.pdf (trailer, offset 648): unexpected )
WARNING: issue-335a.pdf (trailer, offset 649): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 652): unexpected )
WARNING: issue-335a.pdf (trailer, offset 652): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 667): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 683): unexpected )
WARNING: issue-335a.pdf (trailer, offset 821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 825): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 681): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 682): unexpected )
WARNING: issue-335a.pdf (trailer, offset 683): unexpected )
WARNING: issue-335a.pdf (trailer, offset 821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 825): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 697): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 758): unexpected )
WARNING: issue-335a.pdf (trailer, offset 821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 825): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 711): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 753): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 754): unexpected )
WARNING: issue-335a.pdf (trailer, offset 755): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 756): unexpected )
WARNING: issue-335a.pdf (trailer, offset 757): unexpected )
WARNING: issue-335a.pdf (trailer, offset 758): unexpected )
WARNING: issue-335a.pdf (trailer, offset 758): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 772): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 788): unexpected )
WARNING: issue-335a.pdf (trailer, offset 821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 825): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 786): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 787): unexpected )
WARNING: issue-335a.pdf (trailer, offset 788): unexpected )
WARNING: issue-335a.pdf (trailer, offset 821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 825): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 802): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 819): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 820): unexpected )
WARNING: issue-335a.pdf (trailer, offset 821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 825): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): unexpected )
WARNING: issue-335a.pdf (trailer, offset 826): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 817): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 818): unexpected )
WARNING: issue-335a.pdf (trailer, offset 819): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 820): unexpected )
WARNING: issue-335a.pdf (trailer, offset 821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 822): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 825): unexpected )
WARNING: issue-335a.pdf (trailer, offset 825): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 840): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 856): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1167): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1168): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1168): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 854): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 855): unexpected )
WARNING: issue-335a.pdf (trailer, offset 856): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1167): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 870): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1018): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1167): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 902): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 920): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 921): unexpected )
WARNING: issue-335a.pdf (trailer, offset 922): unexpected )
WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1018): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1018): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 918): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 919): unexpected )
WARNING: issue-335a.pdf (trailer, offset 920): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 921): unexpected )
WARNING: issue-335a.pdf (trailer, offset 922): unexpected )
WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 953): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 936): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 952): unexpected )
WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1018): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 950): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 951): unexpected )
WARNING: issue-335a.pdf (trailer, offset 952): unexpected )
WARNING: issue-335a.pdf (trailer, offset 953): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1018): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 980): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 981): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1014): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1018): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 995): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1012): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1013): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1014): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1018): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1019): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1010): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1011): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1012): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1013): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1014): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1015): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1018): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1018): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1033): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1049): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1167): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1168): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1344): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1428): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1434): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1047): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1048): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1049): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1167): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1168): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1168): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1159): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1160): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1161): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1162): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1163): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1164): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1167): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1167): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1182): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1198): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1344): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1196): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1197): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1198): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1212): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1265): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1344): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1226): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1244): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1262): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1263): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1264): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1265): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1260): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1261): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1262): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1263): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1264): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1265): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1265): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1279): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1295): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1344): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1344): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1293): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1294): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1295): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1309): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1326): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1327): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1333): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1324): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1325): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1326): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1327): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1328): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1329): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 1332): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1332): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1358): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1395): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1428): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1436): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1437): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1437): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1372): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1390): invalid character ({) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1392): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1393): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1394): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1395): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1428): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1428): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1409): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1426): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1427): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1428): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1436): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1436): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1424): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1425): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1426): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1427): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1428): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1434): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1434): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1454): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1473): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1713): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3080): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1487): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1712): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1713): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3080): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1503): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1504): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1712): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1713): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1713): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1519): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1712): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1713): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1533): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1551): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1569): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1570): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1571): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1567): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1568): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1569): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1570): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1571): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1585): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1604): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1712): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1621): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1637): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1712): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1635): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1636): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1637): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1651): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1669): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1670): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1667): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1668): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1669): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1670): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1671): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1685): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1702): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1703): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1712): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1712): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1700): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1701): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1702): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1703): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1704): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1710): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1710): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1730): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1749): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3080): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1763): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1988): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3080): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1779): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1780): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1988): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1795): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1988): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1989): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3080): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1809): invalid character (<) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1827): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1845): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1846): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1847): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1843): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1844): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1845): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1846): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1847): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1861): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1880): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1988): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1897): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1913): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1988): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1911): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1912): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1913): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1927): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1945): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1946): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1943): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1944): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1945): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1946): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1947): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1961): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1978): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1979): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1988): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1988): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 1976): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 1977): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1978): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 1979): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1980): unexpected )
WARNING: issue-335a.pdf (trailer, offset 1986): invalid character (#) in hexstring
WARNING: issue-335a.pdf (trailer, offset 1986): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 2006): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 2022): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3080): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 2020): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 2021): unexpected )
WARNING: issue-335a.pdf (trailer, offset 2022): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3057): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3073): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3080): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3096): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 3585): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 3586): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3588): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3589): unexpected )
WARNING: issue-335a.pdf (trailer, offset 3602): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3610): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 3610): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16485): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16545): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16546): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16546): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16498): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16513): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16545): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16545): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16511): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16512): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16513): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16530): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16526): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16527): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16528): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16529): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16530): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16545): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16545): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16543): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16544): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16545): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16546): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16547): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16548): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16548): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16561): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16562): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16563): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16764): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16766): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16766): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16575): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16599): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16613): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16614): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16615): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16739): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16763): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16674): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16734): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16739): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16739): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16687): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16702): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16734): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16734): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16700): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16701): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16702): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16719): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16715): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16716): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16717): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16718): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16719): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16734): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16734): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16732): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16733): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16734): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16739): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16764): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16764): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16752): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16761): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16762): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16763): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16764): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16766): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 16766): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16779): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16782): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16793): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 19875): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16793): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 19875): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19876): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19956): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16806): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 19875): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19876): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19876): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 16819): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 16820): unexpected )
WARNING: issue-335a.pdf (trailer, offset 16821): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19808): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19810): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 19875): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 19837): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 19838): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19871): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 19875): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19876): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19956): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 19852): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19869): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19870): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19871): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 19875): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19876): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19876): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 19867): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 19868): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19869): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19870): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19871): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19872): name with stray # will not work with PDF >= 1.2
WARNING: issue-335a.pdf (trailer, offset 19875): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19875): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 19890): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19906): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19971): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 19904): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 19905): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19906): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 19968): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 19920): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19954): unexpected )
WARNING: issue-335a.pdf (trailer, offset 19956): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19959): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 19971): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 19968): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 19971): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20092): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20103): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20110): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20114): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20114): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 20164): unexpected >
WARNING: issue-335a.pdf (trailer, offset 20170): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20173): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20186): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20189): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20219): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20219): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 20230): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20232): unexpected )
WARNING: issue-335a.pdf (trailer, offset 20233): unexpected )
WARNING: issue-335a.pdf (trailer, offset 20234): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20236): invalid character ({) in hexstring
WARNING: issue-335a.pdf (trailer, offset 20238): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 20238): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 20424): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20431): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20446): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring
WARNING: issue-335a.pdf (trailer, offset 20604): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 20446): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring
WARNING: issue-335a.pdf (trailer, offset 20606): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 20607): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 20607): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 20598): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20600): unexpected )
WARNING: issue-335a.pdf (trailer, offset 20601): unexpected )
WARNING: issue-335a.pdf (trailer, offset 20602): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20604): invalid character ({) in hexstring
WARNING: issue-335a.pdf (trailer, offset 20606): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 20606): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 20684): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20683): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 20748): stream keyword followed by extraneous whitespace
WARNING: issue-335a.pdf (trailer, offset 20679): stream dictionary lacks /Length key
WARNING: issue-335a.pdf (trailer, offset 20749): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 20749): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 20756): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 20787): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 20787): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 20812): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20803): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 20803): dictionary has duplicated key /Length; last occurrence overrides earlier ones
WARNING: issue-335a.pdf (trailer, offset 20843): stream keyword followed by extraneous whitespace
WARNING: issue-335a.pdf (trailer, offset 20800): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 20844): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 20844): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 20851): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 20882): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 20882): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 20914): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20898): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 20895): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 20929): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 20929): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 20949): unexpected >
WARNING: issue-335a.pdf (trailer, offset 20957): unexpected >
WARNING: issue-335a.pdf (trailer, offset 20958): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20960): unexpected >
WARNING: issue-335a.pdf (trailer, offset 20961): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 20972): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 20973): unexpected )
WARNING: issue-335a.pdf (trailer, offset 20973): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21042): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21026): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 21023): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 21057): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 21057): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 21077): unexpected >
WARNING: issue-335a.pdf (trailer, offset 21085): unexpected >
WARNING: issue-335a.pdf (trailer, offset 21086): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21088): unexpected >
WARNING: issue-335a.pdf (trailer, offset 21089): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21100): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 21101): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21101): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21118): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21158): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21205): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 21207): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21212): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21212): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21132): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21138): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21156): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21157): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21158): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21202): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21154): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 21155): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21156): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21157): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21158): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21202): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21172): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21199): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21201): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21202): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21205): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 21207): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21207): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21228): treating unexpected brace token as null
WARNING: issue-335a.pdf (trailer, offset 21229): unexpected )
WARNING: issue-335a.pdf (trailer, offset 21230): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21262): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21267): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21277): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21277): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21277): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21287): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21389): unexpected dictionary close token
WARNING: issue-335a.pdf (trailer, offset 21392): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21400): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21430): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21438): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21441): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21444): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21452): invalid character (-) in hexstring
WARNING: issue-335a.pdf (trailer, offset 21819): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21819): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21287): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21389): unexpected dictionary close token
WARNING: issue-335a.pdf (trailer, offset 21392): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21400): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21430): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21438): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21441): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21444): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21452): invalid character (-) in hexstring
WARNING: issue-335a.pdf (trailer, offset 21819): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21819): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21407): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 21438): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 21438): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 21452): invalid character (-) in hexstring
WARNING: issue-335a.pdf (trailer, offset 21837): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21850): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 21892): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21900): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21903): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21906): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21918): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21925): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21925): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21918): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21925): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21937): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21962): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21991): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22000): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 22003): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22028): unexpected >
WARNING: issue-335a.pdf (trailer, offset 22030): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22038): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake3
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake4
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake5
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake6
WARNING: issue-335a.pdf (trailer, offset 21936): dictionary has duplicated key /Length; last occurrence overrides earlier ones
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake7
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake8
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake9
WARNING: issue-335a.pdf (trailer, offset 22044): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22052): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22064): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22064): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 21937): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21962): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21991): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22000): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 22003): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22028): unexpected >
WARNING: issue-335a.pdf (trailer, offset 22030): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22038): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake3
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake4
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake5
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake6
WARNING: issue-335a.pdf (trailer, offset 21936): dictionary has duplicated key /Length; last occurrence overrides earlier ones
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake7
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake8
WARNING: issue-335a.pdf (trailer, offset 21936): expected dictionary key but found non-name object; inserting key /QPDFFake9
WARNING: issue-335a.pdf (trailer, offset 21932): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 22052): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22052): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22000): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 22088): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22087): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22083): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 22136): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22136): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22178): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22190): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22202): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22218): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 22230): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22238): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake3
WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake4
WARNING: issue-335a.pdf (trailer, offset 22177): expected dictionary key but found non-name object; inserting key /QPDFFake5
WARNING: issue-335a.pdf (trailer, offset 22276): stream keyword followed by carriage return only
WARNING: issue-335a.pdf (trailer, offset 22173): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 22276): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22276): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22202): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22218): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22201): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 22197): stream dictionary lacks /Length key
WARNING: issue-335a.pdf (trailer, offset 22238): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22238): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22327): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22336): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22338): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22355): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22360): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake3
WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake4
WARNING: issue-335a.pdf (trailer, offset 22326): expected dictionary key but found non-name object; inserting key /QPDFFake5
WARNING: issue-335a.pdf (trailer, offset 22322): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 22373): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22373): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22437): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22436): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22432): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 22484): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22484): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22650): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22656): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22675): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22687): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22690): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22702): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22701): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22740): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22748): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22761): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22791): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22794): unexpected >
WARNING: issue-335a.pdf (trailer, offset 22796): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22804): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake3
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake4
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake5
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake6
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake7
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake8
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake9
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake10
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake11
WARNING: issue-335a.pdf (trailer, offset 22810): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22817): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22817): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 22687): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22690): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22702): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22701): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22740): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22748): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22761): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22791): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22794): unexpected >
WARNING: issue-335a.pdf (trailer, offset 22796): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22804): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake3
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake4
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake5
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake6
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake7
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake8
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake9
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake10
WARNING: issue-335a.pdf (trailer, offset 22686): expected dictionary key but found non-name object; inserting key /QPDFFake11
WARNING: issue-335a.pdf (trailer, offset 22817): stream keyword followed by carriage return only
WARNING: issue-335a.pdf (trailer, offset 22682): stream dictionary lacks /Length key
WARNING: issue-335a.pdf (trailer, offset 22817): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22817): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22702): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22701): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22697): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (trailer, offset 22748): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22748): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 22845): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22869): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 22844): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (trailer, offset 22844): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (trailer, offset 22844): expected dictionary key but found non-name object; inserting key /QPDFFake3
WARNING: issue-335a.pdf (trailer, offset 22898): expected endstream
WARNING: issue-335a.pdf (trailer, offset 22882): attempting to recover stream length
WARNING: issue-335a.pdf (trailer, offset 22882): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (trailer, offset 23098): invalid character (t) in hexstring
WARNING: issue-335a.pdf (trailer, offset 23101): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23108): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23130): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23147): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23155): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23155): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 23108): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23130): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23147): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23155): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23196): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23324): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (trailer, offset 23324): too many errors; giving up on reading object
WARNING: issue-335a.pdf (trailer, offset 23411): dictionary ended prematurely; using null as value for last key
WARNING: issue-335a.pdf (object 5 0, offset 23451): invalid character (ÿ) in hexstring
WARNING: issue-335a.pdf (object 5 0, offset 23458): unknown token while reading object; treating as string
WARNING: issue-335a.pdf (object 5 0, offset 23444): expected dictionary key but found non-name object; inserting key /QPDFFake1
WARNING: issue-335a.pdf (object 5 0, offset 23444): expected dictionary key but found non-name object; inserting key /QPDFFake2
WARNING: issue-335a.pdf (object 5 0, offset 23440): /Length key in stream dictionary is not an integer
WARNING: issue-335a.pdf (object 5 0, offset 23485): attempting to recover stream length
WARNING: issue-335a.pdf (object 5 0, offset 23485): unable to recover stream data; treating stream as empty
WARNING: issue-335a.pdf (object 5 0, offset 24974): expected endobj
WARNING: issue-335a.pdf (object 5 0, offset 24974): EOF after endobj
qpdf: issue-335a.pdf: unable to find /Root dictionary