xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/mangle-ms-string-literals.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -x c++ -std=c++11 -emit-llvm %s -o - -triple=i386-pc-win32 | FileCheck %s
2*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -x c++ -std=c++11 -emit-llvm %s -o - -triple=x86_64-pc-win32 | FileCheck %s
3*0a6a1f1dSLionel Sambuc 
4*0a6a1f1dSLionel Sambuc const char *l255 = "\xff";
5*0a6a1f1dSLionel Sambuc const char *l254 = "\xfe";
6*0a6a1f1dSLionel Sambuc const char *l253 = "\xfd";
7*0a6a1f1dSLionel Sambuc const char *l252 = "\xfc";
8*0a6a1f1dSLionel Sambuc const char *l251 = "\xfb";
9*0a6a1f1dSLionel Sambuc const char *l250 = "\xfa";
10*0a6a1f1dSLionel Sambuc const char *l249 = "\xf9";
11*0a6a1f1dSLionel Sambuc const char *l248 = "\xf8";
12*0a6a1f1dSLionel Sambuc const char *l247 = "\xf7";
13*0a6a1f1dSLionel Sambuc const char *l246 = "\xf6";
14*0a6a1f1dSLionel Sambuc const char *l245 = "\xf5";
15*0a6a1f1dSLionel Sambuc const char *l244 = "\xf4";
16*0a6a1f1dSLionel Sambuc const char *l243 = "\xf3";
17*0a6a1f1dSLionel Sambuc const char *l242 = "\xf2";
18*0a6a1f1dSLionel Sambuc const char *l241 = "\xf1";
19*0a6a1f1dSLionel Sambuc const char *l240 = "\xf0";
20*0a6a1f1dSLionel Sambuc const char *l239 = "\xef";
21*0a6a1f1dSLionel Sambuc const char *l238 = "\xee";
22*0a6a1f1dSLionel Sambuc const char *l237 = "\xed";
23*0a6a1f1dSLionel Sambuc const char *l236 = "\xec";
24*0a6a1f1dSLionel Sambuc const char *l235 = "\xeb";
25*0a6a1f1dSLionel Sambuc const char *l234 = "\xea";
26*0a6a1f1dSLionel Sambuc const char *l233 = "\xe9";
27*0a6a1f1dSLionel Sambuc const char *l232 = "\xe8";
28*0a6a1f1dSLionel Sambuc const char *l231 = "\xe7";
29*0a6a1f1dSLionel Sambuc const char *l230 = "\xe6";
30*0a6a1f1dSLionel Sambuc const char *l229 = "\xe5";
31*0a6a1f1dSLionel Sambuc const char *l228 = "\xe4";
32*0a6a1f1dSLionel Sambuc const char *l227 = "\xe3";
33*0a6a1f1dSLionel Sambuc const char *l226 = "\xe2";
34*0a6a1f1dSLionel Sambuc const char *l225 = "\xe1";
35*0a6a1f1dSLionel Sambuc const char *l224 = "\xe0";
36*0a6a1f1dSLionel Sambuc const char *l223 = "\xdf";
37*0a6a1f1dSLionel Sambuc const char *l222 = "\xde";
38*0a6a1f1dSLionel Sambuc const char *l221 = "\xdd";
39*0a6a1f1dSLionel Sambuc const char *l220 = "\xdc";
40*0a6a1f1dSLionel Sambuc const char *l219 = "\xdb";
41*0a6a1f1dSLionel Sambuc const char *l218 = "\xda";
42*0a6a1f1dSLionel Sambuc const char *l217 = "\xd9";
43*0a6a1f1dSLionel Sambuc const char *l216 = "\xd8";
44*0a6a1f1dSLionel Sambuc const char *l215 = "\xd7";
45*0a6a1f1dSLionel Sambuc const char *l214 = "\xd6";
46*0a6a1f1dSLionel Sambuc const char *l213 = "\xd5";
47*0a6a1f1dSLionel Sambuc const char *l212 = "\xd4";
48*0a6a1f1dSLionel Sambuc const char *l211 = "\xd3";
49*0a6a1f1dSLionel Sambuc const char *l210 = "\xd2";
50*0a6a1f1dSLionel Sambuc const char *l209 = "\xd1";
51*0a6a1f1dSLionel Sambuc const char *l208 = "\xd0";
52*0a6a1f1dSLionel Sambuc const char *l207 = "\xcf";
53*0a6a1f1dSLionel Sambuc const char *l206 = "\xce";
54*0a6a1f1dSLionel Sambuc const char *l205 = "\xcd";
55*0a6a1f1dSLionel Sambuc const char *l204 = "\xcc";
56*0a6a1f1dSLionel Sambuc const char *l203 = "\xcb";
57*0a6a1f1dSLionel Sambuc const char *l202 = "\xca";
58*0a6a1f1dSLionel Sambuc const char *l201 = "\xc9";
59*0a6a1f1dSLionel Sambuc const char *l200 = "\xc8";
60*0a6a1f1dSLionel Sambuc const char *l199 = "\xc7";
61*0a6a1f1dSLionel Sambuc const char *l198 = "\xc6";
62*0a6a1f1dSLionel Sambuc const char *l197 = "\xc5";
63*0a6a1f1dSLionel Sambuc const char *l196 = "\xc4";
64*0a6a1f1dSLionel Sambuc const char *l195 = "\xc3";
65*0a6a1f1dSLionel Sambuc const char *l194 = "\xc2";
66*0a6a1f1dSLionel Sambuc const char *l193 = "\xc1";
67*0a6a1f1dSLionel Sambuc const char *l192 = "\xc0";
68*0a6a1f1dSLionel Sambuc const char *l191 = "\xbf";
69*0a6a1f1dSLionel Sambuc const char *l190 = "\xbe";
70*0a6a1f1dSLionel Sambuc const char *l189 = "\xbd";
71*0a6a1f1dSLionel Sambuc const char *l188 = "\xbc";
72*0a6a1f1dSLionel Sambuc const char *l187 = "\xbb";
73*0a6a1f1dSLionel Sambuc const char *l186 = "\xba";
74*0a6a1f1dSLionel Sambuc const char *l185 = "\xb9";
75*0a6a1f1dSLionel Sambuc const char *l184 = "\xb8";
76*0a6a1f1dSLionel Sambuc const char *l183 = "\xb7";
77*0a6a1f1dSLionel Sambuc const char *l182 = "\xb6";
78*0a6a1f1dSLionel Sambuc const char *l181 = "\xb5";
79*0a6a1f1dSLionel Sambuc const char *l180 = "\xb4";
80*0a6a1f1dSLionel Sambuc const char *l179 = "\xb3";
81*0a6a1f1dSLionel Sambuc const char *l178 = "\xb2";
82*0a6a1f1dSLionel Sambuc const char *l177 = "\xb1";
83*0a6a1f1dSLionel Sambuc const char *l176 = "\xb0";
84*0a6a1f1dSLionel Sambuc const char *l175 = "\xaf";
85*0a6a1f1dSLionel Sambuc const char *l174 = "\xae";
86*0a6a1f1dSLionel Sambuc const char *l173 = "\xad";
87*0a6a1f1dSLionel Sambuc const char *l172 = "\xac";
88*0a6a1f1dSLionel Sambuc const char *l171 = "\xab";
89*0a6a1f1dSLionel Sambuc const char *l170 = "\xaa";
90*0a6a1f1dSLionel Sambuc const char *l169 = "\xa9";
91*0a6a1f1dSLionel Sambuc const char *l168 = "\xa8";
92*0a6a1f1dSLionel Sambuc const char *l167 = "\xa7";
93*0a6a1f1dSLionel Sambuc const char *l166 = "\xa6";
94*0a6a1f1dSLionel Sambuc const char *l165 = "\xa5";
95*0a6a1f1dSLionel Sambuc const char *l164 = "\xa4";
96*0a6a1f1dSLionel Sambuc const char *l163 = "\xa3";
97*0a6a1f1dSLionel Sambuc const char *l162 = "\xa2";
98*0a6a1f1dSLionel Sambuc const char *l161 = "\xa1";
99*0a6a1f1dSLionel Sambuc const char *l160 = "\xa0";
100*0a6a1f1dSLionel Sambuc const char *l159 = "\x9f";
101*0a6a1f1dSLionel Sambuc const char *l158 = "\x9e";
102*0a6a1f1dSLionel Sambuc const char *l157 = "\x9d";
103*0a6a1f1dSLionel Sambuc const char *l156 = "\x9c";
104*0a6a1f1dSLionel Sambuc const char *l155 = "\x9b";
105*0a6a1f1dSLionel Sambuc const char *l154 = "\x9a";
106*0a6a1f1dSLionel Sambuc const char *l153 = "\x99";
107*0a6a1f1dSLionel Sambuc const char *l152 = "\x98";
108*0a6a1f1dSLionel Sambuc const char *l151 = "\x97";
109*0a6a1f1dSLionel Sambuc const char *l150 = "\x96";
110*0a6a1f1dSLionel Sambuc const char *l149 = "\x95";
111*0a6a1f1dSLionel Sambuc const char *l148 = "\x94";
112*0a6a1f1dSLionel Sambuc const char *l147 = "\x93";
113*0a6a1f1dSLionel Sambuc const char *l146 = "\x92";
114*0a6a1f1dSLionel Sambuc const char *l145 = "\x91";
115*0a6a1f1dSLionel Sambuc const char *l144 = "\x90";
116*0a6a1f1dSLionel Sambuc const char *l143 = "\x8f";
117*0a6a1f1dSLionel Sambuc const char *l142 = "\x8e";
118*0a6a1f1dSLionel Sambuc const char *l141 = "\x8d";
119*0a6a1f1dSLionel Sambuc const char *l140 = "\x8c";
120*0a6a1f1dSLionel Sambuc const char *l139 = "\x8b";
121*0a6a1f1dSLionel Sambuc const char *l138 = "\x8a";
122*0a6a1f1dSLionel Sambuc const char *l137 = "\x89";
123*0a6a1f1dSLionel Sambuc const char *l136 = "\x88";
124*0a6a1f1dSLionel Sambuc const char *l135 = "\x87";
125*0a6a1f1dSLionel Sambuc const char *l134 = "\x86";
126*0a6a1f1dSLionel Sambuc const char *l133 = "\x85";
127*0a6a1f1dSLionel Sambuc const char *l132 = "\x84";
128*0a6a1f1dSLionel Sambuc const char *l131 = "\x83";
129*0a6a1f1dSLionel Sambuc const char *l130 = "\x82";
130*0a6a1f1dSLionel Sambuc const char *l129 = "\x81";
131*0a6a1f1dSLionel Sambuc const char *l128 = "\x80";
132*0a6a1f1dSLionel Sambuc const char *l127 = "\x7f";
133*0a6a1f1dSLionel Sambuc const char *l126 = "\x7e";
134*0a6a1f1dSLionel Sambuc const char *l125 = "\x7d";
135*0a6a1f1dSLionel Sambuc const char *l124 = "\x7c";
136*0a6a1f1dSLionel Sambuc const char *l123 = "\x7b";
137*0a6a1f1dSLionel Sambuc const char *l122 = "\x7a";
138*0a6a1f1dSLionel Sambuc const char *l121 = "\x79";
139*0a6a1f1dSLionel Sambuc const char *l120 = "\x78";
140*0a6a1f1dSLionel Sambuc const char *l119 = "\x77";
141*0a6a1f1dSLionel Sambuc const char *l118 = "\x76";
142*0a6a1f1dSLionel Sambuc const char *l117 = "\x75";
143*0a6a1f1dSLionel Sambuc const char *l116 = "\x74";
144*0a6a1f1dSLionel Sambuc const char *l115 = "\x73";
145*0a6a1f1dSLionel Sambuc const char *l114 = "\x72";
146*0a6a1f1dSLionel Sambuc const char *l113 = "\x71";
147*0a6a1f1dSLionel Sambuc const char *l112 = "\x70";
148*0a6a1f1dSLionel Sambuc const char *l111 = "\x6f";
149*0a6a1f1dSLionel Sambuc const char *l110 = "\x6e";
150*0a6a1f1dSLionel Sambuc const char *l109 = "\x6d";
151*0a6a1f1dSLionel Sambuc const char *l108 = "\x6c";
152*0a6a1f1dSLionel Sambuc const char *l107 = "\x6b";
153*0a6a1f1dSLionel Sambuc const char *l106 = "\x6a";
154*0a6a1f1dSLionel Sambuc const char *l105 = "\x69";
155*0a6a1f1dSLionel Sambuc const char *l104 = "\x68";
156*0a6a1f1dSLionel Sambuc const char *l103 = "\x67";
157*0a6a1f1dSLionel Sambuc const char *l102 = "\x66";
158*0a6a1f1dSLionel Sambuc const char *l101 = "\x65";
159*0a6a1f1dSLionel Sambuc const char *l100 = "\x64";
160*0a6a1f1dSLionel Sambuc const char *l99 = "\x63";
161*0a6a1f1dSLionel Sambuc const char *l98 = "\x62";
162*0a6a1f1dSLionel Sambuc const char *l97 = "\x61";
163*0a6a1f1dSLionel Sambuc const char *l96 = "\x60";
164*0a6a1f1dSLionel Sambuc const char *l95 = "\x5f";
165*0a6a1f1dSLionel Sambuc const char *l94 = "\x5e";
166*0a6a1f1dSLionel Sambuc const char *l93 = "\x5d";
167*0a6a1f1dSLionel Sambuc const char *l92 = "\x5c";
168*0a6a1f1dSLionel Sambuc const char *l91 = "\x5b";
169*0a6a1f1dSLionel Sambuc const char *l90 = "\x5a";
170*0a6a1f1dSLionel Sambuc const char *l89 = "\x59";
171*0a6a1f1dSLionel Sambuc const char *l88 = "\x58";
172*0a6a1f1dSLionel Sambuc const char *l87 = "\x57";
173*0a6a1f1dSLionel Sambuc const char *l86 = "\x56";
174*0a6a1f1dSLionel Sambuc const char *l85 = "\x55";
175*0a6a1f1dSLionel Sambuc const char *l84 = "\x54";
176*0a6a1f1dSLionel Sambuc const char *l83 = "\x53";
177*0a6a1f1dSLionel Sambuc const char *l82 = "\x52";
178*0a6a1f1dSLionel Sambuc const char *l81 = "\x51";
179*0a6a1f1dSLionel Sambuc const char *l80 = "\x50";
180*0a6a1f1dSLionel Sambuc const char *l79 = "\x4f";
181*0a6a1f1dSLionel Sambuc const char *l78 = "\x4e";
182*0a6a1f1dSLionel Sambuc const char *l77 = "\x4d";
183*0a6a1f1dSLionel Sambuc const char *l76 = "\x4c";
184*0a6a1f1dSLionel Sambuc const char *l75 = "\x4b";
185*0a6a1f1dSLionel Sambuc const char *l74 = "\x4a";
186*0a6a1f1dSLionel Sambuc const char *l73 = "\x49";
187*0a6a1f1dSLionel Sambuc const char *l72 = "\x48";
188*0a6a1f1dSLionel Sambuc const char *l71 = "\x47";
189*0a6a1f1dSLionel Sambuc const char *l70 = "\x46";
190*0a6a1f1dSLionel Sambuc const char *l69 = "\x45";
191*0a6a1f1dSLionel Sambuc const char *l68 = "\x44";
192*0a6a1f1dSLionel Sambuc const char *l67 = "\x43";
193*0a6a1f1dSLionel Sambuc const char *l66 = "\x42";
194*0a6a1f1dSLionel Sambuc const char *l65 = "\x41";
195*0a6a1f1dSLionel Sambuc const char *l64 = "\x40";
196*0a6a1f1dSLionel Sambuc const char *l63 = "\x3f";
197*0a6a1f1dSLionel Sambuc const char *l62 = "\x3e";
198*0a6a1f1dSLionel Sambuc const char *l61 = "\x3d";
199*0a6a1f1dSLionel Sambuc const char *l60 = "\x3c";
200*0a6a1f1dSLionel Sambuc const char *l59 = "\x3b";
201*0a6a1f1dSLionel Sambuc const char *l58 = "\x3a";
202*0a6a1f1dSLionel Sambuc const char *l57 = "\x39";
203*0a6a1f1dSLionel Sambuc const char *l56 = "\x38";
204*0a6a1f1dSLionel Sambuc const char *l55 = "\x37";
205*0a6a1f1dSLionel Sambuc const char *l54 = "\x36";
206*0a6a1f1dSLionel Sambuc const char *l53 = "\x35";
207*0a6a1f1dSLionel Sambuc const char *l52 = "\x34";
208*0a6a1f1dSLionel Sambuc const char *l51 = "\x33";
209*0a6a1f1dSLionel Sambuc const char *l50 = "\x32";
210*0a6a1f1dSLionel Sambuc const char *l49 = "\x31";
211*0a6a1f1dSLionel Sambuc const char *l48 = "\x30";
212*0a6a1f1dSLionel Sambuc const char *l47 = "\x2f";
213*0a6a1f1dSLionel Sambuc const char *l46 = "\x2e";
214*0a6a1f1dSLionel Sambuc const char *l45 = "\x2d";
215*0a6a1f1dSLionel Sambuc const char *l44 = "\x2c";
216*0a6a1f1dSLionel Sambuc const char *l43 = "\x2b";
217*0a6a1f1dSLionel Sambuc const char *l42 = "\x2a";
218*0a6a1f1dSLionel Sambuc const char *l41 = "\x29";
219*0a6a1f1dSLionel Sambuc const char *l40 = "\x28";
220*0a6a1f1dSLionel Sambuc const char *l39 = "\x27";
221*0a6a1f1dSLionel Sambuc const char *l38 = "\x26";
222*0a6a1f1dSLionel Sambuc const char *l37 = "\x25";
223*0a6a1f1dSLionel Sambuc const char *l36 = "\x24";
224*0a6a1f1dSLionel Sambuc const char *l35 = "\x23";
225*0a6a1f1dSLionel Sambuc const char *l34 = "\x22";
226*0a6a1f1dSLionel Sambuc const char *l33 = "\x21";
227*0a6a1f1dSLionel Sambuc const char *l32 = "\x20";
228*0a6a1f1dSLionel Sambuc const char *l31 = "\x1f";
229*0a6a1f1dSLionel Sambuc const char *l30 = "\x1e";
230*0a6a1f1dSLionel Sambuc const char *l29 = "\x1d";
231*0a6a1f1dSLionel Sambuc const char *l28 = "\x1c";
232*0a6a1f1dSLionel Sambuc const char *l27 = "\x1b";
233*0a6a1f1dSLionel Sambuc const char *l26 = "\x1a";
234*0a6a1f1dSLionel Sambuc const char *l25 = "\x19";
235*0a6a1f1dSLionel Sambuc const char *l24 = "\x18";
236*0a6a1f1dSLionel Sambuc const char *l23 = "\x17";
237*0a6a1f1dSLionel Sambuc const char *l22 = "\x16";
238*0a6a1f1dSLionel Sambuc const char *l21 = "\x15";
239*0a6a1f1dSLionel Sambuc const char *l20 = "\x14";
240*0a6a1f1dSLionel Sambuc const char *l19 = "\x13";
241*0a6a1f1dSLionel Sambuc const char *l18 = "\x12";
242*0a6a1f1dSLionel Sambuc const char *l17 = "\x11";
243*0a6a1f1dSLionel Sambuc const char *l16 = "\x10";
244*0a6a1f1dSLionel Sambuc const char *l15 = "\xf";
245*0a6a1f1dSLionel Sambuc const char *l14 = "\xe";
246*0a6a1f1dSLionel Sambuc const char *l13 = "\xd";
247*0a6a1f1dSLionel Sambuc const char *l12 = "\xc";
248*0a6a1f1dSLionel Sambuc const char *l11 = "\xb";
249*0a6a1f1dSLionel Sambuc const char *l10 = "\xa";
250*0a6a1f1dSLionel Sambuc const char *l9 = "\x9";
251*0a6a1f1dSLionel Sambuc const char *l8 = "\x8";
252*0a6a1f1dSLionel Sambuc const char *l7 = "\x7";
253*0a6a1f1dSLionel Sambuc const char *l6 = "\x6";
254*0a6a1f1dSLionel Sambuc const char *l5 = "\x5";
255*0a6a1f1dSLionel Sambuc const char *l4 = "\x4";
256*0a6a1f1dSLionel Sambuc const char *l3 = "\x3";
257*0a6a1f1dSLionel Sambuc const char *l2 = "\x2";
258*0a6a1f1dSLionel Sambuc const char *l1 = "\x1";
259*0a6a1f1dSLionel Sambuc const char *l0 = "\x0";
260*0a6a1f1dSLionel Sambuc 
261*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CNACBAHC@?$PP?$AA@"
262*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DEBJCBDD@?$PO?$AA@"
263*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BPDEHCPA@?$PN?$AA@"
264*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GCPEDLB@?$PM?$AA@"
265*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EJGONFHG@?$PL?$AA@"
266*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FAHFOEDH@?z?$AA@"
267*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HLFILHPE@?y?$AA@"
268*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GCEDIGLF@?x?$AA@"
269*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OFNLJKHK@?w?$AA@"
270*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PMMAKLDL@?v?$AA@"
271*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NHONPIPI@?u?$AA@"
272*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MOPGMJLJ@?t?$AA@"
273*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IBLHFPHO@?s?$AA@"
274*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JIKMGODP@?r?$AA@"
275*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LDIBDNPM@?q?$AA@"
276*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KKJKAMLN@?p?$AA@"
277*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GHMAACCD@?o?$AA@"
278*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HONLDDGC@?n?$AA@"
279*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FFPGGAKB@?m?$AA@"
280*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EMONFBOA@?l?$AA@"
281*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DKMMHCH@?k?$AA@"
282*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BKLHPGGG@?j?$AA@"
283*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DBJKKFKF@?i?$AA@"
284*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CIIBJEOE@?h?$AA@"
285*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KPBJIICL@?g?$AA@"
286*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LGACLJGK@?f?$AA@"
287*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JNCPOKKJ@?e?$AA@"
288*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IEDENLOI@?d?$AA@"
289*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MLHFENCP@?c?$AA@"
290*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NCGOHMGO@?b?$AA@"
291*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PJEDCPKN@?a?$AA@"
292*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OAFIBOOM@?$OA?$AA@"
293*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LIIGDENA@?$NP?$AA@"
294*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KBJNAFJB@?$NO?$AA@"
295*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IKLAFGFC@?$NN?$AA@"
296*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JDKLGHBD@?$NM?$AA@"
297*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NMOKPBNE@?$NL?$AA@"
298*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MFPBMAJF@?Z?$AA@"
299*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OONMJDFG@?Y?$AA@"
300*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PHMHKCBH@?X?$AA@"
301*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HAFPLONI@?W?$AA@"
302*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GJEEIPJJ@?V?$AA@"
303*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01ECGJNMFK@?U?$AA@"
304*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FLHCONBL@?T?$AA@"
305*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BEDDHLNM@?S?$AA@"
306*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NCIEKJN@?R?$AA@"
307*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CGAFBJFO@?Q?$AA@"
308*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DPBOCIBP@?P?$AA@"
309*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PCEECGIB@?O?$AA@"
310*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OLFPBHMA@?N?$AA@"
311*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MAHCEEAD@?M?$AA@"
312*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NJGJHFEC@?L?$AA@"
313*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JGCIODIF@?K?$AA@"
314*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IPDDNCME@?J?$AA@"
315*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KEBOIBAH@?I?$AA@"
316*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LNAFLAEG@?H?$AA@"
317*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DKJNKMIJ@?G?$AA@"
318*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CDIGJNMI@?F?$AA@"
319*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IKLMOAL@?E?$AA@"
320*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BBLAPPEK@?D?$AA@"
321*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FOPBGJIN@?C?$AA@"
322*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EHOKFIMM@?B?$AA@"
323*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GMMHALAP@?A?$AA@"
324*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HFNMDKEO@?$MA?$AA@"
325*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NNHLFPHH@?$LP?$AA@"
326*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MEGAGODG@?$LO?$AA@"
327*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OPENDNPF@?$LN?$AA@"
328*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PGFGAMLE@?$LM?$AA@"
329*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LJBHJKHD@?$LL?$AA@"
330*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KAAMKLDC@?$LK?$AA@"
331*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01ILCBPIPB@?$LJ?$AA@"
332*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JCDKMJLA@?$LI?$AA@"
333*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BFKCNFHP@?$LH?$AA@"
334*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MLJOEDO@?$LG?$AA@"
335*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CHJELHPN@?$LF?$AA@"
336*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DOIPIGLM@?$LE?$AA@"
337*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HBMOBAHL@?$LD?$AA@"
338*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GINFCBDK@?$LC?$AA@"
339*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EDPIHCPJ@?$LB?$AA@"
340*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FKODEDLI@?$LA?$AA@"
341*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JHLJENCG@?$KP?$AA@"
342*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IOKCHMGH@?$KO?$AA@"
343*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KFIPCPKE@?$KN?$AA@"
344*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LMJEBOOF@?$KM?$AA@"
345*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PDNFIICC@?$KL?$AA@"
346*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OKMOLJGD@?$KK?$AA@"
347*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MBODOKKA@?$KJ?$AA@"
348*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NIPINLOB@?$KI?$AA@"
349*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FPGAMHCO@?$KH?$AA@"
350*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EGHLPGGP@?$KG?$AA@"
351*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GNFGKFKM@?$KF?$AA@"
352*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HEENJEON@?$KE?$AA@"
353*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DLAMACCK@?$KD?$AA@"
354*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CCBHDDGL@?$KC?$AA@"
355*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JDKGAKI@?$KB?$AA@"
356*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BACBFBOJ@?$KA?$AA@"
357*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EIPPHLNF@?$JP?$AA@"
358*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FBOEEKJE@?$JO?$AA@"
359*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HKMJBJFH@?$JN?$AA@"
360*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GDNCCIBG@?$JM?$AA@"
361*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CMJDLONB@?$JL?$AA@"
362*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DFIIIPJA@?$JK?$AA@"
363*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BOKFNMFD@?$JJ?$AA@"
364*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HLOONBC@?$JI?$AA@"
365*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IACGPBNN@?$JH?$AA@"
366*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JJDNMAJM@?$JG?$AA@"
367*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LCBAJDFP@?$JF?$AA@"
368*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KLALKCBO@?$JE?$AA@"
369*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OEEKDENJ@?$JD?$AA@"
370*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PNFBAFJI@?$JC?$AA@"
371*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NGHMFGFL@?$JB?$AA@"
372*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MPGHGHBK@?$JA?$AA@"
373*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CDNGJIE@?$IP?$AA@"
374*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BLCGFIMF@?$IO?$AA@"
375*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DAALALAG@?$IN?$AA@"
376*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CJBADKEH@?$IM?$AA@"
377*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GGFBKMIA@?$IL?$AA@"
378*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HPEKJNMB@?$IK?$AA@"
379*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FEGHMOAC@?$IJ?$AA@"
380*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01ENHMPPED@?$II?$AA@"
381*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MKOEODIM@?$IH?$AA@"
382*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NDPPNCMN@?$IG?$AA@"
383*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PINCIBAO@?$IF?$AA@"
384*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OBMJLAEP@?$IE?$AA@"
385*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KOIICGII@?$ID?$AA@"
386*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LHJDBHMJ@?$IC?$AA@"
387*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JMLOEEAK@?$IB?$AA@"
388*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IFKFHFEL@?$IA?$AA@"
389*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BGIBIIDJ@?$HP?$AA@"
390*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PJKLJHI@?$HO?$AA@"
391*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CELHOKLL@?$HN?$AA@"
392*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DNKMNLPK@?$HM?$AA@"
393*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HCONENDN@?$HL?$AA@"
394*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GLPGHMHM@z?$AA@"
395*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EANLCPLP@y?$AA@"
396*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FJMABOPO@x?$AA@"
397*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NOFIACDB@w?$AA@"
398*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MHEDDDHA@v?$AA@"
399*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OMGOGALD@u?$AA@"
400*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PFHFFBPC@t?$AA@"
401*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LKDEMHDF@s?$AA@"
402*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KDCPPGHE@r?$AA@"
403*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IIACKFLH@q?$AA@"
404*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JBBJJEPG@p?$AA@"
405*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FMEDJKGI@o?$AA@"
406*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EFFIKLCJ@n?$AA@"
407*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GOHFPIOK@m?$AA@"
408*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HHGOMJKL@l?$AA@"
409*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DICPFPGM@k?$AA@"
410*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CBDEGOCN@j?$AA@"
411*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KBJDNOO@i?$AA@"
412*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BDACAMKP@h?$AA@"
413*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JEJKBAGA@g?$AA@"
414*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01INIBCBCB@f?$AA@"
415*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KGKMHCOC@e?$AA@"
416*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LPLHEDKD@d?$AA@"
417*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PAPGNFGE@c?$AA@"
418*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OJONOECF@b?$AA@"
419*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MCMALHOG@a?$AA@"
420*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NLNLIGKH@?$GA?$AA@"
421*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IDAFKMJL@_?$AA@"
422*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JKBOJNNK@?$FO?$AA@"
423*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LBDDMOBJ@?$FN?$AA@"
424*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KICIPPFI@?2?$AA@"
425*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OHGJGJJP@?$FL?$AA@"
426*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01POHCFINO@Z?$AA@"
427*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NFFPALBN@Y?$AA@"
428*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MMEEDKFM@X?$AA@"
429*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01ELNMCGJD@W?$AA@"
430*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FCMHBHNC@V?$AA@"
431*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HJOKEEBB@U?$AA@"
432*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GAPBHFFA@T?$AA@"
433*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CPLAODJH@S?$AA@"
434*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DGKLNCNG@R?$AA@"
435*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BNIGIBBF@Q?$AA@"
436*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EJNLAFE@P?$AA@"
437*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MJMHLOMK@O?$AA@"
438*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NANMIPIL@N?$AA@"
439*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PLPBNMEI@M?$AA@"
440*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OCOKONAJ@L?$AA@"
441*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KNKLHLMO@K?$AA@"
442*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LELAEKIP@J?$AA@"
443*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JPJNBJEM@I?$AA@"
444*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IGIGCIAN@H?$AA@"
445*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BBODEMC@G?$AA@"
446*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BIAFAFID@F?$AA@"
447*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DDCIFGEA@E?$AA@"
448*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CKDDGHAB@D?$AA@"
449*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GFHCPBMG@C?$AA@"
450*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HMGJMAIH@B?$AA@"
451*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FHEEJDEE@A?$AA@"
452*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EOFPKCAF@?$EA?$AA@"
453*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OGPIMHDM@?$DP?$AA@"
454*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PPODPGHN@?$DO?$AA@"
455*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NEMOKFLO@?$DN?$AA@"
456*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MNNFJEPP@?$DM?$AA@"
457*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01ICJEACDI@?$DL?$AA@"
458*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JLIPDDHJ@?3?$AA@"
459*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LAKCGALK@9?$AA@"
460*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KJLJFBPL@8?$AA@"
461*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01COCBENDE@7?$AA@"
462*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DHDKHMHF@6?$AA@"
463*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BMBHCPLG@5?$AA@"
464*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FAMBOPH@4?$AA@"
465*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EKENIIDA@3?$AA@"
466*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FDFGLJHB@2?$AA@"
467*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HIHLOKLC@1?$AA@"
468*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GBGANLPD@0?$AA@"
469*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KMDKNFGN@?1?$AA@"
470*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LFCBOECM@?4?$AA@"
471*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JOAMLHOP@?9?$AA@"
472*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IHBHIGKO@?0?$AA@"
473*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MIFGBAGJ@?$CL?$AA@"
474*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NBENCBCI@?$CK?$AA@"
475*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PKGAHCOL@?$CJ?$AA@"
476*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01ODHLEDKK@?$CI?$AA@"
477*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GEODFPGF@?8?$AA@"
478*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HNPIGOCE@?$CG?$AA@"
479*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FGNFDNOH@?$CF?$AA@"
480*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EPMOAMKG@$?$AA@"
481*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IPJKGB@?$CD?$AA@"
482*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BJJEKLCA@?$CC?$AA@"
483*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DCLJPIOD@?$CB?$AA@"
484*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CLKCMJKC@?5?$AA@"
485*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HDHMODJO@?$BP?$AA@"
486*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GKGHNCNP@?$BO?$AA@"
487*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EBEKIBBM@?$BN?$AA@"
488*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FIFBLAFN@?$BM?$AA@"
489*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BHBACGJK@?$BL?$AA@"
490*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OALBHNL@?$BK?$AA@"
491*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CFCGEEBI@?$BJ?$AA@"
492*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DMDNHFFJ@?$BI?$AA@"
493*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LLKFGJJG@?$BH?$AA@"
494*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KCLOFINH@?$BG?$AA@"
495*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IJJDALBE@?$BF?$AA@"
496*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JAIIDKFF@?$BE?$AA@"
497*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NPMJKMJC@?$BD?$AA@"
498*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MGNCJNND@?$BC?$AA@"
499*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01ONPPMOBA@?$BB?$AA@"
500*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PEOEPPFB@?$BA?$AA@"
501*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01DJLOPBMP@?$AP?$AA@"
502*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01CAKFMAIO@?$AO?$AA@"
503*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LIIJDEN@?$AN?$AA@"
504*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01BCJDKCAM@?$AM?$AA@"
505*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01FNNCDEML@?$AL?$AA@"
506*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01EEMJAFIK@?6?$AA@"
507*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01GPOEFGEJ@?7?$AA@"
508*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01HGPPGHAI@?$AI?$AA@"
509*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01PBGHHLMH@?$AH?$AA@"
510*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01OIHMEKIG@?$AG?$AA@"
511*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01MDFBBJEF@?$AF?$AA@"
512*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01NKEKCIAE@?$AE?$AA@"
513*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01JFALLOMD@?$AD?$AA@"
514*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01IMBAIPIC@?$AC?$AA@"
515*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01KHDNNMEB@?$AB?$AA@"
516*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_01LOCGONAA@?$AA?$AA@"
517*0a6a1f1dSLionel Sambuc 
518*0a6a1f1dSLionel Sambuc const wchar_t *wl9 = L"\t";
519*0a6a1f1dSLionel Sambuc const wchar_t *wl10 = L"\n";
520*0a6a1f1dSLionel Sambuc const wchar_t *wl11 = L"\v";
521*0a6a1f1dSLionel Sambuc const wchar_t *wl32 = L" ";
522*0a6a1f1dSLionel Sambuc const wchar_t *wl33 = L"!";
523*0a6a1f1dSLionel Sambuc const wchar_t *wl34 = L"\"";
524*0a6a1f1dSLionel Sambuc const wchar_t *wl35 = L"#";
525*0a6a1f1dSLionel Sambuc const wchar_t *wl36 = L"$";
526*0a6a1f1dSLionel Sambuc const wchar_t *wl37 = L"%";
527*0a6a1f1dSLionel Sambuc const wchar_t *wl38 = L"&";
528*0a6a1f1dSLionel Sambuc const wchar_t *wl39 = L"'";
529*0a6a1f1dSLionel Sambuc const wchar_t *wl40 = L"(";
530*0a6a1f1dSLionel Sambuc const wchar_t *wl41 = L")";
531*0a6a1f1dSLionel Sambuc const wchar_t *wl42 = L"*";
532*0a6a1f1dSLionel Sambuc const wchar_t *wl43 = L"+";
533*0a6a1f1dSLionel Sambuc const wchar_t *wl44 = L",";
534*0a6a1f1dSLionel Sambuc const wchar_t *wl45 = L"-";
535*0a6a1f1dSLionel Sambuc const wchar_t *wl46 = L".";
536*0a6a1f1dSLionel Sambuc const wchar_t *wl47 = L"/";
537*0a6a1f1dSLionel Sambuc const wchar_t *wl48 = L"0";
538*0a6a1f1dSLionel Sambuc const wchar_t *wl49 = L"1";
539*0a6a1f1dSLionel Sambuc const wchar_t *wl50 = L"2";
540*0a6a1f1dSLionel Sambuc const wchar_t *wl51 = L"3";
541*0a6a1f1dSLionel Sambuc const wchar_t *wl52 = L"4";
542*0a6a1f1dSLionel Sambuc const wchar_t *wl53 = L"5";
543*0a6a1f1dSLionel Sambuc const wchar_t *wl54 = L"6";
544*0a6a1f1dSLionel Sambuc const wchar_t *wl55 = L"7";
545*0a6a1f1dSLionel Sambuc const wchar_t *wl56 = L"8";
546*0a6a1f1dSLionel Sambuc const wchar_t *wl57 = L"9";
547*0a6a1f1dSLionel Sambuc const wchar_t *wl58 = L":";
548*0a6a1f1dSLionel Sambuc const wchar_t *wl59 = L";";
549*0a6a1f1dSLionel Sambuc const wchar_t *wl60 = L"<";
550*0a6a1f1dSLionel Sambuc const wchar_t *wl61 = L"=";
551*0a6a1f1dSLionel Sambuc const wchar_t *wl62 = L">";
552*0a6a1f1dSLionel Sambuc const wchar_t *wl63 = L"?";
553*0a6a1f1dSLionel Sambuc const wchar_t *wl64 = L"@";
554*0a6a1f1dSLionel Sambuc const wchar_t *wl65 = L"A";
555*0a6a1f1dSLionel Sambuc const wchar_t *wl66 = L"B";
556*0a6a1f1dSLionel Sambuc const wchar_t *wl67 = L"C";
557*0a6a1f1dSLionel Sambuc const wchar_t *wl68 = L"D";
558*0a6a1f1dSLionel Sambuc const wchar_t *wl69 = L"E";
559*0a6a1f1dSLionel Sambuc const wchar_t *wl70 = L"F";
560*0a6a1f1dSLionel Sambuc const wchar_t *wl71 = L"G";
561*0a6a1f1dSLionel Sambuc const wchar_t *wl72 = L"H";
562*0a6a1f1dSLionel Sambuc const wchar_t *wl73 = L"I";
563*0a6a1f1dSLionel Sambuc const wchar_t *wl74 = L"J";
564*0a6a1f1dSLionel Sambuc const wchar_t *wl75 = L"K";
565*0a6a1f1dSLionel Sambuc const wchar_t *wl76 = L"L";
566*0a6a1f1dSLionel Sambuc const wchar_t *wl77 = L"M";
567*0a6a1f1dSLionel Sambuc const wchar_t *wl78 = L"N";
568*0a6a1f1dSLionel Sambuc const wchar_t *wl79 = L"O";
569*0a6a1f1dSLionel Sambuc const wchar_t *wl80 = L"P";
570*0a6a1f1dSLionel Sambuc const wchar_t *wl81 = L"Q";
571*0a6a1f1dSLionel Sambuc const wchar_t *wl82 = L"R";
572*0a6a1f1dSLionel Sambuc const wchar_t *wl83 = L"S";
573*0a6a1f1dSLionel Sambuc const wchar_t *wl84 = L"T";
574*0a6a1f1dSLionel Sambuc const wchar_t *wl85 = L"U";
575*0a6a1f1dSLionel Sambuc const wchar_t *wl86 = L"V";
576*0a6a1f1dSLionel Sambuc const wchar_t *wl87 = L"W";
577*0a6a1f1dSLionel Sambuc const wchar_t *wl88 = L"X";
578*0a6a1f1dSLionel Sambuc const wchar_t *wl89 = L"Y";
579*0a6a1f1dSLionel Sambuc const wchar_t *wl90 = L"Z";
580*0a6a1f1dSLionel Sambuc const wchar_t *wl91 = L"[";
581*0a6a1f1dSLionel Sambuc const wchar_t *wl92 = L"\\";
582*0a6a1f1dSLionel Sambuc const wchar_t *wl93 = L"]";
583*0a6a1f1dSLionel Sambuc const wchar_t *wl94 = L"^";
584*0a6a1f1dSLionel Sambuc const wchar_t *wl95 = L"_";
585*0a6a1f1dSLionel Sambuc const wchar_t *wl96 = L"`";
586*0a6a1f1dSLionel Sambuc const wchar_t *wl97 = L"a";
587*0a6a1f1dSLionel Sambuc const wchar_t *wl98 = L"b";
588*0a6a1f1dSLionel Sambuc const wchar_t *wl99 = L"c";
589*0a6a1f1dSLionel Sambuc const wchar_t *wl100 = L"d";
590*0a6a1f1dSLionel Sambuc const wchar_t *wl101 = L"e";
591*0a6a1f1dSLionel Sambuc const wchar_t *wl102 = L"f";
592*0a6a1f1dSLionel Sambuc const wchar_t *wl103 = L"g";
593*0a6a1f1dSLionel Sambuc const wchar_t *wl104 = L"h";
594*0a6a1f1dSLionel Sambuc const wchar_t *wl105 = L"i";
595*0a6a1f1dSLionel Sambuc const wchar_t *wl106 = L"j";
596*0a6a1f1dSLionel Sambuc const wchar_t *wl107 = L"k";
597*0a6a1f1dSLionel Sambuc const wchar_t *wl108 = L"l";
598*0a6a1f1dSLionel Sambuc const wchar_t *wl109 = L"m";
599*0a6a1f1dSLionel Sambuc const wchar_t *wl110 = L"n";
600*0a6a1f1dSLionel Sambuc const wchar_t *wl111 = L"o";
601*0a6a1f1dSLionel Sambuc const wchar_t *wl112 = L"p";
602*0a6a1f1dSLionel Sambuc const wchar_t *wl113 = L"q";
603*0a6a1f1dSLionel Sambuc const wchar_t *wl114 = L"r";
604*0a6a1f1dSLionel Sambuc const wchar_t *wl115 = L"s";
605*0a6a1f1dSLionel Sambuc const wchar_t *wl116 = L"t";
606*0a6a1f1dSLionel Sambuc const wchar_t *wl117 = L"u";
607*0a6a1f1dSLionel Sambuc const wchar_t *wl118 = L"v";
608*0a6a1f1dSLionel Sambuc const wchar_t *wl119 = L"w";
609*0a6a1f1dSLionel Sambuc const wchar_t *wl120 = L"x";
610*0a6a1f1dSLionel Sambuc const wchar_t *wl121 = L"y";
611*0a6a1f1dSLionel Sambuc const wchar_t *wl122 = L"z";
612*0a6a1f1dSLionel Sambuc const wchar_t *wl123 = L"{";
613*0a6a1f1dSLionel Sambuc const wchar_t *wl124 = L"|";
614*0a6a1f1dSLionel Sambuc const wchar_t *wl125 = L"}";
615*0a6a1f1dSLionel Sambuc const wchar_t *wl126 = L"~";
616*0a6a1f1dSLionel Sambuc 
617*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13KDLDGPGJ@?$AA?7?$AA?$AA@"
618*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LBAGMAIH@?$AA?6?$AA?$AA@"
619*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13JLKKHOC@?$AA?$AL?$AA?$AA@"
620*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13HOIJIPNN@?$AA?5?$AA?$AA@"
621*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13MGDFOILI@?$AA?$CB?$AA?$AA@"
622*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13NEIAEHFG@?$AA?$CC?$AA?$AA@"
623*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13GMDMCADD@?$AA?$CD?$AA?$AA@"
624*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13PBOLBIIK@?$AA$?$AA?$AA@"
625*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13EJFHHPOP@?$AA?$CF?$AA?$AA@"
626*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13FLOCNAAB@?$AA?$CG?$AA?$AA@"
627*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13ODFOLHGE@?$AA?8?$AA?$AA@"
628*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LLDNKHDC@?$AA?$CI?$AA?$AA@"
629*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13DIBMAFH@?$AA?$CJ?$AA?$AA@"
630*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13BBDEGPLJ@?$AA?$CK?$AA?$AA@"
631*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13KJIIAINM@?$AA?$CL?$AA?$AA@"
632*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13DEFPDAGF@?$AA?0?$AA?$AA@"
633*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13IMODFHAA@?$AA?9?$AA?$AA@"
634*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13JOFGPIOO@?$AA?4?$AA?$AA@"
635*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13CGOKJPIL@?$AA?1?$AA?$AA@"
636*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13COJANIEC@?$AA0?$AA?$AA@"
637*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13JGCMLPCH@?$AA1?$AA?$AA@"
638*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13IEJJBAMJ@?$AA2?$AA?$AA@"
639*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13DMCFHHKM@?$AA3?$AA?$AA@"
640*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13KBPCEPBF@?$AA4?$AA?$AA@"
641*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13BJEOCIHA@?$AA5?$AA?$AA@"
642*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LPLIHJO@?$AA6?$AA?$AA@"
643*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LDEHOAPL@?$AA7?$AA?$AA@"
644*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13OLCEPAKN@?$AA8?$AA?$AA@"
645*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13FDJIJHMI@?$AA9?$AA?$AA@"
646*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13EBCNDICG@?$AA?3?$AA?$AA@"
647*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13PJJBFPED@?$AA?$DL?$AA?$AA@"
648*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13GEEGGHPK@?$AA?$DM?$AA?$AA@"
649*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13NMPKAAJP@?$AA?$DN?$AA?$AA@"
650*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13MOEPKPHB@?$AA?$DO?$AA?$AA@"
651*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13HGPDMIBE@?$AA?$DP?$AA?$AA@"
652*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13EFKPHINO@?$AA?$EA?$AA?$AA@"
653*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13PNBDBPLL@?$AAA?$AA?$AA@"
654*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13OPKGLAFF@?$AAB?$AA?$AA@"
655*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13FHBKNHDA@?$AAC?$AA?$AA@"
656*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13MKMNOPIJ@?$AAD?$AA?$AA@"
657*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13HCHBIIOM@?$AAE?$AA?$AA@"
658*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13GAMECHAC@?$AAF?$AA?$AA@"
659*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13NIHIEAGH@?$AAG?$AA?$AA@"
660*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13IABLFADB@?$AAH?$AA?$AA@"
661*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13DIKHDHFE@?$AAI?$AA?$AA@"
662*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13CKBCJILK@?$AAJ?$AA?$AA@"
663*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13JCKOPPNP@?$AAK?$AA?$AA@"
664*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13PHJMHGG@?$AAL?$AA?$AA@"
665*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LHMFKAAD@?$AAM?$AA?$AA@"
666*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13KFHAAPON@?$AAN?$AA?$AA@"
667*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13BNMMGIII@?$AAO?$AA?$AA@"
668*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13BFLGCPEB@?$AAP?$AA?$AA@"
669*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13KNAKEICE@?$AAQ?$AA?$AA@"
670*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LPLPOHMK@?$AAR?$AA?$AA@"
671*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13HADIAKP@?$AAS?$AA?$AA@"
672*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13JKNELIBG@?$AAT?$AA?$AA@"
673*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13CCGINPHD@?$AAU?$AA?$AA@"
674*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13DANNHAJN@?$AAV?$AA?$AA@"
675*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13IIGBBHPI@?$AAW?$AA?$AA@"
676*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13NAACAHKO@?$AAX?$AA?$AA@"
677*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13GILOGAML@?$AAY?$AA?$AA@"
678*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13HKALMPCF@?$AAZ?$AA?$AA@"
679*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13MCLHKIEA@?$AA?$FL?$AA?$AA@"
680*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13FPGAJAPJ@?$AA?2?$AA?$AA@"
681*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13OHNMPHJM@?$AA?$FN?$AA?$AA@"
682*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13PFGJFIHC@?$AA?$FO?$AA?$AA@"
683*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13ENNFDPBH@?$AA_?$AA?$AA@"
684*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13OFJNNHOA@?$AA?$GA?$AA?$AA@"
685*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13FNCBLAIF@?$AAa?$AA?$AA@"
686*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13EPJEBPGL@?$AAb?$AA?$AA@"
687*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13PHCIHIAO@?$AAc?$AA?$AA@"
688*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13GKPPEALH@?$AAd?$AA?$AA@"
689*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13NCEDCHNC@?$AAe?$AA?$AA@"
690*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13MAPGIIDM@?$AAf?$AA?$AA@"
691*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13HIEKOPFJ@?$AAg?$AA?$AA@"
692*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13CACJPPAP@?$AAh?$AA?$AA@"
693*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13JIJFJIGK@?$AAi?$AA?$AA@"
694*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13IKCADHIE@?$AAj?$AA?$AA@"
695*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13DCJMFAOB@?$AAk?$AA?$AA@"
696*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13KPELGIFI@?$AAl?$AA?$AA@"
697*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13BHPHAPDN@?$AAm?$AA?$AA@"
698*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13FECKAND@?$AAn?$AA?$AA@"
699*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LNPOMHLG@?$AAo?$AA?$AA@"
700*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13LFIEIAHP@?$AAp?$AA?$AA@"
701*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13NDIOHBK@?$AAq?$AA?$AA@"
702*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13BPINEIPE@?$AAr?$AA?$AA@"
703*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13KHDBCPJB@?$AAs?$AA?$AA@"
704*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13DKOGBHCI@?$AAt?$AA?$AA@"
705*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13ICFKHAEN@?$AAu?$AA?$AA@"
706*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13JAOPNPKD@?$AAv?$AA?$AA@"
707*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13CIFDLIMG@?$AAw?$AA?$AA@"
708*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13HADAKIJA@?$AAx?$AA?$AA@"
709*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13MIIMMPPF@?$AAy?$AA?$AA@"
710*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13NKDJGABL@?$AAz?$AA?$AA@"
711*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13GCIFAHHO@?$AA?$HL?$AA?$AA@"
712*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13PPFCDPMH@?$AA?$HM?$AA?$AA@"
713*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13EHOOFIKC@?$AA?$HN?$AA?$AA@"
714*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13FFFLPHEM@?$AA?$HO?$AA?$AA@"
715*0a6a1f1dSLionel Sambuc 
716*0a6a1f1dSLionel Sambuc const char *LongASCIIString = "012345678901234567890123456789ABCDEF";
717*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_0CF@LABBIIMO@012345678901234567890123456789AB@"
718*0a6a1f1dSLionel Sambuc const wchar_t *LongWideString = L"012345678901234567890123456789ABCDEF";
719*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_1EK@KFPEBLPK@?$AA0?$AA1?$AA2?$AA3?$AA4?$AA5?$AA6?$AA7?$AA8?$AA9?$AA0?$AA1?$AA2?$AA3?$AA4?$AA5?$AA6?$AA7?$AA8?$AA9?$AA0?$AA1?$AA2?$AA3?$AA4?$AA5?$AA6?$AA7?$AA8?$AA9?$AAA?$AAB@"
720*0a6a1f1dSLionel Sambuc const wchar_t *UnicodeLiteral = L"\ud7ff";
721*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_13IIHIAFKH@?W?$PP?$AA?$AA@"
722*0a6a1f1dSLionel Sambuc const char *U8Literal = u8"hi";
723*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_02PCEFGMJL@hi?$AA@"
724*0a6a1f1dSLionel Sambuc const char16_t *U16Literal = u"hi";
725*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_05OMLEGLOC@h?$AAi?$AA?$AA?$AA@"
726*0a6a1f1dSLionel Sambuc const char32_t *U32Literal = U"hi";
727*0a6a1f1dSLionel Sambuc // CHECK: @"\01??_C@_0M@GFNAJIPG@h?$AA?$AA?$AAi?$AA?$AA?$AA?$AA?$AA?$AA?$AA@"
728