aboutsummaryrefslogtreecommitdiffstats
path: root/tests/P_all_api_19/all19.rs
blob: c10a9a1a32f03fffecee239c7fcff46d776febea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
// -target-api 19 -Wno-deprecated-declarations
/*
 * Copyright (C) 2015 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

// Don't edit this file!  It is auto-generated by frameworks/rs/api/generate.sh.

#pragma version(1)
#pragma rs java_package_name(com.example.renderscript.testallapi)

#include "rs_graphics.rsh"

char buf0[200];
char buf1[200];
char buf2[200];
char buf3[200];
char buf4[200];
char buf5[200];
char buf6[200];
char buf7[200];
char buf8[200];
char buf9[200];
char buf10[200];
char buf11[200];
char buf12[200];
char buf13[200];
char buf14[200];
char buf15[200];
char buf16[200];
char buf17[200];
char buf18[200];
char buf19[200];
char buf20[200];
char buf21[200];
char buf22[200];
char buf23[200];
char buf24[200];
char buf25[200];
char buf26[200];
char buf27[200];
char buf28[200];
char buf29[200];
char buf30[200];
char buf31[200];
char buf32[200];
char buf33[200];
char buf34[200];
char buf35[200];
char buf36[200];
char buf37[200];
char buf38[200];
char buf39[200];
char buf40[200];
char buf41[200];
char buf42[200];
char buf43[200];
char buf44[200];
char buf45[200];
char buf46[200];
char buf47[200];
char buf48[200];
char buf49[200];
char buf50[200];
char buf51[200];
char buf52[200];
char buf53[200];
char buf54[200];
char buf55[200];
char buf56[200];
char buf57[200];
char buf58[200];
char buf59[200];
char buf60[200];
char buf61[200];
char buf62[200];
char buf63[200];
char buf64[200];
char buf65[200];
char buf66[200];
char buf67[200];
char buf68[200];
char buf69[200];
char buf70[200];
char buf71[200];
char buf72[200];
char buf73[200];
char buf74[200];
char buf75[200];
char buf76[200];
char buf77[200];
char buf78[200];
char buf79[200];
char buf80[200];
char buf81[200];
char buf82[200];
char buf83[200];
char buf84[200];
char buf85[200];
char buf86[200];
char buf87[200];
char buf88[200];
char buf89[200];
char buf90[200];
char buf91[200];
char buf92[200];
char buf93[200];
char buf94[200];
char buf95[200];
char buf96[200];
char buf97[200];
char buf98[200];
char buf99[200];
char buf100[200];
char buf101[200];
char buf102[200];
char buf103[200];
char buf104[200];
char buf105[200];
char buf106[200];
char buf107[200];
char buf108[200];
char buf109[200];
char buf110[200];
char buf111[200];
char buf112[200];
char buf113[200];
char buf114[200];
char buf115[200];
char buf116[200];
char buf117[200];
char buf118[200];
char buf119[200];
char buf120[200];
char buf121[200];
char buf122[200];
char buf123[200];
char buf124[200];
char buf125[200];
char buf126[200];
char buf127[200];
char buf128[200];
char buf129[200];
char buf130[200];
char buf131[200];
char buf132[200];
char buf133[200];
char buf134[200];
char buf135[200];
char buf136[200];
char buf137[200];
char buf138[200];
char buf139[200];
char buf140[200];
char buf141[200];
char buf142[200];
char buf143[200];
char buf144[200];
char buf145[200];
char buf146[200];
char buf147[200];
char buf148[200];
char buf149[200];
char buf150[200];
char buf151[200];
char buf152[200];
char buf153[200];
char buf154[200];
char buf155[200];
char buf156[200];
char buf157[200];
char buf158[200];
char buf159[200];
char buf160[200];
char buf161[200];
char buf162[200];
char buf163[200];
char buf164[200];
char buf165[200];
char buf166[200];
char buf167[200];
char buf168[200];
char buf169[200];
char buf170[200];
char buf171[200];
char buf172[200];
char buf173[200];
char buf174[200];
char buf175[200];
char buf176[200];
char buf177[200];
char buf178[200];
char buf179[200];
char buf180[200];
char buf181[200];
char buf182[200];
char buf183[200];
char buf184[200];
char buf185[200];
char buf186[200];
char buf187[200];
char buf188[200];
char buf189[200];
char buf190[200];
char buf191[200];
char buf192[200];
char buf193[200];
char buf194[200];
char buf195[200];
char buf196[200];
char buf197[200];
char buf198[200];
char buf199[200];
char buf200[200];
char buf201[200];
char buf202[200];
char buf203[200];
char buf204[200];
char buf205[200];
char buf206[200];
char buf207[200];
char buf208[200];
char buf209[200];
char buf210[200];
char buf211[200];
char buf212[200];
char buf213[200];
char buf214[200];
char buf215[200];
char buf216[200];
char buf217[200];
char buf218[200];
char buf219[200];
char buf220[200];
char buf221[200];
char buf222[200];
char buf223[200];
char buf224[200];
char buf225[200];
char buf226[200];
char buf227[200];
char buf228[200];
char buf229[200];
char buf230[200];
char buf231[200];
char buf232[200];
char buf233[200];
char buf234[200];
char buf235[200];
char buf236[200];
char buf237[200];
char buf238[200];
char buf239[200];
char buf240[200];
char buf241[200];
char buf242[200];
char buf243[200];
char buf244[200];
char buf245[200];
char buf246[200];
char buf247[200];
char buf248[200];
char buf249[200];
char buf250[200];
char buf251[200];
char buf252[200];
char buf253[200];
char buf254[200];
char buf255[200];
char buf256[200];
char buf257[200];
char buf258[200];
char buf259[200];
char buf260[200];
char buf261[200];
char buf262[200];
char buf263[200];
char buf264[200];
char buf265[200];
char buf266[200];
char buf267[200];
char buf268[200];
char buf269[200];
char buf270[200];
char buf271[200];
char buf272[200];
char buf273[200];
char buf274[200];
char buf275[200];
char buf276[200];
char buf277[200];
char buf278[200];
char buf279[200];
char buf280[200];
char buf281[200];
char buf282[200];
char buf283[200];
char buf284[200];
char buf285[200];
char buf286[200];
char buf287[200];
char buf288[200];
char buf289[200];
char buf290[200];
char buf291[200];
char buf292[200];
char buf293[200];
char buf294[200];
char buf295[200];
char buf296[200];
char buf297[200];
char buf298[200];
char buf299[200];
char buf300[200];
char buf301[200];
char buf302[200];
char buf303[200];
char buf304[200];
char buf305[200];
char buf306[200];
char buf307[200];
char buf308[200];
char buf309[200];
char buf310[200];
char buf311[200];
char buf312[200];
char buf313[200];
char buf314[200];
char buf315[200];
char buf316[200];
char buf317[200];
char buf318[200];
char buf319[200];
char buf320[200];
char buf321[200];
char buf322[200];
char buf323[200];
char buf324[200];
char buf325[200];
char buf326[200];
char buf327[200];
char buf328[200];
char buf329[200];
char buf330[200];
char buf331[200];
char buf332[200];
char buf333[200];
char buf334[200];
char buf335[200];
char buf336[200];
char buf337[200];
char buf338[200];
char buf339[200];
char buf340[200];
char buf341[200];
char buf342[200];
char buf343[200];
char buf344[200];
char buf345[200];
char buf346[200];
char buf347[200];
char buf348[200];
char buf349[200];
char buf350[200];
char buf351[200];
char buf352[200];
char buf353[200];
char buf354[200];
char buf355[200];
char buf356[200];
char buf357[200];
char buf358[200];
char buf359[200];
char buf360[200];
char buf361[200];
char buf362[200];
char buf363[200];
char buf364[200];
char buf365[200];
char buf366[200];
char buf367[200];
char buf368[200];
char buf369[200];
char buf370[200];
char buf371[200];
char buf372[200];
char buf373[200];
char buf374[200];
char buf375[200];
char buf376[200];
char buf377[200];
char buf378[200];
char buf379[200];
char buf380[200];
char buf381[200];
char buf382[200];
char buf383[200];
char buf384[200];
char buf385[200];
char buf386[200];
char buf387[200];
char buf388[200];
char buf389[200];
char buf390[200];
char buf391[200];
char buf392[200];
char buf393[200];
char buf394[200];
char buf395[200];
char buf396[200];
char buf397[200];
char buf398[200];
char buf399[200];
char buf400[200];
char buf401[200];
char buf402[200];
char buf403[200];
char buf404[200];
char buf405[200];
char buf406[200];
char buf407[200];
char buf408[200];
char buf409[200];
char buf410[200];
char buf411[200];
char buf412[200];
char buf413[200];
char buf414[200];
char buf415[200];
char buf416[200];
char buf417[200];
char buf418[200];
char buf419[200];
char buf420[200];
char buf421[200];
char buf422[200];
char buf423[200];
char buf424[200];
char buf425[200];
char buf426[200];
char buf427[200];
char buf428[200];
char buf429[200];
char buf430[200];
char buf431[200];
char buf432[200];
char buf433[200];
char buf434[200];
char buf435[200];
char buf436[200];
char buf437[200];
char buf438[200];
char buf439[200];
char buf440[200];
char buf441[200];
char buf442[200];
char buf443[200];
char buf444[200];
char buf445[200];
char buf446[200];
char buf447[200];
char buf448[200];
char buf449[200];
char buf450[200];
char buf451[200];
char buf452[200];
char buf453[200];
char buf454[200];
char buf455[200];
char buf456[200];
char buf457[200];
char buf458[200];
char buf459[200];
char buf460[200];
char buf461[200];
char buf462[200];
char buf463[200];
char buf464[200];
char buf465[200];
char buf466[200];
char buf467[200];
char buf468[200];
char buf469[200];
char buf470[200];
char buf471[200];
char buf472[200];
char buf473[200];
char buf474[200];
char buf475[200];
char buf476[200];
char buf477[200];
char buf478[200];
char buf479[200];
char buf480[200];
char buf481[200];
char buf482[200];
char buf483[200];
char buf484[200];
char buf485[200];
char buf486[200];
char buf487[200];
char buf488[200];
char buf489[200];
char buf490[200];
char buf491[200];
char buf492[200];
char buf493[200];
char buf494[200];
char buf495[200];
char buf496[200];
char buf497[200];
char buf498[200];
char buf499[200];
char buf500[200];
char buf501[200];
char buf502[200];
char buf503[200];
char buf504[200];
char buf505[200];
char buf506[200];
char buf507[200];
char buf508[200];
char buf509[200];
char buf510[200];
char buf511[200];
char buf512[200];
char buf513[200];
char buf514[200];
char buf515[200];
char buf516[200];
char buf517[200];
char buf518[200];
char buf519[200];
char buf520[200];
char buf521[200];
char buf522[200];
char buf523[200];
char buf524[200];
char buf525[200];
char buf526[200];
char buf527[200];
char buf528[200];
char buf529[200];
char buf530[200];
char buf531[200];
char buf532[200];
char buf533[200];
char buf534[200];
char buf535[200];
char buf536[200];
char buf537[200];
char buf538[200];
char buf539[200];
char buf540[200];
char buf541[200];
char buf542[200];
char buf543[200];
char buf544[200];
char buf545[200];
char buf546[200];
char buf547[200];
char buf548[200];
char buf549[200];
char buf550[200];
char buf551[200];
char buf552[200];
char buf553[200];
char buf554[200];
char buf555[200];
char buf556[200];
char buf557[200];
char buf558[200];
char buf559[200];
char buf560[200];
char buf561[200];
char buf562[200];
char buf563[200];
char buf564[200];
char buf565[200];
char buf566[200];
char buf567[200];
char buf568[200];
char buf569[200];
char buf570[200];
char buf571[200];
char buf572[200];
char buf573[200];
char buf574[200];
char buf575[200];
char buf576[200];
char buf577[200];
char buf578[200];
char buf579[200];
char buf580[200];
char buf581[200];
char buf582[200];
char buf583[200];
char buf584[200];
char buf585[200];
char buf586[200];
char buf587[200];
char buf588[200];
char buf589[200];
char buf590[200];
char buf591[200];
char buf592[200];
char buf593[200];
char buf594[200];
char buf595[200];
char buf596[200];
char buf597[200];
char buf598[200];
char buf599[200];
char buf600[200];
char buf601[200];
char buf602[200];
char buf603[200];
char buf604[200];
char buf605[200];
char buf606[200];
char buf607[200];
char buf608[200];
char buf609[200];
char buf610[200];
char buf611[200];
char buf612[200];
char buf613[200];
char buf614[200];
char buf615[200];
char buf616[200];
char buf617[200];
char buf618[200];
char buf619[200];
char buf620[200];
char buf621[200];
char buf622[200];
char buf623[200];
char buf624[200];
char buf625[200];
char buf626[200];
char buf627[200];
char buf628[200];
char buf629[200];
char buf630[200];
char buf631[200];
char buf632[200];
char buf633[200];
char buf634[200];
char buf635[200];
char buf636[200];
char buf637[200];
char buf638[200];
char buf639[200];
char buf640[200];
char buf641[200];
char buf642[200];
char buf643[200];
char buf644[200];
char buf645[200];
char buf646[200];
char buf647[200];
char buf648[200];
char buf649[200];
char buf650[200];
char buf651[200];
char buf652[200];
char buf653[200];
char buf654[200];
char buf655[200];
char buf656[200];
char buf657[200];
char buf658[200];
char buf659[200];
char buf660[200];
char buf661[200];
char buf662[200];
char buf663[200];
char buf664[200];
char buf665[200];
char buf666[200];
char buf667[200];
char buf668[200];
char buf669[200];
char buf670[200];
char buf671[200];
char buf672[200];
char buf673[200];
char buf674[200];
char buf675[200];
char buf676[200];
char buf677[200];
char buf678[200];
char buf679[200];
char buf680[200];
char buf681[200];
char buf682[200];
char buf683[200];
char buf684[200];
char buf685[200];
char buf686[200];
char buf687[200];
char buf688[200];
char buf689[200];
char buf690[200];
char buf691[200];
char buf692[200];
char buf693[200];
char buf694[200];
char buf695[200];
char buf696[200];
char buf697[200];
char buf698[200];
char buf699[200];
char buf700[200];
char buf701[200];
char buf702[200];
char buf703[200];
char buf704[200];
char buf705[200];
char buf706[200];
char buf707[200];
char buf708[200];
char buf709[200];
char buf710[200];
char buf711[200];
char buf712[200];
char buf713[200];
char buf714[200];
char buf715[200];
char buf716[200];
char buf717[200];
char buf718[200];
char buf719[200];
char buf720[200];
char buf721[200];
char buf722[200];
char buf723[200];
char buf724[200];
char buf725[200];
char buf726[200];
char buf727[200];
char buf728[200];
char buf729[200];
char buf730[200];
char buf731[200];
char buf732[200];
char buf733[200];
char buf734[200];
char buf735[200];
char buf736[200];
char buf737[200];
char buf738[200];
char buf739[200];
char buf740[200];
char buf741[200];
char buf742[200];
char buf743[200];
char buf744[200];
char buf745[200];
char buf746[200];
char buf747[200];
char buf748[200];
char buf749[200];
char buf750[200];
char buf751[200];
char buf752[200];
char buf753[200];
char buf754[200];
char buf755[200];
char buf756[200];
char buf757[200];
char buf758[200];
char buf759[200];
char buf760[200];
char buf761[200];
char buf762[200];
char buf763[200];
char buf764[200];
char buf765[200];
char buf766[200];
char buf767[200];
char buf768[200];
char buf769[200];
char buf770[200];
char buf771[200];
char buf772[200];
char buf773[200];
char buf774[200];
char buf775[200];
char buf776[200];
char buf777[200];
char buf778[200];
char buf779[200];
char buf780[200];
char buf781[200];
char buf782[200];
char buf783[200];
char buf784[200];
char buf785[200];
char buf786[200];
char buf787[200];
char buf788[200];
char buf789[200];
char buf790[200];
char buf791[200];
char buf792[200];
char buf793[200];
char buf794[200];
char buf795[200];
char buf796[200];
char buf797[200];
char buf798[200];
char buf799[200];
char buf800[200];
char buf801[200];
char buf802[200];
char buf803[200];
char buf804[200];
char buf805[200];
char buf806[200];
char buf807[200];
char buf808[200];
char buf809[200];
char buf810[200];
char buf811[200];
char buf812[200];
char buf813[200];
char buf814[200];
char buf815[200];
char buf816[200];
char buf817[200];
char buf818[200];
char buf819[200];
char buf820[200];
char buf821[200];
char buf822[200];
char buf823[200];
char buf824[200];
char buf825[200];
char buf826[200];
char buf827[200];
char buf828[200];
char buf829[200];
char buf830[200];
char buf831[200];
char buf832[200];
char buf833[200];
char buf834[200];
char buf835[200];
char buf836[200];
char buf837[200];
char buf838[200];
char buf839[200];
char buf840[200];
char buf841[200];
char buf842[200];
char buf843[200];
char buf844[200];
char buf845[200];
char buf846[200];
char buf847[200];
char buf848[200];
char buf849[200];
char buf850[200];
char buf851[200];
char buf852[200];
char buf853[200];
char buf854[200];
char buf855[200];
char buf856[200];
char buf857[200];
char buf858[200];
char buf859[200];
char buf860[200];
char buf861[200];
char buf862[200];
char buf863[200];
char buf864[200];
char buf865[200];
char buf866[200];
char buf867[200];
char buf868[200];
char buf869[200];
char buf870[200];
char buf871[200];
char buf872[200];
char buf873[200];
char buf874[200];
char buf875[200];
char buf876[200];
char buf877[200];
char buf878[200];
char buf879[200];
char buf880[200];
char buf881[200];
char buf882[200];
char buf883[200];
char buf884[200];
char buf885[200];
char buf886[200];
char buf887[200];
char buf888[200];
char buf889[200];
char buf890[200];
char buf891[200];
char buf892[200];
char buf893[200];
char buf894[200];
char buf895[200];
char buf896[200];
char buf897[200];
char buf898[200];
char buf899[200];
char buf900[200];
char buf901[200];
char buf902[200];
char buf903[200];
char buf904[200];
char buf905[200];
char buf906[200];
char buf907[200];
char buf908[200];
char buf909[200];
char buf910[200];
char buf911[200];
char buf912[200];
char buf913[200];
char buf914[200];
char buf915[200];
char buf916[200];
char buf917[200];
char buf918[200];
char buf919[200];
char buf920[200];
char buf921[200];
char buf922[200];
char buf923[200];
char buf924[200];
char buf925[200];
char buf926[200];
char buf927[200];
char buf928[200];
char buf929[200];
char buf930[200];
char buf931[200];
char buf932[200];
char buf933[200];
char buf934[200];
char buf935[200];
char buf936[200];
char buf937[200];
char buf938[200];
char buf939[200];
char buf940[200];
char buf941[200];
char buf942[200];
char buf943[200];
char buf944[200];
char buf945[200];
char buf946[200];
char buf947[200];
char buf948[200];
char buf949[200];
char buf950[200];
char buf951[200];
char buf952[200];
char buf953[200];
char buf954[200];
char buf955[200];
char buf956[200];
char buf957[200];
char buf958[200];
char buf959[200];
char buf960[200];
char buf961[200];
char buf962[200];
char buf963[200];
char buf964[200];
char buf965[200];
char buf966[200];
char buf967[200];
char buf968[200];
char buf969[200];
char buf970[200];
char buf971[200];
char buf972[200];
char buf973[200];
char buf974[200];
char buf975[200];
char buf976[200];
char buf977[200];
char buf978[200];
char buf979[200];
char buf980[200];
char buf981[200];
char buf982[200];
char buf983[200];
char buf984[200];
char buf985[200];
char buf986[200];
char buf987[200];
char buf988[200];
char buf989[200];
char buf990[200];
char buf991[200];
char buf992[200];
char buf993[200];
char buf994[200];
char buf995[200];
char buf996[200];
char buf997[200];
char buf998[200];
char buf999[200];
char buf1000[200];
char buf1001[200];
char buf1002[200];
char buf1003[200];
char buf1004[200];
char buf1005[200];
char buf1006[200];
char buf1007[200];
char buf1008[200];
char buf1009[200];
char buf1010[200];
char buf1011[200];
char buf1012[200];
char buf1013[200];
char buf1014[200];
char buf1015[200];
char buf1016[200];
char buf1017[200];
char buf1018[200];
char buf1019[200];
char buf1020[200];
char buf1021[200];
char buf1022[200];
char buf1023[200];
char buf1024[200];
char buf1025[200];
char buf1026[200];
char buf1027[200];
char buf1028[200];
char buf1029[200];
char buf1030[200];
char buf1031[200];
char buf1032[200];
char buf1033[200];
char buf1034[200];
char buf1035[200];
char buf1036[200];
char buf1037[200];
char buf1038[200];
char buf1039[200];
char buf1040[200];
char buf1041[200];
char buf1042[200];
char buf1043[200];
char buf1044[200];
char buf1045[200];
char buf1046[200];
char buf1047[200];
char buf1048[200];
char buf1049[200];
char buf1050[200];
char buf1051[200];
char buf1052[200];
char buf1053[200];
char buf1054[200];
char buf1055[200];
char buf1056[200];
char buf1057[200];
char buf1058[200];
char buf1059[200];
char buf1060[200];
char buf1061[200];
char buf1062[200];
char buf1063[200];
char buf1064[200];
char buf1065[200];
char buf1066[200];
char buf1067[200];
char buf1068[200];
char buf1069[200];
char buf1070[200];
char buf1071[200];
char buf1072[200];
char buf1073[200];
char buf1074[200];
char buf1075[200];
char buf1076[200];
char buf1077[200];
char buf1078[200];
char buf1079[200];
char buf1080[200];
char buf1081[200];
char buf1082[200];
char buf1083[200];
char buf1084[200];
char buf1085[200];
char buf1086[200];
char buf1087[200];
char buf1088[200];
char buf1089[200];
char buf1090[200];
char buf1091[200];
char buf1092[200];
char buf1093[200];
char buf1094[200];
char buf1095[200];
char buf1096[200];
char buf1097[200];
char buf1098[200];
char buf1099[200];
char buf1100[200];
char buf1101[200];
char buf1102[200];
char buf1103[200];
char buf1104[200];
char buf1105[200];
char buf1106[200];
char buf1107[200];
char buf1108[200];
char buf1109[200];
char buf1110[200];
char buf1111[200];
char buf1112[200];
char buf1113[200];
char buf1114[200];
char buf1115[200];
char buf1116[200];
char buf1117[200];
char buf1118[200];
char buf1119[200];
char buf1120[200];
char buf1121[200];
char buf1122[200];
char buf1123[200];
char buf1124[200];
char buf1125[200];
char buf1126[200];
char buf1127[200];
char buf1128[200];
char buf1129[200];
char buf1130[200];
char buf1131[200];
char buf1132[200];
char buf1133[200];
char buf1134[200];
char buf1135[200];
char buf1136[200];
char buf1137[200];
char buf1138[200];
char buf1139[200];
char buf1140[200];
char buf1141[200];
char buf1142[200];
char buf1143[200];
char buf1144[200];
char buf1145[200];
char buf1146[200];
char buf1147[200];
char buf1148[200];
char buf1149[200];
char buf1150[200];
char buf1151[200];
char buf1152[200];
char buf1153[200];
char buf1154[200];
char buf1155[200];
char buf1156[200];
char buf1157[200];
char buf1158[200];
char buf1159[200];
char buf1160[200];
char buf1161[200];
char buf1162[200];
char buf1163[200];
char buf1164[200];
char buf1165[200];
char buf1166[200];
char buf1167[200];
char buf1168[200];
char buf1169[200];
char buf1170[200];
char buf1171[200];
char buf1172[200];
char buf1173[200];
char buf1174[200];
char buf1175[200];
char buf1176[200];
char buf1177[200];
char buf1178[200];
char buf1179[200];
char buf1180[200];
char buf1181[200];
char buf1182[200];
char buf1183[200];
char buf1184[200];
char buf1185[200];
char buf1186[200];
char buf1187[200];
char buf1188[200];
char buf1189[200];
char buf1190[200];
char buf1191[200];
char buf1192[200];
char buf1193[200];
char buf1194[200];
char buf1195[200];
char buf1196[200];
char buf1197[200];
char buf1198[200];
char buf1199[200];
char buf1200[200];
char buf1201[200];
char buf1202[200];
char buf1203[200];
char buf1204[200];
char buf1205[200];
char buf1206[200];
char buf1207[200];
char buf1208[200];
char buf1209[200];
char buf1210[200];
char buf1211[200];
char buf1212[200];
char buf1213[200];
char buf1214[200];
char buf1215[200];
char buf1216[200];
char buf1217[200];
char buf1218[200];
char buf1219[200];
char buf1220[200];
char buf1221[200];
char buf1222[200];
char buf1223[200];
char buf1224[200];
char buf1225[200];
char buf1226[200];
char buf1227[200];
char buf1228[200];
char buf1229[200];
char buf1230[200];
char buf1231[200];
char buf1232[200];
char buf1233[200];
char buf1234[200];
char buf1235[200];
char buf1236[200];
char buf1237[200];
char buf1238[200];
char buf1239[200];
char buf1240[200];
char buf1241[200];
char buf1242[200];
char buf1243[200];
char buf1244[200];
char buf1245[200];
char buf1246[200];
char buf1247[200];
char buf1248[200];
char buf1249[200];
char buf1250[200];
char buf1251[200];
char buf1252[200];
char buf1253[200];
char buf1254[200];
char buf1255[200];
char buf1256[200];
char buf1257[200];
char buf1258[200];
char buf1259[200];
char buf1260[200];
char buf1261[200];
char buf1262[200];
char buf1263[200];
char buf1264[200];
char buf1265[200];
char buf1266[200];
char buf1267[200];
char buf1268[200];
char buf1269[200];
char buf1270[200];
char buf1271[200];
char buf1272[200];
char buf1273[200];
char buf1274[200];
char buf1275[200];
char buf1276[200];
char buf1277[200];
char buf1278[200];
char buf1279[200];
char buf1280[200];
char buf1281[200];
char buf1282[200];
char buf1283[200];
char buf1284[200];
char buf1285[200];
char buf1286[200];
char buf1287[200];
char buf1288[200];
char buf1289[200];
char buf1290[200];
char buf1291[200];
char buf1292[200];
char buf1293[200];
char buf1294[200];
char buf1295[200];
char buf1296[200];
char buf1297[200];
char buf1298[200];
char buf1299[200];
char buf1300[200];
char buf1301[200];
char buf1302[200];
char buf1303[200];
char buf1304[200];
char buf1305[200];
char buf1306[200];
char buf1307[200];
char buf1308[200];
char buf1309[200];
char buf1310[200];
char buf1311[200];
char buf1312[200];
char buf1313[200];
char buf1314[200];
char buf1315[200];
char buf1316[200];
char buf1317[200];
char buf1318[200];
char buf1319[200];
char buf1320[200];
char buf1321[200];
char buf1322[200];
char buf1323[200];
char buf1324[200];
char buf1325[200];
char buf1326[200];
char buf1327[200];
char buf1328[200];
char buf1329[200];
char buf1330[200];
char buf1331[200];
char buf1332[200];
char buf1333[200];
char buf1334[200];
char buf1335[200];
char buf1336[200];
char buf1337[200];
char buf1338[200];
char buf1339[200];
char buf1340[200];
char buf1341[200];
char buf1342[200];
char buf1343[200];
char buf1344[200];
char buf1345[200];
char buf1346[200];
char buf1347[200];
char buf1348[200];
char buf1349[200];
char buf1350[200];
char buf1351[200];
char buf1352[200];
char buf1353[200];
char buf1354[200];
char buf1355[200];
char buf1356[200];
char buf1357[200];
char buf1358[200];
char buf1359[200];
char buf1360[200];
char buf1361[200];
char buf1362[200];
char buf1363[200];
char buf1364[200];
char buf1365[200];
char buf1366[200];
char buf1367[200];
char buf1368[200];
char buf1369[200];
char buf1370[200];
char buf1371[200];
char buf1372[200];
char buf1373[200];
char buf1374[200];
char buf1375[200];
char buf1376[200];
char buf1377[200];
char buf1378[200];
char buf1379[200];
char buf1380[200];
char buf1381[200];
char buf1382[200];
char buf1383[200];
char buf1384[200];
char buf1385[200];
char buf1386[200];
char buf1387[200];
char buf1388[200];
char buf1389[200];
char buf1390[200];
char buf1391[200];
char buf1392[200];
char buf1393[200];
char buf1394[200];
char buf1395[200];
char buf1396[200];
char buf1397[200];
char buf1398[200];
char buf1399[200];
char buf1400[200];
char buf1401[200];
char buf1402[200];
char buf1403[200];
char buf1404[200];
char buf1405[200];
char buf1406[200];
char buf1407[200];
char buf1408[200];
char buf1409[200];
char buf1410[200];
char buf1411[200];
char buf1412[200];
char buf1413[200];
char buf1414[200];
char buf1415[200];
char buf1416[200];
char buf1417[200];
char buf1418[200];
char buf1419[200];
char buf1420[200];
char buf1421[200];
char buf1422[200];
char buf1423[200];
char buf1424[200];
char buf1425[200];
char buf1426[200];
char buf1427[200];
char buf1428[200];
char buf1429[200];
char buf1430[200];
char buf1431[200];
char buf1432[200];
char buf1433[200];
char buf1434[200];
char buf1435[200];
char buf1436[200];
char buf1437[200];
char buf1438[200];
char buf1439[200];
char buf1440[200];
char buf1441[200];
char buf1442[200];
char buf1443[200];
char buf1444[200];
char buf1445[200];
char buf1446[200];
char buf1447[200];
char buf1448[200];
char buf1449[200];
char buf1450[200];
char buf1451[200];
char buf1452[200];
char buf1453[200];
char buf1454[200];
char buf1455[200];
char buf1456[200];
char buf1457[200];
char buf1458[200];
char buf1459[200];
char buf1460[200];
char buf1461[200];
char buf1462[200];
char buf1463[200];
char buf1464[200];
char buf1465[200];
char buf1466[200];
char buf1467[200];
char buf1468[200];
char buf1469[200];
char buf1470[200];
char buf1471[200];
char buf1472[200];
char buf1473[200];
char buf1474[200];
char buf1475[200];
char buf1476[200];
char buf1477[200];
char buf1478[200];
char buf1479[200];
char buf1480[200];
char buf1481[200];
char buf1482[200];
char buf1483[200];
char buf1484[200];
char buf1485[200];
char buf1486[200];
char buf1487[200];
char buf1488[200];
char buf1489[200];
char buf1490[200];
char buf1491[200];
char buf1492[200];
char buf1493[200];
char buf1494[200];
char buf1495[200];
char buf1496[200];
char buf1497[200];
char buf1498[200];
char buf1499[200];
char buf1500[200];
char buf1501[200];
char buf1502[200];
char buf1503[200];
char buf1504[200];
char buf1505[200];
char buf1506[200];
char buf1507[200];
char buf1508[200];
char buf1509[200];
char buf1510[200];
char buf1511[200];
char buf1512[200];
char buf1513[200];
char buf1514[200];
char buf1515[200];
char buf1516[200];
char buf1517[200];
char buf1518[200];
char buf1519[200];
char buf1520[200];
char buf1521[200];
char buf1522[200];
char buf1523[200];
char buf1524[200];
char buf1525[200];
char buf1526[200];
char buf1527[200];
char buf1528[200];
char buf1529[200];
char buf1530[200];
char buf1531[200];
char buf1532[200];
char buf1533[200];
char buf1534[200];
char buf1535[200];
char buf1536[200];
char buf1537[200];
char buf1538[200];
char buf1539[200];
char buf1540[200];
char buf1541[200];
char buf1542[200];
char buf1543[200];
char buf1544[200];
char buf1545[200];
char buf1546[200];
char buf1547[200];
char buf1548[200];
char buf1549[200];
char buf1550[200];
char buf1551[200];
char buf1552[200];
char buf1553[200];
char buf1554[200];
char buf1555[200];
char buf1556[200];
char buf1557[200];
char buf1558[200];
char buf1559[200];
char buf1560[200];
char buf1561[200];
char buf1562[200];
char buf1563[200];
char buf1564[200];
char buf1565[200];
char buf1566[200];
char buf1567[200];
char buf1568[200];
char buf1569[200];
char buf1570[200];
char buf1571[200];
char buf1572[200];
char buf1573[200];
char buf1574[200];
char buf1575[200];
char buf1576[200];
char buf1577[200];
char buf1578[200];
char buf1579[200];
char buf1580[200];
char buf1581[200];
char buf1582[200];
char buf1583[200];
char buf1584[200];
char buf1585[200];
char buf1586[200];
char buf1587[200];
char buf1588[200];
char buf1589[200];
char buf1590[200];
char buf1591[200];
char buf1592[200];
char buf1593[200];
char buf1594[200];
char buf1595[200];
char buf1596[200];
char buf1597[200];
char buf1598[200];
char buf1599[200];
char buf1600[200];
char buf1601[200];
char buf1602[200];
char buf1603[200];
char buf1604[200];
char buf1605[200];
char buf1606[200];
char buf1607[200];
char buf1608[200];
char buf1609[200];
char buf1610[200];
char buf1611[200];
char buf1612[200];
char buf1613[200];
char buf1614[200];
char buf1615[200];
char buf1616[200];
char buf1617[200];
char buf1618[200];
char buf1619[200];
char buf1620[200];
char buf1621[200];
char buf1622[200];
char buf1623[200];
char buf1624[200];
char buf1625[200];
char buf1626[200];
char buf1627[200];
char buf1628[200];
char buf1629[200];
char buf1630[200];
char buf1631[200];
char buf1632[200];
char buf1633[200];
char buf1634[200];
char buf1635[200];
char buf1636[200];
char buf1637[200];
char buf1638[200];
char buf1639[200];
char buf1640[200];
char buf1641[200];
char buf1642[200];
char buf1643[200];
char buf1644[200];
char buf1645[200];
char buf1646[200];
char buf1647[200];
char buf1648[200];
char buf1649[200];
char buf1650[200];
char buf1651[200];
char buf1652[200];
char buf1653[200];
char buf1654[200];
char buf1655[200];
char buf1656[200];
char buf1657[200];
char buf1658[200];
char buf1659[200];
char buf1660[200];
char buf1661[200];
char buf1662[200];
char buf1663[200];
char buf1664[200];
char buf1665[200];
char buf1666[200];
char buf1667[200];
char buf1668[200];
char buf1669[200];
char buf1670[200];
char buf1671[200];
char buf1672[200];
char buf1673[200];
char buf1674[200];
char buf1675[200];
char buf1676[200];
char buf1677[200];
char buf1678[200];
char buf1679[200];
char buf1680[200];
char buf1681[200];
char buf1682[200];
char buf1683[200];
char buf1684[200];
char buf1685[200];
char buf1686[200];
char buf1687[200];
char buf1688[200];
char buf1689[200];
char buf1690[200];
char buf1691[200];
char buf1692[200];
char buf1693[200];
char buf1694[200];
char buf1695[200];
char buf1696[200];
char buf1697[200];
char buf1698[200];
char buf1699[200];
char buf1700[200];
char buf1701[200];
char buf1702[200];
char buf1703[200];
char buf1704[200];
char buf1705[200];
char buf1706[200];
char buf1707[200];
char buf1708[200];
char buf1709[200];
char buf1710[200];
char buf1711[200];
char buf1712[200];
char buf1713[200];
char buf1714[200];
char buf1715[200];
char buf1716[200];
char buf1717[200];
char buf1718[200];
char buf1719[200];
char buf1720[200];
char buf1721[200];
char buf1722[200];
char buf1723[200];
char buf1724[200];
char buf1725[200];
char buf1726[200];
char buf1727[200];
char buf1728[200];
char buf1729[200];
char buf1730[200];
char buf1731[200];
char buf1732[200];
char buf1733[200];
char buf1734[200];
char buf1735[200];
char buf1736[200];
char buf1737[200];
char buf1738[200];
char buf1739[200];
char buf1740[200];
char buf1741[200];
char buf1742[200];
char buf1743[200];
char buf1744[200];
char buf1745[200];
char buf1746[200];
char buf1747[200];
char buf1748[200];
char buf1749[200];
char buf1750[200];
char buf1751[200];
char buf1752[200];
char buf1753[200];
char buf1754[200];
char buf1755[200];
char buf1756[200];
char buf1757[200];
char buf1758[200];
char buf1759[200];
char buf1760[200];
char buf1761[200];
char buf1762[200];
char buf1763[200];
char buf1764[200];
char buf1765[200];
char buf1766[200];
char buf1767[200];
char buf1768[200];
char buf1769[200];
char buf1770[200];
char buf1771[200];
char buf1772[200];
char buf1773[200];
char buf1774[200];
char buf1775[200];
char buf1776[200];
char buf1777[200];
char buf1778[200];
char buf1779[200];
char buf1780[200];
char buf1781[200];
char buf1782[200];
char buf1783[200];
char buf1784[200];
char buf1785[200];
char buf1786[200];
char buf1787[200];
char buf1788[200];
char buf1789[200];
char buf1790[200];
char buf1791[200];
char buf1792[200];
char buf1793[200];
char buf1794[200];
char buf1795[200];
char buf1796[200];
char buf1797[200];
char buf1798[200];
char buf1799[200];
char buf1800[200];
char buf1801[200];
char buf1802[200];
char buf1803[200];
char buf1804[200];
char buf1805[200];
char buf1806[200];
char buf1807[200];
char buf1808[200];
char buf1809[200];
char buf1810[200];
char buf1811[200];
char buf1812[200];
char buf1813[200];
char buf1814[200];
char buf1815[200];
char buf1816[200];
char buf1817[200];
char buf1818[200];
char buf1819[200];
char buf1820[200];
char buf1821[200];
char buf1822[200];
char buf1823[200];
char buf1824[200];
char buf1825[200];
char buf1826[200];
char buf1827[200];
char buf1828[200];
char buf1829[200];
char buf1830[200];
char buf1831[200];
char buf1832[200];
char buf1833[200];
char buf1834[200];
char buf1835[200];
char buf1836[200];
char buf1837[200];
char buf1838[200];
char buf1839[200];
char buf1840[200];
char buf1841[200];
char buf1842[200];
char buf1843[200];
char buf1844[200];
char buf1845[200];
char buf1846[200];
char buf1847[200];
char buf1848[200];
char buf1849[200];
char buf1850[200];
char buf1851[200];
char buf1852[200];
char buf1853[200];
char buf1854[200];
char buf1855[200];
char buf1856[200];
char buf1857[200];
char buf1858[200];
char buf1859[200];
char buf1860[200];
char buf1861[200];
char buf1862[200];
char buf1863[200];
char buf1864[200];
char buf1865[200];
char buf1866[200];
char buf1867[200];
char buf1868[200];
char buf1869[200];
char buf1870[200];
char buf1871[200];
char buf1872[200];
char buf1873[200];
char buf1874[200];
char buf1875[200];
char buf1876[200];
char buf1877[200];
char buf1878[200];
char buf1879[200];
char buf1880[200];
char buf1881[200];
char buf1882[200];
char buf1883[200];
char buf1884[200];
char buf1885[200];
char buf1886[200];
char buf1887[200];
char buf1888[200];
char buf1889[200];
char buf1890[200];
char buf1891[200];
char buf1892[200];
char buf1893[200];
char buf1894[200];
char buf1895[200];
char buf1896[200];
char buf1897[200];
char buf1898[200];
char buf1899[200];
char buf1900[200];
char buf1901[200];
char buf1902[200];
char buf1903[200];
char buf1904[200];
char buf1905[200];
char buf1906[200];
char buf1907[200];
char buf1908[200];
char buf1909[200];
char buf1910[200];
char buf1911[200];
char buf1912[200];
char buf1913[200];
char buf1914[200];
char buf1915[200];
char buf1916[200];
char buf1917[200];
char buf1918[200];
char buf1919[200];
char buf1920[200];
char buf1921[200];
char buf1922[200];
char buf1923[200];
char buf1924[200];
char buf1925[200];
char buf1926[200];
char buf1927[200];
char buf1928[200];
char buf1929[200];
char buf1930[200];
char buf1931[200];
char buf1932[200];
char buf1933[200];
char buf1934[200];
char buf1935[200];
char buf1936[200];
char buf1937[200];
char buf1938[200];
char buf1939[200];
char buf1940[200];
char buf1941[200];
char buf1942[200];
char buf1943[200];
char buf1944[200];
char buf1945[200];
char buf1946[200];
char buf1947[200];
char buf1948[200];
char buf1949[200];
char buf1950[200];
char buf1951[200];
char buf1952[200];
char buf1953[200];
char buf1954[200];
char buf1955[200];
char buf1956[200];
char buf1957[200];
char buf1958[200];
char buf1959[200];
char buf1960[200];
char buf1961[200];
char buf1962[200];
char buf1963[200];
char buf1964[200];
char buf1965[200];
char buf1966[200];
char buf1967[200];
char buf1968[200];
char buf1969[200];
char buf1970[200];
char buf1971[200];
char buf1972[200];
char buf1973[200];
char buf1974[200];
char buf1975[200];
char buf1976[200];
char buf1977[200];
char buf1978[200];
char buf1979[200];
char buf1980[200];
char buf1981[200];
char buf1982[200];
char buf1983[200];
char buf1984[200];
char buf1985[200];
char buf1986[200];
char buf1987[200];
char buf1988[200];
char buf1989[200];
char buf1990[200];
char buf1991[200];
char buf1992[200];
char buf1993[200];
char buf1994[200];
char buf1995[200];
char buf1996[200];
char buf1997[200];
char buf1998[200];
char buf1999[200];
char buf2000[200];
char buf2001[200];
char buf2002[200];
char buf2003[200];
char buf2004[200];
char buf2005[200];
char buf2006[200];
char buf2007[200];
char buf2008[200];
char buf2009[200];
char buf2010[200];
char buf2011[200];
char buf2012[200];
char buf2013[200];
char buf2014[200];
char buf2015[200];
char buf2016[200];
char buf2017[200];
char buf2018[200];
char buf2019[200];
char buf2020[200];
char buf2021[200];
char buf2022[200];
char buf2023[200];
char buf2024[200];
char buf2025[200];
char buf2026[200];
char buf2027[200];
char buf2028[200];
char buf2029[200];
char buf2030[200];
char buf2031[200];
char buf2032[200];
char buf2033[200];
char buf2034[200];
char buf2035[200];
char buf2036[200];
char buf2037[200];
char buf2038[200];
char buf2039[200];
char buf2040[200];
char buf2041[200];
char buf2042[200];
char buf2043[200];
char buf2044[200];
char buf2045[200];
char buf2046[200];
char buf2047[200];
char buf2048[200];
char buf2049[200];
char buf2050[200];
char buf2051[200];
char buf2052[200];
char buf2053[200];
char buf2054[200];
char buf2055[200];
char buf2056[200];
char buf2057[200];
char buf2058[200];
char buf2059[200];
char buf2060[200];
char buf2061[200];
char buf2062[200];
char buf2063[200];
char buf2064[200];
char buf2065[200];
char buf2066[200];
char buf2067[200];
char buf2068[200];
char buf2069[200];
char buf2070[200];
char buf2071[200];
char buf2072[200];
char buf2073[200];
char buf2074[200];
char buf2075[200];
char buf2076[200];
char buf2077[200];
char buf2078[200];
char buf2079[200];
char buf2080[200];
char buf2081[200];
char buf2082[200];
char buf2083[200];
char buf2084[200];
char buf2085[200];
char buf2086[200];
char buf2087[200];
char buf2088[200];
char buf2089[200];
char buf2090[200];
char buf2091[200];
char buf2092[200];
char buf2093[200];
char buf2094[200];
char buf2095[200];
char buf2096[200];
char buf2097[200];
char buf2098[200];
char buf2099[200];
char buf2100[200];
char buf2101[200];
char buf2102[200];
char buf2103[200];
char buf2104[200];
char buf2105[200];
char buf2106[200];
char buf2107[200];
char buf2108[200];
char buf2109[200];
char buf2110[200];
char buf2111[200];
char buf2112[200];
char buf2113[200];
char buf2114[200];
char buf2115[200];
char buf2116[200];
char buf2117[200];
char buf2118[200];
char buf2119[200];
char buf2120[200];
char buf2121[200];
char buf2122[200];
char buf2123[200];
char buf2124[200];
char buf2125[200];
char buf2126[200];
char buf2127[200];
char buf2128[200];
char buf2129[200];
char buf2130[200];
char buf2131[200];
char buf2132[200];
char buf2133[200];
char buf2134[200];
char buf2135[200];
char buf2136[200];
char buf2137[200];
char buf2138[200];
char buf2139[200];
char buf2140[200];
char buf2141[200];
char buf2142[200];
char buf2143[200];
char buf2144[200];
char buf2145[200];
char buf2146[200];
char buf2147[200];
char buf2148[200];
char buf2149[200];
char buf2150[200];
char buf2151[200];
char buf2152[200];
char buf2153[200];
char buf2154[200];
char buf2155[200];
char buf2156[200];
char buf2157[200];
char buf2158[200];
char buf2159[200];
char buf2160[200];
char buf2161[200];
char buf2162[200];
char buf2163[200];
char buf2164[200];
char buf2165[200];
char buf2166[200];
char buf2167[200];
char buf2168[200];
char buf2169[200];
char buf2170[200];
char buf2171[200];
char buf2172[200];
char buf2173[200];
char buf2174[200];
char buf2175[200];
char buf2176[200];
char buf2177[200];
char buf2178[200];
char buf2179[200];
char buf2180[200];
char buf2181[200];
char buf2182[200];
char buf2183[200];
char buf2184[200];
char buf2185[200];
char buf2186[200];
char buf2187[200];
char buf2188[200];
char buf2189[200];
char buf2190[200];
char buf2191[200];
char buf2192[200];
char buf2193[200];
char buf2194[200];
char buf2195[200];
char buf2196[200];
char buf2197[200];
char buf2198[200];
char buf2199[200];
char buf2200[200];
char buf2201[200];
char buf2202[200];
char buf2203[200];
char buf2204[200];
char buf2205[200];
char buf2206[200];
char buf2207[200];
char buf2208[200];
char buf2209[200];
char buf2210[200];
char buf2211[200];
char buf2212[200];
char buf2213[200];
char buf2214[200];
char buf2215[200];
char buf2216[200];
char buf2217[200];
char buf2218[200];
char buf2219[200];
char buf2220[200];
char buf2221[200];
char buf2222[200];
char buf2223[200];
char buf2224[200];
char buf2225[200];
char buf2226[200];
char buf2227[200];
char buf2228[200];
char buf2229[200];
char buf2230[200];
char buf2231[200];
char buf2232[200];
char buf2233[200];
char buf2234[200];
char buf2235[200];
char buf2236[200];
char buf2237[200];
char buf2238[200];
char buf2239[200];
char buf2240[200];
char buf2241[200];
char buf2242[200];
char buf2243[200];
char buf2244[200];
char buf2245[200];
char buf2246[200];
char buf2247[200];
char buf2248[200];
char buf2249[200];
char buf2250[200];
char buf2251[200];
char buf2252[200];
char buf2253[200];
char buf2254[200];
char buf2255[200];
char buf2256[200];
char buf2257[200];
char buf2258[200];
char buf2259[200];
char buf2260[200];
char buf2261[200];
char buf2262[200];
char buf2263[200];
char buf2264[200];
char buf2265[200];
char buf2266[200];
char buf2267[200];
char buf2268[200];
char buf2269[200];
char buf2270[200];
char buf2271[200];
char buf2272[200];
char buf2273[200];
char buf2274[200];
char buf2275[200];
char buf2276[200];
char buf2277[200];
char buf2278[200];
char buf2279[200];
char buf2280[200];
char buf2281[200];
char buf2282[200];
char buf2283[200];
char buf2284[200];
char buf2285[200];
char buf2286[200];
char buf2287[200];
char buf2288[200];
char buf2289[200];
char buf2290[200];
char buf2291[200];
char buf2292[200];
char buf2293[200];
char buf2294[200];
char buf2295[200];
char buf2296[200];
char buf2297[200];
char buf2298[200];
char buf2299[200];
char buf2300[200];
char buf2301[200];
char buf2302[200];
char buf2303[200];
char buf2304[200];
char buf2305[200];
char buf2306[200];
char buf2307[200];
char buf2308[200];
char buf2309[200];
char buf2310[200];
char buf2311[200];
char buf2312[200];
char buf2313[200];
char buf2314[200];
char buf2315[200];
char buf2316[200];
char buf2317[200];
char buf2318[200];
char buf2319[200];
char buf2320[200];
char buf2321[200];
char buf2322[200];
char buf2323[200];
char buf2324[200];
char buf2325[200];
char buf2326[200];
char buf2327[200];
char buf2328[200];
char buf2329[200];
char buf2330[200];
char buf2331[200];
char buf2332[200];
char buf2333[200];
char buf2334[200];
char buf2335[200];
char buf2336[200];
char buf2337[200];
char buf2338[200];
char buf2339[200];
char buf2340[200];
char buf2341[200];
char buf2342[200];
char buf2343[200];
char buf2344[200];
char buf2345[200];
char buf2346[200];
char buf2347[200];
char buf2348[200];
char buf2349[200];
char buf2350[200];
char buf2351[200];
char buf2352[200];
char buf2353[200];
char buf2354[200];
char buf2355[200];
char buf2356[200];
char buf2357[200];
char buf2358[200];
char buf2359[200];
char buf2360[200];
char buf2361[200];
char buf2362[200];
char buf2363[200];
char buf2364[200];
char buf2365[200];
char buf2366[200];
char buf2367[200];
char buf2368[200];
char buf2369[200];
char buf2370[200];
char buf2371[200];
char buf2372[200];
char buf2373[200];
char buf2374[200];
char buf2375[200];
char buf2376[200];
char buf2377[200];
char buf2378[200];
char buf2379[200];
char buf2380[200];
char buf2381[200];
char buf2382[200];
char buf2383[200];
char buf2384[200];
char buf2385[200];
char buf2386[200];
char buf2387[200];
char buf2388[200];
char buf2389[200];
char buf2390[200];
char buf2391[200];
char buf2392[200];
char buf2393[200];
char buf2394[200];
char buf2395[200];
char buf2396[200];
char buf2397[200];
char buf2398[200];
char buf2399[200];
char buf2400[200];
char buf2401[200];
char buf2402[200];
char buf2403[200];
char buf2404[200];
char buf2405[200];
char buf2406[200];
char buf2407[200];
char buf2408[200];
char buf2409[200];
char buf2410[200];
char buf2411[200];
char buf2412[200];
char buf2413[200];
char buf2414[200];
char buf2415[200];
char buf2416[200];
char buf2417[200];
char buf2418[200];
char buf2419[200];
char buf2420[200];
char buf2421[200];
char buf2422[200];
char buf2423[200];
char buf2424[200];
char buf2425[200];
char buf2426[200];
char buf2427[200];
char buf2428[200];
char buf2429[200];
char buf2430[200];
char buf2431[200];
char buf2432[200];
char buf2433[200];
char buf2434[200];
char buf2435[200];
char buf2436[200];
char buf2437[200];
char buf2438[200];
char buf2439[200];
char buf2440[200];
char buf2441[200];
char buf2442[200];
char buf2443[200];
char buf2444[200];
char buf2445[200];
char buf2446[200];
char buf2447[200];
char buf2448[200];
char buf2449[200];
char buf2450[200];
char buf2451[200];
char buf2452[200];
char buf2453[200];
char buf2454[200];
char buf2455[200];
char buf2456[200];
char buf2457[200];
char buf2458[200];
char buf2459[200];
char buf2460[200];
char buf2461[200];
char buf2462[200];
char buf2463[200];
char buf2464[200];
char buf2465[200];
char buf2466[200];
char buf2467[200];
char buf2468[200];
char buf2469[200];
char buf2470[200];
char buf2471[200];
char buf2472[200];
char buf2473[200];
char buf2474[200];
char buf2475[200];
char buf2476[200];
char buf2477[200];
char buf2478[200];
char buf2479[200];
char buf2480[200];
char buf2481[200];
char buf2482[200];
char buf2483[200];
char buf2484[200];
char buf2485[200];
char buf2486[200];
char buf2487[200];
char buf2488[200];
char buf2489[200];
char buf2490[200];
char buf2491[200];
char buf2492[200];
char buf2493[200];
char buf2494[200];
char buf2495[200];
char buf2496[200];
char buf2497[200];
char buf2498[200];
char buf2499[200];
char buf2500[200];
char buf2501[200];
char buf2502[200];
char buf2503[200];
char buf2504[200];
char buf2505[200];
char buf2506[200];
char buf2507[200];
char buf2508[200];
char buf2509[200];
char buf2510[200];
char buf2511[200];
char buf2512[200];
char buf2513[200];
char buf2514[200];
char buf2515[200];
char buf2516[200];
char buf2517[200];
char buf2518[200];
char buf2519[200];
char buf2520[200];
char buf2521[200];
char buf2522[200];
char buf2523[200];
char buf2524[200];
char buf2525[200];
char buf2526[200];
char buf2527[200];
char buf2528[200];
char buf2529[200];
char buf2530[200];
char buf2531[200];
char buf2532[200];
char buf2533[200];
char buf2534[200];
char buf2535[200];
char buf2536[200];
char buf2537[200];
char buf2538[200];
char buf2539[200];
char buf2540[200];
char buf2541[200];
char buf2542[200];
char buf2543[200];
char buf2544[200];
char buf2545[200];
char buf2546[200];
char buf2547[200];
char buf2548[200];
char buf2549[200];
char buf2550[200];
char buf2551[200];
char buf2552[200];
char buf2553[200];
char buf2554[200];
char buf2555[200];
char buf2556[200];
char buf2557[200];
char buf2558[200];
char buf2559[200];
char buf2560[200];
char buf2561[200];
char buf2562[200];
char buf2563[200];
char buf2564[200];
char buf2565[200];
char buf2566[200];
char buf2567[200];
char buf2568[200];
char buf2569[200];
char buf2570[200];
char buf2571[200];
char buf2572[200];
char buf2573[200];
char buf2574[200];
char buf2575[200];
char buf2576[200];
char buf2577[200];
char buf2578[200];
char buf2579[200];
char buf2580[200];
char buf2581[200];
char buf2582[200];
char buf2583[200];
char buf2584[200];
char buf2585[200];
char buf2586[200];
char buf2587[200];
char buf2588[200];
char buf2589[200];
char buf2590[200];
char buf2591[200];
char buf2592[200];
char buf2593[200];
char buf2594[200];
char buf2595[200];
char buf2596[200];
char buf2597[200];
char buf2598[200];
char buf2599[200];
char buf2600[200];
char buf2601[200];
char buf2602[200];
char buf2603[200];
char buf2604[200];
char buf2605[200];
char buf2606[200];
char buf2607[200];
char buf2608[200];
char buf2609[200];
char buf2610[200];
char buf2611[200];
char buf2612[200];
char buf2613[200];
char buf2614[200];
char buf2615[200];
char buf2616[200];
char buf2617[200];
char buf2618[200];
char buf2619[200];
char buf2620[200];
char buf2621[200];
char buf2622[200];
char buf2623[200];
char buf2624[200];
char buf2625[200];
char buf2626[200];
char buf2627[200];
char buf2628[200];
char buf2629[200];
char buf2630[200];
char buf2631[200];
char buf2632[200];
char buf2633[200];
char buf2634[200];
char buf2635[200];
char buf2636[200];
char buf2637[200];
char buf2638[200];
char buf2639[200];
char buf2640[200];
char buf2641[200];
char buf2642[200];
char buf2643[200];
char buf2644[200];
char buf2645[200];
char buf2646[200];
char buf2647[200];
char buf2648[200];
char buf2649[200];
char buf2650[200];
char buf2651[200];
char buf2652[200];
char buf2653[200];
char buf2654[200];
char buf2655[200];
char buf2656[200];
char buf2657[200];
char buf2658[200];
char buf2659[200];
char buf2660[200];
char buf2661[200];
char buf2662[200];
char buf2663[200];
char buf2664[200];
char buf2665[200];
char buf2666[200];
char buf2667[200];
char buf2668[200];
char buf2669[200];
char buf2670[200];
char buf2671[200];
char buf2672[200];
char buf2673[200];
char buf2674[200];
char buf2675[200];
char buf2676[200];
char buf2677[200];
char buf2678[200];
char buf2679[200];
char buf2680[200];
char buf2681[200];
char buf2682[200];
char buf2683[200];
char buf2684[200];
char buf2685[200];
char buf2686[200];
char buf2687[200];
char buf2688[200];
char buf2689[200];
char buf2690[200];
char buf2691[200];
char buf2692[200];
char buf2693[200];
char buf2694[200];
char buf2695[200];
char buf2696[200];
char buf2697[200];
char buf2698[200];
char buf2699[200];
char buf2700[200];
char buf2701[200];
char buf2702[200];
char buf2703[200];
char buf2704[200];
char buf2705[200];
char buf2706[200];
char buf2707[200];
char buf2708[200];
char buf2709[200];
char buf2710[200];
char buf2711[200];
char buf2712[200];
char buf2713[200];
char buf2714[200];
char buf2715[200];
char buf2716[200];
char buf2717[200];
char buf2718[200];
char buf2719[200];
char buf2720[200];
char buf2721[200];
char buf2722[200];
char buf2723[200];
char buf2724[200];
char buf2725[200];
char buf2726[200];
char buf2727[200];
char buf2728[200];
char buf2729[200];
char buf2730[200];
char buf2731[200];
char buf2732[200];
char buf2733[200];
char buf2734[200];
char buf2735[200];
char buf2736[200];
char buf2737[200];
char buf2738[200];
char buf2739[200];
char buf2740[200];
char buf2741[200];
char buf2742[200];
char buf2743[200];
char buf2744[200];
char buf2745[200];
char buf2746[200];
char buf2747[200];
char buf2748[200];
char buf2749[200];
char buf2750[200];
char buf2751[200];
char buf2752[200];
char buf2753[200];
char buf2754[200];
char buf2755[200];
char buf2756[200];
char buf2757[200];
char buf2758[200];
char buf2759[200];
char buf2760[200];
char buf2761[200];
char buf2762[200];
char buf2763[200];
char buf2764[200];
char buf2765[200];
char buf2766[200];
char buf2767[200];
char buf2768[200];
char buf2769[200];
char buf2770[200];
char buf2771[200];
char buf2772[200];
char buf2773[200];
char buf2774[200];
char buf2775[200];
char buf2776[200];
char buf2777[200];
char buf2778[200];
char buf2779[200];
char buf2780[200];
char buf2781[200];
char buf2782[200];
char buf2783[200];
char buf2784[200];
char buf2785[200];
char buf2786[200];
char buf2787[200];
char buf2788[200];
char buf2789[200];
char buf2790[200];
char buf2791[200];
char buf2792[200];
char buf2793[200];
char buf2794[200];
char buf2795[200];
char buf2796[200];
char buf2797[200];
char buf2798[200];
char buf2799[200];
char buf2800[200];
char buf2801[200];
char buf2802[200];
char buf2803[200];
char buf2804[200];
char buf2805[200];
char buf2806[200];
char buf2807[200];
char buf2808[200];
char buf2809[200];
char buf2810[200];
char buf2811[200];
char buf2812[200];
char buf2813[200];
char buf2814[200];
char buf2815[200];
char buf2816[200];
char buf2817[200];
char buf2818[200];
char buf2819[200];
char buf2820[200];
char buf2821[200];
char buf2822[200];
char buf2823[200];
char buf2824[200];
char buf2825[200];
char buf2826[200];
char buf2827[200];
char buf2828[200];
char buf2829[200];
char buf2830[200];
char buf2831[200];
char buf2832[200];
char buf2833[200];
char buf2834[200];
char buf2835[200];
char buf2836[200];
char buf2837[200];
char buf2838[200];
char buf2839[200];
char buf2840[200];
char buf2841[200];
char buf2842[200];
char buf2843[200];
char buf2844[200];
char buf2845[200];
char buf2846[200];
char buf2847[200];
char buf2848[200];
char buf2849[200];
char buf2850[200];
char buf2851[200];
char buf2852[200];
char buf2853[200];
char buf2854[200];
char buf2855[200];
char buf2856[200];
char buf2857[200];
char buf2858[200];
char buf2859[200];
char buf2860[200];
char buf2861[200];
char buf2862[200];
char buf2863[200];
char buf2864[200];
char buf2865[200];
char buf2866[200];
char buf2867[200];
char buf2868[200];
char buf2869[200];
char buf2870[200];
char buf2871[200];
char buf2872[200];
char buf2873[200];
char buf2874[200];
char buf2875[200];
char buf2876[200];
char buf2877[200];
char buf2878[200];
char buf2879[200];
char buf2880[200];
char buf2881[200];
char buf2882[200];
char buf2883[200];
char buf2884[200];
char buf2885[200];
char buf2886[200];
char buf2887[200];
char buf2888[200];
char buf2889[200];
char buf2890[200];
char buf2891[200];
char buf2892[200];
char buf2893[200];
char buf2894[200];
char buf2895[200];
char buf2896[200];
char buf2897[200];
char buf2898[200];
char buf2899[200];
char buf2900[200];
char buf2901[200];
char buf2902[200];
char buf2903[200];
char buf2904[200];
char buf2905[200];
char buf2906[200];
char buf2907[200];
char buf2908[200];
char buf2909[200];
char buf2910[200];
char buf2911[200];
char buf2912[200];
char buf2913[200];
char buf2914[200];
char buf2915[200];
char buf2916[200];
char buf2917[200];
char buf2918[200];
char buf2919[200];
char buf2920[200];
char buf2921[200];
char buf2922[200];
char buf2923[200];
char buf2924[200];
char buf2925[200];
char buf2926[200];
char buf2927[200];
char buf2928[200];
char buf2929[200];
char buf2930[200];
char buf2931[200];
char buf2932[200];
char buf2933[200];
char buf2934[200];
char buf2935[200];
char buf2936[200];
char buf2937[200];
char buf2938[200];
char buf2939[200];
char buf2940[200];
char buf2941[200];
char buf2942[200];
char buf2943[200];
char buf2944[200];
char buf2945[200];
char buf2946[200];
char buf2947[200];
char buf2948[200];
char buf2949[200];
char buf2950[200];
char buf2951[200];
char buf2952[200];
char buf2953[200];
char buf2954[200];
char buf2955[200];
char buf2956[200];
char buf2957[200];
char buf2958[200];
char buf2959[200];
char buf2960[200];
char buf2961[200];
char buf2962[200];
char buf2963[200];
char buf2964[200];
char buf2965[200];
char buf2966[200];
char buf2967[200];
char buf2968[200];
char buf2969[200];
char buf2970[200];
char buf2971[200];
char buf2972[200];
char buf2973[200];
char buf2974[200];
char buf2975[200];
char buf2976[200];
char buf2977[200];
char buf2978[200];
char buf2979[200];
char buf2980[200];
char buf2981[200];
char buf2982[200];
char buf2983[200];
char buf2984[200];
char buf2985[200];
char buf2986[200];
char buf2987[200];
char buf2988[200];
char buf2989[200];
char buf2990[200];
char buf2991[200];
char buf2992[200];
char buf2993[200];
char buf2994[200];
char buf2995[200];
char buf2996[200];
char buf2997[200];
char buf2998[200];
char buf2999[200];
char buf3000[200];
char buf3001[200];
char buf3002[200];
char buf3003[200];
char buf3004[200];
char buf3005[200];
char buf3006[200];
char buf3007[200];
char buf3008[200];
char buf3009[200];
char buf3010[200];
char buf3011[200];
char buf3012[200];
char buf3013[200];
char buf3014[200];
char buf3015[200];
char buf3016[200];
char buf3017[200];
char buf3018[200];
char buf3019[200];
char buf3020[200];
char buf3021[200];
char buf3022[200];
char buf3023[200];
char buf3024[200];
char buf3025[200];
char buf3026[200];
char buf3027[200];
char buf3028[200];
char buf3029[200];
char buf3030[200];
char buf3031[200];
char buf3032[200];
char buf3033[200];
char buf3034[200];
char buf3035[200];
char buf3036[200];
char buf3037[200];
char buf3038[200];
char buf3039[200];
char buf3040[200];
char buf3041[200];
char buf3042[200];
char buf3043[200];
char buf3044[200];
char buf3045[200];
char buf3046[200];
char buf3047[200];
char buf3048[200];
char buf3049[200];
char buf3050[200];
char buf3051[200];
char buf3052[200];
char buf3053[200];
char buf3054[200];
char buf3055[200];
char buf3056[200];
char buf3057[200];
char buf3058[200];
char buf3059[200];
char buf3060[200];
char buf3061[200];
char buf3062[200];
char buf3063[200];
char buf3064[200];
char buf3065[200];
char buf3066[200];
char buf3067[200];
char buf3068[200];
char buf3069[200];
char buf3070[200];
char buf3071[200];
char buf3072[200];
char buf3073[200];
char buf3074[200];
char buf3075[200];
char buf3076[200];
char buf3077[200];
char buf3078[200];
char buf3079[200];
char buf3080[200];
char buf3081[200];
char buf3082[200];
char buf3083[200];
char buf3084[200];
char buf3085[200];
char buf3086[200];
char buf3087[200];
char buf3088[200];
char buf3089[200];
char buf3090[200];
char buf3091[200];
char buf3092[200];
char buf3093[200];
char buf3094[200];
char buf3095[200];
char buf3096[200];
char buf3097[200];
char buf3098[200];
char buf3099[200];
char buf3100[200];
char buf3101[200];
char buf3102[200];
char buf3103[200];
char buf3104[200];
char buf3105[200];
char buf3106[200];
char buf3107[200];
char buf3108[200];
char buf3109[200];
char buf3110[200];
char buf3111[200];
char buf3112[200];
char buf3113[200];
char buf3114[200];
char buf3115[200];
char buf3116[200];
char buf3117[200];
char buf3118[200];
char buf3119[200];
char buf3120[200];
char buf3121[200];
char buf3122[200];
char buf3123[200];
char buf3124[200];
char buf3125[200];
char buf3126[200];
char buf3127[200];
char buf3128[200];
char buf3129[200];
char buf3130[200];
char buf3131[200];
char buf3132[200];
char buf3133[200];
char buf3134[200];
char buf3135[200];
char buf3136[200];
char buf3137[200];
char buf3138[200];
char buf3139[200];
char buf3140[200];
char buf3141[200];
char buf3142[200];
char buf3143[200];
char buf3144[200];
char buf3145[200];
char buf3146[200];
char buf3147[200];
char buf3148[200];
char buf3149[200];
char buf3150[200];
char buf3151[200];
char buf3152[200];
char buf3153[200];
char buf3154[200];
char buf3155[200];
char buf3156[200];
char buf3157[200];
char buf3158[200];
char buf3159[200];
char buf3160[200];
char buf3161[200];
char buf3162[200];
char buf3163[200];
char buf3164[200];
char buf3165[200];
char buf3166[200];
char buf3167[200];
char buf3168[200];
char buf3169[200];
char buf3170[200];
char buf3171[200];
char buf3172[200];
char buf3173[200];
char buf3174[200];
char buf3175[200];
char buf3176[200];
char buf3177[200];
char buf3178[200];
char buf3179[200];
char buf3180[200];
char buf3181[200];
char buf3182[200];
char buf3183[200];
char buf3184[200];
char buf3185[200];
char buf3186[200];
char buf3187[200];
char buf3188[200];
char buf3189[200];
char buf3190[200];
char buf3191[200];
char buf3192[200];
char buf3193[200];
char buf3194[200];
char buf3195[200];
char buf3196[200];
char buf3197[200];
char buf3198[200];
char buf3199[200];
char buf3200[200];
char buf3201[200];
char buf3202[200];
char buf3203[200];
char buf3204[200];
char buf3205[200];
char buf3206[200];
char buf3207[200];
char buf3208[200];
char buf3209[200];
char buf3210[200];
char buf3211[200];
char buf3212[200];
char buf3213[200];
char buf3214[200];
char buf3215[200];
char buf3216[200];
char buf3217[200];
char buf3218[200];
char buf3219[200];
char buf3220[200];
char buf3221[200];
char buf3222[200];
char buf3223[200];
char buf3224[200];
char buf3225[200];
char buf3226[200];
char buf3227[200];
char buf3228[200];
char buf3229[200];
char buf3230[200];
char buf3231[200];
char buf3232[200];
char buf3233[200];
char buf3234[200];
char buf3235[200];
char buf3236[200];
char buf3237[200];
char buf3238[200];
char buf3239[200];
char buf3240[200];
char buf3241[200];
char buf3242[200];
char buf3243[200];
char buf3244[200];
char buf3245[200];
char buf3246[200];
char buf3247[200];
char buf3248[200];
char buf3249[200];
char buf3250[200];
char buf3251[200];
char buf3252[200];
char buf3253[200];
char buf3254[200];
char buf3255[200];
char buf3256[200];
char buf3257[200];
char buf3258[200];
char buf3259[200];
char buf3260[200];
char buf3261[200];
char buf3262[200];
char buf3263[200];
char buf3264[200];
char buf3265[200];
char buf3266[200];
char buf3267[200];
char buf3268[200];
char buf3269[200];
char buf3270[200];
char buf3271[200];
char buf3272[200];
char buf3273[200];
char buf3274[200];
char buf3275[200];
char buf3276[200];
char buf3277[200];
char buf3278[200];
char buf3279[200];
char buf3280[200];
char buf3281[200];
char buf3282[200];
char buf3283[200];
char buf3284[200];
char buf3285[200];
char buf3286[200];
char buf3287[200];
char buf3288[200];
char buf3289[200];
char buf3290[200];
char buf3291[200];
char buf3292[200];
char buf3293[200];
char buf3294[200];
char buf3295[200];
char buf3296[200];
char buf3297[200];
char buf3298[200];
char buf3299[200];
char buf3300[200];
char buf3301[200];
char buf3302[200];
char buf3303[200];
char buf3304[200];
char buf3305[200];
char buf3306[200];
char buf3307[200];
char buf3308[200];
char buf3309[200];
char buf3310[200];
char buf3311[200];
char buf3312[200];
char buf3313[200];
char buf3314[200];
char buf3315[200];
char buf3316[200];
char buf3317[200];
char buf3318[200];
char buf3319[200];
char buf3320[200];
char buf3321[200];
char buf3322[200];
char buf3323[200];
char buf3324[200];
char buf3325[200];
char buf3326[200];
char buf3327[200];
char buf3328[200];
char buf3329[200];
char buf3330[200];
char buf3331[200];
char buf3332[200];
char buf3333[200];
char buf3334[200];
char buf3335[200];
char buf3336[200];
char buf3337[200];
char buf3338[200];
char buf3339[200];
char buf3340[200];
char buf3341[200];
char buf3342[200];
char buf3343[200];
char buf3344[200];
char buf3345[200];
char buf3346[200];
char buf3347[200];
char buf3348[200];
char buf3349[200];
char buf3350[200];
char buf3351[200];
char buf3352[200];
char buf3353[200];
char buf3354[200];
char buf3355[200];
char buf3356[200];
char buf3357[200];
char buf3358[200];
char buf3359[200];
char buf3360[200];
char buf3361[200];
char buf3362[200];
char buf3363[200];
char buf3364[200];
char buf3365[200];

void RS_KERNEL test(int in) {
    *(uchar*)buf0 = abs(*(char*)buf1);
    *(uchar2*)buf2 = abs(*(char2*)buf3);
    *(uchar3*)buf4 = abs(*(char3*)buf5);
    *(uchar4*)buf6 = abs(*(char4*)buf7);
    *(ushort*)buf8 = abs(*(short*)buf9);
    *(ushort2*)buf10 = abs(*(short2*)buf11);
    *(ushort3*)buf12 = abs(*(short3*)buf13);
    *(ushort4*)buf14 = abs(*(short4*)buf15);
    *(uint*)buf16 = abs(*(int*)buf17);
    *(uint2*)buf18 = abs(*(int2*)buf19);
    *(uint3*)buf20 = abs(*(int3*)buf21);
    *(uint4*)buf22 = abs(*(int4*)buf23);
    *(float*)buf24 = acos(*(float*)buf25);
    *(float2*)buf26 = acos(*(float2*)buf27);
    *(float3*)buf28 = acos(*(float3*)buf29);
    *(float4*)buf30 = acos(*(float4*)buf31);
    *(float*)buf32 = acosh(*(float*)buf33);
    *(float2*)buf34 = acosh(*(float2*)buf35);
    *(float3*)buf36 = acosh(*(float3*)buf37);
    *(float4*)buf38 = acosh(*(float4*)buf39);
    *(float*)buf40 = acospi(*(float*)buf41);
    *(float2*)buf42 = acospi(*(float2*)buf43);
    *(float3*)buf44 = acospi(*(float3*)buf45);
    *(float4*)buf46 = acospi(*(float4*)buf47);
    *(float*)buf48 = asin(*(float*)buf49);
    *(float2*)buf50 = asin(*(float2*)buf51);
    *(float3*)buf52 = asin(*(float3*)buf53);
    *(float4*)buf54 = asin(*(float4*)buf55);
    *(float*)buf56 = asinh(*(float*)buf57);
    *(float2*)buf58 = asinh(*(float2*)buf59);
    *(float3*)buf60 = asinh(*(float3*)buf61);
    *(float4*)buf62 = asinh(*(float4*)buf63);
    *(float*)buf64 = asinpi(*(float*)buf65);
    *(float2*)buf66 = asinpi(*(float2*)buf67);
    *(float3*)buf68 = asinpi(*(float3*)buf69);
    *(float4*)buf70 = asinpi(*(float4*)buf71);
    *(float*)buf72 = atan(*(float*)buf73);
    *(float2*)buf74 = atan(*(float2*)buf75);
    *(float3*)buf76 = atan(*(float3*)buf77);
    *(float4*)buf78 = atan(*(float4*)buf79);
    *(float*)buf80 = atan2(*(float*)buf81, *(float*)buf82);
    *(float2*)buf83 = atan2(*(float2*)buf84, *(float2*)buf85);
    *(float3*)buf86 = atan2(*(float3*)buf87, *(float3*)buf88);
    *(float4*)buf89 = atan2(*(float4*)buf90, *(float4*)buf91);
    *(float*)buf92 = atan2pi(*(float*)buf93, *(float*)buf94);
    *(float2*)buf95 = atan2pi(*(float2*)buf96, *(float2*)buf97);
    *(float3*)buf98 = atan2pi(*(float3*)buf99, *(float3*)buf100);
    *(float4*)buf101 = atan2pi(*(float4*)buf102, *(float4*)buf103);
    *(float*)buf104 = atanh(*(float*)buf105);
    *(float2*)buf106 = atanh(*(float2*)buf107);
    *(float3*)buf108 = atanh(*(float3*)buf109);
    *(float4*)buf110 = atanh(*(float4*)buf111);
    *(float*)buf112 = atanpi(*(float*)buf113);
    *(float2*)buf114 = atanpi(*(float2*)buf115);
    *(float3*)buf116 = atanpi(*(float3*)buf117);
    *(float4*)buf118 = atanpi(*(float4*)buf119);
    *(float*)buf120 = cbrt(*(float*)buf121);
    *(float2*)buf122 = cbrt(*(float2*)buf123);
    *(float3*)buf124 = cbrt(*(float3*)buf125);
    *(float4*)buf126 = cbrt(*(float4*)buf127);
    *(float*)buf128 = ceil(*(float*)buf129);
    *(float2*)buf130 = ceil(*(float2*)buf131);
    *(float3*)buf132 = ceil(*(float3*)buf133);
    *(float4*)buf134 = ceil(*(float4*)buf135);
    *(float*)buf136 = clamp(*(float*)buf137, *(float*)buf138, *(float*)buf139);
    *(float2*)buf140 = clamp(*(float2*)buf141, *(float2*)buf142, *(float2*)buf143);
    *(float3*)buf144 = clamp(*(float3*)buf145, *(float3*)buf146, *(float3*)buf147);
    *(float4*)buf148 = clamp(*(float4*)buf149, *(float4*)buf150, *(float4*)buf151);
    *(float2*)buf152 = clamp(*(float2*)buf153, *(float*)buf154, *(float*)buf155);
    *(float3*)buf156 = clamp(*(float3*)buf157, *(float*)buf158, *(float*)buf159);
    *(float4*)buf160 = clamp(*(float4*)buf161, *(float*)buf162, *(float*)buf163);
    *(char*)buf164 = clamp(*(char*)buf165, *(char*)buf166, *(char*)buf167);
    *(char2*)buf168 = clamp(*(char2*)buf169, *(char2*)buf170, *(char2*)buf171);
    *(char3*)buf172 = clamp(*(char3*)buf173, *(char3*)buf174, *(char3*)buf175);
    *(char4*)buf176 = clamp(*(char4*)buf177, *(char4*)buf178, *(char4*)buf179);
    *(uchar*)buf180 = clamp(*(uchar*)buf181, *(uchar*)buf182, *(uchar*)buf183);
    *(uchar2*)buf184 = clamp(*(uchar2*)buf185, *(uchar2*)buf186, *(uchar2*)buf187);
    *(uchar3*)buf188 = clamp(*(uchar3*)buf189, *(uchar3*)buf190, *(uchar3*)buf191);
    *(uchar4*)buf192 = clamp(*(uchar4*)buf193, *(uchar4*)buf194, *(uchar4*)buf195);
    *(short*)buf196 = clamp(*(short*)buf197, *(short*)buf198, *(short*)buf199);
    *(short2*)buf200 = clamp(*(short2*)buf201, *(short2*)buf202, *(short2*)buf203);
    *(short3*)buf204 = clamp(*(short3*)buf205, *(short3*)buf206, *(short3*)buf207);
    *(short4*)buf208 = clamp(*(short4*)buf209, *(short4*)buf210, *(short4*)buf211);
    *(ushort*)buf212 = clamp(*(ushort*)buf213, *(ushort*)buf214, *(ushort*)buf215);
    *(ushort2*)buf216 = clamp(*(ushort2*)buf217, *(ushort2*)buf218, *(ushort2*)buf219);
    *(ushort3*)buf220 = clamp(*(ushort3*)buf221, *(ushort3*)buf222, *(ushort3*)buf223);
    *(ushort4*)buf224 = clamp(*(ushort4*)buf225, *(ushort4*)buf226, *(ushort4*)buf227);
    *(int*)buf228 = clamp(*(int*)buf229, *(int*)buf230, *(int*)buf231);
    *(int2*)buf232 = clamp(*(int2*)buf233, *(int2*)buf234, *(int2*)buf235);
    *(int3*)buf236 = clamp(*(int3*)buf237, *(int3*)buf238, *(int3*)buf239);
    *(int4*)buf240 = clamp(*(int4*)buf241, *(int4*)buf242, *(int4*)buf243);
    *(uint*)buf244 = clamp(*(uint*)buf245, *(uint*)buf246, *(uint*)buf247);
    *(uint2*)buf248 = clamp(*(uint2*)buf249, *(uint2*)buf250, *(uint2*)buf251);
    *(uint3*)buf252 = clamp(*(uint3*)buf253, *(uint3*)buf254, *(uint3*)buf255);
    *(uint4*)buf256 = clamp(*(uint4*)buf257, *(uint4*)buf258, *(uint4*)buf259);
    *(long*)buf260 = clamp(*(long*)buf261, *(long*)buf262, *(long*)buf263);
    *(long2*)buf264 = clamp(*(long2*)buf265, *(long2*)buf266, *(long2*)buf267);
    *(long3*)buf268 = clamp(*(long3*)buf269, *(long3*)buf270, *(long3*)buf271);
    *(long4*)buf272 = clamp(*(long4*)buf273, *(long4*)buf274, *(long4*)buf275);
    *(ulong*)buf276 = clamp(*(ulong*)buf277, *(ulong*)buf278, *(ulong*)buf279);
    *(ulong2*)buf280 = clamp(*(ulong2*)buf281, *(ulong2*)buf282, *(ulong2*)buf283);
    *(ulong3*)buf284 = clamp(*(ulong3*)buf285, *(ulong3*)buf286, *(ulong3*)buf287);
    *(ulong4*)buf288 = clamp(*(ulong4*)buf289, *(ulong4*)buf290, *(ulong4*)buf291);
    *(char2*)buf292 = clamp(*(char2*)buf293, *(char*)buf294, *(char*)buf295);
    *(char3*)buf296 = clamp(*(char3*)buf297, *(char*)buf298, *(char*)buf299);
    *(char4*)buf300 = clamp(*(char4*)buf301, *(char*)buf302, *(char*)buf303);
    *(uchar2*)buf304 = clamp(*(uchar2*)buf305, *(uchar*)buf306, *(uchar*)buf307);
    *(uchar3*)buf308 = clamp(*(uchar3*)buf309, *(uchar*)buf310, *(uchar*)buf311);
    *(uchar4*)buf312 = clamp(*(uchar4*)buf313, *(uchar*)buf314, *(uchar*)buf315);
    *(short2*)buf316 = clamp(*(short2*)buf317, *(short*)buf318, *(short*)buf319);
    *(short3*)buf320 = clamp(*(short3*)buf321, *(short*)buf322, *(short*)buf323);
    *(short4*)buf324 = clamp(*(short4*)buf325, *(short*)buf326, *(short*)buf327);
    *(ushort2*)buf328 = clamp(*(ushort2*)buf329, *(ushort*)buf330, *(ushort*)buf331);
    *(ushort3*)buf332 = clamp(*(ushort3*)buf333, *(ushort*)buf334, *(ushort*)buf335);
    *(ushort4*)buf336 = clamp(*(ushort4*)buf337, *(ushort*)buf338, *(ushort*)buf339);
    *(int2*)buf340 = clamp(*(int2*)buf341, *(int*)buf342, *(int*)buf343);
    *(int3*)buf344 = clamp(*(int3*)buf345, *(int*)buf346, *(int*)buf347);
    *(int4*)buf348 = clamp(*(int4*)buf349, *(int*)buf350, *(int*)buf351);
    *(uint2*)buf352 = clamp(*(uint2*)buf353, *(uint*)buf354, *(uint*)buf355);
    *(uint3*)buf356 = clamp(*(uint3*)buf357, *(uint*)buf358, *(uint*)buf359);
    *(uint4*)buf360 = clamp(*(uint4*)buf361, *(uint*)buf362, *(uint*)buf363);
    *(long2*)buf364 = clamp(*(long2*)buf365, *(long*)buf366, *(long*)buf367);
    *(long3*)buf368 = clamp(*(long3*)buf369, *(long*)buf370, *(long*)buf371);
    *(long4*)buf372 = clamp(*(long4*)buf373, *(long*)buf374, *(long*)buf375);
    *(ulong2*)buf376 = clamp(*(ulong2*)buf377, *(ulong*)buf378, *(ulong*)buf379);
    *(ulong3*)buf380 = clamp(*(ulong3*)buf381, *(ulong*)buf382, *(ulong*)buf383);
    *(ulong4*)buf384 = clamp(*(ulong4*)buf385, *(ulong*)buf386, *(ulong*)buf387);
    *(char*)buf388 = clz(*(char*)buf389);
    *(char2*)buf390 = clz(*(char2*)buf391);
    *(char3*)buf392 = clz(*(char3*)buf393);
    *(char4*)buf394 = clz(*(char4*)buf395);
    *(uchar*)buf396 = clz(*(uchar*)buf397);
    *(uchar2*)buf398 = clz(*(uchar2*)buf399);
    *(uchar3*)buf400 = clz(*(uchar3*)buf401);
    *(uchar4*)buf402 = clz(*(uchar4*)buf403);
    *(short*)buf404 = clz(*(short*)buf405);
    *(short2*)buf406 = clz(*(short2*)buf407);
    *(short3*)buf408 = clz(*(short3*)buf409);
    *(short4*)buf410 = clz(*(short4*)buf411);
    *(ushort*)buf412 = clz(*(ushort*)buf413);
    *(ushort2*)buf414 = clz(*(ushort2*)buf415);
    *(ushort3*)buf416 = clz(*(ushort3*)buf417);
    *(ushort4*)buf418 = clz(*(ushort4*)buf419);
    *(int*)buf420 = clz(*(int*)buf421);
    *(int2*)buf422 = clz(*(int2*)buf423);
    *(int3*)buf424 = clz(*(int3*)buf425);
    *(int4*)buf426 = clz(*(int4*)buf427);
    *(uint*)buf428 = clz(*(uint*)buf429);
    *(uint2*)buf430 = clz(*(uint2*)buf431);
    *(uint3*)buf432 = clz(*(uint3*)buf433);
    *(uint4*)buf434 = clz(*(uint4*)buf435);
    *(float2*)buf436 = convert_float2(*(float2*)buf437);
    *(float3*)buf438 = convert_float3(*(float3*)buf439);
    *(float4*)buf440 = convert_float4(*(float4*)buf441);
    *(float2*)buf442 = convert_float2(*(char2*)buf443);
    *(float3*)buf444 = convert_float3(*(char3*)buf445);
    *(float4*)buf446 = convert_float4(*(char4*)buf447);
    *(float2*)buf448 = convert_float2(*(uchar2*)buf449);
    *(float3*)buf450 = convert_float3(*(uchar3*)buf451);
    *(float4*)buf452 = convert_float4(*(uchar4*)buf453);
    *(float2*)buf454 = convert_float2(*(short2*)buf455);
    *(float3*)buf456 = convert_float3(*(short3*)buf457);
    *(float4*)buf458 = convert_float4(*(short4*)buf459);
    *(float2*)buf460 = convert_float2(*(ushort2*)buf461);
    *(float3*)buf462 = convert_float3(*(ushort3*)buf463);
    *(float4*)buf464 = convert_float4(*(ushort4*)buf465);
    *(float2*)buf466 = convert_float2(*(int2*)buf467);
    *(float3*)buf468 = convert_float3(*(int3*)buf469);
    *(float4*)buf470 = convert_float4(*(int4*)buf471);
    *(float2*)buf472 = convert_float2(*(uint2*)buf473);
    *(float3*)buf474 = convert_float3(*(uint3*)buf475);
    *(float4*)buf476 = convert_float4(*(uint4*)buf477);
    *(char2*)buf478 = convert_char2(*(float2*)buf479);
    *(char3*)buf480 = convert_char3(*(float3*)buf481);
    *(char4*)buf482 = convert_char4(*(float4*)buf483);
    *(char2*)buf484 = convert_char2(*(char2*)buf485);
    *(char3*)buf486 = convert_char3(*(char3*)buf487);
    *(char4*)buf488 = convert_char4(*(char4*)buf489);
    *(char2*)buf490 = convert_char2(*(uchar2*)buf491);
    *(char3*)buf492 = convert_char3(*(uchar3*)buf493);
    *(char4*)buf494 = convert_char4(*(uchar4*)buf495);
    *(char2*)buf496 = convert_char2(*(short2*)buf497);
    *(char3*)buf498 = convert_char3(*(short3*)buf499);
    *(char4*)buf500 = convert_char4(*(short4*)buf501);
    *(char2*)buf502 = convert_char2(*(ushort2*)buf503);
    *(char3*)buf504 = convert_char3(*(ushort3*)buf505);
    *(char4*)buf506 = convert_char4(*(ushort4*)buf507);
    *(char2*)buf508 = convert_char2(*(int2*)buf509);
    *(char3*)buf510 = convert_char3(*(int3*)buf511);
    *(char4*)buf512 = convert_char4(*(int4*)buf513);
    *(char2*)buf514 = convert_char2(*(uint2*)buf515);
    *(char3*)buf516 = convert_char3(*(uint3*)buf517);
    *(char4*)buf518 = convert_char4(*(uint4*)buf519);
    *(uchar2*)buf520 = convert_uchar2(*(float2*)buf521);
    *(uchar3*)buf522 = convert_uchar3(*(float3*)buf523);
    *(uchar4*)buf524 = convert_uchar4(*(float4*)buf525);
    *(uchar2*)buf526 = convert_uchar2(*(char2*)buf527);
    *(uchar3*)buf528 = convert_uchar3(*(char3*)buf529);
    *(uchar4*)buf530 = convert_uchar4(*(char4*)buf531);
    *(uchar2*)buf532 = convert_uchar2(*(uchar2*)buf533);
    *(uchar3*)buf534 = convert_uchar3(*(uchar3*)buf535);
    *(uchar4*)buf536 = convert_uchar4(*(uchar4*)buf537);
    *(uchar2*)buf538 = convert_uchar2(*(short2*)buf539);
    *(uchar3*)buf540 = convert_uchar3(*(short3*)buf541);
    *(uchar4*)buf542 = convert_uchar4(*(short4*)buf543);
    *(uchar2*)buf544 = convert_uchar2(*(ushort2*)buf545);
    *(uchar3*)buf546 = convert_uchar3(*(ushort3*)buf547);
    *(uchar4*)buf548 = convert_uchar4(*(ushort4*)buf549);
    *(uchar2*)buf550 = convert_uchar2(*(int2*)buf551);
    *(uchar3*)buf552 = convert_uchar3(*(int3*)buf553);
    *(uchar4*)buf554 = convert_uchar4(*(int4*)buf555);
    *(uchar2*)buf556 = convert_uchar2(*(uint2*)buf557);
    *(uchar3*)buf558 = convert_uchar3(*(uint3*)buf559);
    *(uchar4*)buf560 = convert_uchar4(*(uint4*)buf561);
    *(short2*)buf562 = convert_short2(*(float2*)buf563);
    *(short3*)buf564 = convert_short3(*(float3*)buf565);
    *(short4*)buf566 = convert_short4(*(float4*)buf567);
    *(short2*)buf568 = convert_short2(*(char2*)buf569);
    *(short3*)buf570 = convert_short3(*(char3*)buf571);
    *(short4*)buf572 = convert_short4(*(char4*)buf573);
    *(short2*)buf574 = convert_short2(*(uchar2*)buf575);
    *(short3*)buf576 = convert_short3(*(uchar3*)buf577);
    *(short4*)buf578 = convert_short4(*(uchar4*)buf579);
    *(short2*)buf580 = convert_short2(*(short2*)buf581);
    *(short3*)buf582 = convert_short3(*(short3*)buf583);
    *(short4*)buf584 = convert_short4(*(short4*)buf585);
    *(short2*)buf586 = convert_short2(*(ushort2*)buf587);
    *(short3*)buf588 = convert_short3(*(ushort3*)buf589);
    *(short4*)buf590 = convert_short4(*(ushort4*)buf591);
    *(short2*)buf592 = convert_short2(*(int2*)buf593);
    *(short3*)buf594 = convert_short3(*(int3*)buf595);
    *(short4*)buf596 = convert_short4(*(int4*)buf597);
    *(short2*)buf598 = convert_short2(*(uint2*)buf599);
    *(short3*)buf600 = convert_short3(*(uint3*)buf601);
    *(short4*)buf602 = convert_short4(*(uint4*)buf603);
    *(ushort2*)buf604 = convert_ushort2(*(float2*)buf605);
    *(ushort3*)buf606 = convert_ushort3(*(float3*)buf607);
    *(ushort4*)buf608 = convert_ushort4(*(float4*)buf609);
    *(ushort2*)buf610 = convert_ushort2(*(char2*)buf611);
    *(ushort3*)buf612 = convert_ushort3(*(char3*)buf613);
    *(ushort4*)buf614 = convert_ushort4(*(char4*)buf615);
    *(ushort2*)buf616 = convert_ushort2(*(uchar2*)buf617);
    *(ushort3*)buf618 = convert_ushort3(*(uchar3*)buf619);
    *(ushort4*)buf620 = convert_ushort4(*(uchar4*)buf621);
    *(ushort2*)buf622 = convert_ushort2(*(short2*)buf623);
    *(ushort3*)buf624 = convert_ushort3(*(short3*)buf625);
    *(ushort4*)buf626 = convert_ushort4(*(short4*)buf627);
    *(ushort2*)buf628 = convert_ushort2(*(ushort2*)buf629);
    *(ushort3*)buf630 = convert_ushort3(*(ushort3*)buf631);
    *(ushort4*)buf632 = convert_ushort4(*(ushort4*)buf633);
    *(ushort2*)buf634 = convert_ushort2(*(int2*)buf635);
    *(ushort3*)buf636 = convert_ushort3(*(int3*)buf637);
    *(ushort4*)buf638 = convert_ushort4(*(int4*)buf639);
    *(ushort2*)buf640 = convert_ushort2(*(uint2*)buf641);
    *(ushort3*)buf642 = convert_ushort3(*(uint3*)buf643);
    *(ushort4*)buf644 = convert_ushort4(*(uint4*)buf645);
    *(int2*)buf646 = convert_int2(*(float2*)buf647);
    *(int3*)buf648 = convert_int3(*(float3*)buf649);
    *(int4*)buf650 = convert_int4(*(float4*)buf651);
    *(int2*)buf652 = convert_int2(*(char2*)buf653);
    *(int3*)buf654 = convert_int3(*(char3*)buf655);
    *(int4*)buf656 = convert_int4(*(char4*)buf657);
    *(int2*)buf658 = convert_int2(*(uchar2*)buf659);
    *(int3*)buf660 = convert_int3(*(uchar3*)buf661);
    *(int4*)buf662 = convert_int4(*(uchar4*)buf663);
    *(int2*)buf664 = convert_int2(*(short2*)buf665);
    *(int3*)buf666 = convert_int3(*(short3*)buf667);
    *(int4*)buf668 = convert_int4(*(short4*)buf669);
    *(int2*)buf670 = convert_int2(*(ushort2*)buf671);
    *(int3*)buf672 = convert_int3(*(ushort3*)buf673);
    *(int4*)buf674 = convert_int4(*(ushort4*)buf675);
    *(int2*)buf676 = convert_int2(*(int2*)buf677);
    *(int3*)buf678 = convert_int3(*(int3*)buf679);
    *(int4*)buf680 = convert_int4(*(int4*)buf681);
    *(int2*)buf682 = convert_int2(*(uint2*)buf683);
    *(int3*)buf684 = convert_int3(*(uint3*)buf685);
    *(int4*)buf686 = convert_int4(*(uint4*)buf687);
    *(uint2*)buf688 = convert_uint2(*(float2*)buf689);
    *(uint3*)buf690 = convert_uint3(*(float3*)buf691);
    *(uint4*)buf692 = convert_uint4(*(float4*)buf693);
    *(uint2*)buf694 = convert_uint2(*(char2*)buf695);
    *(uint3*)buf696 = convert_uint3(*(char3*)buf697);
    *(uint4*)buf698 = convert_uint4(*(char4*)buf699);
    *(uint2*)buf700 = convert_uint2(*(uchar2*)buf701);
    *(uint3*)buf702 = convert_uint3(*(uchar3*)buf703);
    *(uint4*)buf704 = convert_uint4(*(uchar4*)buf705);
    *(uint2*)buf706 = convert_uint2(*(short2*)buf707);
    *(uint3*)buf708 = convert_uint3(*(short3*)buf709);
    *(uint4*)buf710 = convert_uint4(*(short4*)buf711);
    *(uint2*)buf712 = convert_uint2(*(ushort2*)buf713);
    *(uint3*)buf714 = convert_uint3(*(ushort3*)buf715);
    *(uint4*)buf716 = convert_uint4(*(ushort4*)buf717);
    *(uint2*)buf718 = convert_uint2(*(int2*)buf719);
    *(uint3*)buf720 = convert_uint3(*(int3*)buf721);
    *(uint4*)buf722 = convert_uint4(*(int4*)buf723);
    *(uint2*)buf724 = convert_uint2(*(uint2*)buf725);
    *(uint3*)buf726 = convert_uint3(*(uint3*)buf727);
    *(uint4*)buf728 = convert_uint4(*(uint4*)buf729);
    *(float*)buf730 = copysign(*(float*)buf731, *(float*)buf732);
    *(float2*)buf733 = copysign(*(float2*)buf734, *(float2*)buf735);
    *(float3*)buf736 = copysign(*(float3*)buf737, *(float3*)buf738);
    *(float4*)buf739 = copysign(*(float4*)buf740, *(float4*)buf741);
    *(float*)buf742 = cos(*(float*)buf743);
    *(float2*)buf744 = cos(*(float2*)buf745);
    *(float3*)buf746 = cos(*(float3*)buf747);
    *(float4*)buf748 = cos(*(float4*)buf749);
    *(float*)buf750 = cosh(*(float*)buf751);
    *(float2*)buf752 = cosh(*(float2*)buf753);
    *(float3*)buf754 = cosh(*(float3*)buf755);
    *(float4*)buf756 = cosh(*(float4*)buf757);
    *(float*)buf758 = cospi(*(float*)buf759);
    *(float2*)buf760 = cospi(*(float2*)buf761);
    *(float3*)buf762 = cospi(*(float3*)buf763);
    *(float4*)buf764 = cospi(*(float4*)buf765);
    *(float3*)buf766 = cross(*(float3*)buf767, *(float3*)buf768);
    *(float4*)buf769 = cross(*(float4*)buf770, *(float4*)buf771);
    *(float*)buf772 = degrees(*(float*)buf773);
    *(float2*)buf774 = degrees(*(float2*)buf775);
    *(float3*)buf776 = degrees(*(float3*)buf777);
    *(float4*)buf778 = degrees(*(float4*)buf779);
    *(float*)buf780 = distance(*(float*)buf781, *(float*)buf782);
    *(float*)buf783 = distance(*(float2*)buf784, *(float2*)buf785);
    *(float*)buf786 = distance(*(float3*)buf787, *(float3*)buf788);
    *(float*)buf789 = distance(*(float4*)buf790, *(float4*)buf791);
    *(float*)buf792 = dot(*(float*)buf793, *(float*)buf794);
    *(float*)buf795 = dot(*(float2*)buf796, *(float2*)buf797);
    *(float*)buf798 = dot(*(float3*)buf799, *(float3*)buf800);
    *(float*)buf801 = dot(*(float4*)buf802, *(float4*)buf803);
    *(float*)buf804 = erf(*(float*)buf805);
    *(float2*)buf806 = erf(*(float2*)buf807);
    *(float3*)buf808 = erf(*(float3*)buf809);
    *(float4*)buf810 = erf(*(float4*)buf811);
    *(float*)buf812 = erfc(*(float*)buf813);
    *(float2*)buf814 = erfc(*(float2*)buf815);
    *(float3*)buf816 = erfc(*(float3*)buf817);
    *(float4*)buf818 = erfc(*(float4*)buf819);
    *(float*)buf820 = exp(*(float*)buf821);
    *(float2*)buf822 = exp(*(float2*)buf823);
    *(float3*)buf824 = exp(*(float3*)buf825);
    *(float4*)buf826 = exp(*(float4*)buf827);
    *(float*)buf828 = exp10(*(float*)buf829);
    *(float2*)buf830 = exp10(*(float2*)buf831);
    *(float3*)buf832 = exp10(*(float3*)buf833);
    *(float4*)buf834 = exp10(*(float4*)buf835);
    *(float*)buf836 = exp2(*(float*)buf837);
    *(float2*)buf838 = exp2(*(float2*)buf839);
    *(float3*)buf840 = exp2(*(float3*)buf841);
    *(float4*)buf842 = exp2(*(float4*)buf843);
    *(float*)buf844 = expm1(*(float*)buf845);
    *(float2*)buf846 = expm1(*(float2*)buf847);
    *(float3*)buf848 = expm1(*(float3*)buf849);
    *(float4*)buf850 = expm1(*(float4*)buf851);
    *(float*)buf852 = fabs(*(float*)buf853);
    *(float2*)buf854 = fabs(*(float2*)buf855);
    *(float3*)buf856 = fabs(*(float3*)buf857);
    *(float4*)buf858 = fabs(*(float4*)buf859);
    *(float*)buf860 = fast_distance(*(float*)buf861, *(float*)buf862);
    *(float*)buf863 = fast_distance(*(float2*)buf864, *(float2*)buf865);
    *(float*)buf866 = fast_distance(*(float3*)buf867, *(float3*)buf868);
    *(float*)buf869 = fast_distance(*(float4*)buf870, *(float4*)buf871);
    *(float*)buf872 = fast_length(*(float*)buf873);
    *(float*)buf874 = fast_length(*(float2*)buf875);
    *(float*)buf876 = fast_length(*(float3*)buf877);
    *(float*)buf878 = fast_length(*(float4*)buf879);
    *(float*)buf880 = fast_normalize(*(float*)buf881);
    *(float2*)buf882 = fast_normalize(*(float2*)buf883);
    *(float3*)buf884 = fast_normalize(*(float3*)buf885);
    *(float4*)buf886 = fast_normalize(*(float4*)buf887);
    *(float*)buf888 = fdim(*(float*)buf889, *(float*)buf890);
    *(float2*)buf891 = fdim(*(float2*)buf892, *(float2*)buf893);
    *(float3*)buf894 = fdim(*(float3*)buf895, *(float3*)buf896);
    *(float4*)buf897 = fdim(*(float4*)buf898, *(float4*)buf899);
    *(float*)buf900 = floor(*(float*)buf901);
    *(float2*)buf902 = floor(*(float2*)buf903);
    *(float3*)buf904 = floor(*(float3*)buf905);
    *(float4*)buf906 = floor(*(float4*)buf907);
    *(float*)buf908 = fma(*(float*)buf909, *(float*)buf910, *(float*)buf911);
    *(float2*)buf912 = fma(*(float2*)buf913, *(float2*)buf914, *(float2*)buf915);
    *(float3*)buf916 = fma(*(float3*)buf917, *(float3*)buf918, *(float3*)buf919);
    *(float4*)buf920 = fma(*(float4*)buf921, *(float4*)buf922, *(float4*)buf923);
    *(float*)buf924 = fmax(*(float*)buf925, *(float*)buf926);
    *(float2*)buf927 = fmax(*(float2*)buf928, *(float2*)buf929);
    *(float3*)buf930 = fmax(*(float3*)buf931, *(float3*)buf932);
    *(float4*)buf933 = fmax(*(float4*)buf934, *(float4*)buf935);
    *(float2*)buf936 = fmax(*(float2*)buf937, *(float*)buf938);
    *(float3*)buf939 = fmax(*(float3*)buf940, *(float*)buf941);
    *(float4*)buf942 = fmax(*(float4*)buf943, *(float*)buf944);
    *(float*)buf945 = fmin(*(float*)buf946, *(float*)buf947);
    *(float2*)buf948 = fmin(*(float2*)buf949, *(float2*)buf950);
    *(float3*)buf951 = fmin(*(float3*)buf952, *(float3*)buf953);
    *(float4*)buf954 = fmin(*(float4*)buf955, *(float4*)buf956);
    *(float2*)buf957 = fmin(*(float2*)buf958, *(float*)buf959);
    *(float3*)buf960 = fmin(*(float3*)buf961, *(float*)buf962);
    *(float4*)buf963 = fmin(*(float4*)buf964, *(float*)buf965);
    *(float*)buf966 = fmod(*(float*)buf967, *(float*)buf968);
    *(float2*)buf969 = fmod(*(float2*)buf970, *(float2*)buf971);
    *(float3*)buf972 = fmod(*(float3*)buf973, *(float3*)buf974);
    *(float4*)buf975 = fmod(*(float4*)buf976, *(float4*)buf977);
    *(float*)buf978 = fract(*(float*)buf979, (float*) buf980);
    *(float2*)buf981 = fract(*(float2*)buf982, (float2*) buf983);
    *(float3*)buf984 = fract(*(float3*)buf985, (float3*) buf986);
    *(float4*)buf987 = fract(*(float4*)buf988, (float4*) buf989);
    *(float*)buf990 = fract(*(float*)buf991);
    *(float2*)buf992 = fract(*(float2*)buf993);
    *(float3*)buf994 = fract(*(float3*)buf995);
    *(float4*)buf996 = fract(*(float4*)buf997);
    *(float*)buf998 = frexp(*(float*)buf999, (int*) buf1000);
    *(float2*)buf1001 = frexp(*(float2*)buf1002, (int2*) buf1003);
    *(float3*)buf1004 = frexp(*(float3*)buf1005, (int3*) buf1006);
    *(float4*)buf1007 = frexp(*(float4*)buf1008, (int4*) buf1009);
    *(float*)buf1010 = half_recip(*(float*)buf1011);
    *(float2*)buf1012 = half_recip(*(float2*)buf1013);
    *(float3*)buf1014 = half_recip(*(float3*)buf1015);
    *(float4*)buf1016 = half_recip(*(float4*)buf1017);
    *(float*)buf1018 = half_rsqrt(*(float*)buf1019);
    *(float2*)buf1020 = half_rsqrt(*(float2*)buf1021);
    *(float3*)buf1022 = half_rsqrt(*(float3*)buf1023);
    *(float4*)buf1024 = half_rsqrt(*(float4*)buf1025);
    *(float*)buf1026 = half_sqrt(*(float*)buf1027);
    *(float2*)buf1028 = half_sqrt(*(float2*)buf1029);
    *(float3*)buf1030 = half_sqrt(*(float3*)buf1031);
    *(float4*)buf1032 = half_sqrt(*(float4*)buf1033);
    *(float*)buf1034 = hypot(*(float*)buf1035, *(float*)buf1036);
    *(float2*)buf1037 = hypot(*(float2*)buf1038, *(float2*)buf1039);
    *(float3*)buf1040 = hypot(*(float3*)buf1041, *(float3*)buf1042);
    *(float4*)buf1043 = hypot(*(float4*)buf1044, *(float4*)buf1045);
    *(int*)buf1046 = ilogb(*(float*)buf1047);
    *(int2*)buf1048 = ilogb(*(float2*)buf1049);
    *(int3*)buf1050 = ilogb(*(float3*)buf1051);
    *(int4*)buf1052 = ilogb(*(float4*)buf1053);
    *(float*)buf1054 = ldexp(*(float*)buf1055, *(int*)buf1056);
    *(float2*)buf1057 = ldexp(*(float2*)buf1058, *(int2*)buf1059);
    *(float3*)buf1060 = ldexp(*(float3*)buf1061, *(int3*)buf1062);
    *(float4*)buf1063 = ldexp(*(float4*)buf1064, *(int4*)buf1065);
    *(float2*)buf1066 = ldexp(*(float2*)buf1067, *(int*)buf1068);
    *(float3*)buf1069 = ldexp(*(float3*)buf1070, *(int*)buf1071);
    *(float4*)buf1072 = ldexp(*(float4*)buf1073, *(int*)buf1074);
    *(float*)buf1075 = length(*(float*)buf1076);
    *(float*)buf1077 = length(*(float2*)buf1078);
    *(float*)buf1079 = length(*(float3*)buf1080);
    *(float*)buf1081 = length(*(float4*)buf1082);
    *(float*)buf1083 = lgamma(*(float*)buf1084);
    *(float2*)buf1085 = lgamma(*(float2*)buf1086);
    *(float3*)buf1087 = lgamma(*(float3*)buf1088);
    *(float4*)buf1089 = lgamma(*(float4*)buf1090);
    *(float*)buf1091 = lgamma(*(float*)buf1092, (int*) buf1093);
    *(float2*)buf1094 = lgamma(*(float2*)buf1095, (int2*) buf1096);
    *(float3*)buf1097 = lgamma(*(float3*)buf1098, (int3*) buf1099);
    *(float4*)buf1100 = lgamma(*(float4*)buf1101, (int4*) buf1102);
    *(float*)buf1103 = log(*(float*)buf1104);
    *(float2*)buf1105 = log(*(float2*)buf1106);
    *(float3*)buf1107 = log(*(float3*)buf1108);
    *(float4*)buf1109 = log(*(float4*)buf1110);
    *(float*)buf1111 = log10(*(float*)buf1112);
    *(float2*)buf1113 = log10(*(float2*)buf1114);
    *(float3*)buf1115 = log10(*(float3*)buf1116);
    *(float4*)buf1117 = log10(*(float4*)buf1118);
    *(float*)buf1119 = log1p(*(float*)buf1120);
    *(float2*)buf1121 = log1p(*(float2*)buf1122);
    *(float3*)buf1123 = log1p(*(float3*)buf1124);
    *(float4*)buf1125 = log1p(*(float4*)buf1126);
    *(float*)buf1127 = log2(*(float*)buf1128);
    *(float2*)buf1129 = log2(*(float2*)buf1130);
    *(float3*)buf1131 = log2(*(float3*)buf1132);
    *(float4*)buf1133 = log2(*(float4*)buf1134);
    *(float*)buf1135 = logb(*(float*)buf1136);
    *(float2*)buf1137 = logb(*(float2*)buf1138);
    *(float3*)buf1139 = logb(*(float3*)buf1140);
    *(float4*)buf1141 = logb(*(float4*)buf1142);
    *(float*)buf1143 = mad(*(float*)buf1144, *(float*)buf1145, *(float*)buf1146);
    *(float2*)buf1147 = mad(*(float2*)buf1148, *(float2*)buf1149, *(float2*)buf1150);
    *(float3*)buf1151 = mad(*(float3*)buf1152, *(float3*)buf1153, *(float3*)buf1154);
    *(float4*)buf1155 = mad(*(float4*)buf1156, *(float4*)buf1157, *(float4*)buf1158);
    *(float*)buf1159 = max(*(float*)buf1160, *(float*)buf1161);
    *(float2*)buf1162 = max(*(float2*)buf1163, *(float2*)buf1164);
    *(float3*)buf1165 = max(*(float3*)buf1166, *(float3*)buf1167);
    *(float4*)buf1168 = max(*(float4*)buf1169, *(float4*)buf1170);
    *(char*)buf1171 = max(*(char*)buf1172, *(char*)buf1173);
    *(uchar*)buf1174 = max(*(uchar*)buf1175, *(uchar*)buf1176);
    *(short*)buf1177 = max(*(short*)buf1178, *(short*)buf1179);
    *(ushort*)buf1180 = max(*(ushort*)buf1181, *(ushort*)buf1182);
    *(int*)buf1183 = max(*(int*)buf1184, *(int*)buf1185);
    *(uint*)buf1186 = max(*(uint*)buf1187, *(uint*)buf1188);
    *(char2*)buf1189 = max(*(char2*)buf1190, *(char2*)buf1191);
    *(uchar2*)buf1192 = max(*(uchar2*)buf1193, *(uchar2*)buf1194);
    *(short2*)buf1195 = max(*(short2*)buf1196, *(short2*)buf1197);
    *(ushort2*)buf1198 = max(*(ushort2*)buf1199, *(ushort2*)buf1200);
    *(int2*)buf1201 = max(*(int2*)buf1202, *(int2*)buf1203);
    *(uint2*)buf1204 = max(*(uint2*)buf1205, *(uint2*)buf1206);
    *(char3*)buf1207 = max(*(char3*)buf1208, *(char3*)buf1209);
    *(uchar3*)buf1210 = max(*(uchar3*)buf1211, *(uchar3*)buf1212);
    *(short3*)buf1213 = max(*(short3*)buf1214, *(short3*)buf1215);
    *(ushort3*)buf1216 = max(*(ushort3*)buf1217, *(ushort3*)buf1218);
    *(int3*)buf1219 = max(*(int3*)buf1220, *(int3*)buf1221);
    *(uint3*)buf1222 = max(*(uint3*)buf1223, *(uint3*)buf1224);
    *(char4*)buf1225 = max(*(char4*)buf1226, *(char4*)buf1227);
    *(uchar4*)buf1228 = max(*(uchar4*)buf1229, *(uchar4*)buf1230);
    *(short4*)buf1231 = max(*(short4*)buf1232, *(short4*)buf1233);
    *(ushort4*)buf1234 = max(*(ushort4*)buf1235, *(ushort4*)buf1236);
    *(int4*)buf1237 = max(*(int4*)buf1238, *(int4*)buf1239);
    *(uint4*)buf1240 = max(*(uint4*)buf1241, *(uint4*)buf1242);
    *(float*)buf1243 = min(*(float*)buf1244, *(float*)buf1245);
    *(float2*)buf1246 = min(*(float2*)buf1247, *(float2*)buf1248);
    *(float3*)buf1249 = min(*(float3*)buf1250, *(float3*)buf1251);
    *(float4*)buf1252 = min(*(float4*)buf1253, *(float4*)buf1254);
    *(char*)buf1255 = min(*(char*)buf1256, *(char*)buf1257);
    *(uchar*)buf1258 = min(*(uchar*)buf1259, *(uchar*)buf1260);
    *(short*)buf1261 = min(*(short*)buf1262, *(short*)buf1263);
    *(ushort*)buf1264 = min(*(ushort*)buf1265, *(ushort*)buf1266);
    *(int*)buf1267 = min(*(int*)buf1268, *(int*)buf1269);
    *(uint*)buf1270 = min(*(uint*)buf1271, *(uint*)buf1272);
    *(char2*)buf1273 = min(*(char2*)buf1274, *(char2*)buf1275);
    *(uchar2*)buf1276 = min(*(uchar2*)buf1277, *(uchar2*)buf1278);
    *(short2*)buf1279 = min(*(short2*)buf1280, *(short2*)buf1281);
    *(ushort2*)buf1282 = min(*(ushort2*)buf1283, *(ushort2*)buf1284);
    *(int2*)buf1285 = min(*(int2*)buf1286, *(int2*)buf1287);
    *(uint2*)buf1288 = min(*(uint2*)buf1289, *(uint2*)buf1290);
    *(char3*)buf1291 = min(*(char3*)buf1292, *(char3*)buf1293);
    *(uchar3*)buf1294 = min(*(uchar3*)buf1295, *(uchar3*)buf1296);
    *(short3*)buf1297 = min(*(short3*)buf1298, *(short3*)buf1299);
    *(ushort3*)buf1300 = min(*(ushort3*)buf1301, *(ushort3*)buf1302);
    *(int3*)buf1303 = min(*(int3*)buf1304, *(int3*)buf1305);
    *(uint3*)buf1306 = min(*(uint3*)buf1307, *(uint3*)buf1308);
    *(char4*)buf1309 = min(*(char4*)buf1310, *(char4*)buf1311);
    *(uchar4*)buf1312 = min(*(uchar4*)buf1313, *(uchar4*)buf1314);
    *(short4*)buf1315 = min(*(short4*)buf1316, *(short4*)buf1317);
    *(ushort4*)buf1318 = min(*(ushort4*)buf1319, *(ushort4*)buf1320);
    *(int4*)buf1321 = min(*(int4*)buf1322, *(int4*)buf1323);
    *(uint4*)buf1324 = min(*(uint4*)buf1325, *(uint4*)buf1326);
    *(float*)buf1327 = mix(*(float*)buf1328, *(float*)buf1329, *(float*)buf1330);
    *(float2*)buf1331 = mix(*(float2*)buf1332, *(float2*)buf1333, *(float2*)buf1334);
    *(float3*)buf1335 = mix(*(float3*)buf1336, *(float3*)buf1337, *(float3*)buf1338);
    *(float4*)buf1339 = mix(*(float4*)buf1340, *(float4*)buf1341, *(float4*)buf1342);
    *(float2*)buf1343 = mix(*(float2*)buf1344, *(float2*)buf1345, *(float*)buf1346);
    *(float3*)buf1347 = mix(*(float3*)buf1348, *(float3*)buf1349, *(float*)buf1350);
    *(float4*)buf1351 = mix(*(float4*)buf1352, *(float4*)buf1353, *(float*)buf1354);
    *(float*)buf1355 = modf(*(float*)buf1356, (float*) buf1357);
    *(float2*)buf1358 = modf(*(float2*)buf1359, (float2*) buf1360);
    *(float3*)buf1361 = modf(*(float3*)buf1362, (float3*) buf1363);
    *(float4*)buf1364 = modf(*(float4*)buf1365, (float4*) buf1366);
    *(float*)buf1367 = nan(*(uint*)buf1368);
    *(float*)buf1369 = native_exp(*(float*)buf1370);
    *(float2*)buf1371 = native_exp(*(float2*)buf1372);
    *(float3*)buf1373 = native_exp(*(float3*)buf1374);
    *(float4*)buf1375 = native_exp(*(float4*)buf1376);
    *(float*)buf1377 = native_exp10(*(float*)buf1378);
    *(float2*)buf1379 = native_exp10(*(float2*)buf1380);
    *(float3*)buf1381 = native_exp10(*(float3*)buf1382);
    *(float4*)buf1383 = native_exp10(*(float4*)buf1384);
    *(float*)buf1385 = native_exp2(*(float*)buf1386);
    *(float2*)buf1387 = native_exp2(*(float2*)buf1388);
    *(float3*)buf1389 = native_exp2(*(float3*)buf1390);
    *(float4*)buf1391 = native_exp2(*(float4*)buf1392);
    *(float*)buf1393 = native_log(*(float*)buf1394);
    *(float2*)buf1395 = native_log(*(float2*)buf1396);
    *(float3*)buf1397 = native_log(*(float3*)buf1398);
    *(float4*)buf1399 = native_log(*(float4*)buf1400);
    *(float*)buf1401 = native_log10(*(float*)buf1402);
    *(float2*)buf1403 = native_log10(*(float2*)buf1404);
    *(float3*)buf1405 = native_log10(*(float3*)buf1406);
    *(float4*)buf1407 = native_log10(*(float4*)buf1408);
    *(float*)buf1409 = native_log2(*(float*)buf1410);
    *(float2*)buf1411 = native_log2(*(float2*)buf1412);
    *(float3*)buf1413 = native_log2(*(float3*)buf1414);
    *(float4*)buf1415 = native_log2(*(float4*)buf1416);
    *(float*)buf1417 = native_powr(*(float*)buf1418, *(float*)buf1419);
    *(float2*)buf1420 = native_powr(*(float2*)buf1421, *(float2*)buf1422);
    *(float3*)buf1423 = native_powr(*(float3*)buf1424, *(float3*)buf1425);
    *(float4*)buf1426 = native_powr(*(float4*)buf1427, *(float4*)buf1428);
    *(float*)buf1429 = nextafter(*(float*)buf1430, *(float*)buf1431);
    *(float2*)buf1432 = nextafter(*(float2*)buf1433, *(float2*)buf1434);
    *(float3*)buf1435 = nextafter(*(float3*)buf1436, *(float3*)buf1437);
    *(float4*)buf1438 = nextafter(*(float4*)buf1439, *(float4*)buf1440);
    *(float*)buf1441 = normalize(*(float*)buf1442);
    *(float2*)buf1443 = normalize(*(float2*)buf1444);
    *(float3*)buf1445 = normalize(*(float3*)buf1446);
    *(float4*)buf1447 = normalize(*(float4*)buf1448);
    *(float*)buf1449 = pow(*(float*)buf1450, *(float*)buf1451);
    *(float2*)buf1452 = pow(*(float2*)buf1453, *(float2*)buf1454);
    *(float3*)buf1455 = pow(*(float3*)buf1456, *(float3*)buf1457);
    *(float4*)buf1458 = pow(*(float4*)buf1459, *(float4*)buf1460);
    *(float*)buf1461 = pown(*(float*)buf1462, *(int*)buf1463);
    *(float2*)buf1464 = pown(*(float2*)buf1465, *(int2*)buf1466);
    *(float3*)buf1467 = pown(*(float3*)buf1468, *(int3*)buf1469);
    *(float4*)buf1470 = pown(*(float4*)buf1471, *(int4*)buf1472);
    *(float*)buf1473 = powr(*(float*)buf1474, *(float*)buf1475);
    *(float2*)buf1476 = powr(*(float2*)buf1477, *(float2*)buf1478);
    *(float3*)buf1479 = powr(*(float3*)buf1480, *(float3*)buf1481);
    *(float4*)buf1482 = powr(*(float4*)buf1483, *(float4*)buf1484);
    *(float*)buf1485 = radians(*(float*)buf1486);
    *(float2*)buf1487 = radians(*(float2*)buf1488);
    *(float3*)buf1489 = radians(*(float3*)buf1490);
    *(float4*)buf1491 = radians(*(float4*)buf1492);
    *(float*)buf1493 = remainder(*(float*)buf1494, *(float*)buf1495);
    *(float2*)buf1496 = remainder(*(float2*)buf1497, *(float2*)buf1498);
    *(float3*)buf1499 = remainder(*(float3*)buf1500, *(float3*)buf1501);
    *(float4*)buf1502 = remainder(*(float4*)buf1503, *(float4*)buf1504);
    *(float*)buf1505 = remquo(*(float*)buf1506, *(float*)buf1507, (int*) buf1508);
    *(float2*)buf1509 = remquo(*(float2*)buf1510, *(float2*)buf1511, (int2*) buf1512);
    *(float3*)buf1513 = remquo(*(float3*)buf1514, *(float3*)buf1515, (int3*) buf1516);
    *(float4*)buf1517 = remquo(*(float4*)buf1518, *(float4*)buf1519, (int4*) buf1520);
    *(float*)buf1521 = rint(*(float*)buf1522);
    *(float2*)buf1523 = rint(*(float2*)buf1524);
    *(float3*)buf1525 = rint(*(float3*)buf1526);
    *(float4*)buf1527 = rint(*(float4*)buf1528);
    *(float*)buf1529 = rootn(*(float*)buf1530, *(int*)buf1531);
    *(float2*)buf1532 = rootn(*(float2*)buf1533, *(int2*)buf1534);
    *(float3*)buf1535 = rootn(*(float3*)buf1536, *(int3*)buf1537);
    *(float4*)buf1538 = rootn(*(float4*)buf1539, *(int4*)buf1540);
    *(float*)buf1541 = round(*(float*)buf1542);
    *(float2*)buf1543 = round(*(float2*)buf1544);
    *(float3*)buf1545 = round(*(float3*)buf1546);
    *(float4*)buf1547 = round(*(float4*)buf1548);
    rsAllocationCopy1DRange(*(rs_allocation*)buf1549, *(uint32_t*)buf1550, *(uint32_t*)buf1551, *(uint32_t*)buf1552, *(rs_allocation*)buf1553, *(uint32_t*)buf1554, *(uint32_t*)buf1555);
    rsAllocationCopy2DRange(*(rs_allocation*)buf1556, *(uint32_t*)buf1557, *(uint32_t*)buf1558, *(uint32_t*)buf1559, *(rs_allocation_cubemap_face*)buf1560, *(uint32_t*)buf1561, *(uint32_t*)buf1562, *(rs_allocation*)buf1563, *(uint32_t*)buf1564, *(uint32_t*)buf1565, *(uint32_t*)buf1566, *(rs_allocation_cubemap_face*)buf1567);
    *(uint32_t*)buf1568 = rsAllocationGetDimFaces(*(rs_allocation*)buf1569);
    *(uint32_t*)buf1570 = rsAllocationGetDimLOD(*(rs_allocation*)buf1571);
    *(uint32_t*)buf1572 = rsAllocationGetDimX(*(rs_allocation*)buf1573);
    *(uint32_t*)buf1574 = rsAllocationGetDimY(*(rs_allocation*)buf1575);
    *(uint32_t*)buf1576 = rsAllocationGetDimZ(*(rs_allocation*)buf1577);
    *(rs_element*)buf1578 = rsAllocationGetElement(*(rs_allocation*)buf1579);
    rsAllocationIoReceive(*(rs_allocation*)buf1580);
    rsAllocationIoSend(*(rs_allocation*)buf1581);
    *(int32_t*)buf1582 = rsAtomicAdd((volatile int32_t*) buf1583, *(int32_t*)buf1584);
    *(int32_t*)buf1585 = rsAtomicAnd((volatile int32_t*) buf1586, *(int32_t*)buf1587);
    *(int32_t*)buf1588 = rsAtomicCas((volatile int32_t*) buf1589, *(int32_t*)buf1590, *(int32_t*)buf1591);
    *(uint32_t*)buf1592 = rsAtomicCas((volatile uint32_t*) buf1593, *(uint32_t*)buf1594, *(uint32_t*)buf1595);
    *(int32_t*)buf1596 = rsAtomicDec((volatile int32_t*) buf1597);
    *(int32_t*)buf1598 = rsAtomicInc((volatile int32_t*) buf1599);
    *(uint32_t*)buf1600 = rsAtomicMax((volatile uint32_t*) buf1601, *(uint32_t*)buf1602);
    *(int32_t*)buf1603 = rsAtomicMax((volatile int32_t*) buf1604, *(int32_t*)buf1605);
    *(uint32_t*)buf1606 = rsAtomicMin((volatile uint32_t*) buf1607, *(uint32_t*)buf1608);
    *(int32_t*)buf1609 = rsAtomicMin((volatile int32_t*) buf1610, *(int32_t*)buf1611);
    *(int32_t*)buf1612 = rsAtomicOr((volatile int32_t*) buf1613, *(int32_t*)buf1614);
    *(int32_t*)buf1615 = rsAtomicSub((volatile int32_t*) buf1616, *(int32_t*)buf1617);
    *(int32_t*)buf1618 = rsAtomicXor((volatile int32_t*) buf1619, *(int32_t*)buf1620);
    *(char*)buf1621 = rsClamp(*(char*)buf1622, *(char*)buf1623, *(char*)buf1624);
    *(uchar*)buf1625 = rsClamp(*(uchar*)buf1626, *(uchar*)buf1627, *(uchar*)buf1628);
    *(short*)buf1629 = rsClamp(*(short*)buf1630, *(short*)buf1631, *(short*)buf1632);
    *(ushort*)buf1633 = rsClamp(*(ushort*)buf1634, *(ushort*)buf1635, *(ushort*)buf1636);
    *(int*)buf1637 = rsClamp(*(int*)buf1638, *(int*)buf1639, *(int*)buf1640);
    *(uint*)buf1641 = rsClamp(*(uint*)buf1642, *(uint*)buf1643, *(uint*)buf1644);
    rsClearObject((rs_element*) buf1645);
    rsClearObject((rs_type*) buf1646);
    rsClearObject((rs_allocation*) buf1647);
    rsClearObject((rs_sampler*) buf1648);
    rsClearObject((rs_script*) buf1649);
#ifndef __LP64__
    rsClearObject((rs_mesh*) buf1650);
    rsClearObject((rs_program_fragment*) buf1651);
    rsClearObject((rs_program_vertex*) buf1652);
    rsClearObject((rs_program_raster*) buf1653);
    rsClearObject((rs_program_store*) buf1654);
    rsClearObject((rs_font*) buf1655);
#endif
    rsDebug((const char*) buf1656, *(double*)buf1657);
    rsDebug((const char*) buf1658, *(int*)buf1659);
    rsDebug((const char*) buf1660, *(uint*)buf1661);
    rsDebug((const char*) buf1662, *(long*)buf1663);
    rsDebug((const char*) buf1664, *(ulong*)buf1665);
    rsDebug((const char*) buf1666, *(int2*)buf1667);
    rsDebug((const char*) buf1668, *(int3*)buf1669);
    rsDebug((const char*) buf1670, *(int4*)buf1671);
    rsDebug((const char*) buf1672, *(uint2*)buf1673);
    rsDebug((const char*) buf1674, *(uint3*)buf1675);
    rsDebug((const char*) buf1676, *(uint4*)buf1677);
    rsDebug((const char*) buf1678, *(long2*)buf1679);
    rsDebug((const char*) buf1680, *(long3*)buf1681);
    rsDebug((const char*) buf1682, *(long4*)buf1683);
    rsDebug((const char*) buf1684, *(ulong2*)buf1685);
    rsDebug((const char*) buf1686, *(ulong3*)buf1687);
    rsDebug((const char*) buf1688, *(ulong4*)buf1689);
    rsDebug((const char*) buf1690, *(float*)buf1691);
    rsDebug((const char*) buf1692, *(float2*)buf1693);
    rsDebug((const char*) buf1694, *(float3*)buf1695);
    rsDebug((const char*) buf1696, *(float4*)buf1697);
    rsDebug((const char*) buf1698, *(char*)buf1699);
    rsDebug((const char*) buf1700, *(char2*)buf1701);
    rsDebug((const char*) buf1702, *(char3*)buf1703);
    rsDebug((const char*) buf1704, *(char4*)buf1705);
    rsDebug((const char*) buf1706, *(uchar*)buf1707);
    rsDebug((const char*) buf1708, *(uchar2*)buf1709);
    rsDebug((const char*) buf1710, *(uchar3*)buf1711);
    rsDebug((const char*) buf1712, *(uchar4*)buf1713);
    rsDebug((const char*) buf1714, *(short*)buf1715);
    rsDebug((const char*) buf1716, *(short2*)buf1717);
    rsDebug((const char*) buf1718, *(short3*)buf1719);
    rsDebug((const char*) buf1720, *(short4*)buf1721);
    rsDebug((const char*) buf1722, *(ushort*)buf1723);
    rsDebug((const char*) buf1724, *(ushort2*)buf1725);
    rsDebug((const char*) buf1726, *(ushort3*)buf1727);
    rsDebug((const char*) buf1728, *(ushort4*)buf1729);
    rsDebug((const char*) buf1730, *(float*)buf1731, *(float*)buf1732);
    rsDebug((const char*) buf1733, *(float*)buf1734, *(float*)buf1735, *(float*)buf1736);
    rsDebug((const char*) buf1737, *(float*)buf1738, *(float*)buf1739, *(float*)buf1740, *(float*)buf1741);
    rsDebug((const char*) buf1742, *(long long*)buf1743);
    rsDebug((const char*) buf1744, *(unsigned long long*)buf1745);
    rsDebug((const char*) buf1746, (const void*) buf1747);
    rsDebug((const char*) buf1748, (const rs_matrix4x4*) buf1749);
    rsDebug((const char*) buf1750, (const rs_matrix3x3*) buf1751);
    rsDebug((const char*) buf1752, (const rs_matrix2x2*) buf1753);
    *(uint32_t*)buf1754 = rsElementGetBytesSize(*(rs_element*)buf1755);
    *(rs_data_kind*)buf1756 = rsElementGetDataKind(*(rs_element*)buf1757);
    *(rs_data_type*)buf1758 = rsElementGetDataType(*(rs_element*)buf1759);
    *(rs_element*)buf1760 = rsElementGetSubElement(*(rs_element*)buf1761, *(uint32_t*)buf1762);
    *(uint32_t*)buf1763 = rsElementGetSubElementArraySize(*(rs_element*)buf1764, *(uint32_t*)buf1765);
    *(uint32_t*)buf1766 = rsElementGetSubElementCount(*(rs_element*)buf1767);
    *(uint32_t*)buf1768 = rsElementGetSubElementName(*(rs_element*)buf1769, *(uint32_t*)buf1770, (char*) buf1771, *(uint32_t*)buf1772);
    *(uint32_t*)buf1773 = rsElementGetSubElementNameLength(*(rs_element*)buf1774, *(uint32_t*)buf1775);
    *(uint32_t*)buf1776 = rsElementGetSubElementOffsetBytes(*(rs_element*)buf1777, *(uint32_t*)buf1778);
    *(uint32_t*)buf1779 = rsElementGetVectorSize(*(rs_element*)buf1780);
    rsExtractFrustumPlanes((const rs_matrix4x4*) buf1781, (float4*) buf1782, (float4*) buf1783, (float4*) buf1784, (float4*) buf1785, (float4*) buf1786, (float4*) buf1787);
    rsForEach(*(rs_script*)buf1788, *(rs_allocation*)buf1789, *(rs_allocation*)buf1790, (const void*) buf1791, *(size_t*)buf1792, (const rs_script_call_t*) buf1793);
    rsForEach(*(rs_script*)buf1794, *(rs_allocation*)buf1795, *(rs_allocation*)buf1796, (const void*) buf1797, *(size_t*)buf1798);
    rsForEach(*(rs_script*)buf1799, *(rs_allocation*)buf1800, *(rs_allocation*)buf1801);
    *(float*)buf1802 = rsFrac(*(float*)buf1803);
    *(rs_allocation*)buf1804 = rsGetAllocation((const void*) buf1805);
    *(float*)buf1806 = rsGetDt();
    *(const void**)buf1807 = rsGetElementAt(*(rs_allocation*)buf1808, *(uint32_t*)buf1809);
    *(const void**)buf1810 = rsGetElementAt(*(rs_allocation*)buf1811, *(uint32_t*)buf1812, *(uint32_t*)buf1813);
    *(const void**)buf1814 = rsGetElementAt(*(rs_allocation*)buf1815, *(uint32_t*)buf1816, *(uint32_t*)buf1817, *(uint32_t*)buf1818);
    *(float*)buf1819 = rsGetElementAt_float(*(rs_allocation*)buf1820, *(uint32_t*)buf1821);
    *(float2*)buf1822 = rsGetElementAt_float2(*(rs_allocation*)buf1823, *(uint32_t*)buf1824);
    *(float3*)buf1825 = rsGetElementAt_float3(*(rs_allocation*)buf1826, *(uint32_t*)buf1827);
    *(float4*)buf1828 = rsGetElementAt_float4(*(rs_allocation*)buf1829, *(uint32_t*)buf1830);
    *(double*)buf1831 = rsGetElementAt_double(*(rs_allocation*)buf1832, *(uint32_t*)buf1833);
    *(double2*)buf1834 = rsGetElementAt_double2(*(rs_allocation*)buf1835, *(uint32_t*)buf1836);
    *(double3*)buf1837 = rsGetElementAt_double3(*(rs_allocation*)buf1838, *(uint32_t*)buf1839);
    *(double4*)buf1840 = rsGetElementAt_double4(*(rs_allocation*)buf1841, *(uint32_t*)buf1842);
    *(char*)buf1843 = rsGetElementAt_char(*(rs_allocation*)buf1844, *(uint32_t*)buf1845);
    *(char2*)buf1846 = rsGetElementAt_char2(*(rs_allocation*)buf1847, *(uint32_t*)buf1848);
    *(char3*)buf1849 = rsGetElementAt_char3(*(rs_allocation*)buf1850, *(uint32_t*)buf1851);
    *(char4*)buf1852 = rsGetElementAt_char4(*(rs_allocation*)buf1853, *(uint32_t*)buf1854);
    *(uchar*)buf1855 = rsGetElementAt_uchar(*(rs_allocation*)buf1856, *(uint32_t*)buf1857);
    *(uchar2*)buf1858 = rsGetElementAt_uchar2(*(rs_allocation*)buf1859, *(uint32_t*)buf1860);
    *(uchar3*)buf1861 = rsGetElementAt_uchar3(*(rs_allocation*)buf1862, *(uint32_t*)buf1863);
    *(uchar4*)buf1864 = rsGetElementAt_uchar4(*(rs_allocation*)buf1865, *(uint32_t*)buf1866);
    *(short*)buf1867 = rsGetElementAt_short(*(rs_allocation*)buf1868, *(uint32_t*)buf1869);
    *(short2*)buf1870 = rsGetElementAt_short2(*(rs_allocation*)buf1871, *(uint32_t*)buf1872);
    *(short3*)buf1873 = rsGetElementAt_short3(*(rs_allocation*)buf1874, *(uint32_t*)buf1875);
    *(short4*)buf1876 = rsGetElementAt_short4(*(rs_allocation*)buf1877, *(uint32_t*)buf1878);
    *(ushort*)buf1879 = rsGetElementAt_ushort(*(rs_allocation*)buf1880, *(uint32_t*)buf1881);
    *(ushort2*)buf1882 = rsGetElementAt_ushort2(*(rs_allocation*)buf1883, *(uint32_t*)buf1884);
    *(ushort3*)buf1885 = rsGetElementAt_ushort3(*(rs_allocation*)buf1886, *(uint32_t*)buf1887);
    *(ushort4*)buf1888 = rsGetElementAt_ushort4(*(rs_allocation*)buf1889, *(uint32_t*)buf1890);
    *(int*)buf1891 = rsGetElementAt_int(*(rs_allocation*)buf1892, *(uint32_t*)buf1893);
    *(int2*)buf1894 = rsGetElementAt_int2(*(rs_allocation*)buf1895, *(uint32_t*)buf1896);
    *(int3*)buf1897 = rsGetElementAt_int3(*(rs_allocation*)buf1898, *(uint32_t*)buf1899);
    *(int4*)buf1900 = rsGetElementAt_int4(*(rs_allocation*)buf1901, *(uint32_t*)buf1902);
    *(uint*)buf1903 = rsGetElementAt_uint(*(rs_allocation*)buf1904, *(uint32_t*)buf1905);
    *(uint2*)buf1906 = rsGetElementAt_uint2(*(rs_allocation*)buf1907, *(uint32_t*)buf1908);
    *(uint3*)buf1909 = rsGetElementAt_uint3(*(rs_allocation*)buf1910, *(uint32_t*)buf1911);
    *(uint4*)buf1912 = rsGetElementAt_uint4(*(rs_allocation*)buf1913, *(uint32_t*)buf1914);
    *(long*)buf1915 = rsGetElementAt_long(*(rs_allocation*)buf1916, *(uint32_t*)buf1917);
    *(long2*)buf1918 = rsGetElementAt_long2(*(rs_allocation*)buf1919, *(uint32_t*)buf1920);
    *(long3*)buf1921 = rsGetElementAt_long3(*(rs_allocation*)buf1922, *(uint32_t*)buf1923);
    *(long4*)buf1924 = rsGetElementAt_long4(*(rs_allocation*)buf1925, *(uint32_t*)buf1926);
    *(ulong*)buf1927 = rsGetElementAt_ulong(*(rs_allocation*)buf1928, *(uint32_t*)buf1929);
    *(ulong2*)buf1930 = rsGetElementAt_ulong2(*(rs_allocation*)buf1931, *(uint32_t*)buf1932);
    *(ulong3*)buf1933 = rsGetElementAt_ulong3(*(rs_allocation*)buf1934, *(uint32_t*)buf1935);
    *(ulong4*)buf1936 = rsGetElementAt_ulong4(*(rs_allocation*)buf1937, *(uint32_t*)buf1938);
    *(float*)buf1939 = rsGetElementAt_float(*(rs_allocation*)buf1940, *(uint32_t*)buf1941, *(uint32_t*)buf1942);
    *(float2*)buf1943 = rsGetElementAt_float2(*(rs_allocation*)buf1944, *(uint32_t*)buf1945, *(uint32_t*)buf1946);
    *(float3*)buf1947 = rsGetElementAt_float3(*(rs_allocation*)buf1948, *(uint32_t*)buf1949, *(uint32_t*)buf1950);
    *(float4*)buf1951 = rsGetElementAt_float4(*(rs_allocation*)buf1952, *(uint32_t*)buf1953, *(uint32_t*)buf1954);
    *(double*)buf1955 = rsGetElementAt_double(*(rs_allocation*)buf1956, *(uint32_t*)buf1957, *(uint32_t*)buf1958);
    *(double2*)buf1959 = rsGetElementAt_double2(*(rs_allocation*)buf1960, *(uint32_t*)buf1961, *(uint32_t*)buf1962);
    *(double3*)buf1963 = rsGetElementAt_double3(*(rs_allocation*)buf1964, *(uint32_t*)buf1965, *(uint32_t*)buf1966);
    *(double4*)buf1967 = rsGetElementAt_double4(*(rs_allocation*)buf1968, *(uint32_t*)buf1969, *(uint32_t*)buf1970);
    *(char*)buf1971 = rsGetElementAt_char(*(rs_allocation*)buf1972, *(uint32_t*)buf1973, *(uint32_t*)buf1974);
    *(char2*)buf1975 = rsGetElementAt_char2(*(rs_allocation*)buf1976, *(uint32_t*)buf1977, *(uint32_t*)buf1978);
    *(char3*)buf1979 = rsGetElementAt_char3(*(rs_allocation*)buf1980, *(uint32_t*)buf1981, *(uint32_t*)buf1982);
    *(char4*)buf1983 = rsGetElementAt_char4(*(rs_allocation*)buf1984, *(uint32_t*)buf1985, *(uint32_t*)buf1986);
    *(uchar*)buf1987 = rsGetElementAt_uchar(*(rs_allocation*)buf1988, *(uint32_t*)buf1989, *(uint32_t*)buf1990);
    *(uchar2*)buf1991 = rsGetElementAt_uchar2(*(rs_allocation*)buf1992, *(uint32_t*)buf1993, *(uint32_t*)buf1994);
    *(uchar3*)buf1995 = rsGetElementAt_uchar3(*(rs_allocation*)buf1996, *(uint32_t*)buf1997, *(uint32_t*)buf1998);
    *(uchar4*)buf1999 = rsGetElementAt_uchar4(*(rs_allocation*)buf2000, *(uint32_t*)buf2001, *(uint32_t*)buf2002);
    *(short*)buf2003 = rsGetElementAt_short(*(rs_allocation*)buf2004, *(uint32_t*)buf2005, *(uint32_t*)buf2006);
    *(short2*)buf2007 = rsGetElementAt_short2(*(rs_allocation*)buf2008, *(uint32_t*)buf2009, *(uint32_t*)buf2010);
    *(short3*)buf2011 = rsGetElementAt_short3(*(rs_allocation*)buf2012, *(uint32_t*)buf2013, *(uint32_t*)buf2014);
    *(short4*)buf2015 = rsGetElementAt_short4(*(rs_allocation*)buf2016, *(uint32_t*)buf2017, *(uint32_t*)buf2018);
    *(ushort*)buf2019 = rsGetElementAt_ushort(*(rs_allocation*)buf2020, *(uint32_t*)buf2021, *(uint32_t*)buf2022);
    *(ushort2*)buf2023 = rsGetElementAt_ushort2(*(rs_allocation*)buf2024, *(uint32_t*)buf2025, *(uint32_t*)buf2026);
    *(ushort3*)buf2027 = rsGetElementAt_ushort3(*(rs_allocation*)buf2028, *(uint32_t*)buf2029, *(uint32_t*)buf2030);
    *(ushort4*)buf2031 = rsGetElementAt_ushort4(*(rs_allocation*)buf2032, *(uint32_t*)buf2033, *(uint32_t*)buf2034);
    *(int*)buf2035 = rsGetElementAt_int(*(rs_allocation*)buf2036, *(uint32_t*)buf2037, *(uint32_t*)buf2038);
    *(int2*)buf2039 = rsGetElementAt_int2(*(rs_allocation*)buf2040, *(uint32_t*)buf2041, *(uint32_t*)buf2042);
    *(int3*)buf2043 = rsGetElementAt_int3(*(rs_allocation*)buf2044, *(uint32_t*)buf2045, *(uint32_t*)buf2046);
    *(int4*)buf2047 = rsGetElementAt_int4(*(rs_allocation*)buf2048, *(uint32_t*)buf2049, *(uint32_t*)buf2050);
    *(uint*)buf2051 = rsGetElementAt_uint(*(rs_allocation*)buf2052, *(uint32_t*)buf2053, *(uint32_t*)buf2054);
    *(uint2*)buf2055 = rsGetElementAt_uint2(*(rs_allocation*)buf2056, *(uint32_t*)buf2057, *(uint32_t*)buf2058);
    *(uint3*)buf2059 = rsGetElementAt_uint3(*(rs_allocation*)buf2060, *(uint32_t*)buf2061, *(uint32_t*)buf2062);
    *(uint4*)buf2063 = rsGetElementAt_uint4(*(rs_allocation*)buf2064, *(uint32_t*)buf2065, *(uint32_t*)buf2066);
    *(long*)buf2067 = rsGetElementAt_long(*(rs_allocation*)buf2068, *(uint32_t*)buf2069, *(uint32_t*)buf2070);
    *(long2*)buf2071 = rsGetElementAt_long2(*(rs_allocation*)buf2072, *(uint32_t*)buf2073, *(uint32_t*)buf2074);
    *(long3*)buf2075 = rsGetElementAt_long3(*(rs_allocation*)buf2076, *(uint32_t*)buf2077, *(uint32_t*)buf2078);
    *(long4*)buf2079 = rsGetElementAt_long4(*(rs_allocation*)buf2080, *(uint32_t*)buf2081, *(uint32_t*)buf2082);
    *(ulong*)buf2083 = rsGetElementAt_ulong(*(rs_allocation*)buf2084, *(uint32_t*)buf2085, *(uint32_t*)buf2086);
    *(ulong2*)buf2087 = rsGetElementAt_ulong2(*(rs_allocation*)buf2088, *(uint32_t*)buf2089, *(uint32_t*)buf2090);
    *(ulong3*)buf2091 = rsGetElementAt_ulong3(*(rs_allocation*)buf2092, *(uint32_t*)buf2093, *(uint32_t*)buf2094);
    *(ulong4*)buf2095 = rsGetElementAt_ulong4(*(rs_allocation*)buf2096, *(uint32_t*)buf2097, *(uint32_t*)buf2098);
    *(float*)buf2099 = rsGetElementAt_float(*(rs_allocation*)buf2100, *(uint32_t*)buf2101, *(uint32_t*)buf2102, *(uint32_t*)buf2103);
    *(float2*)buf2104 = rsGetElementAt_float2(*(rs_allocation*)buf2105, *(uint32_t*)buf2106, *(uint32_t*)buf2107, *(uint32_t*)buf2108);
    *(float3*)buf2109 = rsGetElementAt_float3(*(rs_allocation*)buf2110, *(uint32_t*)buf2111, *(uint32_t*)buf2112, *(uint32_t*)buf2113);
    *(float4*)buf2114 = rsGetElementAt_float4(*(rs_allocation*)buf2115, *(uint32_t*)buf2116, *(uint32_t*)buf2117, *(uint32_t*)buf2118);
    *(double*)buf2119 = rsGetElementAt_double(*(rs_allocation*)buf2120, *(uint32_t*)buf2121, *(uint32_t*)buf2122, *(uint32_t*)buf2123);
    *(double2*)buf2124 = rsGetElementAt_double2(*(rs_allocation*)buf2125, *(uint32_t*)buf2126, *(uint32_t*)buf2127, *(uint32_t*)buf2128);
    *(double3*)buf2129 = rsGetElementAt_double3(*(rs_allocation*)buf2130, *(uint32_t*)buf2131, *(uint32_t*)buf2132, *(uint32_t*)buf2133);
    *(double4*)buf2134 = rsGetElementAt_double4(*(rs_allocation*)buf2135, *(uint32_t*)buf2136, *(uint32_t*)buf2137, *(uint32_t*)buf2138);
    *(char*)buf2139 = rsGetElementAt_char(*(rs_allocation*)buf2140, *(uint32_t*)buf2141, *(uint32_t*)buf2142, *(uint32_t*)buf2143);
    *(char2*)buf2144 = rsGetElementAt_char2(*(rs_allocation*)buf2145, *(uint32_t*)buf2146, *(uint32_t*)buf2147, *(uint32_t*)buf2148);
    *(char3*)buf2149 = rsGetElementAt_char3(*(rs_allocation*)buf2150, *(uint32_t*)buf2151, *(uint32_t*)buf2152, *(uint32_t*)buf2153);
    *(char4*)buf2154 = rsGetElementAt_char4(*(rs_allocation*)buf2155, *(uint32_t*)buf2156, *(uint32_t*)buf2157, *(uint32_t*)buf2158);
    *(uchar*)buf2159 = rsGetElementAt_uchar(*(rs_allocation*)buf2160, *(uint32_t*)buf2161, *(uint32_t*)buf2162, *(uint32_t*)buf2163);
    *(uchar2*)buf2164 = rsGetElementAt_uchar2(*(rs_allocation*)buf2165, *(uint32_t*)buf2166, *(uint32_t*)buf2167, *(uint32_t*)buf2168);
    *(uchar3*)buf2169 = rsGetElementAt_uchar3(*(rs_allocation*)buf2170, *(uint32_t*)buf2171, *(uint32_t*)buf2172, *(uint32_t*)buf2173);
    *(uchar4*)buf2174 = rsGetElementAt_uchar4(*(rs_allocation*)buf2175, *(uint32_t*)buf2176, *(uint32_t*)buf2177, *(uint32_t*)buf2178);
    *(short*)buf2179 = rsGetElementAt_short(*(rs_allocation*)buf2180, *(uint32_t*)buf2181, *(uint32_t*)buf2182, *(uint32_t*)buf2183);
    *(short2*)buf2184 = rsGetElementAt_short2(*(rs_allocation*)buf2185, *(uint32_t*)buf2186, *(uint32_t*)buf2187, *(uint32_t*)buf2188);
    *(short3*)buf2189 = rsGetElementAt_short3(*(rs_allocation*)buf2190, *(uint32_t*)buf2191, *(uint32_t*)buf2192, *(uint32_t*)buf2193);
    *(short4*)buf2194 = rsGetElementAt_short4(*(rs_allocation*)buf2195, *(uint32_t*)buf2196, *(uint32_t*)buf2197, *(uint32_t*)buf2198);
    *(ushort*)buf2199 = rsGetElementAt_ushort(*(rs_allocation*)buf2200, *(uint32_t*)buf2201, *(uint32_t*)buf2202, *(uint32_t*)buf2203);
    *(ushort2*)buf2204 = rsGetElementAt_ushort2(*(rs_allocation*)buf2205, *(uint32_t*)buf2206, *(uint32_t*)buf2207, *(uint32_t*)buf2208);
    *(ushort3*)buf2209 = rsGetElementAt_ushort3(*(rs_allocation*)buf2210, *(uint32_t*)buf2211, *(uint32_t*)buf2212, *(uint32_t*)buf2213);
    *(ushort4*)buf2214 = rsGetElementAt_ushort4(*(rs_allocation*)buf2215, *(uint32_t*)buf2216, *(uint32_t*)buf2217, *(uint32_t*)buf2218);
    *(int*)buf2219 = rsGetElementAt_int(*(rs_allocation*)buf2220, *(uint32_t*)buf2221, *(uint32_t*)buf2222, *(uint32_t*)buf2223);
    *(int2*)buf2224 = rsGetElementAt_int2(*(rs_allocation*)buf2225, *(uint32_t*)buf2226, *(uint32_t*)buf2227, *(uint32_t*)buf2228);
    *(int3*)buf2229 = rsGetElementAt_int3(*(rs_allocation*)buf2230, *(uint32_t*)buf2231, *(uint32_t*)buf2232, *(uint32_t*)buf2233);
    *(int4*)buf2234 = rsGetElementAt_int4(*(rs_allocation*)buf2235, *(uint32_t*)buf2236, *(uint32_t*)buf2237, *(uint32_t*)buf2238);
    *(uint*)buf2239 = rsGetElementAt_uint(*(rs_allocation*)buf2240, *(uint32_t*)buf2241, *(uint32_t*)buf2242, *(uint32_t*)buf2243);
    *(uint2*)buf2244 = rsGetElementAt_uint2(*(rs_allocation*)buf2245, *(uint32_t*)buf2246, *(uint32_t*)buf2247, *(uint32_t*)buf2248);
    *(uint3*)buf2249 = rsGetElementAt_uint3(*(rs_allocation*)buf2250, *(uint32_t*)buf2251, *(uint32_t*)buf2252, *(uint32_t*)buf2253);
    *(uint4*)buf2254 = rsGetElementAt_uint4(*(rs_allocation*)buf2255, *(uint32_t*)buf2256, *(uint32_t*)buf2257, *(uint32_t*)buf2258);
    *(long*)buf2259 = rsGetElementAt_long(*(rs_allocation*)buf2260, *(uint32_t*)buf2261, *(uint32_t*)buf2262, *(uint32_t*)buf2263);
    *(long2*)buf2264 = rsGetElementAt_long2(*(rs_allocation*)buf2265, *(uint32_t*)buf2266, *(uint32_t*)buf2267, *(uint32_t*)buf2268);
    *(long3*)buf2269 = rsGetElementAt_long3(*(rs_allocation*)buf2270, *(uint32_t*)buf2271, *(uint32_t*)buf2272, *(uint32_t*)buf2273);
    *(long4*)buf2274 = rsGetElementAt_long4(*(rs_allocation*)buf2275, *(uint32_t*)buf2276, *(uint32_t*)buf2277, *(uint32_t*)buf2278);
    *(ulong*)buf2279 = rsGetElementAt_ulong(*(rs_allocation*)buf2280, *(uint32_t*)buf2281, *(uint32_t*)buf2282, *(uint32_t*)buf2283);
    *(ulong2*)buf2284 = rsGetElementAt_ulong2(*(rs_allocation*)buf2285, *(uint32_t*)buf2286, *(uint32_t*)buf2287, *(uint32_t*)buf2288);
    *(ulong3*)buf2289 = rsGetElementAt_ulong3(*(rs_allocation*)buf2290, *(uint32_t*)buf2291, *(uint32_t*)buf2292, *(uint32_t*)buf2293);
    *(ulong4*)buf2294 = rsGetElementAt_ulong4(*(rs_allocation*)buf2295, *(uint32_t*)buf2296, *(uint32_t*)buf2297, *(uint32_t*)buf2298);
    *(uchar*)buf2299 = rsGetElementAtYuv_uchar_U(*(rs_allocation*)buf2300, *(uint32_t*)buf2301, *(uint32_t*)buf2302);
    *(uchar*)buf2303 = rsGetElementAtYuv_uchar_V(*(rs_allocation*)buf2304, *(uint32_t*)buf2305, *(uint32_t*)buf2306);
    *(uchar*)buf2307 = rsGetElementAtYuv_uchar_Y(*(rs_allocation*)buf2308, *(uint32_t*)buf2309, *(uint32_t*)buf2310);
    *(bool*)buf2311 = rsIsObject(*(rs_element*)buf2312);
    *(bool*)buf2313 = rsIsObject(*(rs_type*)buf2314);
    *(bool*)buf2315 = rsIsObject(*(rs_allocation*)buf2316);
    *(bool*)buf2317 = rsIsObject(*(rs_sampler*)buf2318);
    *(bool*)buf2319 = rsIsObject(*(rs_script*)buf2320);
#ifndef __LP64__
    *(bool*)buf2321 = rsIsObject(*(rs_mesh*)buf2322);
    *(bool*)buf2323 = rsIsObject(*(rs_program_fragment*)buf2324);
    *(bool*)buf2325 = rsIsObject(*(rs_program_vertex*)buf2326);
    *(bool*)buf2327 = rsIsObject(*(rs_program_raster*)buf2328);
    *(bool*)buf2329 = rsIsObject(*(rs_program_store*)buf2330);
    *(bool*)buf2331 = rsIsObject(*(rs_font*)buf2332);
#endif
    *(bool*)buf2333 = rsIsSphereInFrustum((float4*) buf2334, (float4*) buf2335, (float4*) buf2336, (float4*) buf2337, (float4*) buf2338, (float4*) buf2339, (float4*) buf2340);
    *(rs_tm**)buf2341 = rsLocaltime((rs_tm*) buf2342, (const rs_time_t*) buf2343);
    *(float*)buf2344 = rsMatrixGet((const rs_matrix4x4*) buf2345, *(uint32_t*)buf2346, *(uint32_t*)buf2347);
    *(float*)buf2348 = rsMatrixGet((const rs_matrix3x3*) buf2349, *(uint32_t*)buf2350, *(uint32_t*)buf2351);
    *(float*)buf2352 = rsMatrixGet((const rs_matrix2x2*) buf2353, *(uint32_t*)buf2354, *(uint32_t*)buf2355);
    *(bool*)buf2356 = rsMatrixInverse((rs_matrix4x4*) buf2357);
    *(bool*)buf2358 = rsMatrixInverseTranspose((rs_matrix4x4*) buf2359);
    rsMatrixLoad((rs_matrix4x4*) buf2360, (const float*) buf2361);
    rsMatrixLoad((rs_matrix3x3*) buf2362, (const float*) buf2363);
    rsMatrixLoad((rs_matrix2x2*) buf2364, (const float*) buf2365);
    rsMatrixLoad((rs_matrix4x4*) buf2366, (const rs_matrix4x4*) buf2367);
    rsMatrixLoad((rs_matrix3x3*) buf2368, (const rs_matrix3x3*) buf2369);
    rsMatrixLoad((rs_matrix2x2*) buf2370, (const rs_matrix2x2*) buf2371);
    rsMatrixLoad((rs_matrix4x4*) buf2372, (const rs_matrix3x3*) buf2373);
    rsMatrixLoad((rs_matrix4x4*) buf2374, (const rs_matrix2x2*) buf2375);
    rsMatrixLoadFrustum((rs_matrix4x4*) buf2376, *(float*)buf2377, *(float*)buf2378, *(float*)buf2379, *(float*)buf2380, *(float*)buf2381, *(float*)buf2382);
    rsMatrixLoadIdentity((rs_matrix4x4*) buf2383);
    rsMatrixLoadIdentity((rs_matrix3x3*) buf2384);
    rsMatrixLoadIdentity((rs_matrix2x2*) buf2385);
    rsMatrixLoadMultiply((rs_matrix4x4*) buf2386, (const rs_matrix4x4*) buf2387, (const rs_matrix4x4*) buf2388);
    rsMatrixLoadMultiply((rs_matrix3x3*) buf2389, (const rs_matrix3x3*) buf2390, (const rs_matrix3x3*) buf2391);
    rsMatrixLoadMultiply((rs_matrix2x2*) buf2392, (const rs_matrix2x2*) buf2393, (const rs_matrix2x2*) buf2394);
    rsMatrixLoadOrtho((rs_matrix4x4*) buf2395, *(float*)buf2396, *(float*)buf2397, *(float*)buf2398, *(float*)buf2399, *(float*)buf2400, *(float*)buf2401);
    rsMatrixLoadPerspective((rs_matrix4x4*) buf2402, *(float*)buf2403, *(float*)buf2404, *(float*)buf2405, *(float*)buf2406);
    rsMatrixLoadRotate((rs_matrix4x4*) buf2407, *(float*)buf2408, *(float*)buf2409, *(float*)buf2410, *(float*)buf2411);
    rsMatrixLoadScale((rs_matrix4x4*) buf2412, *(float*)buf2413, *(float*)buf2414, *(float*)buf2415);
    rsMatrixLoadTranslate((rs_matrix4x4*) buf2416, *(float*)buf2417, *(float*)buf2418, *(float*)buf2419);
    rsMatrixMultiply((rs_matrix4x4*) buf2420, (const rs_matrix4x4*) buf2421);
    rsMatrixMultiply((rs_matrix3x3*) buf2422, (const rs_matrix3x3*) buf2423);
    rsMatrixMultiply((rs_matrix2x2*) buf2424, (const rs_matrix2x2*) buf2425);
    *(float4*)buf2426 = rsMatrixMultiply((const rs_matrix4x4*) buf2427, *(float4*)buf2428);
    *(float4*)buf2429 = rsMatrixMultiply((const rs_matrix4x4*) buf2430, *(float3*)buf2431);
    *(float4*)buf2432 = rsMatrixMultiply((const rs_matrix4x4*) buf2433, *(float2*)buf2434);
    *(float3*)buf2435 = rsMatrixMultiply((const rs_matrix3x3*) buf2436, *(float3*)buf2437);
    *(float3*)buf2438 = rsMatrixMultiply((const rs_matrix3x3*) buf2439, *(float2*)buf2440);
    *(float2*)buf2441 = rsMatrixMultiply((const rs_matrix2x2*) buf2442, *(float2*)buf2443);
    rsMatrixRotate((rs_matrix4x4*) buf2444, *(float*)buf2445, *(float*)buf2446, *(float*)buf2447, *(float*)buf2448);
    rsMatrixScale((rs_matrix4x4*) buf2449, *(float*)buf2450, *(float*)buf2451, *(float*)buf2452);
    rsMatrixSet((rs_matrix4x4*) buf2453, *(uint32_t*)buf2454, *(uint32_t*)buf2455, *(float*)buf2456);
    rsMatrixSet((rs_matrix3x3*) buf2457, *(uint32_t*)buf2458, *(uint32_t*)buf2459, *(float*)buf2460);
    rsMatrixSet((rs_matrix2x2*) buf2461, *(uint32_t*)buf2462, *(uint32_t*)buf2463, *(float*)buf2464);
    rsMatrixTranslate((rs_matrix4x4*) buf2465, *(float*)buf2466, *(float*)buf2467, *(float*)buf2468);
    rsMatrixTranspose((rs_matrix4x4*) buf2469);
    rsMatrixTranspose((rs_matrix3x3*) buf2470);
    rsMatrixTranspose((rs_matrix2x2*) buf2471);
    *(uchar4*)buf2472 = rsPackColorTo8888(*(float*)buf2473, *(float*)buf2474, *(float*)buf2475);
    *(uchar4*)buf2476 = rsPackColorTo8888(*(float*)buf2477, *(float*)buf2478, *(float*)buf2479, *(float*)buf2480);
    *(uchar4*)buf2481 = rsPackColorTo8888(*(float3*)buf2482);
    *(uchar4*)buf2483 = rsPackColorTo8888(*(float4*)buf2484);
    rsQuaternionAdd((rs_quaternion*) buf2485, (const rs_quaternion*) buf2486);
    rsQuaternionConjugate((rs_quaternion*) buf2487);
    *(float*)buf2488 = rsQuaternionDot((const rs_quaternion*) buf2489, (const rs_quaternion*) buf2490);
    rsQuaternionGetMatrixUnit((rs_matrix4x4*) buf2491, (const rs_quaternion*) buf2492);
    rsQuaternionLoadRotate((rs_quaternion*) buf2493, *(float*)buf2494, *(float*)buf2495, *(float*)buf2496, *(float*)buf2497);
    rsQuaternionLoadRotateUnit((rs_quaternion*) buf2498, *(float*)buf2499, *(float*)buf2500, *(float*)buf2501, *(float*)buf2502);
    rsQuaternionMultiply((rs_quaternion*) buf2503, *(float*)buf2504);
    rsQuaternionMultiply((rs_quaternion*) buf2505, (const rs_quaternion*) buf2506);
    rsQuaternionNormalize((rs_quaternion*) buf2507);
    rsQuaternionSet((rs_quaternion*) buf2508, *(float*)buf2509, *(float*)buf2510, *(float*)buf2511, *(float*)buf2512);
    rsQuaternionSet((rs_quaternion*) buf2513, (const rs_quaternion*) buf2514);
    rsQuaternionSlerp((rs_quaternion*) buf2515, (const rs_quaternion*) buf2516, (const rs_quaternion*) buf2517, *(float*)buf2518);
    *(int*)buf2519 = rsRand(*(int*)buf2520);
    *(int*)buf2521 = rsRand(*(int*)buf2522, *(int*)buf2523);
    *(float*)buf2524 = rsRand(*(float*)buf2525);
    *(float*)buf2526 = rsRand(*(float*)buf2527, *(float*)buf2528);
    *(float4*)buf2529 = rsSample(*(rs_allocation*)buf2530, *(rs_sampler*)buf2531, *(float*)buf2532);
    *(float4*)buf2533 = rsSample(*(rs_allocation*)buf2534, *(rs_sampler*)buf2535, *(float*)buf2536, *(float*)buf2537);
    *(float4*)buf2538 = rsSample(*(rs_allocation*)buf2539, *(rs_sampler*)buf2540, *(float2*)buf2541);
    *(float4*)buf2542 = rsSample(*(rs_allocation*)buf2543, *(rs_sampler*)buf2544, *(float2*)buf2545, *(float*)buf2546);
    *(float*)buf2547 = rsSamplerGetAnisotropy(*(rs_sampler*)buf2548);
    *(rs_sampler_value*)buf2549 = rsSamplerGetMagnification(*(rs_sampler*)buf2550);
    *(rs_sampler_value*)buf2551 = rsSamplerGetMinification(*(rs_sampler*)buf2552);
    *(rs_sampler_value*)buf2553 = rsSamplerGetWrapS(*(rs_sampler*)buf2554);
    *(rs_sampler_value*)buf2555 = rsSamplerGetWrapT(*(rs_sampler*)buf2556);
    *(bool*)buf2557 = rsSendToClient(*(int*)buf2558);
    *(bool*)buf2559 = rsSendToClient(*(int*)buf2560, (const void*) buf2561, *(uint*)buf2562);
    rsSendToClientBlocking(*(int*)buf2563);
    rsSendToClientBlocking(*(int*)buf2564, (const void*) buf2565, *(uint*)buf2566);
    rsSetElementAt(*(rs_allocation*)buf2567, (void*) buf2568, *(uint32_t*)buf2569);
    rsSetElementAt(*(rs_allocation*)buf2570, (void*) buf2571, *(uint32_t*)buf2572, *(uint32_t*)buf2573);
    rsSetElementAt_float(*(rs_allocation*)buf2574, *(float*)buf2575, *(uint32_t*)buf2576);
    rsSetElementAt_float2(*(rs_allocation*)buf2577, *(float2*)buf2578, *(uint32_t*)buf2579);
    rsSetElementAt_float3(*(rs_allocation*)buf2580, *(float3*)buf2581, *(uint32_t*)buf2582);
    rsSetElementAt_float4(*(rs_allocation*)buf2583, *(float4*)buf2584, *(uint32_t*)buf2585);
    rsSetElementAt_double(*(rs_allocation*)buf2586, *(double*)buf2587, *(uint32_t*)buf2588);
    rsSetElementAt_double2(*(rs_allocation*)buf2589, *(double2*)buf2590, *(uint32_t*)buf2591);
    rsSetElementAt_double3(*(rs_allocation*)buf2592, *(double3*)buf2593, *(uint32_t*)buf2594);
    rsSetElementAt_double4(*(rs_allocation*)buf2595, *(double4*)buf2596, *(uint32_t*)buf2597);
    rsSetElementAt_char(*(rs_allocation*)buf2598, *(char*)buf2599, *(uint32_t*)buf2600);
    rsSetElementAt_char2(*(rs_allocation*)buf2601, *(char2*)buf2602, *(uint32_t*)buf2603);
    rsSetElementAt_char3(*(rs_allocation*)buf2604, *(char3*)buf2605, *(uint32_t*)buf2606);
    rsSetElementAt_char4(*(rs_allocation*)buf2607, *(char4*)buf2608, *(uint32_t*)buf2609);
    rsSetElementAt_uchar(*(rs_allocation*)buf2610, *(uchar*)buf2611, *(uint32_t*)buf2612);
    rsSetElementAt_uchar2(*(rs_allocation*)buf2613, *(uchar2*)buf2614, *(uint32_t*)buf2615);
    rsSetElementAt_uchar3(*(rs_allocation*)buf2616, *(uchar3*)buf2617, *(uint32_t*)buf2618);
    rsSetElementAt_uchar4(*(rs_allocation*)buf2619, *(uchar4*)buf2620, *(uint32_t*)buf2621);
    rsSetElementAt_short(*(rs_allocation*)buf2622, *(short*)buf2623, *(uint32_t*)buf2624);
    rsSetElementAt_short2(*(rs_allocation*)buf2625, *(short2*)buf2626, *(uint32_t*)buf2627);
    rsSetElementAt_short3(*(rs_allocation*)buf2628, *(short3*)buf2629, *(uint32_t*)buf2630);
    rsSetElementAt_short4(*(rs_allocation*)buf2631, *(short4*)buf2632, *(uint32_t*)buf2633);
    rsSetElementAt_ushort(*(rs_allocation*)buf2634, *(ushort*)buf2635, *(uint32_t*)buf2636);
    rsSetElementAt_ushort2(*(rs_allocation*)buf2637, *(ushort2*)buf2638, *(uint32_t*)buf2639);
    rsSetElementAt_ushort3(*(rs_allocation*)buf2640, *(ushort3*)buf2641, *(uint32_t*)buf2642);
    rsSetElementAt_ushort4(*(rs_allocation*)buf2643, *(ushort4*)buf2644, *(uint32_t*)buf2645);
    rsSetElementAt_int(*(rs_allocation*)buf2646, *(int*)buf2647, *(uint32_t*)buf2648);
    rsSetElementAt_int2(*(rs_allocation*)buf2649, *(int2*)buf2650, *(uint32_t*)buf2651);
    rsSetElementAt_int3(*(rs_allocation*)buf2652, *(int3*)buf2653, *(uint32_t*)buf2654);
    rsSetElementAt_int4(*(rs_allocation*)buf2655, *(int4*)buf2656, *(uint32_t*)buf2657);
    rsSetElementAt_uint(*(rs_allocation*)buf2658, *(uint*)buf2659, *(uint32_t*)buf2660);
    rsSetElementAt_uint2(*(rs_allocation*)buf2661, *(uint2*)buf2662, *(uint32_t*)buf2663);
    rsSetElementAt_uint3(*(rs_allocation*)buf2664, *(uint3*)buf2665, *(uint32_t*)buf2666);
    rsSetElementAt_uint4(*(rs_allocation*)buf2667, *(uint4*)buf2668, *(uint32_t*)buf2669);
    rsSetElementAt_long(*(rs_allocation*)buf2670, *(long*)buf2671, *(uint32_t*)buf2672);
    rsSetElementAt_long2(*(rs_allocation*)buf2673, *(long2*)buf2674, *(uint32_t*)buf2675);
    rsSetElementAt_long3(*(rs_allocation*)buf2676, *(long3*)buf2677, *(uint32_t*)buf2678);
    rsSetElementAt_long4(*(rs_allocation*)buf2679, *(long4*)buf2680, *(uint32_t*)buf2681);
    rsSetElementAt_ulong(*(rs_allocation*)buf2682, *(ulong*)buf2683, *(uint32_t*)buf2684);
    rsSetElementAt_ulong2(*(rs_allocation*)buf2685, *(ulong2*)buf2686, *(uint32_t*)buf2687);
    rsSetElementAt_ulong3(*(rs_allocation*)buf2688, *(ulong3*)buf2689, *(uint32_t*)buf2690);
    rsSetElementAt_ulong4(*(rs_allocation*)buf2691, *(ulong4*)buf2692, *(uint32_t*)buf2693);
    rsSetElementAt_float(*(rs_allocation*)buf2694, *(float*)buf2695, *(uint32_t*)buf2696, *(uint32_t*)buf2697);
    rsSetElementAt_float2(*(rs_allocation*)buf2698, *(float2*)buf2699, *(uint32_t*)buf2700, *(uint32_t*)buf2701);
    rsSetElementAt_float3(*(rs_allocation*)buf2702, *(float3*)buf2703, *(uint32_t*)buf2704, *(uint32_t*)buf2705);
    rsSetElementAt_float4(*(rs_allocation*)buf2706, *(float4*)buf2707, *(uint32_t*)buf2708, *(uint32_t*)buf2709);
    rsSetElementAt_double(*(rs_allocation*)buf2710, *(double*)buf2711, *(uint32_t*)buf2712, *(uint32_t*)buf2713);
    rsSetElementAt_double2(*(rs_allocation*)buf2714, *(double2*)buf2715, *(uint32_t*)buf2716, *(uint32_t*)buf2717);
    rsSetElementAt_double3(*(rs_allocation*)buf2718, *(double3*)buf2719, *(uint32_t*)buf2720, *(uint32_t*)buf2721);
    rsSetElementAt_double4(*(rs_allocation*)buf2722, *(double4*)buf2723, *(uint32_t*)buf2724, *(uint32_t*)buf2725);
    rsSetElementAt_char(*(rs_allocation*)buf2726, *(char*)buf2727, *(uint32_t*)buf2728, *(uint32_t*)buf2729);
    rsSetElementAt_char2(*(rs_allocation*)buf2730, *(char2*)buf2731, *(uint32_t*)buf2732, *(uint32_t*)buf2733);
    rsSetElementAt_char3(*(rs_allocation*)buf2734, *(char3*)buf2735, *(uint32_t*)buf2736, *(uint32_t*)buf2737);
    rsSetElementAt_char4(*(rs_allocation*)buf2738, *(char4*)buf2739, *(uint32_t*)buf2740, *(uint32_t*)buf2741);
    rsSetElementAt_uchar(*(rs_allocation*)buf2742, *(uchar*)buf2743, *(uint32_t*)buf2744, *(uint32_t*)buf2745);
    rsSetElementAt_uchar2(*(rs_allocation*)buf2746, *(uchar2*)buf2747, *(uint32_t*)buf2748, *(uint32_t*)buf2749);
    rsSetElementAt_uchar3(*(rs_allocation*)buf2750, *(uchar3*)buf2751, *(uint32_t*)buf2752, *(uint32_t*)buf2753);
    rsSetElementAt_uchar4(*(rs_allocation*)buf2754, *(uchar4*)buf2755, *(uint32_t*)buf2756, *(uint32_t*)buf2757);
    rsSetElementAt_short(*(rs_allocation*)buf2758, *(short*)buf2759, *(uint32_t*)buf2760, *(uint32_t*)buf2761);
    rsSetElementAt_short2(*(rs_allocation*)buf2762, *(short2*)buf2763, *(uint32_t*)buf2764, *(uint32_t*)buf2765);
    rsSetElementAt_short3(*(rs_allocation*)buf2766, *(short3*)buf2767, *(uint32_t*)buf2768, *(uint32_t*)buf2769);
    rsSetElementAt_short4(*(rs_allocation*)buf2770, *(short4*)buf2771, *(uint32_t*)buf2772, *(uint32_t*)buf2773);
    rsSetElementAt_ushort(*(rs_allocation*)buf2774, *(ushort*)buf2775, *(uint32_t*)buf2776, *(uint32_t*)buf2777);
    rsSetElementAt_ushort2(*(rs_allocation*)buf2778, *(ushort2*)buf2779, *(uint32_t*)buf2780, *(uint32_t*)buf2781);
    rsSetElementAt_ushort3(*(rs_allocation*)buf2782, *(ushort3*)buf2783, *(uint32_t*)buf2784, *(uint32_t*)buf2785);
    rsSetElementAt_ushort4(*(rs_allocation*)buf2786, *(ushort4*)buf2787, *(uint32_t*)buf2788, *(uint32_t*)buf2789);
    rsSetElementAt_int(*(rs_allocation*)buf2790, *(int*)buf2791, *(uint32_t*)buf2792, *(uint32_t*)buf2793);
    rsSetElementAt_int2(*(rs_allocation*)buf2794, *(int2*)buf2795, *(uint32_t*)buf2796, *(uint32_t*)buf2797);
    rsSetElementAt_int3(*(rs_allocation*)buf2798, *(int3*)buf2799, *(uint32_t*)buf2800, *(uint32_t*)buf2801);
    rsSetElementAt_int4(*(rs_allocation*)buf2802, *(int4*)buf2803, *(uint32_t*)buf2804, *(uint32_t*)buf2805);
    rsSetElementAt_uint(*(rs_allocation*)buf2806, *(uint*)buf2807, *(uint32_t*)buf2808, *(uint32_t*)buf2809);
    rsSetElementAt_uint2(*(rs_allocation*)buf2810, *(uint2*)buf2811, *(uint32_t*)buf2812, *(uint32_t*)buf2813);
    rsSetElementAt_uint3(*(rs_allocation*)buf2814, *(uint3*)buf2815, *(uint32_t*)buf2816, *(uint32_t*)buf2817);
    rsSetElementAt_uint4(*(rs_allocation*)buf2818, *(uint4*)buf2819, *(uint32_t*)buf2820, *(uint32_t*)buf2821);
    rsSetElementAt_long(*(rs_allocation*)buf2822, *(long*)buf2823, *(uint32_t*)buf2824, *(uint32_t*)buf2825);
    rsSetElementAt_long2(*(rs_allocation*)buf2826, *(long2*)buf2827, *(uint32_t*)buf2828, *(uint32_t*)buf2829);
    rsSetElementAt_long3(*(rs_allocation*)buf2830, *(long3*)buf2831, *(uint32_t*)buf2832, *(uint32_t*)buf2833);
    rsSetElementAt_long4(*(rs_allocation*)buf2834, *(long4*)buf2835, *(uint32_t*)buf2836, *(uint32_t*)buf2837);
    rsSetElementAt_ulong(*(rs_allocation*)buf2838, *(ulong*)buf2839, *(uint32_t*)buf2840, *(uint32_t*)buf2841);
    rsSetElementAt_ulong2(*(rs_allocation*)buf2842, *(ulong2*)buf2843, *(uint32_t*)buf2844, *(uint32_t*)buf2845);
    rsSetElementAt_ulong3(*(rs_allocation*)buf2846, *(ulong3*)buf2847, *(uint32_t*)buf2848, *(uint32_t*)buf2849);
    rsSetElementAt_ulong4(*(rs_allocation*)buf2850, *(ulong4*)buf2851, *(uint32_t*)buf2852, *(uint32_t*)buf2853);
    rsSetElementAt_float(*(rs_allocation*)buf2854, *(float*)buf2855, *(uint32_t*)buf2856, *(uint32_t*)buf2857, *(uint32_t*)buf2858);
    rsSetElementAt_float2(*(rs_allocation*)buf2859, *(float2*)buf2860, *(uint32_t*)buf2861, *(uint32_t*)buf2862, *(uint32_t*)buf2863);
    rsSetElementAt_float3(*(rs_allocation*)buf2864, *(float3*)buf2865, *(uint32_t*)buf2866, *(uint32_t*)buf2867, *(uint32_t*)buf2868);
    rsSetElementAt_float4(*(rs_allocation*)buf2869, *(float4*)buf2870, *(uint32_t*)buf2871, *(uint32_t*)buf2872, *(uint32_t*)buf2873);
    rsSetElementAt_double(*(rs_allocation*)buf2874, *(double*)buf2875, *(uint32_t*)buf2876, *(uint32_t*)buf2877, *(uint32_t*)buf2878);
    rsSetElementAt_double2(*(rs_allocation*)buf2879, *(double2*)buf2880, *(uint32_t*)buf2881, *(uint32_t*)buf2882, *(uint32_t*)buf2883);
    rsSetElementAt_double3(*(rs_allocation*)buf2884, *(double3*)buf2885, *(uint32_t*)buf2886, *(uint32_t*)buf2887, *(uint32_t*)buf2888);
    rsSetElementAt_double4(*(rs_allocation*)buf2889, *(double4*)buf2890, *(uint32_t*)buf2891, *(uint32_t*)buf2892, *(uint32_t*)buf2893);
    rsSetElementAt_char(*(rs_allocation*)buf2894, *(char*)buf2895, *(uint32_t*)buf2896, *(uint32_t*)buf2897, *(uint32_t*)buf2898);
    rsSetElementAt_char2(*(rs_allocation*)buf2899, *(char2*)buf2900, *(uint32_t*)buf2901, *(uint32_t*)buf2902, *(uint32_t*)buf2903);
    rsSetElementAt_char3(*(rs_allocation*)buf2904, *(char3*)buf2905, *(uint32_t*)buf2906, *(uint32_t*)buf2907, *(uint32_t*)buf2908);
    rsSetElementAt_char4(*(rs_allocation*)buf2909, *(char4*)buf2910, *(uint32_t*)buf2911, *(uint32_t*)buf2912, *(uint32_t*)buf2913);
    rsSetElementAt_uchar(*(rs_allocation*)buf2914, *(uchar*)buf2915, *(uint32_t*)buf2916, *(uint32_t*)buf2917, *(uint32_t*)buf2918);
    rsSetElementAt_uchar2(*(rs_allocation*)buf2919, *(uchar2*)buf2920, *(uint32_t*)buf2921, *(uint32_t*)buf2922, *(uint32_t*)buf2923);
    rsSetElementAt_uchar3(*(rs_allocation*)buf2924, *(uchar3*)buf2925, *(uint32_t*)buf2926, *(uint32_t*)buf2927, *(uint32_t*)buf2928);
    rsSetElementAt_uchar4(*(rs_allocation*)buf2929, *(uchar4*)buf2930, *(uint32_t*)buf2931, *(uint32_t*)buf2932, *(uint32_t*)buf2933);
    rsSetElementAt_short(*(rs_allocation*)buf2934, *(short*)buf2935, *(uint32_t*)buf2936, *(uint32_t*)buf2937, *(uint32_t*)buf2938);
    rsSetElementAt_short2(*(rs_allocation*)buf2939, *(short2*)buf2940, *(uint32_t*)buf2941, *(uint32_t*)buf2942, *(uint32_t*)buf2943);
    rsSetElementAt_short3(*(rs_allocation*)buf2944, *(short3*)buf2945, *(uint32_t*)buf2946, *(uint32_t*)buf2947, *(uint32_t*)buf2948);
    rsSetElementAt_short4(*(rs_allocation*)buf2949, *(short4*)buf2950, *(uint32_t*)buf2951, *(uint32_t*)buf2952, *(uint32_t*)buf2953);
    rsSetElementAt_ushort(*(rs_allocation*)buf2954, *(ushort*)buf2955, *(uint32_t*)buf2956, *(uint32_t*)buf2957, *(uint32_t*)buf2958);
    rsSetElementAt_ushort2(*(rs_allocation*)buf2959, *(ushort2*)buf2960, *(uint32_t*)buf2961, *(uint32_t*)buf2962, *(uint32_t*)buf2963);
    rsSetElementAt_ushort3(*(rs_allocation*)buf2964, *(ushort3*)buf2965, *(uint32_t*)buf2966, *(uint32_t*)buf2967, *(uint32_t*)buf2968);
    rsSetElementAt_ushort4(*(rs_allocation*)buf2969, *(ushort4*)buf2970, *(uint32_t*)buf2971, *(uint32_t*)buf2972, *(uint32_t*)buf2973);
    rsSetElementAt_int(*(rs_allocation*)buf2974, *(int*)buf2975, *(uint32_t*)buf2976, *(uint32_t*)buf2977, *(uint32_t*)buf2978);
    rsSetElementAt_int2(*(rs_allocation*)buf2979, *(int2*)buf2980, *(uint32_t*)buf2981, *(uint32_t*)buf2982, *(uint32_t*)buf2983);
    rsSetElementAt_int3(*(rs_allocation*)buf2984, *(int3*)buf2985, *(uint32_t*)buf2986, *(uint32_t*)buf2987, *(uint32_t*)buf2988);
    rsSetElementAt_int4(*(rs_allocation*)buf2989, *(int4*)buf2990, *(uint32_t*)buf2991, *(uint32_t*)buf2992, *(uint32_t*)buf2993);
    rsSetElementAt_uint(*(rs_allocation*)buf2994, *(uint*)buf2995, *(uint32_t*)buf2996, *(uint32_t*)buf2997, *(uint32_t*)buf2998);
    rsSetElementAt_uint2(*(rs_allocation*)buf2999, *(uint2*)buf3000, *(uint32_t*)buf3001, *(uint32_t*)buf3002, *(uint32_t*)buf3003);
    rsSetElementAt_uint3(*(rs_allocation*)buf3004, *(uint3*)buf3005, *(uint32_t*)buf3006, *(uint32_t*)buf3007, *(uint32_t*)buf3008);
    rsSetElementAt_uint4(*(rs_allocation*)buf3009, *(uint4*)buf3010, *(uint32_t*)buf3011, *(uint32_t*)buf3012, *(uint32_t*)buf3013);
    rsSetElementAt_long(*(rs_allocation*)buf3014, *(long*)buf3015, *(uint32_t*)buf3016, *(uint32_t*)buf3017, *(uint32_t*)buf3018);
    rsSetElementAt_long2(*(rs_allocation*)buf3019, *(long2*)buf3020, *(uint32_t*)buf3021, *(uint32_t*)buf3022, *(uint32_t*)buf3023);
    rsSetElementAt_long3(*(rs_allocation*)buf3024, *(long3*)buf3025, *(uint32_t*)buf3026, *(uint32_t*)buf3027, *(uint32_t*)buf3028);
    rsSetElementAt_long4(*(rs_allocation*)buf3029, *(long4*)buf3030, *(uint32_t*)buf3031, *(uint32_t*)buf3032, *(uint32_t*)buf3033);
    rsSetElementAt_ulong(*(rs_allocation*)buf3034, *(ulong*)buf3035, *(uint32_t*)buf3036, *(uint32_t*)buf3037, *(uint32_t*)buf3038);
    rsSetElementAt_ulong2(*(rs_allocation*)buf3039, *(ulong2*)buf3040, *(uint32_t*)buf3041, *(uint32_t*)buf3042, *(uint32_t*)buf3043);
    rsSetElementAt_ulong3(*(rs_allocation*)buf3044, *(ulong3*)buf3045, *(uint32_t*)buf3046, *(uint32_t*)buf3047, *(uint32_t*)buf3048);
    rsSetElementAt_ulong4(*(rs_allocation*)buf3049, *(ulong4*)buf3050, *(uint32_t*)buf3051, *(uint32_t*)buf3052, *(uint32_t*)buf3053);
    rsSetObject((rs_element*) buf3054, *(rs_element*)buf3055);
    rsSetObject((rs_type*) buf3056, *(rs_type*)buf3057);
    rsSetObject((rs_allocation*) buf3058, *(rs_allocation*)buf3059);
    rsSetObject((rs_sampler*) buf3060, *(rs_sampler*)buf3061);
    rsSetObject((rs_script*) buf3062, *(rs_script*)buf3063);
#ifndef __LP64__
    rsSetObject((rs_mesh*) buf3064, *(rs_mesh*)buf3065);
    rsSetObject((rs_program_fragment*) buf3066, *(rs_program_fragment*)buf3067);
    rsSetObject((rs_program_vertex*) buf3068, *(rs_program_vertex*)buf3069);
    rsSetObject((rs_program_raster*) buf3070, *(rs_program_raster*)buf3071);
    rsSetObject((rs_program_store*) buf3072, *(rs_program_store*)buf3073);
    rsSetObject((rs_font*) buf3074, *(rs_font*)buf3075);
#endif
    *(rs_time_t*)buf3076 = rsTime((rs_time_t*) buf3077);
    *(float4*)buf3078 = rsUnpackColor8888(*(uchar4*)buf3079);
    *(int64_t*)buf3080 = rsUptimeMillis();
    *(int64_t*)buf3081 = rsUptimeNanos();
    *(float4*)buf3082 = rsYuvToRGBA_float4(*(uchar*)buf3083, *(uchar*)buf3084, *(uchar*)buf3085);
    *(uchar4*)buf3086 = rsYuvToRGBA_uchar4(*(uchar*)buf3087, *(uchar*)buf3088, *(uchar*)buf3089);
#ifndef __LP64__
    rsgAllocationSyncAll(*(rs_allocation*)buf3090);
#endif
#ifndef __LP64__
    rsgAllocationSyncAll(*(rs_allocation*)buf3091, *(rs_allocation_usage_type*)buf3092);
#endif
#ifndef __LP64__
    rsgBindColorTarget(*(rs_allocation*)buf3093, *(uint*)buf3094);
#endif
#ifndef __LP64__
    rsgBindConstant(*(rs_program_fragment*)buf3095, *(uint*)buf3096, *(rs_allocation*)buf3097);
#endif
#ifndef __LP64__
    rsgBindConstant(*(rs_program_vertex*)buf3098, *(uint*)buf3099, *(rs_allocation*)buf3100);
#endif
#ifndef __LP64__
    rsgBindDepthTarget(*(rs_allocation*)buf3101);
#endif
#ifndef __LP64__
    rsgBindFont(*(rs_font*)buf3102);
#endif
#ifndef __LP64__
    rsgBindProgramFragment(*(rs_program_fragment*)buf3103);
#endif
#ifndef __LP64__
    rsgBindProgramRaster(*(rs_program_raster*)buf3104);
#endif
#ifndef __LP64__
    rsgBindProgramStore(*(rs_program_store*)buf3105);
#endif
#ifndef __LP64__
    rsgBindProgramVertex(*(rs_program_vertex*)buf3106);
#endif
#ifndef __LP64__
    rsgBindSampler(*(rs_program_fragment*)buf3107, *(uint*)buf3108, *(rs_sampler*)buf3109);
#endif
#ifndef __LP64__
    rsgBindTexture(*(rs_program_fragment*)buf3110, *(uint*)buf3111, *(rs_allocation*)buf3112);
#endif
#ifndef __LP64__
    rsgClearAllRenderTargets();
#endif
#ifndef __LP64__
    rsgClearColor(*(float*)buf3113, *(float*)buf3114, *(float*)buf3115, *(float*)buf3116);
#endif
#ifndef __LP64__
    rsgClearColorTarget(*(uint*)buf3117);
#endif
#ifndef __LP64__
    rsgClearDepth(*(float*)buf3118);
#endif
#ifndef __LP64__
    rsgClearDepthTarget();
#endif
#ifndef __LP64__
    rsgDrawMesh(*(rs_mesh*)buf3119);
#endif
#ifndef __LP64__
    rsgDrawMesh(*(rs_mesh*)buf3120, *(uint*)buf3121);
#endif
#ifndef __LP64__
    rsgDrawMesh(*(rs_mesh*)buf3122, *(uint*)buf3123, *(uint*)buf3124, *(uint*)buf3125);
#endif
#ifndef __LP64__
    rsgDrawQuad(*(float*)buf3126, *(float*)buf3127, *(float*)buf3128, *(float*)buf3129, *(float*)buf3130, *(float*)buf3131, *(float*)buf3132, *(float*)buf3133, *(float*)buf3134, *(float*)buf3135, *(float*)buf3136, *(float*)buf3137);
#endif
#ifndef __LP64__
    rsgDrawQuadTexCoords(*(float*)buf3138, *(float*)buf3139, *(float*)buf3140, *(float*)buf3141, *(float*)buf3142, *(float*)buf3143, *(float*)buf3144, *(float*)buf3145, *(float*)buf3146, *(float*)buf3147, *(float*)buf3148, *(float*)buf3149, *(float*)buf3150, *(float*)buf3151, *(float*)buf3152, *(float*)buf3153, *(float*)buf3154, *(float*)buf3155, *(float*)buf3156, *(float*)buf3157);
#endif
#ifndef __LP64__
    rsgDrawRect(*(float*)buf3158, *(float*)buf3159, *(float*)buf3160, *(float*)buf3161, *(float*)buf3162);
#endif
#ifndef __LP64__
    rsgDrawSpriteScreenspace(*(float*)buf3163, *(float*)buf3164, *(float*)buf3165, *(float*)buf3166, *(float*)buf3167);
#endif
#ifndef __LP64__
    rsgDrawText((const char*) buf3168, *(int*)buf3169, *(int*)buf3170);
#endif
#ifndef __LP64__
    rsgDrawText(*(rs_allocation*)buf3171, *(int*)buf3172, *(int*)buf3173);
#endif
#ifndef __LP64__
    *(uint*)buf3174 = rsgFinish();
#endif
#ifndef __LP64__
    rsgFontColor(*(float*)buf3175, *(float*)buf3176, *(float*)buf3177, *(float*)buf3178);
#endif
#ifndef __LP64__
    *(uint*)buf3179 = rsgGetHeight();
#endif
#ifndef __LP64__
    *(uint*)buf3180 = rsgGetWidth();
#endif
#ifndef __LP64__
    rsgMeasureText((const char*) buf3181, (int*) buf3182, (int*) buf3183, (int*) buf3184, (int*) buf3185);
#endif
#ifndef __LP64__
    rsgMeasureText(*(rs_allocation*)buf3186, (int*) buf3187, (int*) buf3188, (int*) buf3189, (int*) buf3190);
#endif
#ifndef __LP64__
    rsgMeshComputeBoundingBox(*(rs_mesh*)buf3191, (float*) buf3192, (float*) buf3193, (float*) buf3194, (float*) buf3195, (float*) buf3196, (float*) buf3197);
#endif
#ifndef __LP64__
    rsgMeshComputeBoundingBox(*(rs_mesh*)buf3198, (float3*) buf3199, (float3*) buf3200);
#endif
#ifndef __LP64__
    *(rs_allocation*)buf3201 = rsgMeshGetIndexAllocation(*(rs_mesh*)buf3202, *(uint32_t*)buf3203);
#endif
#ifndef __LP64__
    *(rs_primitive*)buf3204 = rsgMeshGetPrimitive(*(rs_mesh*)buf3205, *(uint32_t*)buf3206);
#endif
#ifndef __LP64__
    *(uint32_t*)buf3207 = rsgMeshGetPrimitiveCount(*(rs_mesh*)buf3208);
#endif
#ifndef __LP64__
    *(rs_allocation*)buf3209 = rsgMeshGetVertexAllocation(*(rs_mesh*)buf3210, *(uint32_t*)buf3211);
#endif
#ifndef __LP64__
    *(uint32_t*)buf3212 = rsgMeshGetVertexAllocationCount(*(rs_mesh*)buf3213);
#endif
#ifndef __LP64__
    rsgProgramFragmentConstantColor(*(rs_program_fragment*)buf3214, *(float*)buf3215, *(float*)buf3216, *(float*)buf3217, *(float*)buf3218);
#endif
#ifndef __LP64__
    *(rs_cull_mode*)buf3219 = rsgProgramRasterGetCullMode(*(rs_program_raster*)buf3220);
#endif
#ifndef __LP64__
    *(bool*)buf3221 = rsgProgramRasterIsPointSpriteEnabled(*(rs_program_raster*)buf3222);
#endif
#ifndef __LP64__
    *(rs_blend_dst_func*)buf3223 = rsgProgramStoreGetBlendDstFunc(*(rs_program_store*)buf3224);
#endif
#ifndef __LP64__
    *(rs_blend_src_func*)buf3225 = rsgProgramStoreGetBlendSrcFunc(*(rs_program_store*)buf3226);
#endif
#ifndef __LP64__
    *(rs_depth_func*)buf3227 = rsgProgramStoreGetDepthFunc(*(rs_program_store*)buf3228);
#endif
#ifndef __LP64__
    *(bool*)buf3229 = rsgProgramStoreIsColorMaskAlphaEnabled(*(rs_program_store*)buf3230);
#endif
#ifndef __LP64__
    *(bool*)buf3231 = rsgProgramStoreIsColorMaskBlueEnabled(*(rs_program_store*)buf3232);
#endif
#ifndef __LP64__
    *(bool*)buf3233 = rsgProgramStoreIsColorMaskGreenEnabled(*(rs_program_store*)buf3234);
#endif
#ifndef __LP64__
    *(bool*)buf3235 = rsgProgramStoreIsColorMaskRedEnabled(*(rs_program_store*)buf3236);
#endif
#ifndef __LP64__
    *(bool*)buf3237 = rsgProgramStoreIsDepthMaskEnabled(*(rs_program_store*)buf3238);
#endif
#ifndef __LP64__
    *(bool*)buf3239 = rsgProgramStoreIsDitherEnabled(*(rs_program_store*)buf3240);
#endif
#ifndef __LP64__
    rsgProgramVertexGetProjectionMatrix((rs_matrix4x4*) buf3241);
#endif
#ifndef __LP64__
    rsgProgramVertexLoadModelMatrix((const rs_matrix4x4*) buf3242);
#endif
#ifndef __LP64__
    rsgProgramVertexLoadProjectionMatrix((const rs_matrix4x4*) buf3243);
#endif
#ifndef __LP64__
    rsgProgramVertexLoadTextureMatrix((const rs_matrix4x4*) buf3244);
#endif
    *(float*)buf3245 = rsqrt(*(float*)buf3246);
    *(float2*)buf3247 = rsqrt(*(float2*)buf3248);
    *(float3*)buf3249 = rsqrt(*(float3*)buf3250);
    *(float4*)buf3251 = rsqrt(*(float4*)buf3252);
    *(float*)buf3253 = sign(*(float*)buf3254);
    *(float2*)buf3255 = sign(*(float2*)buf3256);
    *(float3*)buf3257 = sign(*(float3*)buf3258);
    *(float4*)buf3259 = sign(*(float4*)buf3260);
    *(float*)buf3261 = sin(*(float*)buf3262);
    *(float2*)buf3263 = sin(*(float2*)buf3264);
    *(float3*)buf3265 = sin(*(float3*)buf3266);
    *(float4*)buf3267 = sin(*(float4*)buf3268);
    *(float*)buf3269 = sincos(*(float*)buf3270, (float*) buf3271);
    *(float2*)buf3272 = sincos(*(float2*)buf3273, (float2*) buf3274);
    *(float3*)buf3275 = sincos(*(float3*)buf3276, (float3*) buf3277);
    *(float4*)buf3278 = sincos(*(float4*)buf3279, (float4*) buf3280);
    *(float*)buf3281 = sinh(*(float*)buf3282);
    *(float2*)buf3283 = sinh(*(float2*)buf3284);
    *(float3*)buf3285 = sinh(*(float3*)buf3286);
    *(float4*)buf3287 = sinh(*(float4*)buf3288);
    *(float*)buf3289 = sinpi(*(float*)buf3290);
    *(float2*)buf3291 = sinpi(*(float2*)buf3292);
    *(float3*)buf3293 = sinpi(*(float3*)buf3294);
    *(float4*)buf3295 = sinpi(*(float4*)buf3296);
    *(float*)buf3297 = sqrt(*(float*)buf3298);
    *(float2*)buf3299 = sqrt(*(float2*)buf3300);
    *(float3*)buf3301 = sqrt(*(float3*)buf3302);
    *(float4*)buf3303 = sqrt(*(float4*)buf3304);
    *(float*)buf3305 = step(*(float*)buf3306, *(float*)buf3307);
    *(float2*)buf3308 = step(*(float2*)buf3309, *(float2*)buf3310);
    *(float3*)buf3311 = step(*(float3*)buf3312, *(float3*)buf3313);
    *(float4*)buf3314 = step(*(float4*)buf3315, *(float4*)buf3316);
    *(float2*)buf3317 = step(*(float2*)buf3318, *(float*)buf3319);
    *(float3*)buf3320 = step(*(float3*)buf3321, *(float*)buf3322);
    *(float4*)buf3323 = step(*(float4*)buf3324, *(float*)buf3325);
    *(float*)buf3326 = tan(*(float*)buf3327);
    *(float2*)buf3328 = tan(*(float2*)buf3329);
    *(float3*)buf3330 = tan(*(float3*)buf3331);
    *(float4*)buf3332 = tan(*(float4*)buf3333);
    *(float*)buf3334 = tanh(*(float*)buf3335);
    *(float2*)buf3336 = tanh(*(float2*)buf3337);
    *(float3*)buf3338 = tanh(*(float3*)buf3339);
    *(float4*)buf3340 = tanh(*(float4*)buf3341);
    *(float*)buf3342 = tanpi(*(float*)buf3343);
    *(float2*)buf3344 = tanpi(*(float2*)buf3345);
    *(float3*)buf3346 = tanpi(*(float3*)buf3347);
    *(float4*)buf3348 = tanpi(*(float4*)buf3349);
    *(float*)buf3350 = tgamma(*(float*)buf3351);
    *(float2*)buf3352 = tgamma(*(float2*)buf3353);
    *(float3*)buf3354 = tgamma(*(float3*)buf3355);
    *(float4*)buf3356 = tgamma(*(float4*)buf3357);
    *(float*)buf3358 = trunc(*(float*)buf3359);
    *(float2*)buf3360 = trunc(*(float2*)buf3361);
    *(float3*)buf3362 = trunc(*(float3*)buf3363);
    *(float4*)buf3364 = trunc(*(float4*)buf3365);
}