blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4e89b0a06a1b3b78bff7e332ba0d6a7534e6a2e5 | 4b187bd1e89f6bcce100b7bd05b4ff202522bc4d | /OnlineJudgeSolutions/Codeforces/codeforces 743B.cpp | b1467614c6ac9b2b1b7e811bb0db8c3c6b40f1f8 | [] | no_license | codefresher32/CompetitiveProgramming | e53133a906081e7931966216b55d4537730d8ba3 | 923009b9893bdb0162ef02e88ea4223dc8d85449 | refs/heads/master | 2021-04-13T06:51:04.428078 | 2020-03-24T13:40:16 | 2020-03-24T13:40:16 | 249,144,621 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 254 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
long long n,k,ans=0;
cin>>n>>k;
a:if(k%2==0)
{
ans++;
k/=2;
goto a;
}
else
ans++;
cout<<ans<<endl;
return 0;
}
| [
"noreply@github.com"
] | codefresher32.noreply@github.com |
ac79723e532c74fd0af2bcaa1cfb9c655dcd8894 | d5bf1e47a950133137a16056c3112a90f26b1a48 | /atcoder/abc/124/answer_3.cpp | a6acae42aa0e699744f9c7c36506c9fb7e5592b4 | [] | no_license | shunkakinoki/ncp | 46853e564e1523f8fc6aa25498308cc064c22c47 | cfdaf3c4a66d0f89a9d4a87fa2edd1fdb4378f74 | refs/heads/master | 2020-05-01T05:55:15.643847 | 2019-07-29T23:57:09 | 2019-07-29T23:57:09 | 177,315,826 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 493 | cpp | #include <iostream>
#include <string>
#include <cmath>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
string S;
cin >> S;
int c = 0;
int N = S.size();
for (int i = 0; i < N; i++)
{
if (i % 2 == 0)
{
if (S.at(i) == '0')
c++;
}
else
{
if (S.at(i) == '1')
c++;
}
}
int ans = min(c, N - c);
cout << ans << endl;
return 0;
} | [
"shunkakinoki@gmail.com"
] | shunkakinoki@gmail.com |
86f761ed582d8612e9c75774ae5e6f18f49233d9 | cebd786b7b893700d526bc9b5b001bc326043c9a | /STRING/30_CountTheBracketSwap.cpp | 88a3f7f61c3afa94482162ea602cf3f044c9392e | [] | no_license | Healer-kid/CODING | 2b2ff52d05c2376cb03c4f1bf62a3b545568eff4 | 76a4b2835a9897bae41db557553b8b52c90e37a7 | refs/heads/main | 2023-07-23T01:24:32.316712 | 2021-08-27T08:07:03 | 2021-08-27T08:07:03 | 349,797,195 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,527 | cpp | Minimum Swaps for Bracket Balancing
LINK:https://www.youtube.com/watch?v=Ylz6mwghDrU
You are given a string S of 2N characters consisting of N ‘[‘ brackets and N ‘]’ brackets. A string is considered balanced if it can be represented in the for S2[S1] where S1 and S2 are balanced strings. We can make an unbalanced string balanced by swapping adjacent characters. Calculate the minimum number of swaps necessary to make a string balanced.
Note - Strings S1 and S2 can be empty.
Example 1:
Input : []][][
Output : 2
Explanation :
First swap: Position 3 and 4
[][]][
Second swap: Position 5 and 6
[][][]
Example 2:
Input : [[][]]
Output : 0
Explanation:
String is already balanced.
MEHTOD-1
TIME:O(N)
SPACE:O(N)
USING A VECTOR TO STORE THE INDICES OF THE OPEN BRACKETS
long swapCount(string s)
{
// Keep track of '['
vector<int> pos;
for (int i = 0; i < s.length(); ++i)
if (s[i] == '[')
pos.push_back(i);
int count = 0; // To count number of encountered '['
int p = 0; // To track position of next '[' in pos
long sum = 0; // To store result
for (int i = 0; i < s.length(); ++i)
{
// Increment count and move p to next position
if (s[i] == '[')
{
++count;
++p;
}
else if (s[i] == ']')
--count;
// We have encountered an unbalanced part of string
if (count < 0)
{
// Increment sum by number of swaps required
// i.e. position of next '[' - current position
sum += pos[p] - i;
swap(s[i], s[pos[p]]);
++p;
// Reset count to 1
count = 1;
}
}
return sum;
}
METHOD-2
WITHOUT A VECTOR
TIME:O(N)
SPACE:O(1)
int minimumNumberOfSwaps(string S){
// code here
int swap=0;
int open=0,close=0,fault=0;
for(int i=0;i<S.length();i++)
{
if(S[i]==']')
{
close++;
fault=close-open;
}else{
open++;
if(fault>0)
{
swap+=fault;
fault--;
}
}
}
return swap;
}
| [
"noreply@github.com"
] | Healer-kid.noreply@github.com |
24d3108a8ffbe56ce976d0a3ed40eecdb2f1ec80 | c3d0d94eb7f1f3deebad04567fb34c1274131ea6 | /motionCapture/motionCapture.ino | 1f335a1c0d4b41ba5ce9537a986a8c336956a867 | [
"Apache-2.0"
] | permissive | ktdiedrich/deepIoT | 8dc2cf179db504dd81c21ddf514ff6e0de7f1f11 | 90d6d62adf7a403df04d57f12bd7cd6b2e2a4779 | refs/heads/main | 2023-02-17T09:33:55.844363 | 2021-01-15T22:34:19 | 2021-01-15T22:34:19 | 329,787,069 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,634 | ino | /*
IMU Capture
This example uses the on-board IMU to start reading acceleration and gyroscope
data from on-board IMU and prints it to the Serial Monitor for one second
when the significant motion is detected.
You can also use the Serial Plotter to graph the data.
The circuit:
- Arduino Nano 33 BLE or Arduino Nano 33 BLE Sense board.
Created by Don Coleman, Sandeep Mistry
Modified by Dominic Pajak, Sandeep Mistry
This example code is in the public domain.
Save output
cat /dev/ttyACM0 >> /home/ktdiedrich/Arduino/karduino/motionCapture/all_motions/hand_shake.csv
https://blog.tensorflow.org/2019/11/how-to-get-started-with-machine.html
https://raw.githubusercontent.com/arduino/ArduinoTensorFlowLiteTutorials/master/GestureToEmoji/ArduinoSketches/IMU_Capture/IMU_Capture.ino
*/
#include <Arduino_LSM9DS1.h>
const float accelerationThreshold = 2.5; // threshold of significant in G's
const int numSamples = 119;
int samplesRead = numSamples;
void setup() {
Serial.begin(9600);
while (!Serial);
if (!IMU.begin()) {
Serial.println("Failed to initialize IMU!");
while (1);
}
// print the header
Serial.println("aX,aY,aZ,gX,gY,gZ");
}
void loop() {
float aX, aY, aZ, gX, gY, gZ;
// wait for significant motion
while (samplesRead == numSamples) {
if (IMU.accelerationAvailable()) {
// read the acceleration data
IMU.readAcceleration(aX, aY, aZ);
// sum up the absolutes
float aSum = fabs(aX) + fabs(aY) + fabs(aZ);
// check if it's above the threshold
if (aSum >= accelerationThreshold) {
// reset the sample read count
samplesRead = 0;
break;
}
}
}
// check if the all the required samples have been read since
// the last time the significant motion was detected
while (samplesRead < numSamples) {
// check if both new acceleration and gyroscope data is
// available
if (IMU.accelerationAvailable() && IMU.gyroscopeAvailable()) {
// read the acceleration and gyroscope data
IMU.readAcceleration(aX, aY, aZ);
IMU.readGyroscope(gX, gY, gZ);
samplesRead++;
// print the data in CSV format
Serial.print(aX, 3);
Serial.print(',');
Serial.print(aY, 3);
Serial.print(',');
Serial.print(aZ, 3);
Serial.print(',');
Serial.print(gX, 3);
Serial.print(',');
Serial.print(gY, 3);
Serial.print(',');
Serial.print(gZ, 3);
Serial.println();
if (samplesRead == numSamples) {
// add an empty line if it's the last sample
Serial.println();
}
}
}
}
| [
"ktdiedrich@gmail.com"
] | ktdiedrich@gmail.com |
9761bc78a1cf1cd0d2b2b11492a442be292e8513 | 36eb29ac0fe1523e04642069be5cb111477f0dd6 | /CAD/sketchup-parser/include/SketchUpProducer.h | f083e3c0737923d4de0cf2ca3fe41466c1e16e60 | [
"MIT"
] | permissive | aditya070/sideProjects | 86399d33e39a55e9d8cd934b96c60726e01477c6 | 3c858e0b239038a3194e2c4cda08d2521bd18ff8 | refs/heads/master | 2022-11-26T12:13:42.290086 | 2020-08-08T18:50:59 | 2020-08-08T18:50:59 | 286,096,690 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,133 | h | #ifndef SketchUpProducer_H
#define SketchUpProducer_H
#include <SketchUpAPI/common.h>
#include <SketchUpAPI/geometry.h>
#include <SketchUpAPI/initialize.h>
#include <SketchUpAPI/model/model.h>
#include <SketchUpAPI/model/entities.h>
#include <SketchUpAPI/model/face.h>
#include <SketchUpAPI/model/edge.h>
#include <SketchUpAPI/model/vertex.h>
#include <vector>
#include <array>
#include "DataStructure.h"
namespace sketchupparser
{
class OBJMesh; //forward declaration
class SketchUpProducer
{
public:
SketchUpProducer();
SketchUpProducer(SUModelRef& model);
~SketchUpProducer();
bool initlializeSketchup();
bool convertFromObj(const OBJMesh& cadObj, const bool& isColor = false, const std::array<char, 4> &colorInput = { 0,0,0,0 });
bool exportSketchUpAs(const std::string&);
void setScale(const double& value) { scale = value; }
//bool exportSkp
private:
SUModelRef model;
PointDataType scale;
bool localModel;
bool addMaterial(SUFaceRef& face, const std::array<char, 4> &colorInput);
};
}
#endif | [
"adityazicronhead@gmail.com"
] | adityazicronhead@gmail.com |
0c24d17766355920717f8d3a73f7b508c2ffcfc4 | 4d657ab78b904f3103ff9f8dc2bd5c137fb0973a | /gfg/two-set-sum-partition.cpp | 1be373fb5a9405a019c03fc4588e6821b95bf53e | [] | no_license | durgeshak19/Cpp_DS_Algos | 8b5eddcdea0d552f50f72fc4295bd632c4de6d61 | 42e5071b110e82a6cbda0ab08813daaf51119af2 | refs/heads/main | 2023-09-05T04:52:08.131393 | 2021-11-22T08:49:32 | 2021-11-22T08:49:32 | 367,378,037 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 761 | cpp | #include<bits/stdc++.h>
using namespace std;
bool subsetSum(vector<int> &arr,int n , int sum){
if(sum == 0){
return true;
}
if(n == 0 && sum!=0){
return false;
}
if(arr[n-1] > sum){
return subsetSum(arr , n -1 , sum);
}
else
return subsetSum(arr , n-1 , sum - arr[n-1]) || subsetSum(arr, n-1, sum);
// return false;
}
int main(){
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
vector<int> arr = {1, 5,12, 11, 5};
int sum = 0;
for(auto n : arr){
sum += n;
}
if(sum%2 !=0){
cout<< "false";
return 0;
}
bool flag = subsetSum(arr , arr.size()-1 , sum/2);
cout<<(flag?"true":"false");
} | [
"durgesh.ak19@gmail.com"
] | durgesh.ak19@gmail.com |
e12a1f0bbac2d747024ffa90a5b32345bc8532c7 | e6afc60d4492a86e94ac01ef7426f2b5ded32cd5 | /1231.cpp | 4d4c8cd419cf60851f14feb0940cd86c50b4c583 | [] | no_license | deskmel/online-judge-for-sjtu | b4d5fefbd2ff80d57c46f56e024aeffa828af6bf | 18d4d448fce08e65882730512f2dd200ba61107e | refs/heads/master | 2020-04-03T02:27:39.965048 | 2018-11-20T02:35:00 | 2018-11-20T02:35:00 | 154,957,057 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | cpp | #include <iostream>
using namespace std;
//并查集
int p[100000];
int rank[100000];
int ca[100000];
bool get[100000];
int a,b;
int n;
int l[1000000];
int r[1000000];
void link(int x,int y)
{
if (r[x]>r[y])
p[y]=x;
else
{
p[x]=y;
if (r[x]==r[y])
r[y]+=1;
}
}
void UNION(int x,int y)
{
link(x,y);
}
int find_set(int x)
{
if (p[x]!=0)
{
p[x]=find_set(p[x]);
return p[x];
}
else return x;
}
//tarjin算法
int ans;
int tarjan(int x)
{
ca[find_set(x)]=x;
if (l[x]!=0)
{
tarjan(l[x]);
UNION(x,l[x]);
ca[find_set(l[x])]=x;
}
if (r[x]!=0)
{
tarjan(r[x]);
UNION(x,r[x]);
ca[find_set(r[x])]=x;
}
get[x]=true;
if (x==a)
{
if (get[b])
ans=ca[find_set(b)];
}
else if(x==b)
{
if (get[a])
ans=ca[find_set(a)];
}
}
bool root[1000000];
int main(int argc, char const *argv[])
{
cin>>n;
cin>>a>>b;
for (int i=1;i<=n;i++)
{
cin>>l[i]>>r[i];
root[l[i]]=true;
root[r[i]]=true;
}
for (int i=1;i<=n;i++)
if (!root[i])
{
tarjan(i);
break;
}
cout<<ans;
return 0;
} | [
"deskmel@sjtu.edu.cn"
] | deskmel@sjtu.edu.cn |
4e1c41f57bf4fa945eec4a82a1957e4f379b5c7b | 7942b457c56662743a6128517f1ba7287a4e7504 | /2020_02_04/BOJ1695_JJ.cpp | accfd8e235096133465f792f43d9abf80ae16601 | [] | no_license | JungJaeLee-JJ/Algorithmic-Problem-Solving | 8fdaf772b54fc21f9f1af64db4bd0b28fc69c48e | 814d771b8d31c0bb5e1600c72a970db79103e45f | refs/heads/master | 2021-07-15T20:46:17.515870 | 2020-12-06T13:34:09 | 2020-12-06T13:34:09 | 231,224,644 | 0 | 1 | null | 2021-07-24T08:51:49 | 2020-01-01T14:14:32 | C++ | UTF-8 | C++ | false | false | 544 | cpp | #include <iostream>
#include <cmath>
#include <cstring>
using namespace std;
int n;
int arr[5001];
int dp[5001][5001];
int solv(int left, int right, int ans)
{
if(left>=right) return ans;
if(dp[left][right]!=-1) return dp[left][right];
if(arr[left]!=arr[right]) ans=ans+min(solv(left+1,right,ans),solv(left,right-1,ans))+1;
else ans=ans+solv(left+1,right-1,ans);
dp[left][right]=ans;
return ans;
}
int main()
{
cin>>n;
memset(dp,-1,sizeof(dp));
for(int i=1;i<=n;i++) cin>>arr[i];
cout<<solv(1,n,0);
} | [
"tjems8637@gmail.com"
] | tjems8637@gmail.com |
4387f6b27bf684644199cb0fccda8f8c25a40bee | 0d0e78c6262417fb1dff53901c6087b29fe260a0 | /bmvpc/src/v20180625/model/DeleteCustomerGatewayResponse.cpp | f6a3bdce6295b2bd0ea9bc047f46790644d01bf5 | [
"Apache-2.0"
] | permissive | li5ch/tencentcloud-sdk-cpp | ae35ffb0c36773fd28e1b1a58d11755682ade2ee | 12ebfd75a399ee2791f6ac1220a79ce8a9faf7c4 | refs/heads/master | 2022-12-04T15:33:08.729850 | 2020-07-20T00:52:24 | 2020-07-20T00:52:24 | 281,135,686 | 1 | 0 | Apache-2.0 | 2020-07-20T14:14:47 | 2020-07-20T14:14:46 | null | UTF-8 | C++ | false | false | 2,471 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
#include <tencentcloud/bmvpc/v20180625/model/DeleteCustomerGatewayResponse.h>
#include <tencentcloud/core/utils/rapidjson/document.h>
#include <tencentcloud/core/utils/rapidjson/writer.h>
#include <tencentcloud/core/utils/rapidjson/stringbuffer.h>
using TencentCloud::CoreInternalOutcome;
using namespace TencentCloud::Bmvpc::V20180625::Model;
using namespace rapidjson;
using namespace std;
DeleteCustomerGatewayResponse::DeleteCustomerGatewayResponse()
{
}
CoreInternalOutcome DeleteCustomerGatewayResponse::Deserialize(const string &payload)
{
Document d;
d.Parse(payload.c_str());
if (d.HasParseError() || !d.IsObject())
{
return CoreInternalOutcome(Error("response not json format"));
}
if (!d.HasMember("Response") || !d["Response"].IsObject())
{
return CoreInternalOutcome(Error("response `Response` is null or not object"));
}
Value &rsp = d["Response"];
if (!rsp.HasMember("RequestId") || !rsp["RequestId"].IsString())
{
return CoreInternalOutcome(Error("response `Response.RequestId` is null or not string"));
}
string requestId(rsp["RequestId"].GetString());
SetRequestId(requestId);
if (rsp.HasMember("Error"))
{
if (!rsp["Error"].IsObject() ||
!rsp["Error"].HasMember("Code") || !rsp["Error"]["Code"].IsString() ||
!rsp["Error"].HasMember("Message") || !rsp["Error"]["Message"].IsString())
{
return CoreInternalOutcome(Error("response `Response.Error` format error").SetRequestId(requestId));
}
string errorCode(rsp["Error"]["Code"].GetString());
string errorMsg(rsp["Error"]["Message"].GetString());
return CoreInternalOutcome(Error(errorCode, errorMsg).SetRequestId(requestId));
}
return CoreInternalOutcome(true);
}
| [
"jimmyzhuang@tencent.com"
] | jimmyzhuang@tencent.com |
b6a5c3ae31f2ef6bc6eaa18d049271920d834363 | 97a470d2f3f1857fe3d6f1a83b07e48fc78fc77b | /RayTracer/src/shader/shader.h | 97ecc56499a777d464f1362fa064857b32cb226b | [
"MIT"
] | permissive | blizmax/ManyLightsWarmup | 4cb1e3233c8e834007cf38e86018fcc52e33f43b | 0fdb298f2fbb67bb50a0aa14ae5f7e01f8272e22 | refs/heads/master | 2022-03-30T21:25:53.400545 | 2019-12-17T16:41:03 | 2019-12-17T16:41:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 152 | h |
#include "Vec3f.h"
#include "Ray.h"
#include "HitInfo.h"
class shader
{
public:
virtual Vec3f shade(Ray ray, HitInfo hit, bool emit = false) = 0;
}; | [
"mathiasgam@hotmail.com"
] | mathiasgam@hotmail.com |
b74e2f09a60c188bdce5a2d96f229b502a473502 | 11a01e0fdf5c20f67c429d8450d20127d075c801 | /opencmCode/PruebaCompleta/PruebaCompleta.ino | 4b1775d0d2c1a9d3cfd1db8b0988305385313c0a | [] | no_license | estebanramir/TrabajoDeGrado-INTERFAZ-EMOCIONAL-PARA-EL-ROBOT-DARWIN-MINI-EN-EL-CONTEXTO-DE-TEATRO-ROB-TICO | 95f07bb5b8b37e8971282c85b2009d163a7df7fb | e8447c89b09db5d101acd43e5281fc9246b0f758 | refs/heads/master | 2020-04-07T11:33:46.808588 | 2018-11-20T04:38:58 | 2018-11-20T04:38:58 | 158,331,523 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 43,129 | ino | #define DXL_BUS_SERIAL1 1 //Dynamixel on Serial1(USART1) <-OpenCM9.04
Dynamixel Dxl(DXL_BUS_SERIAL1);
char instruccion;
int tam;
char arregloNodos[100];
int arregloNodosInt[100];
int sentimiento;
void setup()
{
// Initialize the dynamixel bus:
// Dynamixel 2.0 Baudrate -> 0: 9600, 1: 57600, 2: 115200, 3: 1Mbps
Dxl.begin(3);
for(int i=1; i<=16; i++)
{
Dxl.jointMode(i);
}
Dxl.goalPosition(1, 512);
Dxl.goalPosition(2, 512);
Dxl.goalPosition(3, 262);
Dxl.goalPosition(4, 761);
Dxl.goalPosition(5, 512);
Dxl.goalPosition(6, 512);
Dxl.goalPosition(7, 512);
Dxl.goalPosition(8, 512);
Dxl.goalPosition(9, 422);
Dxl.goalPosition(10, 601);
Dxl.goalPosition(11, 611);
Dxl.goalPosition(12, 412);
Dxl.goalPosition(13, 556);
Dxl.goalPosition(14, 467);
Dxl.goalPosition(15, 512);
Dxl.goalPosition(16, 512);
pinMode(2, OUTPUT);
constructorPosiciones();
}
struct nodo
{
int m1;
int m2;
int m3;
int m4;
int m5;
int m6;
int m7;
int m8;
int m9;
int m10;
int m11;
int m12;
int m13;
int m14;
int m15;
int m16;
};
nodo posiciones[83];
void constructorPosiciones()
{
posiciones[1].m1 = 512;
posiciones[1].m2 = 512;
posiciones[1].m3 = 262;
posiciones[1].m4 = 761;
posiciones[1].m5 = 512;
posiciones[1].m6 = 512;
posiciones[1].m7 = 512;
posiciones[1].m8 = 512;
posiciones[1].m9 = 422;
posiciones[1].m10 = 601;
posiciones[1].m11 = 611;
posiciones[1].m12 = 412;
posiciones[1].m13 = 556;
posiciones[1].m14 = 467;
posiciones[1].m15 = 512;
posiciones[1].m16 = 512;
posiciones[2].m1 = 236;
posiciones[2].m2 = 787;
posiciones[2].m3 = 521;
posiciones[2].m4 = 502;
posiciones[2].m5 = 505;
posiciones[2].m6 = 518;
posiciones[2].m7 = 210;
posiciones[2].m8 = 813;
posiciones[2].m9 = 422;
posiciones[2].m10 = 636;
posiciones[2].m11 = 611;
posiciones[2].m12 = 412;
posiciones[2].m13 = 556;
posiciones[2].m14 = 467;
posiciones[2].m15 = 512;
posiciones[2].m16 = 512;
posiciones[3].m1 = 318;
posiciones[3].m2 = 705;
posiciones[3].m3 = 245;
posiciones[3].m4 = 778;
posiciones[3].m5 = 508;
posiciones[3].m6 = 515;
posiciones[3].m7 = 210;
posiciones[3].m8 = 813;
posiciones[3].m9 = 422;
posiciones[3].m10 = 601;
posiciones[3].m11 = 611;
posiciones[3].m12 = 412;
posiciones[3].m13 = 556;
posiciones[3].m14 = 467;
posiciones[3].m15 = 512;
posiciones[3].m16 = 512;
posiciones[4].m1 = 249;
posiciones[4].m2 = 774;
posiciones[4].m3 = 550;
posiciones[4].m4 = 473;
posiciones[4].m5 = 505;
posiciones[4].m6 = 518;
posiciones[4].m7 = 210;
posiciones[4].m8 = 813;
posiciones[4].m9 = 422;
posiciones[4].m10 = 601;
posiciones[4].m11 = 611;
posiciones[4].m12 = 412;
posiciones[4].m13 = 556;
posiciones[4].m14 = 467;
posiciones[4].m15 = 512;
posiciones[4].m16 = 512;
posiciones[5].m1 = 805;
posiciones[5].m2 = 218;
posiciones[5].m3 = 524;
posiciones[5].m4 = 499;
posiciones[5].m5 = 501;
posiciones[5].m6 = 522;
posiciones[5].m7 = 222;
posiciones[5].m8 = 813;
posiciones[5].m9 = 422;
posiciones[5].m10 = 601;
posiciones[5].m11 = 611;
posiciones[5].m12 = 412;
posiciones[5].m13 = 556;
posiciones[5].m14 = 467;
posiciones[5].m15 = 512;
posiciones[5].m16 = 512;
posiciones[6].m1 = 802;
posiciones[6].m2 = 221;
posiciones[6].m3 = 210;
posiciones[6].m4 = 813;
posiciones[6].m5 = 498;
posiciones[6].m6 = 525;
posiciones[6].m7 = 210;
posiciones[6].m8 = 813;
posiciones[6].m9 = 343;
posiciones[6].m10 = 680;
posiciones[6].m11 = 901;
posiciones[6].m12 = 122;
posiciones[6].m13 = 716;
posiciones[6].m14 = 307;
posiciones[6].m15 = 181;
posiciones[6].m16 = 842;
posiciones[7].m1 = 802;
posiciones[7].m2 = 221;
posiciones[7].m3 = 213;
posiciones[7].m4 = 810;
posiciones[7].m5 = 515;
posiciones[7].m6 = 508;
posiciones[7].m7 = 512;
posiciones[7].m8 = 512;
posiciones[7].m9 = 731;
posiciones[7].m10 = 731;
posiciones[7].m11 = 901;
posiciones[7].m12 = 122;
posiciones[7].m13 = 716;
posiciones[7].m14 = 716;
posiciones[7].m15 = 512;
posiciones[7].m16 = 512;
posiciones[8].m1 = 512;
posiciones[8].m2 = 512;
posiciones[8].m3 = 262;
posiciones[8].m4 = 761;
posiciones[8].m5 = 512;
posiciones[8].m6 = 512;
posiciones[8].m7 = 512;
posiciones[8].m8 = 512;
posiciones[8].m9 = 290;
posiciones[8].m10 = 733;
posiciones[8].m11 = 911;
posiciones[8].m12 = 112;
posiciones[8].m13 = 726;
posiciones[8].m14 = 297;
posiciones[8].m15 = 512;
posiciones[8].m16 = 512;
posiciones[9].m1 = 512;
posiciones[9].m2 = 512;
posiciones[9].m3 = 262;
posiciones[9].m4 = 761;
posiciones[9].m5 = 512;
posiciones[9].m6 = 512;
posiciones[9].m7 = 512;
posiciones[9].m8 = 512;
posiciones[9].m9 = 241;
posiciones[9].m10 = 782;
posiciones[9].m11 = 611;
posiciones[9].m12 = 412;
posiciones[9].m13 = 487;
posiciones[9].m14 = 536;
posiciones[9].m15 = 512;
posiciones[9].m16 = 512;
posiciones[10].m1 = 436;
posiciones[10].m2 = 361;
posiciones[10].m3 = 262;
posiciones[10].m4 = 761;
posiciones[10].m5 = 512;
posiciones[10].m6 = 512;
posiciones[10].m7 = 512;
posiciones[10].m8 = 512;
posiciones[10].m9 = 422;
posiciones[10].m10 = 600;
posiciones[10].m11 = 611;
posiciones[10].m12 = 412;
posiciones[10].m13 = 556;
posiciones[10].m14 = 466;
posiciones[10].m15 = 512;
posiciones[10].m16 = 512;
posiciones[11].m1 = 436;
posiciones[11].m2 = 274;
posiciones[11].m3 = 297;
posiciones[11].m4 = 827;
posiciones[11].m5 = 267;
posiciones[11].m6 = 711;
posiciones[11].m7 = 512;
posiciones[11].m8 = 512;
posiciones[11].m9 = 241;
posiciones[11].m10 = 794;
posiciones[11].m11 = 611;
posiciones[11].m12 = 412;
posiciones[11].m13 = 477;
posiciones[11].m14 = 546;
posiciones[11].m15 = 512;
posiciones[11].m16 = 512;
posiciones[12].m1 = 835;
posiciones[12].m2 = 110;
posiciones[12].m3 = 442;
posiciones[12].m4 = 472;
posiciones[12].m5 = 138;
posiciones[12].m6 = 897;
posiciones[12].m7 = 512;
posiciones[12].m8 = 512;
posiciones[12].m9 = 495;
posiciones[12].m10 = 608;
posiciones[12].m11 = 611;
posiciones[12].m12 = 412;
posiciones[12].m13 = 600;
posiciones[12].m14 = 436;
posiciones[12].m15 = 512;
posiciones[12].m16 = 512;
posiciones[13].m1 = 877;
posiciones[13].m2 = 110;
posiciones[13].m3 = 216;
posiciones[13].m4 = 478;
posiciones[13].m5 = 467;
posiciones[13].m6 = 893;
posiciones[13].m7 = 512;
posiciones[13].m8 = 512;
posiciones[13].m9 = 495;
posiciones[13].m10 = 608;
posiciones[13].m11 = 611;
posiciones[13].m12 = 412;
posiciones[13].m13 = 600;
posiciones[13].m14 = 496;
posiciones[13].m15 = 512;
posiciones[13].m16 = 512;
posiciones[14].m1 = 880;
posiciones[14].m2 = 230;
posiciones[14].m3 = 674;
posiciones[14].m4 = 717;
posiciones[14].m5 = 438;
posiciones[14].m6 = 761;
posiciones[14].m7 = 507;
posiciones[14].m8 = 508;
posiciones[14].m9 = 583;
posiciones[14].m10 = 575;
posiciones[14].m11 = 507;
posiciones[14].m12 = 397;
posiciones[14].m13 = 567;
posiciones[14].m14 = 468;
posiciones[14].m15 = 507;
posiciones[14].m16 = 507;
posiciones[15].m1 = 869;
posiciones[15].m2 = 450;
posiciones[15].m3 = 200;
posiciones[15].m4 = 475;
posiciones[15].m5 = 452;
posiciones[15].m6 = 819;
posiciones[15].m7 = 508;
posiciones[15].m8 = 508;
posiciones[15].m9 = 473;
posiciones[15].m10 = 602;
posiciones[15].m11 = 663;
posiciones[15].m12 = 364;
posiciones[15].m13 = 638;
posiciones[15].m14 = 453;
posiciones[15].m15 = 511;
posiciones[15].m16 = 508;
posiciones[16].m1 = 465;
posiciones[16].m2 = 230;
posiciones[16].m3 = 601;
posiciones[16].m4 = 717;
posiciones[16].m5 = 198;
posiciones[16].m6 = 761;
posiciones[16].m7 = 512;
posiciones[16].m8 = 512;
posiciones[16].m9 = 422;
posiciones[16].m10 = 601;
posiciones[16].m11 = 611;
posiciones[16].m12 = 412;
posiciones[16].m13 = 556;
posiciones[16].m14 = 467;
posiciones[16].m15 = 512;
posiciones[16].m16 = 512;
posiciones[17].m1 = 1017;
posiciones[17].m2 = 490;
posiciones[17].m3 = 293;
posiciones[17].m4 = 509;
posiciones[17].m5 = 384;
posiciones[17].m6 = 790;
posiciones[17].m7 = 512;
posiciones[17].m8 = 512;
posiciones[17].m9 = 492;
posiciones[17].m10 = 611;
posiciones[17].m11 = 611;
posiciones[17].m12 = 412;
posiciones[17].m13 = 596;
posiciones[17].m14 = 497;
posiciones[17].m15 = 512;
posiciones[17].m16 = 512;
posiciones[18].m1 = 912;
posiciones[18].m2 = 185;
posiciones[18].m3 = 550;
posiciones[18].m4 = 580;
posiciones[18].m5 = 898;
posiciones[18].m6 = 881;
posiciones[18].m7 = 511;
posiciones[18].m8 = 511;
posiciones[18].m9 = 414;
posiciones[18].m10 = 527;
posiciones[18].m11 = 610;
posiciones[18].m12 = 411;
posiciones[18].m13 = 526;
posiciones[18].m14 = 422;
posiciones[18].m15 = 511;
posiciones[18].m16 = 511;
posiciones[19].m1 = 912;
posiciones[19].m2 = 145;
posiciones[19].m3 = 544;
posiciones[19].m4 = 806;
posiciones[19].m5 = 129;
posiciones[19].m6 = 555;
posiciones[19].m7 = 511;
posiciones[19].m8 = 511;
posiciones[19].m9 = 414;
posiciones[19].m10 = 527;
posiciones[19].m11 = 610;
posiciones[19].m12 = 411;
posiciones[19].m13 = 526;
posiciones[19].m14 = 422;
posiciones[19].m15 = 511;
posiciones[19].m16 = 511;
posiciones[20].m1 = 792;
posiciones[20].m2 = 142;
posiciones[20].m3 = 305;
posiciones[20].m4 = 348;
posiciones[20].m5 = 261;
posiciones[20].m6 = 584;
posiciones[20].m7 = 515;
posiciones[20].m8 = 515;
posiciones[20].m9 = 447;
posiciones[20].m10 = 439;
posiciones[20].m11 = 625;
posiciones[20].m12 = 515;
posiciones[20].m13 = 554;
posiciones[20].m14 = 455;
posiciones[20].m15 = 515;
posiciones[20].m16 = 515;
posiciones[21].m1 = 572;
posiciones[21].m2 = 153;
posiciones[21].m3 = 547;
posiciones[21].m4 = 822;
posiciones[21].m5 = 203;
posiciones[21].m6 = 570;
posiciones[21].m7 = 514;
posiciones[21].m8 = 514;
posiciones[21].m9 = 420;
posiciones[21].m10 = 549;
posiciones[21].m11 = 658;
posiciones[21].m12 = 359;
posiciones[21].m13 = 569;
posiciones[21].m14 = 384;
posiciones[21].m15 = 514;
posiciones[21].m16 = 512;
posiciones[22].m1 = 792;
posiciones[22].m2 = 557;
posiciones[22].m3 = 305;
posiciones[22].m4 = 421;
posiciones[22].m5 = 261;
posiciones[22].m6 = 824;
posiciones[22].m7 = 511;
posiciones[22].m8 = 511;
posiciones[22].m9 = 421;
posiciones[22].m10 = 600;
posiciones[22].m11 = 610;
posiciones[22].m12 = 411;
posiciones[22].m13 = 555;
posiciones[22].m14 = 466;
posiciones[22].m15 = 511;
posiciones[22].m16 = 511;
posiciones[23].m1 = 533;
posiciones[23].m2 = 5;
posiciones[23].m3 = 512;
posiciones[23].m4 = 729;
posiciones[23].m5 = 232;
posiciones[23].m6 = 638;
posiciones[23].m7 = 511;
posiciones[23].m8 = 511;
posiciones[23].m9 = 411;
posiciones[23].m10 = 530;
posiciones[23].m11 = 610;
posiciones[23].m12 = 411;
posiciones[23].m13 = 525;
posiciones[23].m14 = 426;
posiciones[23].m15 = 511;
posiciones[23].m16 = 511;
posiciones[24].m1 = 1022;
posiciones[24].m2 = 512;
posiciones[24].m3 = 264;
posiciones[24].m4 = 761;
posiciones[24].m5 = 508;
posiciones[24].m6 = 512;
posiciones[24].m7 = 512;
posiciones[24].m8 = 512;
posiciones[24].m9 = 422;
posiciones[24].m10 = 601;
posiciones[24].m11 = 611;
posiciones[24].m12 = 412;
posiciones[24].m13 = 556;
posiciones[24].m14 = 467;
posiciones[24].m15 = 512;
posiciones[24].m16 = 512;
posiciones[25].m1 = 1022;
posiciones[25].m2 = 512;
posiciones[25].m3 = 336;
posiciones[25].m4 = 761;
posiciones[25].m5 = 625;
posiciones[25].m6 = 512;
posiciones[25].m7 = 512;
posiciones[25].m8 = 512;
posiciones[25].m9 = 422;
posiciones[25].m10 = 601;
posiciones[25].m11 = 611;
posiciones[25].m12 = 412;
posiciones[25].m13 = 556;
posiciones[25].m14 = 467;
posiciones[25].m15 = 512;
posiciones[25].m16 = 512;
posiciones[26].m1 = 1022;
posiciones[26].m2 = 512;
posiciones[26].m3 = 198;
posiciones[26].m4 = 761;
posiciones[26].m5 = 399;
posiciones[26].m6 = 512;
posiciones[26].m7 = 512;
posiciones[26].m8 = 512;
posiciones[26].m9 = 422;
posiciones[26].m10 = 601;
posiciones[26].m11 = 611;
posiciones[26].m12 = 412;
posiciones[26].m13 = 556;
posiciones[26].m14 = 467;
posiciones[26].m15 = 512;
posiciones[26].m16 = 512;
posiciones[27].m1 = 511;
posiciones[27].m2 = 0;
posiciones[27].m3 = 261;
posiciones[27].m4 = 758;
posiciones[27].m5 = 511;
posiciones[27].m6 = 514;
posiciones[27].m7 = 511;
posiciones[27].m8 = 511;
posiciones[27].m9 = 421;
posiciones[27].m10 = 600;
posiciones[27].m11 = 610;
posiciones[27].m12 = 411;
posiciones[27].m13 = 555;
posiciones[27].m14 = 466;
posiciones[27].m15 = 511;
posiciones[27].m16 = 511;
posiciones[28].m1 = 511;
posiciones[28].m2 = 2;
posiciones[28].m3 = 261;
posiciones[28].m4 = 686;
posiciones[28].m5 = 511;
posiciones[28].m6 = 397;
posiciones[28].m7 = 511;
posiciones[28].m8 = 511;
posiciones[28].m9 = 421;
posiciones[28].m10 = 600;
posiciones[28].m11 = 610;
posiciones[28].m12 = 411;
posiciones[28].m13 = 555;
posiciones[28].m14 = 466;
posiciones[28].m15 = 511;
posiciones[28].m16 = 511;
posiciones[29].m1 = 511;
posiciones[29].m2 = 0;
posiciones[29].m3 = 261;
posiciones[29].m4 = 822;
posiciones[29].m5 = 511;
posiciones[29].m6 = 623;
posiciones[29].m7 = 511;
posiciones[29].m8 = 511;
posiciones[29].m9 = 421;
posiciones[29].m10 = 600;
posiciones[29].m11 = 610;
posiciones[29].m12 = 411;
posiciones[29].m13 = 555;
posiciones[29].m14 = 466;
posiciones[29].m15 = 511;
posiciones[29].m16 = 511;
posiciones[30].m1 = 512;
posiciones[30].m2 = 512;
posiciones[30].m3 = 262;
posiciones[30].m4 = 761;
posiciones[30].m5 = 512;
posiciones[30].m6 = 512;
posiciones[30].m7 = 512;
posiciones[30].m8 = 512;
posiciones[30].m9 = 402;
posiciones[30].m10 = 581;
posiciones[30].m11 = 611;
posiciones[30].m12 = 412;
posiciones[30].m13 = 546;
posiciones[30].m14 = 437;
posiciones[30].m15 = 521;
posiciones[30].m16 = 551;
posiciones[31].m1 = 541;
posiciones[31].m2 = 541;
posiciones[31].m3 = 262;
posiciones[31].m4 = 761;
posiciones[31].m5 = 512;
posiciones[31].m6 = 512;
posiciones[31].m7 = 502;
posiciones[31].m8 = 521;
posiciones[31].m9 = 422;
posiciones[31].m10 = 651;
posiciones[31].m11 = 611;
posiciones[31].m12 = 312;
posiciones[31].m13 = 566;
posiciones[31].m14 = 407;
posiciones[31].m15 = 521;
posiciones[31].m16 = 541;
posiciones[32].m1 = 611;
posiciones[32].m2 = 561;
posiciones[32].m3 = 262;
posiciones[32].m4 = 761;
posiciones[32].m5 = 512;
posiciones[32].m6 = 512;
posiciones[32].m7 = 512;
posiciones[32].m8 = 512;
posiciones[32].m9 = 442;
posiciones[32].m10 = 621;
posiciones[32].m11 = 611;
posiciones[32].m12 = 412;
posiciones[32].m13 = 586;
posiciones[32].m14 = 477;
posiciones[32].m15 = 512;
posiciones[32].m16 = 512;
posiciones[33].m1 = 511;
posiciones[33].m2 = 511;
posiciones[33].m3 = 261;
posiciones[33].m4 = 760;
posiciones[33].m5 = 511;
posiciones[33].m6 = 511;
posiciones[33].m7 = 511;
posiciones[33].m8 = 511;
posiciones[33].m9 = 441;
posiciones[33].m10 = 620;
posiciones[33].m11 = 610;
posiciones[33].m12 = 411;
posiciones[33].m13 = 585;
posiciones[33].m14 = 476;
posiciones[33].m15 = 471;
posiciones[33].m16 = 501;
posiciones[34].m1 = 481;
posiciones[34].m2 = 481;
posiciones[34].m3 = 261;
posiciones[34].m4 = 760;
posiciones[34].m5 = 511;
posiciones[34].m6 = 511;
posiciones[34].m7 = 501;
posiciones[34].m8 = 521;
posiciones[34].m9 = 371;
posiciones[34].m10 = 600;
posiciones[34].m11 = 710;
posiciones[34].m12 = 411;
posiciones[34].m13 = 615;
posiciones[34].m14 = 456;
posiciones[34].m15 = 481;
posiciones[34].m16 = 501;
posiciones[35].m1 = 462;
posiciones[35].m2 = 412;
posiciones[35].m3 = 262;
posiciones[35].m4 = 761;
posiciones[35].m5 = 512;
posiciones[35].m6 = 512;
posiciones[35].m7 = 512;
posiciones[35].m8 = 512;
posiciones[35].m9 = 402;
posiciones[35].m10 = 581;
posiciones[35].m11 = 611;
posiciones[35].m12 = 412;
posiciones[35].m13 = 546;
posiciones[35].m14 = 437;
posiciones[35].m15 = 512;
posiciones[35].m16 = 512;
posiciones[36].m1 = 512;
posiciones[36].m2 = 512;
posiciones[36].m3 = 262;
posiciones[36].m4 = 761;
posiciones[36].m5 = 512;
posiciones[36].m6 = 512;
posiciones[36].m7 = 512;
posiciones[36].m8 = 512;
posiciones[36].m9 = 402;
posiciones[36].m10 = 581;
posiciones[36].m11 = 611;
posiciones[36].m12 = 412;
posiciones[36].m13 = 546;
posiciones[36].m14 = 437;
posiciones[36].m15 = 521;
posiciones[36].m16 = 551;
posiciones[37].m1 = 541;
posiciones[37].m2 = 541;
posiciones[37].m3 = 262;
posiciones[37].m4 = 761;
posiciones[37].m5 = 512;
posiciones[37].m6 = 512;
posiciones[37].m7 = 502;
posiciones[37].m8 = 521;
posiciones[37].m9 = 422;
posiciones[37].m10 = 651;
posiciones[37].m11 = 611;
posiciones[37].m12 = 312;
posiciones[37].m13 = 566;
posiciones[37].m14 = 407;
posiciones[37].m15 = 521;
posiciones[37].m16 = 541;
posiciones[38].m1 = 559;
posiciones[38].m2 = 512;
posiciones[38].m3 = 262;
posiciones[38].m4 = 761;
posiciones[38].m5 = 512;
posiciones[38].m6 = 512;
posiciones[38].m7 = 512;
posiciones[38].m8 = 512;
posiciones[38].m9 = 430;
posiciones[38].m10 = 633;
posiciones[38].m11 = 611;
posiciones[38].m12 = 412;
posiciones[38].m13 = 576;
posiciones[38].m14 = 487;
posiciones[38].m15 = 521;
posiciones[38].m16 = 551;
posiciones[39].m1 = 542;
posiciones[39].m2 = 508;
posiciones[39].m3 = 263;
posiciones[39].m4 = 762;
posiciones[39].m5 = 512;
posiciones[39].m6 = 512;
posiciones[39].m7 = 502;
posiciones[39].m8 = 522;
posiciones[39].m9 = 428;
posiciones[39].m10 = 647;
posiciones[39].m11 = 612;
posiciones[39].m12 = 313;
posiciones[39].m13 = 557;
posiciones[39].m14 = 605;
posiciones[39].m15 = 522;
posiciones[39].m16 = 542;
posiciones[40].m1 = 476;
posiciones[40].m2 = 426;
posiciones[40].m3 = 263;
posiciones[40].m4 = 762;
posiciones[40].m5 = 512;
posiciones[40].m6 = 512;
posiciones[40].m7 = 512;
posiciones[40].m8 = 512;
posiciones[40].m9 = 629;
posiciones[40].m10 = 591;
posiciones[40].m11 = 612;
posiciones[40].m12 = 413;
posiciones[40].m13 = 537;
posiciones[40].m14 = 448;
posiciones[40].m15 = 512;
posiciones[40].m16 = 512;
posiciones[41].m1 = 512;
posiciones[41].m2 = 464;
posiciones[41].m3 = 262;
posiciones[41].m4 = 761;
posiciones[41].m5 = 512;
posiciones[41].m6 = 512;
posiciones[41].m7 = 512;
posiciones[41].m8 = 512;
posiciones[41].m9 = 390;
posiciones[41].m10 = 593;
posiciones[41].m11 = 611;
posiciones[41].m12 = 412;
posiciones[41].m13 = 536;
posiciones[41].m14 = 447;
posiciones[41].m15 = 472;
posiciones[41].m16 = 502;
posiciones[42].m1 = 515;
posiciones[42].m2 = 481;
posiciones[42].m3 = 261;
posiciones[42].m4 = 760;
posiciones[42].m5 = 511;
posiciones[42].m6 = 511;
posiciones[42].m7 = 501;
posiciones[42].m8 = 521;
posiciones[42].m9 = 376;
posiciones[42].m10 = 595;
posiciones[42].m11 = 710;
posiciones[42].m12 = 411;
posiciones[42].m13 = 605;
posiciones[42].m14 = 466;
posiciones[42].m15 = 481;
posiciones[42].m16 = 501;
posiciones[43].m1 = 597;
posiciones[43].m2 = 547;
posiciones[43].m3 = 261;
posiciones[43].m4 = 760;
posiciones[43].m5 = 511;
posiciones[43].m6 = 511;
posiciones[43].m7 = 511;
posiciones[43].m8 = 511;
posiciones[43].m9 = 432;
posiciones[43].m10 = 629;
posiciones[43].m11 = 610;
posiciones[43].m12 = 411;
posiciones[43].m13 = 575;
posiciones[43].m14 = 486;
posiciones[43].m15 = 511;
posiciones[43].m16 = 511;
posiciones[44].m1 = 511;
posiciones[44].m2 = 511;
posiciones[44].m3 = 261;
posiciones[44].m4 = 760;
posiciones[44].m5 = 511;
posiciones[44].m6 = 511;
posiciones[44].m7 = 511;
posiciones[44].m8 = 511;
posiciones[44].m9 = 440;
posiciones[44].m10 = 621;
posiciones[44].m11 = 610;
posiciones[44].m12 = 411;
posiciones[44].m13 = 575;
posiciones[44].m14 = 486;
posiciones[44].m15 = 530;
posiciones[44].m16 = 560;
posiciones[45].m1 = 541;
posiciones[45].m2 = 541;
posiciones[45].m3 = 262;
posiciones[45].m4 = 761;
posiciones[45].m5 = 512;
posiciones[45].m6 = 512;
posiciones[45].m7 = 502;
posiciones[45].m8 = 521;
posiciones[45].m9 = 421;
posiciones[45].m10 = 652;
posiciones[45].m11 = 611;
posiciones[45].m12 = 312;
posiciones[45].m13 = 556;
posiciones[45].m14 = 417;
posiciones[45].m15 = 521;
posiciones[45].m16 = 541;
posiciones[46].m1 = 746;
posiciones[46].m2 = 277;
posiciones[46].m3 = 203;
posiciones[46].m4 = 820;
posiciones[46].m5 = 524;
posiciones[46].m6 = 499;
posiciones[46].m7 = 512;
posiciones[46].m8 = 512;
posiciones[46].m9 = 162;
posiciones[46].m10 = 861;
posiciones[46].m11 = 876;
posiciones[46].m12 = 147;
posiciones[46].m13 = 641;
posiciones[46].m14 = 382;
posiciones[46].m15 = 512;
posiciones[46].m16 = 512;
posiciones[47].m1 = 783;
posiciones[47].m2 = 240;
posiciones[47].m3 = 194;
posiciones[47].m4 = 829;
posiciones[47].m5 = 524;
posiciones[47].m6 = 499;
posiciones[47].m7 = 512;
posiciones[47].m8 = 512;
posiciones[47].m9 = 168;
posiciones[47].m10 = 855;
posiciones[47].m11 = 943;
posiciones[47].m12 = 80;
posiciones[47].m13 = 756;
posiciones[47].m14 = 267;
posiciones[47].m15 = 512;
posiciones[47].m16 = 512;
posiciones[48].m1 = 741;
posiciones[48].m2 = 282;
posiciones[48].m3 = 221;
posiciones[48].m4 = 802;
posiciones[48].m5 = 492;
posiciones[48].m6 = 531;
posiciones[48].m7 = 512;
posiciones[48].m8 = 512;
posiciones[48].m9 = 466;
posiciones[48].m10 = 557;
posiciones[48].m11 = 512;
posiciones[48].m12 = 512;
posiciones[48].m13 = 702;
posiciones[48].m14 = 321;
posiciones[48].m15 = 512;
posiciones[48].m16 = 512;
posiciones[49].m1 = 816;
posiciones[49].m2 = 207;
posiciones[49].m3 = 454;
posiciones[49].m4 = 569;
posiciones[49].m5 = 124;
posiciones[49].m6 = 899;
posiciones[49].m7 = 512;
posiciones[49].m8 = 512;
posiciones[49].m9 = 466;
posiciones[49].m10 = 557;
posiciones[49].m11 = 512;
posiciones[49].m12 = 512;
posiciones[49].m13 = 733;
posiciones[49].m14 = 290;
posiciones[49].m15 = 512;
posiciones[49].m16 = 512;
posiciones[50].m1 = 512;
posiciones[50].m2 = 512;
posiciones[50].m3 = 512;
posiciones[50].m4 = 512;
posiciones[50].m5 = 512;
posiciones[50].m6 = 512;
posiciones[50].m7 = 512;
posiciones[50].m8 = 512;
posiciones[50].m9 = 512;
posiciones[50].m10 = 512;
posiciones[50].m11 = 512;
posiciones[50].m12 = 512;
posiciones[50].m13 = 512;
posiciones[50].m14 = 512;
posiciones[50].m15 = 512;
posiciones[50].m16 = 512;
posiciones[51].m1 = 512;
posiciones[51].m2 = 512;
posiciones[51].m3 = 512;
posiciones[51].m4 = 512;
posiciones[51].m5 = 512;
posiciones[51].m6 = 512;
posiciones[51].m7 = 512;
posiciones[51].m8 = 512;
posiciones[51].m9 = 512;
posiciones[51].m10 = 512;
posiciones[51].m11 = 512;
posiciones[51].m12 = 512;
posiciones[51].m13 = 512;
posiciones[51].m14 = 512;
posiciones[51].m15 = 512;
posiciones[51].m16 = 512;
posiciones[52].m1 = 512;
posiciones[52].m2 = 512;
posiciones[52].m3 = 512;
posiciones[52].m4 = 512;
posiciones[52].m5 = 512;
posiciones[52].m6 = 512;
posiciones[52].m7 = 512;
posiciones[52].m8 = 512;
posiciones[52].m9 = 512;
posiciones[52].m10 = 512;
posiciones[52].m11 = 512;
posiciones[52].m12 = 512;
posiciones[52].m13 = 512;
posiciones[52].m14 = 512;
posiciones[52].m15 = 512;
posiciones[52].m16 = 512;
posiciones[53].m1 = 512;
posiciones[53].m2 = 512;
posiciones[53].m3 = 512;
posiciones[53].m4 = 512;
posiciones[53].m5 = 512;
posiciones[53].m6 = 512;
posiciones[53].m7 = 512;
posiciones[53].m8 = 512;
posiciones[53].m9 = 512;
posiciones[53].m10 = 512;
posiciones[53].m11 = 512;
posiciones[53].m12 = 512;
posiciones[53].m13 = 512;
posiciones[53].m14 = 512;
posiciones[53].m15 = 512;
posiciones[53].m16 = 512;
posiciones[54].m1 = 512;
posiciones[54].m2 = 512;
posiciones[54].m3 = 512;
posiciones[54].m4 = 512;
posiciones[54].m5 = 512;
posiciones[54].m6 = 512;
posiciones[54].m7 = 512;
posiciones[54].m8 = 512;
posiciones[54].m9 = 512;
posiciones[54].m10 = 512;
posiciones[54].m11 = 512;
posiciones[54].m12 = 512;
posiciones[54].m13 = 512;
posiciones[54].m14 = 512;
posiciones[54].m15 = 512;
posiciones[54].m16 = 512;
posiciones[55].m1 = 512;
posiciones[55].m2 = 512;
posiciones[55].m3 = 512;
posiciones[55].m4 = 512;
posiciones[55].m5 = 512;
posiciones[55].m6 = 512;
posiciones[55].m7 = 512;
posiciones[55].m8 = 512;
posiciones[55].m9 = 512;
posiciones[55].m10 = 512;
posiciones[55].m11 = 512;
posiciones[55].m12 = 512;
posiciones[55].m13 = 512;
posiciones[55].m14 = 512;
posiciones[55].m15 = 512;
posiciones[55].m16 = 512;
posiciones[56].m1 = 512;
posiciones[56].m2 = 512;
posiciones[56].m3 = 512;
posiciones[56].m4 = 512;
posiciones[56].m5 = 512;
posiciones[56].m6 = 512;
posiciones[56].m7 = 512;
posiciones[56].m8 = 512;
posiciones[56].m9 = 512;
posiciones[56].m10 = 512;
posiciones[56].m11 = 512;
posiciones[56].m12 = 512;
posiciones[56].m13 = 512;
posiciones[56].m14 = 512;
posiciones[56].m15 = 512;
posiciones[56].m16 = 512;
posiciones[57].m1 = 512;
posiciones[57].m2 = 512;
posiciones[57].m3 = 512;
posiciones[57].m4 = 512;
posiciones[57].m5 = 512;
posiciones[57].m6 = 512;
posiciones[57].m7 = 512;
posiciones[57].m8 = 512;
posiciones[57].m9 = 512;
posiciones[57].m10 = 512;
posiciones[57].m11 = 512;
posiciones[57].m12 = 512;
posiciones[57].m13 = 512;
posiciones[57].m14 = 512;
posiciones[57].m15 = 512;
posiciones[57].m16 = 512;
posiciones[58].m1 = 512;
posiciones[58].m2 = 512;
posiciones[58].m3 = 512;
posiciones[58].m4 = 512;
posiciones[58].m5 = 512;
posiciones[58].m6 = 512;
posiciones[58].m7 = 512;
posiciones[58].m8 = 512;
posiciones[58].m9 = 512;
posiciones[58].m10 = 512;
posiciones[58].m11 = 512;
posiciones[58].m12 = 512;
posiciones[58].m13 = 512;
posiciones[58].m14 = 512;
posiciones[58].m15 = 512;
posiciones[58].m16 = 512;
posiciones[59].m1 = 512;
posiciones[59].m2 = 512;
posiciones[59].m3 = 512;
posiciones[59].m4 = 512;
posiciones[59].m5 = 512;
posiciones[59].m6 = 512;
posiciones[59].m7 = 512;
posiciones[59].m8 = 512;
posiciones[59].m9 = 512;
posiciones[59].m10 = 512;
posiciones[59].m11 = 512;
posiciones[59].m12 = 512;
posiciones[59].m13 = 512;
posiciones[59].m14 = 512;
posiciones[59].m15 = 512;
posiciones[59].m16 = 512;
posiciones[60].m1 = 512;
posiciones[60].m2 = 512;
posiciones[60].m3 = 512;
posiciones[60].m4 = 512;
posiciones[60].m5 = 512;
posiciones[60].m6 = 512;
posiciones[60].m7 = 512;
posiciones[60].m8 = 512;
posiciones[60].m9 = 512;
posiciones[60].m10 = 512;
posiciones[60].m11 = 512;
posiciones[60].m12 = 512;
posiciones[60].m13 = 512;
posiciones[60].m14 = 512;
posiciones[60].m15 = 512;
posiciones[60].m16 = 512;
posiciones[61].m1 = 512;
posiciones[61].m2 = 512;
posiciones[61].m3 = 512;
posiciones[61].m4 = 512;
posiciones[61].m5 = 512;
posiciones[61].m6 = 512;
posiciones[61].m7 = 512;
posiciones[61].m8 = 512;
posiciones[61].m9 = 512;
posiciones[61].m10 = 512;
posiciones[61].m11 = 512;
posiciones[61].m12 = 512;
posiciones[61].m13 = 512;
posiciones[61].m14 = 512;
posiciones[61].m15 = 512;
posiciones[61].m16 = 512;
posiciones[62].m1 = 512;
posiciones[62].m2 = 512;
posiciones[62].m3 = 512;
posiciones[62].m4 = 512;
posiciones[62].m5 = 512;
posiciones[62].m6 = 512;
posiciones[62].m7 = 512;
posiciones[62].m8 = 512;
posiciones[62].m9 = 512;
posiciones[62].m10 = 512;
posiciones[62].m11 = 512;
posiciones[62].m12 = 512;
posiciones[62].m13 = 512;
posiciones[62].m14 = 512;
posiciones[62].m15 = 512;
posiciones[62].m16 = 512;
posiciones[63].m1 = 512;
posiciones[63].m2 = 512;
posiciones[63].m3 = 512;
posiciones[63].m4 = 512;
posiciones[63].m5 = 512;
posiciones[63].m6 = 512;
posiciones[63].m7 = 512;
posiciones[63].m8 = 512;
posiciones[63].m9 = 512;
posiciones[63].m10 = 512;
posiciones[63].m11 = 512;
posiciones[63].m12 = 512;
posiciones[63].m13 = 512;
posiciones[63].m14 = 512;
posiciones[63].m15 = 512;
posiciones[63].m16 = 512;
posiciones[64].m1 = 512;
posiciones[64].m2 = 512;
posiciones[64].m3 = 512;
posiciones[64].m4 = 512;
posiciones[64].m5 = 512;
posiciones[64].m6 = 512;
posiciones[64].m7 = 512;
posiciones[64].m8 = 512;
posiciones[64].m9 = 512;
posiciones[64].m10 = 512;
posiciones[64].m11 = 512;
posiciones[64].m12 = 512;
posiciones[64].m13 = 512;
posiciones[64].m14 = 512;
posiciones[64].m15 = 512;
posiciones[64].m16 = 512;
posiciones[65].m1 = 512;
posiciones[65].m2 = 512;
posiciones[65].m3 = 512;
posiciones[65].m4 = 512;
posiciones[65].m5 = 512;
posiciones[65].m6 = 512;
posiciones[65].m7 = 512;
posiciones[65].m8 = 512;
posiciones[65].m9 = 512;
posiciones[65].m10 = 512;
posiciones[65].m11 = 512;
posiciones[65].m12 = 512;
posiciones[65].m13 = 512;
posiciones[65].m14 = 512;
posiciones[65].m15 = 512;
posiciones[65].m16 = 512;
posiciones[66].m1 = 512;
posiciones[66].m2 = 512;
posiciones[66].m3 = 512;
posiciones[66].m4 = 512;
posiciones[66].m5 = 512;
posiciones[66].m6 = 512;
posiciones[66].m7 = 512;
posiciones[66].m8 = 512;
posiciones[66].m9 = 512;
posiciones[66].m10 = 512;
posiciones[66].m11 = 512;
posiciones[66].m12 = 512;
posiciones[66].m13 = 512;
posiciones[66].m14 = 512;
posiciones[66].m15 = 512;
posiciones[66].m16 = 512;
posiciones[67].m1 = 512;
posiciones[67].m2 = 512;
posiciones[67].m3 = 512;
posiciones[67].m4 = 512;
posiciones[67].m5 = 512;
posiciones[67].m6 = 512;
posiciones[67].m7 = 512;
posiciones[67].m8 = 512;
posiciones[67].m9 = 512;
posiciones[67].m10 = 512;
posiciones[67].m11 = 512;
posiciones[67].m12 = 512;
posiciones[67].m13 = 512;
posiciones[67].m14 = 512;
posiciones[67].m15 = 512;
posiciones[67].m16 = 512;
posiciones[68].m1 = 512;
posiciones[68].m2 = 512;
posiciones[68].m3 = 512;
posiciones[68].m4 = 512;
posiciones[68].m5 = 512;
posiciones[68].m6 = 512;
posiciones[68].m7 = 512;
posiciones[68].m8 = 512;
posiciones[68].m9 = 512;
posiciones[68].m10 = 512;
posiciones[68].m11 = 512;
posiciones[68].m12 = 512;
posiciones[68].m13 = 512;
posiciones[68].m14 = 512;
posiciones[68].m15 = 512;
posiciones[68].m16 = 512;
posiciones[69].m1 = 512;
posiciones[69].m2 = 512;
posiciones[69].m3 = 512;
posiciones[69].m4 = 512;
posiciones[69].m5 = 512;
posiciones[69].m6 = 512;
posiciones[69].m7 = 512;
posiciones[69].m8 = 512;
posiciones[69].m9 = 512;
posiciones[69].m10 = 512;
posiciones[69].m11 = 512;
posiciones[69].m12 = 512;
posiciones[69].m13 = 512;
posiciones[69].m14 = 512;
posiciones[69].m15 = 512;
posiciones[69].m16 = 512;
posiciones[70].m1 = 512;
posiciones[70].m2 = 512;
posiciones[70].m3 = 512;
posiciones[70].m4 = 512;
posiciones[70].m5 = 512;
posiciones[70].m6 = 512;
posiciones[70].m7 = 512;
posiciones[70].m8 = 512;
posiciones[70].m9 = 512;
posiciones[70].m10 = 512;
posiciones[70].m11 = 512;
posiciones[70].m12 = 512;
posiciones[70].m13 = 512;
posiciones[70].m14 = 512;
posiciones[70].m15 = 512;
posiciones[70].m16 = 512;
posiciones[71].m1 = 512;
posiciones[71].m2 = 512;
posiciones[71].m3 = 512;
posiciones[71].m4 = 512;
posiciones[71].m5 = 512;
posiciones[71].m6 = 512;
posiciones[71].m7 = 512;
posiciones[71].m8 = 512;
posiciones[71].m9 = 512;
posiciones[71].m10 = 512;
posiciones[71].m11 = 512;
posiciones[71].m12 = 512;
posiciones[71].m13 = 512;
posiciones[71].m14 = 512;
posiciones[71].m15 = 512;
posiciones[71].m16 = 512;
posiciones[72].m1 = 512;
posiciones[72].m2 = 512;
posiciones[72].m3 = 512;
posiciones[72].m4 = 512;
posiciones[72].m5 = 512;
posiciones[72].m6 = 512;
posiciones[72].m7 = 512;
posiciones[72].m8 = 512;
posiciones[72].m9 = 512;
posiciones[72].m10 = 512;
posiciones[72].m11 = 512;
posiciones[72].m12 = 512;
posiciones[72].m13 = 512;
posiciones[72].m14 = 512;
posiciones[72].m15 = 512;
posiciones[72].m16 = 512;
posiciones[73].m1 = 512;
posiciones[73].m2 = 512;
posiciones[73].m3 = 512;
posiciones[73].m4 = 512;
posiciones[73].m5 = 512;
posiciones[73].m6 = 512;
posiciones[73].m7 = 512;
posiciones[73].m8 = 512;
posiciones[73].m9 = 512;
posiciones[73].m10 = 512;
posiciones[73].m11 = 512;
posiciones[73].m12 = 512;
posiciones[73].m13 = 512;
posiciones[73].m14 = 512;
posiciones[73].m15 = 512;
posiciones[73].m16 = 512;
}
//esta funcion prende todos los leds del cuerpo del robot del color deseado.
//recibe como paraemtro de entrada el color deseado:
//1->Rojo
//2->Verde
//3->Amarillo
//4->Azul
//5->Morado
//6->Azuulito Gay
//7->Blanco
void ledsCuerpoOn(int color)
{
for(int i=1; i<17; i++)
{
Dxl.ledOn(i, color);
}
if(color==1)
digitalWrite(2, HIGH);
}
void ledsCuerpoOff()
{
for(int i=1; i<17; i++)
{
Dxl.ledOff(i);
}
digitalWrite(2, LOW);
}
void moverGrafoEntero()
{
for(int i=0;i<tam;i++)
{
arregloNodosInt[i]=arregloNodos[i]-33;
}
for(int i=0;i<tam-2;i++)
{
moverDeNodoANodo(arregloNodosInt[i],arregloNodosInt[i+1]);
}
}
//Esta funcion hace mover le robot de posicion a poscion
//Entradas:
//Actual: es la posicion actual (nodo) del robot;
//destino: es la posicion (nodo) al cual se desa llegar;
//sentieinto: Es el valor de sentimeito que tiene el robot donde:
//1->enfado
//2->trizteza
//3->alegria
void moverDeNodoANodo(int actual, int destino)
{
int velocidad;
int proporcion;
if(sentimiento ==1)
{
ledsCuerpoOn(1);
proporcion=1;
velocidad=5;
}
else if(sentimiento== 2)
{
proporcion=20;
ledsCuerpoOn(4);
velocidad=10;
}
else
{
proporcion =5;
ledsCuerpoOn(3);
velocidad=20;
}
double tm1=abs(posiciones[actual].m1-posiciones[destino].m1)/velocidad;
double tm2=abs(posiciones[actual].m2-posiciones[destino].m2)/velocidad;
double tm3=abs(posiciones[actual].m3-posiciones[destino].m3)/velocidad;
double tm4=abs(posiciones[actual].m4-posiciones[destino].m4)/velocidad;
double tm5=abs(posiciones[actual].m5-posiciones[destino].m5)/velocidad;
double tm6=abs(posiciones[actual].m6-posiciones[destino].m6)/velocidad;
double tm7=abs(posiciones[actual].m7-posiciones[destino].m7)/velocidad;
double tm8=abs(posiciones[actual].m8-posiciones[destino].m8)/velocidad;
double tm9=abs(posiciones[actual].m9-posiciones[destino].m9)/velocidad;
double tm10=abs(posiciones[actual].m10-posiciones[destino].m10)/velocidad;
double tm11=abs(posiciones[actual].m11-posiciones[destino].m11)/velocidad;
double tm12=abs(posiciones[actual].m12-posiciones[destino].m12)/velocidad;
double tm13=abs(posiciones[actual].m13-posiciones[destino].m13)/velocidad;
double tm14=abs(posiciones[actual].m14-posiciones[destino].m14)/velocidad;
double tm15=abs(posiciones[actual].m15-posiciones[destino].m15)/velocidad;
double tm16=abs(posiciones[actual].m16-posiciones[destino].m16)/velocidad;
for(int i=1; i<velocidad; i++)
{
if(posiciones[actual].m1>posiciones[destino].m1)
Dxl.goalPosition(1,(posiciones[actual].m1)-(tm1*i));
else
Dxl.goalPosition(1,(posiciones[actual].m1)+(tm1*i));
if(posiciones[actual].m2>posiciones[destino].m2)
Dxl.goalPosition(2,(posiciones[actual].m2)-(tm2*i));
else
Dxl.goalPosition(2,(posiciones[actual].m2)+(tm2*i));
if(posiciones[actual].m3>posiciones[destino].m3)
Dxl.goalPosition(3,(posiciones[actual].m3)-(tm3*i));
else
Dxl.goalPosition(3,(posiciones[actual].m3)+(tm3*i));
if(posiciones[actual].m4>posiciones[destino].m4)
Dxl.goalPosition(4,(posiciones[actual].m4)-(tm4*i));
else
Dxl.goalPosition(4,(posiciones[actual].m4)+(tm4*i));
if(posiciones[actual].m5>posiciones[destino].m5)
Dxl.goalPosition(5,(posiciones[actual].m5)-(tm5*i));
else
Dxl.goalPosition(5,(posiciones[actual].m5)+(tm5*i));
if(posiciones[actual].m6>posiciones[destino].m6)
Dxl.goalPosition(6,(posiciones[actual].m6)-(tm6*i));
else
Dxl.goalPosition(6,(posiciones[actual].m6)+(tm6*i));
if(posiciones[actual].m7>posiciones[destino].m7)
Dxl.goalPosition(7,(posiciones[actual].m7)-(tm7*i));
else
Dxl.goalPosition(7,(posiciones[actual].m7)+(tm7*i));
if(posiciones[actual].m8>posiciones[destino].m8)
Dxl.goalPosition(8,(posiciones[actual].m8)-(tm8*i));
else
Dxl.goalPosition(8,(posiciones[actual].m8)+(tm8*i));
if(posiciones[actual].m9>posiciones[destino].m9)
Dxl.goalPosition(9,(posiciones[actual].m9)-(tm9*i));
else
Dxl.goalPosition(9,(posiciones[actual].m9)+(tm9*i));
if(posiciones[actual].m10>posiciones[destino].m10)
Dxl.goalPosition(10,(posiciones[actual].m10)-(tm10*i));
else
Dxl.goalPosition(10,(posiciones[actual].m10)+(tm10*i));
if(posiciones[actual].m11>posiciones[destino].m11)
Dxl.goalPosition(11,(posiciones[actual].m11)-(tm11*i));
else
Dxl.goalPosition(11,(posiciones[actual].m11)+(tm11*i));
if(posiciones[actual].m12>posiciones[destino].m12)
Dxl.goalPosition(12,(posiciones[actual].m12)-(tm12*i));
else
Dxl.goalPosition(12,(posiciones[actual].m12)+(tm12*i));
if(posiciones[actual].m13>posiciones[destino].m13)
Dxl.goalPosition(13,(posiciones[actual].m13)-(tm13*i));
else
Dxl.goalPosition(13,(posiciones[actual].m13)+(tm13*i));
if(posiciones[actual].m14>posiciones[destino].m14)
Dxl.goalPosition(14,(posiciones[actual].m14)-(tm14*i));
else
Dxl.goalPosition(14,(posiciones[actual].m14)+(tm14*i));
if(posiciones[actual].m15>posiciones[destino].m15)
Dxl.goalPosition(15,(posiciones[actual].m15)-(tm15*i));
else
Dxl.goalPosition(15,(posiciones[actual].m15)+(tm15*i));
if(posiciones[actual].m16>posiciones[destino].m16)
Dxl.goalPosition(16,(posiciones[actual].m16)-(tm16*i));
else
Dxl.goalPosition(16,(posiciones[actual].m16)+(tm16*i));
delay(proporcion);
}
Dxl.goalPosition(1,posiciones[destino].m1);
Dxl.goalPosition(2,posiciones[destino].m2);
Dxl.goalPosition(3,posiciones[destino].m3);
Dxl.goalPosition(4,posiciones[destino].m4);
Dxl.goalPosition(5,posiciones[destino].m5);
Dxl.goalPosition(6,posiciones[destino].m6);
Dxl.goalPosition(7,posiciones[destino].m7);
Dxl.goalPosition(8,posiciones[destino].m8);
Dxl.goalPosition(9,posiciones[destino].m9);
Dxl.goalPosition(10,posiciones[destino].m10);
Dxl.goalPosition(11,posiciones[destino].m11);
Dxl.goalPosition(12,posiciones[destino].m12);
Dxl.goalPosition(13,posiciones[destino].m13);
Dxl.goalPosition(14,posiciones[destino].m14);
Dxl.goalPosition(15,posiciones[destino].m15);
Dxl.goalPosition(16,posiciones[destino].m16);
}
void loop()
{
tam=0;
if(SerialUSB.available())
{
instruccion= SerialUSB.read();
while(instruccion!='u')
{
if(SerialUSB.available())
{
if(instruccion!='u')
{
instruccion= SerialUSB.read();
arregloNodos[tam]=instruccion;
tam++;
}
}
}
SerialUSB.println("coso");
for(int i=0;i<tam-1;i++)
{
arregloNodosInt[i]=arregloNodos[i]-33;
SerialUSB.print(arregloNodos[i]);
SerialUSB.print(" ");
SerialUSB.print(arregloNodosInt[i]);
}
char temp;
while(temp!='y')
{
if(SerialUSB.available())
{
instruccion= temp;
temp= SerialUSB.read();
}
}
SerialUSB.print(" ");
SerialUSB.print(" ");
SerialUSB.print(instruccion);
if(instruccion=='v')
sentimiento=3;
else if(instruccion=='w')
sentimiento=2;
else
sentimiento=1;
moverGrafoEntero();
SerialUSB.print("y");
}
}
| [
"noreply@github.com"
] | estebanramir.noreply@github.com |
8cce73e5e1d1ff84fc4ad06e4332df3e7395f772 | ca463b7b38d6370ff3cfbdb6d11bd5f2430a2acc | /Interpreter.cpp | da1a5425ce846bce4cc8e9b372a4b8779fdd71cd | [] | no_license | BlackHart98/Sticher | 23c157c383e7bce1d105629b4d179e6ccf56d0a9 | 4dcb375479a944c3c08556c772fda8d03403b974 | refs/heads/master | 2021-01-04T01:20:23.169104 | 2020-02-13T17:57:23 | 2020-02-13T17:57:23 | 240,320,819 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 136 | cpp | #include "Interpreter.h"
using namespace Sticher;
Interpreter::Interpreter()
{
//ctor
}
Interpreter::~Interpreter()
{
//dtor
}
| [
"pjacks419@gmail.com"
] | pjacks419@gmail.com |
457be6f5ffa97d7671c673c622da42f572ffb492 | d9a634f3788a08e4dd02745e6764a9e56c4b2fd9 | /src/util/moneystr.h | 3b486876b9ab7726e5a4d392beaef9d3e9a49396 | [
"MIT"
] | permissive | hhhogannwo/MAGA | b7f19314cb32d6db064c3caa9324c3386a6c3f2a | cb81907eb1e5a87669a8244d8657041aa8456328 | refs/heads/master | 2022-03-04T03:07:28.167818 | 2022-02-17T02:01:27 | 2022-02-17T02:01:27 | 172,364,824 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 834 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2020 The Bitcoin Core developers
// Copyright (c) 2022 The MAGA Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
/**
* Money parsing/formatting utilities.
*/
#ifndef MAGA_UTIL_MONEYSTR_H
#define MAGA_UTIL_MONEYSTR_H
#include <amount.h>
#include <attributes.h>
#include <string>
/* Do not use these functions to represent or parse monetary amounts to or from
* JSON but use AmountFromValue and ValueFromAmount for that.
*/
std::string FormatMoney(const CAmount& n);
/** Parse an amount denoted in full coins. E.g. "0.0034" supplied on the command line. **/
NODISCARD bool ParseMoney(const std::string& str, CAmount& nRet);
#endif // MAGA_UTIL_MONEYSTR_H
| [
"noreply@github.com"
] | hhhogannwo.noreply@github.com |
73be49d65f6332365f34120ec64e89337552ed2f | ff63e451db8f0b04b0cb0bbbff1dd1ed2c002fac | /targetSumTriplet.cpp | 9d9cc95211b020e8c3e28b5770dd994310ced747 | [] | no_license | pradyumngupta/test-cpp | 857ab5dd7aca1c4ff4522d9daee3d8c5affd4d72 | 6fe32b48f91721e369396829349f1d9dd482dda0 | refs/heads/master | 2022-09-25T12:58:44.409358 | 2020-06-05T07:15:27 | 2020-06-05T07:15:27 | 269,552,056 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 671 | cpp | #include<bits/stdc++.h>
using namespace std;
void targetSumTriplet(int arr[],int n,int sum){
int l,r,temp;sort(arr,arr+n);
for(int i=0;i<n-2;i++){
l=i+1; r=n-1;
temp=sum-arr[i];
while(l<r){if(arr[l]+arr[r]>temp){
r--;
}
else if(arr[l]+arr[r]<temp){
l++;
}
else if(arr[l]+arr[r]==temp){
cout<<arr[i]<<", "<<arr[l]<<" and "<<arr[r]<<endl;
l++;r--;
}
}
}
}
int main(){
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);freopen("output.txt", "w", stdout);
#endif
//////////////////////////////
int n;
cin>>n;
int arr[n];
for(int i=0;i<n;i++){
cin>>arr[i];
}
int sum;
cin>>sum;
targetSumTriplet(arr,n,sum);
return 0;
} | [
"pradyumngupta18@gmail.com"
] | pradyumngupta18@gmail.com |
9b94b46d289481f89fc5354d849c1c6ff6385c4e | fe81eae22f5662b6b6dca838b6972be27ca63b2d | /aorus/AORUS/inc/mainboard/MBCtrl.cpp | 5733fca1fa145263963c8b6ea104d75bc20c6c14 | [] | no_license | josephx86/Aorus | d014c1d97131cfb7201ab0352b38e2bc4adb007e | 8f9dcd4a4b55176d4575d9309e8536fbc8008b60 | refs/heads/master | 2021-05-05T19:29:47.147219 | 2017-07-25T09:36:08 | 2017-07-25T09:36:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,535 | cpp | #include "stdafx.h"
#include "MBCtrl.h"
//CMBCtrl *g_Mbctrl;
CMBCtrl::CMBCtrl()
{
m_bConnected = false;
//g_Mbctrl=this;
m_hWnd = NULL;
Ptr_Struct=Get_LED_Struct();
GetModuleName();
m_hDelaySetLedEvent=CreateEvent(NULL,FALSE,FALSE,NULL);
m_hDelaySetLedThread=CreateThread((LPSECURITY_ATTRIBUTES)NULL,0,
(LPTHREAD_START_ROUTINE)DelaySetLED,
this,
0,
NULL);
}
#ifdef UNICODE
#define LocateString LocateStringW
#else
#define LocateString LocateStringA
#endif
CMBCtrl::~CMBCtrl()
{
CloseHandle(m_hDelaySetLedEvent);
CloseHandle(m_hDelaySetLedThread);
}
BEGIN_MESSAGE_MAP(CMBCtrl, CMBCtrl)
//ON_WM_TIMER()
END_MESSAGE_MAP()
int CMBCtrl::GetSuportFlag()
{
int nFlags = -1;
if(Ptr_Struct != NULL)
nFlags = Ptr_Struct->Support_Flag;
else if((Ptr_Struct = Get_LED_Struct()) != NULL)
nFlags = Ptr_Struct->Support_Flag;
m_bConnected = (nFlags > 0) ? true : false;
return nFlags;
}
void CMBCtrl::OnTimer(UINT_PTR nIDEvent)
{
if (nIDEvent==0)
{
KillTimer(NULL,0);
SetLedSetting(m_LastSetting);
}
}
UINT CMBCtrl::DelaySetLED(LPVOID lpParam)
{
//WaitForSingleObject()
CMBCtrl* pMain = (CMBCtrl*) lpParam;
while (1)
{
WaitForSingleObject(pMain->m_hDelaySetLedEvent,INFINITE);
for (;;)
{
Led_Struce* TempPtr_Struct;
TempPtr_Struct=Get_LED_Struct();
if (TempPtr_Struct->Fun_Type==Fun_Type_Ready)
{
pMain->SetLedSetting(pMain->m_LastSetting);
break;
}
Sleep(1000);
}
}
return 1;
}
void CMBCtrl::SetLedSetting(LED_SETTING setting)
{
Led_Struce* TempPtr_Struct;
TempPtr_Struct=Get_LED_Struct();
if(TempPtr_Struct!=NULL)
{
if(TempPtr_Struct->Fun_Type!=Fun_Type_Ready)
{
m_LastSetting=setting;
SetEvent(m_hDelaySetLedEvent);
//SetTimer(NULL,0,500,NULL);
//MessageBox("Please Wait write to MCU!",NULL,MB_OK);
}
else
{
if (Ptr_Struct==NULL)
{
Ptr_Struct=Get_LED_Struct();
}
if (Ptr_Struct!=NULL)
{
Ptr_Struct->Fun_Type=Fun_Type_Write;
Ptr_Struct->Write_mcu_fun=Write_mcu_All;
// Ptr_Struct->Write_mcu_fun=Write_mcu_Bri;
Ptr_Struct->Brightness=setting.nRangeMax;
Ptr_Struct->Speed=setting.nSpeed;
//Ptr_Struct->Current_Easy_Color=setting.clrLed;
int r=(setting.clrLed>>16)&0xff;
int g=(setting.clrLed>>8)&0xff;
int b=setting.clrLed&0xff;
Ptr_Struct->Brightness=setting.nRangeMax/30;
Ptr_Struct->Speed=setting.nSpeed/4;
Ptr_Struct->Current_Easy_Color=r+(g<<8)+(b<<16);
if (!setting.bOn)
{
Ptr_Struct->Current_Pattern=PatternType_off;
}
else
{
switch(setting.dwStyle)
{
case LED_STYLE_CONSISTENT: {
Ptr_Struct->Current_Pattern=PatternType_Static;
Ptr_Struct->Current_Mode=Mode_Easy;
}break;
case LED_STYLE_BREATHING: {
Ptr_Struct->Current_Pattern=PatternType_Pulse;
Ptr_Struct->Current_Mode=Mode_Easy;
}break;
case LED_STYLE_FLASHING: {
Ptr_Struct->Current_Pattern=PatternType_Flash;
Ptr_Struct->Current_Mode=Mode_Easy;
}
break;
case LED_STYLE_MONITORING: {
int nMode = 0;
if (setting.dwVariation == LED_MONITOR_CPU_USAGE) nMode = 0;
else if (setting.dwVariation == LED_MONITOR_CPU_TEMPERATURE) nMode = 1;
else if (setting.dwVariation == LED_MONITOR_SYS_TEMPERATURE) nMode = 2;
else if (setting.dwVariation == LED_MONITOR_CPU_FANSPEED) nMode = 3;
Ptr_Struct->Current_Mode=Mode_Easy;
Ptr_Struct->Current_Pattern=PatternType_Inte;
Ptr_Struct->Other_Mode = nMode + 1;
}break;
case LED_STYLE_AUDIOFLASHING: {
Ptr_Struct->Current_Mode=Mode_Easy;
Ptr_Struct->Current_Pattern=PatternType_Music;
}break;
case LED_STYLE_WAVE: {
Ptr_Struct->Current_Mode=Mode_Easy;
if (GetSuportFlag()&(1<<6))
{
Ptr_Struct->Current_Pattern=PatternType_Wave;
}
else
{
Ptr_Struct->Current_Pattern=PatternType_Random;
}
}break;
case LED_STYLE_CIRCLING: {
Ptr_Struct->Current_Mode=Mode_Easy;
Ptr_Struct->Current_Pattern=PatternType_Random;
}break;
default:Ptr_Struct->Current_Pattern=PatternType_Static;break;
}
}
if(TempPtr_Struct->Current_Mode==Ptr_Struct->Current_Mode&&
TempPtr_Struct->Current_Pattern==Ptr_Struct->Current_Pattern&&
TempPtr_Struct->Other_Mode==Ptr_Struct->Other_Mode)
{
if (TempPtr_Struct->Brightness!=Ptr_Struct->Brightness)
{
Ptr_Struct->Write_mcu_fun=Write_mcu_Bri;
}
else if (TempPtr_Struct->Speed!=Ptr_Struct->Speed)
{
Ptr_Struct->Write_mcu_fun=Write_mcu_Speed;
}
else if (TempPtr_Struct->Current_Easy_Color!=Ptr_Struct->Current_Easy_Color)
{
Ptr_Struct->Write_mcu_fun=Write_mcu_Color;
}
}
Set_LED_Struct(Ptr_Struct);
}
}
}
}
void CMBCtrl::SetSpeed(LED_SETTING setting)
{
if (Ptr_Struct==NULL)
{
Ptr_Struct=Get_LED_Struct();
}
if (Ptr_Struct!=NULL)
{
Ptr_Struct->Fun_Type=Fun_Type_Write;
Ptr_Struct->Write_mcu_fun=Write_mcu_Speed;
Ptr_Struct->Speed=setting.nSpeed/4;
Set_LED_Struct(Ptr_Struct);
}
}
void CMBCtrl::SetBrightness(LED_SETTING setting)
{
if (Ptr_Struct==NULL)
{
Ptr_Struct=Get_LED_Struct();
}
if (Ptr_Struct!=NULL)
{
Ptr_Struct->Fun_Type=Fun_Type_Write;
Ptr_Struct->Write_mcu_fun=Write_mcu_Bri;
Ptr_Struct->Brightness=setting.nRangeMax/30;
Set_LED_Struct(Ptr_Struct);
}
}
void CMBCtrl::GetModuleName()
{
// the seqence just for x86, but don't worry we know SMBIOS/DMI only exist on x86 platform
DWORD needBufferSize = 0;
const BYTE byteSignature[] = { 'B', 'M', 'S', 'R' };
const DWORD Signature = *((DWORD*)byteSignature);
LPBYTE pBuff = NULL;
needBufferSize = GetSystemFirmwareTable(Signature, 0, NULL, 0);
//_tprintf(TEXT("We need prepare %d bytes for recevie SMBIOS/DMI Table\n"), needBufferSize);
pBuff = (LPBYTE) malloc(needBufferSize);
if (pBuff)
{
GetSystemFirmwareTable(Signature, 0, pBuff, needBufferSize);
const PRawSMBIOSData pDMIData = (PRawSMBIOSData)pBuff;
/*_tprintf(TEXT("SMBIOS version:%d.%d\n"), pDMIData->SMBIOSMajorVersion, pDMIData->SMBIOSMinorVersion);
_tprintf(TEXT("DMI Revision:%x\n"), pDMIData->DmiRevision);
_tprintf(TEXT("Total length: %d\n"), pDMIData->Length);
_tprintf(TEXT("DMI at address %x\n"), (DWORD)((PBYTE)&pDMIData->SMBIOSTableData));*/
DumpSMBIOSStruct(&(pDMIData->SMBIOSTableData), pDMIData->Length);
}
}
void CMBCtrl::DumpSMBIOSStruct(void *Addr, UINT Len)
{
LPBYTE p = (LPBYTE)(Addr);
const DWORD lastAddress = ((DWORD)p) + Len;
PSMBIOSHEADER pHeader;
for (;;) {
pHeader = (PSMBIOSHEADER)p;
DispatchStructType(pHeader);
PBYTE nt = p + pHeader->Length; // point to struct end
while (0 != (*nt | *(nt + 1))) nt++; // skip string area
nt += 2;
if ((DWORD)nt >= lastAddress)
break;
p = nt;
}
}
bool CMBCtrl::DispatchStructType(PSMBIOSHEADER hdr)
{
if (2 == hdr->Type)
{
//_tprintf(TEXT("%s\n"), getHeaderString(cstrHEADER));
//tpfunc[i].Proc((void*)hdr);
ProcBoardInfo((void*)hdr);
return true;
}
return false;
}
bool CMBCtrl::ProcBoardInfo(void* p)
{
PBoardInfo pBoard = (PBoardInfo)p;
const char *str = toPointString(p);
m_modelname=LocateString(str, pBoard->Product);
/*_tprintf(TEXT("%s\n"), getHeaderString(2));
_tprintf(TEXT("Length: 0x%X\n"), pBoard->Header.Length);
_tprintf(TEXT("Manufacturer: %s\n"), LocateString(str, pBoard->Manufacturer));
_tprintf(TEXT("Product Name: %s\n"), LocateString(str, pBoard->Product));
_tprintf(TEXT("Version: %s\n"), LocateString(str, pBoard->Version));
_tprintf(TEXT("Serial Number: %s\n"), LocateString(str, pBoard->SN));
_tprintf(TEXT("Asset Tag Number: %s\n"), LocateString(str, pBoard->AssetTag));
if (pBoard->Header.Length > 0x08)
{
_tprintf(TEXT("Location in Chassis: %s\n"), LocateString(str, pBoard->LocationInChassis));
}*/
return true;
}
const char* CMBCtrl::toPointString(void* p)
{
return (char*)p + ((PSMBIOSHEADER)p)->Length;
}
const char* CMBCtrl::LocateStringA(const char* str, UINT i)
{
static const char strNull[] = "Null String";
if (0 == i || 0 == *str) return strNull;
while (--i)
{
str += strlen((char*)str) + 1;
}
return str;
}
const wchar_t* CMBCtrl::LocateStringW(const char* str, UINT i)
{
static wchar_t buff[2048];
const char *pStr = LocateStringA(str, i);
SecureZeroMemory(buff, sizeof(buff));
MultiByteToWideChar(CP_OEMCP, 0, pStr, strlen(pStr), buff, sizeof(buff));
return buff;
}
void CMBCtrl::GetModuleName(CString &modename)
{
modename=m_modelname;
} | [
"925350731@qq.com"
] | 925350731@qq.com |
43109b5e1ffb6615ac1e45b9a92cd8756525fd0a | 332515cb827e57f3359cfe0562c5b91d711752df | /Application_UWP_WinRT/Generated Files/winrt/impl/Windows.Storage.Pickers.2.h | f7c6a0195b38d7ca658d79631655e7137b4ef79e | [
"MIT"
] | permissive | GCourtney27/DX12-Simple-Xbox-Win32-Application | 7c1f09abbfb768a1d5c2ab0d7ee9621f66ad85d5 | 4f0bc4a52aa67c90376f05146f2ebea92db1ec57 | refs/heads/master | 2023-02-19T06:54:18.923600 | 2021-01-24T08:18:19 | 2021-01-24T08:18:19 | 312,744,674 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,585 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.0.201113.7
#ifndef WINRT_Windows_Storage_Pickers_2_H
#define WINRT_Windows_Storage_Pickers_2_H
#include "winrt/impl/Windows.Foundation.Collections.1.h"
#include "winrt/impl/Windows.Storage.1.h"
#include "winrt/impl/Windows.System.1.h"
#include "winrt/impl/Windows.Storage.Pickers.1.h"
WINRT_EXPORT namespace winrt::Windows::Storage::Pickers
{
struct __declspec(empty_bases) FileExtensionVector : Windows::Foundation::Collections::IVector<hstring>
{
FileExtensionVector(std::nullptr_t) noexcept {}
FileExtensionVector(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::Collections::IVector<hstring>(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) FileOpenPicker : Windows::Storage::Pickers::IFileOpenPicker,
impl::require<FileOpenPicker, Windows::Storage::Pickers::IFileOpenPicker2, Windows::Storage::Pickers::IFileOpenPickerWithOperationId, Windows::Storage::Pickers::IFileOpenPicker3>
{
FileOpenPicker(std::nullptr_t) noexcept {}
FileOpenPicker(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Storage::Pickers::IFileOpenPicker(ptr, take_ownership_from_abi) {}
FileOpenPicker();
using Windows::Storage::Pickers::IFileOpenPicker::PickSingleFileAsync;
using impl::consume_t<FileOpenPicker, Windows::Storage::Pickers::IFileOpenPickerWithOperationId>::PickSingleFileAsync;
static auto ResumePickSingleFileAsync();
static auto CreateForUser(Windows::System::User const& user);
};
struct __declspec(empty_bases) FilePickerFileTypesOrderedMap : Windows::Foundation::Collections::IMap<hstring, Windows::Foundation::Collections::IVector<hstring>>
{
FilePickerFileTypesOrderedMap(std::nullptr_t) noexcept {}
FilePickerFileTypesOrderedMap(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::Collections::IMap<hstring, Windows::Foundation::Collections::IVector<hstring>>(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) FilePickerSelectedFilesArray : Windows::Foundation::Collections::IVectorView<Windows::Storage::StorageFile>
{
FilePickerSelectedFilesArray(std::nullptr_t) noexcept {}
FilePickerSelectedFilesArray(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Foundation::Collections::IVectorView<Windows::Storage::StorageFile>(ptr, take_ownership_from_abi) {}
};
struct __declspec(empty_bases) FileSavePicker : Windows::Storage::Pickers::IFileSavePicker,
impl::require<FileSavePicker, Windows::Storage::Pickers::IFileSavePicker2, Windows::Storage::Pickers::IFileSavePicker3, Windows::Storage::Pickers::IFileSavePicker4>
{
FileSavePicker(std::nullptr_t) noexcept {}
FileSavePicker(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Storage::Pickers::IFileSavePicker(ptr, take_ownership_from_abi) {}
FileSavePicker();
static auto CreateForUser(Windows::System::User const& user);
};
struct __declspec(empty_bases) FolderPicker : Windows::Storage::Pickers::IFolderPicker,
impl::require<FolderPicker, Windows::Storage::Pickers::IFolderPicker2, Windows::Storage::Pickers::IFolderPicker3>
{
FolderPicker(std::nullptr_t) noexcept {}
FolderPicker(void* ptr, take_ownership_from_abi_t) noexcept : Windows::Storage::Pickers::IFolderPicker(ptr, take_ownership_from_abi) {}
FolderPicker();
static auto CreateForUser(Windows::System::User const& user);
};
}
#endif
| [
"garrett1168@outlook.com"
] | garrett1168@outlook.com |
98107bffbe0f541c6b18ea3e76a329f9a6259fc2 | 8dde11ce7797053e0f8c61a5d790c4440cc02ba3 | /sources/lib_util/calc_rad_deg.cpp | 216e139df3397318cff0c4f3bfbe83723465109a | [
"BSD-3-Clause"
] | permissive | sahwar/GTS | 0ca6a09ea326d9fd16883f33d9e4da0dd4f7ba83 | b25734116ea81eb0d7e2eabc8ce16cdd1c8b22dd | refs/heads/master | 2020-04-19T21:32:10.110192 | 2018-11-26T07:53:26 | 2018-11-26T07:53:26 | 168,444,156 | 1 | 0 | BSD-3-Clause | 2019-01-31T01:41:15 | 2019-01-31T01:41:14 | null | UTF-8 | C++ | false | false | 171 | cpp | #include "calc_rad_deg.h"
namespace calc {
double rad_from_deg( const double deg )
{
return 3.14159265358979323846264338327950288 * deg / 180.0;
}
} // namespace calc
| [
"masafumi_inoue@dwango.co.jp"
] | masafumi_inoue@dwango.co.jp |
6c0e97d01593d4ec3b82fc4cd9b65078b6e3cc29 | 47ff8543c73dab22c7854d9571dfc8d5f467ee8c | /BOJ/9501/9501.cpp | 36371f749e5708a27ecb887a9a3597f821f9d03e | [] | no_license | eldsg/BOJ | 4bb0c93dc60783da151e685530fa9a511df3a141 | 6bd15e36d69ce1fcf208d193d5e9067de9bb405e | refs/heads/master | 2020-04-16T02:18:55.808362 | 2017-11-28T11:02:37 | 2017-11-28T11:02:37 | 55,879,791 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 304 | cpp | #include <iostream>
using namespace std;
int main(){
int t,num;
double d;
cin >> t;
while(t--){
int count = 0;
cin >> num >> d;
while(num--){
double a, b, c,f, result;
cin >> a >> b >> c;
f = b/c;
result = a*f;
if(result >= d){
count++;
}
}
cout << count << endl;
}
} | [
"kgm0219@gmail.com"
] | kgm0219@gmail.com |
9a617e3f2613b7b8c59a44efa39c7e86f88f1fa5 | 453ef442430b58701b4e67bc9c6d55cc0d7aeb3f | /workspace/include/SlalomBlackyInfomation/SlBkPositionCorrectionInfomation.h | c52082046cf90041a7c6d9cdcd5860d49b3525d4 | [] | no_license | sakiyama02/chanponship | 6d6348eb3e200b7682aa3ec3917e2c7746f754cb | 2dccb2670d03db301434c223d3b80beed55a24d3 | refs/heads/master | 2023-09-06T00:12:07.740578 | 2021-10-22T02:33:11 | 2021-10-22T02:33:11 | 419,940,625 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 755 | h | //SlBkPositionCorrectionInfomation
//スラロームブラッキーポジションコレクションインフォメーション
//
#pragma once
#include "../System/System.h"
class SlBkPositionCorrectionInfomation{
private:
PositionCorrectionData *positionCorrectionData = new PositionCorrectionData[SLALOMBLACKY_NUM];
public:
SlBkPositionCorrectionInfomation();
~SlBkPositionCorrectionInfomation();
//getter
//ゲッター
//引数 int16_t シーン番号
// ChengeInfo* 切り替え情報
// DirectionData* 方向情報
//戻り値 int8_t エラーチェック
int8 getter(int16,PositionCorrectionData*);
}; | [
"sakiyama.hayato02@gmail.com"
] | sakiyama.hayato02@gmail.com |
1ef3cea049f44b45f0e1dd19323db8944dc3e613 | e76265e670de28ae7ff2a91a321a0c2533f4130e | /widget.h | 801b700da125aeba01f720d346566634a498b0f4 | [] | no_license | Belong34/SerialPort | 476aa30fc232a3fa390cca4c8b2ed4cd3cca52b4 | 834ead7e7259a2c1ce8d3d3cd7f3fda8bd04cbc8 | refs/heads/master | 2020-09-11T10:07:17.650451 | 2019-12-24T04:26:09 | 2019-12-24T04:26:09 | 222,030,859 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,219 | h | #ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <qDebug>
#include <QtSerialPort/QSerialPort>
#include <QtSerialPort/QSerialPortInfo>
#include <QTime>
#include <QDateTime>
#include "charts.h"
#include "chart2.h"
#include "form.h"
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
public:
explicit Widget(QWidget *parent = 0);
~Widget();
public:
static float x,y,v;
static int sendFlag;
static int staus;
private slots:
void Read_Date(); //读取串口数据
void find_port(); //查找可用串口
void sleep(int msec); //延时函数
void on_send_button_clicked();
void on_open_port_clicked();
void on_close_port_clicked();
void on_clear_button_1_clicked();
void on_clear_button2_clicked();
void on_receive_modl_clicked();
void on_send_modl_clicked();
void on_pushButton_2_clicked();
void on_pushButton_3_clicked();
void on_send_text_window_textChanged();
void on_pushButton_clicked();
private:
Ui::Widget *ui;
Charts *chart;
chart2 *chartCs;
Form *form;
QSerialPort *serialport;
bool textstate_receive;
bool textstate_send;
};
#endif // WIDGET_H
| [
"530738743@qq.com"
] | 530738743@qq.com |
790efba7702f724791ceb2056ba1656c453a375e | 399b5e377fdd741fe6e7b845b70491b9ce2cccfd | /LLVM_src/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/init_size_hash.pass.cpp | de5f6ae174d1c1ac3e47064274a5d009453a4884 | [
"NCSA",
"LLVM-exception",
"MIT",
"Apache-2.0"
] | permissive | zslwyuan/LLVM-9-for-Light-HLS | 6ebdd03769c6b55e5eec923cb89e4a8efc7dc9ab | ec6973122a0e65d963356e0fb2bff7488150087c | refs/heads/master | 2021-06-30T20:12:46.289053 | 2020-12-07T07:52:19 | 2020-12-07T07:52:19 | 203,967,206 | 1 | 3 | null | 2019-10-29T14:45:36 | 2019-08-23T09:25:42 | C++ | UTF-8 | C++ | false | false | 3,513 | cpp | //===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <unordered_set>
// template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
// class Alloc = allocator<Value>>
// class unordered_multiset
// unordered_multiset(initializer_list<value_type> il, size_type n,
// const hasher& hf);
#include <unordered_set>
#include <cassert>
#include <cfloat>
#include <cmath>
#include <cstddef>
#include "test_macros.h"
#include "../../../test_compare.h"
#include "../../../test_hash.h"
#include "test_allocator.h"
#include "min_allocator.h"
int main()
{
{
typedef std::unordered_multiset<int,
test_hash<std::hash<int> >,
test_compare<std::equal_to<int> >,
test_allocator<int>
> C;
typedef int P;
C c({
P(1),
P(2),
P(3),
P(4),
P(1),
P(2)
},
7,
test_hash<std::hash<int> >(8)
);
LIBCPP_ASSERT(c.bucket_count() == 7);
assert(c.size() == 6);
assert(c.count(1) == 2);
assert(c.count(2) == 2);
assert(c.count(3) == 1);
assert(c.count(4) == 1);
assert(c.hash_function() == test_hash<std::hash<int> >(8));
assert(c.key_eq() == test_compare<std::equal_to<int> >());
assert(c.get_allocator() == test_allocator<int>());
assert(!c.empty());
assert(static_cast<std::size_t>(std::distance(c.begin(), c.end())) == c.size());
assert(static_cast<std::size_t>(std::distance(c.cbegin(), c.cend())) == c.size());
assert(std::fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
assert(c.max_load_factor() == 1);
}
{
typedef std::unordered_multiset<int,
test_hash<std::hash<int> >,
test_compare<std::equal_to<int> >,
min_allocator<int>
> C;
typedef int P;
C c({
P(1),
P(2),
P(3),
P(4),
P(1),
P(2)
},
7,
test_hash<std::hash<int> >(8)
);
LIBCPP_ASSERT(c.bucket_count() == 7);
assert(c.size() == 6);
assert(c.count(1) == 2);
assert(c.count(2) == 2);
assert(c.count(3) == 1);
assert(c.count(4) == 1);
assert(c.hash_function() == test_hash<std::hash<int> >(8));
assert(c.key_eq() == test_compare<std::equal_to<int> >());
assert(c.get_allocator() == min_allocator<int>());
assert(!c.empty());
assert(static_cast<std::size_t>(std::distance(c.begin(), c.end())) == c.size());
assert(static_cast<std::size_t>(std::distance(c.cbegin(), c.cend())) == c.size());
assert(std::fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
assert(c.max_load_factor() == 1);
}
}
| [
"tliang@connect.ust.hk"
] | tliang@connect.ust.hk |
e752ba40a827c41ae9efc79e087dcf3771f91c99 | 40f26fac97de561ad384ae938bc6ac0c38830ba5 | /classes/cs352/overpaint_test/glwidget.cpp | 6bf6582ec016ce4a451ed06c3d0ad5f143e1daa7 | [] | no_license | dysbulic/tip | 9b2b192844c7ccda22ddfbb180a37c825bf72128 | 2efcbf19461110ac09cb337263a8fabecdf58c25 | refs/heads/master | 2023-06-24T12:55:31.689806 | 2023-06-14T03:27:09 | 2023-06-14T03:27:09 | 530,573 | 1 | 3 | null | 2023-03-05T10:46:17 | 2010-02-22T18:29:32 | HTML | UTF-8 | C++ | false | false | 8,718 | cpp | /****************************************************************************
**
** Copyright (C) 2006-2007 Trolltech ASA. All rights reserved.
**
** This file is part of the example classes of the Qt Toolkit.
**
** This file may be used under the terms of the GNU General Public
** License version 2.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of
** this file. Please review the following information to ensure GNU
** General Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/
**
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** In addition, as a special exception, Trolltech gives you certain
** additional rights. These rights are described in the Trolltech GPL
** Exception version 1.0, which can be found at
** http://www.trolltech.com/products/qt/gplexception/ and in the file
** GPL_EXCEPTION.txt in this package.
**
** In addition, as a special exception, Trolltech, as the sole copyright
** holder for Qt Designer, grants users of the Qt/Eclipse Integration
** plug-in the right for the Qt/Eclipse Integration to link to
** functionality provided by Qt Designer and its related libraries.
**
** Trolltech reserves all rights not expressly granted herein.
**
** Trolltech ASA (c) 2007
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include <QtGui>
#include <QtOpenGL>
#include <QtSvg>
#include <stdlib.h>
#include <math.h>
#include "glwidget.h"
#ifndef GL_MULTISAMPLE
#define GL_MULTISAMPLE 0x809D
#endif
GLWidget::GLWidget(QWidget *parent) : QGLWidget(QGLFormat(QGL::SampleBuffers), parent) {
QTime midnight(0, 0, 0);
qsrand(midnight.secsTo(QTime::currentTime()));
object = 0;
xRot = 0;
yRot = 0;
zRot = 0;
trolltechGreen = QColor::fromCmykF(0.40, 0.0, 1.0, 0.0);
trolltechPurple = QColor::fromCmykF(0.39, 0.39, 0.0, 0.0);
animationTimer.setSingleShot(false);
connect(&animationTimer, SIGNAL(timeout()), this, SLOT(animate()));
animationTimer.start(25);
setAttribute(Qt::WA_NoSystemBackground);
setMinimumSize(200, 200);
setWindowTitle(tr("SVG Overpainting a Scene"));
svgRenderer = new QSvgRenderer(QString("us_flag.svg"), this);
}
GLWidget::~GLWidget() {
makeCurrent();
glDeleteLists(object, 1);
}
void GLWidget::setXRotation(int angle) {
normalizeAngle(&angle);
if(angle != xRot) {
xRot = angle;
emit xRotationChanged(angle);
}
}
void GLWidget::setYRotation(int angle) {
normalizeAngle(&angle);
if(angle != yRot) {
yRot = angle;
emit yRotationChanged(angle);
}
}
void GLWidget::setZRotation(int angle) {
normalizeAngle(&angle);
if(angle != zRot) {
zRot = angle;
emit zRotationChanged(angle);
}
}
void GLWidget::initializeGL() {
object = makeObject();
}
void GLWidget::animate() {
update();
}
void GLWidget::mousePressEvent(QMouseEvent *event) {
lastPos = event->pos();
}
void GLWidget::mouseMoveEvent(QMouseEvent *event) {
int dx = event->x() - lastPos.x();
int dy = event->y() - lastPos.y();
if(event->buttons() & Qt::LeftButton) {
setXRotation(xRot + 8 * dy);
setYRotation(yRot + 8 * dx);
} else if(event->buttons() & Qt::RightButton) {
setXRotation(xRot + 8 * dy);
setZRotation(zRot + 8 * dx);
}
lastPos = event->pos();
}
void GLWidget::paintEvent(QPaintEvent *event) {
QPainter painter;
painter.begin(this);
painter.setRenderHint(QPainter::Antialiasing);
glPushAttrib(GL_ALL_ATTRIB_BITS);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
qglClearColor(trolltechPurple.dark());
glShadeModel(GL_SMOOTH);
glEnable(GL_DEPTH_TEST);
glEnable(GL_CULL_FACE);
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glEnable(GL_MULTISAMPLE);
static GLfloat lightPosition[4] = { 0.5, 5.0, 7.0, 1.0 };
glLightfv(GL_LIGHT0, GL_POSITION, lightPosition);
setupViewport(width(), height());
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
glTranslated(0.0, 0.0, -10.0);
glRotated(xRot / 16.0, 1.0, 0.0, 0.0);
glRotated(yRot / 16.0, 0.0, 1.0, 0.0);
glRotated(zRot / 16.0, 0.0, 0.0, 1.0);
glCallList(object);
glPopAttrib();
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
glMatrixMode(GL_PROJECTION);
glPopMatrix();
svgRenderer->render(&painter);
painter.drawImage((width() - image.width())/2, 0, image);
painter.end();
}
void GLWidget::resizeGL(int width, int height) {
setupViewport(width, height);
formatInstructions(width, height);
}
void GLWidget::showEvent(QShowEvent *event) {
Q_UNUSED(event);
}
QSize GLWidget::sizeHint() const {
return QSize(400, 400);
}
GLuint GLWidget::makeObject() {
GLuint list = glGenLists(1);
glNewList(list, GL_COMPILE);
glEnable(GL_NORMALIZE);
glBegin(GL_QUADS);
static GLfloat logoDiffuseColor[4] = { trolltechGreen.red() / 255.0,
trolltechGreen.green() / 255.0,
trolltechGreen.blue() / 255.0, 1.0 };
glMaterialfv(GL_FRONT, GL_DIFFUSE, logoDiffuseColor);
GLdouble x1 = +0.06;
GLdouble y1 = -0.14;
GLdouble x2 = +0.14;
GLdouble y2 = -0.06;
GLdouble x3 = +0.08;
GLdouble y3 = +0.00;
GLdouble x4 = +0.30;
GLdouble y4 = +0.22;
quad(x1, y1, x2, y2, y2, x2, y1, x1);
quad(x3, y3, x4, y4, y4, x4, y3, x3);
extrude(x1, y1, x2, y2);
extrude(x2, y2, y2, x2);
extrude(y2, x2, y1, x1);
extrude(y1, x1, x1, y1);
extrude(x3, y3, x4, y4);
extrude(x4, y4, y4, x4);
extrude(y4, x4, y3, x3);
const double Pi = 3.14159265358979323846;
const int NumSectors = 200;
for(int i = 0; i < NumSectors; ++i) {
double angle1 = (i * 2 * Pi) / NumSectors;
GLdouble x5 = 0.30 * sin(angle1);
GLdouble y5 = 0.30 * cos(angle1);
GLdouble x6 = 0.20 * sin(angle1);
GLdouble y6 = 0.20 * cos(angle1);
double angle2 = ((i + 1) * 2 * Pi) / NumSectors;
GLdouble x7 = 0.20 * sin(angle2);
GLdouble y7 = 0.20 * cos(angle2);
GLdouble x8 = 0.30 * sin(angle2);
GLdouble y8 = 0.30 * cos(angle2);
quad(x5, y5, x6, y6, x7, y7, x8, y8);
extrude(x6, y6, x7, y7);
extrude(x8, y8, x5, y5);
}
glEnd();
glEndList();
return list;
}
void GLWidget::quad(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2,
GLdouble x3, GLdouble y3, GLdouble x4, GLdouble y4) {
glNormal3d(0.0, 0.0, -1.0);
glVertex3d(x1, y1, -0.05);
glVertex3d(x2, y2, -0.05);
glVertex3d(x3, y3, -0.05);
glVertex3d(x4, y4, -0.05);
glNormal3d(0.0, 0.0, 1.0);
glVertex3d(x4, y4, +0.05);
glVertex3d(x3, y3, +0.05);
glVertex3d(x2, y2, +0.05);
glVertex3d(x1, y1, +0.05);
}
void GLWidget::extrude(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2) {
qglColor(trolltechGreen.dark(250 + int(100 * x1)));
glNormal3d((x1 + x2)/2.0, (y1 + y2)/2.0, 0.0);
glVertex3d(x1, y1, +0.05);
glVertex3d(x2, y2, +0.05);
glVertex3d(x2, y2, -0.05);
glVertex3d(x1, y1, -0.05);
}
void GLWidget::normalizeAngle(int *angle) {
while(*angle < 0)
*angle += 360 * 16;
while(*angle > 360 * 16)
*angle -= 360 * 16;
}
void GLWidget::setupViewport(int width, int height) {
int side = qMin(width, height);
glViewport((width - side) / 2, (height - side) / 2, side, side);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(-0.5, +0.5, +0.5, -0.5, 4.0, 15.0);
glMatrixMode(GL_MODELVIEW);
}
void GLWidget::formatInstructions(int width, int height) {
QString text = tr("Click and drag with the left mouse button "
"to rotate the Qt logo.");
QFontMetrics metrics = QFontMetrics(font());
int border = qMax(4, metrics.leading());
QRect rect = metrics.boundingRect(0, 0, width - 2*border, int(height*0.125),
Qt::AlignCenter | Qt::TextWordWrap, text);
image = QImage(width, rect.height() + 2*border, QImage::Format_ARGB32_Premultiplied);
image.fill(qRgba(0, 0, 0, 127));
QPainter painter;
painter.begin(&image);
painter.setRenderHint(QPainter::TextAntialiasing);
painter.setPen(Qt::white);
painter.drawText((width - rect.width())/2, border,
rect.width(), rect.height(),
Qt::AlignCenter | Qt::TextWordWrap, text);
painter.end();
}
| [
"will@dhappy.org"
] | will@dhappy.org |
0fccbbace1436d8632bc3001959f15088aaa56cb | 73785b1dbcd81ec3e1efebeab6c1cb244400dc13 | /NDimYoung/Tableaux2D.h | 948bc4ba228fc7b45b8f050e545a26aaf39d609e | [] | no_license | GreenSliper/NDimYoung | cd3aeeaa8aa708e534957eacd388553e47803b7d | db07195d6998077274d7039e97026a8d70a2dbc9 | refs/heads/master | 2023-08-07T07:31:51.749599 | 2021-04-08T16:10:16 | 2021-04-08T16:10:16 | 279,287,569 | 0 | 0 | null | 2021-04-08T16:10:17 | 2020-07-13T11:47:28 | C++ | UTF-8 | C++ | false | false | 1,214 | h | #pragma once
#include "YoungNDim.h"
using namespace std;
typedef int tabType;
class Tableau2D
{
private:
vector<mainType> reserveColumns;
tabType diagNReserve = 0;
public:
vector<vector<tabType>> table;
vector<tabType> fastTable;
Young2D* diag;
tabType diagN = 0;
//initializer
Tableau2D(Young2D &base);
~Tableau2D();
mainType* GetRandomPointInDiag();
//hookCornerCoord - max left-bottom hook cell (corner). isTerminal returns true, if the returned cell is terminal
mainType* GetRandomPointOnThisHook(mainType* hookCornerCoord, bool* isTerminal, bool destroySourceCoordArray = false);
mainType* GetRandomPointOnThisHookFast(mainType* hookCornerCoord, bool* isTerminal);
void CreateColorFile(mainType* hookCorner, int frame, bool ignoreHookCorner);
static bool TablesEqual(vector<vector<tabType>> table1, vector<vector<tabType>> table2);
bool CoordsEqual(mainType* c1, mainType* c2, int len);
void ProcessOneHookwalk(bool createOutputFiles = false, int* fileFrame = NULL);
void ProcessOneHookwalkFast();
void GenerateRandomTable(bool createColorFiles = false, bool reserveDiagram = true);
vector<tabType> GenerateRandomTableFast(bool reserveState);
vector<vector<tabType>> ExtractTable();
}; | [
"butterwithnuts666@gmail.com"
] | butterwithnuts666@gmail.com |
de01453722bd05cc47608bd2b4f47cfc02ab44a6 | f03088d9d8b92fe5b8491b21dd73d4e061ecc502 | /Directory/directory-links/2018-competition/2018-comp/software/code/controllertomegawheelmode_ino.ino | 2c8b28aff01a99b14e4af9334a8898d082557796 | [] | no_license | mburg-dr-j/RMRC-BlueStorm | d2c3ad8fedfb54fec0ea6417638a9490a89a5b21 | 06e34a3ef94ddfdf15e3258e2dd224d99092b841 | refs/heads/master | 2021-06-30T17:03:36.987640 | 2019-06-17T17:23:08 | 2019-06-17T17:23:08 | 147,834,301 | 0 | 1 | null | 2018-09-07T19:54:24 | 2018-09-07T14:27:13 | null | UTF-8 | C++ | false | false | 7,267 | ino | /* __
____ ___ ___ _____________ __________/ /_ __ ___________ _
/ __ `__ \/ _ \/ ___/ ___/ _ \/ ___/ ___/ __ \/ / / / ___/ __ `/
/ / / / / / __/ / / /__/ __/ / (__ ) /_/ / /_/ / / / /_/ /
/_/ /_/ /_/\___/ / \___/\/_// / /____/_.___/\__,_/_/ \__, /
_________ / /_ ____ / /_(_)_________ /____/
/ ___/ __ \/ __ \/ __ \/ __/ / ___/ ___/
/ / / /_/ / /_/ / /_/ / /_/ / /__(__ )
/_/ \____/_.___/\____/\__/_/\___/____/
Victor Li '18, Maddie Rogers '17, Pat Madden '18, 2017
Powered by nihilism, coffee, and some curiosity
*/
//FOR USE WITH TETHER
//---! XBee incompatible, use only with USB shield on mega
//---! for direct communication between controller and mega (requires an arduino with USB shield and PS4 controller)
// ---! Code presented is heavily modifed from the example
// ---! sketch for the PS4 USB library - developed by Kristian Lauszus
// ---! For more information visit his blog: http://blog.tkjelectronics.dk/
// ---! I tried to write this as cleanly as I could, though
// ---! if you have any questions I can be reached at patrickvincentmadden@gmail.com
#include <PS4USB.h>
#include <usbhub.h>
#include <PS4Parser.h>
#include <Dynamixel.h>
#include <DynamixelConsole.h>
#include <DynamixelInterface.h>
#include <DynamixelMotor.h>
// Satisfy the IDE, which needs to see the include statment in the ino too.
#ifdef dobogusinclude
#include <spi4teensy3.h>
#include <SPI.h>
#endif
USB Usb;
PS4USB PS4(&Usb);
char myArray[100];
int i=0;
String str;
byte incoming=0;
int speedSelect = 1; //default set speedA -> speedB -> speedC -> speedA ...
int speedA = 750;
int speedB = 1000;
int speedC = 150;
int a = 0;
int b = 50; //hack value, turning right or left on very low speeds (like 150) lowers torque intolerably so this should help
int invert = 1; //default set NO
bool inverted = false;
DynamixelInterface &interface=*createSerialInterface(Serial);
DynamixelMotor motor1(interface, 55);
DynamixelMotor motor2(interface, 54);
DynamixelMotor motor3(interface, 60);
DynamixelMotor motor4(interface, 58);
void forward() {
switch(speedSelect) {
case 1:
Serial.print("case 1");
motor1.speed(speedA);
motor2.speed(-speedA);
motor3.speed(speedA);
motor4.speed(-speedA);
break;
case 2:
Serial.print("case 2");
motor1.speed(speedB);
motor2.speed(-speedB);
motor3.speed(speedB);
motor4.speed(-speedB);
break;
case 3:
Serial.print("case 3");
motor1.speed(speedC);
motor2.speed(-speedC);
motor3.speed(speedC);
motor4.speed(-speedC);
break;
}
}
void backward() {
switch(speedSelect) {
case 1:
Serial.print("case 1");
motor1.speed(-speedA);
motor2.speed(speedA);
motor3.speed(-speedA);
motor4.speed(speedA);
break;
case 2:
Serial.print("case 2");
motor1.speed(-speedB);
motor2.speed(speedB);
motor3.speed(-speedB);
motor4.speed(speedB);
break;
case 3:
Serial.print("case 3");
motor1.speed(-speedC);
motor2.speed(speedC);
motor3.speed(-speedC);
motor4.speed(speedC);
break;
}
}
void right() {
switch(speedSelect) {
case 1:
Serial.print("case 1");
motor1.speed(speedA);
motor2.speed(speedA);
motor3.speed(speedA);
motor4.speed(speedA);
break;
case 2:
Serial.print("case 2");
motor1.speed(speedB);
motor2.speed(speedB);
motor3.speed(speedB);
motor4.speed(speedB);
break;
case 3:
Serial.print("case 3");
motor1.speed(speedC+b);
motor2.speed(speedC+b);
motor3.speed(speedC+b);
motor4.speed(speedC+b);
break;
}
}
void left() {
switch(speedSelect) {
case 1:
Serial.print("case 1");
motor1.speed(-speedA);
motor2.speed(-speedA);
motor3.speed(-speedA);
motor4.speed(-speedA);
break;
case 2:
Serial.print("case 2");
motor1.speed(-speedB);
motor2.speed(-speedB);
motor3.speed(-speedB);
motor4.speed(-speedB);
break;
case 3:
Serial.print("case 3");
motor1.speed(-speedC-b);
motor2.speed(-speedC-b);
motor3.speed(-speedC-b);
motor4.speed(-speedC-b);
break;
}
}
void north() {
switch(invert){
case 1:
forward();
break;
case 2:
backward();
break;
default:
//empty
break;
}
}
void south() {
switch(invert){
case 1:
backward();
break;
case 2:
forward();
break;
default:
//empty
break;
}
}
// changes made here, if issues switch back to original
void east() {
switch(invert){
case 1:
right();
break;
case 2:
right(); // left();
break;
default:
//empty
break;
}
}
void west() {
switch(invert){
case 1:
left();
break;
case 2:
left(); // right();
break;
default:
//empty
break;
}
}
// end changes made
void setup() {
Serial.begin(57600);
interface.begin(1000000);
#if !defined(__MIPSEL__)
while (!Serial); // Wait for serial port to connect - used on Leonardo, Teensy and other boards with built-in USB CDC serial connection
#endif
if (Usb.Init() == -1) {
//Serial.print(F("\r\nOSC did not start"));
while (1); // Halt
}
delay(100);
motor1.jointMode();
motor2.jointMode();
motor3.jointMode();
motor4.jointMode();
delay(100);
while (! Serial) {
delay(1);
}
motor1.position(a);
motor2.position(a);
motor3.position(a);
motor4.position(a);
delay(100);
motor1.wheelMode();
motor2.wheelMode();
motor3.wheelMode();
motor4.wheelMode();
delay(100);
while (! Serial) {
delay(1);
}
}
void loop() {
Usb.Task();
if (PS4.connected()) {
if (PS4.getButtonClick(UP)) {
Serial.println("hit");
north();
}
if (PS4.getButtonClick(RIGHT)) {
Serial.println("hit");
east();
}
if (PS4.getButtonClick(DOWN)) {
Serial.println("hit");
south();
}
if (PS4.getButtonClick(LEFT)) {
Serial.println("hit");
west();
}
if (PS4.getButtonClick(CROSS)) {
Serial.println("hit");
motor1.speed(0);
motor2.speed(0);
motor3.speed(0);
motor4.speed(0);
motor1.speed(0);
motor2.speed(0);
motor3.speed(0);
motor4.speed(0);
}
if (PS4.getButtonClick(SQUARE)) {
Serial.println("hit");
if(inverted)
{
invert = 1;
inverted = false;
Serial.print("invert = ");
Serial.println(invert);
}else
{
invert = 2;
inverted = true;
Serial.print("invert = ");
Serial.println(invert);
}
}
if (PS4.getButtonClick(TRIANGLE)) {
Serial.println("hit");
if(speedSelect==3)
{
speedSelect = 1;
Serial.print(speedSelect);
}else
{
speedSelect++;
Serial.print(speedSelect);
}
}
// if (PS4.getButtonClick(CIRCLE) {
// }
}
}
| [
"43070504+lieberj19@users.noreply.github.com"
] | 43070504+lieberj19@users.noreply.github.com |
0aebb3fa06f1ad3d56736c976eaddf8f540a5bb6 | 608b93fbd3277333f110e7ae7e787a5904a38fc8 | /cocos2dx/Classes/AppDelegate.cpp | 1be1837e9453e2c81d270be48903a326dcbbaad4 | [] | no_license | yumayo/Crysfia | 96bec4740946617d2bc3683b3cb74a5e7a1b75f9 | 4f2094502153b8ce90ca720a5790677774d430d4 | refs/heads/master | 2020-12-02T06:23:44.401938 | 2017-08-16T13:03:22 | 2017-08-16T13:03:22 | 71,362,415 | 3 | 8 | null | 2017-03-11T16:23:14 | 2016-10-19T13:52:51 | C++ | UTF-8 | C++ | false | false | 2,718 | cpp | #include "AppDelegate.h"
#include "Lib/EnvironmentDefaultData/EnvironmentDefaultData.h"
#include "User/SceneManager.h"
#include "User/System/DataSettings.h"
USING_NS_CC;
AppDelegate::AppDelegate( )
{
}
AppDelegate::~AppDelegate( )
{
}
// if you want a different context, modify the value of glContextAttrs
// it will affect all platforms
void AppDelegate::initGLContextAttrs( )
{
// set OpenGL context attributes: red,green,blue,alpha,depth,stencil
GLContextAttrs glContextAttrs = { 8, 8, 8, 8, 24, 8 };
GLView::setGLContextAttrs( glContextAttrs );
}
// if you want to use the package manager to install more packages,
// don't modify or remove this function
static int register_all_packages( )
{
return 0; //flag for packages manager
}
bool AppDelegate::applicationDidFinishLaunching( ) {
auto env = Env::getInstance( );
auto size = Size( 1080, 1920 ) * 0.5;
// initialize director
auto director = Director::getInstance( );
auto glview = director->getOpenGLView( );
if ( !glview ) {
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
glview = GLViewImpl::createWithRect( env->gameName, cocos2d::Rect( 0, 0, size.width, size.height ) );
//glview = GLViewImpl::createWithFullScreen( env->gameName );
#else
glview = GLViewImpl::create( env->gameName );
#endif
director->setOpenGLView( glview );
}
#ifdef _DEBUG
// turn on display FPS
director->setDisplayStats( true );
#endif // _DEBUG
// set FPS. the default value is 1.0/60 if you don't call this
director->setAnimationInterval( 1.0f / 60 );
// Set the design resolution
glview->setDesignResolutionSize( env->designResolutionSize.width, env->designResolutionSize.height, ResolutionPolicy::SHOW_ALL );
register_all_packages( );
User::userDefaultSetup( );
User::SceneManager::createSystemAppDelegateStart( );
return true;
}
// This function will be called when the app is inactive. Note, when receiving a phone call it is invoked.
void AppDelegate::applicationDidEnterBackground( ) {
Director::getInstance( )->stopAnimation( );
// if you use SimpleAudioEngine, it must be paused
// SimpleAudioEngine::getInstance()->pauseBackgroundMusic();
}
// this function will be called when the app is active again
void AppDelegate::applicationWillEnterForeground( ) {
Director::getInstance( )->startAnimation( );
// if you use SimpleAudioEngine, it must resume here
// SimpleAudioEngine::getInstance()->resumeBackgroundMusic();
}
| [
"scha-taz0@outlook.jp"
] | scha-taz0@outlook.jp |
e13aba0afa7be62de65834207396265475e422e3 | 5c45c29653f16a34ec73c914772c4944a8a78aee | /json_tester/requestRealTime.ino | 49693de46fc7df6700966278f576cd97c502ea77 | [] | no_license | PrzKem/SM_Delta | 988ed077f9b71e936398408bd40b17d78991d1be | ae5f9afd3b0d577c07caf7a3538f22f5f014454c | refs/heads/main | 2023-03-20T13:32:02.133425 | 2021-03-09T10:32:22 | 2021-03-09T10:32:22 | 312,651,058 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,809 | ino | void requestRealTime()
{
float x, y, z;
int i;
//Serial.println(F("Connecting..."));
// Connect to HTTP server
client.setTimeout(10000);
if (!client.connect("192.168.1.100", 80)) {
Serial.println(F("Connection failed"));
return;
}
//Serial.println(F("Connected!"));
// Send HTTP request
client.println("GET /values.php?rN=3 HTTP/1.0");
client.println("Host: 192.168.1.100");
client.println("Connection: close");
if (client.println() == 0) {
Serial.println("Failed to send request");
return;
}
// Check HTTP status
char status[32] = {0};
client.readBytesUntil('\r', status, sizeof(status));
if (strcmp(status, "HTTP/1.1 200 OK") != 0) {
Serial.print("Unexpected response: ");
Serial.println(status);
return;
}
// Skip HTTP headers
char endOfHeaders[] = "\r\n\r\n";
if (!client.find(endOfHeaders)) {
Serial.println("Invalid response");
return;
}
// Allocate the JSON document
// Use arduinojson.org/v6/assistant to compute the capacity.
const size_t capacity = JSON_OBJECT_SIZE(4) + 40;
DynamicJsonDocument doc(capacity);
// Parse JSON object
DeserializationError error = deserializeJson(doc, client);
if (error) {
Serial.print("deserializeJson() failed: ");
Serial.println(error.f_str());
return;
}
// Extract values
i = doc["canGo"].as<int>();
x = doc["x"].as<float>();
y = doc["y"].as<float>();
z = doc["z"].as<float>();
if (i == 1)
{
Serial.println("Response:");
Serial.print("x: "); Serial.println(x, 2);
Serial.print("y: "); Serial.println(y, 2);
Serial.print("z: "); Serial.println(z, 2);
Serial.print("Stat: "); Serial.println(i);
}
// Disconnect
client.stop();
}
| [
"noreply@github.com"
] | PrzKem.noreply@github.com |
4266dd6cc4c4dc02b93ac313fb2760b85488e52a | 7191b53937344d807971f83a113be1aeda15b615 | /cpp_layer/execution_interface.hpp | 6472cc2f6651cf2f14aac738ecfeb6e491ce8a9c | [] | no_license | RonMen10/Cross-device-CPU-GPU-transaction-processing | f451dd2c7384db0de2d660811401d6f6c2abc92a | 5c7142ee27150b93c1a7740a057a866dc873495d | refs/heads/master | 2023-01-14T04:48:55.200695 | 2020-11-12T13:51:34 | 2020-11-12T13:51:34 | 269,403,970 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,955 | hpp | //
// Created by gurumurt on 28/04/20.
//
#ifndef HERO_CPP_EXECUTION_INTERFACE_HPP
#define HERO_CPP_EXECUTION_INTERFACE_HPP
#pragma once
#include "../headers.hpp"
#include "cpp_globals.hpp"
namespace cpp_layer{
/*!
* It helps to execute the kernel that are built previously along with all the arguments
* @param _platformId The platform id containing the device
* @param _deviceId The id of the device
* @param _kernelName The unique name for the kernel
* @param _args List of arguments needed for the for the kernel
* @param _param List of constant values needed
* @param _globalSize
* @param _localSize
* @param _addLocalBuffer
* @param _addLocalBufferFactor
* @param ev
* @param _cmd_queue_loc The position of the command queue which is needed. Default value is 0
*/
// template<typename T>
inline void
execute(std::string _kernelName, std::vector<int> _args, std::vector<int> _param,
size_t _globalSize);
/*!
* Fetches the execution time of kernel
* @return time for execution of last kernel
*/
inline double get_execution_time();
inline void extract_execution_time(cl_event *_ev);
inline void
execute(std::string _kernelName, std::vector<int> _args, std::vector<int> _param,
size_t _globalSize) {
//Based on the kernel name call the primitive function with execution parameters added to it
std::vector<int*> a;
for (int arg_index : _args){
a.push_back((int*)mDataDictionary[arg_index]);
}
start_timer = clock();
mKernelDictionary[_kernelName](a,_param,_globalSize);
end_timer = clock();
}
inline double get_execution_time() {
return mExecTime;
}
inline void extract_execution_time(cl_event *_ev) {
mExecTime = (double) end_timer - start_timer;
}
}
#endif HERO_CPP_EXECUTION_INTERFACE_HPP
| [
"noreply@github.com"
] | RonMen10.noreply@github.com |
8873b103e6b239143e76e8405fccde6943c8be77 | 8111eedfe2adf20daf5cc80d6a35ca6e9189bf64 | /SPAN/Optimization/Lant.cpp | f063b39101b48c6d03aec7dabf270cde532cc123 | [] | no_license | Xunpeng746/SPAN | dd05ef36d5eb6c7238393ce7a45a105ce402f130 | 12d1a22781acbd3b362b28ddc9abec5364374d21 | refs/heads/main | 2023-03-08T19:20:19.907595 | 2021-02-18T12:34:55 | 2021-02-18T12:34:55 | 340,044,457 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,058 | cpp | #include "Lant.h"
// extern size_t MAX_DIM;
Records Lant::run(int iter_num, Records records, double * weights)
{
int iter_cnt = 0;
double data_pass = 0, hess_error = 1;
int rank = keep_rank + more_rank;
MemFactory memFac = MemFactory();
double* full_grad = memFac.malloc_double(MAX_DIM);
double* hess_inv_vt = memFac.malloc_double(MAX_DIM);
double* u = memFac.malloc_double(MAX_DIM*rank);
double* s = memFac.malloc_double(rank);
double* s_tmp = memFac.malloc_double(rank);
double* grad_u = memFac.malloc_double(rank);
double* u_tmp = memFac.malloc_double(MAX_DIM*rank);
double* hess_exact = memFac.malloc_double(MAX_DIM*MAX_DIM);
double lambda_const = 1.0;
double* s_keep = s + more_rank;
double* hess_approx = memFac.malloc_double(MAX_DIM*MAX_DIM);
int* idx = memFac.malloc_int(sample_size);
double* hess_diff = memFac.malloc_double(MAX_DIM*MAX_DIM);
if (weights == nullptr) model->init_model();
else model->update_model(weights);
log_start();
auto start = std::chrono::high_resolution_clock::now();
log_iter_end(start, data_pass, records);
while (iter_cnt < iter_num) {
iter_cnt += 1;
Util::get_rand_choice(idx, sample_size, 0, N);
get_hess_approx(u, s, idx);
if (PRINT_HESS) {
Util::get_randn(hess_diff, MAX_DIM*MAX_DIM, 0, 1);
model->get_full_hessian(hess_exact);
mem_copy(MAX_DIM*rank, u, 1, u_tmp, 1);
double lambda_const = s[more_rank];
for (int i = 0; i < rank; ++i) {
scal(MAX_DIM, s[i] - lambda_const, u_tmp + i * MAX_DIM, 1);
}
gemm(CblasRowMajor, CblasTrans, CblasNoTrans, MAX_DIM, MAX_DIM, keep_rank, 1.0, u_tmp + more_rank * MAX_DIM, MAX_DIM,
u + more_rank * MAX_DIM, MAX_DIM, 0, hess_approx, MAX_DIM);
for (int i = 0; i < MAX_DIM; ++i) hess_approx[i*MAX_DIM + i] += lambda_const;
double diff_sum = cblas_dasum(MAX_DIM*MAX_DIM, hess_diff, 1);
vdSub(MAX_DIM*MAX_DIM,hess_approx, hess_exact, hess_diff);
hess_error = Util::spectral_norm(hess_diff, MAX_DIM);
int k = 0;
records.set_hess_error(hess_error);
}
int const_num = more_rank;
model->get_full_gradient(full_grad);
lambda_const = 2.0 / (s[const_num] + s[const_num + 1]);
vdLinearFrac(keep_rank, s_keep, s_keep, -lambda_const, 1, 1.0, 0.0, s_tmp);
gemv(CblasRowMajor, CblasNoTrans, keep_rank, MAX_DIM, 1.0, u + more_rank * MAX_DIM, MAX_DIM, full_grad, 1, 0.0, grad_u, 1);
vdMul(keep_rank, grad_u, s_tmp, grad_u);
gemv(CblasRowMajor, CblasTrans, keep_rank, MAX_DIM, 1.0, u + more_rank * MAX_DIM, MAX_DIM, grad_u, 1, 0, hess_inv_vt, 1);
axpy(MAX_DIM, lambda_const, full_grad, 1, hess_inv_vt, 1);
axpy(MAX_DIM, -step_size, hess_inv_vt, 1, model->get_model(), 1);
data_pass+=1;
double loss = log_iter_end(start, data_pass, records);
if(loss<0||loss>2){
break;
}
}
log_end(records);
return records;
}
void Lant::
run_stage_a_4_3(const double * rand_matrix, const int * idx, int n_samples, const double * grad, double * q_matrix, double * y_matrix, const double * weights,int _power_iter)
{
int rank = more_rank + keep_rank;
double* tau = (double*)mkl_malloc(sizeof(double)*rank, 64);
double* hess_dot_matrix[2];
hess_dot_matrix[0] = (double*)mkl_malloc(sizeof(double)*MAX_DIM*rank, 64);
hess_dot_matrix[1] = q_matrix;
get_hess_dot_matrix_approx(rand_matrix, hess_dot_matrix[1], idx, n_samples, grad, rank, nullptr, _power_iter);
// for (int i = 0; i < _power_iter; ++i) {
// get_hess_dot_matrix_approx(hess_dot_matrix[1], hess_dot_matrix[0], idx, n_samples, grad, rank);
// // LAPACKE_dgelqf(CblasRowMajor, rank, MAX_DIM, hess_dot_matrix[0], MAX_DIM, tau);
// // LAPACKE_dorglq(CblasRowMajor, rank, MAX_DIM, rank, hess_dot_matrix[0], MAX_DIM, tau);
// get_hess_dot_matrix_approx(hess_dot_matrix[0], hess_dot_matrix[1], idx, n_samples, grad, rank);
// // LAPACKE_dgelqf(CblasRowMajor, rank, MAX_DIM, hess_dot_matrix[1], MAX_DIM, tau);
// // LAPACKE_dorglq(CblasRowMajor, rank, MAX_DIM, rank, hess_dot_matrix[1], MAX_DIM, tau);
// }
LAPACKE_dgelqf(CblasRowMajor, rank, MAX_DIM, hess_dot_matrix[1], MAX_DIM, tau);
LAPACKE_dorglq(CblasRowMajor, rank, MAX_DIM, rank, hess_dot_matrix[1], MAX_DIM, tau);
if (hess_dot_matrix[1] != q_matrix) {
mem_copy(MAX_DIM*rank, hess_dot_matrix[1], 1, q_matrix, 1);
}
mkl_free(tau);
mkl_free(hess_dot_matrix[0]);
}
void Lant::run_stage_ab(const double* rand_matrix, int * idx, int n_samples, double* u, double* s, double* weight){
int rank = more_rank + keep_rank;
double* q_matrix = (double*)mkl_malloc(sizeof(double)*rank*MAX_DIM, 64);
double* B = (double*)mkl_malloc(sizeof(double)*rank*rank, 64);
model->get_hess_vt(idx, n_samples, rand_matrix, q_matrix, weight, rank, power_iter, B);
// gemm(CblasRowMajor, CblasNoTrans, CblasTrans, rank, rank, MAX_DIM, 1.0, hess_q_matrix, MAX_DIM, q_matrix, MAX_DIM,
// 0, B, rank);
LAPACKE_dsyevd(CblasRowMajor, 'V', 'U', rank, B, rank, s);
gemm(CblasRowMajor, CblasTrans, CblasNoTrans, rank, MAX_DIM, rank, 1.0, B, rank, q_matrix, MAX_DIM, 0, u, MAX_DIM);
mkl_free(B);
mkl_free(q_matrix);
}
void Lant::
run_stage_b_5_3(const double * q_matrix, int * idx, int n_samples, const double * grad, double * u, double * s, const double * weights)
{
int rank = more_rank + keep_rank;
double* hess_q_matrix = u;
double* B = (double*)mkl_malloc(sizeof(double)*rank*rank, 64);
//double* B_tmp = (double*)mkl_malloc(sizeof(double)*rank*rank, 64);
get_hess_dot_matrix_approx(q_matrix, hess_q_matrix, idx, n_samples, grad, rank, weights);
gemm(CblasRowMajor, CblasNoTrans, CblasTrans, rank, rank, MAX_DIM, 1.0, hess_q_matrix, MAX_DIM, q_matrix, MAX_DIM,
0, B, rank);
LAPACKE_dsyevd(CblasRowMajor, 'V', 'U', rank, B, rank, s);
gemm(CblasRowMajor, CblasTrans, CblasNoTrans, rank, MAX_DIM, rank, 1.0, B, rank, q_matrix, MAX_DIM, 0, u, MAX_DIM);
mkl_free(B);
//mkl_free(B_tmp);
}
void Lant::
get_hess_dot_matrix_approx(const double * matrix, double * grad_diff, const int idx[], int n_samples,const double * grad, int ndim, const double * weights, int _power_iter)
{
if (!use_hess_vt) {
if (weights == nullptr) weights = model->get_model();
double* new_weights = (double*)mkl_malloc(sizeof(double)*MAX_DIM*ndim, 64);
axpby(MAX_DIM*ndim, scale_w, matrix, 1, 0, new_weights, 1);
cblas_dger(CblasRowMajor, ndim, MAX_DIM, 1.0, one_dim, 1, weights, 1, new_weights, MAX_DIM);
//out = new_grad-grad
model->get_gradient(idx, n_samples, grad_diff, new_weights, ndim);
cblas_dger(CblasRowMajor, ndim, MAX_DIM, -1.0, one_dim, 1, grad, 1, grad_diff, MAX_DIM);
// recover scale_w, because matrix scale by scalw_w
scal(MAX_DIM*ndim, 1.0 / scale_w, grad_diff, 1);
mkl_free(new_weights);
}else {
if (weights == nullptr) weights = model->get_model();
// for (int i = 0; i < ndim; ++i) {
// model->get_hess_vt(idx, n_samples, matrix, grad_diff, weights, ndim);
// }
model->get_hess_vt(idx, n_samples, matrix, grad_diff, weights, ndim,_power_iter);
}
}
void Lant::get_hess_approx(double * u, double * s, int* idx, double * weight)
{
int rank = more_rank + keep_rank;
double* q_matrix = (double*)mkl_malloc(sizeof(double)*rank*MAX_DIM, 64);
double* mini_grad = (double*)mkl_malloc(sizeof(double)*MAX_DIM, 64);
double* rand_matrix = Util::get_randn(rank*MAX_DIM, 0, 1);
//idx = Util::get_rand_choice(sample_size, 0, N);
//Util::get_rand_choice(idx, sample_size, 0, N);
if(use_hess_vt){
run_stage_ab(rand_matrix, idx, sample_size, u, s);
}else{
model->get_gradient(idx, sample_size, mini_grad);
// auto st = std::chrono::high_resolution_clock::now();
if (stage_a==3) {
run_stage_a_4_3(rand_matrix, idx, sample_size, mini_grad, q_matrix, nullptr);
}
// auto ed1 = std::chrono::high_resolution_clock::now();
if (stage_b==3) {
run_stage_b_5_3(q_matrix, idx, sample_size, mini_grad, u, s);
}
}
// auto ed2 = std::chrono::high_resolution_clock::now();
// printf("stageA cost time:%.5f\n", sub(ed1, st));
// printf("stageB cost time:%.5f\n", sub(ed2, ed1));
//mkl_free(y_matrix);
mkl_free(q_matrix);
mkl_free(mini_grad);
mkl_free(rand_matrix);
//mkl_free(idx);
}
void Lant::get_hess_inv_vt_by_usv(double * u, double * s, double * vt, double* hess_inv_vt)
{
if (vt != hess_inv_vt) {
mem_copy(MAX_DIM, vt, 1, hess_inv_vt, 1);
}
int const_num = more_rank;
double* s_keep = s + more_rank;
// auto grad_ed = std::chrono::high_resolution_clock::now();
double lambda_const = 2.0 / (s[const_num] + s[const_num + 1]);
double* tmp = (double*)mkl_malloc(sizeof(double)*MAX_DIM * 2, 64);
double *s_tmp = tmp, *grad_u = tmp + MAX_DIM;
// hess_inv_vt = grad@u[:,more_rank:]*(1/s[drop:] - lambda_cost)@v[more_rank:,:]
vdLinearFrac(keep_rank, s_keep, s_keep, -lambda_const, 1, 1.0, 0.0, s_tmp);
gemv(CblasRowMajor, CblasNoTrans, keep_rank, MAX_DIM, 1.0, u + more_rank * MAX_DIM, MAX_DIM, vt, 1, 0.0, grad_u, 1);
vdMul(keep_rank, grad_u, s_tmp, grad_u);
gemv(CblasRowMajor, CblasTrans, keep_rank, MAX_DIM, 1.0, u + more_rank * MAX_DIM, MAX_DIM, grad_u, 1, lambda_const, hess_inv_vt, 1);
//axpy(MAX_DIM, lambda_const, vt, 1, hess_inv_vt, 1);
mkl_free(tmp);
}
Lant::~Lant()
{
mkl_free(one_dim);
}
| [
"noreply@github.com"
] | Xunpeng746.noreply@github.com |
d4b62a47ab60e61a0fe35b090864d6487447e366 | 3136459fd674e1027f480895ba6685312ac6959b | /include/owl/system.h | 7c62a0032aa57b205d6914d802c8fd05f62da2b5 | [
"Zlib"
] | permissive | pierrebestwork/owl-next | 701d1a6cbabd4566a0628aa8a64343b498d1e977 | 94ba85e8b4dcb978f095b479f85fe4ba3af2fe4e | refs/heads/master | 2023-02-14T02:03:33.656218 | 2020-03-16T16:41:49 | 2020-03-16T16:41:49 | 326,663,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,531 | h | //
/// \file system.h
/// Definition of TSystem, a system information provider class
//
// Part of OWLNext - the next generation Object Windows Library
// Copyright (c) 1995, 1996 by Borland International, All Rights Reserved.
//
// For more information, including license details, see
// http://owlnext.sourceforge.net
//
#if !defined(OWL_SYSTEM_H)
#define OWL_SYSTEM_H
#include <owl/private/defs.h>
#if defined(BI_HAS_PRAGMA_ONCE)
# pragma once
#endif
#if defined(BI_COMP_WATCOM)
# pragma read_only_file
#endif
#include <owl/wsysinc.h>
#include <owl/defs.h>
namespace owl {
#include <owl/preclass.h>
//
/// \class TSystem
/// Provides information on OS relevant information.
/// Note that this class is only a namespace for the contained static member functions,
/// and hence it should not (and can not) be instantiated or inherited.
//
class _OWLCLASS TSystem // final
{
public:
/// \name Accessors for OS info
/// @{
static uint GetPlatformId();
static uint GetProductInfo();
static uint GetVersion();
static uint GetVersionFlags();
static uint GetMajorVersion();
static uint GetMinorVersion();
static uint GetBuildNumber();
static LPCTSTR GetVersionStr();
static uint GetSuiteMask();
static uint GetProductType();
static uint GetServicePackMajor();
static uint GetServicePackMinor();
/// @}
/// \name Member functions for checking the specific OS edition
/// @{
static bool IsXP();
static bool IsXP64();
static bool IsWin2003();
static bool IsHomeSrv();
static bool IsWin2003R2();
static bool IsVista();
static bool IsWin2008();
static bool IsWin2008R2();
static bool IsWin7();
static bool IsWin2012();
static bool IsWin8();
static bool IsWin64Bit();
/// @}
//
/// Encapsulates information about a processor core.
/// See TSystem::GetProcessorInfo.
//
class _OWLCLASS TProcessorInfo // final
{
public:
TProcessorInfo();
~TProcessorInfo();
/// \name CPU attributes
/// @{
tstring GetName() const;
tstring GetVendorId() const;
static tstring GetVendorName(const tstring& vendorId);
uint GetModel() const;
uint GetExtModel() const;
uint GetFamily() const;
uint GetExtFamily() const;
uint GetType() const;
uint GetStepping() const;
int GetNominalFrequency() const;
int GetCurrentFrequency(int measurementPeriod = 200) const;
/// @}
/// \name x86 CPU feature predicates
/// @{
bool HasMmx() const;
bool HasMmxExt() const;
bool Has3dNow() const;
bool Has3dNowExt() const;
bool HasSse() const;
bool HasSse2() const;
bool HasSse3() const;
bool HasHtt() const;
/// @}
private:
struct TImpl;
TImpl* Pimpl;
// Copy prevention
TProcessorInfo(const TProcessorInfo&); // = delete
const TProcessorInfo& operator =(const TProcessorInfo&); // = delete
};
/// \name Accessors for processor info
/// @{
static int GetNumberOfProcessors();
static uint GetProcessorArchitecture();
static tstring GetProcessorArchitectureName(uint architecture);
static const TProcessorInfo& GetProcessorInfo();
/// @}
private:
// Instantiation and inheritance prevention
TSystem(); // = delete
TSystem(const TSystem&); // = delete
TSystem& operator =(const TSystem&); // = delete
};
#include <owl/posclass.h>
} // OWL namespace
#endif // OWL_SYSTEM_H
| [
"Pierre.Best@taxsystems.com"
] | Pierre.Best@taxsystems.com |
57ecd661d37b24d33134b3067c2c9683e1c6fead | a15950e54e6775e6f7f7004bb90a5585405eade7 | /chrome/browser/chromeos/assistant/platform_audio_input_host.h | f3ba1fd2b2f234cfd2fcbea913bd6ea8f840cce3 | [
"BSD-3-Clause"
] | permissive | whycoding126/chromium | 19f6b44d0ec3e4f1b5ef61cc083cae587de3df73 | 9191e417b00328d59a7060fa6bbef061a3fe4ce4 | refs/heads/master | 2023-02-26T22:57:28.582142 | 2018-04-09T11:12:57 | 2018-04-09T11:12:57 | 128,760,157 | 1 | 0 | null | 2018-04-09T11:17:03 | 2018-04-09T11:17:03 | null | UTF-8 | C++ | false | false | 1,786 | h | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_ASSISTANT_PLATFORM_AUDIO_INPUT_HOST_H_
#define CHROME_BROWSER_CHROMEOS_ASSISTANT_PLATFORM_AUDIO_INPUT_HOST_H_
#include <memory>
#include <vector>
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string_piece_forward.h"
#include "base/time/time.h"
#include "chromeos/services/assistant/public/mojom/assistant.mojom.h"
#include "mojo/public/cpp/bindings/interface_ptr_set.h"
namespace media {
class AudioInputController;
} // namespace media
namespace chromeos {
namespace assistant {
// Interacts with AudioController and forwards audio input stream to assistant.
class PlatformAudioInputHost : public mojom::AudioInput {
public:
PlatformAudioInputHost();
~PlatformAudioInputHost() override;
// mojom::AudioInput overrides:
void AddObserver(mojom::AudioInputObserverPtr observer) override;
void NotifyDataAvailable(const std::vector<int32_t>& data,
int32_t frames,
base::TimeTicks capture_time);
void NotifyAudioClosed();
private:
class Writer;
class EventHandler;
std::unique_ptr<Writer> sync_writer_;
std::unique_ptr<EventHandler> event_handler_;
scoped_refptr<media::AudioInputController> audio_input_controller_;
mojo::InterfacePtrSet<mojom::AudioInputObserver> observers_;
bool recording_ = false;
base::WeakPtrFactory<PlatformAudioInputHost> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(PlatformAudioInputHost);
};
} // namespace assistant
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_ASSISTANT_PLATFORM_AUDIO_INPUT_HOST_H_
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
64ceb84bfde0c56e82627a9bac15d50b077eed63 | da32684647cac4dcdbb60db49496eb8d10a8ea6d | /Deadbeef/Classes/Box2D/Dynamics/b2Fixture.cpp | bb4ea5470d16a4bdaf17bc5606c94777b0d6c807 | [] | no_license | jweinberg/deadbeef | a1f10bc37de3aee5ac6b5953d740be9990083246 | 8126802454ff5815a7a55feae82e80d026a89726 | refs/heads/master | 2016-09-06T06:13:46.704284 | 2010-06-18T21:51:07 | 2010-06-18T21:51:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,173 | cpp | /*
* Copyright (c) 2006-2009 Erin Catto http://www.gphysics.com
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*/
#include "b2Fixture.h"
#include "Contacts/b2Contact.h"
#include "../Collision/Shapes/b2CircleShape.h"
#include "../Collision/Shapes/b2PolygonShape.h"
#include "../Collision/b2BroadPhase.h"
#include "../Collision/b2Collision.h"
#include "../Common/b2BlockAllocator.h"
b2Fixture::b2Fixture()
{
m_userData = NULL;
m_body = NULL;
m_next = NULL;
m_proxyId = b2BroadPhase::e_nullProxy;
m_shape = NULL;
m_density = 0.0f;
m_physicsSprite = NULL;
}
b2Fixture::~b2Fixture()
{
b2Assert(m_shape == NULL);
b2Assert(m_proxyId == b2BroadPhase::e_nullProxy);
}
void b2Fixture::Create(b2BlockAllocator* allocator, b2Body* body, const b2FixtureDef* def)
{
m_userData = def->userData;
m_friction = def->friction;
m_restitution = def->restitution;
m_body = body;
m_next = NULL;
m_filter = def->filter;
m_isSensor = def->isSensor;
m_isMagnetic = def->isMagnetic;
m_shape = def->shape->Clone(allocator);
m_density = def->density;
}
void b2Fixture::Destroy(b2BlockAllocator* allocator)
{
// The proxy must be destroyed before calling this.
b2Assert(m_proxyId == b2BroadPhase::e_nullProxy);
// Free the child shape.
switch (m_shape->m_type)
{
case b2Shape::e_circle:
{
b2CircleShape* s = (b2CircleShape*)m_shape;
s->~b2CircleShape();
allocator->Free(s, sizeof(b2CircleShape));
}
break;
case b2Shape::e_polygon:
{
b2PolygonShape* s = (b2PolygonShape*)m_shape;
s->~b2PolygonShape();
allocator->Free(s, sizeof(b2PolygonShape));
}
break;
default:
b2Assert(false);
break;
}
m_shape = NULL;
}
void b2Fixture::CreateProxy(b2BroadPhase* broadPhase, const b2Transform& xf)
{
b2Assert(m_proxyId == b2BroadPhase::e_nullProxy);
// Create proxy in the broad-phase.
m_shape->ComputeAABB(&m_aabb, xf);
m_proxyId = broadPhase->CreateProxy(m_aabb, this);
}
void b2Fixture::DestroyProxy(b2BroadPhase* broadPhase)
{
if (m_proxyId == b2BroadPhase::e_nullProxy)
{
return;
}
// Destroy proxy in the broad-phase.
broadPhase->DestroyProxy(m_proxyId);
m_proxyId = b2BroadPhase::e_nullProxy;
}
void b2Fixture::Synchronize(b2BroadPhase* broadPhase, const b2Transform& transform1, const b2Transform& transform2)
{
if (m_proxyId == b2BroadPhase::e_nullProxy)
{
return;
}
// Compute an AABB that covers the swept shape (may miss some rotation effect).
b2AABB aabb1, aabb2;
m_shape->ComputeAABB(&aabb1, transform1);
m_shape->ComputeAABB(&aabb2, transform2);
m_aabb.Combine(aabb1, aabb2);
b2Vec2 displacement = transform2.position - transform1.position;
broadPhase->MoveProxy(m_proxyId, m_aabb, displacement);
}
void b2Fixture::SetFilterData(const b2Filter& filter)
{
m_filter = filter;
if (m_body == NULL)
{
return;
}
// Flag associated contacts for filtering.
b2ContactEdge* edge = m_body->GetContactList();
while (edge)
{
b2Contact* contact = edge->contact;
b2Fixture* fixtureA = contact->GetFixtureA();
b2Fixture* fixtureB = contact->GetFixtureB();
if (fixtureA == this || fixtureB == this)
{
contact->FlagForFiltering();
}
edge = edge->next;
}
}
void b2Fixture::SetSensor(bool sensor)
{
m_isSensor = sensor;
}
| [
"bhelgeland@9c1d8119-421d-44e4-8328-69b580a11e1d"
] | bhelgeland@9c1d8119-421d-44e4-8328-69b580a11e1d |
6c88d5edcfe7faae984a121c47ff6d21d7880c6b | fd866875ab84bd22fe9a650b1b85c2b1794194fe | /SEAL/chooser.h | 80217ee91d6e3292ede9e5f032236897ab4e7fa2 | [] | no_license | pdroalves/sealcrypto | 6fabfb0abf2f32100e2e954440e458c0edcb0a83 | 8ddbb88d2718f453a32b0ffc1135d53ba5bc44db | refs/heads/master | 2021-01-10T05:29:59.838722 | 2016-02-23T15:28:53 | 2016-02-23T15:31:57 | 52,365,219 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 56,545 | h | #ifndef SEAL_CHOOSER_H
#define SEAL_CHOOSER_H
#include <map>
#include "encryptionparams.h"
#include "simulator.h"
#include "encoder.h"
#include "util/computation.h"
#include "util/mempool.h"
namespace seal
{
/**
Models ciphertexts for the automatic parameter selection module. Choosing appropriate and secure
parameters for homomorphic cryptosystems is difficult, and beyond what a non-expert user should have
to worry about. The user programs their computations as they normally would, but replace plaintexts with
ChooserPoly objects. When the program is executed, ChooserPoly objects store the computation as a directed
acyclic graph, and can later be used to estimate the inherent noise growth in the stored computation.
The estimated inherent noise in the output ciphertext is given by the simulate() function. This class is
a part of the automatic parameter selection module.
Each instance of ChooserPoly stores an estimate of the number of non-zero coefficients, and an estimate
for their largest absolute value (represented by BigUInt) that a plaintext polynomial can be expected to
contain after some number of homomorphic operations have been performed on it. In addition, each ChooserPoly
stores a directed acyclic graph of computations that it has gone through (operation history).
Instances of ChooserPoly can be manipulated using an instance of ChooserEvaluator, which has a public API
similar to Evaluator, making existing code easy to run on ChooserPoly objects instead of running it on
actual encrypted data. In other words, using ChooserEvaluator, ChooserPoly objects can be added, multiplied,
subtracted, negated, etc., and the result is always a new ChooserPoly object whose estimated inherent noise
can be obtained using the simulate() function, which uses average-case analysis of the noise behavior in the
encryption scheme.
@par Inherent Noise
Technically speaking, the inherent noise of a ciphertext is a polynomial, but the condition for decryption working
depends on the size of the largest absolute value of its coefficients. It is really the size of this
largest absolute value that Simulation is simulating, and that we will call the "noise", the "inherent noise",
or the "error", in this documentation. The reader is referred to the description of the encryption scheme for more details.
@par Thread Safety
In general, reading a ChooserPoly is thread-safe while mutating is not. Specifically, concurrent access must
be avoided if the size bounds of the modeled plaintext data, or the operation history are expected to be changed.
@see ChooserEvaluator for manipulating instances of ChooserPoly.
@see ChooserEncoder for modeling the behavior of encoding with ChooserPoly objects.
@see ChooserEncryptor for modeling the behavior of encryption with ChooserPoly objects.
@see Simulation for the class that handles the inherent noise growth estimates.
*/
class ChooserPoly
{
public:
/**
Creates a ChooserPoly object. The ChooserPoly instance models a plaintext with no non-zero coefficients.
More precisely, the number of non-zero coefficients, and the upper bound on the absolute values of the
coefficients of the modeled plaintext polynomial are both set to zero. The operation history is set to null,
which indicates that the ChooserPoly object does not represent a ciphertext but only a plaintext.
*/
ChooserPoly();
/**
Creates a ChooserPoly object. The ChooserPoly instance models plaintext data with a given bound on
the number of non-zero coefficients, and a given bound on the size of the absolute value of the
coefficients (represented by BigUInt). This constructor sets the operation history to that of
a freshly encrypted ciphertext.
@param[in] max_coeff_count An upper bound on the number of non-zero coefficients in the modeled plaintext data
@param[in] max_abs_value An upper bound on the absolute value of the coefficients in the modeled plaintext data
@throws std::invalid_argument if max_coeff_count is less than or equal to zero
*/
ChooserPoly(int max_coeff_count, const BigUInt &max_abs_value);
/**
Creates a ChooserPoly object. The ChooserPoly instance models plaintext data with a given bound on
the number of non-zero coefficients, and a given bound on the size of the absolute value of the
coefficients (represented by std::uint64_t). This constructor sets the operation history to that of
a freshly encrypted ciphertext.
@param[in] max_coeff_count An upper bound on the number of non-zero coefficients in the modeled plaintext data
@param[in] max_abs_value An upper bound on the absolute value of the coefficients in the modeled plaintext data
@throws std::invalid_argument if max_coeff_count is less than or equal to zero
*/
ChooserPoly(int max_coeff_count, uint64_t max_abs_value);
/**
Destroys the ChooserPoly, and deallocates all memory associated with it.
*/
~ChooserPoly();
/**
Creates a deep copy of a ChooserPoly. The created ChooserPoly will model plaintext data with same
size bounds as the original one, and contains a clone of the original operation history.
@param[in] copy The ChooserPoly to copy from
*/
ChooserPoly(const ChooserPoly ©);
/**
Overwrites the ChooserPoly with the value of the specified ChooserPoly. This includes creating
a deep copy of the operation history or the original one.
@param[in] assign The ChooserPoly whose value should be assigned to the current ChooserPoly
*/
ChooserPoly &operator =(const ChooserPoly &assign);
/**
Returns the upper bound on the number of non-zero coefficients in the plaintext modeled by the current instance
of ChooserPoly.
*/
int max_coeff_count() const
{
return max_coeff_count_;
}
/**
Returns a reference to the upper bound on the absolute value of coefficients (represented by BigUInt)
of the plaintext modeled by the current instance of ChooserPoly.
*/
const BigUInt &max_abs_value() const
{
return max_abs_value_;
}
/**
Returns a reference to the upper bound on the number of non-zero coefficients in the plaintext modeled
by the current instance of ChooserPoly.
@warning This function is not thread-safe.
*/
int &max_coeff_count()
{
return max_coeff_count_;
}
/**
Returns a reference to the upper bound on the absolute value of coefficients (represented by BigUInt)
of the plaintext modeled by the current instance of ChooserPoly.
@warning This function is not thread-safe.
*/
BigUInt &max_abs_value()
{
return max_abs_value_;
}
/**
Determines whether given encryption parameters are large enough to support operations in
the operation history of the current ChooserPoly. A ChooserPoly produced as a result of some
number of arithmetic operations (with ChooserEvaluator) contains information about
bounds on the number of non-zero coefficients in a corresponding plaintext polynomial and on the
absolute values of the coefficients. For decryption to work correctly, these bounds must be
small enough to be supported by the encryption parameters. Additionally, the encryption parameters
must be large enough to support inherent noise growth in the performed operations.
The return value is true or false depending on whether given encryption parameters are large enough
to support the operations in the operation history of the current ChooserPoly.
@param[in] parms The encryption parameters
@throws std::logic_error if the current operation history is null, i.e. the current ChooserPoly models a plaintext polynomial
@throws std::invalid_argument if encryption parameters are not valid
@see EncryptionParameters for more details on valid encryption parameters.
@see Simulation for more details on the inherent noise growth simulation.
*/
bool test_parameters(const EncryptionParameters &parms) const
{
return (parms.plain_modulus().significant_bit_count() >= max_abs_value_.significant_bit_count() &&
parms.poly_modulus().significant_coeff_count() > max_coeff_count_ && simulate(parms).decrypts());
}
/**
Simulates inherent noise growth in the operation history of the current instance of ChooserPoly.
The return value is a Simulation object.
@param[in] parms The encryption parameters
@throws std::logic_error if operation history is null, i.e. the current ChooserPoly models a plaintext polynomial
@throws std::invalid_argument if encryption parameters are not valid
@see EncryptionParameters for more details on valid encryption parameters.
@see Simulation for more details on the inherent noise growth simulation.
*/
Simulation simulate(const EncryptionParameters &parms) const;
/**
Sets the bounds on the degree and the absolute value of the coefficients of the modeled plaintext
polynomial to zero, and sets the operation history to null.
@warning This function is not thread-safe.
@warning A null operation history is not the same as that of a freshly encrypted ciphertext.
@see set_fresh() for setting the operation history to that of a freshly encrypted ciphertext.
*/
void reset();
/**
Sets the operation history to that of a freshly encrypted ciphertext. This function leaves the bounds on
the degree and the absolute value of the coefficients of the modeled plaintext polynomial unchanged.
@warning This function is not thread-safe.
@see max_coeff_count() to set the bound on the degree of the modeled plaintext polynomial.
@see max_abs_value() to set the bound on the absolute value of coefficients of the modeled plaintext polynomial.
*/
void set_fresh();
/**
Returns the estimated value of inherent noise (represented by BigUInt) in a ciphertext which is a result of
the operations in the operation history of the current ChooserPoly.
@param[in] parms The encryption parameters
@throws std::logic_error if operation history is null, i.e. the current ChooserPoly models a plaintext polynomial
@throws std::invalid_argument if encryption parameters are not valid
@see EncryptionParameters for more details on valid encryption parameters.
@see simulate() to return the full Simulation object instead.
*/
BigUInt noise(const EncryptionParameters &parms) const
{
return simulate(parms).noise();
}
/**
Returns the maximal value of inherent noise (represented by BigUInt) supported by the given encryption parameters.
The encryption parameters are not large enough if the value returned by noise() is larger than the value
returned by max_noise().
@param[in] parms The encryption parameters
@throws std::logic_error if operation history is null, i.e. the current ChooserPoly models a plaintext polynomial
@throws std::invalid_argument if encryption parameters are not valid
@see EncryptionParameters for more details on valid encryption parameters.
*/
BigUInt max_noise(const EncryptionParameters &parms) const
{
return Simulation(parms).max_noise();
}
/**
Returns the bit length of the estimated value of inherent noise (represented by BigUInt) in a ciphertext on
which the operations in the operation history of the current ChooserPoly have been performed.
@param[in] parms The encryption parameters
@throws std::logic_error if operation history is null, i.e. the current ChooserPoly models a plaintext polynomial
@throws std::invalid_argument if encryption parameters are not valid
@see EncryptionParameters for more details on valid encryption parameters.
@see noise() to return the estimated value of inherent noise as a BigUInt instead.
@see simulate() to return the full Simulation object instead.
*/
int noise_bits(const EncryptionParameters &parms) const
{
return simulate(parms).noise_bits();
}
/**
Returns the difference between the bit lengths of the return values of max_noise() and of noise(). This gives
the user a convenient tool for estimating how many, if any, arithmetic operations can still be performed on the
encrypted data before it becomes too noisy to be decrypted. If the return value is negative, the encryption
parameters used are not large enough to support the performed arithmetic operations.
@param[in] parms The encryption parameters
@throws std::logic_error if operation history is null, i.e. the current ChooserPoly models a plaintext polynomial
@throws std::invalid_argument if encryption parameters are not valid
@see EncryptionParameters for more details on valid encryption parameters.
@see noise() to return the estimated value of inherent noise as a BigUInt instead.
@see simulate() to return the full Simulation object instead.
*/
int noise_bits_left(const EncryptionParameters &parms) const
{
return simulate(parms).noise_bits_left();
}
/**
Returns true or false depending on whether the encryption parameters were large enough to support inherent
noise growth in the performed arithmetic operations.
@param[in] parms The encryption parameters
@throws std::logic_error if operation history is null, i.e. the current ChooserPoly models a plaintext polynomial
@throws std::invalid_argument if encryption parameters are not valid
@see EncryptionParameters for more details on valid encryption parameters.
@see simulate() to return the full Simulation object instead.
*/
bool decrypts(const EncryptionParameters &parms) const
{
return simulate(parms).decrypts();
}
private:
int max_coeff_count_;
BigUInt max_abs_value_;
seal::util::Computation *comp_;
ChooserPoly(int max_coeff_count, const BigUInt &max_abs_value, seal::util::Computation *comp);
ChooserPoly(int max_coeff_count, uint64_t max_abs_value, seal::util::Computation *comp);
const seal::util::Computation *comp() const
{
return comp_;
}
friend class ChooserEvaluator;
friend class ChooserEncryptor;
};
/**
Models arithmetic operations on ChooserPoly objects rather than performing them on real data.
The class ChooserEvaluator has a public API similar to that of Evaluator,
making it easy for the user to run existing code on ChooserPoly objects rather than on actual data.
All of these operations take as input a varying number of ChooserPoly objects and return a new one
with an appropriately extended operation history. This class is a part of the automatic parameter
selection module.
@par Inherent Noise
Technically speaking, the inherent noise of a ciphertext is a polynomial, but the condition for decryption working
depends on the size of the largest absolute value of its coefficients. It is really the size of this
largest absolute value that Simulation is simulating, and that we will call the "noise", the "inherent noise",
or the "error", in this documentation. The reader is referred to the description of the encryption scheme for more details.
@par Thread Safety
The ChooserEvaluator class is not thread-safe and a separate ChooserEvaluator instance is needed for each
potentially concurrent usage.
@see ChooserPoly for the object modeling encrypted/plaintext data for automatic parameter selection.
@see ChooserEncoder for modeling the behavior of encoding with ChooserPoly objects.
@see ChooserEncryptor for modeling the behavior of encryption with ChooserPoly objects.
@see Simulation for the class that handles the inherent noise growth estimates.
*/
class ChooserEvaluator
{
public:
/**
Creates a ChooserEvaluator.
*/
ChooserEvaluator()
{
}
/**
Performs an operation modeling Evaluator::multiply_many() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operands The vector of ChooserPoly objects to multiply
@throws std::invalid_argument if operands vector is empty
@throws std::invalid_argument if any of the ChooserPoly objects in operands vector is not correctly initialized
@see Evaluator::multiply_many() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::multiply_many() for the corresponding operation on Simulation objects.
*/
ChooserPoly multiply_many(const std::vector<ChooserPoly> &operands);
/**
Performs an operation modeling Evaluator::add() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand1 The first ChooserPoly object to add
@param[in] operand2 The second ChooserPoly object to add
@throws std::invalid_argument if either operand1 or operand2 is not correctly initialized
@see Evaluator::add() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::add() for the corresponding operation on Simulation objects.
*/
ChooserPoly add(const ChooserPoly &operand1, const ChooserPoly &operand2);
/**
Performs an operation modeling Evaluator::add_many() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operands The ChooserPoly object to add
@throws std::invalid_argument if any of the elements of operands is not correctly initialized
@see Evaluator::add_many() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::add_many() for the corresponding operation on Simulation objects.
*/
ChooserPoly add_many(const std::vector<ChooserPoly> &operands);
/**
Performs an operation modeling Evaluator::sub() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand1 The ChooserPoly object to subtract from
@param[in] operand2 The ChooserPoly object to subtract
@throws std::invalid_argument if either operand1 or operand2 is not correctly initialized
@see Evaluator::sub() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::sub() for the corresponding operation on Simulation objects.
*/
ChooserPoly sub(const ChooserPoly &operand1, const ChooserPoly &operand2);
/**
Performs an operation modeling Evaluator::multiply() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand1 The first ChooserPoly object to multiply
@param[in] operand2 The second ChooserPoly object to multiply
@throws std::invalid_argument if either operand1 or operand2 is not correctly initialized
@see Evaluator::multiply() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::multiply() for the corresponding operation on Simulation objects.
*/
ChooserPoly multiply(const ChooserPoly &operand1, const ChooserPoly &operand2);
/**
Performs an operation modeling Evaluator::multiply_norelin() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@par THIS FUNCTION IS BROKEN
This function is broken and does not work correctly, except when used together with relinearize().
See Simulator::multiply_norelin() for more details.
@param[in] operand1 The first ChooserPoly object to multiply
@param[in] operand2 The second ChooserPoly object to multiply
@throws std::invalid_argument if either operand1 or operand2 is not correctly initialized
@see Evaluator::multiply_norelin() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::multiply_norelin() for the corresponding operation on Simulation objects.
*/
//ChooserPoly multiply_norelin(const ChooserPoly &operand1, const ChooserPoly &operand2);
/**
Performs an operation modeling Evaluator::relinearize() on ChooserPoly objects. This operation
creates a new ChooserPoly with the same bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients as the input, but sets the operation history
to include the relinearization operation.
@par THIS FUNCTION IS BROKEN
This function is broken and does not work correctly, except when used together with multiply_norelin().
See Simulator::relinearize() for more details.
@param[in] operand The ChooserPoly object to relinearize
@throws std::invalid_argument if operand is not correctly initialized
@see Evaluator::relinearize() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::relinearize() for the corresponding operation on Simulation objects.
*/
//ChooserPoly relinearize(const ChooserPoly &operand);
/**
Performs an operation modeling Evaluator::multiply_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to multiply
@param[in] plain_max_coeff_count Bound on the number of non-zero coefficients in the plaintext polynomial to multiply
@param[in] plain_max_abs_value Bound on the absolute value of coefficients of the plaintext polynomial to multiply
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_max_coeff_count is not positive
@see Evaluator::multiply_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::multiply_plain() for the corresponding operation on Simulation objects.
*/
ChooserPoly multiply_plain(const ChooserPoly &operand, int plain_max_coeff_count, const BigUInt &plain_max_abs_value);
/**
Performs an operation modeling Evaluator::multiply_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to multiply
@param[in] plain_max_coeff_count Bound on the number of non-zero coefficients in the plaintext polynomial to multiply
@param[in] plain_max_abs_value Bound on the absolute value of coefficients of the plaintext polynomial to multiply
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_max_coeff_count is not positive
@see Evaluator::multiply_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::multiply_plain() for the corresponding operation on Simulation objects.
*/
ChooserPoly multiply_plain(const ChooserPoly &operand, int plain_max_coeff_count, uint64_t plain_max_abs_value);
/**
Performs an operation modeling Evaluator::multiply_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
This variant of the function takes the plaintext multiplier as input in the form of another ChooserPoly.
If the plaintext multiplier is already known at the time of performing the automatic parameter selection,
one can use ChooserEncoder to construct the appropriate ChooserPoly for plain_chooser_poly. This function
completely ignores the operation history possibly carried by plain_chooser_poly.
@param[in] operand The ChooserPoly object to multiply
@param[in] plain_chooser_poly The plaintext polynomial to multiply represented by a ChooserPoly
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_chooser_poly has a non-positive bound on the number of non-zero coefficients
@see Evaluator::multiply_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::multiply_plain() for the corresponding operation on Simulation objects.
@see ChooserEncoder for constructing a ChooserPoly representing the plaintext multiplier.
*/
ChooserPoly multiply_plain(const ChooserPoly &operand, const ChooserPoly &plain_chooser_poly)
{
return multiply_plain(operand, plain_chooser_poly.max_coeff_count_, plain_chooser_poly.max_abs_value_);
}
/**
Performs an operation modeling Evaluator::add_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to add
@param[in] plain_max_coeff_count Bound on the number of non-zero coefficients in the plaintext polynomial to add
@param[in] plain_max_abs_value Bound on the absolute value of coefficients of the plaintext polynomial to add
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_max_coeff_count is not positive
@see Evaluator::add_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::add_plain() for the corresponding operation on Simulation objects.
*/
ChooserPoly add_plain(const ChooserPoly &operand, int plain_max_coeff_count, const BigUInt &plain_max_abs_value) const;
/**
Performs an operation modeling Evaluator::add_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to add
@param[in] plain_max_coeff_count Bound on the number of non-zero coefficients in the plaintext polynomial to add
@param[in] plain_max_abs_value Bound on the absolute value of coefficients of the plaintext polynomial to add
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_max_coeff_count is not positive
@see Evaluator::add_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::add_plain() for the corresponding operation on Simulation objects.
*/
ChooserPoly add_plain(const ChooserPoly &operand, int plain_max_coeff_count, uint64_t plain_max_abs_value);
/**
Performs an operation modeling Evaluator::add_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
This variant of the function takes the plaintext to add as input in the form of another ChooserPoly.
If the plaintext to be added is already known at the time of performing the automatic parameter selection,
one can use ChooserEncoder to construct the appropriate ChooserPoly for plain_chooser_poly. This function
completely ignores the operation history possibly carried by plain_chooser_poly.
@param[in] operand The ChooserPoly object to add
@param[in] plain_chooser_poly The plaintext polynomial to add represented by a ChooserPoly
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_chooser_poly has a non-positive bound on the number of non-zero coefficients
@see Evaluator::add_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::add_plain() for the corresponding operation on Simulation objects.
@see ChooserEncoder for constructing the ChooserPoly for the plaintext to add.
*/
ChooserPoly add_plain(const ChooserPoly &operand, const ChooserPoly &plain_chooser_poly)
{
return add_plain(operand, plain_chooser_poly.max_coeff_count_, plain_chooser_poly.max_abs_value_);
}
/**
Performs an operation modeling Evaluator::sub_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to subtract from
@param[in] plain_max_coeff_count Bound on the number of non-zero coefficients in the plaintext polynomial to subtract
@param[in] plain_max_abs_value Bound on the absolute value of coefficients of the plaintext polynomial to subtract
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_max_coeff_count is not positive
@see Evaluator::sub_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::sub_plain() for the corresponding operation on Simulation objects.
*/
ChooserPoly sub_plain(const ChooserPoly &operand, int plain_max_coeff_count, const BigUInt &plain_max_abs_value);
/**
Performs an operation modeling Evaluator::sub_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to subtract from
@param[in] plain_max_coeff_count Bound on the number of non-zero coefficients in the plaintext polynomial to subtract
@param[in] plain_max_abs_value Bound on the absolute value of coefficients of the plaintext polynomial to subtract
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_max_coeff_count is not positive
@see Evaluator::sub_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::sub_plain() for the corresponding operation on Simulation objects.
*/
ChooserPoly sub_plain(const ChooserPoly &operand, int plain_max_coeff_count, uint64_t plain_max_abs_value);
/**
Performs an operation modeling Evaluator::sub_plain() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
This variant of the function takes the plaintext to subtract as input in the form of another ChooserPoly.
If the plaintext to be subtracted is already known at the time of performing the automatic parameter selection,
one can use ChooserEncoder to construct the appropriate ChooserPoly for plain_chooser_poly. This function
completely ignores the operation history possibly carried by plain_chooser_poly.
@param[in] operand The ChooserPoly object to subtract from
@param[in] plain_chooser_poly The plaintext polynomial to subtract represented by a ChooserPoly
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if plain_chooser_poly has a non-positive bound on the number of non-zero coefficients
@see Evaluator::sub_plain() for the corresponding operation on ciphertexts.
@see SimulationEvaluator:sub_plain() for the corresponding operation on Simulation objects.
@see ChooserEncoder for constructing the ChooserPoly for the plaintext to subtract.
*/
ChooserPoly sub_plain(const ChooserPoly &operand, const ChooserPoly &plain_chooser_poly)
{
return sub_plain(operand, plain_chooser_poly.max_coeff_count_, plain_chooser_poly.max_abs_value_);
}
/**
Performs an operation modeling Evaluator::exponentiate() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to raise to a power
@param[in] exponent The non-negative power to raise the ChooserPoly object to
@throws std::invalid_argument if operand is not correctly initialized
@throws std::invalid_argument if operand models a zero polynomial and exponent is zero
@see Evaluator::exponentiate() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::exponentiate() for the corresponding operation on Simulation objects.
*/
ChooserPoly exponentiate(const ChooserPoly &operand, std::uint64_t exponent);
/**
Performs an operation modeling Evaluator::negate() on ChooserPoly objects. This operation
creates a new ChooserPoly with updated bounds on the degree of the corresponding plaintext polynomial
and on the absolute values of the coefficients based on the inputs, and sets the operation history
accordingly.
@param[in] operand The ChooserPoly object to negate
@throws std::invalid_argument if operand is not correctly initialized
@see Evaluator::negate() for the corresponding operation on ciphertexts.
@see SimulationEvaluator::negate() for the corresponding operation on Simulation objects.
*/
ChooserPoly negate(const ChooserPoly &operand);
/**
Provides the user with optimized encryption parameters that are large enough to support the
operations performed on the given ChooserPoly. Some choices are made in the process that
an expert user might want to change: (1) We use a constant small standard deviation for the noise distribution;
(2) We choose the size of the polynomial modulus and the coefficient modulus from a hard-coded list of
choices we consider secure (see http://eprint.iacr.org/2014/062.pdf, Table 2).
The function returns true or false depending on whether a working parameter set was found or not.
@param[in] operand The ChooserPoly for which the parameters are optimized
@param[out] destination The encryption parameters to overwrite with the selected parameter set
@throws std::logic_error if operation history of the given ChooserPoly is null
@see EncryptionParameters for a description of the encryption parameters.
@see default_noise_standard_deviation() for the default noise standard deviation.
@see default_noise_max_deviation() for the default maximal noise deviation.
@see default_parameter_options() for the default set of parameter options.
*/
bool select_parameters(const ChooserPoly &operand, EncryptionParameters &destination);
/**
Provides the user with optimized encryption parameters that are large enough to support the
operations performed on all of the given ChooserPolys. Some choices are made in the process that
an expert user might want to change: (1) We use a constant small standard deviation for the noise distribution;
(2) We choose the size of the polynomial modulus and the coefficient modulus from a hard-coded list of
choices we consider secure (see http://eprint.iacr.org/2014/062.pdf, Table 2).
The function returns true or false depending on whether a working parameter set was found or not.
@param[in] operands The ChooserPolys for which the parameters are optimized
@param[out] destination The encryption parameters to overwrite with the selected parameter set
@throws std::logic_error if operation history of any of the given ChooserPolys is null
@throws std::invalid_argument if operands is empty
@see EncryptionParameters for a description of the encryption parameters.
@see default_noise_standard_deviation() for the default noise standard deviation.
@see default_noise_max_deviation() for the default maximal noise deviation.
@see default_parameter_options() for the default set of parameter options.
*/
bool select_parameters(const std::vector<ChooserPoly> &operands, EncryptionParameters &destination);
/**
Provides the user with optimized encryption parameters that are large enough to support the
operations performed on the given ChooserPoly. The standard deviation of the noise distribution,
the maximal deviation, and the list from which we choose the size of the polynomial modulus
and the coefficient modulus are provided by the user as input parameters.
The parameter options are given as an std::map<int, BigUInt>, where the sizes of the polynomial moduli
are the keys, and the corresponding values are the coefficient moduli (represented by BigUInt).
The sizes of the polynomial moduli must be at least 512 and powers of 2.
The function returns true or false depending on whether a working parameter set was found or not.
@param[in] operand The ChooserPoly for which the parameters are optimized
@param[in] noise_standard_deviation The noise standard deviation
@param[in] parameter_options The parameter options to be used
@param[out] destination The encryption parameters to overwrite with the selected parameter set
@throws std::logic_error if operation history is null
@throws std::invalid_argument if noise_standard_deviation is negative
@throws std::invalid_argument if noise_max_deviation is negative
@throws std::invalid_argument if parameter_options is empty
@throws std::invalid_argument if parameter_options has keys that are less than 512 or not powers of 2
@see EncryptionParameters for a description of the encryption parameters.
@see default_noise_standard_deviation() for the default noise standard deviation.
@see default_noise_max_deviation() for the default maximal noise deviation.
@see default_parameter_options() for the default set of parameter options.
*/
bool select_parameters(const ChooserPoly &operand, double noise_standard_deviation, double noise_max_deviation, const std::map<int, BigUInt> ¶meter_options, EncryptionParameters &destination);
/**
Provides the user with optimized encryption parameters that are large enough to support the
operations performed on all of the given ChooserPolys. The standard deviation of the noise distribution,
the maximal deviation, and the list from which we choose the size of the polynomial modulus and the coefficient modulus
are provided by the user as input parameters.
The parameter options are given as an std::map<int, BigUInt>, where the sizes of the polynomial moduli
are the keys, and the corresponding values are the coefficient moduli (represented by BigUInt).
The sizes of the polynomial moduli must be at least 512 and powers of 2.
The function returns true or false depending on whether a working parameter set was found or not.
@param[in] operands The ChooserPolys for which the parameters are optimized
@param[in] noise_standard_deviation The noise standard deviation
@param[in] parameter_options The parameter options to be used
@param[out] destination The encryption parameters to overwrite with the selected parameter set
@throws std::logic_error if operation history is null
@throws std::invalid_argument if operands is empty
@throws std::invalid_argument if noise_standard_deviation is negative
@throws std::invalid_argument if noise_max_deviation is negative
@throws std::invalid_argument if parameter_options is empty
@throws std::invalid_argument if parameter_options has keys that are less than 512 or not powers of 2
@see EncryptionParameters for a description of the encryption parameters.
@see default_noise_standard_deviation() for the default noise standard deviation.
@see default_noise_max_deviation() for the default maximal noise deviation.
@see default_parameter_options() for the default set of parameter options.
*/
bool select_parameters(const std::vector<ChooserPoly> &operands, double noise_standard_deviation, double noise_max_deviation, const std::map<int, BigUInt> ¶meter_options, EncryptionParameters &destination);
/**
Returns the default set of (degree(polynomial modulus),coeff_modulus)-pairs.
The functions returns an std::map<int,BigUInt>, where the degree of the polynomial modulus acts as the key,
and the corresponding modulus is the value.
An expert user might want to give a modified map as an argument to select_parameters() for better results.
*/
static const std::map<int, BigUInt> &default_parameter_options()
{
return default_parameter_options_;
}
/**
Returns the default value for the standard deviation of the noise (error) distribution.
An expert user might want to give a modified value as an argument to select_parameters().
*/
static double default_noise_standard_deviation()
{
return default_noise_standard_deviation_;
}
/**
Returns the default value for the maximal deviation of the noise (error) distribution.
An expert user might want to give a modified value as an argument to select_parameters().
*/
static double default_noise_max_deviation()
{
return default_noise_max_deviation_;
}
private:
ChooserEvaluator(const ChooserEvaluator ©) = delete;
ChooserEvaluator &operator =(const ChooserEvaluator ©) = delete;
seal::util::MemoryPool pool_;
static const std::map<int, BigUInt> default_parameter_options_;
static const double default_noise_standard_deviation_;
static const double default_noise_max_deviation_;
};
/**
Constructs ChooserPoly objects representing encoded plaintexts. ChooserPoly objects constructed
in this way have null operation history. They can be further used by ChooserEncryptor,
or in the functions ChooserEvaluator::multiply_plain(), ChooserEvaluator::add_plain(),
ChooserEvaluator::sub_plain() representing plaintext operands. Only the balanced odd base encodings
(those provided by BalancedEncoder) are supported by ChooserEncoder. This class is a part of the
automatic parameter selection module.
@par Thread Safety
The ChooserEncoder class is not thread-safe and a separate ChooserEncoder instance is needed for each
potentially concurrent usage.
@see ChooserPoly for the object modeling encrypted/plaintext data for automatic parameter selection.
@see ChooserEvaluator for manipulating instances of ChooserPoly.
@see ChooserEncryptor for modeling the behavior of encryption with ChooserPoly objects.
@see BalancedEncoder for the corresponding encoder for real data.
@see Simulation for the class that handles the inherent noise growth estimates.
*/
class ChooserEncoder
{
public:
/**
Creates a ChooserEncoder that can be used to create ChooserPoly objects modeling plaintext
polynomials encoded with BalancedEncoder. The base will default to 3, but any odd integer at least 3
can be used.
@param[in] base The base (default value is 3)
@throws std::invalid_argument if base is not an odd integer and at least 3
*/
ChooserEncoder(uint64_t base = 3);
/**
Encodes a number (represented by std::uint64_t) into a ChooserPoly object. This is done by first
encoding it with BalancedEncoder and then simply reading the number of coefficients and the maximal
absolute value of the coefficients in the polynomial. In the returned ChooserPoly the computation
history is set to null.
@param[in] value The non-negative integer to encode
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
ChooserPoly encode(std::uint64_t value);
/**
Encodes a number (represented by std::uint64_t) into a ChooserPoly object given as an argument.
This is done by first encoding it with BalancedEncoder and then simply reading the number of
coefficients and the maximal absolute value of the coefficients in the polynomial. In the output
ChooserPoly the operation history is set to null.
@param[in] value The non-negative integer to encode
@param[out] destination Reference to a ChooserPoly where the output will be stored
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
void encode(std::uint64_t value, ChooserPoly &destination);
/**
Encodes a number (represented by std::int64_t) into a ChooserPoly object. This is done by first
encoding it with BalancedEncoder and then simply reading the number of coefficients and the maximal
absolute value of the coefficients in the polynomial. In the returned ChooserPoly the computation
history is set to null.
@param[in] value The integer to encode
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
ChooserPoly encode(std::int64_t value);
/**
Encodes a number (represented by std::int64_t) into a ChooserPoly object given as an argument.
This is done by first encoding it with BalancedEncoder and then simply reading the number of
coefficients and the maximal absolute value of the coefficients in the polynomial. In the output
ChooserPoly the operation history is set to null.
@param[in] value The integer to encode
@param[out] destination Reference to a ChooserPoly where the output will be stored
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
void encode(std::int64_t value, ChooserPoly &destination);
/**
Encodes a number (represented by BigUInt) into a ChooserPoly object. This is done by first
encoding it with BalancedEncoder and then simply reading the number of coefficients and the maximal
absolute value of the coefficients in the polynomial. In the returned ChooserPoly the computation
history is set to null.
@param[in] value The non-negative integer to encode
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
ChooserPoly encode(BigUInt value);
/**
Encodes a number (represented by BigUInt) into a ChooserPoly object given as an argument.
This is done by first encoding it with BalancedEncoder and then simply reading the number of
coefficients and the maximal absolute value of the coefficients in the polynomial. In the output
ChooserPoly the operation history is set to null.
@param[in] value The non-negative integer to encode
@param[out] destination Reference to a ChooserPoly where the output will be stored
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
void encode(BigUInt value, ChooserPoly &destination);
/**
Encodes a number (represented by std::int32_t) into a ChooserPoly object. This is done by first
encoding it with BalancedEncoder and then simply reading the number of coefficients and the maximal
absolute value of the coefficients in the polynomial. In the returned ChooserPoly the computation
history is set to null.
@param[in] value The integer to encode
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
ChooserPoly encode(std::int32_t value)
{
return encode(static_cast<std::int64_t>(value));
}
/**
Encodes a number (represented by std::uint32_t) into a ChooserPoly object. This is done by first
encoding it with BalancedEncoder and then simply reading the number of coefficients and the maximal
absolute value of the coefficients in the polynomial. In the returned ChooserPoly the computation
history is set to null.
@param[in] value The non-negative integer to encode
@see BalancedEncoder::encode() for the corresponding function returning a real polynomial.
*/
ChooserPoly encode(std::uint32_t value)
{
return encode(static_cast<std::uint64_t>(value));
}
/**
Returns the base used for encoding.
*/
uint64_t base() const
{
return encoder_.base();
}
private:
BalancedEncoder encoder_;
ChooserEncoder(const ChooserEncoder ©) = delete;
ChooserEncoder &operator =(const ChooserEncoder ©) = delete;
};
/**
Manipulates ChooserPoly objects created by ChooserEncoder by setting their operation history to that
of a freshly encrypted ciphertext. This converts them from carriers of only information about
the size of plaintext polynomials into carriers of also a model of inherent noise. After the
ChooserPoly objects have been "encrypted" using ChooserEncryptor::encrypt(), they can further be
manipulated using the many functions of ChooserEvaluator. This class is a part of the automatic
parameter selection module.
@see ChooserPoly for the object modeling encrypted/plaintext data for automatic parameter selection.
@see ChooserEvaluator for manipulating instances of ChooserPoly.
@see ChooserEncoder for modeling the behavior of encoding with ChooserPoly objects.
@see Encryptor for the corresponding operations on real plaintext polynomials.
@see Simulation for the class that handles the inherent noise growth estimates.
*/
class ChooserEncryptor
{
public:
/**
Creates a ChooserEncryptor object.
*/
ChooserEncryptor()
{
}
/**
Overwrites the referenced ChooserPoly destination with the referenced ChooserPoly plain,
and sets the operation history of destination to that of a freshly encrypted ciphertext.
@param[in] plain The ChooserPoly modeling a plaintext polynomial (e.g. constructed with ChooserEncoder)
@param[out] destination The ChooserPoly to overwrite with the "encrypted" ChooserPoly
@throws std::invalid_argument if plain has non-null operation history
@see Encryptor::encrypt() for the corresponding operation on real plaintext/ciphertext polynomials.
*/
void encrypt(const ChooserPoly &plain, ChooserPoly &destination) const;
/**
Makes a copy of a given ChooserPoly, but sets the operation history to that of a freshly encrypted ciphertext.
@param[in] plain The ChooserPoly modeling a plaintext polynomial (e.g. constructed with ChooserEncoder)
@throws std::invalid_argument if plain has non-null operation history
@see Encryptor::encrypt() for the corresponding operation on real plaintext/ciphertext polynomials.
*/
ChooserPoly encrypt(const ChooserPoly &plain) const;
/**
Overwrites the referenced ChooserPoly destination with the referenced ChooserPoly encrypted,
and sets the operation history of destination to null. This amounts to "decryption" in the sense that
destination only carries information about the size of a plaintext polynomial.
@param[in] encrypted The ChooserPoly modeling a ciphertext polynomial (e.g. constructed with ChooserEncoder)
@param[out] destination The ChooserPoly to overwrite with the "decrypted" ChooserPoly
@throws std::invalid_argument if encrypted has null operation history
@see Decryptor::decrypt() for the corresponding operation on real plaintext/ciphertext polynomials.
*/
void decrypt(const ChooserPoly &encrypted, ChooserPoly &destination) const;
/**
Returns a copy of a given ChooserPoly, but sets the operation history to null.
This amounts to "decryption" in the sense that the output only carries information
about the size of a plaintext polynomial.
@param[in] encrypted The ChooserPoly modeling a ciphertext polynomial (e.g. constructed with ChooserEncoder)
@throws std::invalid_argument if encrypted has null operation history
@see Encryptor::decrypt() for the corresponding operation on real plaintext/ciphertext polynomials.
*/
ChooserPoly decrypt(const ChooserPoly &encrypted) const;
private:
ChooserEncryptor(const ChooserEncryptor ©) = delete;
ChooserEncryptor &operator =(const ChooserEncryptor ©) = delete;
};
}
#endif // SEAL_CHOOSER_H
| [
"kim.laine@microsoft.com"
] | kim.laine@microsoft.com |
ef7565c1b5066d1fb4be310fff461f8fb691b887 | 91c5cae2ae0d612061d08940abbf19c0d7972860 | /src/OpenGL/libEGL/Surface.cpp | d195b463627cfcdad48e64239039a4423fba6fcd | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | madame-rachelle/swiftshader | 59d53626406e1c8f3d55624b1b0f2b8f5d189cee | 0e71ea71ed0b411a98039dfd888c4e8ffd45d5b7 | refs/heads/master | 2021-06-21T01:12:09.221165 | 2017-06-22T04:31:47 | 2017-06-22T04:41:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,821 | cpp | // Copyright 2016 The SwiftShader Authors. All Rights Reserved.
//
// 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.
// Surface.cpp: Implements the egl::Surface class, representing a drawing surface
// such as the client area of a window, including any back buffers.
// Implements EGLSurface and related functionality. [EGL 1.4] section 2.2 page 3.
#include "Surface.hpp"
#include "main.h"
#include "Display.h"
#include "Texture.hpp"
#include "common/Image.hpp"
#include "Context.hpp"
#include "common/debug.h"
#include "Main/FrameBuffer.hpp"
#if defined(__linux__) && !defined(__ANDROID__)
#include "Main/libX11.hpp"
#elif defined(_WIN32)
#include <tchar.h>
#elif defined(__APPLE__)
#include "OSXUtils.hpp"
#endif
#include <algorithm>
namespace gl
{
Surface::Surface()
{
}
Surface::~Surface()
{
}
}
namespace egl
{
Surface::Surface(const Display *display, const Config *config) : display(display), config(config)
{
backBuffer = nullptr;
depthStencil = nullptr;
texture = nullptr;
width = 0;
height = 0;
largestPBuffer = EGL_FALSE;
pixelAspectRatio = (EGLint)(1.0 * EGL_DISPLAY_SCALING); // FIXME: Determine actual pixel aspect ratio
renderBuffer = EGL_BACK_BUFFER;
swapBehavior = EGL_BUFFER_PRESERVED;
textureFormat = EGL_NO_TEXTURE;
textureTarget = EGL_NO_TEXTURE;
swapInterval = -1;
setSwapInterval(1);
}
Surface::~Surface()
{
Surface::deleteResources();
}
bool Surface::initialize()
{
ASSERT(!backBuffer && !depthStencil);
if(libGLES_CM)
{
backBuffer = libGLES_CM->createBackBuffer(width, height, config);
}
else if(libGLESv2)
{
backBuffer = libGLESv2->createBackBuffer(width, height, config);
}
if(!backBuffer)
{
ERR("Could not create back buffer");
deleteResources();
return error(EGL_BAD_ALLOC, false);
}
if(config->mDepthStencilFormat != sw::FORMAT_NULL)
{
if(libGLES_CM)
{
depthStencil = libGLES_CM->createDepthStencil(width, height, config->mDepthStencilFormat, config->mSamples, false);
}
else if(libGLESv2)
{
depthStencil = libGLESv2->createDepthStencil(width, height, config->mDepthStencilFormat, config->mSamples, false);
}
if(!depthStencil)
{
ERR("Could not create depth/stencil buffer for surface");
deleteResources();
return error(EGL_BAD_ALLOC, false);
}
}
return true;
}
void Surface::deleteResources()
{
if(depthStencil)
{
depthStencil->release();
depthStencil = nullptr;
}
if(texture)
{
texture->releaseTexImage();
texture = nullptr;
}
if(backBuffer)
{
backBuffer->release();
backBuffer = nullptr;
}
}
egl::Image *Surface::getRenderTarget()
{
if(backBuffer)
{
backBuffer->addRef();
}
return backBuffer;
}
egl::Image *Surface::getDepthStencil()
{
if(depthStencil)
{
depthStencil->addRef();
}
return depthStencil;
}
void Surface::setSwapBehavior(EGLenum swapBehavior)
{
this->swapBehavior = swapBehavior;
}
void Surface::setSwapInterval(EGLint interval)
{
if(swapInterval == interval)
{
return;
}
swapInterval = interval;
swapInterval = std::max(swapInterval, display->getMinSwapInterval());
swapInterval = std::min(swapInterval, display->getMaxSwapInterval());
}
EGLint Surface::getConfigID() const
{
return config->mConfigID;
}
EGLenum Surface::getSurfaceType() const
{
return config->mSurfaceType;
}
sw::Format Surface::getInternalFormat() const
{
return config->mRenderTargetFormat;
}
EGLint Surface::getWidth() const
{
return width;
}
EGLint Surface::getHeight() const
{
return height;
}
EGLint Surface::getPixelAspectRatio() const
{
return pixelAspectRatio;
}
EGLenum Surface::getRenderBuffer() const
{
return renderBuffer;
}
EGLenum Surface::getSwapBehavior() const
{
return swapBehavior;
}
EGLenum Surface::getTextureFormat() const
{
return textureFormat;
}
EGLenum Surface::getTextureTarget() const
{
return textureTarget;
}
EGLBoolean Surface::getLargestPBuffer() const
{
return largestPBuffer;
}
void Surface::setBoundTexture(egl::Texture *texture)
{
this->texture = texture;
}
egl::Texture *Surface::getBoundTexture() const
{
return texture;
}
WindowSurface::WindowSurface(Display *display, const Config *config, EGLNativeWindowType window)
: Surface(display, config), window(window)
{
frameBuffer = nullptr;
}
WindowSurface::~WindowSurface()
{
WindowSurface::deleteResources();
}
bool WindowSurface::initialize()
{
ASSERT(!frameBuffer && !backBuffer && !depthStencil);
return checkForResize();
}
void WindowSurface::swap()
{
if(backBuffer && frameBuffer)
{
void *source = backBuffer->lockInternal(0, 0, 0, sw::LOCK_READONLY, sw::PUBLIC);
frameBuffer->flip(source, backBuffer->sw::Surface::getInternalFormat(), backBuffer->getInternalPitchB());
backBuffer->unlockInternal();
checkForResize();
}
}
EGLNativeWindowType WindowSurface::getWindowHandle() const
{
return window;
}
bool WindowSurface::checkForResize()
{
#if defined(_WIN32)
RECT client;
if(!GetClientRect(window, &client))
{
ASSERT(false);
return false;
}
int windowWidth = client.right - client.left;
int windowHeight = client.bottom - client.top;
#elif defined(__ANDROID__)
int windowWidth; window->query(window, NATIVE_WINDOW_WIDTH, &windowWidth);
int windowHeight; window->query(window, NATIVE_WINDOW_HEIGHT, &windowHeight);
#elif defined(__linux__)
XWindowAttributes windowAttributes;
libX11->XGetWindowAttributes((::Display*)display->getNativeDisplay(), window, &windowAttributes);
int windowWidth = windowAttributes.width;
int windowHeight = windowAttributes.height;
#elif defined(__APPLE__)
int windowWidth;
int windowHeight;
sw::OSX::GetNativeWindowSize(window, windowWidth, windowHeight);
#else
#error "WindowSurface::checkForResize unimplemented for this platform"
#endif
if((windowWidth != width) || (windowHeight != height))
{
bool success = reset(windowWidth, windowHeight);
if(getCurrentDrawSurface() == this)
{
getCurrentContext()->makeCurrent(this);
}
return success;
}
return true; // Success
}
void WindowSurface::deleteResources()
{
delete frameBuffer;
frameBuffer = nullptr;
Surface::deleteResources();
}
bool WindowSurface::reset(int backBufferWidth, int backBufferHeight)
{
width = backBufferWidth;
height = backBufferHeight;
deleteResources();
if(window)
{
if(libGLES_CM)
{
frameBuffer = libGLES_CM->createFrameBuffer(display->getNativeDisplay(), window, width, height);
}
else if(libGLESv2)
{
frameBuffer = libGLESv2->createFrameBuffer(display->getNativeDisplay(), window, width, height);
}
if(!frameBuffer)
{
ERR("Could not create frame buffer");
deleteResources();
return error(EGL_BAD_ALLOC, false);
}
}
return Surface::initialize();
}
PBufferSurface::PBufferSurface(Display *display, const Config *config, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureType, EGLBoolean largestPBuffer)
: Surface(display, config)
{
this->width = width;
this->height = height;
this->largestPBuffer = largestPBuffer;
}
PBufferSurface::~PBufferSurface()
{
PBufferSurface::deleteResources();
}
void PBufferSurface::swap()
{
// No effect
}
EGLNativeWindowType PBufferSurface::getWindowHandle() const
{
UNREACHABLE(-1); // Should not be called. Only WindowSurface has a window handle.
return 0;
}
void PBufferSurface::deleteResources()
{
Surface::deleteResources();
}
}
| [
"capn@google.com"
] | capn@google.com |
27d8b429f5568cef5b1b781a4c7abca5b919681d | 903c3b08ae6ceed03fd70f03758d87add88242dd | /engine/core/render/gles/gles_texture_2d.cpp | d87ad304ebf00b49b4df921d7379932a5e49f53c | [
"MIT"
] | permissive | flyhex/echo | 69635dd853897b7bda67cb071f907f8bbd571b56 | 5c0c8278dfe616035c5b43fa8f1af0b6d251dfc8 | refs/heads/master | 2023-01-01T09:01:31.845483 | 2020-10-25T08:08:04 | 2020-10-25T08:08:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,364 | cpp | #include "engine/core/math/Rect.h"
#include "engine/core/log/Log.h"
#include "engine/core/io/IO.h"
#include "base/image/pixel_format.h"
#include "base/image/Image.h"
#include "base/image/texture_loader.h"
#include "gles_render_base.h"
#include "gles_renderer.h"
#include "gles_texture_2d.h"
#include "gles_mapping.h"
#include <iostream>
namespace Echo
{
GLESTexture2D::GLESTexture2D(const String& name)
: Texture(name)
, m_glesTexture(0)
{
}
GLESTexture2D::~GLESTexture2D()
{
unload();
}
bool GLESTexture2D::updateTexture2D(PixelFormat format, TexUsage usage, i32 width, i32 height, void* data, ui32 size)
{
create2DTexture();
m_isCompressed = false;
m_compressType = Texture::CompressType_Unknown;
m_width = width;
m_height = height;
m_depth = 1;
m_pixFmt = format;
m_numMipmaps = 1;
ui32 pixelsSize = PixelUtil::CalcSurfaceSize(m_width, m_height, m_depth, m_numMipmaps, m_pixFmt);
Buffer buff(pixelsSize, data, false);
set2DSurfaceData(0, m_pixFmt, m_usage, m_width, m_height, buff);
// generate mip maps
if (m_isMipMapEnable && !m_compressType)
{
OGLESDebug(glBindTexture(GL_TEXTURE_2D, m_glesTexture));
OGLESDebug(glGenerateMipmap(GL_TEXTURE_2D));
OGLESDebug(glBindTexture(GL_TEXTURE_2D, 0));
}
return true;
}
bool GLESTexture2D::updateSubTex2D(ui32 level, const Rect& rect, void* pData, ui32 size)
{
if(level >= m_numMipmaps || !pData)
return false;
OGLESDebug(glBindTexture(GL_TEXTURE_2D, m_glesTexture));
GLenum glFmt = GLES2Mapping::MapFormat(m_pixFmt);
GLenum glType = GLES2Mapping::MapDataType(m_pixFmt);
OGLESDebug(glTexSubImage2D(GL_TEXTURE_2D, level, (GLint)rect.left, (GLint)rect.top, (GLsizei)rect.getWidth(), (GLsizei)rect.getHeight(), glFmt, glType, pData));
OGLESDebug(glBindTexture(GL_TEXTURE_2D, 0));
return true;
}
void GLESTexture2D::create2DTexture()
{
if (!m_glesTexture)
{
OGLESDebug(glGenTextures(1, &m_glesTexture));
OGLESDebug(glBindTexture(GL_TEXTURE_2D, m_glesTexture));
OGLESDebug(glPixelStorei(GL_UNPACK_ALIGNMENT, 1));
OGLESDebug(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR));
OGLESDebug(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR));
OGLESDebug(glBindTexture(GL_TEXTURE_2D, 0));
}
}
void GLESTexture2D::set2DSurfaceData(int level, PixelFormat pixFmt, Dword usage, ui32 width, ui32 height, const Buffer& buff)
{
OGLESDebug(glBindTexture(GL_TEXTURE_2D, m_glesTexture));
OGLESDebug(glPixelStorei(GL_UNPACK_ALIGNMENT, 1));
GLenum internalFmt = GLES2Mapping::MapInternalFormat(pixFmt);
if (PixelUtil::IsCompressed(pixFmt))
{
OGLESDebug(glCompressedTexImage2D(GL_TEXTURE_2D, level, internalFmt, width, height, 0, buff.getSize(), buff.getData()));
}
else
{
GLenum glFmt = GLES2Mapping::MapFormat(pixFmt);
GLenum glType = GLES2Mapping::MapDataType(pixFmt);
OGLESDebug(glTexImage2D(GL_TEXTURE_2D, level, internalFmt, width, height, 0, glFmt, glType, buff.getData()));
}
OGLESDebug(glBindTexture(GL_TEXTURE_2D, 0));
}
bool GLESTexture2D::load()
{
create2DTexture();
MemoryReader memReader(getPath());
if (memReader.getSize())
{
Buffer commonTextureBuffer(memReader.getSize(), memReader.getData<ui8*>(), false);
Image* image = Image::createFromMemory(commonTextureBuffer, Image::GetImageFormat(getPath()));
if (image)
{
m_isCompressed = false;
m_compressType = Texture::CompressType_Unknown;
m_width = image->getWidth();
m_height = image->getHeight();
m_depth = image->getDepth();
m_pixFmt = image->getPixelFormat();
m_numMipmaps = image->getNumMipmaps() ? image->getNumMipmaps() : 1;
ui32 pixelsSize = PixelUtil::CalcSurfaceSize(m_width, m_height, m_depth, m_numMipmaps, m_pixFmt);
Buffer buff(pixelsSize, image->getData(), false);
set2DSurfaceData( 0, m_pixFmt, m_usage, m_width, m_height, buff);
EchoSafeDelete(image, Image);
// Generate mipmaps
if (m_isMipMapEnable && !m_compressType)
{
OGLESDebug(glBindTexture(GL_TEXTURE_2D, m_glesTexture));
OGLESDebug(glGenerateMipmap(GL_TEXTURE_2D));
OGLESDebug(glBindTexture(GL_TEXTURE_2D, 0));
}
return true;
}
}
return false;
}
bool GLESTexture2D::unload()
{
if (m_glesTexture)
{
OGLESDebug(glDeleteTextures(1, &m_glesTexture));
m_glesTexture = 0;
}
return true;
}
}
| [
"qq79402005@gmail.com"
] | qq79402005@gmail.com |
75b17c55fecc26746caf3930b0a2cf7016b5671c | 3e3e8ab2397b641e523c8e0898572e355e35f35e | /transpose of matrices.cpp | c72d04c7dcb638babe4a2cc935be8bf799e0caa8 | [
"MIT"
] | permissive | mohsin5432/CPP-basic | d533dfae7e96c36e2f53fb868e68c899e914a850 | 453c82cdc1b3412ee0a063cd9053c7556c80bd7a | refs/heads/main | 2023-05-13T19:49:09.944654 | 2021-06-03T15:41:54 | 2021-06-03T15:41:54 | 373,555,404 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 652 | cpp | #include <iostream>
using namespace std;
main()
{
int r,c;
cout<<"ENTER THE ROWS OF MATRICES= ";
cin>>r;
cout<<"ENTER THE COLUMN OF MATRICES= ";
cin>>c;
int a[r][c];
for(int i=0;i<r;i++)
{
for (int j=0;j<c;j++)
{
cout<<"Enter no= ";
cin>>a[i][j];
}
}
cout<<"\t\t\tOrignal Matrice:"<<endl;
for(int i=0;i<r;i++)
{
cout<<"\t\t\t\t";
for (int j=0;j<c;j++)
{
cout<<a[i][j]<<" ";
}
cout<<"\n";
}
cout<<"\n\n";
cout<<"\t\t\ttranspose of a matrices:"<<endl;
for(int i=0;i<r;i++)
{
cout<<"\t\t\t\t";
for (int j=0;j<c;j++)
{
cout<<a[j][i]<<" ";
}
cout<<"\n";
}
}
| [
"noreply@github.com"
] | mohsin5432.noreply@github.com |
f04a9ba9f51031e57acd73673271e42594e2e6a4 | 11c74b57455ce2454849fbe9a73a2e0d2a3542d2 | /oj/codeforces/contests/1336/B.cpp | 7319481ee3f80f083566a4db9f0ba244a2cdee47 | [] | no_license | heyuhhh/ACM | 4fe0239b7f55a62db5bc47aaf086e187134fb7e6 | e1ea34686b41a6c5b3f395dd9c76472220e9db5d | refs/heads/master | 2021-06-25T03:59:51.580876 | 2021-04-27T07:22:51 | 2021-04-27T07:22:51 | 223,877,467 | 9 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,694 | cpp | /*
* Author: heyuhhh
* Created Time: 2020/4/15 22:47:16
*/
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <vector>
#include <cmath>
#include <set>
#include <map>
#include <queue>
#include <iomanip>
#include <assert.h>
#define MP make_pair
#define fi first
#define se second
#define pb push_back
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define INF 0x3f3f3f3f
//#define Local
#ifdef Local
#define dbg(args...) do { cout << #args << " -> "; err(args); } while (0)
void err() { std::cout << std::endl; }
template<typename T, typename...Args>
void err(T a, Args...args) { std::cout << a << ' '; err(args...); }
template <template<typename...> class T, typename t, typename... A>
void err(const T <t> &arg, const A&... args) {
for (auto &v : arg) std::cout << v << ' '; err(args...); }
#else
#define dbg(...)
#endif
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
//head
const int N = 1e5 + 5;
int na, nb, nc;
ll a[N], b[N], c[N];
ll calc(int x, int y, int z) {
if(x && y && z && x <= na && y <= nb && z <= nc)
return (a[x] - b[y]) * (a[x] - b[y]) + (a[x] - c[z]) * (a[x] - c[z]) + (b[y] - c[z]) * (b[y] - c[z]);
return 8e18;
}
ll calc_a(int y, int z) {
int t = lower_bound(a + 1, a + na + 1, b[y]) - a;
ll res = 9e18;
res = min(res, calc(t, y, z));
res = min(res, calc(t - 1, y, z));
t = lower_bound(a + 1, a + na + 1, c[z]) - a;
res = min(res, calc(t, y, z));
res = min(res, calc(t - 1, y, z));
return res;
}
ll calc_c(int x, int y) {
int t = lower_bound(c + 1, c + nc + 1, b[y]) - c;
ll res = 9e18;
res = min(res, calc(x, y, t));
dbg(x, y, t, res);
res = min(res, calc(x, y, t - 1));
t = lower_bound(c + 1, c + nc + 1, a[x]) - c;
res = min(res, calc(x, y, t));
res = min(res, calc(x, y, t - 1));
return res;
}
ll calc_b(int x, int z) {
int t = lower_bound(b + 1, b + nb + 1, c[z]) - b;
ll res = 9e18;
res = min(res, calc(x, t, z));
res = min(res, calc(x, t - 1, z));
t = lower_bound(b + 1, b + nb + 1, a[x]) - b;
res = min(res, calc(x, t, z));
res = min(res, calc(x, t - 1, z));
return res;
}
void run() {
cin >> na >> nb >> nc;
for(int i = 1; i <= na; i++) cin >> a[i];
for(int i = 1; i <= nb; i++) cin >> b[i];
for(int i = 1; i <= nc; i++) cin >> c[i];
sort(a + 1, a + na + 1);
sort(b + 1, b + nb + 1);
sort(c + 1, c + nc + 1);
ll ans = 9e18;
for(int i = 1, t; i <= na; i++) {
t = lower_bound(b + 1, b + nb + 1, a[i]) - b;
if(t <= nb) ans = min(ans, calc_c(i, t));
if(t > 1) ans = min(ans, calc_c(i, t - 1));
t = lower_bound(c + 1, c + nc + 1, a[i]) - c;
if(t <= nc) ans = min(ans, calc_b(i, t));
if(t > 1) ans = min(ans, calc_b(i, t - 1));
}
for(int i = 1, t; i <= nb; i++) {
t = lower_bound(a + 1, a + na + 1, b[i]) - a;
ans = min(ans, calc_c(t, i));
ans = min(ans, calc_c(t - 1, i));
t = lower_bound(c + 1, c + nc + 1, b[i]) - c;
ans = min(ans, calc_a(i, t));
ans = min(ans, calc_a(i, t - 1));
}
for(int i = 1, t; i <= nc; i++) {
t = lower_bound(b + 1, b + nb + 1, c[i]) - b;
ans = min(ans, calc_a(t, i));
ans = min(ans, calc_c(t - 1, i));
t = lower_bound(a + 1, a + na + 1, c[i]) - a;
ans = min(ans, calc_b(t, i));
ans = min(ans, calc_b(t - 1, i));
}
cout << ans << '\n';
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cout << fixed << setprecision(20);
int T; cin >> T;
while(T--) run();
return 0;
}
| [
"2468861298@qq.com"
] | 2468861298@qq.com |
a5ed5568b82f326af67581a942fdff2f8b9674ad | d6e3651a5d47661734ea571caa2b092d67cf074e | /Cell.h | 1a4d1c61bc708bed26cf17b4b5e1533d874451a9 | [] | no_license | RobertPJenkins/kato_jenkins_et_al_CC3D | 79d5e6fdd91da164cf829713618516ca16b29502 | b730d817f5c9cb11a4b3c5e02ccf03c829395fff | refs/heads/main | 2023-02-14T16:40:33.645466 | 2022-11-28T13:03:51 | 2022-11-28T13:03:51 | 428,398,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,588 | h | /*************************************************************************
* CompuCell - A software framework for multimodel simulations of *
* biocomplexity problems Copyright (C) 2003 University of Notre Dame, *
* Indiana *
* *
* This program is free software; IF YOU AGREE TO CITE USE OF CompuCell *
* IN ALL RELATED RESEARCH PUBLICATIONS according to the terms of the *
* CompuCell GNU General Public License RIDER you can redistribute it *
* and/or modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
*************************************************************************/
#ifndef CELL_H
#define CELL_H
#include <iostream>
#include <vector>
using namespace std;
#ifndef PyObject_HEAD
struct _object; //forward declare
typedef _object PyObject; //type redefinition
#endif
struct VCAFpositionnode;
class BasicClassGroup;
namespace CompuCell3D {
/**
* A Potts3D cell.
*/
class CellG{
public:
typedef unsigned char CellType_t;
CellG():
volume(0),
targetVolume(0.0),
lambdaVolume(0.0),
surface(0),
targetSurface(0.0),
lambdaSurface(0.0),
clusterSurface(0.0),
targetClusterSurface(0.0),
lambdaClusterSurface(0.0),
type(0),
xCM(0),yCM(0),zCM(0),
xCOM(0),yCOM(0),zCOM(0),
xCOMPrev(0),yCOMPrev(0),zCOMPrev(0),
iXX(0), iXY(0), iXZ(0), iYY(0), iYZ(0), iZZ(0),
lX(0.0),
lY(0.0),
lZ(0.0),
lambdaVecX(0.0),
lambdaVecY(0.0),
lambdaVecZ(0.0),
flag(0),
id(0),
clusterId(0),
fluctAmpl(-1.0),
extraAttribPtr(0),
pyAttrib(0),
//Attributes added for steppables and plugins in the paper ****
VCAFListroot(0),
previousCM(),
lambdataxis(0.0),
taxisidir(),
lambdaECMPenetration(0.0),
steppablesinitialised(0),
TimeToMitosisCheck(100000),
InitialTimeToMitosis(100000),
DaughterCellTimer(100000),
OriginalTargetVolume(1.0)
//TimeToVolumeCheck(100000),
{
//Attributes added for steppables and plugins in the paper ****
previousCM[0]=xCOM;previousCM[1]=yCOM;previousCM[2]=zCOM;
lambdataxis=0;
taxisidir[0]=1.0;taxisidir[1]=0.0;taxisidir[2]=0.0;
TimeToMitosisCheck=100000;
InitialTimeToMitosis=100000;
DaughterCellTimer=100000;
DivideThisCellInPython=false;
just_divided=false;
just_divided_taxis_label=false;
OriginalTargetSurface=0;
InitialConditionCell=false;
MaxCellVolume=0;
mitosistimer=0;
//parentid=-999;
//safe_contact=true;
//TimeToVolumeCheck=100000;
}
unsigned long volume;
float targetVolume;
float lambdaVolume;
double surface;
float targetSurface;
float angle;
float lambdaSurface;
double clusterSurface;
float targetClusterSurface;
float lambdaClusterSurface;
unsigned char type;
unsigned char subtype;
double xCM,yCM,zCM; // numerator of center of mass expression (components)
double xCOM,yCOM,zCOM; // numerator of center of mass expression (components)
double xCOMPrev,yCOMPrev,zCOMPrev; // previous center of mass
double iXX, iXY, iXZ, iYY, iYZ, iZZ; // tensor of inertia components
float lX,lY,lZ; //orientation vector components - set by MomentsOfInertia Plugin - read only
float ecc; // cell eccentricity
float lambdaVecX,lambdaVecY,lambdaVecZ; // external potential lambda vector components
unsigned char flag;
float averageConcentration;
long id;
long clusterId;
double fluctAmpl;
BasicClassGroup *extraAttribPtr;
PyObject *pyAttrib;
//Attributes added for steppables and plugins in the paper ****
VCAFpositionnode *VCAFListroot;
double previousCM[3];
float lambdataxis;
double taxisidir[3];
float*** ECMfieldbyCell;
float lambdaECMPenetration;
int steppablesinitialised;
vector <int> canremodel_x;
vector <int> canremodel_y;
vector <int> canremodel_z;
int TimeToMitosisCheck;
int DaughterCellTimer;
bool just_divided;
bool just_divided_taxis_label;
float OriginalTargetVolume;
float OriginalTargetSurface;
int MaxCellVolume;
bool DivideThisCellInPython;
bool InitialConditionCell;
int InitialTimeToMitosis;
int mitosistimer;
float kdeg;
float wpush;
float MaximumSCCECMAdhesion;
float CurrentSCCECMAdhesion;
float ZeroSCCECMAdhesion;
float MaximumVCAFECMAdhesion;
float CurrentVCAFECMAdhesion;
float ZeroVCAFECMAdhesion;
float MeanSurroundingECMConc;
vector <float> ECMNeighbourConcentrations;
int MinZExtent;
int SpheroidCentroidX;
int SpheroidCentroidY;
int SpheroidCentroidZ;
long parentid;
//int TimeToVolumeCheck;
//bool preparing_for_mitosis;
//int MinYExtent;
//float** ECMfieldbyCell2D;
// vector <int> boundary_x;
// vector <int> boundary_y;
// vector <int> boundary_z;
// vector <int> neighbour_x;
// vector <int> neighbour_y;
// vector <int> neighbour_z;
// vector <float> neighbourtype;
//bool ecmadhesionupdateEcmPointerFlag;
//bool safe_contact;
//vector <int> pixelcantdelete_x;
//vector <int> pixelcantdelete_y;
//vector <int> pixelcantdelete_z;
};
class Cell {
};
class CellPtr{
public:
Cell * cellPtr;
};
};
#endif
| [
"JenkinR@crick.ac.uk"
] | JenkinR@crick.ac.uk |
811471faba62644c7b353c6b773b9792bf14c785 | a4301a4a1fbe838b4f1e8452d0f4f93b78f37735 | /app/src/main/cpp/BlockFilter.cpp | 31027c398f7fcd4f7d8a2477d6838d19a4b28e76 | [] | no_license | AndDevApps/PhotoEditor | 7b78a3a6286c23956db8d06be8ecdf4901280a14 | 8dea0e7be5af8f2a7bff7f05ba94fd439df552e8 | refs/heads/master | 2020-03-06T17:11:15.701249 | 2018-03-27T13:30:22 | 2018-03-27T13:30:22 | 125,669,665 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | cpp | //
// Created by Viktor on 20.03.2018.
//
#include "BlockFilter.h"
BlockFilter::BlockFilter(int *pixels, int width, int height):
ImageFilter(pixels, width, height),
threshold(100) {
}
int* BlockFilter::procImage() {
for (int i = 0; i < width * height; i++) {
Color color(pixels[i]);
int gray = color.grayScale();
if (gray >= threshold) {
pixels[i] = RGB2Color(255, 255, 255);
} else {
pixels[i] = RGB2Color(0, 0, 0);
}
}
return pixels;
}
| [
"fineyviktor@gmail.com"
] | fineyviktor@gmail.com |
359bbfd51f091c94faacf4caaa7188c57644e32d | cf055ed120f105fc36f07555127f7a12830e642b | /cpp/phone-number/phone_number.cpp | ab6f242267abd0e7bfa1ad59613f31a3608e3293 | [
"MIT"
] | permissive | RockLloque/Exercism | c660501f0ebf57ad25f55430be794a8f44412f73 | c437dd6cf3246576900c76c2dba775b6647e3347 | refs/heads/main | 2023-05-23T09:13:02.083388 | 2021-06-03T18:32:14 | 2021-06-03T18:32:14 | 373,594,545 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,052 | cpp | /*
* =====================================================================================
*
* Filename: phone_number.cpp
*
* Description:
*
* Version: 1.0
* Created: 19.06.2015 16:18:53
* Revision: none
* Compiler: gcc
*
*
* phone_number_h
#ifndef PHONE_NUMBER_H
#define PHONE_NUMBER_H
#include <string>
class phone_number
{
public:
phone_number( std::string const&);
std::string number() const;
std::string area_code() const;
operator std::string() const;
private:
void check_length();
void remove_non_numbers();
std::string number_;
};
#endif
* =====================================================================================
*/
#include <algorithm>
#include <iostream>
#include <sstream>
#include "phone_number.h"
static const int area_code_length{3};
static const int exchange_length{3};
static const int extension_length{4};
static const int valid_length{area_code_length + exchange_length + extension_length};
static const std::string invalid_number( valid_length, '0');
phone_number::phone_number( std::string const& input)
: number_{input}
{remove_non_numbers();
check_length();}
void phone_number::remove_non_numbers()
{
number_.erase( std::remove_if( number_.begin(), number_.end(),
[]( char x) { return not std::isdigit(x);}),
number_.end());
}
void phone_number::check_length()
{
if( (number_.size() == valid_length+1) and number_.at(0) == '1')
{
number_.erase(0,1);
}
if(number_.size() == valid_length+1 or number_.size() == valid_length-1 )
{
number_ = invalid_number;
}
}
std::string phone_number::number() const
{
return number_;
}
std::string phone_number::area_code() const
{
return number_.substr(0,area_code_length);
}
phone_number::operator std::string() const
{
std::ostringstream buffer{};
buffer << '(' << number_.substr(0,area_code_length) << ") " << number_.substr(area_code_length, exchange_length) << '-' << number_.substr( area_code_length+ exchange_length, extension_length);
return buffer.str();
} | [
"thmschmahl@gmail.com"
] | thmschmahl@gmail.com |
52ce4ff4c4b0c1bd964643df5420deb46057c0f3 | d61f2cac3bd9ed39f95184b89dd40952c6482786 | /testCase/results/2/rho_foam | 6d45c7a23d9be81beb4de1dfded7cdcfe385a997 | [] | no_license | karimimp/PUFoam | 4b3a5b427717aa0865889fa2342112cc3d24ce66 | 9d16e06d63e141607491219924018bea99cbb9e5 | refs/heads/master | 2022-06-24T08:51:18.370701 | 2022-04-28T18:33:03 | 2022-04-28T18:33:03 | 120,094,729 | 6 | 3 | null | 2022-04-27T09:46:38 | 2018-02-03T13:43:52 | C++ | UTF-8 | C++ | false | false | 9,148 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "2";
object rho_foam;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -3 0 0 0 0 0];
internalField nonuniform List<scalar>
800
(
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.1332
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4243
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
1096.4261
)
;
boundaryField
{
Wall
{
type zeroGradient;
}
frontAndBack
{
type empty;
}
atmosphere
{
type zeroGradient;
}
}
// ************************************************************************* //
| [
"mohsenk@outlook.com"
] | mohsenk@outlook.com | |
243caf960e87893f73a598c733e8257824461fb1 | 9349c16473f2249d70a623f44e7c2fec2a1a744f | /build/hello_world_msgs/rosidl_typesupport_connext_cpp/hello_world_msgs/srv/dds_connext/SetMessage_.cxx | d146df5cbc5a1a2172aa2f3192d0c5041ec65a02 | [] | no_license | Mast-on/ros2ddslatency | be62a66ff7d80381aa1b84cb5ce24630d0a05563 | cbe06b3b984e491de35ff138e1e2860bd5571fd9 | refs/heads/master | 2022-11-05T13:10:19.597450 | 2020-07-03T01:49:13 | 2020-07-03T01:49:13 | 276,782,068 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,087 | cxx |
/*
WARNING: THIS FILE IS AUTO-GENERATED. DO NOT MODIFY.
This file was generated from SetMessage_.idl using "rtiddsgen".
The rtiddsgen tool is part of the RTI Connext distribution.
For more information, type 'rtiddsgen -help' at a command shell
or consult the RTI Connext manual.
*/
#ifndef NDDS_STANDALONE_TYPE
#ifndef ndds_cpp_h
#include "ndds/ndds_cpp.h"
#endif
#ifndef dds_c_log_impl_h
#include "dds_c/dds_c_log_impl.h"
#endif
#ifndef cdr_type_h
#include "cdr/cdr_type.h"
#endif
#ifndef osapi_heap_h
#include "osapi/osapi_heap.h"
#endif
#else
#include "ndds_standalone_type.h"
#endif
#include "SetMessage_.h"
#include <new>
namespace hello_world_msgs {
namespace srv {
namespace dds_ {
/* ========================================================================= */
const char *SetMessage_Request_TYPENAME = "hello_world_msgs::srv::dds_::SetMessage_Request_";
DDS_TypeCode* SetMessage_Request__get_typecode()
{
static RTIBool is_initialized = RTI_FALSE;
static DDS_TypeCode SetMessage_Request__g_tc_message__string = DDS_INITIALIZE_STRING_TYPECODE(RTI_INT32_MAX);
static DDS_TypeCode_Member SetMessage_Request__g_tc_members[1]=
{
{
(char *)"message_",/* Member name */
{
0,/* Representation ID */
DDS_BOOLEAN_FALSE,/* Is a pointer? */
-1, /* Bitfield bits */
NULL/* Member type code is assigned later */
},
0, /* Ignored */
0, /* Ignored */
0, /* Ignored */
NULL, /* Ignored */
RTI_CDR_REQUIRED_MEMBER, /* Is a key? */
DDS_PUBLIC_MEMBER,/* Member visibility */
1,
NULL/* Ignored */
}
};
static DDS_TypeCode SetMessage_Request__g_tc =
{{
DDS_TK_STRUCT,/* Kind */
DDS_BOOLEAN_FALSE, /* Ignored */
-1, /*Ignored*/
(char *)"hello_world_msgs::srv::dds_::SetMessage_Request_", /* Name */
NULL, /* Ignored */
0, /* Ignored */
0, /* Ignored */
NULL, /* Ignored */
1, /* Number of members */
SetMessage_Request__g_tc_members, /* Members */
DDS_VM_NONE /* Ignored */
}}; /* Type code for SetMessage_Request_*/
if (is_initialized) {
return &SetMessage_Request__g_tc;
}
SetMessage_Request__g_tc_members[0]._representation._typeCode = (RTICdrTypeCode *)&SetMessage_Request__g_tc_message__string;
is_initialized = RTI_TRUE;
return &SetMessage_Request__g_tc;
}
RTIBool SetMessage_Request__initialize(
SetMessage_Request_* sample) {
return hello_world_msgs::srv::dds_::SetMessage_Request__initialize_ex(sample,RTI_TRUE,RTI_TRUE);
}
RTIBool SetMessage_Request__initialize_ex(
SetMessage_Request_* sample,RTIBool allocatePointers, RTIBool allocateMemory)
{
struct DDS_TypeAllocationParams_t allocParams =
DDS_TYPE_ALLOCATION_PARAMS_DEFAULT;
allocParams.allocate_pointers = (DDS_Boolean)allocatePointers;
allocParams.allocate_memory = (DDS_Boolean)allocateMemory;
return hello_world_msgs::srv::dds_::SetMessage_Request__initialize_w_params(
sample,&allocParams);
}
RTIBool SetMessage_Request__initialize_w_params(
SetMessage_Request_* sample, const struct DDS_TypeAllocationParams_t * allocParams)
{
if (sample == NULL) {
return RTI_FALSE;
}
if (allocParams == NULL) {
return RTI_FALSE;
}
if (allocParams->allocate_memory){
sample->message_= DDS_String_alloc ((0));
if (sample->message_ == NULL) {
return RTI_FALSE;
}
} else {
if (sample->message_!= NULL) {
sample->message_[0] = '\0';
}
}
return RTI_TRUE;
}
void SetMessage_Request__finalize(
SetMessage_Request_* sample)
{
hello_world_msgs::srv::dds_::SetMessage_Request__finalize_ex(sample,RTI_TRUE);
}
void SetMessage_Request__finalize_ex(
SetMessage_Request_* sample,RTIBool deletePointers)
{
struct DDS_TypeDeallocationParams_t deallocParams =
DDS_TYPE_DEALLOCATION_PARAMS_DEFAULT;
if (sample==NULL) {
return;
}
deallocParams.delete_pointers = (DDS_Boolean)deletePointers;
hello_world_msgs::srv::dds_::SetMessage_Request__finalize_w_params(
sample,&deallocParams);
}
void SetMessage_Request__finalize_w_params(
SetMessage_Request_* sample,const struct DDS_TypeDeallocationParams_t * deallocParams)
{
if (sample==NULL) {
return;
}
if (deallocParams == NULL) {
return;
}
if (sample->message_ != NULL) {
DDS_String_free(sample->message_);
sample->message_=NULL;
}
}
void SetMessage_Request__finalize_optional_members(
SetMessage_Request_* sample, RTIBool deletePointers)
{
struct DDS_TypeDeallocationParams_t deallocParamsTmp =
DDS_TYPE_DEALLOCATION_PARAMS_DEFAULT;
struct DDS_TypeDeallocationParams_t * deallocParams =
&deallocParamsTmp;
if (sample==NULL) {
return;
}
if (deallocParams) {} /* To avoid warnings */
deallocParamsTmp.delete_pointers = (DDS_Boolean)deletePointers;
deallocParamsTmp.delete_optional_members = DDS_BOOLEAN_TRUE;
}
RTIBool SetMessage_Request__copy(
SetMessage_Request_* dst,
const SetMessage_Request_* src)
{
try {
if (dst == NULL || src == NULL) {
return RTI_FALSE;
}
if (!RTICdrType_copyStringEx (
&dst->message_, src->message_,
(RTI_INT32_MAX-1) + 1,RTI_TRUE)){
return RTI_FALSE;
}
return RTI_TRUE;
} catch (std::bad_alloc&) {
return RTI_FALSE;
}
}
/**
* <<IMPLEMENTATION>>
*
* Defines: TSeq, T
*
* Configure and implement 'SetMessage_Request_' sequence class.
*/
#define T SetMessage_Request_
#define TSeq SetMessage_Request_Seq
#define T_initialize_w_params hello_world_msgs::srv::dds_::SetMessage_Request__initialize_w_params
#define T_finalize_w_params hello_world_msgs::srv::dds_::SetMessage_Request__finalize_w_params
#define T_copy hello_world_msgs::srv::dds_::SetMessage_Request__copy
#ifndef NDDS_STANDALONE_TYPE
#include "dds_c/generic/dds_c_sequence_TSeq.gen"
#include "dds_cpp/generic/dds_cpp_sequence_TSeq.gen"
#else
#include "dds_c_sequence_TSeq.gen"
#include "dds_cpp_sequence_TSeq.gen"
#endif
#undef T_copy
#undef T_finalize_w_params
#undef T_initialize_w_params
#undef TSeq
#undef T
} /* namespace dds_ */
} /* namespace srv */
} /* namespace hello_world_msgs */
namespace hello_world_msgs {
namespace srv {
namespace dds_ {
/* ========================================================================= */
const char *SetMessage_Response_TYPENAME = "hello_world_msgs::srv::dds_::SetMessage_Response_";
DDS_TypeCode* SetMessage_Response__get_typecode()
{
static RTIBool is_initialized = RTI_FALSE;
static DDS_TypeCode_Member SetMessage_Response__g_tc_members[1]=
{
{
(char *)"result_",/* Member name */
{
0,/* Representation ID */
DDS_BOOLEAN_FALSE,/* Is a pointer? */
-1, /* Bitfield bits */
NULL/* Member type code is assigned later */
},
0, /* Ignored */
0, /* Ignored */
0, /* Ignored */
NULL, /* Ignored */
RTI_CDR_REQUIRED_MEMBER, /* Is a key? */
DDS_PUBLIC_MEMBER,/* Member visibility */
1,
NULL/* Ignored */
}
};
static DDS_TypeCode SetMessage_Response__g_tc =
{{
DDS_TK_STRUCT,/* Kind */
DDS_BOOLEAN_FALSE, /* Ignored */
-1, /*Ignored*/
(char *)"hello_world_msgs::srv::dds_::SetMessage_Response_", /* Name */
NULL, /* Ignored */
0, /* Ignored */
0, /* Ignored */
NULL, /* Ignored */
1, /* Number of members */
SetMessage_Response__g_tc_members, /* Members */
DDS_VM_NONE /* Ignored */
}}; /* Type code for SetMessage_Response_*/
if (is_initialized) {
return &SetMessage_Response__g_tc;
}
SetMessage_Response__g_tc_members[0]._representation._typeCode = (RTICdrTypeCode *)&DDS_g_tc_boolean;
is_initialized = RTI_TRUE;
return &SetMessage_Response__g_tc;
}
RTIBool SetMessage_Response__initialize(
SetMessage_Response_* sample) {
return hello_world_msgs::srv::dds_::SetMessage_Response__initialize_ex(sample,RTI_TRUE,RTI_TRUE);
}
RTIBool SetMessage_Response__initialize_ex(
SetMessage_Response_* sample,RTIBool allocatePointers, RTIBool allocateMemory)
{
struct DDS_TypeAllocationParams_t allocParams =
DDS_TYPE_ALLOCATION_PARAMS_DEFAULT;
allocParams.allocate_pointers = (DDS_Boolean)allocatePointers;
allocParams.allocate_memory = (DDS_Boolean)allocateMemory;
return hello_world_msgs::srv::dds_::SetMessage_Response__initialize_w_params(
sample,&allocParams);
}
RTIBool SetMessage_Response__initialize_w_params(
SetMessage_Response_* sample, const struct DDS_TypeAllocationParams_t * allocParams)
{
if (sample == NULL) {
return RTI_FALSE;
}
if (allocParams == NULL) {
return RTI_FALSE;
}
if (!RTICdrType_initBoolean(&sample->result_)) {
return RTI_FALSE;
}
return RTI_TRUE;
}
void SetMessage_Response__finalize(
SetMessage_Response_* sample)
{
hello_world_msgs::srv::dds_::SetMessage_Response__finalize_ex(sample,RTI_TRUE);
}
void SetMessage_Response__finalize_ex(
SetMessage_Response_* sample,RTIBool deletePointers)
{
struct DDS_TypeDeallocationParams_t deallocParams =
DDS_TYPE_DEALLOCATION_PARAMS_DEFAULT;
if (sample==NULL) {
return;
}
deallocParams.delete_pointers = (DDS_Boolean)deletePointers;
hello_world_msgs::srv::dds_::SetMessage_Response__finalize_w_params(
sample,&deallocParams);
}
void SetMessage_Response__finalize_w_params(
SetMessage_Response_* sample,const struct DDS_TypeDeallocationParams_t * deallocParams)
{
if (sample==NULL) {
return;
}
if (deallocParams == NULL) {
return;
}
}
void SetMessage_Response__finalize_optional_members(
SetMessage_Response_* sample, RTIBool deletePointers)
{
struct DDS_TypeDeallocationParams_t deallocParamsTmp =
DDS_TYPE_DEALLOCATION_PARAMS_DEFAULT;
struct DDS_TypeDeallocationParams_t * deallocParams =
&deallocParamsTmp;
if (sample==NULL) {
return;
}
if (deallocParams) {} /* To avoid warnings */
deallocParamsTmp.delete_pointers = (DDS_Boolean)deletePointers;
deallocParamsTmp.delete_optional_members = DDS_BOOLEAN_TRUE;
}
RTIBool SetMessage_Response__copy(
SetMessage_Response_* dst,
const SetMessage_Response_* src)
{
try {
if (dst == NULL || src == NULL) {
return RTI_FALSE;
}
if (!RTICdrType_copyBoolean (
&dst->result_, &src->result_)) {
return RTI_FALSE;
}
return RTI_TRUE;
} catch (std::bad_alloc&) {
return RTI_FALSE;
}
}
/**
* <<IMPLEMENTATION>>
*
* Defines: TSeq, T
*
* Configure and implement 'SetMessage_Response_' sequence class.
*/
#define T SetMessage_Response_
#define TSeq SetMessage_Response_Seq
#define T_initialize_w_params hello_world_msgs::srv::dds_::SetMessage_Response__initialize_w_params
#define T_finalize_w_params hello_world_msgs::srv::dds_::SetMessage_Response__finalize_w_params
#define T_copy hello_world_msgs::srv::dds_::SetMessage_Response__copy
#ifndef NDDS_STANDALONE_TYPE
#include "dds_c/generic/dds_c_sequence_TSeq.gen"
#include "dds_cpp/generic/dds_cpp_sequence_TSeq.gen"
#else
#include "dds_c_sequence_TSeq.gen"
#include "dds_cpp_sequence_TSeq.gen"
#endif
#undef T_copy
#undef T_finalize_w_params
#undef T_initialize_w_params
#undef TSeq
#undef T
} /* namespace dds_ */
} /* namespace srv */
} /* namespace hello_world_msgs */
| [
"shiozaki@easter.kuee.kyoto-u.ac.jp"
] | shiozaki@easter.kuee.kyoto-u.ac.jp |
ad24a11407a2140f4cc7f30a55327998b2155a7d | 81e71315f2f9e78704b29a5688ba2889928483bb | /src/crgui/crElement.cpp | 840638863317ad135aeaaac6a68f91861b4b852c | [] | no_license | Creature3D/Creature3DApi | 2c95c1c0089e75ad4a8e760366d0dd2d11564389 | b284e6db7e0d8e957295fb9207e39623529cdb4d | refs/heads/master | 2022-11-13T07:19:58.678696 | 2019-07-06T05:48:10 | 2019-07-06T05:48:10 | 274,064,341 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 194,981 | cpp | /* Creature3D - Online Game Engine, Copyright (C) 2005 Wucaihua(26756325@qq.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
#include <CRGUI/crElement.h>
#include <CRGUI/crImageStage.h>
#include <CRCore/crMath.h>
#include <CRCore/crNotify.h>
#include <CRCore/thread/crScopedLock.h>
using namespace CRGUI;
using namespace CRCore;
#define TextRectOffset 2.0f
crElement::crElement()
{
//m_hscrollValue = m_vscrollValue = 0.0f;
m_hImage = NULL;
m_hMouseOnImage = NULL;
m_hDownImage = NULL;
m_hMaskImage = NULL;
m_hDisableImage = NULL;
m_isMouseOnElement = false;
m_focus = false;
m_canDrag = 0;//1:可拖动,0:不可拖动
m_parentStage = NULL;
m_parentElement = NULL;
m_drawMode = Draw_Copy;
m_enable = true;
m_show = true;
m_canCapture = false;
m_capture = false;
m_canFocus = true;
// m_needRedraw = true;
}
crElement::crElement(const crElement& element):
// m_hscrollValue(0.0f),
//m_vscrollValue(0.0f),
m_hImage(element.m_hImage),
m_hMouseOnImage(element.m_hMouseOnImage),
m_hDownImage(element.m_hDownImage),
m_hMaskImage(element.m_hMaskImage),
m_hDisableImage(element.m_hDisableImage),
m_isMouseOnElement(false),
m_canFocus(element.m_canFocus),
m_focus(false),
m_canDrag(element.m_canDrag),
m_parentStage(element.m_parentStage),
m_drawMode(element.m_drawMode),
m_enable(element.m_enable),
m_show(element.m_show),
m_canCapture(element.m_canCapture),
m_capture(false),
m_rect(element.m_rect),
m_imageName(element.m_imageName),
m_downImageName(element.m_downImageName),
m_maskImageName(element.m_maskImageName),
m_disableImageName(element.m_disableImageName),
m_parentElement(element.m_parentElement),
m_parentElementName(element.m_parentElementName)
{
m_name = "复件" + element.m_name;
m_mouseMoveEventCallbacks = element.m_mouseMoveEventCallbacks;
m_lButtonDownEventCallbacks = element.m_lButtonDownEventCallbacks;
m_rButtonDownEventCallbacks = element.m_rButtonDownEventCallbacks;
m_mButtonDownEventCallbacks = element.m_mButtonDownEventCallbacks;
m_lButtonUpEventCallbacks = element.m_lButtonUpEventCallbacks;
m_rButtonUpEventCallbacks = element.m_rButtonUpEventCallbacks;
m_mButtonUpEventCallbacks = element.m_mButtonUpEventCallbacks;
m_lButtonDblClkEventCallbacks = element.m_lButtonDblClkEventCallbacks;
m_rButtonDblClkEventCallbacks = element.m_rButtonDblClkEventCallbacks;
m_mButtonDblClkEventCallbacks = element.m_mButtonDblClkEventCallbacks;
m_mouseWheelEventCallbacks = element.m_mouseWheelEventCallbacks;
m_mouseOnEventCallbacks = element.m_mouseOnEventCallbacks;
m_getFocusEventCallbacks = element.m_getFocusEventCallbacks;
m_lostFocusEventCallbacks = element.m_lostFocusEventCallbacks;
m_initWindowEventCallbacks = element.m_initWindowEventCallbacks;
m_destroyWindowEventCallbacks = element.m_destroyWindowEventCallbacks;
m_inputKeyEventCallbacks = element.m_inputKeyEventCallbacks;
m_inputCharEventCallbacks = element.m_inputCharEventCallbacks;
m_updateDataEventCallbacks = element.m_updateDataEventCallbacks;
m_preDrawEventCallbacks = element.m_preDrawEventCallbacks;
}
crElement::~crElement()
{
if(m_hImage)
DeleteObject(m_hImage);
if(m_hMouseOnImage)
DeleteObject(m_hMouseOnImage);
if(m_hDownImage)
DeleteObject(m_hDownImage);
if(m_hMaskImage)
DeleteObject(m_hMaskImage);
if(m_hDisableImage)
DeleteObject(m_hDisableImage);
}
void crElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
int int1;
std::vector<float> v_i;
if(cfg_script.Get("ElementName", str))
setName(str);
if(cfg_script.Get("ParentElementName", str))
setParentElementName(str);
if (cfg_script.Get("Enable", int1))
setEnable(int1);
if (cfg_script.Get("Show", int1))
setShow(int1);
if (cfg_script.Get("CanDrag", int1))
setCanDrag(int1);
if (cfg_script.Get("CanFocus", int1))
setCanFocus(int1);
if(cfg_script.Get("CanCapture", int1))
setCanCapture(int1);
if (cfg_script.Get("DrawMode", str))
{
if(str.compare("Copy")==0)
setDrawMode(crElement::Draw_Copy);
else if(str.compare("Mask")==0)
setDrawMode(crElement::Draw_Mask);
else if(str.compare("Transparent")==0)
setDrawMode(crElement::Draw_Transparent);
}
if (cfg_script.Get("ElementRect", v_i))
{
if (v_i.size() != 4)
throw std::runtime_error("crImageStage::loadElements(): " + cfg_script.CurrentScope() + "Rect should be a vector with 4 elements");
setRect(v_i[0]*widthScale, v_i[1]*heightScale, (v_i[2]-v_i[0])*widthScale, (v_i[3]-v_i[1])*heightScale);
}
//if (cfg_script.Get("Image", str))
// setElementImage(str);
//if (cfg_script.Get("DownImage", str))
// setElementDownImage(str);
//if (cfg_script.Get("MaskImage", str))
// setElementMaskImage(str);
crVector2i imageSize;
crVector2i elementPos;
if (cfg_script.Push("Image"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
if (cfg_script.Push("MouseOnImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementMouseOnImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
if (cfg_script.Push("DownImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementDownImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
if (cfg_script.Push("MaskImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementMaskImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
if (cfg_script.Push("DisableImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementDisableImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
}
void crElement::resize(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
std::vector<float> v_i;
if (cfg_script.Get("ElementRect", v_i))
{
if (v_i.size() != 4)
throw std::runtime_error("crImageStage::loadElements(): " + cfg_script.CurrentScope() + "Rect should be a vector with 4 elements");
setRect(v_i[0]*widthScale, v_i[1]*heightScale, (v_i[2]-v_i[0])*widthScale, (v_i[3]-v_i[1])*heightScale);
}
crVector2i imageSize;
crVector2i elementPos;
if (cfg_script.Push("Image"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
if (cfg_script.Push("DownImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementDownImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
if (cfg_script.Push("MaskImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementMaskImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
if (cfg_script.Push("DisableImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementDisableImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
}
void crElement::setParentElementName(const std::string &elementName)
{
m_parentElementName = elementName;
}
std::string &crElement::getParentElementName()
{
return m_parentElementName;
}
void crElement::setCanFocus(bool canFocus)
{
m_canFocus = canFocus;
}
void crElement::setCanDrag(bool canDrag)
{
m_canDrag = canDrag;
if(m_canDrag)
setCanCapture(true);
}
void crElement::setCanCapture(bool canCapture)
{
m_canCapture = canCapture;
}
void crElement::setRect(float x,float y,float wid,float hit)
{
m_rect.set(x,y,wid,hit);
}
void crElement::setRect(const CRCore::crVector4i &rect)
{
m_rect = rect;
}
const CRCore::crVector4i &crElement::getRect()
{
return m_rect;
}
int crElement::getElementRight()
{
return m_rect[0] + m_rect[2];
}
int crElement::getElementBottom()
{
return m_rect[1] + m_rect[3];
}
bool crElement::pressed(int x,int y)
{
if(x>=m_rect[0] && x<=m_rect[0]+m_rect[2])
{
if(y>=m_rect[1] && y<=m_rect[1]+m_rect[3])
{
if(!m_isMouseOnElement)
mouseOn();
return true;
}
}
return false;
}
void crElement::setEnable(bool enable)
{
m_enable = enable;
if(!m_enable)
{
m_isMouseOnElement = false;
if(m_focus && m_parentStage)
m_parentStage->setFocusElement(NULL);
}
}
void crElement::setShow(bool show)
{
m_show = show;
if(!m_show)
{
m_isMouseOnElement = false;
if(m_focus && m_parentStage)
m_parentStage->setFocusElement(NULL);
}
}
void crElement::setCapture()
{
m_capture = true;
}
void crElement::releaseCapture()
{
m_capture = false;
}
bool crElement::onCaptureMouse(int mx, int my, int mouseButtonMsg)
{
testButtons(mx,my,mouseButtonMsg);
if(m_canDrag && mouseButtonMsg == WM_MOUSEMOVE && m_parentStage)
{
int lastmx,lastmy;
m_parentStage->getLastMousePosition(lastmx,lastmy);
moveOffset(mx-lastmx,my-lastmy);
}
return true;
}
void crElement::setPos(float x, float y)
{
m_rect[0] = x;
m_rect[1] = y;
}
void crElement::moveOffset(int offsetx, int offsety)
{
m_rect[0] += offsetx;
m_rect[1] += offsety;
}
bool crElement::inputKey(int key)
{
if( m_inputKeyEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_inputKeyEventCallbacks.begin(); itr != m_inputKeyEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this,key);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_InputKey,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-3,&key);
excHandle(handle);
}
return true;
}
bool crElement::inputChar(wchar_t c)
{
if( m_inputCharEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_inputCharEventCallbacks.begin(); itr != m_inputCharEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this,c);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_InputChar,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-4,&c);
excHandle(handle);
}
return true;
}
bool crElement::testButtons(int mx, int my, int mouseButtonMsg )
{
if(m_isMouseOnElement)
{
switch(mouseButtonMsg)
{
case WM_MOUSEMOVE:
mouseMove(mx,my);
break;
case WM_LBUTTONDOWN:
if(m_parentStage)
m_parentStage->setFocusElement(this);
else if(dynamic_cast<crImageStage *>(this))
{
if(getCanCapture()) setCapture();
}
lButtonDown(mx,my);
break;
case WM_LBUTTONUP:
if(dynamic_cast<crImageStage *>(this))
{
if(getCanCapture()) releaseCapture();
}
lButtonUp(mx,my);
break;
case WM_LBUTTONDBLCLK:
lButtonDblClk(mx,my);
break;
case WM_RBUTTONDOWN:
rButtonDown(mx,my);
break;
case WM_RBUTTONUP:
rButtonUp(mx,my);
break;
case WM_RBUTTONDBLCLK:
rButtonDblClk(mx,my);
break;
case WM_MBUTTONDOWN:
mButtonDown(mx,my);
break;
case WM_MBUTTONUP:
mButtonUp(mx,my);
break;
case WM_MBUTTONDBLCLK:
mButtonDblClk(mx,my);
break;
case WM_MOUSEDRAG:
mouseDrag(mx,my);
break;
case WM_MOUSEWHEEL:
mouseWheel(mx,my);
break;
}
}
if(m_parentStage && !m_parentElement)
{//有m_parentElement的由m_parentElement触发其lostFocusElement,解决Combobox的问题
if(getCapture())
{
if(mouseButtonMsg == WM_LBUTTONUP)
m_parentStage->lostFocusElement(this);
}
}
updateParentElement(this);
return m_isMouseOnElement;
}
int crElement::drawElement(Display dc, Display down_dc)
{
if(!getShow()) return 1;
preDraw();
switch(m_drawMode)
{
case Draw_Copy:
return drawStageCopy(dc, down_dc);
case Draw_Mask:
return drawStageMask(dc, down_dc);
case Draw_Transparent:
return drawStageTransparent(dc, down_dc);
}
return 1;
}
void crElement::initWindow()
{
if(m_parentStage && !m_parentElementName.empty())
m_parentElement = m_parentStage->getElement(m_parentElementName);
if( m_initWindowEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_initWindowEventCallbacks.begin(); itr != m_initWindowEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_InitWindow,NULL));
if(handle)
{
handle->inputParam(0,this);
excHandle(handle);
}
}
void crElement::destroyWindow()
{
if( m_destroyWindowEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_destroyWindowEventCallbacks.begin(); itr != m_destroyWindowEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_DestroyWindow,NULL));
if(handle)
{
handle->inputParam(0,this);
excHandle(handle);
}
}
void crElement::mouseOn()
{
if( m_mouseOnEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_mouseOnEventCallbacks.begin(); itr != m_mouseOnEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_MouseOn,NULL));
if(handle)
{
handle->inputParam(0,this);
excHandle(handle);
}
}
void crElement::getFocus()
{
if(m_focus) return;
m_focus = true;
if( m_getFocusEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_getFocusEventCallbacks.begin(); itr != m_getFocusEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_GetFocus,NULL));
if(handle)
{
handle->inputParam(0,this);
excHandle(handle);
}
}
void crElement::lostFocus()
{
if(getCapture())
releaseCapture();
m_focus = false;
if( m_lostFocusEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_lostFocusEventCallbacks.begin(); itr != m_lostFocusEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_LostFocus,NULL));
if(handle)
{
handle->inputParam(0,this);
excHandle(handle);
}
updateData();
}
void crElement::setFocus()
{
if(m_canFocus && m_parentStage) m_parentStage->setFocusElement(this);
}
void crElement::updateData()
{
//updateParentElement(this);
if( m_updateDataEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_updateDataEventCallbacks.begin(); itr != m_updateDataEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_UpdateData,NULL));
if(handle)
{
handle->inputParam(0,this);
excHandle(handle);
}
}
void crElement::frame(float dt)
{
crHandle *handle = getHandle(MAKEINT64(WCH_UI_Frame,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-3,&dt);
excHandle(handle);
}
}
void crElement::preDraw()
{
if( m_preDrawEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_preDrawEventCallbacks.begin(); itr != m_preDrawEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_PreDraw,NULL));
if(handle)
{
handle->inputParam(0,this);
excHandle(handle);
}
}
void crElement::mouseMove(int mx, int my)
{
if( m_mouseMoveEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_mouseMoveEventCallbacks.begin(); itr != m_mouseMoveEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_MouseMove,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::lButtonDown(int mx, int my)
{
if( m_lButtonDownEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_lButtonDownEventCallbacks.begin(); itr != m_lButtonDownEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_LBtnDown,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::rButtonDown(int mx, int my)
{
if( m_rButtonDownEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_rButtonDownEventCallbacks.begin(); itr != m_rButtonDownEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_RBtnDown,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::mButtonDown(int mx, int my)
{
if( m_mButtonDownEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_mButtonDownEventCallbacks.begin(); itr != m_mButtonDownEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_MBtnDown,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::lButtonUp(int mx, int my)
{
if( m_lButtonUpEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_lButtonUpEventCallbacks.begin(); itr != m_lButtonUpEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_LBtnUp,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::rButtonUp(int mx, int my)
{
if( m_rButtonUpEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_rButtonUpEventCallbacks.begin(); itr != m_rButtonUpEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_RBtnUp,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::mButtonUp(int mx, int my)
{
if( m_mButtonUpEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_mButtonUpEventCallbacks.begin(); itr != m_mButtonUpEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_MBtnUp,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::lButtonDblClk(int mx, int my)
{
if( m_lButtonDblClkEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_lButtonDblClkEventCallbacks.begin(); itr != m_lButtonDblClkEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_LBtnDblClk,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::rButtonDblClk(int mx, int my)
{
if( m_rButtonDblClkEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_rButtonDblClkEventCallbacks.begin(); itr != m_rButtonDblClkEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_RBtnDblClk,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::mButtonDblClk(int mx, int my)
{
if( m_mButtonDblClkEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_mButtonDblClkEventCallbacks.begin(); itr != m_mButtonDblClkEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_MBtnDblClk,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::mouseWheel(int mx, int my)
{
if( m_mouseWheelEventCallbacks.size() > 0 )
{
for( CallbackVec::iterator itr = m_mouseWheelEventCallbacks.begin(); itr != m_mouseWheelEventCallbacks.end(); itr++ )
{
(*itr)->initCallbackTask();
if(dynamic_cast<Callback *>(itr->get()))
(*(dynamic_cast<Callback *>(itr->get())))(*this);
else (*(itr->get()))();
if(!(*itr)->continueCallbackTask()) break;
}
}
crHandle *handle = getHandle(MAKEINT64(WCH_UI_MouseWheel,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
void crElement::mouseDrag(int mx, int my)
{
crHandle *handle = getHandle(MAKEINT64(WCH_UI_MouseDrag,NULL));
if(handle)
{
handle->inputParam(0,this);
handle->inputParam(-1,&mx);
handle->inputParam(-2,&my);
excHandle(handle);
}
}
crElement::BMPCacheMap crElement::s_bmpCacheMap;
void crElement::clearBmpCache()
{
for( BMPCacheMap::iterator itr = s_bmpCacheMap.begin();
itr != s_bmpCacheMap.end();
++itr )
{
DeleteObject(itr->second);
}
s_bmpCacheMap.clear();
}
HBITMAP crElement::getOrLoadBmp(const std::string &fileName,const crVector2i& imageSize)
{
BMPCacheMap::iterator itr = s_bmpCacheMap.find(fileName);
if(itr == s_bmpCacheMap.end())
{
HBITMAP hImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),fileName.c_str(),IMAGE_BITMAP,imageSize[0],imageSize[1],LR_LOADFROMFILE);
s_bmpCacheMap[fileName] = hImage;
return hImage;
}
return itr->second;
}
void crElement::setElementImage( const std::string& image, const crVector2i& imageSize, const crVector2i& elementPos )
{
m_imageName = image;
if(m_hImage)
DeleteObject(m_hImage);
//CRCore::notify(CRCore::ALWAYS)<<"setElementImage "<<m_imageName.c_str()<<imageSize<<elementPos<<std::endl;
//HBITMAP hLoadedImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),m_imageName.c_str(),IMAGE_BITMAP,imageSize[0],imageSize[1],LR_LOADFROMFILE);
HBITMAP hLoadedImage = getOrLoadBmp(m_imageName,imageSize);
HDC dcDest=CreateCompatibleDC(NULL);
HDC dcSrc=CreateCompatibleDC(NULL);
HWND desktopWnd = GetDesktopWindow();
HDC safeDC = GetDC(desktopWnd);
m_hImage = CreateCompatibleBitmap(safeDC,m_rect[2],m_rect[3]);//注:如果是内存DC,CreateCompatibleBitmap返回的img在绘图时候会出错
SelectObject(dcDest,m_hImage);
SelectObject(dcSrc,hLoadedImage);
BitBlt(dcDest,0,0,m_rect[2],m_rect[3],dcSrc,elementPos[0],elementPos[1],SRCCOPY);
//DeleteObject(hLoadedImage);
DeleteDC(dcSrc);
DeleteDC(dcDest);
ReleaseDC(desktopWnd,safeDC);
//DeleteDC(safeDC);
}
void crElement::setElementMouseOnImage( const std::string& image, const crVector2i& imageSize, const crVector2i& elementPos )
{
m_mouseOnImageName = image;
if(m_hMouseOnImage)
DeleteObject(m_hMouseOnImage);
//CRCore::notify(CRCore::ALWAYS)<<"setElementImage "<<m_imageName.c_str()<<imageSize<<elementPos<<std::endl;
//HBITMAP hLoadedImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),m_imageName.c_str(),IMAGE_BITMAP,imageSize[0],imageSize[1],LR_LOADFROMFILE);
HBITMAP hLoadedImage = getOrLoadBmp(m_mouseOnImageName,imageSize);
HDC dcDest=CreateCompatibleDC(NULL);
HDC dcSrc=CreateCompatibleDC(NULL);
HWND desktopWnd = GetDesktopWindow();
HDC safeDC = GetDC(desktopWnd);
m_hMouseOnImage = CreateCompatibleBitmap(safeDC,m_rect[2],m_rect[3]);//注:如果是内存DC,CreateCompatibleBitmap返回的img在绘图时候会出错
SelectObject(dcDest,m_hMouseOnImage);
SelectObject(dcSrc,hLoadedImage);
BitBlt(dcDest,0,0,m_rect[2],m_rect[3],dcSrc,elementPos[0],elementPos[1],SRCCOPY);
//DeleteObject(hLoadedImage);
DeleteDC(dcSrc);
DeleteDC(dcDest);
ReleaseDC(desktopWnd,safeDC);
//DeleteDC(safeDC);
}
void crElement::setElementDownImage( const std::string& image, const crVector2i& imageSize, const crVector2i& elementPos )
{
m_downImageName = image;
if(m_hDownImage)
DeleteObject(m_hDownImage);
//HBITMAP hLoadedImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),m_downImageName.c_str(),IMAGE_BITMAP,imageSize[0],imageSize[1],LR_LOADFROMFILE);
//CRCore::notify(CRCore::ALWAYS)<<"setElementDownImage "<<m_downImageName.c_str()<<std::endl;
HBITMAP hLoadedImage = getOrLoadBmp(m_downImageName,imageSize);
HDC dcDest=CreateCompatibleDC(NULL);
HDC dcSrc=CreateCompatibleDC(NULL);
HWND desktopWnd = GetDesktopWindow();
HDC safeDC = GetDC(desktopWnd);
m_hDownImage = CreateCompatibleBitmap(safeDC,m_rect[2],m_rect[3]);
SelectObject(dcDest,m_hDownImage);
SelectObject(dcSrc,hLoadedImage);
BitBlt(dcDest,0,0,m_rect[2],m_rect[3],dcSrc,elementPos[0],elementPos[1],SRCCOPY);
//DeleteObject(hLoadedImage);
DeleteDC(dcDest);
DeleteDC(dcSrc);
ReleaseDC(desktopWnd,safeDC);
//DeleteDC(safeDC);
}
void crElement::setElementMaskImage( const std::string& image, const crVector2i& imageSize, const crVector2i& elementPos )
{
m_maskImageName = image;
if(m_hMaskImage)
DeleteObject(m_hMaskImage);
//HBITMAP hLoadedImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),m_maskImageName.c_str(),IMAGE_BITMAP,imageSize[0],imageSize[1],LR_LOADFROMFILE);
HBITMAP hLoadedImage = getOrLoadBmp(m_maskImageName,imageSize);
HDC dcDest=CreateCompatibleDC(NULL);
HDC dcSrc=CreateCompatibleDC(NULL);
HWND desktopWnd = GetDesktopWindow();
HDC safeDC = GetDC(desktopWnd);
m_hMaskImage = CreateCompatibleBitmap(safeDC,m_rect[2],m_rect[3]);
SelectObject(dcDest,m_hMaskImage);
SelectObject(dcSrc,hLoadedImage);
BitBlt(dcDest,0,0,m_rect[2],m_rect[3],dcSrc,elementPos[0],elementPos[1],SRCCOPY);
//DeleteObject(hLoadedImage);
DeleteDC(dcDest);
DeleteDC(dcSrc);
ReleaseDC(desktopWnd,safeDC);
//DeleteDC(safeDC);
}
void crElement::setElementDisableImage( const std::string& image, const crVector2i& imageSize, const crVector2i& elementPos )
{
m_disableImageName = image;
if(m_hDisableImage)
DeleteObject(m_hDisableImage);
//HBITMAP hLoadedImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),m_disableImageName.c_str(),IMAGE_BITMAP,imageSize[0],imageSize[1],LR_LOADFROMFILE);
HBITMAP hLoadedImage = getOrLoadBmp(m_disableImageName,imageSize);
HDC dcDest=CreateCompatibleDC(NULL);
HDC dcSrc=CreateCompatibleDC(NULL);
HWND desktopWnd = GetDesktopWindow();
HDC safeDC = GetDC(desktopWnd);
m_hDisableImage = CreateCompatibleBitmap(safeDC,m_rect[2],m_rect[3]);
SelectObject(dcDest,m_hDisableImage);
SelectObject(dcSrc,hLoadedImage);
BitBlt(dcDest,0,0,m_rect[2],m_rect[3],dcSrc,elementPos[0],elementPos[1],SRCCOPY);
//DeleteObject(hLoadedImage);
DeleteDC(dcDest);
DeleteDC(dcSrc);
ReleaseDC(desktopWnd,safeDC);
//DeleteDC(safeDC);
}
//////////////////////////////////////////////////////////////////////////
//
//crButtonElement
//
//////////////////////////////////////////////////////////////////////////
crButtonElement::crButtonElement(const crButtonElement& element):
crElement(element)
{
}
void crButtonElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
crElement::load(cfg_script, widthScale, heightScale);
}
bool crButtonElement::testButtons(int mx, int my, int mouseButtonMsg)
{
m_isMouseOnElement = pressed(mx,my);
return crElement::testButtons(mx,my,mouseButtonMsg);
}
int crButtonElement::drawStageCopy(Display dc, Display down_dc)
{
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(dc);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(/*m_focus||*/m_isMouseOnElement)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crButtonElement::drawStageMask(Display dc, Display down_dc)
{
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(/*m_focus||*/m_isMouseOnElement)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
//////////////////////////////////////////////////////////////////////////
//
//crCheckBoxElement
//
//////////////////////////////////////////////////////////////////////////
crCheckBoxElement::crCheckBoxElement(const crCheckBoxElement& element):
crElement(element),
m_select(element.m_select)
{
}
void crCheckBoxElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
int int1;
if(cfg_script.Get("Select", int1))
setSelect(int1);
crElement::load(cfg_script,widthScale,heightScale);
}
bool crCheckBoxElement::testButtons(int mx, int my, int mouseButtonMsg)
{
if(pressed(mx,my))
{
m_isMouseOnElement = true;
if(mouseButtonMsg == WM_LBUTTONDOWN)
{
setSelect(!m_select);
}
}
else m_isMouseOnElement = false;
return crElement::testButtons(mx,my,mouseButtonMsg);
}
void crCheckBoxElement::setSelect( bool select )
{
m_select = select;
}
void crCheckBoxElement::select(bool select)
{
if(m_select != select)
{
m_select = select;
updateData();
}
}
int crCheckBoxElement::drawStageCopy(Display dc, Display down_dc)
{
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_select)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crCheckBoxElement::drawStageMask(Display dc, Display down_dc)
{
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_select)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
//////////////////////////////////////////////////////////////////////////
//
//crRadioElement
//
//////////////////////////////////////////////////////////////////////////
crRadioElement::crRadioElement(const crRadioElement& element):
crElement(element),
m_select(element.m_select)
{
}
void crRadioElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
crElement::load(cfg_script,widthScale,heightScale);
}
bool crRadioElement::testButtons(int mx, int my, int mouseButtonMsg)
{
if(pressed(mx,my))
{
m_isMouseOnElement = true;
if(mouseButtonMsg == WM_LBUTTONDOWN)
{
setSelect(true);
}
}
else m_isMouseOnElement = false;
return crElement::testButtons(mx,my,mouseButtonMsg);
}
void crRadioElement::setSelect( bool select )
{
if(m_select != select)
{
m_select = select;
updateData();
}
}
int crRadioElement::drawStageCopy(Display dc, Display down_dc)
{
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_select)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crRadioElement::drawStageMask(Display dc, Display down_dc)
{
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_select)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
//////////////////////////////////////////////////////////////////////////
//
//crRadioGroupElement
//
//////////////////////////////////////////////////////////////////////////
crRadioGroupElement::crRadioGroupElement():
m_initSelectedIndex(0),
m_currentSelect(0)
{
}
crRadioGroupElement::crRadioGroupElement(const crRadioGroupElement& element):
crElement(element),
m_initSelectedIndex(element.m_initSelectedIndex),
m_currentSelect(element.m_currentSelect)
{
}
crRadioGroupElement::~crRadioGroupElement()
{
//for( RadioGroup::iterator itr = m_radioGroup.begin();
// itr != m_radioGroup.end();
// ++itr )
//{
// (*itr)->setParentElement(NULL);
//}
}
void crRadioGroupElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
int nRadio = 1;
std::string str;
while(cfg_script.Get("RadioElement",str, nRadio++))
{
m_radioNameGroup.push_back(str);
}
cfg_script.Get("InitSelectedIndex",m_initSelectedIndex);
crElement::load(cfg_script,widthScale,heightScale);
}
void crRadioGroupElement::initWindow()
{
crRadioElement *radio;
for( RadioNameGroup::iterator itr = m_radioNameGroup.begin();
itr != m_radioNameGroup.end();
++itr )
{
radio = dynamic_cast<crRadioElement *>(m_parentStage->getElement(*itr));
if(radio)
m_radioGroup.push_back(radio);
else
CRCore::notify(CRCore::WARN)<<"crRadioGroupElement::initWindow(): RadioElement("<<this->getName()<<") Not Find RadioElement("<<itr->c_str()<<"). StageNameID = "<<m_parentStage->getName()<<std::endl;
}
if(m_radioGroup.empty())
{
CRCore::notify(CRCore::WARN)<<"crRadioGroupElement::initWindow(): RadioElement("<<this->getName()<<") is empty. StageNameID = "<<m_parentStage->getName()<<std::endl;
}
else
{
if(m_initSelectedIndex<0 || m_initSelectedIndex>m_radioGroup.size())
{
m_initSelectedIndex = 0;
CRCore::notify(CRCore::WARN)<<"crRadioGroupElement::initWindow(): RadioElement("<<this->getName()<<") InitSelectedIndex error. StageNameID = "<<m_parentStage->getName()<<std::endl;
}
if(m_currentSelect != m_initSelectedIndex)
{
m_radioGroup[m_currentSelect]->setSelect(false);
m_currentSelect = m_initSelectedIndex;
}
m_radioGroup[m_currentSelect]->setSelect(true);
}
crElement::initWindow();
}
void crRadioGroupElement::updateParentElement(crElement *element)
{
crRadioElement *radio = dynamic_cast<crRadioElement *>(element);
if(radio && radio->getSelect())
{
int i = 0;
int selectIndex = 0;
for( RadioGroup::iterator itr = m_radioGroup.begin();
itr != m_radioGroup.end();
++itr, ++i )
{
if(itr->get() == radio)
{
selectIndex = i;
break;
}
}
if(selectIndex != m_currentSelect)
{
m_radioGroup[m_currentSelect]->setSelect(false);
m_currentSelect = selectIndex;
}
}
crElement::updateParentElement(this);
}
void crRadioGroupElement::select(int index)
{
if(!m_radioGroup.empty())
{
if(index<0) index = 0;
if (index>m_radioGroup.size())
{
index = m_radioGroup.size();
}
if(index != m_currentSelect)
{
m_radioGroup[m_currentSelect]->setSelect(false);
m_currentSelect = index;
m_radioGroup[m_currentSelect]->setSelect(true);
}
}
}
int crRadioGroupElement::getSelect()
{
return m_currentSelect;
}
crRadioGroupElement::RadioGroup &crRadioGroupElement::getRadioGroup()
{
return m_radioGroup;
}
//////////////////////////////////////////////////////////////////////////
//
//crScrollBarElement
//
//////////////////////////////////////////////////////////////////////////
crScrollBarElement::crScrollBarElement():
m_value(0.0),
m_backup_value(0.0),
m_lineValue(1.0),
m_pageValue(5.0),
m_buttonRange(32),
m_hold(false),
m_buttonClicked(0),
m_lastMouseValue(0),
m_scrollBarType(HORIZONTALBAR)
{
//m_range.set(0.0,10.0);
setCanFocus(false);
}
crScrollBarElement::crScrollBarElement(const crScrollBarElement& element):
crElement(element),
m_value(element.m_value),
m_lineValue(element.m_lineValue),
m_pageValue(element.m_pageValue),
m_buttonRange(element.m_buttonRange),
m_hold(false),
m_buttonClicked(0),
m_lastMouseValue(0),
m_scrollBarType(element.m_scrollBarType)
{
}
void crScrollBarElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
int temp,int1;
float flt1;
std::vector<float> v_i;
cfg_script.Get("ScrollBarType", str);
temp = 0;
if(str.compare("HORIZONTALBAR")==0)
{
temp = 0;
setScrollBarType(crScrollBarElement::HORIZONTALBAR);
}
else if(str.compare("VERTICALBAR")==0)
{
temp = 1;
setScrollBarType(crScrollBarElement::VERTICALBAR);
}
if(cfg_script.Get("ButtonRange", int1))
{
if(temp == 0)
setButtonRange((float)int1 * widthScale);
else if(temp == 1)
setButtonRange((float)int1 * heightScale);
}
if(cfg_script.Get("LineValue", flt1))
setLineValue(flt1);
if(cfg_script.Get("PageValue", flt1))
setPageValue(flt1);
if(cfg_script.Get("Range", v_i))
setRange(v_i[0],v_i[1]);
crElement::load(cfg_script,widthScale,heightScale);
}
bool crScrollBarElement::testButtons(int mx, int my, int mouseButtonMsg )
{
if(m_range[1] == m_range[0])
return false;
if(pressed(mx,my))
{
m_isMouseOnElement = true;
float scrollValueRange;//滚动条值范围
float barWindowSize;//滚动条实际长度
float scrollBtnWidth;//滚动条按钮长度
float _pos;//滚动条按钮起点位置
float _far;//滚动条按钮终点位置
switch(m_scrollBarType)
{
case HORIZONTALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[2] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[0] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue ;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
break;
case VERTICALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[3] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[1] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
break;
}
if(mouseButtonMsg == WM_LBUTTONDOWN)
{
switch(m_scrollBarType)
{
case HORIZONTALBAR:
if(mx - m_rect[0] < m_buttonRange)
{
m_value -= m_lineValue;
m_buttonClicked = -1;
break;
}
else if(getElementRight() - mx < m_buttonRange)
{
m_value += m_lineValue;
m_buttonClicked = 1;
break;
}
if(mx < _pos)
{
m_value -= m_pageValue;
}
else if(mx > _far)
{
m_value += m_pageValue;
}
else
{
m_lastMouseValue = mx;
m_hold = true;
}
break;
case VERTICALBAR:
if(my - m_rect[1] < m_buttonRange)
{
m_value -= m_lineValue;
m_buttonClicked = -1;
break;
}
else if(getElementBottom() - my < m_buttonRange)
{
m_value += m_lineValue;
m_buttonClicked = 1;
break;
}
if(my < _pos)
{
m_value -= m_pageValue;
}
else if(my > _far)
{
m_value += m_pageValue;
}
else
{
m_lastMouseValue = my;
m_hold = true;
}
break;
}
}
else if(m_hold && mouseButtonMsg == WM_MOUSEMOVE)
{
switch(m_scrollBarType)
{
case HORIZONTALBAR:
if(mx - m_rect[0] < m_buttonRange)
{
m_value = m_range[0];
break;
}
else if(getElementRight() - mx < m_buttonRange)
{
m_value = m_range[1];
break;
}
else
{
m_value += float((mx - m_lastMouseValue)/barWindowSize) * scrollValueRange + m_range[0];
m_lastMouseValue = mx;
}
break;
case VERTICALBAR:
if(my - m_rect[1] < m_buttonRange)
{
m_value = m_range[0];
break;
}
else if(getElementBottom() - my < m_buttonRange)
{
m_value = m_range[1];
break;
}
else
{
m_value += float((my - m_lastMouseValue)/barWindowSize) * scrollValueRange + m_range[0];
m_lastMouseValue = my;
}
break;
}
}
else if(m_hold && mouseButtonMsg == WM_LBUTTONUP)
{
m_hold = false;
switch(m_scrollBarType)
{
case HORIZONTALBAR:
if(mx - m_rect[0] < m_buttonRange)
{
m_value = m_range[0];
break;
}
else if(getElementRight() - mx < m_buttonRange)
{
m_value = m_range[1];
break;
}
else if(mx < _pos || mx > _far)
m_value = float((mx - m_rect[0] - m_buttonRange)/barWindowSize) * scrollValueRange + m_range[0];
break;
case VERTICALBAR:
if(my - m_rect[1] < m_buttonRange)
{
m_value = m_range[0];
break;
}
else if(getElementBottom() - my < m_buttonRange)
{
m_value = m_range[1];
break;
}
else if(my < _pos || my > _far)
m_value = float((my - m_rect[1] - m_buttonRange)/barWindowSize) * scrollValueRange + m_range[0];
break;
}
}
if(m_value<m_range[0]) m_value = m_range[0];
else if(m_value>m_range[1]) m_value = m_range[1];
updateData();
}
else
{
if(m_hold && mouseButtonMsg == WM_MOUSEMOVE)
{
float scrollValueRange;
float barWindowSize;
float scrollBtnWidth;
float _pos;
float _far;
switch(m_scrollBarType)
{
case HORIZONTALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[2] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[0] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue ;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
break;
case VERTICALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[3] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[1] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
break;
}
switch(m_scrollBarType)
{
case HORIZONTALBAR:
if(mx - m_rect[0] < m_buttonRange)
{
m_value = m_range[0];
break;
}
else if(getElementRight() - mx < m_buttonRange)
{
m_value = m_range[1];
break;
}
else
{
m_value += float((mx - m_lastMouseValue)/barWindowSize) * scrollValueRange + m_range[0];
m_lastMouseValue = mx;
}
break;
case VERTICALBAR:
if(my - m_rect[1] < m_buttonRange)
{
m_value = m_range[0];
break;
}
else if(getElementBottom() - my < m_buttonRange)
{
m_value = m_range[1];
break;
}
else
{
m_value += float((my - m_lastMouseValue)/barWindowSize) * scrollValueRange + m_range[0];
m_lastMouseValue = my;
}
break;
}
if(m_value<m_range[0]) m_value = m_range[0];
else if(m_value>m_range[1]) m_value = m_range[1];
updateData();
}
else if(mouseButtonMsg == WM_LBUTTONUP)
m_hold = false;
m_isMouseOnElement = false;
}
return crElement::testButtons(mx,my,mouseButtonMsg);
}
int crScrollBarElement::drawStageCopy(Display dc, Display down_dc)
{
if(m_range[1] == m_range[0])
return true;
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hDownImage)
SelectObject(mdc,m_hDownImage);
float scrollValueRange,barWindowSize,scrollBtnWidth,_pos,_far;
switch(m_scrollBarType)
{
case HORIZONTALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[2] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[0] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue ;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
if(m_hDownImage)
{
BitBlt(dc,_pos,m_rect[1],scrollBtnWidth,m_rect[3],mdc,_pos - m_rect[0],0,SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_buttonRange,m_rect[3],mdc,0,0,SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,getElementRight() - m_buttonRange,m_rect[1],m_buttonRange,m_rect[3],mdc,m_rect[2],0,SRCCOPY);
m_buttonClicked = 0;
}
else
{
BitBlt(dc,_pos,m_rect[1],scrollBtnWidth,m_rect[3],down_dc,_pos,m_rect[1],SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_buttonRange,m_rect[3],down_dc,m_rect[0],m_rect[1],SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,getElementRight() - m_buttonRange,m_rect[1],m_buttonRange,m_rect[3],down_dc,getElementRight() - m_buttonRange,m_rect[1],SRCCOPY);
m_buttonClicked = 0;
}
//BitBlt(dc,m_rect[0],m_rect[1],_far,m_rect[3],mdc,m_rect[0],m_rect[1],SRCCOPY);
break;
case VERTICALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[3] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[1] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
if(m_hDownImage)
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,mdc,0,_pos - m_rect[1],SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_buttonRange,mdc,0,0,SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,m_rect[0],getElementBottom() - m_buttonRange,m_rect[2],m_buttonRange,mdc,0,m_rect[3],SRCCOPY);
m_buttonClicked = 0;
}
else
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,down_dc,m_rect[0],_pos,SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_buttonRange,down_dc,m_rect[0],m_rect[1],SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,m_rect[0],getElementBottom() - m_buttonRange,m_rect[2],m_buttonRange,down_dc,m_rect[0],getElementBottom() - m_buttonRange,SRCCOPY);
m_buttonClicked = 0;
}
//BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,m_rect[0],m_rect[1],SRCCOPY);
break;
}
//else //need draw by parent
// noNeedFatherDraw = false;
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crScrollBarElement::drawStageMask(Display dc, Display down_dc)
{
if(m_range[1] == m_range[0])
return true;
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hDownImage)
SelectObject(mdc,m_hDownImage);
float scrollValueRange,barWindowSize,scrollBtnWidth,_pos,_far;
switch(m_scrollBarType)
{
case HORIZONTALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[2] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[0] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue ;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
if(m_hDownImage)
{
BitBlt(dc,_pos,m_rect[1],scrollBtnWidth,m_rect[3],mdc,_pos - m_rect[0],0,SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_buttonRange,m_rect[3],mdc,0,0,SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,getElementRight() - m_buttonRange,m_rect[1],m_buttonRange,m_rect[3],mdc,m_rect[2],0,SRCCOPY);
m_buttonClicked = 0;
}
else
{
BitBlt(dc,_pos,m_rect[1],scrollBtnWidth,m_rect[3],down_dc,_pos,m_rect[1],SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_buttonRange,m_rect[3],down_dc,m_rect[0],m_rect[1],SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,getElementRight() - m_buttonRange,m_rect[1],m_buttonRange,m_rect[3],down_dc,getElementRight() - m_buttonRange,m_rect[1],SRCCOPY);
m_buttonClicked = 0;
}
break;
case VERTICALBAR:
scrollValueRange = m_range[1] - m_range[0] + m_lineValue;
barWindowSize = m_rect[3] - m_buttonRange * 2;
scrollBtnWidth = m_lineValue * barWindowSize / scrollValueRange;
_pos = m_rect[1] + m_buttonRange + (m_value - m_range[0]) * scrollBtnWidth/m_lineValue;
_far = _pos + CRCore::maximum(5.0f,scrollBtnWidth);
if(m_hDownImage)
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,mdc,0,_pos - m_rect[1],SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_buttonRange,mdc,0,0,SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,m_rect[0],getElementRight() - m_buttonRange,m_rect[2],m_buttonRange,mdc,0,m_rect[3],SRCCOPY);
m_buttonClicked = 0;
}
else
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,down_dc,m_rect[0],_pos,SRCCOPY);
if(m_buttonClicked == -1)
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_buttonRange,down_dc,m_rect[0],m_rect[1],SRCCOPY);
else if(m_buttonClicked == 1)
BitBlt(dc,m_rect[0],getElementRight() - m_buttonRange,m_rect[2],m_buttonRange,down_dc,m_rect[0],getElementRight() - m_buttonRange,SRCCOPY);
m_buttonClicked = 0;
}
break;
}
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
void crScrollBarElement::setScrollBarType(ScrollBarType bar)
{
m_scrollBarType = bar;
}
crScrollBarElement::ScrollBarType crScrollBarElement::getScrollBarType()
{
return m_scrollBarType;
}
void crScrollBarElement::setRange(const CRCore::crVector2f &range)
{
m_range = range;
if(m_range[1]<m_range[0])
{
float temp = m_range[0];
m_range[0] = m_range[1];
m_range[1] = temp;
}
if(m_value<m_range[0]) m_value = m_range[0];
else if(m_value>m_range[1]) m_value = m_range[1];
}
void crScrollBarElement::setRange(float min, float max)
{
m_range[0] = min;
m_range[1] = max;
if(m_range[1]<m_range[0])
{
float temp = m_range[0];
m_range[0] = m_range[1];
m_range[1] = temp;
}
if(m_value<m_range[0]) m_value = m_range[0];
else if(m_value>m_range[1]) m_value = m_range[1];
}
const CRCore::crVector2f &crScrollBarElement::getRange()
{
return m_range;
}
void crScrollBarElement::setValue(float value)
{
if(value<m_range[0]) value = m_range[0];
else if(value>m_range[1]) value = m_range[1];
m_value = value;
}
float crScrollBarElement::getValue()
{
return m_value;
}
void crScrollBarElement::setLineValue(float lineValue)
{
m_lineValue = lineValue;
}
float crScrollBarElement::getLineValue()
{
return m_lineValue;
}
void crScrollBarElement::setPageValue(float pageValue)
{
m_pageValue = pageValue;
}
float crScrollBarElement::getPageValue()
{
return m_pageValue;
}
void crScrollBarElement::setButtonRange(int buttonRange)
{
m_buttonRange = buttonRange;
}
float crScrollBarElement::getButtonRange()
{
return m_buttonRange;
}
//////////////////////////////////////////////////////////////////////////
//
//crSliderElement
//
//////////////////////////////////////////////////////////////////////////
crSliderElement::crSliderElement():
m_value(0.0),
m_backup_value(0.0),
m_sliderBtnWidth(10),
m_lastMouseValue(0),
m_hold(false),
m_sliderBarType(HORIZONTALBAR)
{
}
crSliderElement::crSliderElement(const crSliderElement& element):
crElement(element),
m_value(element.m_value),
m_sliderBtnWidth(element.m_sliderBtnWidth),
m_lastMouseValue(0),
m_hold(false),
m_sliderBarType(element.m_sliderBarType)
{
}
void crSliderElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
int temp,int1;
std::vector<float> v_i;
cfg_script.Get("SliderBarType", str);
temp = 0;
if(str.compare("HORIZONTALBAR")==0)
{
temp = 0;
setSliderBarType(crSliderElement::HORIZONTALBAR);
}
else if(str.compare("VERTICALBAR")==0)
{
temp = 1;
setSliderBarType(crSliderElement::VERTICALBAR);
}
if(cfg_script.Get("SliderBtnWidth", int1))
{
if(temp == 0)
setSliderBtnWidth((float)int1 * widthScale);
else if(temp == 1)
setSliderBtnWidth((float)int1 * heightScale);
}
if(cfg_script.Get("Range", v_i))
setRange(v_i[0],v_i[1]);
crElement::load(cfg_script,widthScale,heightScale);
}
bool crSliderElement::testButtons(int mx, int my, int mouseButtonMsg )
{
if(m_range[1] == m_range[0])
return false;
if(pressed(mx,my))
{
m_isMouseOnElement = true;
float sliderValueRange;//Slider值范围
float barWindowSize;//Slider实际长度
switch(m_sliderBarType)
{
case HORIZONTALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[2];
break;
case VERTICALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[3];
break;
}
if(mouseButtonMsg == WM_LBUTTONDOWN)
{
switch(m_sliderBarType)
{
case HORIZONTALBAR:
m_lastMouseValue = mx;
m_hold = true;
break;
case VERTICALBAR:
m_lastMouseValue = my;
m_hold = true;
break;
}
}
else if(m_hold && mouseButtonMsg == WM_MOUSEMOVE)
{
switch(m_sliderBarType)
{
case HORIZONTALBAR:
m_value += float((mx - m_lastMouseValue)/barWindowSize) * sliderValueRange + m_range[0];
m_lastMouseValue = mx;
break;
case VERTICALBAR:
m_value += float((my - m_lastMouseValue)/barWindowSize) * sliderValueRange + m_range[0];
m_lastMouseValue = my;
break;
}
}
else if(m_hold && mouseButtonMsg == WM_LBUTTONUP)
{
m_hold = false;
switch(m_sliderBarType)
{
case HORIZONTALBAR:
m_value = float((mx - m_rect[0])/barWindowSize) * sliderValueRange + m_range[0];
break;
case VERTICALBAR:
m_value = float((my - m_rect[1])/barWindowSize) * sliderValueRange + m_range[0];
break;
}
}
if(m_value<m_range[0]) m_value = m_range[0];
else if(m_value>m_range[1]) m_value = m_range[1];
updateData();
}
else
{
if(m_hold && mouseButtonMsg == WM_MOUSEMOVE)
{
float sliderValueRange;//Slider值范围
float barWindowSize;//Slider实际长度
switch(m_sliderBarType)
{
case HORIZONTALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[2];
break;
case VERTICALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[3];
break;
}
switch(m_sliderBarType)
{
case HORIZONTALBAR:
m_value += float((mx - m_lastMouseValue)/barWindowSize) * sliderValueRange + m_range[0];
m_lastMouseValue = mx;
break;
case VERTICALBAR:
m_value += float((my - m_lastMouseValue)/barWindowSize) * sliderValueRange + m_range[0];
m_lastMouseValue = my;
break;
}
if(m_value<m_range[0]) m_value = m_range[0];
else if(m_value>m_range[1]) m_value = m_range[1];
updateData();
}
else if(mouseButtonMsg == WM_LBUTTONUP)
m_hold = false;
m_isMouseOnElement = false;
}
return crElement::testButtons(mx,my,mouseButtonMsg);
}
int crSliderElement::drawStageCopy(Display dc, Display down_dc)
{
if(m_range[1] == m_range[0])
return true;
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hDownImage)
SelectObject(mdc,m_hDownImage);
float sliderValueRange;//Slider值范围
float barWindowSize;//Slider实际长度
float _pos,_far;
switch(m_sliderBarType)
{
case HORIZONTALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[2] - m_sliderBtnWidth;
_pos = m_rect[0] + (m_value - m_range[0]) * barWindowSize/sliderValueRange;
_far = _pos + (float)m_sliderBtnWidth;
if(m_hDownImage)
{
BitBlt(dc,_pos,m_rect[1],m_sliderBtnWidth,m_rect[3],mdc,_pos - m_rect[0],0,SRCCOPY);
}
else
{
BitBlt(dc,_pos,m_rect[1],m_sliderBtnWidth,m_rect[3],down_dc,_pos,m_rect[1],SRCCOPY);
}
break;
case VERTICALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[3] - m_sliderBtnWidth;
_pos = m_rect[1] + (m_value - m_range[0]) * barWindowSize/sliderValueRange;
_far = _pos + (float)m_sliderBtnWidth;
if(m_hDownImage)
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,mdc,0,_pos - m_rect[1],SRCCOPY);
}
else
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,down_dc,m_rect[0],_pos,SRCCOPY);
}
break;
}
//else //need draw by parent
// noNeedFatherDraw = false;
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crSliderElement::drawStageMask(Display dc, Display down_dc)
{
if(m_range[1] == m_range[0])
return true;
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hDownImage)
SelectObject(mdc,m_hDownImage);
float sliderValueRange;//Slider值范围
float barWindowSize;//Slider实际长度
float _pos,_far;
switch(m_sliderBarType)
{
case HORIZONTALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[2]- m_sliderBtnWidth;
_pos = m_rect[0] + (m_value - m_range[0]) * barWindowSize/sliderValueRange;
_far = _pos + (float)m_sliderBtnWidth;
if(m_hDownImage)
{
BitBlt(dc,_pos,m_rect[1],m_sliderBtnWidth,m_rect[3],mdc,_pos - m_rect[0],0,SRCCOPY);
}
else
{
BitBlt(dc,_pos,m_rect[1],m_sliderBtnWidth,m_rect[3],down_dc,_pos,m_rect[1],SRCCOPY);
}
break;
case VERTICALBAR:
sliderValueRange = m_range[1] - m_range[0];
barWindowSize = m_rect[3]- m_sliderBtnWidth;
_pos = m_rect[1] + (m_value - m_range[0]) * barWindowSize/sliderValueRange;
_far = _pos + (float)m_sliderBtnWidth;
if(m_hDownImage)
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,mdc,0,_pos - m_rect[1],SRCCOPY);
}
else
{
BitBlt(dc,m_rect[0],_pos,m_rect[2],_far - _pos,down_dc,m_rect[0],_pos,SRCCOPY);
}
break;
}
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
void crSliderElement::setSliderBarType(SliderBarType bar)
{
m_sliderBarType = bar;
}
crSliderElement::SliderBarType crSliderElement::getSliderBarType()
{
return m_sliderBarType;
}
void crSliderElement::setRange(const CRCore::crVector2f &range)
{
m_range = range;
if(m_range[1]<m_range[0])
{
float temp = m_range[0];
m_range[0] = m_range[1];
m_range[1] = temp;
}
}
void crSliderElement::setRange(float min, float max)
{
m_range[0] = min;
m_range[1] = max;
if(m_range[1]<m_range[0])
{
float temp = m_range[0];
m_range[0] = m_range[1];
m_range[1] = temp;
}
}
const CRCore::crVector2f &crSliderElement::getRange()
{
return m_range;
}
void crSliderElement::setValue(float value)
{
if(value<m_range[0]) value = m_range[0];
else if(value>m_range[1]) value = m_range[1];
m_value = value;
}
float crSliderElement::getValue()
{
return m_value;
}
void crSliderElement::setSliderBtnWidth(int buttonRange)
{
m_sliderBtnWidth = buttonRange;
}
float crSliderElement::setSliderBtnWidth()
{
return m_sliderBtnWidth;
}
//////////////////////////////////////////////////////////////////////////
//
//crListBoxElement
//
//////////////////////////////////////////////////////////////////////////
crListBoxElement::crListBoxElement(const crListBoxElement& element):
crElement(element),
m_dataList(element.m_dataList),
m_select(element.m_select),
m_rowHeight(element.m_rowHeight),
m_textAttribute(element.m_textAttribute),
m_useLeftBtnSelect(element.m_useLeftBtnSelect),
m_listScrollBarName(element.m_listScrollBarName)
{
}
void crListBoxElement::setUseLeftBtnSelect(bool leftBtnSelect)
{
m_useLeftBtnSelect = leftBtnSelect;
}
CRCore::crVector4f crListBoxElement::getScrollRange()
{
float data_height = m_rowHeight * (getDataSize()+1);
float height = m_rect[3];
CRCore::crVector4f scrollRange;
if(data_height > height)
{
float x = (data_height - height) / float(m_rowHeight);
if(x > floor(x))
{
scrollRange[3] = floor(x) + 1;
}
else
scrollRange[3] = floor(x);
}
return scrollRange;
}
void crListBoxElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
int int1;
if(cfg_script.Get("TextAttribute", str))
{
setTextAttribute(crTextAttribute::getTextAttribute(str));
}
int nData = 1;
while (cfg_script.Get("Data", str,nData++))
{
addData(str);
}
if(cfg_script.Get("RowHeight", int1))
setRowHeight((float)int1 /* heightScale*/);
if(cfg_script.Get("Select", int1))
select(int1);
if(cfg_script.Get("UseLeftBtnSelect", int1))
setUseLeftBtnSelect(int1);
cfg_script.Get("ListScrollBarName",m_listScrollBarName);
crElement::load(cfg_script,widthScale,heightScale);
}
void crListBoxElement::initWindow()
{
m_listScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_listScrollBarName));
crElement::initWindow();
if(m_listScrollBar.valid())
{
crVector4f scrollRange = this->getScrollRange();
m_listScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
int vscrollValue = m_listScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_listScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_listScrollBar->setValue(vscrollValue);
}
}
}
void crListBoxElement::checkSelect()
{
if(isDataEmpty())
m_select = 0;
else
{
int size = getDataSize() - 1;
if(m_select>size) m_select = size;
}
}
void crListBoxElement::updateData()
{
checkSelect();
crElement::updateData();
if(m_listScrollBar.valid())
{
crVector4f scrollRange = this->getScrollRange();
m_listScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
int vscrollValue = m_listScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_listScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_listScrollBar->setValue(vscrollValue);
}
}
}
bool crListBoxElement::testButtons(int mx, int my, int mouseButtonMsg )
{
bool test = false;
if(getCapture() && m_listScrollBar.valid())
{
test = m_listScrollBar->testButtons(mx,my,mouseButtonMsg);
}
if(!test)
{
if(pressed(mx,my))
{
int vscrollValue = 0;
if(m_listScrollBar.valid()) vscrollValue = m_listScrollBar->getValue();
m_isMouseOnElement = true;
if(!m_useLeftBtnSelect || mouseButtonMsg == WM_LBUTTONDOWN)
{
int i = (my-m_rect[1])/m_rowHeight + vscrollValue;
if(i>=0 && i < getDataSize() && m_select != i)
{
select(i);
}
}
}
else
{
m_isMouseOnElement = false;
}
test = crElement::testButtons(mx,my,mouseButtonMsg);
}
return test;
}
int crListBoxElement::getMaxRowCanBeDisplay()
{
float x = float(m_rect[3])/float(m_rowHeight);
return x > floor(x)?floor(x)-1:floor(x)-2;
}
int crListBoxElement::drawStageCopy(Display dc, Display down_dc)
{
int vscrollValue = 0;
if(m_listScrollBar.valid()) vscrollValue = m_listScrollBar->getValue();
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_select>-1)
{
int _select = m_select - vscrollValue;
if(_select<0)
{
_select = 0;
//m_select = vscrollValue;
select(vscrollValue);
}
else
{
int maxrow = getMaxRowCanBeDisplay();
if(_select>maxrow) _select = maxrow;
//m_select = vscrollValue + _select;
select(vscrollValue + _select);
}
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,mdc,0,0,SRCCOPY);
}
else //need draw by parent
{
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,down_dc,m_rect[0],m_rect[1]+_select*m_rowHeight,SRCCOPY);
}
}
//draw data
m_dataMutex.lock();
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
int i = 0;
RECT rect;
for( DataList::iterator itr = m_dataList.begin() + vscrollValue;
itr != m_dataList.end();
++itr, ++i )
{
rect.left = m_rect[0] + TextRectOffset;
rect.top = m_rect[1]+i*m_rowHeight + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
rect.bottom = m_rect[1]+(i+1)*m_rowHeight - TextRectOffset;
if(rect.bottom>getElementBottom()) break;
DrawText(dc,itr->c_str(),itr->length(),&rect,DT_WORD_ELLIPSIS);
//ExtTextOut(dc,rect.left,rect.top,ETO_OPAQUE,&rect,itr->c_str(),itr->length(),NULL);
//TextOut(hdc,m_rect[0]+m_texOffset[0],m_rect[1]+i*m_rowHeight+m_texOffset[1],itr->c_str(),itr->length());
}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
m_dataMutex.unlock();
//BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crListBoxElement::drawStageMask(Display dc, Display down_dc)
{
int vscrollValue = m_listScrollBar.valid()?m_listScrollBar->getValue():0;
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_select>-1)
{
int _select = m_select - vscrollValue;
if(_select<0)
{
_select = 0;
m_select = vscrollValue;
}
else
{
int maxrow = getMaxRowCanBeDisplay();
if(_select>maxrow) _select = maxrow;
m_select = vscrollValue + _select;
}
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,0,_select*m_rowHeight,m_rect[2],m_rowHeight,mdc,0,0,SRCCOPY);
}
else //need draw by parent
{
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,down_dc,m_rect[0],m_rect[1]+_select*m_rowHeight,SRCCOPY);
}
}
//draw data
m_dataMutex.lock();
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(bufdc);
int i = 0;
RECT rect;
for( DataList::iterator itr = m_dataList.begin() + vscrollValue;
itr != m_dataList.end();
++itr, ++i )
{
rect.left = m_rect[0] + TextRectOffset;
rect.top = m_rect[1]+i*m_rowHeight + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
rect.bottom = m_rect[1]+(i+1)*m_rowHeight - TextRectOffset;
if(rect.bottom>getElementBottom()) break;
DrawText(bufdc,itr->c_str(),itr->length(),&rect,DT_WORD_ELLIPSIS);
//ExtTextOut(bufdc,rect.left,rect.top,ETO_OPAQUE,&rect,itr->c_str(),itr->length(),NULL);
//TextOut(hdc,m_rect[0]+m_texOffset[0],m_rect[1]+i*m_rowHeight+m_texOffset[1],itr->c_str(),itr->length());
}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(bufdc);
m_dataMutex.unlock();
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
void crListBoxElement::clearData()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
m_dataList.clear();
}
void crListBoxElement::addData(const std::string& data)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
m_dataList.push_back(data);
}
void crListBoxElement::deleteCurrentRow()
{
if(!isDataEmpty())
{
m_dataMutex.lock();
int i = getSelect();
DataList::iterator itr = m_dataList.begin();
itr+=i;
m_dataList.erase(itr);
m_dataMutex.unlock();
}
}
void crListBoxElement::insertData(unsigned int index, const std::string &data)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
if (index >= m_dataList.size())
{
m_dataList.push_back(data);
}
else
{
m_dataList.insert(m_dataList.begin()+index, data);
}
}
int crListBoxElement::getDataSize()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
return m_dataList.size();
}
bool crListBoxElement::isDataEmpty()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
return m_dataList.empty();
}
bool crListBoxElement::getData(unsigned int index,std::string &data)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
if(index < m_dataList.size())
{
data = m_dataList[index];
return true;
}
return false;
}
bool crListBoxElement::modifyData(unsigned int index,const std::string &data)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
if(index < m_dataList.size())
{
m_dataList[index] = data;
return true;
}
return false;
}
void crListBoxElement::select(int index)
{
if(m_select!=index)
{
m_select = index;
if(m_listScrollBar.valid())
{
int vscrollValue = m_listScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_listScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_listScrollBar->setValue(vscrollValue);
}
}
updateData();
}
}
void crListBoxElement::setSelect(int index)
{
if(m_select!=index)
{
m_select = index;
if(m_listScrollBar.valid())
{
int vscrollValue = m_listScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_listScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_listScrollBar->setValue(vscrollValue);
}
}
}
}
int crListBoxElement::getSelect()
{
return m_select;
}
void crListBoxElement::setRowHeight(int height)
{
m_rowHeight = height;
}
int crListBoxElement::getRowHeight()
{
return m_rowHeight;
}
//////////////////////////////////////////////////////////////////////////
//
//crImageBoxElement
//
//////////////////////////////////////////////////////////////////////////
crImageBoxElement::crImageBoxElement(const crImageBoxElement& element):
crElement(element),
m_hScrollBarName(element.m_hScrollBarName),
m_vScrollBarName(element.m_vScrollBarName)
{
}
void crImageBoxElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
cfg_script.Get("HScrollBarName",m_hScrollBarName);
cfg_script.Get("VScrollBarName",m_vScrollBarName);
crElement::load(cfg_script,widthScale,heightScale);
}
CRCore::crVector4f crImageBoxElement::getScrollRange()
{
if(!m_hImage) return crVector4f(0.0,0.0,0.0,0.0);
BITMAP bmp;
GetObject(m_hImage, sizeof(BITMAP), (LPSTR)&bmp);
int width = bmp.bmWidth - m_rect[2];
width = maximum(0,width);
int height = bmp.bmHeight - m_rect[3];
height = maximum(0,height);
return crVector4f(0.0f,width,0.0f,height);
}
void crImageBoxElement::initWindow()
{
m_hScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_hScrollBarName));
m_vScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_vScrollBarName));
crElement::initWindow();
crVector4f scrollRange = this->getScrollRange();
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
void crImageBoxElement::updateData()
{
crElement::updateData();
crVector4f scrollRange = this->getScrollRange();
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
bool crImageBoxElement::testButtons(int mx, int my, int mouseButtonMsg)
{
m_isMouseOnElement = pressed(mx,my);
return crElement::testButtons(mx,my,mouseButtonMsg);
}
bool crImageBoxElement::setImageFile( const std::string& file )
{
if(m_imageFile.compare(file) != 0)
{
if(m_hImage)
DeleteObject(m_hImage);
m_hImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),file.c_str(),IMAGE_BITMAP,m_rect[2],m_rect[3],LR_LOADFROMFILE);
m_imageFile = file;
return true;
}
return false;
}
void crImageBoxElement::resize(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
crElement::resize(cfg_script,widthScale,heightScale);
if(!m_imageFile.empty())
{
if(m_hImage)
DeleteObject(m_hImage);
m_hImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),m_imageFile.c_str(),IMAGE_BITMAP,m_rect[2],m_rect[3],LR_LOADFROMFILE);
}
}
int crImageBoxElement::drawStageCopy(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,hscrollValue,vscrollValue,SRCCOPY);
}
if(/*m_focus||*/m_isMouseOnElement)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,hscrollValue,vscrollValue,SRCCOPY);
}
}
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crImageBoxElement::drawStageMask(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,hscrollValue,vscrollValue,SRCCOPY);
}
if(/*m_focus||*/m_isMouseOnElement)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,hscrollValue,vscrollValue,SRCCOPY);
}
}
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,hscrollValue,vscrollValue,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,hscrollValue,vscrollValue,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,hscrollValue,vscrollValue,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
//////////////////////////////////////////////////////////////////////////
//
//crStaticTextBoxElement
//
//////////////////////////////////////////////////////////////////////////
crStaticTextBoxElement::crStaticTextBoxElement(const crStaticTextBoxElement& element):
crElement(element),
m_textAttribute(element.m_textAttribute),
m_stringArray(element.m_stringArray),
m_hScrollBarName(element.m_hScrollBarName),
m_vScrollBarName(element.m_vScrollBarName),
m_textFormat(element.m_textFormat)
{
}
void crStaticTextBoxElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
if(cfg_script.Get("TextAttribute", str))
{
setTextAttribute(crTextAttribute::getTextAttribute(str));
}
if(cfg_script.Get("Text", str))
{
setStringArrayByString(str);
}
cfg_script.Get("HScrollBarName",m_hScrollBarName);
cfg_script.Get("VScrollBarName",m_vScrollBarName);
m_textFormat = 0;
if(cfg_script.Get("TextFormat", str))
{
if(str.find("DT_LEFT") != std::string::npos)
{
m_textFormat |= DT_LEFT;
}
if(str.find("DT_CENTER") != std::string::npos)
{
m_textFormat |= DT_CENTER;
}
if(str.find("DT_RIGHT") != std::string::npos)
{
m_textFormat |= DT_RIGHT;
}
if(str.find("DT_VCENTER") != std::string::npos)
{
m_textFormat |= DT_VCENTER;
}
if(str.find("DT_BOTTOM") != std::string::npos)
{
m_textFormat |= DT_BOTTOM;
}
if(str.find("DT_WORDBREAK") != std::string::npos)
{
m_textFormat |= DT_WORDBREAK;
}
if(str.find("DT_SINGLELINE") != std::string::npos)
{
m_textFormat |= DT_SINGLELINE;
}
if(str.find("DT_EXPANDTABS") != std::string::npos)
{
m_textFormat |= DT_EXPANDTABS;
}
if(str.find("DT_TABSTOP") != std::string::npos)
{
m_textFormat |= DT_TABSTOP;
}
if(str.find("DT_NOCLIP") != std::string::npos)
{
m_textFormat |= DT_NOCLIP;
}
if(str.find("DT_EXTERNALLEADING") != std::string::npos)
{
m_textFormat |= DT_EXTERNALLEADING;
}
if(str.find("DT_CALCRECT") != std::string::npos)
{
m_textFormat |= DT_CALCRECT;
}
if(str.find("DT_NOPREFIX") != std::string::npos)
{
m_textFormat |= DT_NOPREFIX;
}
if(str.find("DT_INTERNAL") != std::string::npos)
{
m_textFormat |= DT_INTERNAL;
}
}
crElement::load(cfg_script,widthScale,heightScale);
}
void crStaticTextBoxElement::initWindow()
{
m_hScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_hScrollBarName));
m_vScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_vScrollBarName));
crElement::initWindow();
calcScroll();
}
void crStaticTextBoxElement::lockArray()
{
m_arrayMutex.lock();
}
void crStaticTextBoxElement::unLockArray()
{
m_arrayMutex.unlock();
}
void crStaticTextBoxElement::clearString()
{
m_arrayMutex.lock();
m_stringArray.clear();
m_arrayMutex.unlock();
updateData();
}
void crStaticTextBoxElement::updateData()
{
crElement::updateData();
calcScroll();
}
const crStaticTextBoxElement::StringArray& crStaticTextBoxElement::getStringArray() const
{
return m_stringArray;
}
crStaticTextBoxElement::StringArray& crStaticTextBoxElement::getStringArray()
{
return m_stringArray;
}
std::string crStaticTextBoxElement::getString(unsigned int i)
{
return i>=0&&!m_stringArray.empty()&&i<m_stringArray.size()?m_stringArray[i]:"";
}
unsigned int crStaticTextBoxElement::getNumStrings()
{
return m_stringArray.size();
}
void crStaticTextBoxElement::addString(const std::string& desc)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_arrayMutex);
m_stringArray.push_back(desc);
}
std::string crStaticTextBoxElement::getStringArrayInString()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_arrayMutex);
std::string str;
for( StringArray::const_iterator itr = m_stringArray.begin();
itr != m_stringArray.end();
++itr )
{
str += *itr;
}
return str;
}
void crStaticTextBoxElement::setStringArrayByString( const std::string &command )
{
m_arrayMutex.lock();
m_stringArray.clear();
m_arrayMutex.unlock();
//unsigned int stringLength = command.length();
unsigned int front_of_line = 0;
unsigned int end_of_line = 0;
while (end_of_line<command.size())
{
/*if (command[end_of_line]=='\r')
{
addString( std::string( command, front_of_line, end_of_line-front_of_line) );
if (end_of_line<command.size() &&
command[end_of_line]=='\n') ++end_of_line;
++end_of_line;
front_of_line = end_of_line;
}
else */if (command[end_of_line]=='\n')
{
++end_of_line;
addString( std::string( command, front_of_line, end_of_line-front_of_line) );
front_of_line = end_of_line;
}
else ++end_of_line;
}
if (front_of_line<end_of_line)
{
addString( std::string( command, front_of_line, end_of_line-front_of_line) );
}
// if(command[end_of_line-1]=='\n')
//addString( std::string( command, end_of_line-1, 1) );
updateData();
}
bool crStaticTextBoxElement::testButtons(int mx, int my, int mouseButtonMsg)
{
m_isMouseOnElement = pressed(mx,my);
return crElement::testButtons(mx,my,mouseButtonMsg);
// return false;
}
void crStaticTextBoxElement::calcScroll()
{
CRCore::crVector4f scrollRange;
if(!m_stringArray.empty())
{
int num_line = getNumStrings();
HDC dc;
dc=CreateCompatibleDC(NULL);
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
//RECT rect;
//rect.left = m_rect[0];
//rect.top = m_rect[1];
//rect.right = getElementRight();
//rect.bottom = getElementBottom();
//int rowHeight = DrawText(dc,"h",1,&rect,DT_INTERNAL);
SIZE s;
::GetTextExtentPoint32(dc,"H",1,&s);
int w = s.cx+1;
int h = s.cy+1;
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
DeleteDC(dc);
int height = m_rect[3];
int data_height = h * num_line;
if(data_height>height)
{
scrollRange[3] = data_height - height;
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setLineValue(h);
m_vScrollBar->setPageValue(4 * h);
}
m_arrayMutex.lock();
int maxsize = 0;
for( StringArray::iterator itr = m_stringArray.begin();
itr != m_stringArray.end();
++itr )
{
maxsize = CRCore::maximum((int)(itr->length()),maxsize);
}
m_arrayMutex.unlock();
int width = m_rect[2];
int data_width = w * (maxsize+1);
if(data_width>width)
{
scrollRange[1] = data_width - width;
}
if(m_hScrollBar.valid())
{
m_hScrollBar->setLineValue(w);
m_hScrollBar->setPageValue(4 * w);
}
}
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
int crStaticTextBoxElement::drawStageCopy(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC mdc,copy_dc;
HBITMAP copybmp;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(hscrollValue != 0 || vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
//draw data
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
RECT rect;
rect.left = m_rect[0] - hscrollValue + TextRectOffset;
rect.top = m_rect[1] - vscrollValue + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
rect.bottom = getElementBottom() - TextRectOffset;
//DrawText(dc,m_texString.c_str(),m_texString.length(),&rect,DT_WORDBREAK);
std::string strbuf = getStringArrayInString();
DrawText(dc,strbuf.c_str(),strbuf.length(),&rect,m_textFormat/*DT_INTERNAL|DT_WORDBREAK*/);
//int height = 0;
//for( StringArray::iterator itr = m_stringArray.begin();
// itr != m_stringArray.end();
// ++itr )
//{
// height = DrawText(dc,(*itr).c_str(),(*itr).length(),&rect,DT_WORDBREAK/*|DT_CALCRECT*/);
// //TextOut(dc,rect.left,rect.bottom,"aaa",3);
// //CRCore::notify(CRCore::ALWAYS)<<"DrawText str = "<<(*itr).c_str()<<std::endl;
// rect.top += height;
// if(rect.top>=rect.bottom)
// break;
//}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
if(hscrollValue != 0 || vscrollValue != 0)
{
crVector4i v4;
if(hscrollValue != 0)
{
v4[0] = m_rect[0] - hscrollValue;
v4[1] = m_rect[1];
v4[2] = hscrollValue;
v4[3] = m_rect[3];
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2];
v4[3] = vscrollValue;
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crStaticTextBoxElement::drawStageMask(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC bufdc,mdc,copy_dc;
HBITMAP bufbmp,copybmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(hscrollValue != 0 || vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
RECT rect;
rect.left = m_rect[0] - hscrollValue + TextRectOffset;
rect.top = m_rect[1] - vscrollValue + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
rect.bottom = getElementBottom() - TextRectOffset;
std::string strbuf = getStringArrayInString();
DrawText(dc,strbuf.c_str(),strbuf.length(),&rect,m_textFormat/*DT_INTERNAL|DT_WORDBREAK*/);
//int height = 0;
//for( StringArray::iterator itr = m_stringArray.begin();
// itr != m_stringArray.end();
// ++itr )
//{
// height = DrawText(dc,(*itr).c_str(),(*itr).length(),&rect,DT_WORDBREAK/*|DT_CALCRECT*/);
// rect.top += height;
// if(rect.top>=rect.bottom)
// break;
//}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
if(hscrollValue != 0 || vscrollValue != 0)
{
crVector4i v4;
if(hscrollValue != 0)
{
v4[0] = m_rect[0] - hscrollValue;
v4[1] = m_rect[1];
v4[2] = hscrollValue;
v4[3] = m_rect[3];
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2];
v4[3] = vscrollValue;
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
//////////////////////////////////////////////////////////////////////////
//
//crEditBoxElement
//
//////////////////////////////////////////////////////////////////////////
float crEditBoxElement::s_focusInterval = 0.5f;
crEditBoxElement::crEditBoxElement(const crEditBoxElement& element):
crElement(element),
m_textAttribute(element.m_textAttribute),
m_stringArray(element.m_stringArray),
m_hScrollBarName(element.m_hScrollBarName),
m_vScrollBarName(element.m_vScrollBarName),
m_multiLine(element.m_multiLine),
m_password(element.m_password),
m_textFormat(element.m_textFormat),
m_time(0L),m_hasfocurs(false),m_focusPos(0)
{
}
void crEditBoxElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
if(cfg_script.Get("TextAttribute", str))
{
setTextAttribute(crTextAttribute::getTextAttribute(str));
}
if(cfg_script.Get("Text", str))
{
setStringArrayByString(str);
}
cfg_script.Get("HScrollBarName",m_hScrollBarName);
cfg_script.Get("VScrollBarName",m_vScrollBarName);
int int1;
if(cfg_script.Get("MultiLine",int1))
m_multiLine = int1;
if(cfg_script.Get("Password",int1))
m_password = int1;
m_textFormat = 0;
if(cfg_script.Get("TextFormat", str))
{
if(str.find("DT_LEFT") != std::string::npos)
{
m_textFormat |= DT_LEFT;
}
if(str.find("DT_CENTER") != std::string::npos)
{
m_textFormat |= DT_CENTER;
}
if(str.find("DT_RIGHT") != std::string::npos)
{
m_textFormat |= DT_RIGHT;
}
if(str.find("DT_VCENTER") != std::string::npos)
{
m_textFormat |= DT_VCENTER;
}
if(str.find("DT_BOTTOM") != std::string::npos)
{
m_textFormat |= DT_BOTTOM;
}
if(str.find("DT_WORDBREAK") != std::string::npos)
{
m_textFormat |= DT_WORDBREAK;
}
if(str.find("DT_SINGLELINE") != std::string::npos)
{
m_textFormat |= DT_SINGLELINE;
}
if(str.find("DT_EXPANDTABS") != std::string::npos)
{
m_textFormat |= DT_EXPANDTABS;
}
if(str.find("DT_TABSTOP") != std::string::npos)
{
m_textFormat |= DT_TABSTOP;
}
if(str.find("DT_NOCLIP") != std::string::npos)
{
m_textFormat |= DT_NOCLIP;
}
if(str.find("DT_EXTERNALLEADING") != std::string::npos)
{
m_textFormat |= DT_EXTERNALLEADING;
}
if(str.find("DT_CALCRECT") != std::string::npos)
{
m_textFormat |= DT_CALCRECT;
}
if(str.find("DT_NOPREFIX") != std::string::npos)
{
m_textFormat |= DT_NOPREFIX;
}
if(str.find("DT_INTERNAL") != std::string::npos)
{
m_textFormat |= DT_INTERNAL;
}
}
crElement::load(cfg_script,widthScale,heightScale);
//setCanCapture(true);
}
void crEditBoxElement::initWindow()
{
m_hScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_hScrollBarName));
m_vScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_vScrollBarName));
crElement::initWindow();
calcScroll();
}
void crEditBoxElement::clearString()
{
m_arrayMutex.lock();
m_stringArray.clear();
m_arrayMutex.unlock();
updateData();
}
void crEditBoxElement::updateData()
{
crElement::updateData();
calcScroll();
std::string strbuf = getStringArrayInString();
if(isFocusOnShow())
m_focusPos = CRCore::maximum(CRCore::minimum(m_focusPos,(int)strbuf.size()+1),1);
else
m_focusPos = CRCore::maximum(CRCore::minimum(m_focusPos,(int)strbuf.size()),0);
}
void crEditBoxElement::calcScroll()
{
CRCore::crVector4f scrollRange;
if(!m_stringArray.empty())
{
int num_line = getNumStrings();
HDC dc;
dc=CreateCompatibleDC(NULL);
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
//RECT rect;
//rect.left = m_rect[0];
//rect.top = m_rect[1];
//rect.right = getElementRight();
//rect.bottom = getElementBottom();
//int rowHeight = DrawText(dc,"h",1,&rect,DT_INTERNAL);
SIZE s;
::GetTextExtentPoint32(dc,"H",1,&s);
int w = s.cx+1;
int h = s.cy+1;
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
DeleteDC(dc);
int height = m_rect[3];
int data_height = h * num_line;
if(data_height>height)
{
scrollRange[3] = data_height - height;
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setLineValue(h);
m_vScrollBar->setPageValue(4 * h);
}
m_arrayMutex.lock();
int maxsize = 0;
for( StringArray::iterator itr = m_stringArray.begin();
itr != m_stringArray.end();
++itr )
{
maxsize = CRCore::maximum((int)(itr->length()),maxsize);
}
m_arrayMutex.unlock();
int width = m_rect[2];
int data_width = w * (maxsize+1);
if(data_width>width)
{
scrollRange[1] = data_width - width;
}
if(m_hScrollBar.valid())
{
m_hScrollBar->setLineValue(w);
m_hScrollBar->setPageValue(4 * w);
}
}
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
const crEditBoxElement::StringArray& crEditBoxElement::getStringArray() const
{
return m_stringArray;
}
crEditBoxElement::StringArray& crEditBoxElement::getStringArray()
{
return m_stringArray;
}
std::string crEditBoxElement::getString(unsigned int i)
{
return i>=0&&!m_stringArray.empty()&&i<m_stringArray.size()?m_stringArray[i]:"";
}
unsigned int crEditBoxElement::getNumStrings()
{
return m_stringArray.size();
}
void crEditBoxElement::addString(const std::string& desc)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_arrayMutex);
m_stringArray.push_back(desc);
}
std::string crEditBoxElement::getStringArrayInString()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_arrayMutex);
std::string str;
for( StringArray::const_iterator itr = m_stringArray.begin();
itr != m_stringArray.end();
++itr )
{
str += *itr;
}
//if(!str.empty())
// str.erase(str.size()-1);
return str;
}
void crEditBoxElement::setStringArrayByString( const std::string &command )
{
m_arrayMutex.lock();
m_stringArray.clear();
m_arrayMutex.unlock();
//unsigned int stringLength = command.length();
unsigned int front_of_line = 0;
unsigned int end_of_line = 0;
while (end_of_line<command.size())
{
/*if (command[end_of_line]=='\r')
{
addString( std::string( command, front_of_line, end_of_line-front_of_line) );
if (end_of_line<command.size() &&
command[end_of_line]=='\n') ++end_of_line;
++end_of_line;
front_of_line = end_of_line;
}
else */if (command[end_of_line]=='\n')
{
++end_of_line;
addString( std::string( command, front_of_line, end_of_line-front_of_line) );
front_of_line = end_of_line;
}
else ++end_of_line;
}
if (front_of_line<end_of_line)
{
addString( std::string( command, front_of_line, end_of_line-front_of_line) );
}
// if(command[end_of_line-1]=='\n')
//addString( std::string( command, end_of_line-1, 1) );
updateData();
}
bool crEditBoxElement::testButtons(int mx, int my, int mouseButtonMsg)
{
m_isMouseOnElement = pressed(mx,my);
// if(m_isMouseOnElement && mouseButtonMsg == WM_LBUTTONDOWN)
//{
// int hscrollValue = 0;
// int vscrollValue = 0;
// if(m_hScrollBar.valid()) hscrollValue = m_hScrollBar->getValue();
// if(m_vScrollBar.valid()) vscrollValue = m_vScrollBar->getValue();
// int x = mx - m_rect[0] + hscrollValue;
// int y = my - m_rect[1] + vscrollValue;
// int front = 16;
// x /= front;
// y /= front;
// if(y<m_stringArray.size())
// {
// std::string selectedStr = m_stringArray[y];
// }
//}
return crElement::testButtons(mx,my,mouseButtonMsg);
}
void crEditBoxElement::getFocus()
{
//if(m_focus) return;
std::string strbuf = getStringArrayInString();
m_focusPos = strbuf.size();
m_hasfocurs = false;
return crElement::getFocus();
}
void crEditBoxElement::lostFocus()
{
// if(m_focusCounter>= 0 && m_focusCounter<s_focusInterval)
//{
// std::string strbuf = getStringArrayInString();
// strbuf.erase(--m_focusPos);
// setStringArrayByString(strbuf);
//}
//m_focusCounter = -s_focusInterval;
//if(m_hasfocurs)
//{
// //std::string strbuf = getStringArrayInString();
// //strbuf.erase(--m_focusPos);
// //setStringArrayByString(strbuf);
// //--m_focusPos;
// m_hasfocurs = false;
//}
m_hasfocurs = false;
return crElement::lostFocus();
}
bool crEditBoxElement::isFocusOnShow()
{
return m_hasfocurs;/*m_focus && m_focusCounter>= 0 && m_focusCounter<s_focusInterval;*/
}
bool crEditBoxElement::inputKey(int key)
{
std::string strbuf = getStringArrayInString();
switch(key)
{
case 37:
if(isFocusOnShow()) m_focusPos--;
if(m_focusPos>0)
{
int hz;
hz = strbuf[m_focusPos-1];
if(hz<0 && m_focusPos>1)
{//双字节字符
m_focusPos-=2;
}
else m_focusPos--;
}
if(isFocusOnShow())
{
m_focusPos++;
m_focusPos = CRCore::maximum(m_focusPos,1);
}
else
m_focusPos = CRCore::maximum(m_focusPos,0);
break;
case 39:
if(isFocusOnShow()) m_focusPos--;
if(m_focusPos<(int)strbuf.size())
{
int hz;
hz = strbuf[m_focusPos];
if(hz<0 && m_focusPos<(int)strbuf.size()-1)
{//双字节字符
m_focusPos+=2;
}
else m_focusPos++;
}
if(isFocusOnShow())
{
m_focusPos++;
m_focusPos = CRCore::minimum(m_focusPos,(int)strbuf.size()+1);
}
else
m_focusPos = CRCore::minimum(m_focusPos,(int)strbuf.size());
break;
case 38:
m_focusPos-=10;
if(isFocusOnShow())
m_focusPos = CRCore::maximum(m_focusPos,1);
else
m_focusPos = CRCore::maximum(m_focusPos,0);
break;
case 40:
m_focusPos+=10;
if(isFocusOnShow())
m_focusPos = CRCore::minimum(m_focusPos,(int)strbuf.size()+1);
else
m_focusPos = CRCore::minimum(m_focusPos,(int)strbuf.size());
break;
}
return crElement::inputKey(key);
}
bool crEditBoxElement::inputChar(wchar_t c)
{
std::string strbuf = getStringArrayInString();
bool strchanged = false;
switch(c)
{
case 9://tab
case 27://esc
break;
case 8:////////////////////////////BackSpace
if(!strbuf.empty())
{
if(isFocusOnShow()) m_focusPos--;
if(m_focusPos>0)
{
int hz;
hz = strbuf[m_focusPos-1];
if(hz<0 && m_focusPos>1)
{//双字节字符
m_focusPos-=2;
if(strbuf.size()>=m_focusPos+2)
strbuf.erase(m_focusPos,2);
}
else
{
--m_focusPos;
if(strbuf.size()>=m_focusPos+1)
strbuf.erase(m_focusPos,1);
}
//CRCore::notify(CRCore::ALWAYS)<<"crEaaaaaaaa hz = "<<hz<<std::endl;
strchanged = true;
}
if(isFocusOnShow()) m_focusPos++;
}
if(isFocusOnShow())
m_focusPos = CRCore::maximum(CRCore::minimum(m_focusPos,(int)strbuf.size()+1),1);
else
m_focusPos = CRCore::maximum(CRCore::minimum(m_focusPos,(int)strbuf.size()),0);
break;
case 13:
if(m_multiLine)
{
//c = '\n';
if(isFocusOnShow()) m_focusPos--;
strbuf.insert(m_focusPos,1,'\n');
m_focusPos++;
if(isFocusOnShow()) m_focusPos++;
strchanged = true;
}
break;
default:
char hz[2];
if(c>256)
{
hz[0]=(char)(c>>8);
hz[1]=(char)c;
}
if(isFocusOnShow()) m_focusPos--;
if(c>256)
{
strbuf.insert(m_focusPos,hz,2);
m_focusPos+=2;
}
else
{
strbuf.insert(m_focusPos,1,c);
m_focusPos++;
}
if(isFocusOnShow()) m_focusPos++;
strchanged = true;
break;
}
if(strchanged) setStringArrayByString(strbuf);
//CRCore::notify(CRCore::ALWAYS)<<"crEditBoxElement str = "<<strbuf<<std::endl;
return crElement::inputChar(c);
}
//CRCore::crVector4f crEditBoxElement::getScrollRange()
//{
// CRCore::crVector4f scrollRange;
// if(!m_stringArray.empty())
// {
// int num_line = m_stringArray.size();
// HDC dc;
// dc=CreateCompatibleDC(NULL);
//
// if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
// RECT rect;
// rect.left = m_rect[0];
// rect.top = m_rect[1];
// rect.right = getElementRight();
// rect.bottom = getElementBottom();
//
// int rowHeight = DrawText(dc,"h",1,&rect,DT_INTERNAL);
// int data_height = rowHeight * num_line;
//
// if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
// DeleteDC(dc);
//
// int height = m_rect[3];
// if(data_height>height)
// {
// float x = (data_height - height) / float(rowHeight) + 1;
// if(x > floor(x))
// {
// scrollRange[3] = floor(x) + 1;
// }
// else
// scrollRange[3] = floor(x);
// }
// }
//
// return scrollRange;
//}
int crEditBoxElement::drawStageCopy(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC mdc,copy_dc;
HBITMAP copybmp;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(/*m_focus||*/m_isMouseOnElement)
{
if(m_hDownImage)
SelectObject(mdc,m_hDownImage);
else if(m_hImage) SelectObject(mdc,m_hImage);
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
}
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
//if(m_hImage)
//{
// SelectObject(mdc,m_hImage);
// BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
//}
if(hscrollValue != 0 || vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
//draw data
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
RECT rect;
rect.left = m_rect[0] - hscrollValue + TextRectOffset;
rect.top = m_rect[1] - vscrollValue + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
rect.bottom = getElementBottom() - TextRectOffset;
//DrawText(dc,m_texString.c_str(),m_texString.length(),&rect,DT_WORDBREAK);
std::string strbuf = getStringArrayInString();
if(m_focus)
{
/////draw focus
CRCore::Timer_t t1 = CRCore::Timer::instance()->tick();
float dt = CRCore::Timer::instance()->delta_s( m_time, t1 );
if(dt>s_focusInterval)
{
m_time = t1;
if(m_hasfocurs)
{
//strbuf.erase(--m_focusPos);
--m_focusPos;
m_hasfocurs = false;
}
else
{
strbuf.insert(m_focusPos++,1,'|');
m_hasfocurs = true;
}
}
else
{
if(m_hasfocurs)
strbuf.insert(m_focusPos-1,1,'|');
}
//if(m_focusCounter == s_focusInterval)
//{
// strbuf.insert(m_focusPos++,1,'|');
//}
//else if(m_focusCounter == 0)
//{
// strbuf.erase(--m_focusPos);
//}
//else if(m_focusCounter == -s_focusInterval)
//{
// m_focusCounter = s_focusInterval+1;
//}
//m_focusCounter--;
//setStringArrayByString(strbuf);
}
/*StringArray stringArray;
unsigned int front_of_line = 0;
unsigned int end_of_line = 0;
while (end_of_line<strbuf.size())
{
if (strbuf[end_of_line]=='\r')
{
stringArray.push_back(std::string( strbuf, front_of_line, end_of_line-front_of_line));
if (end_of_line+1<strbuf.size() &&
strbuf[end_of_line+1]=='\n') ++end_of_line;
++end_of_line;
front_of_line = end_of_line;
}
else if (strbuf[end_of_line]=='\n')
{
++end_of_line;
stringArray.push_back( std::string( strbuf, front_of_line, end_of_line-front_of_line) );
front_of_line = end_of_line;
}
else ++end_of_line;
}
if (front_of_line<end_of_line)
{
stringArray.push_back( std::string( strbuf, front_of_line, end_of_line-front_of_line) );
}
//if(strbuf[end_of_line-1]=='\n')
// stringArray.push_back( std::string( strbuf, end_of_line-1, 1) );
int height = 0;
for( StringArray::iterator itr = stringArray.begin();
itr != stringArray.end();
++itr )
{
if(m_password)
{
for(int i = 0; i<itr->size(); ++i)
{
if((*itr)[i] != '|' && (*itr)[i] != '\n') (*itr)[i] = '*';
}
}
height = DrawText(dc,(*itr).c_str(),(*itr).length(),&rect,DT_INTERNAL);
rect.top += height;
if(rect.top>=rect.bottom)
break;
}*/
if(m_password)
{
for(int i = 0; i<strbuf.size(); ++i)
{
if((strbuf)[i] != '|' && (strbuf)[i] != '\n') (strbuf)[i] = '*';
}
}
DrawText(dc,strbuf.c_str(),strbuf.length(),&rect,m_textFormat/*DT_INTERNAL*/);
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
if(hscrollValue != 0 || vscrollValue != 0)
{
crVector4i v4;
if(hscrollValue != 0)
{
v4[0] = m_rect[0] - hscrollValue;
v4[1] = m_rect[1];
v4[2] = hscrollValue;
v4[3] = m_rect[3];
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2];
v4[3] = vscrollValue;
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crEditBoxElement::drawStageMask(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC bufdc,mdc,copy_dc;
HBITMAP bufbmp,copybmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(/*m_focus||*/m_isMouseOnElement)
{
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(hscrollValue != 0 || vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(bufdc);
RECT rect;
rect.left = m_rect[0] - hscrollValue + TextRectOffset;
rect.top = m_rect[1] - vscrollValue + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
rect.bottom = getElementBottom() - TextRectOffset;
//DrawText(dc,m_texString.c_str(),m_texString.length(),&rect,DT_WORDBREAK);
if(m_focus)
{
/////draw focus
std::string strbuf = getStringArrayInString();
CRCore::Timer_t t1 = CRCore::Timer::instance()->tick();
float dt = CRCore::Timer::instance()->delta_s( m_time, t1 );
if(dt>s_focusInterval)
{
m_time = t1;
if(m_hasfocurs)
{
strbuf.erase(--m_focusPos);
m_hasfocurs = true;
}
else
{
strbuf.insert(m_focusPos++,1,'|');
m_hasfocurs = false;
}
}
//if(m_focusCounter == s_focusInterval)
//{
// strbuf.insert(m_focusPos++,1,'|');
//}
//else if(m_focusCounter == 0)
//{
// strbuf.erase(--m_focusPos);
//}
//else if(m_focusCounter == -s_focusInterval)
//{
// m_focusCounter = s_focusInterval+1;
//}
//m_focusCounter--;
setStringArrayByString(strbuf);
}
int height = 0;
for( StringArray::iterator itr = m_stringArray.begin();
itr != m_stringArray.end();
++itr )
{
if(m_password)
{
for(int i = 0; i<itr->size(); ++i)
{
if((*itr)[i] != '|') (*itr)[i] = '*';
}
}
height = DrawText(bufdc,(*itr).c_str(),(*itr).length(),&rect,m_textFormat/*DT_WORDBREAK*/);
rect.top += height;
if(rect.top>=rect.bottom)
break;
}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(bufdc);
if(hscrollValue != 0 || vscrollValue != 0)
{
crVector4i v4;
if(hscrollValue != 0)
{
v4[0] = m_rect[0] - hscrollValue;
v4[1] = m_rect[1];
v4[2] = hscrollValue;
v4[3] = m_rect[3];
BitBlt(bufdc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2];
v4[3] = vscrollValue;
BitBlt(bufdc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
//////////////////////////////////////////////////////////////////////////
//
//crComboBoxElement
//
//////////////////////////////////////////////////////////////////////////
crComboBoxElement::crComboBoxElement(const crComboBoxElement& element):
crElement(element)
{
}
crComboBoxElement::~crComboBoxElement()
{
//m_comboEditBox->setParentElement(NULL);
//m_comboButton->setParentElement(NULL);
//m_comboList->setParentElement(NULL);
}
void crComboBoxElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
cfg_script.Get("ComboEditBoxName",m_comboEditBoxName);
cfg_script.Get("ComboButtonName",m_comboButtonName);
cfg_script.Get("ComboListBoxName",m_comboListBoxName);
cfg_script.Get("ComboScrollBarName",m_comboScrollBarName);
crElement::load(cfg_script,widthScale,heightScale);
}
void crComboBoxElement::initWindow()
{
m_comboEditBox = dynamic_cast<crEditBoxElement *>(m_parentStage->getElement(m_comboEditBoxName));
if(!m_comboEditBox.valid())
{
CRCore::notify(CRCore::WARN)<<"crComboBoxElement::initWindow(): ComboEditBox("<<this->getName()<<") is empty. StageNameID = "<<m_parentStage->getName()<<std::endl;
}
m_comboButton = dynamic_cast<crButtonElement *>(m_parentStage->getElement(m_comboButtonName));
if(!m_comboButton.valid())
{
CRCore::notify(CRCore::WARN)<<"crComboBoxElement::initWindow(): ComboButton("<<this->getName()<<") is empty. StageNameID = "<<m_parentStage->getName()<<std::endl;
}
m_comboList = dynamic_cast<crListBoxElement *>(m_parentStage->getElement(m_comboListBoxName));
if(!m_comboList.valid())
{
CRCore::notify(CRCore::WARN)<<"crComboBoxElement::initWindow(): ComboListBox("<<this->getName()<<") is empty. StageNameID = "<<m_parentStage->getName()<<std::endl;
}
m_comboScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_comboScrollBarName));
//if(!m_comboScrollBar.valid())
//{
// CRCore::notify(CRCore::WARN)<<"crComboBoxElement::initWindow(): ComboScrollBar("<<this->getName()<<") is empty. StageNameID = "<<m_parentStage->getName()<<std::endl;
//}
m_comboList->setShow(false);
m_comboList->setEnable(false);
m_comboList->setCanCapture(true);
m_comboList->setUseLeftBtnSelect(false);
if(m_comboScrollBar.valid())
{
m_comboScrollBar->setShow(false);
m_comboScrollBar->setEnable(false);
}
//init select
std::string data;
m_comboList->getData(m_comboList->getSelect(),data);
m_comboEditBox->setStringArrayByString(data);
crElement::initWindow();
}
void crComboBoxElement::select(int index)
{
m_comboList->select(index);
std::string data;
m_comboList->getData(m_comboList->getSelect(),data);
m_comboEditBox->setStringArrayByString(data);
}
std::string crComboBoxElement::getValue()
{
return m_comboEditBox->getStringArrayInString();
}
int crComboBoxElement::getSelectIndex()
{
return m_comboList->getSelect();
}
void crComboBoxElement::updateParentElement(crElement *element)
{
bool isMouseOn = element->getMouseOnElement();
int mouseButtonMsg = m_parentStage->getCurrentMouseButtonMsg();
if(m_comboButton.get() == element)
{
if(isMouseOn && mouseButtonMsg == WM_LBUTTONDOWN)
{//显示listbox
m_comboList->setShow(true);
m_comboList->setEnable(true);
if(m_comboScrollBar.valid())
{
m_comboScrollBar->setShow(true);
m_comboScrollBar->setEnable(true);
}
m_parentStage->setFocusElement(m_comboList.get());
}
}
else if(m_comboEditBox.get() == element)
{
if(!m_comboEditBox->getCanFocus())
{
if(isMouseOn && mouseButtonMsg == WM_LBUTTONDOWN)
{
m_comboList->setShow(true);
m_comboList->setEnable(true);
if(m_comboScrollBar.valid())
{
m_comboScrollBar->setShow(true);
m_comboScrollBar->setEnable(true);
}
m_parentStage->setFocusElement(m_comboList.get());
}
}
else
{//可接受输入,根据输入单词去list搜索
//std::string data = m_comboEditBox->getStringArrayInString();
}
}
else if(m_comboList.get() == element)
{
if(mouseButtonMsg == WM_LBUTTONDOWN)
{
if(isMouseOn)
{//
std::string data;
m_comboList->getData(m_comboList->getSelect(),data);
m_comboEditBox->setStringArrayByString(data);
}
m_comboList->setShow(false);
m_comboList->setEnable(false);
if(m_comboScrollBar.valid())
{
m_comboScrollBar->setShow(false);
m_comboScrollBar->setEnable(false);
}
m_parentStage->lostFocusElement(m_comboList.get());
}
}
crElement::updateParentElement(this);
}
//////////////////////////////////////////////////////////////////////////
//
//crProgressElement
//
//////////////////////////////////////////////////////////////////////////
crProgressElement::crProgressElement():
m_progressBarType(HORIZONTALBAR),
m_progress(0.0f)
{
}
crProgressElement::crProgressElement(const crProgressElement& element):
crElement(element),
m_progressBarType(element.m_progressBarType),
m_progress(0.0f)
{
}
void crProgressElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
crElement::load(cfg_script, widthScale, heightScale);
}
bool crProgressElement::testButtons(int mx, int my, int mouseButtonMsg)
{
m_isMouseOnElement = pressed(mx,my);
return crElement::testButtons(mx,my,mouseButtonMsg);
}
void crProgressElement::updateProgress(float rate)
{
m_progress += rate;
m_progress = CRCore::clampTo(m_progress,0.0f,1.0f);
m_parentStage->setNeedReDraw();
}
//void crProgressElement::updateProgress(const CRCore::crVector2f& m_rate)
//{
// m_progress[0] = float(m_progress[0]) + m_rate[0];
// m_progress[1] = float(m_progress[1]) + m_rate[1];
// m_parentStage->setNeedReDraw();
//}
void crProgressElement::setProgress(float progress)
{
m_progress = progress;
m_progress = CRCore::clampTo(m_progress,0.0f,1.0f);
m_parentStage->setNeedReDraw();
}
float crProgressElement::getProgress()
{
return m_progress;
}
void crProgressElement::resetProgress()
{
//m_progress.set(0,0);
m_progress = 0.0f;
}
void crProgressElement::fetchEnd()
{
//m_progress.set(m_rect[2],m_rect[3]);
m_progress = 1.0f;
}
bool crProgressElement::isProgressFetchEnd()
{
//return m_progress[0]>=m_rect[2]||m_progress[1]>=m_rect[3];
return m_progress == 1.0f;
}
int crProgressElement::drawStageCopy(Display dc, Display down_dc)
{
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(dc);
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
if(m_progressBarType == HORIZONTALBAR)
BitBlt(dc,m_rect[0],m_rect[1],m_progress*m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_progress*m_rect[3],mdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crProgressElement::drawStageMask(Display dc, Display down_dc)
{
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
if(m_progressBarType == HORIZONTALBAR)
BitBlt(bufdc,m_rect[0],m_rect[1],m_progress*m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
else
BitBlt(bufdc,m_rect[0],m_rect[1],m_rect[2],m_progress*m_rect[3],mdc,0,0,SRCCOPY);
//BitBlt(bufdc,0,0,m_progress[0],m_progress[1],mdc,0,0,SRCCOPY);
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
//////////////////////////////////////////////////////////////////////////
//
//crPixelTestElement
//
//////////////////////////////////////////////////////////////////////////
crPixelTestElement::crPixelTestElement(const crPixelTestElement& element):
crElement(element)
{
}
void crPixelTestElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
crElement::load(cfg_script, widthScale, heightScale);
std::string str;
std::vector<float> v_i;
crVector2i imageSize;
crVector2i elementPos;
if (cfg_script.Push("PixelColorImage"))
{
cfg_script.Get("FileName", str);
cfg_script.Get("ImageSize", v_i);
imageSize.set(v_i[0] * widthScale, v_i[1] * heightScale);
cfg_script.Get("ElementPosOnImage", v_i);
elementPos.set(v_i[0] * widthScale,v_i[1] * heightScale);
setElementPixelColorImage(str,imageSize,elementPos);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crElement::load(): "<<cfg_script.GetLastError()<<std::endl;
}
}
void crPixelTestElement::setElementPixelColorImage( const std::string& image, const crVector2i& imageSize, const crVector2i& elementPos )
{
m_pixelColorImageName = image;
if(m_hPixelColorImage)
DeleteObject(m_hPixelColorImage);
//HBITMAP hLoadedImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),m_disableImageName.c_str(),IMAGE_BITMAP,imageSize[0],imageSize[1],LR_LOADFROMFILE);
HBITMAP hLoadedImage = getOrLoadBmp(m_pixelColorImageName,imageSize);
HDC dcDest=CreateCompatibleDC(NULL);
HDC dcSrc=CreateCompatibleDC(NULL);
HWND desktopWnd = GetDesktopWindow();
HDC safeDC= GetDC(desktopWnd);
m_hPixelColorImage = CreateCompatibleBitmap(safeDC,m_rect[2],m_rect[3]);
SelectObject(dcDest,m_hPixelColorImage);
SelectObject(dcSrc,hLoadedImage);
BitBlt(dcDest,0,0,m_rect[2],m_rect[3],dcSrc,elementPos[0],elementPos[1],SRCCOPY);
//DeleteObject(hLoadedImage);
DeleteDC(dcDest);
DeleteDC(dcSrc);
ReleaseDC(desktopWnd,safeDC);
//DeleteDC(safeDC);
}
bool crPixelTestElement::nearColor(COLORREF c1, COLORREF c2, int error)
{
return fabs(float(GetRValue(c1) - GetRValue(c2))) < error &&
fabs(float(GetGValue(c1) - GetGValue(c2))) < error &&
fabs(float(GetBValue(c1) - GetBValue(c2))) < error;
}
bool crPixelTestElement::testButtons(int mx, int my, int mouseButtonMsg)
{
m_isMouseOnElement = false;
if(pressed(mx,my))
{
//if(mouseButtonMsg == WM_LBUTTONDOWN)
//{
HDC dc=CreateCompatibleDC(NULL);
SelectObject(dc,m_hPixelColorImage);
m_currentPixelColor = ::GetPixel(dc, mx - m_rect[0], my - m_rect[1]);
if(!nearColor(m_currentPixelColor,RGB(255, 255, 255),5))
{
m_isMouseOnElement = true;
//CRCore::notify(CRCore::ALWAYS)<<"crPixelTestElement GetPixel = "<<crVector3i(GetRValue(m_currentPixelColor),GetGValue(m_currentPixelColor),GetBValue(m_currentPixelColor))<<std::endl;
}
DeleteDC(dc);
//}
}
return crElement::testButtons(mx,my,mouseButtonMsg);
}
int crPixelTestElement::drawStageCopy(Display dc, Display down_dc)
{
HDC mdc;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(/*m_focus||*/m_isMouseOnElement)
{
if(m_hDownImage)
{
HDC bufdc=CreateCompatibleDC(NULL);
HBITMAP bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
SelectObject(mdc,m_hPixelColorImage);
SetBkColor(mdc, m_currentPixelColor); // 设置彩色位图背景色为当前拾取的颜色
HDC maskdc=CreateCompatibleDC(NULL);
HBITMAP hMaskBMP = CreateBitmap(m_rect[2],m_rect[3], 1, 1, NULL); // 建立单色位图
SelectObject(maskdc,hMaskBMP);
BitBlt(maskdc, 0, 0, m_rect[2],m_rect[3], mdc, 0, 0, SRCCOPY); // 拷贝到maskdc
BitBlt(maskdc, 0, 0, m_rect[2],m_rect[3], maskdc, 0, 0, NOTSRCCOPY); //取反
//设置背景色为黑色,前景色为白色,将掩码位图与DownImage进行“与”运算
SetBkColor(bufdc, RGB(0,0,0));
SetTextColor(bufdc, RGB(255,255,255));
BitBlt(bufdc, 0, 0, m_rect[2], m_rect[3], maskdc, 0, 0, SRCAND);
//设置背景色为白色,前景色为黑色,将掩码位图与背景图进行“与”运算
SetBkColor(dc,RGB(255,255,255));
SetTextColor(dc,RGB(0,0,0));
BitBlt(dc, m_rect[0],m_rect[1],m_rect[2],m_rect[3], maskdc, 0, 0, SRCAND);
//将bufdc与背景进行“或”运算
BitBlt(dc, m_rect[0],m_rect[1],m_rect[2],m_rect[3], bufdc, 0, 0, SRCPAINT);
DeleteDC(bufdc);
DeleteDC(maskdc);
DeleteObject(bufbmp);
DeleteObject(hMaskBMP);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crPixelTestElement::drawStageMask(Display dc, Display down_dc)
{
return false;
}
//////////////////////////////////////////////////////////////////////////
//
//crChooseColorElement
//
//////////////////////////////////////////////////////////////////////////
crChooseColorElement::crChooseColorElement(const crChooseColorElement& element):
crElement(element)
{
}
void crChooseColorElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
crElement::load(cfg_script, widthScale, heightScale);
}
bool crChooseColorElement::testButtons(int mx, int my, int mouseButtonMsg)
{
m_isMouseOnElement = pressed(mx,my);
return crElement::testButtons(mx,my,mouseButtonMsg);
}
COLORREF crChooseColorElement::getColor()
{
return m_color;
}
void crChooseColorElement::setColor(COLORREF color)
{
m_color = color;
}
int crChooseColorElement::drawStageCopy(Display dc, Display down_dc)
{
bool noNeedFatherDraw = true;
HBRUSH hbrush = CreateSolidBrush(m_color);
RECT rect;
rect.left = m_rect[0]+1;
rect.top = m_rect[1]+1;
rect.right = getElementRight();
rect.bottom = getElementBottom();
FillRect(dc,&rect,hbrush);
DeleteObject((HGDIOBJ)hbrush);
return noNeedFatherDraw;
}
int crChooseColorElement::drawStageMask(Display dc, Display down_dc)
{
return false;
}
//////////////////////////////////////////////////////////////////////////
//
//crKeyValueNode
//
//////////////////////////////////////////////////////////////////////////
crKeyValueNode::crKeyValueNode(const std::string &key, const std::string &value)
{
m_key = key;
m_value = value;
}
crKeyValueNode::~crKeyValueNode()
{
}
crKeyValueNode::crKeyValueNode(const crKeyValueNode& node):
m_key(node.m_key),
m_value(node.m_value)
{
}
void crKeyValueNode::setKey(const std::string &key)
{
m_key = key;
}
void crKeyValueNode::setValue(const std::string &value)
{
m_value = value;
}
const std::string &crKeyValueNode::getKey()
{
return m_key;
}
const std::string &crKeyValueNode::getValue()
{
return m_value;
}
//////////////////////////////////////////////////////////////////////////
//
//crKeyValueGridElement
//
//////////////////////////////////////////////////////////////////////////
crKeyValueGridElement::crKeyValueGridElement(const crKeyValueGridElement& element):
crElement(element),
m_dataVec(element.m_dataVec),
m_select(element.m_select),
m_useLeftBtnSelect(element.m_useLeftBtnSelect),
m_rowHeight(element.m_rowHeight),
m_colWidth(element.m_colWidth),
m_textAttribute(element.m_textAttribute),
m_hScrollBarName(element.m_hScrollBarName),
m_vScrollBarName(element.m_vScrollBarName)
{
}
CRCore::crVector4f crKeyValueGridElement::getScrollRange()
{
float data_height = m_rowHeight * getDataSize();
float height = m_rect[3];
CRCore::crVector4f scrollRange;
if(data_height > height)
{
float x = (data_height - height) / float(m_rowHeight);
if(x > floor(x))
{
scrollRange[3] = floor(x) + 1;
}
else
scrollRange[3] = floor(x);
}
return scrollRange;
}
void crKeyValueGridElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
int int1;
if(cfg_script.Get("TextAttribute", str))
{
setTextAttribute(crTextAttribute::getTextAttribute(str));
}
int nData = 1;
std::string key,value;
while (cfg_script.Push("Data", nData++))
{
cfg_script.Get("Key", key);
cfg_script.Get("Value", value);
if (!cfg_script.Pop())
CRCore::notify(CRCore::FATAL)<<"crKeyValueGridElement::load(): "<<cfg_script.GetLastError()<<std::endl;
addData(key,value,"");
}
if(cfg_script.Get("RowHeight", int1))
setRowHeight((float)int1/* * heightScale*/);
if(cfg_script.Get("ColWidth", int1))
setColWidth((float)int1/* * widthScale*/);
if(cfg_script.Get("Select", int1))
m_select = int1;
if(cfg_script.Get("UseLeftBtnSelect", int1))
setUseLeftBtnSelect(int1);
cfg_script.Get("HScrollBarName",m_hScrollBarName);
cfg_script.Get("VScrollBarName",m_vScrollBarName);
cfg_script.Get("InputElementName",m_inputElementName);
crElement::load(cfg_script,widthScale,heightScale);
}
void crKeyValueGridElement::initWindow()
{
m_hScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_hScrollBarName));
m_vScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_vScrollBarName));
m_inputElement = dynamic_cast<crEditBoxElement *>(m_parentStage->getElement(m_inputElementName));
crElement::initWindow();
int vscrollValue = 0;
int _select;
if(m_vScrollBar.valid())
{
crVector4f scrollRange = this->getScrollRange();
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
vscrollValue = m_vScrollBar->getValue();
_select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_vScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_vScrollBar->setValue(vscrollValue);
}
}
updateInputElement(true);
}
void crKeyValueGridElement::updateInputElement(bool flg)
{
if(m_inputElement.valid())
{
if(isDataEmpty())
{
m_inputElement->clearString();
if(m_inputElement->isFocus()) m_inputElement->lostFocus();
}
else if(m_select>=0 && m_select < m_dataVec.size())
{
crKeyValueNode* node = m_dataVec[m_select].get();
if(node)
{
if(flg)
{
m_inputElement->setStringArrayByString(node->getValue());
//m_inputElement->setFocus();
}
else
{
//data.second = m_inputElement->getStringArrayInString();
node->setValue(m_inputElement->getStringArrayInString());
}
}
}
}
}
void crKeyValueGridElement::updateData()
{
checkSelect();
crElement::updateData();
if(m_vScrollBar.valid())
{
crVector4f scrollRange = this->getScrollRange();
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
int vscrollValue = m_vScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_vScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_vScrollBar->setValue(vscrollValue);
}
}
}
bool crKeyValueGridElement::testButtons(int mx, int my, int mouseButtonMsg )
{
bool test = false;
if(getCapture())
{
if(m_vScrollBar.valid())
test |= m_vScrollBar->testButtons(mx,my,mouseButtonMsg);
if(m_hScrollBar.valid())
test |= m_hScrollBar->testButtons(mx,my,mouseButtonMsg);
}
if(!test)
{
if(pressed(mx,my))
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
m_isMouseOnElement = true;
updateInputElement(false);
if(!m_useLeftBtnSelect || mouseButtonMsg == WM_LBUTTONDOWN)
{
int i = (my-m_rect[1])/m_rowHeight + vscrollValue;
if(i>=0 && i < getDataSize() && m_select != i)
{
select(i);
}
}
}
else
{
m_isMouseOnElement = false;
}
test = crElement::testButtons(mx,my,mouseButtonMsg);
}
return test;
}
int crKeyValueGridElement::getMaxRowCanBeDisplay()
{
float x = float(m_rect[3])/float(m_rowHeight);
return x > floor(x)?floor(x)-1:floor(x)-2;
}
int crKeyValueGridElement::drawStageCopy(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
vscrollValue = CRCore::clampTo(vscrollValue,0,(int)(m_dataVec.size()));
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC mdc,copy_dc;
HBITMAP copybmp;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(hscrollValue != 0 || vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
int _select = m_select - vscrollValue;
if(m_select>-1)
{
if(_select<0)
{
_select = 0;
//m_select = vscrollValue;
select(vscrollValue);
}
else
{
int maxrow = getMaxRowCanBeDisplay();
if(_select>maxrow) _select = maxrow;
//m_select = vscrollValue + _select;
select(vscrollValue + _select);
}
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,mdc,0,0,SRCCOPY);
}
else //need draw by parent
{
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,down_dc,m_rect[0],m_rect[1]+_select*m_rowHeight,SRCCOPY);
}
}
//draw data
m_dataMutex.lock();
if(!m_dataVec.empty())
{
//if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
int i = 0;
RECT rect;
KeyValueNodeVec::iterator itr = m_dataVec.begin();
while (i++<vscrollValue)
{
itr++;
}
i=0;
POINT point;
int _colWidth = m_colWidth-hscrollValue;
if(_colWidth>0)
{
MoveToEx(dc,m_rect[0]+_colWidth,m_rect[1],&point);
LineTo(dc,m_rect[0]+_colWidth,getElementBottom());
}
if(m_inputElement.valid())
{
int __colWidth = CRCore::maximum(0,_colWidth);
m_inputElement->setRect(m_rect[0]+__colWidth,m_rect[1]+_select*m_rowHeight,m_rect[2]-__colWidth,m_rowHeight);
}
crTextAttribute *textAttr;
crKeyValueNode *node;
for( ;
itr != m_dataVec.end();
++itr, ++i )
{
rect.top = m_rect[1]+i*m_rowHeight + TextRectOffset;
rect.bottom = m_rect[1]+(i+1)*m_rowHeight - TextRectOffset;
if(rect.bottom>getElementBottom()) break;
node = itr->get();
if(!node)
continue;
textAttr = node->getTextAttribute();
if(!textAttr)
textAttr = m_textAttribute.get();
if(textAttr) textAttr->drawTextAttribute(dc);
if(_colWidth>0)
{
rect.left = m_rect[0] + TextRectOffset;
rect.right = m_rect[0]+_colWidth - TextRectOffset;
DrawText(dc,node->getKey().c_str(),node->getKey().length(),&rect,DT_WORD_ELLIPSIS);
}
if(i!=_select)
{
rect.left = m_rect[0]+_colWidth + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
DrawText(dc,node->getValue().c_str(),node->getValue().length(),&rect,DT_WORD_ELLIPSIS);
}
rect.bottom += TextRectOffset;
MoveToEx(dc,m_rect[0],rect.bottom,&point);
LineTo(dc,getElementRight(),rect.bottom);
//ExtTextOut(dc,rect.left,rect.top,ETO_OPAQUE,&rect,itr->c_str(),itr->length(),NULL);
//TextOut(hdc,m_rect[0]+m_texOffset[0],m_rect[1]+i*m_rowHeight+m_texOffset[1],itr->c_str(),itr->length());
if(textAttr) textAttr->endDrawText(dc);
}
//if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
}
m_dataMutex.unlock();
if(hscrollValue != 0 || vscrollValue != 0)
{
crVector4i v4;
if(hscrollValue != 0)
{
v4[0] = m_rect[0] - hscrollValue;
v4[1] = m_rect[1];
v4[2] = hscrollValue;
v4[3] = m_rect[3];
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2];
v4[3] = vscrollValue;
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
//BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crKeyValueGridElement::drawStageMask(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
HDC bufdc,mdc;
HBITMAP bufbmp;
bool noNeedFatherDraw = true;
bufdc=CreateCompatibleDC(NULL);
mdc=CreateCompatibleDC(NULL);
bufbmp = CreateCompatibleBitmap(dc,m_rect[2],m_rect[3]);
SelectObject(bufdc,bufbmp);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(bufdc,0,0,m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
int _select = m_select - vscrollValue;
if(m_select>-1)
{
if(_select<0)
{
_select = 0;
m_select = vscrollValue;
}
else
{
int maxrow = getMaxRowCanBeDisplay();
if(_select>maxrow) _select = maxrow;
m_select = vscrollValue + _select;
}
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(bufdc,0,_select*m_rowHeight,m_rect[2],m_rowHeight,mdc,0,0,SRCCOPY);
}
else //need draw by parent
{
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,down_dc,m_rect[0],m_rect[1]+_select*m_rowHeight,SRCCOPY);
}
}
//draw data
//if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(bufdc);
int i = 0;
RECT rect;
m_dataMutex.lock();
KeyValueNodeVec::iterator itr = m_dataVec.begin();
while (i++<vscrollValue)
{
itr++;
}
i=0;
POINT point;
int _colWidth = m_colWidth-hscrollValue;
if(_colWidth>0)
{
MoveToEx(dc,m_rect[0]+_colWidth,m_rect[1],&point);
LineTo(dc,m_rect[0]+_colWidth,getElementBottom());
}
if(m_inputElement.valid())
{
int __colWidth = CRCore::maximum(0,_colWidth);
m_inputElement->setRect(m_rect[0]+__colWidth,m_rect[1]+_select*m_rowHeight,m_rect[2]-__colWidth,m_rowHeight);
}
crTextAttribute *textAttr;
crKeyValueNode *node;
for( ;
itr != m_dataVec.end();
++itr, ++i )
{
rect.top = m_rect[1]+i*m_rowHeight + TextRectOffset;
rect.bottom = m_rect[1]+(i+1)*m_rowHeight - TextRectOffset;
if(rect.bottom>getElementBottom()) break;
node = itr->get();
if(!node)
continue;
textAttr = node->getTextAttribute();
if(!textAttr)
textAttr = m_textAttribute.get();
if(textAttr) textAttr->drawTextAttribute(dc);
if(_colWidth>0)
{
rect.left = m_rect[0] + TextRectOffset;
rect.right = m_rect[0]+_colWidth - TextRectOffset;
DrawText(dc,node->getKey().c_str(),node->getKey().length(),&rect,DT_WORD_ELLIPSIS);
}
if(i!=_select)
{
rect.left = m_rect[0]+_colWidth + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
DrawText(dc,node->getValue().c_str(),node->getValue().length(),&rect,DT_WORD_ELLIPSIS);
}
rect.bottom += TextRectOffset;
MoveToEx(dc,m_rect[0],rect.bottom,&point);
LineTo(dc,getElementRight(),rect.bottom);
//ExtTextOut(dc,rect.left,rect.top,ETO_OPAQUE,&rect,itr->c_str(),itr->length(),NULL);
//TextOut(hdc,m_rect[0]+m_texOffset[0],m_rect[1]+i*m_rowHeight+m_texOffset[1],itr->c_str(),itr->length());
if(textAttr) textAttr->endDrawText(dc);
}
//if(m_textAttribute.valid()) crTextAttribute::endDrawText(bufdc);
m_dataMutex.unlock();
}
if(m_hMaskImage)
{
SelectObject(mdc,m_hMaskImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCAND);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCPAINT);
}
else
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
DeleteDC(mdc);
DeleteDC(bufdc);
DeleteObject(bufbmp);
return noNeedFatherDraw;
}
void crKeyValueGridElement::clearData()
{
m_dataMutex.lock();
m_dataVec.clear();
m_dataMutex.unlock();
m_inputElement->clearString();
if(m_inputElement->isFocus()) m_inputElement->lostFocus();
//m_select = 0;
}
void crKeyValueGridElement::addData(const std::string& key,const std::string &value, const std::string &texattr)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
crKeyValueNode *node = new crKeyValueNode(key,value);
if(!texattr.empty())
{
node->setTextAttribute(crTextAttribute::getTextAttribute(texattr));
}
m_dataVec.push_back(node);
}
crKeyValueGridElement::KeyValueNodeVec &crKeyValueGridElement::getDataList()
{
return m_dataVec;
}
int crKeyValueGridElement::findDataIndex(const std::string &key)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
int i = 0;
for( KeyValueNodeVec::iterator itr = m_dataVec.begin();
itr != m_dataVec.end();
++itr,i++ )
{
if((*itr)->getKey().compare(key) == 0)
{
return i;
}
}
return -1;
}
void crKeyValueGridElement::setRowHeight(int height)
{
m_rowHeight = height;
}
int crKeyValueGridElement::getRowHeight()
{
return m_rowHeight;
}
void crKeyValueGridElement::setColWidth(int width)
{
m_colWidth = width;
}
int crKeyValueGridElement::getColWidth()
{
return m_colWidth;
}
void crKeyValueGridElement::insertData(unsigned int index, const std::string& key,const std::string &value, const std::string &texattr)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
ref_ptr<crKeyValueNode> node = new crKeyValueNode(key,value);
if(!texattr.empty())
{
node->setTextAttribute(crTextAttribute::getTextAttribute(texattr));
}
if (index >= m_dataVec.size())
{
m_dataVec.push_back(node.get());
}
else
{
m_dataVec.insert(m_dataVec.begin()+index, node.get());
}
}
crKeyValueNode * crKeyValueGridElement::getData(unsigned int index)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
if(index < m_dataVec.size())
{
return m_dataVec[index].get();
}
return NULL;
}
void crKeyValueGridElement::select(int index)
{
if(m_select!=index)
{
updateInputElement(false);
m_select = index;
updateData();
updateInputElement(true);
}
}
int crKeyValueGridElement::getSelect()
{
return m_select;
}
void crKeyValueGridElement::setUseLeftBtnSelect(bool leftBtnSelect)
{
m_useLeftBtnSelect = leftBtnSelect;
}
void crKeyValueGridElement::checkSelect()
{
if(isDataEmpty())
m_select = 0;
else
{
int size = getDataSize() - 1;
if(m_select>size) m_select = size;
}
}
int crKeyValueGridElement::getDataSize()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
return m_dataVec.size();
}
bool crKeyValueGridElement::isDataEmpty()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
return m_dataVec.empty();
}
//////////////////////////////////////////////////////////////////////////
//
//crTreeNode
//
//////////////////////////////////////////////////////////////////////////
crTreeNode::crTreeNode():
m_selected(false),
m_expand(false),
m_currentBitmap(0),
m_data(NULL),
m_rowHeight(20),
m_columnOffset(5),
m_elementWidth(100),
m_parent(NULL)
{
}
crTreeNode::~crTreeNode()
{
clearBitMap();
m_parent = NULL;
}
crTreeNode::crTreeNode(const crTreeNode& treenode):
m_title(treenode.m_title),
m_selected(false),
m_expand(false),
m_bitmapArray(treenode.m_bitmapArray),
m_currentBitmap(treenode.m_currentBitmap),
m_data(treenode.m_data),
m_textAttribute(treenode.m_textAttribute),
m_rowHeight(treenode.m_rowHeight),
m_columnOffset(treenode.m_columnOffset),
m_elementWidth(treenode.m_elementWidth)
{
for( TreeNodeArray::const_iterator itr = treenode.m_childArray.begin();
itr != treenode.m_childArray.end();
++itr )
{
addChild((*itr)->clone());
}
}
void crTreeNode::setRowHeight(int rowHeight)
{
m_rowHeight = rowHeight;
}
void crTreeNode::setColumnOffset(int columnOffset)
{
m_columnOffset = columnOffset;
}
void crTreeNode::setElementWidth(int elementWidth)
{
m_elementWidth = elementWidth;
}
int crTreeNode::getRowHeight()
{
return m_rowHeight;
}
int crTreeNode::getColumnOffset()
{
return m_columnOffset;
}
int crTreeNode::getElementWidth()
{
return m_elementWidth;
}
void crTreeNode::setTitle(const std::string &title)
{
m_title = title;
}
const std::string &crTreeNode::getTitle() const
{
return m_title;
}
void crTreeNode::setSelect(bool select)
{
m_selected = select;
}
bool crTreeNode::getSelect()
{
return m_selected;
}
void crTreeNode::expand()
{
m_expand = !m_expand;
}
bool crTreeNode::getExpand()
{
return m_expand;
}
void crTreeNode::addBitMap(HBITMAP bitmap)
{
m_bitmapArray.push_back(bitmap);
}
void crTreeNode::clearBitMap()
{
for( BitMapArray::iterator itr = m_bitmapArray.begin();
itr != m_bitmapArray.end();
++itr )
{
DeleteObject(*itr);
}
m_bitmapArray.clear();
}
void crTreeNode::setCurrentBitmap(unsigned char index)
{
if(index<m_bitmapArray.size())
m_currentBitmap = index;
}
unsigned char crTreeNode::getCurentBitmap()
{
return m_currentBitmap;
}
void crTreeNode::setData(void *data)
{
m_data = data;
}
void *crTreeNode::getData()
{
return m_data;
}
void crTreeNode::addChild(crTreeNode *child)
{
m_childArray.push_back(child);
child->setParent(this);
}
void crTreeNode::setParent(crTreeNode *parent)
{
m_parent = parent;
}
crTreeNode *crTreeNode::getParent()
{
return m_parent;
}
crTreeNode *crTreeNode::getChild(unsigned int index)
{
if(index<m_childArray.size())
return m_childArray[index].get();
return NULL;
}
crTreeNode::TreeNodeArray &crTreeNode::getChildArray()
{
return m_childArray;
}
unsigned int crTreeNode::getChildIndex( const crTreeNode* node ) const
{
for (unsigned int childNum = 0;childNum < m_childArray.size();++childNum)
{
if (m_childArray[childNum] == node) return childNum;
}
return m_childArray.size(); // node not found.
}
void crTreeNode::removeChild(unsigned int index)
{
if(index<m_childArray.size())
m_childArray.erase(m_childArray.begin()+index);
}
void crTreeNode::removeChild(crTreeNode *child)
{
removeChild(getChildIndex(child));
}
crTreeNode *crTreeNode::findChild(const std::string &title)
{
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
if( (*itr)->getTitle().compare(title) == 0 )
{
return itr->get();
}
}
return NULL;
}
crTreeNode *crTreeNode::findChildByData(void *data)
{
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
if( (*itr)->getData() == data)
{
return itr->get();
}
}
return NULL;
}
void crTreeNode::removeAllChild()
{
m_childArray.clear();
}
void crTreeNode::rootDraw(Display dc,int xpos,int ypos,int elementBottom)
{
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
(*itr)->draw(dc,xpos,ypos,elementBottom);
}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
}
void crTreeNode::draw(Display dc,int& xpos,int& ypos,int elementBottom)
{
if(ypos+m_rowHeight/*-TextRectOffset*/>=elementBottom) return;
RECT rect;
rect.left = xpos;
rect.top = ypos;
rect.right = m_elementWidth;
rect.bottom = rect.top + m_rowHeight;
if(m_selected)
{
int bkmode = GetBkMode(dc);
HBRUSH brush = CreateSolidBrush(RGB(0,0,128));
FillRect(dc,&rect,brush);
SetBkMode(dc,bkmode);
DeleteObject((HGDIOBJ)brush);
}
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
if(!m_title.empty())
{
rect.left += TextRectOffset;
rect.top += TextRectOffset;
rect.right -= TextRectOffset;
rect.bottom -= TextRectOffset;
DrawText(dc,m_title.c_str(),m_title.length(),&rect,DT_WORD_ELLIPSIS);
}
ypos+=m_rowHeight;
if(m_expand)
{
xpos+=m_columnOffset;
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
(*itr)->draw(dc,xpos,ypos,elementBottom);
}
xpos-=m_columnOffset;
}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
}
void crTreeNode::rootCalcSize(int& xsize,int& ysize)
{
xsize = m_elementWidth;
ysize = m_rowHeight;
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
(*itr)->calcSize(xsize,ysize);
}
}
void crTreeNode::calcSize(int& xsize,int& ysize)
{
ysize+=m_rowHeight;
if(m_expand)
{
xsize = m_elementWidth>xsize?m_elementWidth:xsize;
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
(*itr)->calcSize(xsize,ysize);
}
}
}
crTreeNode *crTreeNode::rootSelect(int x, int y)
{
crTreeNode *selectNode = NULL;
int xpos = 0;
int ypos = 0;
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
selectNode = (*itr)->select(x,y,xpos,ypos);
if(selectNode)
return selectNode;
}
return selectNode;
}
crTreeNode *crTreeNode::select(int x, int y, int& xpos, int& ypos)
{
crTreeNode *selectNode = NULL;
RECT rect;
rect.left = xpos;
rect.top = ypos;
rect.right = m_elementWidth;
rect.bottom = rect.top + m_rowHeight;
if(x>rect.left && x<rect.right && y>rect.top && y<rect.bottom)
{
setSelect(true);
return this;
}
ypos+=m_rowHeight;
if(m_expand)
{
xpos+=m_columnOffset;
for( TreeNodeArray::iterator itr = m_childArray.begin();
itr != m_childArray.end();
++itr )
{
selectNode = (*itr)->select(x,y,xpos,ypos);
if(selectNode)
return selectNode;
}
xpos-=m_columnOffset;
}
return NULL;
}
//////////////////////////////////////////////////////////////////////////
//
//crTreeElement
//
//////////////////////////////////////////////////////////////////////////
crTreeElement::crTreeElement(const crTreeElement& element):
crElement(element)
{
}
CRCore::crVector4f crTreeElement::getScrollRange()
{
int xsize = 0;
int ysize = 0;
if(m_root.valid())
{
m_root->rootCalcSize(xsize,ysize);
}
xsize -= m_rect[2];
ysize -= m_rect[3];
xsize = xsize>0?xsize:0;
ysize = ysize>0?ysize:0;
return CRCore::crVector4f(0,xsize,0,ysize);
}
void crTreeElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
m_root = new crTreeNode;
std::string str;
int int1;
if(cfg_script.Get("TextAttribute", str))
{
m_root->setTextAttribute(crTextAttribute::getTextAttribute(str));
}
if(cfg_script.Get("RowHeight", int1))
m_root->setRowHeight(int1);
if(cfg_script.Get("ColumnOffset", int1))
m_root->setColumnOffset(int1);
cfg_script.Get("HScrollBarName",m_hScrollBarName);
cfg_script.Get("VScrollBarName",m_vScrollBarName);
crElement::load(cfg_script,widthScale,heightScale);
m_root->setElementWidth(m_rect[2]);
}
void crTreeElement::lockTree()
{
m_treeMutex.lock();
}
crTreeNode *crTreeElement::getTreeRootNode()
{
return m_root.get();
}
void crTreeElement::unlockTree()
{
m_treeMutex.unlock();
}
crTreeNode *crTreeElement::getSelectNode()
{
return m_selectNode.get();
}
void crTreeElement::initWindow()
{
m_hScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_hScrollBarName));
m_vScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_vScrollBarName));
crElement::initWindow();
crVector4f scrollRange = getScrollRange();
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
void crTreeElement::updateData()
{
crElement::updateData();
crVector4f scrollRange = getScrollRange();
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
bool crTreeElement::testButtons(int mx, int my, int mouseButtonMsg )
{
bool test = false;
if(getCapture())
{
if(m_hScrollBar.valid())
{
test = m_hScrollBar->testButtons(mx,my,mouseButtonMsg);
}
if(!test && m_vScrollBar.valid())
{
test = m_vScrollBar->testButtons(mx,my,mouseButtonMsg);
}
}
if(!test)
{
if(pressed(mx,my))
{
m_isMouseOnElement = true;
if(m_root.valid() && mouseButtonMsg == WM_LBUTTONDOWN)
{
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int x = mx - m_rect[0] + hscrollValue;
int y = my - m_rect[1] + vscrollValue;
crTreeNode *selectNode = m_root->rootSelect(x,y);
if(m_selectNode != selectNode)
{
if(m_selectNode.valid())
m_selectNode->setSelect(false);
m_selectNode = selectNode;
}
if(selectNode)
{
selectNode->expand();
updateData();
}
}
}
else
{
m_isMouseOnElement = false;
}
test = crElement::testButtons(mx,my,mouseButtonMsg);
}
return test;
}
int crTreeElement::drawStageCopy(Display dc, Display down_dc)
{
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
HDC mdc,copy_dc;
HBITMAP copybmp;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(hscrollValue != 0 || vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
//draw data
//HDC bufdc;
//HBITMAP bufbmp;
//bufdc=CreateCompatibleDC(dc);
//bufbmp = CreateCompatibleBitmap(dc,m_rect[2]+hscrollValue,m_rect[3]+vscrollValue);
//SelectObject(bufdc,bufbmp);
m_treeMutex.lock();
m_root->rootDraw(dc,m_rect[0]-hscrollValue,m_rect[1]-vscrollValue,getElementBottom());
m_treeMutex.unlock();
//BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,hscrollValue,vscrollValue,SRCCOPY);
if(hscrollValue != 0 || vscrollValue != 0)
{
crVector4i v4;
if(hscrollValue != 0)
{
v4[0] = m_rect[0] - hscrollValue;
v4[1] = m_rect[1];
v4[2] = hscrollValue;
v4[3] = m_rect[3];
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2];
v4[3] = vscrollValue;
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crTreeElement::drawStageMask(Display dc, Display down_dc)
{
return 1;
}
//////////////////////////////////////////////////////////////////////////
//
//crColumnNode
//
//////////////////////////////////////////////////////////////////////////
crColumnNode::crColumnNode():
m_data(NULL)
{
}
crColumnNode::~crColumnNode()
{
clearBitMap();
}
crColumnNode::crColumnNode(const crColumnNode& treenode):
m_titleList(treenode.m_titleList),
m_bitmapArray(treenode.m_bitmapArray),
m_data(treenode.m_data)
{
}
void crColumnNode::addTitle(const std::string &title)
{
m_titleList.push_back(title);
}
bool crColumnNode::getTitle(unsigned int index,std::string &title) const
{
if(index<m_titleList.size())
{
title = m_titleList[index];
return true;
}
return false;
}
void crColumnNode::addBitMap(HBITMAP bitmap)
{
m_bitmapArray.push_back(bitmap);
}
void crColumnNode::clearBitMap()
{
for( BitMapArray::iterator itr = m_bitmapArray.begin();
itr != m_bitmapArray.end();
++itr )
{
DeleteObject(*itr);
}
m_bitmapArray.clear();
}
void crColumnNode::setData(void *data)
{
m_data = data;
}
void *crColumnNode::getData()
{
return m_data;
}
void crColumnNode::draw(Display dc,unsigned int index, RECT &rect)
{
if(index<m_titleList.size())
{
const std::string &title = m_titleList[index];
DrawText(dc,title.c_str(),title.length(),&rect,DT_WORD_ELLIPSIS);
}
}
//////////////////////////////////////////////////////////////////////////
//
//crColumnListElement
//
//////////////////////////////////////////////////////////////////////////
crColumnListElement::crColumnListElement(const crColumnListElement& element):
crElement(element),
m_columnList(element.m_columnList),
m_dataList(element.m_dataList),
m_rowHeight(element.m_rowHeight),
m_textAttribute(element.m_textAttribute),
m_useLeftBtnSelect(element.m_useLeftBtnSelect),
m_hScrollBarName(element.m_hScrollBarName),
m_vScrollBarName(element.m_vScrollBarName)
{
}
void crColumnListElement::setUseLeftBtnSelect(bool leftBtnSelect)
{
m_useLeftBtnSelect = leftBtnSelect;
}
CRCore::crVector4f crColumnListElement::getScrollRange()
{
float data_height = m_rowHeight * (getDataSize()+1);
float height = m_rect[3];
CRCore::crVector4f scrollRange;
if(data_height > height)
{
float x = (data_height - height) / float(m_rowHeight);
if(x > floor(x))
{
scrollRange[3] = floor(x) + 1;
}
else
scrollRange[3] = floor(x);
}
int width = 0;
for( ColumnList::iterator itr = m_columnList.begin();
itr != m_columnList.end();
++itr )
{
width += itr->second;
}
width -= m_rect[2];
if(width>0) scrollRange[1] = width;
return scrollRange;
}
void crColumnListElement::addColumn(const std::string &columnName,int width)
{
if(width<1) width = 1;
m_columnList.push_back(std::make_pair(columnName,width));
}
void crColumnListElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
int int1;
if(cfg_script.Get("TextAttribute", str))
{
setTextAttribute(crTextAttribute::getTextAttribute(str));
}
int nColumn = 1;
while(cfg_script.Push("Column",nColumn++))
{
cfg_script.Get("ColumnName", str);
cfg_script.Get("ColumnWidth", int1);
addColumn(str,(float)int1 * widthScale);
cfg_script.Pop();
}
if(cfg_script.Get("RowHeight", int1))
setRowHeight((float)int1 /* heightScale*/);
if(cfg_script.Get("Select", int1))
select(int1);
if(cfg_script.Get("UseLeftBtnSelect", int1))
setUseLeftBtnSelect(int1);
cfg_script.Get("HScrollBarName",m_hScrollBarName);
cfg_script.Get("VScrollBarName",m_vScrollBarName);
crElement::load(cfg_script,widthScale,heightScale);
}
void crColumnListElement::initWindow()
{
m_hScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_hScrollBarName));
m_vScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_vScrollBarName));
crElement::initWindow();
crVector4f scrollRange = getScrollRange();
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
int vscrollValue = m_vScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_vScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_vScrollBar->setValue(vscrollValue);
}
}
}
void crColumnListElement::checkSelect()
{
if(isDataEmpty())
m_select = 0;
else
{
int size = getDataSize();
if(m_select>size) m_select = size;
}
}
void crColumnListElement::updateData()
{
checkSelect();
crElement::updateData();
crVector4f scrollRange = getScrollRange();
if(m_hScrollBar.valid())
{
m_hScrollBar->setRange(crVector2f(scrollRange[0],scrollRange[1]));
}
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
int vscrollValue = m_vScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_vScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_vScrollBar->setValue(vscrollValue);
}
}
}
bool crColumnListElement::testButtons(int mx, int my, int mouseButtonMsg )
{
bool test = false;
if(getCapture())
{
if(m_hScrollBar.valid())
{
test = m_hScrollBar->testButtons(mx,my,mouseButtonMsg);
}
if(!test && m_vScrollBar.valid())
{
test = m_vScrollBar->testButtons(mx,my,mouseButtonMsg);
}
}
if(!test)
{
if(pressed(mx,my))
{
int vscrollValue = 0;
if(m_vScrollBar.valid()) vscrollValue = m_vScrollBar->getValue();
m_isMouseOnElement = true;
if(!m_useLeftBtnSelect || mouseButtonMsg == WM_LBUTTONDOWN)
{
int i = (my-m_rect[1])/m_rowHeight + vscrollValue;
if(i>=0 && i < getDataSize()+1 && m_select != i)
{
select(i);
}
}
}
else
{
m_isMouseOnElement = false;
}
test = crElement::testButtons(mx,my,mouseButtonMsg);
}
return test;
}
int crColumnListElement::getMaxRowCanBeDisplay()
{
float x = float(m_rect[3])/float(m_rowHeight);
return x > floor(x)?floor(x)-1:floor(x)-2;
}
int crColumnListElement::drawStageCopy(Display dc, Display down_dc)
{
int hscrollValue = m_hScrollBar.valid()?m_hScrollBar->getValue():0;
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
HDC mdc,copy_dc;
HBITMAP copybmp;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(hscrollValue != 0 || vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
if(m_select>-1)
{
int _select = m_select - vscrollValue;
if(_select<0)
{
_select = 0;
//m_select = vscrollValue;
select(vscrollValue);
}
else
{
int maxrow = getMaxRowCanBeDisplay();
if(_select>maxrow) _select = maxrow;
//m_select = vscrollValue + _select;
select(vscrollValue + _select);
}
if(m_hDownImage)
{
SelectObject(mdc,m_hDownImage);
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,mdc,0,0,SRCCOPY);
}
else //need draw by parent
{
BitBlt(dc,m_rect[0],m_rect[1]+_select*m_rowHeight,m_rect[2],m_rowHeight,down_dc,m_rect[0],m_rect[1]+_select*m_rowHeight,SRCCOPY);
}
}
//draw data
m_dataMutex.lock();
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
RECT rect;
rect.left = m_rect[0] + TextRectOffset - hscrollValue;
rect.top = m_rect[1] + TextRectOffset;
rect.right = getElementRight() - TextRectOffset;
rect.bottom = m_rect[1] + m_rowHeight - TextRectOffset;
int prewidth = 0;
unsigned int i,j;
i = 0;
for ( ColumnList::iterator itr = m_columnList.begin();
itr != m_columnList.end();
++itr,++i )
{
rect.top = m_rect[1] + TextRectOffset;
rect.bottom = m_rect[1] + m_rowHeight - TextRectOffset;
rect.left += prewidth;
rect.right = rect.left + itr->second;
DrawText(dc,itr->first.c_str(),itr->first.length(),&rect,DT_WORD_ELLIPSIS);
prewidth = itr->second;
j = 1;
for( DataList::iterator ditr = m_dataList.begin() + vscrollValue;
ditr != m_dataList.end();
++ditr, ++j )
{
rect.top = m_rect[1]+j*m_rowHeight + TextRectOffset;
rect.bottom = m_rect[1]+(j+1)*m_rowHeight - TextRectOffset;
if(rect.bottom>getElementBottom()) break;
(*ditr)->draw(dc,i,rect);
}
}
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
m_dataMutex.unlock();
if(hscrollValue != 0 || vscrollValue != 0)
{
crVector4i v4;
if(hscrollValue != 0)
{
v4[0] = m_rect[0] - hscrollValue;
v4[1] = m_rect[1];
v4[2] = hscrollValue;
v4[3] = m_rect[3];
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2];
v4[3] = vscrollValue;
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
//BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,0,0,SRCCOPY);
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crColumnListElement::drawStageMask(Display dc, Display down_dc)
{
return 1;
}
void crColumnListElement::clearData()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
m_dataList.clear();
}
void crColumnListElement::addData(crColumnNode *data)
{
if(data)
{
m_dataMutex.lock();
m_dataList.push_back(data);
m_dataMutex.unlock();
}
}
void crColumnListElement::deleteCurrentRow()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
if(!m_dataList.empty())
{
int i = getSelect();
DataList::iterator itr = m_dataList.begin();
itr+=i;
m_dataList.erase(itr);
}
}
void crColumnListElement::insertData(unsigned int index, crColumnNode *data)
{
if(data)
{
m_dataMutex.lock();
if (index >= m_dataList.size())
{
m_dataList.push_back(data);
}
else
{
m_dataList.insert(m_dataList.begin()+index, data);
}
m_dataMutex.unlock();
}
}
crColumnNode *crColumnListElement::getData(unsigned int index)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
if(index < m_dataList.size())
return m_dataList[index].get();
return NULL;
}
void crColumnListElement::select(int index)
{
if(m_select!=index)
{
m_select = index;
if(m_vScrollBar.valid())
{
int vscrollValue = m_vScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_vScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_vScrollBar->setValue(vscrollValue);
}
}
updateData();
}
}
void crColumnListElement::setSelect(int index)
{
if(m_select!=index)
{
m_select = index;
if(m_vScrollBar.valid())
{
int vscrollValue = m_vScrollBar->getValue();
int _select = m_select - vscrollValue;
int maxrow = getMaxRowCanBeDisplay();
if(_select<0)
{
vscrollValue += _select;
m_vScrollBar->setValue(vscrollValue);
}
else if(_select>maxrow)
{
vscrollValue += (_select - maxrow);
m_vScrollBar->setValue(vscrollValue);
}
}
}
}
int crColumnListElement::getSelect()
{
return m_select;
}
void crColumnListElement::setRowHeight(int height)
{
m_rowHeight = height;
}
int crColumnListElement::getRowHeight()
{
return m_rowHeight;
}
int crColumnListElement::getDataSize()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
return m_dataList.size();
}
bool crColumnListElement::isDataEmpty()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_dataMutex);
return m_dataList.empty();
}
//////////////////////////////////////////////////////////////////////////
//
//crListNode
//
//////////////////////////////////////////////////////////////////////////
crListNode::crListNode():
m_selected(false),
m_currentBitmap(0),
m_data(NULL)
{
}
crListNode::~crListNode()
{
clearBitMap();
}
crListNode::crListNode(const crListNode& treenode):
m_title(treenode.m_title),
m_title2(treenode.m_title2),
m_selected(false),
m_bitmapArray(treenode.m_bitmapArray),
m_currentBitmap(treenode.m_currentBitmap),
m_data(treenode.m_data)
{
}
void crListNode::setTitle(const std::string &title)
{
m_title = title;
}
const std::string &crListNode::getTitle() const
{
return m_title;
}
void crListNode::setTitle2(const std::string &title2)
{
m_title2 = title2;
}
const std::string &crListNode::getTitle2() const
{
return m_title2;
}
void crListNode::setSelect(bool select)
{
m_selected = select;
}
bool crListNode::getSelect()
{
return m_selected;
}
void crListNode::addBitMapFile(const std::string& file)
{
HBITMAP hImage = (HBITMAP)LoadImage(GetModuleHandle(NULL),file.c_str(),IMAGE_BITMAP,0,0,LR_LOADFROMFILE);
addBitMap(hImage);
}
void crListNode::addBitMap(HBITMAP bitmap)
{
m_bitmapArray.push_back(bitmap);
}
void crListNode::clearBitMap()
{
for( BitMapArray::iterator itr = m_bitmapArray.begin();
itr != m_bitmapArray.end();
++itr )
{
DeleteObject(*itr);
}
m_bitmapArray.clear();
}
void crListNode::setCurrentBitmap(unsigned char index)
{
if(index<m_bitmapArray.size())
m_currentBitmap = index;
}
unsigned char crListNode::getCurentBitmap()
{
return m_currentBitmap;
}
void crListNode::setData(void *data)
{
m_data = data;
}
void *crListNode::getData()
{
return m_data;
}
void crListNode::draw(Display dc,Display mdc,int xpos,int ypos,const CRCore::crVector2i& nodeSize,int titleHeight,int format,int format2)
{
RECT rect;
rect.left = xpos - 1;
rect.top = ypos - 1;
rect.right = xpos + nodeSize[0] + 1;
rect.bottom = ypos + nodeSize[1] + 1;
if(m_selected)
{
int bkmode = GetBkMode(dc);
HBRUSH brush = CreateSolidBrush(RGB(0,0,128));
FillRect(dc,&rect,brush);
SetBkMode(dc,bkmode);
DeleteObject((HGDIOBJ)brush);
}
rect.left = xpos;
rect.top = ypos;
rect.right = xpos + nodeSize[0];
rect.bottom = ypos + nodeSize[1];
//draw img
if(!m_bitmapArray.empty())
{
if(m_currentBitmap>=m_bitmapArray.size())
m_currentBitmap = 0;
HBITMAP bitmap = m_bitmapArray[m_currentBitmap];
if(bitmap)
{
SelectObject(mdc,bitmap);
BitBlt(dc,rect.left,rect.top,nodeSize[0],nodeSize[1],mdc,0,0,SRCCOPY);
}
}
if(!m_title.empty())
{
rect.top = rect.bottom-titleHeight;
DrawText(dc,m_title.c_str(),m_title.length(),&rect,format);
}
if(!m_title2.empty())
{
rect.top = ypos;
rect.bottom = ypos + titleHeight;
DrawText(dc,m_title2.c_str(),m_title2.length(),&rect,format2);
}
}
//////////////////////////////////////////////////////////////////////////
//
//crListControlElement
//
//////////////////////////////////////////////////////////////////////////
crListControlElement::crListControlElement():
m_titleHeight(0),
m_titleFormat(0),
m_titleFormat2(0)
{}
crListControlElement::crListControlElement(const crListControlElement& element):
crElement(element),
m_titleHeight(element.m_titleHeight),
m_titleFormat(element.m_titleFormat),
m_titleFormat2(element.m_titleFormat2)
{
}
void crListControlElement::rootCalcSize(int& xsize, int& ysize)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_listMutex);
xsize = m_spaceBetween[0];
ysize = m_nodeSize[1]+m_spaceBetween[1];
for( ListNodeVec::iterator itr = m_listNodeVec.begin();
itr != m_listNodeVec.end();
++itr )
{
xsize += m_nodeSize[0] + m_spaceBetween[0];
if(xsize>m_rect[2])
{
xsize = m_spaceBetween[0];
ysize+=m_nodeSize[1]+m_spaceBetween[1];
}
}
}
CRCore::crVector4f crListControlElement::getScrollRange()
{
int xsize = 0;
int ysize = 0;
rootCalcSize(xsize,ysize);
xsize -= m_rect[2];
ysize -= m_rect[3];
xsize = xsize>0?xsize:0;
ysize = ysize>0?ysize:0;
return CRCore::crVector4f(0,xsize,0,ysize);
}
void crListControlElement::load(rcfg::ConfigScript& cfg_script, float widthScale, float heightScale)
{
std::string str;
int int1;
if(cfg_script.Get("TextAttribute", str))
{
m_textAttribute = crTextAttribute::getTextAttribute(str);
}
std::vector<float> v_i;
if(cfg_script.Get("NodeSize", v_i))
m_nodeSize.set(v_i[0],v_i[1]);
if(cfg_script.Get("SpaceBetween", v_i))
m_spaceBetween.set(v_i[0],v_i[1]);
if(cfg_script.Get("TitleHeight", int1))
m_titleHeight = int1;
cfg_script.Get("VScrollBarName",m_vScrollBarName);
m_titleFormat = 0;
if(cfg_script.Get("TitleFormat", str))
{
if(str.find("DT_LEFT") != std::string::npos)
{
m_titleFormat |= DT_LEFT;
}
if(str.find("DT_CENTER") != std::string::npos)
{
m_titleFormat |= DT_CENTER;
}
if(str.find("DT_RIGHT") != std::string::npos)
{
m_titleFormat |= DT_RIGHT;
}
if(str.find("DT_VCENTER") != std::string::npos)
{
m_titleFormat |= DT_VCENTER;
}
if(str.find("DT_BOTTOM") != std::string::npos)
{
m_titleFormat |= DT_BOTTOM;
}
if(str.find("DT_WORDBREAK") != std::string::npos)
{
m_titleFormat |= DT_WORDBREAK;
}
if(str.find("DT_SINGLELINE") != std::string::npos)
{
m_titleFormat |= DT_SINGLELINE;
}
if(str.find("DT_EXPANDTABS") != std::string::npos)
{
m_titleFormat |= DT_EXPANDTABS;
}
if(str.find("DT_TABSTOP") != std::string::npos)
{
m_titleFormat |= DT_TABSTOP;
}
if(str.find("DT_NOCLIP") != std::string::npos)
{
m_titleFormat |= DT_NOCLIP;
}
if(str.find("DT_EXTERNALLEADING") != std::string::npos)
{
m_titleFormat |= DT_EXTERNALLEADING;
}
if(str.find("DT_CALCRECT") != std::string::npos)
{
m_titleFormat |= DT_CALCRECT;
}
if(str.find("DT_NOPREFIX") != std::string::npos)
{
m_titleFormat |= DT_NOPREFIX;
}
if(str.find("DT_INTERNAL") != std::string::npos)
{
m_titleFormat |= DT_INTERNAL;
}
}
m_titleFormat2 = 0;
if(cfg_script.Get("TitleFormat2", str))
{
if(str.find("DT_LEFT") != std::string::npos)
{
m_titleFormat2 |= DT_LEFT;
}
if(str.find("DT_CENTER") != std::string::npos)
{
m_titleFormat2 |= DT_CENTER;
}
if(str.find("DT_RIGHT") != std::string::npos)
{
m_titleFormat2 |= DT_RIGHT;
}
if(str.find("DT_VCENTER") != std::string::npos)
{
m_titleFormat2 |= DT_VCENTER;
}
if(str.find("DT_BOTTOM") != std::string::npos)
{
m_titleFormat2 |= DT_BOTTOM;
}
if(str.find("DT_WORDBREAK") != std::string::npos)
{
m_titleFormat2 |= DT_WORDBREAK;
}
if(str.find("DT_SINGLELINE") != std::string::npos)
{
m_titleFormat2 |= DT_SINGLELINE;
}
if(str.find("DT_EXPANDTABS") != std::string::npos)
{
m_titleFormat2 |= DT_EXPANDTABS;
}
if(str.find("DT_TABSTOP") != std::string::npos)
{
m_titleFormat2 |= DT_TABSTOP;
}
if(str.find("DT_NOCLIP") != std::string::npos)
{
m_titleFormat2 |= DT_NOCLIP;
}
if(str.find("DT_EXTERNALLEADING") != std::string::npos)
{
m_titleFormat2 |= DT_EXTERNALLEADING;
}
if(str.find("DT_CALCRECT") != std::string::npos)
{
m_titleFormat2 |= DT_CALCRECT;
}
if(str.find("DT_NOPREFIX") != std::string::npos)
{
m_titleFormat2 |= DT_NOPREFIX;
}
if(str.find("DT_INTERNAL") != std::string::npos)
{
m_titleFormat2 |= DT_INTERNAL;
}
}
crElement::load(cfg_script,widthScale,heightScale);
}
void crListControlElement::addListNode(crListNode *listNode)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_listMutex);
m_listNodeVec.push_back(listNode);
}
void crListControlElement::removeSelectListNode()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_listMutex);
ListNodeVec::iterator itr;
ListNodeVec::iterator nextitr;
for( itr = m_listNodeVec.begin();
itr != m_listNodeVec.end();
++itr )
{
if(*itr == m_selectNode.get())
{
nextitr = itr;
nextitr++;
if(nextitr != m_listNodeVec.end())
{
m_selectNode = nextitr->get();
m_selectNode->setSelect(true);
}
else
{
if(itr!=m_listNodeVec.begin())
{
nextitr = m_listNodeVec.begin();
m_selectNode = nextitr->get();
m_selectNode->setSelect(true);
}
else
{
m_selectNode = NULL;
}
}
m_listNodeVec.erase(itr);
break;
}
}
}
void crListControlElement::clear()
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_listMutex);
m_listNodeVec.clear();
m_selectNode = NULL;
}
void crListControlElement::lockList()
{
m_listMutex.lock();
}
crListControlElement::ListNodeVec &crListControlElement::getListNodeVec()
{
return m_listNodeVec;
}
void crListControlElement::unlockList()
{
m_listMutex.unlock();
}
crListNode *crListControlElement::getSelectNode()
{
return m_selectNode.get();
}
void crListControlElement::initWindow()
{
m_vScrollBar = dynamic_cast<crScrollBarElement *>(m_parentStage->getElement(m_vScrollBarName));
crElement::initWindow();
crVector4f scrollRange = getScrollRange();
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
void crListControlElement::updateData()
{
crElement::updateData();
crVector4f scrollRange = getScrollRange();
if(m_vScrollBar.valid())
{
m_vScrollBar->setRange(crVector2f(scrollRange[2],scrollRange[3]));
}
}
crListNode *crListControlElement::rootSelect(int x, int y)
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_listMutex);
RECT rect;
int xpos = m_spaceBetween[0];
int ypos = m_spaceBetween[1];
for( ListNodeVec::iterator itr = m_listNodeVec.begin();
itr != m_listNodeVec.end();
++itr )
{
rect.left = xpos;
rect.top = ypos;
rect.right = xpos + m_nodeSize[0];
rect.bottom = ypos + m_nodeSize[1];
if(x>rect.left && x<rect.right && y>rect.top && y<rect.bottom)
{
return itr->get();
}
xpos += m_nodeSize[0] + m_spaceBetween[0];
if(xpos>m_rect[2])
{
xpos = m_spaceBetween[0];
ypos+=m_nodeSize[1]+m_spaceBetween[1];
}
}
return NULL;
}
bool crListControlElement::inputChar(wchar_t c)
{
switch(c)
{
case 9://tab
if(!m_listNodeVec.empty())
{
crListNode *selectNode = m_selectNode.get();
if(!selectNode)
selectNode = m_listNodeVec.begin()->get();
else
{
CRCore::ScopedLock<CRCore::crMutex> lock(m_listMutex);
ListNodeVec::iterator itr;
for( itr = m_listNodeVec.begin();
itr != m_listNodeVec.end();
++itr )
{
if( *itr == selectNode )
{
break;
}
}
itr++;
if(itr == m_listNodeVec.end())
itr = m_listNodeVec.begin();
selectNode = itr->get();
}
if(m_selectNode != selectNode)
{
if(m_selectNode.valid())
m_selectNode->setSelect(false);
m_selectNode = selectNode;
if(m_selectNode.valid())
m_selectNode->setSelect(true);
updateData();
}
}
break;
}
return crElement::inputChar(c);
}
bool crListControlElement::testButtons(int mx, int my, int mouseButtonMsg )
{
bool test = false;
if(getCapture())
{
if(m_vScrollBar.valid())
{
test = m_vScrollBar->testButtons(mx,my,mouseButtonMsg);
}
}
if(!test)
{
if(pressed(mx,my))
{
m_isMouseOnElement = true;
if(mouseButtonMsg == WM_LBUTTONDOWN || mouseButtonMsg == WM_RBUTTONDOWN || mouseButtonMsg == WM_LBUTTONDBLCLK)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
int x = mx - m_rect[0];
int y = my - m_rect[1] + vscrollValue;
crListNode *selectNode = rootSelect(x,y);
if(m_selectNode != selectNode)
{
if(m_selectNode.valid())
m_selectNode->setSelect(false);
m_selectNode = selectNode;
if(m_selectNode.valid())
m_selectNode->setSelect(true);
updateData();
}
}
}
else
{
m_isMouseOnElement = false;
}
test = crElement::testButtons(mx,my,mouseButtonMsg);
}
return test;
}
void crListControlElement::rootDraw(Display dc,Display mdc,int xpos,int ypos)
{
xpos+=m_spaceBetween[0];
ypos+=m_spaceBetween[1];
int xbegin = xpos;
for( ListNodeVec::iterator itr = m_listNodeVec.begin();
itr != m_listNodeVec.end();
++itr )
{
if(m_textAttribute.valid()) m_textAttribute->drawTextAttribute(dc);
(*itr)->draw(dc,mdc,xpos,ypos,m_nodeSize,m_titleHeight,m_titleFormat,m_titleFormat2);
if(m_textAttribute.valid()) crTextAttribute::endDrawText(dc);
xpos += m_nodeSize[0] + m_spaceBetween[0];
if(xpos>getElementRight())
{
xpos = xbegin;
ypos+=m_nodeSize[1]+m_spaceBetween[1];
if(ypos + m_nodeSize[1] > getElementBottom()) return;
}
}
}
int crListControlElement::drawStageCopy(Display dc, Display down_dc)
{
int vscrollValue = m_vScrollBar.valid()?m_vScrollBar->getValue():0;
HDC mdc,copy_dc;
HBITMAP copybmp;
bool noNeedFatherDraw = true;
mdc=CreateCompatibleDC(NULL);
// draw bitmap
if(!m_enable)
{
if(m_hDisableImage)
{
SelectObject(mdc,m_hDisableImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
else //need draw by parent
noNeedFatherDraw = false;
}
else
{
if(m_hImage)
{
SelectObject(mdc,m_hImage);
BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],mdc,0,0,SRCCOPY);
}
if(vscrollValue != 0)
{
int width = GetDeviceCaps(dc, HORZRES);
int height = GetDeviceCaps(dc, VERTRES);
copy_dc=CreateCompatibleDC(dc);
copybmp = CreateCompatibleBitmap(dc,width,height);
SelectObject(copy_dc,copybmp);
BitBlt(copy_dc,0,0,width,height,dc,0,0,SRCCOPY);
}
//draw data
//HDC bufdc;
//HBITMAP bufbmp;
//bufdc=CreateCompatibleDC(dc);
//bufbmp = CreateCompatibleBitmap(dc,m_rect[2]+hscrollValue,m_rect[3]+vscrollValue);
//SelectObject(bufdc,bufbmp);
m_listMutex.lock();
rootDraw(dc,mdc,m_rect[0],m_rect[1]-vscrollValue);
m_listMutex.unlock();
//BitBlt(dc,m_rect[0],m_rect[1],m_rect[2],m_rect[3],bufdc,hscrollValue,vscrollValue,SRCCOPY);
if(vscrollValue != 0)
{
crVector4i v4;
if(vscrollValue != 0)
{
v4[0] = m_rect[0];
v4[1] = m_rect[1]-vscrollValue;
v4[2] = m_rect[2]+1;
v4[3] = vscrollValue;
BitBlt(dc,v4[0],v4[1],v4[2],v4[3],copy_dc,v4[0],v4[1],SRCCOPY);
}
DeleteDC(copy_dc);
DeleteObject(copybmp);
}
}
DeleteDC(mdc);
return noNeedFatherDraw;
}
int crListControlElement::drawStageMask(Display dc, Display down_dc)
{
return 1;
}
| [
"wucaihua@86aba9cf-fb85-4101-ade8-2f98c1f5b361"
] | wucaihua@86aba9cf-fb85-4101-ade8-2f98c1f5b361 |
b07f8b26f8e735669f5f6f1428f2e47a3ed87e61 | d2d4821ca589dee366b0a5ed9c13278786577c57 | /luogu/3810.cpp | 039061bd25678e52fbebcc109a354bc6827d8be7 | [] | no_license | kb1875885205/ACM_ICPC_practice | 834a33f7e58b0f91bd8f6a21fcf759e0e9ef4698 | b3be1f6264b150e5e5de9192b5664d487825de72 | refs/heads/master | 2022-04-19T21:04:07.236574 | 2020-04-13T11:02:09 | 2020-04-13T11:02:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,062 | cpp | #include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e5 + 5;
const int MAXM = 2e5 + 5;
struct node
{
int a, b, c;
int cnt = 0, ans = 0;
node(){}
node(int _a, int _b, int _c) :a(_a), b(_b), c(_c) {};
};
node s1[MAXN], s2[MAXN];
int n, k, top, m;
int ans[MAXN];
bool cmp1d(const node& a, const node& b)
{
if (a.a == b.a)
return a.b == b.b ? a.c < b.c : a.b < b.b;
return a.a < b.a;
}
bool cmp2d(const node& a, const node& b)
{
return a.b == b.b ? a.c < b.c : a.b < b.b;
}
bool cmp(node& a, node& b)
{
if (a.a != b.a)
return true;
if (a.b != b.b)
return true;
if (a.c != b.c)
return true;
return false;
}
struct BIT
{
int c[MAXM];
int lowbit(int x)
{
return x & (-x);
}
void insert(int x, int n, int val)
{
for (x; x <= n; x += lowbit(x))
c[x] += val;
}
int sum(int x)
{
int ans = 0;
for (x; x; x -= lowbit(x))
ans += c[x];
return ans;
}
};
BIT tr;
void cdq(int l, int r)
{
if (l == r)
return;
int mid = (l + r) >> 1;
cdq(l, mid), cdq(mid + 1, r);
sort(s2 + l, s2 + mid + 1, cmp2d);
sort(s2 + mid + 1, s2 + r + 1, cmp2d);//对两个小区间分别排序
int i, j = l;
for (i = mid + 1; i <= r; ++i)
{
while (s2[i].b >= s2[j].b && j <= mid)//把小于i的j的数量加入树状数组
tr.insert(s2[j].c, k, s2[j].cnt), ++j;
s2[i].ans += tr.sum(s2[i].c);//求前缀和即为数量
}
for (int i = l; i < j; ++i)//清空树状数组
tr.insert(s2[i].c, k, -s2[i].cnt);
}
int main()
{
int a, b, c;
scanf("%d%d", &n, &k);
for (int i = 1; i <= n; ++i)
{
scanf("%d%d%d", &a, &b, &c);
s1[i] = node(a, b, c);
//cout << s1[i].a << " " << s1[i].b << " " << s1[i].c << endl;
}
sort(s1 + 1, s1 + n + 1, cmp1d);//对第一维排序
for (int i = 1; i <= n; ++i)//合并相同项
{
++top;
if (cmp(s1[i], s1[i + 1]))
{
++m;
s2[m] = node(s1[i].a, s1[i].b, s1[i].c);
s2[m].cnt = top;
top = 0;
}
}
cdq(1, m);//分治
for (int i = 1; i <= m; ++i)
ans[s2[i].ans + s2[i].cnt - 1] += s2[i].cnt;//统计数量
for (int i = 0; i < n; ++i)
printf("%d\n", ans[i]);
return 0;
} | [
"organic_chemistry@foxmail.com"
] | organic_chemistry@foxmail.com |
643dd3638f489f22e7b4d69db7595a4852ebdacd | 7425b73c5c4301b73efee73a2a97c478e3d9c94f | /src/sleipnir/tools/BNConverter/BNConverter.cpp | dd44b738d22726c7981967dca9070365a0b460b4 | [
"CC-BY-3.0"
] | permissive | mehdiAT/diseasequest-docker | 318202ced87e5e5ed1bd609fe268ebc530c65e96 | 31943d2fafa8516b866fa13ff3d0d79989aef361 | refs/heads/master | 2020-05-15T01:21:21.530861 | 2018-04-16T22:42:34 | 2018-04-16T22:42:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,858 | cpp | /*****************************************************************************
* This file is provided under the Creative Commons Attribution 3.0 license.
*
* You are free to share, copy, distribute, transmit, or adapt this work
* PROVIDED THAT you attribute the work to the authors listed below.
* For more information, please see the following web page:
* http://creativecommons.org/licenses/by/3.0/
*
* This file is a component of the Sleipnir library for functional genomics,
* authored by:
* Curtis Huttenhower (chuttenh@princeton.edu)
* Mark Schroeder
* Maria D. Chikina
* Olga G. Troyanskaya (ogt@princeton.edu, primary contact)
*
* If you use this library, the included executable tools, or any related
* code in your work, please cite the following publication:
* Curtis Huttenhower, Mark Schroeder, Maria D. Chikina, and
* Olga G. Troyanskaya.
* "The Sleipnir library for computational functional genomics"
*****************************************************************************/
#include "stdafx.h"
#include "cmdline.h"
static void Evaluate( const IDataset*, const IBayesNet*, bool, ostream& );
static void DebugDataset( const IDataset* );
int main( int iArgs, char** aszArgs ) {
CDatasetCompact Data;
CDatasetCompactMap DataMap;
CDataset DataFull;
CDataPair Answers;
CDataMask Train, Test;
IDataset* pData;
gengetopt_args_info sArgs;
ofstream ofsm;
IBayesNet* pNet;
size_t i;
if( cmdline_parser( iArgs, aszArgs, &sArgs ) ) {
cmdline_parser_print_help( );
return 1; }
CMeta Meta( sArgs.verbosity_arg, sArgs.random_arg );
CBayesNetSmile BNSmile( !!sArgs.group_flag ), BNDefault( !!sArgs.group_flag );
#ifdef PNL_ENABLED
CBayesNetPNL BNPNL( !!sArgs.group_flag );
#endif // PNL_ENABLED
CBayesNetFN BNFN;
if( sArgs.function_flag ) {
if( !BNFN.Open( sArgs.input_arg ) ) {
cerr << "Couldn't open: " << sArgs.input_arg << endl;
return 1; }
pNet = &BNFN; }
else {
if( !BNSmile.Open( sArgs.input_arg ) ) {
cerr << "Couldn't open: " << sArgs.input_arg << endl;
return 1; }
if( sArgs.default_arg ) {
if( !BNDefault.Open( sArgs.default_arg ) ) {
cerr << "Couldn't open: " << sArgs.default_arg << endl;
return 1; }
BNSmile.SetDefault( BNDefault ); }
#ifdef PNL_ENABLED
if( sArgs.pnl_flag ) {
BNSmile.Convert( BNPNL );
pNet = &BNPNL; }
else
#endif // PNL_ENABLED
pNet = &BNSmile; }
if( sArgs.randomize_flag )
pNet->Randomize( );
if( sArgs.dataset_arg ) {
if( !DataMap.Open( sArgs.dataset_arg ) ) {
cerr << "Couldn't open: " << sArgs.dataset_arg << endl;
return 1; }
if( sArgs.genes_arg && !DataMap.FilterGenes( sArgs.genes_arg, CDat::EFilterInclude ) ) {
cerr << "Couldn't open: " << sArgs.genes_arg << endl;
return 1; }
if( sArgs.genet_arg && !DataMap.FilterGenes( sArgs.genet_arg, CDat::EFilterTerm ) ) {
cerr << "Couldn't open: " << sArgs.genet_arg << endl;
return 1; }
if( sArgs.genex_arg && !DataMap.FilterGenes( sArgs.genex_arg, CDat::EFilterExclude ) ) {
cerr << "Couldn't open: " << sArgs.genex_arg << endl;
return 1; }
DataMap.FilterAnswers( );
pData = &DataMap; }
else {
if( !Answers.Open( sArgs.answers_arg, pNet->IsContinuous( 0 ) ) ) {
cerr << "Couldn't open: " << sArgs.answers_arg << endl;
return 1; }
if( sArgs.genes_arg && !Answers.FilterGenes( sArgs.genes_arg, CDat::EFilterInclude ) ) {
cerr << "Couldn't open: " << sArgs.genes_arg << endl;
return 1; }
if( sArgs.genet_arg && !Answers.FilterGenes( sArgs.genet_arg, CDat::EFilterTerm ) ) {
cerr << "Couldn't open: " << sArgs.genet_arg << endl;
return 1; }
if( sArgs.genex_arg && !Answers.FilterGenes( sArgs.genex_arg, CDat::EFilterExclude ) ) {
cerr << "Couldn't open: " << sArgs.genex_arg << endl;
return 1; }
if( pNet->IsContinuous( ) ) {
if( !DataFull.Open( Answers, sArgs.datadir_arg, pNet ) ) {
cerr << "Couldn't open: " << sArgs.datadir_arg << endl;
return 1; }
pData = &DataFull; }
else {
if( !Data.Open( Answers, sArgs.datadir_arg, pNet ) ) {
cerr << "Couldn't open: " << sArgs.datadir_arg << endl;
return 1; }
Data.FilterAnswers( );
pData = &Data; } }
if( sArgs.test_arg ) {
Train.AttachRandom( pData, (float)( 1 - sArgs.test_arg ) );
Test.AttachComplement( Train );
pData = &Train; }
if( sArgs.test_arg < 1 ) {
if( sArgs.checkpoint_flag )
for( i = 0; i < (size_t)sArgs.iterations_arg; ++i ) {
pNet->Learn( pData, 1, !!sArgs.zero_flag, !!sArgs.elr_flag );
cerr << "Iteration " << i << '/' << sArgs.iterations_arg << " complete" << endl;
pNet->Save( sArgs.output_arg ); }
else
pNet->Learn( pData, sArgs.iterations_arg, !!sArgs.zero_flag, !!sArgs.elr_flag ); }
if( sArgs.murder_given )
pNet->Randomize( sArgs.murder_arg );
pNet->Save( sArgs.output_arg );
if( sArgs.eval_train_arg && ( sArgs.test_arg < 1 ) ) {
ofsm.open( sArgs.eval_train_arg, ios_base::binary );
Evaluate( pData, pNet, !!sArgs.zero_flag, ofsm );
ofsm.close( ); }
if( sArgs.eval_test_arg && sArgs.test_arg ) {
ofsm.clear( );
ofsm.open( sArgs.eval_test_arg, ios_base::binary );
Evaluate( &Test, pNet, !!sArgs.zero_flag, ofsm );
ofsm.close( ); }
return 0; }
static void Evaluate( const IDataset* pData, const IBayesNet* pNet, bool fZero, ostream& ostm ) {
size_t i, j;
float d;
CDat Dat;
Dat.Open( pData->GetGeneNames( ) );
pNet->Evaluate( pData, Dat, fZero );
if( !pNet->IsContinuous( ) )
for( i = 0; i < Dat.GetGenes( ); ++i )
for( j = ( i + 1 ); j < Dat.GetGenes( ); ++j )
if( !CMeta::IsNaN( d = Dat.Get( i, j ) ) )
Dat.Set( i, j, 1 - d );
Dat.Save( ostm ); }
static void DebugDataset( const IDataset* pData ) {
size_t i, j;
for( i = 0; i < pData->GetGenes( ); ++i ) {
for( j = ( i + 1 ); j < pData->GetGenes( ); ++j )
cerr << ( pData->IsExample( i, j ) ? 1 : 0 );
if( ( i + 1 ) < pData->GetGenes( ) )
cerr << endl; } }
| [
"vicyao@gmail.com"
] | vicyao@gmail.com |
a03c4fcbeeebcccd7908f394783f8a7feeffa108 | 6ab98910008f398f0a8bbb3d22fa4bdc6dc74bd1 | /LISTCON/main1.cpp | fac0b363d07f6859e720c5c50398bddc6cef20aa | [
"MIT"
] | permissive | grkmkctrk/LISTCON_training | b87c761f23d1077505fd89a0fa28fdcc79a9ebb6 | 3a68767496fb0460d044f14e151377886a4fd60d | refs/heads/main | 2023-07-19T13:49:40.235490 | 2021-09-01T12:42:28 | 2021-09-01T12:42:28 | 402,054,819 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,558 | cpp | /*
EX 1
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> slist;
Randomize();
cfill(slist, 10);
cdisplay(slist);
string s;
cout << "The name needs to search : ";
cin >> s;
list<string>::iterator it_s = slist.begin();
it_s = myFind(slist.begin(), slist.end(), s);
cout << "Searched name is : " << *it_s << endl;
return 0;
}
EX 1
*/
/*
EX 1.1
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> slist;
Randomize();
cfill(slist, 10);
cdisplay(slist);
string s;
cout << "The name needs to search : ";
cin >> s;
list<string>::iterator it_s = slist.begin();
it_s = myFind(slist.begin(), slist.end(), s);
cout << "Searched name is : " << *it_s << endl;
if(it_s != slist.end()){
slist.erase(it_s);
}
cdisplay(slist);
return 0;
}
EX 1.1
*/
/*
EX 2
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> slist;
Randomize();
cfill(slist, 10);
cdisplay(slist);
string s;
cout << "The name needs to be found : ";
cin >> s;
list<string>::iterator iter = slist.begin();
// iter = myFind(slist.begin(), slist.end(), s);
// cout << *iter << endl;
while(iter != slist.end()){
iter = myFind(slist.begin(), slist.end(), s);
if(iter != slist.end()){
slist.erase(iter);
}
cdisplay(slist);
}
return 0;
}
EX 2
*/
/*
EX 3
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> slist;
Randomize();
cfill(slist, 10);
cdisplay(slist);
list<string>::iterator iter = slist.begin();
cout << "Deleting process is started" << endl;
while (iter != slist.end()){
iter = myFindIf(slist.begin(), slist.end(), &predicate);
if(iter != slist.end()){
slist.erase(iter);
}
cdisplay(slist);
}
cout << "Deleting process is ended" << endl;
return 0;
}
EX 3
*/
/*
EX 3.1
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> slist;
Randomize();
cfill(slist, 10);
cdisplay(slist);
list<string>::iterator iter = slist.begin();
cout << "Deletion process is started" << endl;
while (iter != slist.end()){
iter = myFindIfUpdated(slist.begin(), slist.end(), &predicate);
if(iter != slist.end()){
slist.erase(iter);
}
cdisplay(slist);
}
cout << "Deletion process is ended" << endl;
return 0;
}
EX 3.1
*/
/*
EX 3.2
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> slist;
Randomize();
cfill(slist, 50);
cdisplay(slist);
list<string>::iterator iter = slist.begin();
cout << "Deletion process is started" << endl;
while (iter != slist.end()){
iter = myFindIfUpdated(slist.begin(), slist.end(), &predicateLower);
if(iter != slist.end()){
slist.erase(iter);
}
cdisplay(slist);
}
cout << "Deletion process is ended" << endl;
return 0;
}
EX 3.2
*/
/*
EX 3.3
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> slist;
Randomize();
cfill(slist, 10);
cdisplay(slist);
list<string>::iterator iter = slist.begin();
cout << "Deletion process is started" << endl;
while (iter != slist.end()){
iter = myFindIfFullList(slist.begin(), slist.end(), &predicateLower);
if(iter != slist.end()){
slist.erase(iter);
}
cdisplay(slist);
}
cout << "Deletion process is ended" << endl;
return 0;
}
EX 3.3
*/
/*
EX 4
#include "utilityClass.hpp"
using namespace std;
int main(){
vector<string> sVec;
list<string> sList;
Randomize();
cfill(sVec, 10);
cfill(sList, 10);
cdisplay(sVec);
cdisplay(sList);
// sList = sVec;
// sList.operator=(sVec) // There are not proper usage
// There is not overload for this
// sList.assign(sVec.begin(), sVec.end()); // iterator can be used
sVec.assign(sList.begin(), sList.end()); // iterator can be used
cdisplay(sVec);
cdisplay(sList);
return 0;
}
EX 4
*/
/*
EX5
#include "utilityClass.hpp"
using namespace std;
int main(){
list<string> sList;
Randomize();
cfill(sList, 10);
cdisplay(sList);
sList.resize(20, "Ali");
cdisplay(sList);
return 0;
}
EX5
*/
/*
EX6
#include "utilityClass.hpp"
using namespace std;
int main(){
const char *p[5] = {"x", "y", "z", "a", "b"};
list<string> sList;
Randomize();
cfill(sList, 10);
cdisplay(sList);
// sList.insert(sList.begin(), "first");
// sList.insert(++sList.begin(), "666");
sList.insert(sList.begin(), p, p+3);
cdisplay(sList);
return 0;
}
EX6
*/
/*
EX 7
#include "utilityClass.hpp"
using namespace std;
int main(){
vector<string> v;
Randomize();
cfill(v, 10);
cdisplay(v);
string s;
cout << "The name needs to be deleted : ";
cin >> s;
// When want to delete something then STD ignore it
// it is mean the the something is not deleted physically
// it just ignored at pointer level
remove(v.begin(), v.end(), s);
cdisplay(v);
return 0;
}
EX 7
*/
/*
EX 7.1
#include "utilityClass.hpp"
using namespace std;
int main(){
vector<string> v;
Randomize();
cfill(v, 10);
cdisplay(v);
while (v.size() != 0){
string s;
cout << "The name needs to be deleted : ";
cin >> s;
// When want to delete something then STL ignore it
// it is mean the something is not deleted physically
// it just ignored at pointer level
remove(v.begin(), v.end(), s);
cdisplay(v);
}
return 0;
}
EX 7.1
*/
/*
EX 8
#include "utilityClass.hpp"
using namespace std;
int main(){
vector<string> v;
Randomize();
cfill(v, 10);
cdisplay(v);
while (v.size() != 0){
string s;
cout << "The name needs to be deleted : ";
cin >> s;
v.erase(remove(v.begin(), v.end(), s), v.end());
cdisplay(v);
}
return 0;
}
EX 8
*/
/*
EX 9
#include "utilityClass.hpp"
using namespace std;
// Lexicographical compare algorithm
int main(){
vector<string> sVec(3);
sVec[0] = "a";
sVec[1] = "b";
sVec[2] = "c";
list<string> sList(sVec.begin(), sVec.end());
cout << "Displaying vec...." << endl;
cdisplay(sVec);
cout << "\nDisplaying list...." << endl;
cdisplay(sList);
cout << "Comparison for sLisc/sVec...." << endl;
cout << boolalpha << lexicographical_compare(sVec.begin(), sVec.end(), sList.begin(), sList.end()) << endl;
// lexicographical_compare only evaluate either one word is bigger than other string
return 0;
}
EX 9
*/
/*
EX10
#include "utilityClass.hpp"
using namespace std;
int main(){
vector<string> sVec(3);
sVec[0] = "a";
sVec[1] = "b";
sVec[2] = "c";
list<string> sList(sVec.begin(), sVec.end());
cout << "Comparison is began!" << endl;
cout << boolalpha << equal(sVec.begin(), sVec.end(), sList.begin(), sList.end()) << endl;
return 0;
}
EX10
*/
/*
EX 11
EX 11
*/
#include "utilityClass.hpp"
using namespace std;
int main(){
vector<string> sVec(3);
sVec[0] = "a";
sVec[1] = "b";
sVec[2] = "c";
list<string> sList(sVec.begin(), sVec.end());
pair<vector<string>::iterator, list<string>::iterator> mismPair;
cout << "Comparison is began!" << endl;
sList.back() = "Gorkem";
mismPair = mismatch(sVec.begin(), sVec.end(), sList.begin());
// shows us differences in same index
cout << boolalpha << *mismPair.first << endl;
cout << boolalpha << *mismPair.second << endl;
return 0;
} | [
"noreply@github.com"
] | grkmkctrk.noreply@github.com |
89b3e745a50d304899d139c80c365e2b9e0a4105 | 1593b8975b5ac78c9e00d199aa0bf3c2de40f155 | /gazebo/physics/bullet/BulletRaySensor.cc | 8bcf4b6eb0069aa6f3bfd9613336b066ebac59ca | [
"Apache-2.0"
] | permissive | kesaribath47/gazebo-deb | 3e0da13ec54f33cc8036623bb8bba2d4a4f46150 | 456da84cfb7b0bdac53241f6c4e86ffe1becfa7d | refs/heads/master | 2021-01-22T23:15:52.075857 | 2013-07-12T18:22:26 | 2013-07-12T18:22:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,967 | cc | /*
* Copyright 2012 Open Source Robotics Foundation
*
* 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.
*
*/
/* Desc: Bullet ray sensor
* Author: Nate Koenig
* Date: 21 May 2009
*/
/*
#include "World.hh"
#include "BulletPhysics.hh"
#include "BulletRaySensor.hh"
*/
using namespace gazebo;
using namespace physics;
//////////////////////////////////////////////////
BulletRaySensor::BulletRaySensor(Link *_body)
: PhysicsRaySensor(_body)
{
this->body = dynamic_cast<BulletLink*>(_body);
if (this->body == NULL)
gzthrow("BulletRaySensor requires an BulletLink");
}
//////////////////////////////////////////////////
BulletRaySensor::~BulletRaySensor()
{
std::vector<BulletRayCollision*>::iterator iter;
for (iter = this->rays.begin(); iter != this->rays.end(); ++iter)
{
delete (*iter);
}
this->rays.clear();
}
//////////////////////////////////////////////////
void BulletRaySensor::AddRay(math::Vector3 start, math::Vector3 end,
double minRange, double maxRange, bool display)
{
BulletRayCollision *rayCollision;
rayCollision = static_cast<BulletRayCollision*>(
this->GetWorld()->CreateCollision("ray", this->body));
rayCollision->SetDisplayRays(display);
rayCollision->SetMinLength(minRange);
rayCollision->SetMaxLength(maxRange);
rayCollision->SetPoints(start, end);
this->rays.push_back(rayCollision);
}
//////////////////////////////////////////////////
int BulletRaySensor::GetCount() const
{
return this->rays.size();
}
//////////////////////////////////////////////////
void BulletRaySensor::GetRelativePoints(int _index,
math::Vector3 &_a, math::Vector3 &_b)
{
if (_index <0 || _index >= static_cast<int>(this->rays.size()))
{
std::ostringstream stream;
stream << "_index[" << _index << "] is out of range[0-"
<< this->GetCount() << "]";
gzthrow(stream.str());
}
this->rays[_index]->GetRelativePoints(_a, _b);
}
//////////////////////////////////////////////////
double BulletRaySensor::GetRange(int _index) const
{
if (_index <0 || _index >= static_cast<int>(this->rays.size()))
{
std::ostringstream stream;
stream << "_index[" << _index << "] is out of range[0-"
<< this->GetCount() << "]";
gzthrow(stream.str());
}
return this->rays[_index]->GetLength();
}
//////////////////////////////////////////////////
double BulletRaySensor::GetRetro(int _index) const
{
if (_index <0 || _index >= static_cast<int>(this->rays.size()))
{
std::ostringstream stream;
stream << "_index[" << _index << "] is out of range[0-"
<< this->GetCount() << "]";
gzthrow(stream.str());
}
return this->rays[_index]->GetRetro();
}
//////////////////////////////////////////////////
double BulletRaySensor::GetFiducial(int _index) const
{
if (_index <0 || _index >= static_cast<int>(this->rays.size()))
{
std::ostringstream stream;
stream << "_index[" << _index << "] is out of range[0-"
<< this->GetCount() << "]";
gzthrow(stream.str());
}
return this->rays[_index]->GetFiducial();
}
//////////////////////////////////////////////////
void BulletRaySensor::Update()
{
std::vector<BulletRayCollision*>::iterator iter;
for (iter = this->rays.begin(); iter != this->rays.end(); ++iter)
{
(*iter)->SetLength((*iter)->GetMaxLength());
(*iter)->SetRetro(0.0);
(*iter)->SetFiducial(-1);
// Get the global points of the line
(*iter)->Update();
}
}
| [
"thomas.moulard@gmail.com"
] | thomas.moulard@gmail.com |
576d1a3ea370a9f670d95b39a8a62e33478bdd5e | 3e3fe4344120006c3fd3664865eba160ae66a013 | /GraphicsModule/SkinnedMesh.hpp | b6cb87dbe716e94f6e9f7bee6d7635efe5293c54 | [] | no_license | Kumazuma/3D_Project | f627f20c5c89d3e8f2adbb10d1ab8cb6a655f1ac | 4e38afd3de5a8a6cfb589adf5e73bb7d5772af33 | refs/heads/master | 2023-03-16T14:06:46.254172 | 2021-03-02T09:46:24 | 2021-03-02T09:46:24 | 314,772,394 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 348 | hpp | #pragma once
#include "common.hpp"
#include "Mesh.hpp"
namespace Kumazuma
{
class SkinnedAnimationController;
class DLL_CLASS SkinnedMesh : public Mesh
{
public:
virtual void SetupIA(ID3D11DeviceContext* device) = 0;
virtual Subsets const& GetSubsetsRef() = 0;
virtual Texture2D* GetMaterialTexture(wchar_t const* materialName) = 0;
};
} | [
"qweads12@gmail.com"
] | qweads12@gmail.com |
a1d8c74b5dd209ca12e8b27c9a24cfbc2dd79840 | 9d17a9914edb2349ef8b633635bf32ea92c95e94 | /12492 Rubik Cycle.cpp | 641578f83fef51ae825ab632240ba0860bb4ec1e | [
"Apache-2.0"
] | permissive | Diusrex/UVA-Solutions | b17886ef32b78758cb372d164f439f7558a14831 | 54c46a96078dbe6d7bd4d403244cdd3378c3dcff | refs/heads/master | 2023-09-06T08:16:25.911161 | 2023-08-18T20:36:38 | 2023-08-18T20:36:38 | 15,208,914 | 106 | 122 | Apache-2.0 | 2023-01-29T15:46:28 | 2013-12-15T19:00:57 | C++ | UTF-8 | C++ | false | false | 8,194 | cpp | #include <iostream>
#include <utility>
#include <vector>
using namespace std;
// What this program does, is first simulate one full sequence.
// Then, it will compress that sequence into a single array using:
// goesTo[current] = newPos
// And will keep applying that array to positions until they are all in the correct spot.
// Code for simulating the movement
///////////////////////////////////////////////////////
const int NUM_FACES = 6;
const int NUM_BOX_PER_FACE = 9;
const int TOTAL_BOXES = NUM_FACES * NUM_BOX_PER_FACE;
const int NUM_IN_SQUARE_ROTATIONS = 8;
const int IN_SQUARE_ROTATION_SHIFT = 2;
const int inSquareRotation[NUM_IN_SQUARE_ROTATIONS] = {0, 1, 2, 5, 8, 7, 6, 3}; // These are orderd in clockwise direction
int F = 0, U = 1, R = 2, D = 3, L = 4, B = 5;
int charToFace[128];
void SetUpCharToSquare()
{
charToFace['F'] = charToFace['f'] = F;
charToFace['U'] = charToFace['u'] = U;
charToFace['R'] = charToFace['r'] = R;
charToFace['D'] = charToFace['d'] = D;
charToFace['L'] = charToFace['l'] = L;
charToFace['B'] = charToFace['b'] = B;
}
// This is for changing the positions around
// Designed based on:
// U
// L F R
// D
// (L) B (R)
// U
// ...
const int NUM_SIDES = 4;
const int NUM_BOXES_PER_SIDE = 3;
enum Side { BOTTOM, LEFT, TOP, RIGHT};
#define MKPAIR(face, side) make_pair<int, Side>(face, side)
// Is pair<faceChanged, which side, as laid out above
pair<int, Side> facesAroundAndSide[NUM_FACES][NUM_SIDES]; // These are orderd in clockwise direction
// Also ordered {top, right, bottom, left}
// This complements facesAroundAndSide. Is in the order that they will need to be swapped
int faceSideOrdering[NUM_FACES][NUM_BOXES_PER_SIDE] = {{6, 7, 8}, // BOTTOM
{0, 3, 6}, // LEFT
{2, 1, 0}, // TOP
{8, 5, 2}}; // RIGHT
void SetUpFacesAround()
{
facesAroundAndSide[F][0] = MKPAIR(U, BOTTOM); facesAroundAndSide[F][1] = MKPAIR(R, LEFT);
facesAroundAndSide[F][2] = MKPAIR(D, TOP); facesAroundAndSide[F][3] = MKPAIR(L, RIGHT);
facesAroundAndSide[U][0] = MKPAIR(B, BOTTOM); facesAroundAndSide[U][1] = MKPAIR(R, TOP);
facesAroundAndSide[U][2] = MKPAIR(F, TOP); facesAroundAndSide[U][3] = MKPAIR(L, TOP);
facesAroundAndSide[B][0] = MKPAIR(D, BOTTOM); facesAroundAndSide[B][1] = MKPAIR(R, RIGHT);
facesAroundAndSide[B][2] = MKPAIR(U, TOP); facesAroundAndSide[B][3] = MKPAIR(L, LEFT);
facesAroundAndSide[D][0] = MKPAIR(F, BOTTOM); facesAroundAndSide[D][1] = MKPAIR(R, BOTTOM);
facesAroundAndSide[D][2] = MKPAIR(B, TOP); facesAroundAndSide[D][3] = MKPAIR(L, BOTTOM);
facesAroundAndSide[L][0] = MKPAIR(U, LEFT); facesAroundAndSide[L][1] = MKPAIR(F, LEFT);
facesAroundAndSide[L][2] = MKPAIR(D, LEFT); facesAroundAndSide[L][3] = MKPAIR(B, LEFT);
facesAroundAndSide[R][0] = MKPAIR(U, RIGHT); facesAroundAndSide[R][1] = MKPAIR(B, RIGHT);
facesAroundAndSide[R][2] = MKPAIR(D, RIGHT); facesAroundAndSide[R][3] = MKPAIR(F, RIGHT);
}
void SetUpSimulation()
{
SetUpCharToSquare();
SetUpFacesAround();
}
int GetNextIndexInSquareRotation(int position, bool clockwise)
{
return (position + (clockwise ? IN_SQUARE_ROTATION_SHIFT : -IN_SQUARE_ROTATION_SHIFT) + NUM_IN_SQUARE_ROTATIONS) % NUM_IN_SQUARE_ROTATIONS;
}
void ApplyInSquareCurrentRotation(vector<int> &changedFace, int startInSquareRotation, bool clockwise)
{
int positionInSquareRotation = startInSquareRotation;
int nextPosInSquareRotation = -1;
int nextVal = changedFace[inSquareRotation[startInSquareRotation]];
while (nextPosInSquareRotation != startInSquareRotation)
{
nextPosInSquareRotation = GetNextIndexInSquareRotation(positionInSquareRotation, clockwise);
int indexAccessing = inSquareRotation[nextPosInSquareRotation];
int temp = changedFace[indexAccessing];
changedFace[indexAccessing] = nextVal;
nextVal = temp;
positionInSquareRotation = nextPosInSquareRotation;
}
}
void ApplyInSquareRotation(vector<int> &changedFace, bool clockwise)
{
// Iterates twice, due to them jumping by 2
ApplyInSquareCurrentRotation(changedFace, 0, clockwise);
ApplyInSquareCurrentRotation(changedFace, 1, clockwise);
}
void BackupIntoArray(const vector<vector<int> > &faces, const pair<int, Side> ¤tFace, int array[NUM_BOXES_PER_SIDE])
{
int face = currentFace.first;
Side side = currentFace.second;
for (int i = 0; i < NUM_BOXES_PER_SIDE; ++i)
{
array[i] = faces[face][faceSideOrdering[side][i]];
}
}
void UpdateFaceValue(vector<vector<int> > &faces, const pair<int, Side> ¤tFace, const int array[NUM_BOXES_PER_SIDE])
{
int face = currentFace.first;
Side side = currentFace.second;
for (int i = 0; i < NUM_BOXES_PER_SIDE; ++i)
{
faces[face][faceSideOrdering[side][i]] = array[i];
}
}
void ApplyChangeToBesideFaces(vector<vector<int> > &faces, int faceShifted, bool clockwise)
{
pair<int, Side> currentFace = facesAroundAndSide[faceShifted][0];
int nextVal[NUM_BOXES_PER_SIDE];
BackupIntoArray(faces, currentFace, nextVal);
int increment = (clockwise ? 1 : NUM_SIDES - 1);
for (int pos = increment; pos != 0; pos = (pos + increment) % NUM_SIDES)
{
currentFace = facesAroundAndSide[faceShifted][pos];
int tempArray[NUM_BOXES_PER_SIDE];
BackupIntoArray(faces, currentFace, tempArray);
UpdateFaceValue(faces, currentFace, nextVal);
for (int i = 0; i < NUM_BOXES_PER_SIDE; ++i)
nextVal[i] = tempArray[i];
}
currentFace = facesAroundAndSide[faceShifted][0];
UpdateFaceValue(faces, currentFace, nextVal);
}
void ApplyChange(vector<vector<int> > &faces, char change)
{
int faceShifted = charToFace[change];
bool clockwise = (change == toupper(change));
ApplyInSquareRotation(faces[faceShifted], clockwise);
ApplyChangeToBesideFaces(faces, faceShifted, clockwise);
}
///////////////////////////////////////////////////////
vector<vector<int> > CreatebaseFaces()
{
vector<vector<int> > faces(NUM_FACES, vector<int>(NUM_BOX_PER_FACE));
for (int face = 0, boxNum = 0; face < NUM_FACES; ++face)
{
for (int box = 0; box < NUM_BOX_PER_FACE; ++box, ++boxNum)
faces[face][box] = boxNum;
}
return faces;
}
void ApplySequence(const vector<int> &nextPositionPerSequence, vector<int> &allPositions)
{
static vector<int> temp(TOTAL_BOXES);
for (int i = 0; i < TOTAL_BOXES; ++i)
temp[nextPositionPerSequence[i]] = allPositions[i];
allPositions.swap(temp);
}
vector<int> GetBasePositions()
{
vector<int> basePositions(TOTAL_BOXES);
for (int i = 0; i < TOTAL_BOXES; ++i)
basePositions[i] = i;
return basePositions;
}
int main()
{
SetUpSimulation();
string sequence;
const vector<int> basePositions = GetBasePositions();(NUM_FACES);
while (cin >> sequence)
{
vector<vector<int> > faces = CreatebaseFaces();
for (int i = 0; i < sequence.size(); ++i)
ApplyChange(faces, sequence[i]);
// Set up the positions
vector<int> nextPositionPerSequence(TOTAL_BOXES);
for (int face = 0, boxNum = 0; face < NUM_FACES; ++face)
{
for (int box = 0; box < NUM_BOX_PER_FACE; ++box, ++boxNum)
{
nextPositionPerSequence[faces[face][box]] = boxNum;
}
}
// After all, this shift would be applied at least once
vector<int> allPositions = basePositions;
int count = 1;
ApplySequence(nextPositionPerSequence, allPositions);
while (allPositions != basePositions)
{
ApplySequence(nextPositionPerSequence, allPositions);
++count;
}
cout << count << '\n';
}
}
| [
"diusrex@gmail.com"
] | diusrex@gmail.com |
a30393b663f5d942e754043866113482dd850891 | 71c47db48386bbef6214374d5516435b97931952 | /src/ast.cc | 0ebe7edd8612d43e56bef5c47f59d793d5323a8e | [] | no_license | rlaxodnjs199/FCALtoC | dd7b8ef102fbaa8dde7292849ad8945e8c6e816a | b7a8ca3cce0d2b6b02348ba2245c02e2139f81c1 | refs/heads/master | 2020-05-03T06:20:30.514821 | 2019-03-29T21:31:11 | 2019-03-29T21:31:11 | 178,470,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,649 | cc | #include "include/ast.h"
namespace fcal {
namespace ast {
/// Unparse the root (program)
std::string Root::unparse() {
return varName_->unparse() + " () {\n" + stmts_->unparse() + "\n}\n";
}
/// Translate the root (program) to C++ code
std::string Root::CppCode() {
return "#include <iostream>\n#include <stdio.h>\n"
"#include <string>\n#include <math.h>\n"
"#include \"include/Matrix.h\"\n\nusing namespace std ;\n\nint "
+ varName_->CppCode() + " () {\n" + stmts_->CppCode() + "\n}\n";
}
/// Root Destructor
Root::~Root() {
if (varName_) {delete varName_;}
if (stmts_) {delete stmts_;}
}
// StmtsSeq destructor
StmtsSeq::~StmtsSeq() {
if (stmt_) {delete stmt_;}
if (stmts_) {delete stmts_;}
}
/// Unparse a sequence of statements
std::string StmtsSeq::unparse() {
return stmt_->unparse() + stmts_->unparse();
}
/// Translate a seqence of statements to C++ code
std::string StmtsSeq::CppCode() {
return stmt_->CppCode() + stmts_->CppCode();
}
/// Unparse an empty statement (->empty string)
std::string EmptyStmts::unparse() {
return "";
}
/// Translate an empty statement to C++ code (->empty string)
std::string EmptyStmts::CppCode() {
return "";
}
/// Unparse a declaration
std::string DeclStmt::unparse() { return decl_->unparse(); }
/// Translate a declaration to C++ code
std::string DeclStmt::CppCode() { return decl_->CppCode(); }
/// Assignment statement destructor
AssignStmt::~AssignStmt() {
if (varName_) { delete varName_; }
if (expr_) { delete expr_; }
}
/// Unparse an assignment statement
std::string AssignStmt::unparse() {
return varName_->unparse() + " = " + expr_->unparse() + ";\n";
}
/// Translate an assignment statement to C++ code
std::string AssignStmt::CppCode() {
return varName_->CppCode() + " = " + expr_->CppCode() + ";\n";
}
/// Matrix statement assignment destructor
AssignMatrixStmt::~AssignMatrixStmt() {
if (varName_) {delete varName_;}
if (expr1_) {delete expr1_;}
if (expr2_) {delete expr2_;}
if (expr3_) {delete expr3_;}
}
/// Unparse a matrix assignment statement
std::string AssignMatrixStmt::unparse() {
return varName_->unparse() + " [" + expr1_->unparse() + " : " +
expr2_->unparse() + "] = " + expr3_->unparse() + ";\n";
}
/// Unparse a matrix assignment statement to C++ code
std::string AssignMatrixStmt::CppCode() {
// Stmt ::= varName '[' Expr ':' Expr ']' '=' Expr ';
return "*(" + varName_->CppCode() + ".access(" + expr1_->CppCode() +
", " + expr2_->CppCode() + ")) = " + expr3_->CppCode() + ";\n";
}
/// Destructor for PrintStmt
PrintStmt::~PrintStmt() {
if (expr_) {delete expr_;}
}
/// Unparse a print statement
std::string PrintStmt::unparse() {
return "print(" + expr_->unparse() + ");\n";
}
/// Translate a print statement to C++ code
std::string PrintStmt::CppCode() {
return "cout << " + expr_->CppCode() + ";\n";
}
/// Destructor for IfStmt
IfStmt::~IfStmt() {
if (expr_) {delete expr_;}
if (stmt_) {delete stmt_;}
}
/// Unparse an if statement
std::string IfStmt::unparse() {
return "if (" + expr_->unparse() + ") " + stmt_->unparse();
}
/// Translate an if statement to C++ code
std::string IfStmt::CppCode() {
return "if (" + expr_->CppCode() + ")\n" + stmt_->CppCode();
}
/// Destructor for an if else statement
IfElseStmt::~IfElseStmt() {
if (expr_) {delete expr_;}
if (stmt1_) {delete stmt1_;}
if (stmt2_) {delete stmt2_;}
}
/// Unparse an if else statement
std::string IfElseStmt::unparse() {
return "if (" + expr_->unparse() + ") " +
stmt1_->unparse() + " else " + stmt2_->unparse();
}
/// Translate an if else statement to C++ code
std::string IfElseStmt::CppCode() {
return "if (" + expr_->CppCode() + ")\n" +stmt1_->unparse() +
"\nelse\n" + stmt2_->unparse();
}
/// Destructor for StmtsStmt
StmtsStmt::~StmtsStmt() {
if (stmts_) {delete stmts_;}
}
/// Unparse a Statement to statement
std::string StmtsStmt::unparse() { return "{\n" + stmts_->unparse() + "}\n";}
/// Translate a statement to statement to C++ code
std::string StmtsStmt::CppCode() { return "{\n" + stmts_->CppCode() + "}\n";}
/// Destructor for a semicolon statement
SemiColonStmt::~SemiColonStmt() {}
/// Unparse a semicolon statement
std::string SemiColonStmt::unparse() { return ";\n";}
/// Translate a semicolon to C++ code
std::string SemiColonStmt::CppCode() { return ";\n";}
/// Destructor for RepeatStmt
RepeatStmt::~RepeatStmt() {
if (varName_) {delete varName_;}
if (expr1_) {delete expr1_;}
if (expr2_) {delete expr2_;}
if (stmt_) {delete stmt_;}
}
/// Unparse a repeat statement
std::string RepeatStmt::unparse() {
return "repeat (" + varName_->unparse() + " = " +
expr1_->unparse() + " to " + expr2_->unparse() + ") " +
stmt_->unparse();
}
/// repeat ( init; condition; increment ) { statement(s); }
std::string RepeatStmt::CppCode() {
return "for (" + varName_->CppCode() + " = " +
expr1_->CppCode() + "; " + varName_->CppCode() +
" <= " + expr2_->CppCode() + "; " + varName_->CppCode() +
"++) " + stmt_->CppCode() + "\n";
}
/// destructor for a while statement
WhileStmt::~WhileStmt() {
if (expr_) {delete expr_;}
if (stmt_) {delete stmt_;}
}
/// Unparse a while statement
std::string WhileStmt::unparse() {
return "while (" + expr_->unparse() + ") " + stmt_->unparse();
}
/// Translate a while statement to C++ code
std::string WhileStmt::CppCode() {
return "while (" + expr_->CppCode() + ")\n" + stmt_->CppCode();
}
/// SimpleDecl destructor
SimpleDecl::~SimpleDecl() {
if (kwdType_) {delete kwdType_;}
if (varName_) {delete varName_;}
}
/// Unparse a simple declaration
std::string SimpleDecl::unparse() {
return *kwdType_ + " " + varName_->unparse() + ";\n";
}
/// Translate a simple declaration to C++ code
std::string SimpleDecl::CppCode() {
std::string* str = nullptr;
std::string Int("int");
std::string Float("float");
std::string String("string");
std::string Bool("boolean");
if (kwdType_->compare(Int) == 0) {
str = new std::string("int");
} else if (kwdType_->compare(Float) == 0) {
str = new std::string("float");
} else if (kwdType_->compare(String) == 0) {
str = new std::string("string");
} else if (kwdType_->compare(Bool) == 0) {
str = new std::string("bool");
} else {
throw "no match on SimpleDecl";
}
return *str + " " + varName_->CppCode() + ";\n";
}
/// Destructor for LongMatrixDecl
LongMatrixDecl::~LongMatrixDecl() {
if (var1_) {delete var1_;}
if (expr1_) {delete expr1_;}
if (expr2_) {delete expr2_;}
if (var2_) {delete var2_;}
if (var3_) {delete var3_;}
if (expr3_) {delete expr3_;}
}
/// Unparse a long matrix declaration
std::string LongMatrixDecl::unparse() {
return "matrix " + var1_->unparse() + " [" + expr1_->unparse() +
": " + expr2_->unparse() + "] " + var2_->unparse() + ": " +
var3_->unparse() + " = " + expr3_->unparse() + ";\n";
}
// Decl ::= 'matrix' varName '[' Expr ':' Expr ']'
// varName ':' varName '=' Expr ';'
/// Translate a long matrix declaration to C++ code
std::string LongMatrixDecl::CppCode() {
std::string matrixDecl("matrix " + var1_->CppCode() +
"(" + expr1_->CppCode() + ", " + expr2_->CppCode() + ");\n");
std::string nestedFor("for (int " + var3_->CppCode() + " = 0; " +
var3_->CppCode() + " < " + expr2_->CppCode() + "; " +
var3_->CppCode() + "++ ) {\n*(" + var1_->CppCode() +
".access(" + var2_->CppCode() + ", " + var3_->CppCode() + ")) = " +
expr3_->CppCode() + ";} ");
std::string forStmt("for (int " + var2_->CppCode() +
" = 0; " + var2_->CppCode() + " < " + expr1_->CppCode() +
"; " + var2_->CppCode() + "++ ) {\n" + nestedFor + "}\n");
return matrixDecl + forStmt;
}
/// Destructor for ShortMatrixDecl
ShortMatrixDecl::~ShortMatrixDecl() {
if (varName_) {delete varName_;}
if (expr_) {delete expr_;}
}
/// Unparse a short matrix declarattion
std::string ShortMatrixDecl::unparse() {
return "matrix " + varName_->unparse() + " = " + expr_->unparse() + ";\n";
}
/// Translate a short matrix declaration to C++ code
std::string ShortMatrixDecl::CppCode() {
return "matrix " + varName_->CppCode() + " ( " + expr_->CppCode() + " ) ;\n";
}
// Expr
/// LetExpr destructor
LetExpr::~LetExpr() {
if (stmts_) {delete stmts_;}
if (expr_) {delete expr_;}
}
/// Unparse a let expression
std::string LetExpr::unparse() {
return "let " + stmts_->unparse() + " in " + expr_->unparse() + " end";
}
/// Translate a let expression to C++ code
std::string LetExpr::CppCode() {
return "({ " + stmts_->CppCode() + "(" + expr_->CppCode() + "); });\n";
}
/// Destructor for BinOpExpr
BinOpExpr::~BinOpExpr() {
if (left_) {delete left_;}
if (operator_) {delete operator_;}
if (right_) {delete right_;}
}
/// Unparse a binary operation expression
std::string BinOpExpr::unparse() {
return left_->unparse() + " " + *operator_ + " " + right_->unparse();
}
/// Translate a binary operation expression to C++ code
std::string BinOpExpr::CppCode() {
return left_->CppCode() + " " + *operator_ + " " + right_->CppCode();
}
/// Destructor for a function expression
FunctionExpr::~FunctionExpr() {
if (varName_) {delete varName_;}
if (expr_) {delete expr_;}
}
/// Unparse a function expression
std::string FunctionExpr::unparse() {
return varName_->unparse() + "(" + expr_->unparse() + ")";
}
/// Translate function expression to C++ code
std::string FunctionExpr::CppCode() {
std::string var_local(varName_->CppCode());
std::string expr_local(expr_->CppCode());
if (var_local.compare("matrix_read") == 0
&& expr_local.compare("data") != 0) {
var_local = "matrix::matrix_read";
return var_local + "(" + expr_->CppCode() + ")";
} else if (expr_local.compare("data") == 0) {
return expr_local + "." + var_local + "()";
} else {
return var_local + "(" + expr_->CppCode() + ")";
}
}
/// Destructor for MatrixExpr
MatrixExpr::~MatrixExpr() {
if (varName_) {delete varName_;}
if (expr1_) {delete expr1_;}
if (expr2_) {delete expr2_;}
}
/// Unparse a matrix expression
std::string MatrixExpr::unparse() {
return varName_->unparse() + " [" + expr1_->unparse() + ": " +
expr2_->unparse() + "]";
}
/// Translate a matrix expression to C++ code
std::string MatrixExpr::CppCode() {
// Expr ::= varName '[' Expr ':' Expr ']'
return "*(" + varName_->CppCode() + ".access(" + expr1_->CppCode() + ", " +
expr2_->CppCode() + "))";
}
/// Destructor for IfExpr
IfExpr::~IfExpr() {
if (expr1_) {delete expr1_;}
if (expr2_) {delete expr2_;}
if (expr3_) {delete expr3_;}
}
/// Unparse and if expression
std::string IfExpr::unparse() {
return "if " + expr1_->unparse() + " then " + expr2_->unparse() + " else "
+ expr3_->unparse();
}
/// Translate an if expression to C++ code
std::string IfExpr::CppCode() {
return expr1_->CppCode() + " ? " + expr2_->CppCode() + " : " +
expr3_->CppCode();
}
/// Destructor for ParenExpr
ParenExpr::~ParenExpr() {
if (expr_) {delete expr_;}
}
/// Unparse a ParenExpr
std::string ParenExpr::unparse() { return "(" + expr_->unparse() + ")";}
/// Translate a ParenExpr to C++ code
std::string ParenExpr::CppCode() { return "(" + expr_->CppCode() + ")";}
/// Unparse a VarName (return the lexeme)
std::string VarName::unparse() { return lexeme_; }
/// Translate a VarName to C++ code (return the lexeme)
std::string VarName::CppCode() { return lexeme_; }
/// Destructor for AnyConst
AnyConst::~AnyConst() {
if (constStr_) {delete constStr_;}
}
/// Unparse AnyConst (return the constant)
std::string AnyConst::unparse() { return *constStr_; }
/// Translate AnyConst to C++ code (return the constant)
std::string AnyConst::CppCode() { return *constStr_;}
/// Destructor for a not expression
NotExpr::~NotExpr() {
if (expr_) {delete expr_;}
}
/// Unparse a not expression
std::string NotExpr::unparse () { return "!" + expr_->unparse(); }
/// Translate a not expression to C++ code
std::string NotExpr::CppCode() { return "!" + expr_->CppCode(); }
/// Destructor for TrueKwdExpr
TrueKwdExpr::~TrueKwdExpr() {}
/// Unparse a TrueKwdExpre (return "True")
std::string TrueKwdExpr::unparse() { return "True";}
/// Translate a TrueKwdExpr to C++ code (return "true")
std::string TrueKwdExpr::CppCode() { return "true";}
/// Destructor for FalseKwdExpr
FalseKwdExpr::~FalseKwdExpr() {}
/// Unparse a FalseKwdExpre (return "False")
std::string FalseKwdExpr::unparse() { return "False";}
/// Translate a FalseKwdExpr to C++ code (return "false")
std::string FalseKwdExpr::CppCode() { return "false";}
} /* namespace ast */
} /* namespace fcal */
| [
"noreply@github.com"
] | rlaxodnjs199.noreply@github.com |
5c43539ffa815a6a9a628d540da6232b1cd85193 | 43abcedd1d7eaf83162a1e9229b6a5ffe5f45a92 | /hw3/src/include/AST/function.hpp | 0831b219c25a23c9784f28a00a3cbb5fbbab0ac8 | [
"MIT"
] | permissive | Kchoen/NCTU-3-1-Compiler | 81c18b3abe50f898c4a0a506fcd2b3bc7712945d | 5fd490bc7149bd5e0b01be65cb376e7552823e04 | refs/heads/main | 2023-02-18T13:55:26.869345 | 2021-01-20T12:59:04 | 2021-01-20T12:59:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 925 | hpp | #ifndef __AST_FUNCTION_NODE_H
#define __AST_FUNCTION_NODE_H
#include "AST/ast.hpp"
#include "AST/decl.hpp"
#include "AST/CompoundStatement.hpp"
class FunctionNode : public AstNode {
public:
FunctionNode(const uint32_t line, const uint32_t col,
/* TODO: name, declarations, return type,
* compound statement (optional) */
char* name, vector<DeclNode*>* Parameters,
char* returntype, CompoundStatementNode* body
);
~FunctionNode() = default;
void print() override;
public:
// TODO: name, declarations, return type, compound statement
//Location functionLocation; //Line and column numbers of the function name
std::string name;
vector<DeclNode*>* Parameters; //A list of declaration nodes
std::string returntype;
CompoundStatementNode* body; //An optional compound statement node
};
#endif
| [
"bobhsiao.cs07@nctu.edu.tw"
] | bobhsiao.cs07@nctu.edu.tw |
7aba7e7ba0dfa1564ae0be5ca50746edc5c8b5c9 | 23c524e47a96829d3b8e0aa6792fd40a20f3dd41 | /.history/List_20210518151805.hpp | f567d0593bbbdb5b49f83121276dd499429308cd | [] | no_license | nqqw/ft_containers | 4c16d32fb209aea2ce39e7ec25d7f6648aed92e8 | f043cf52059c7accd0cef7bffcaef0f6cb2c126b | refs/heads/master | 2023-06-25T16:08:19.762870 | 2021-07-23T17:28:09 | 2021-07-23T17:28:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,561 | hpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* List.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dbliss <dbliss@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/04/26 14:06:11 by dbliss #+# #+# */
/* Updated: 2021/05/18 15:18:05 by dbliss ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIST_HPP
#define LIST_HPP
#include <iostream>
#include <memory>
#include "ListIterator.hpp"
#include "Algorithm.hpp"
#include "Identifiers.hpp"
namespace ft
{
template <class T, class Alloc = std::allocator<T> >
class list
{
private:
struct Node
{
T val;
Node *next;
Node *prev;
};
public:
typedef T value_type;
typedef Alloc allocator_type;
typedef typename Alloc::reference reference;
typedef typename Alloc::const_reference const_reference;
typedef typename Alloc::pointer pointer;
typedef typename Alloc::const_pointer const_pointer;
typedef typename ft::ListIterator<pointer, Node> iterator;
typedef typename ft::ListIterator<const_pointer, Node> const_iterator;
typedef typename ft::myReverseIterator<iterator> reverse_iterator;
typedef typename ft::myReverseIterator<const_iterator> const_reverse_iterator;
typedef ptrdiff_t difference_type;
typedef size_t size_type;
typedef typename Alloc::template rebind<Node>::other node_allocator_type; // мб это не нужно, так как указала в приватных по=другому
/*================================ 4 CONSTRUCTORS: ================================*/
// #1 : DEFAULT:
explicit list(const allocator_type &alloc = allocator_type()) : _size(0), _allocator_type(alloc)
{
this->_node = allocate_node();
}
// #2: FILL:
explicit list(size_type n, const value_type &val = value_type(),
const allocator_type &alloc = allocator_type()) : _size(0), _allocator_type(alloc)
{
this->_node = allocate_node();
for (int i = 0; i < n; ++i)
{
insert_end(val);
}
}
//#3: RANGE:
template <class InputIterator>
list(InputIterator first, InputIterator last, typename ft::enable_if<!is_integral<InputIterator>::value> * = NULL,
const allocator_type &alloc = allocator_type()) : _size(0), _allocator_type(alloc)
{
this->_node = allocate_node();
assign(first, last);
}
// #4 COPY:
list(const list &x)
{
this->_node = allocate_node();
assign(x.begin(), x.end());
}
/*================================ DESTRUCTOR: ================================*/
virtual ~list()
{
erase(begin(), end());
// The next steps we need to do for allocated node in the constructor.
this->_node->prev->next = this->_node->next;
this->_node->next->prev = this->_node->prev;
this->_alloc_node.deallocate(this->_node, 1);
}
/*================================ OPERATOR=: ================================*/
list &operator=(const list &x)
{
if (this != &x)
{
assign(x.begin(), x.end());
}
return (*this);
}
/*================================ ITERATORS: ================================*/
iterator begin()
{
return iterator(this->_node->next);
}
const_iterator begin() const
{
return const_iterator(this->_node->next);
}
iterator end()
{
return iterator(this->_node);
}
const_iterator end() const
{
return const_iterator(this->_node);
}
reverse_iterator rbegin()
{
return reverse_iterator(end());
}
const_reverse_iterator rbegin() const
{
return const_reverse_iterator(end());
}
reverse_iterator rend()
{
return reverse_iterator(begin());
}
const_reverse_iterator rend() const
{
return const_reverse_iterator(begin());
}
/*================================ CAPACITY: ================================*/
bool empty() const
{
return this->_node->next == this->_node;
}
size_type size() const
{
return this->_size;
}
size_type max_size() const
{
return this->_alloc_node.max_size();
}
/*================================ ELEMENT ACCESS: ================================*/
reference front()
{
return this->_node->next->val;
}
const_reference front() const
{
return this->_node->next->val;
}
reference back()
{
return this->_node->prev->val;
}
const_reference back() const
{
return this->_node->prev->val;
}
/*================================ MODIFIERS: ================================*/
/* ASSIGN */
/* Assigns new contents to the list container, replacing its current contents, and modifying its size accordingly. */
/* In the range version (1), the new contents are elements constructed
from each of the elements in the range between first and last, in the same order.*/
template <class InputIterator>
void assign(InputIterator first, InputIterator last, typename ft::enable_if<!is_integral<InputIterator>::value, InputIterator>::type isIterator = InputIterator())
{
(void)isIterator;
clear();
insert(begin(), first, last);
}
/* In the fill version (2), the new contents are n elements,
each initialized to a copy of val.*/
void assign(size_type n, const value_type &val)
{
clear();
insert(begin(), n, val);
}
/* Insert element at the beginning */
void push_front(const value_type &val)
{
//insert(begin(), val);
insert_begin(val);
}
/* Removes the first element in the list container, effectively reducing its size by one. */
void pop_front()
{
erase(begin());
}
void push_back(const value_type &val)
{
insert_end(val);
}
/* Removes the last element in the list container, effectively reducing the container size by one.
This destroys the removed element. */
void pop_back()
{
erase(--end());
// --end because the result of end an iterator to the element past the end of the sequence.
}
/* INSERT */
/* The container is extended by inserting new elements before
the element at the specified position. */
iterator insert(iterator position, const value_type &val)
{
Node *new_node = construct_node(val);
// setting up previous and next of new node
new_node->next = position.get_node();
new_node->prev = position.get_node()->prev;
// // Update next and previous pointers of the prev node
position.get_node()->prev->next = new_node;
position.get_node()->prev = new_node;
++this->_size;
return iterator(new_node);
}
void insert(iterator position, size_type n, const value_type &val)
{
for (int i = 0; i < n; ++i)
{
insert(position, val);
}
}
template <class InputIterator>
void insert(iterator position, InputIterator first, InputIterator last, typename ft::enable_if<!is_integral<InputIterator>::value, InputIterator>::type isIterator = InputIterator())
{
(void)isIterator;
while (first != last)
{
position = insert(position, *first);
++position;
++first;
}
}
/* Removes from the list container a single element (position).
This effectively reduces the container size by the number of elements removed, which are destroyed.*/
iterator erase(iterator position)
{
Node *next;
next = position.get_node()->next;
delete_node(position.get_node());
return iterator(next);
}
/* Removes from the list container a range of elements ([first,last)).
This effectively reduces the container size by the number of elements removed, which are destroyed.*/
iterator erase(iterator first, iterator last)
{
Node *begin;
Node *end;
begin = first.get_node()->prev;
end = last.get_node();
begin->next = end;
end->prev = begin;
while (first != last)
{
this->_alloc_node.destroy(first.get_node());
this->_alloc_node.deallocate(first.get_node(), 1);
this->_size--;
first++;
}
return (last);
}
void swap(list &x)
{
if (this == &x)
return;
ft::swap(this->_node, x._node);
ft::swap(this->_size, x._size);
ft::swap(this->_allocator_type, x._allocator_type);
ft::swap(this->_alloc_node, x._alloc_node);
}
void resize(size_type n, value_type val = value_type())
{
iterator pos = begin();
size_type n_copy = n;
while (n_copy--)
pos++;
if (n < this->_size)
erase(pos, end());
else if (this->_size < n)
{
size_type offset;
offset = n - this->_size;
insert(end(), offset, val);
}
}
/* Removes all elements from the list container (which are destroyed),
and leaving the container with a size of 0. */
void clear()
{
erase(begin(), end());
}
/*================================ OPERATIONS: ================================*/
/* SPLICE
Transfers elements from x into the container, inserting them at position.
This effectively inserts those elements into the container and removes them from x,
altering the sizes of both containers. The operation does not involve
the construction or destruction of any element. They are transferred,
no matter whether x is an lvalue or an rvalue, or whether the value_type supports
move-construction or not.*/
/*The first version (1) transfers all the elements of x into the container.*/
void splice(iterator position, list &x)
{
iterator it = x.begin();
size_type i = 0;
while (i < x.size())
{
insert(position, it.get_node()->val);
i++;
it++;
}
x.clear();
}
/*The second version (2) transfers only the element pointed by i from x into the container.*/
void splice(iterator position, list &x, iterator i)
{
iterator tmp = x.begin();
while (tmp != i)
tmp++; // get the iterator to the element in x in order to delete it lately
insert(position, i.get_node()->val);
x.erase(tmp);
}
/*The third version (3) transfers the range [first,last] from x into the container.*/
void splice(iterator position, list &x, iterator first, iterator last)
{
iterator x_first = first; // save the iterator position for x
while (first != last)
{
insert(position, first.get_node()->val);
first++;
x.erase(x_first);
x_first++;
}
}
/* REMOVE */
/*Removes from the container all the elements that compare equal to val.
This calls the destructor of these objects and reduces the container size
by the number of elements removed.
Unlike member function list::erase, which erases elements by their position
(using an iterator), this function (list::remove) removes elements by their value. */
void remove(const value_type &val)
{
Node *save;
save = this->_node->next; // 1st element
size_type i = 0;
size_type save_size = this->_size;
while (i < save_size)
{
save = save->next;
if (save->prev->val == val)
{
delete_node(save->prev); // delete_node func reduces the container size itself!
}
--save_size;
}
}
/* REMOVE IF */
template <class Predicate>
void remove_if(Predicate pred)
{
Node *save;
save = this->_node->next; // 1st element
size_type i = 0;
size_type save_size = this->_size;
while (i < save_size)
{
save = save->next;
if (pred(save->prev->val))
{
delete_node(save->prev); // delete_node func reduces the container size itself!
}
--save_size;
}
}
/* UNIQUE */
/*removes all but the first element from every consecutive
group of equal elements in the container.*/
void unique()
{
Node *save;
save = this->_node->next->next; // 2nd element
size_type i = 0;
size_type save_size = this->_size;
while (i < save_size)
{
if (save->prev->val == save->val)
{
save = save->next;
delete_node(save->prev); // delete_node func reduces the container size itself!
}
else
save = save->next;
--save_size;
}
}
template <class BinaryPredicate>
void unique(BinaryPredicate binary_pred)
{
Node *save;
save = this->_node->next->next; // 2nd element
size_type i = 0;
size_type save_size = this->_size;
while (i < save_size)
{
if (binary_pred(save->prev->val, save->val))
{
save = save->next;
delete_node(save->prev); // delete_node func reduces the container size itself!
}
else
save = save->next;
--save_size;
}
}
/* MERGE */
/* Merges x into the list by transferring all of its elements at their respective ordered positions
into the container (both containers shall already be ordered).*/
void merge(list &x)
{
merge(x, ft::less<value_type>());
}
template <class Compare>
void merge(list &x, Compare comp)
{
if (&x == this)
return;
size_type i = 0;
Node *first = this->_node->next;
Node *second = x._node->next;
iterator position = this->begin();
while (first != this->_node && second != x._node)
{
// std::cout << "first->val: " << first->val << std::endl;
// std::cout << "second->val: " << second->val << std::endl << std::endl;
if (comp(second->val, first->val))
{
insert(position, second->val);
second = second->next;
}
else
{
first = first->next;
}
position++;
}
while (second != x._node)
{
this->push_back(second->val);
second = second->next;
}
x.clear();
}
/* SORT */
void sort()
{
this->_node->next = mergeSort(this->_node->next, ft::less<value_type>());
// These code we need to get the last of our node;
Node *head = this->_node->next;
Node *last;
while (head != this->_node)
{
last = head;
head = head->next;
}
this->_node->prev = last;
}
template <class Compare>
void sort(Compare comp)
{
this->_node->next = mergeSort(this->_node->next, comp);
Node *head = this->_node->next;
// get pointer to the node which will be the
// last node of the final list
Node *last;
while (head != this->_node)
{
last = head;
head = head->next;
}
this->_node->prev = last;
}
/* REVERSE */
void reverse()
{
Node *tmp_first = this->_node->next;
Node *tmp_last = this->_node->prev;
while (tmp_first != tmp_last)
{
ft::swap(tmp_first->val, tmp_last->val);
tmp_first = tmp_first->next;
tmp_last = tmp_last->prev;
}
}
/*================================ PRIVATE HELPER FUNCS: ================================*/
private:
Node *allocate_node()
{
Node *node;
node = this->_alloc_node.allocate(1);
node->next = node;
node->prev = node;
std::memset(&node->val, 0, sizeof(node->val));
return node;
}
Node *construct_node(const_reference val)
{
Node *node;
node = allocate_node();
this->_allocator_type.construct(&node->val, val);
return (node);
}
void insert_end(const_reference val)
{
// find last node
Node *last = this->_node->prev;
// create new node
Node *new_node;
new_node = construct_node(val);
// start is going to be next of new_node
new_node->next = this->_node;
// make new_node previous of start
this->_node->prev = new_node;
// make last previous of new node
new_node->prev = last;
// make new node next of old start
last->next = new_node;
this->_size += 1;
}
void insert_begin(const_reference val)
{
//iterator position = begin();
// std::cout << "position.get_node()->val: " << position.get_node()->val << std::endl;
// std::cout << "this->_node->val: " << this->_node->val << std::endl;
Node *new_node = construct_node(val); // Inserting data
//Pointer points to last Node
Node *begin = this->_node->next;
// setting up previous and next of new node
new_node->next = position.get_node();
new_node->prev = position.get_node()->prev;
// // Update next and previous pointers of the prev node
position.get_node()->prev->next = new_node;
position.get_node()->prev = new_node;
// std::cout << "position.get_node()->prev->val: " << position.get_node()->prev->val << std::endl;
// std::cout << "last->val: " << this->_node->next->prev->val << std::endl;
// setting up previous and next of new node
// new_node->next = this->_node;
// new_node->prev = last;
// // Update next and previous pointers of start
// // and last.
// last->next = this->_node->prev = new_node;
// // Update start pointer
// this->_node = new_node;
// Increment size + 1;
++this->_size;
}
// Node *new_node = construct_node(val);
// // setting up previous and next of new node
// new_node->next = position.get_node();
// new_node->prev = position.get_node()->prev;
// // // Update next and previous pointers of the prev node
// position.get_node()->prev->next = new_node;
// position.get_node()->prev = new_node;
// ++this->_size;
// return iterator(new_node);
void delete_node(Node *node)
{
this->_alloc_node.destroy(node);
node->prev->next = node->next;
node->next->prev = node->prev;
this->_alloc_node.deallocate(node, 1);
this->_size -= 1;
}
Node *splitList(Node *src)
{
Node *fast = src->next;
Node *slow = src;
while (fast != this->_node)
{
fast = fast->next;
if (fast != this->_node)
{
fast = fast->next;
slow = slow->next;
}
}
Node *splitted = slow->next;
slow->next = this->_node;
return (splitted);
}
template <class Compare>
Node *mergeSortedLists(Node *first, Node *second, Compare comp)
{
if (first == this->_node) // if the first list is empty
return (second);
if (second == this->_node) // if the second list is empty
return (first);
// Pick the smaller value and adjust the links
if (comp(first->val, second->val)) // if first < second
{
first->next = mergeSortedLists(first->next, second, comp);
first->next->prev = first;
first->prev = this->_node;
return (first);
}
else
{
second->next = mergeSortedLists(first, second->next, comp);
second->next->prev = second;
second->prev = this->_node;
return (second);
}
}
template <class Compare>
Node *mergeSort(Node *first, Compare comp)
{
if (first == this->_node || first->next == this->_node)
return (first); // if there is only one element in our list
Node *second = splitList(first); // returns the pointer to the 2nd splitted part
first = mergeSort(first, comp);
second = mergeSort(second, comp);
return (mergeSortedLists(first, second, comp));
}
private:
allocator_type _allocator_type;
node_allocator_type _alloc_node;
size_type _size;
Node *_node;
};
/*================================ NON-MEMBER FUNCITON OVERLOADS: ================================*/
/* RELATIONAL OPERATORS */
/* The equality comparison (operator==) is performed by first comparing sizes, and if they match,
** the elements are compared sequentially using operator==,
** stopping at the first mismatch (as if using algorithm equal).
*/
template <class T, class Alloc>
bool operator==(const list<T, Alloc> &lhs, const list<T, Alloc> &rhs)
{
return (lhs.size() == rhs.size() && ft::equal(lhs.begin(), lhs.end(), rhs.begin()));
}
template <class T, class Alloc>
bool operator!=(const list<T, Alloc> &lhs, const list<T, Alloc> &rhs)
{
return !(lhs == rhs);
}
template <class T, class Alloc>
bool operator<(const list<T, Alloc> &lhs, const list<T, Alloc> &rhs)
{
return ft::lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
}
// a<=b equivalent !(b<a)
template <class T, class Alloc>
bool operator<=(const list<T, Alloc> &lhs, const list<T, Alloc> &rhs)
{
return !(rhs < lhs);
}
// a>b equivalent to b<a
template <class T, class Alloc>
bool operator>(const list<T, Alloc> &lhs, const list<T, Alloc> &rhs)
{
return (rhs < lhs);
}
// a>=b equivalent !(a<b)
template <class T, class Alloc>
bool operator>=(const list<T, Alloc> &lhs, const list<T, Alloc> &rhs)
{
return !(lhs < rhs);
}
/* SWAP */
template <class T, class Alloc>
void swap(list<T, Alloc> &x, list<T, Alloc> &y)
{
x.swap(y);
}
}
#endif | [
"asleonova.1@gmail.com"
] | asleonova.1@gmail.com |
bafbce2f3798c96b205074e69db6f7242855a797 | b7e5cf68eac378f05e7b8693d23f5b94810e8485 | /arrayPerformance/src/pv/longArrayGet.h | 5fabf5bac3ed337a02c80aeab35ae25af9eb0676 | [
"MIT"
] | permissive | jeonghanlee/exampleCPP | 16ef1e0e0f8b06261c35ee644f54f4be4c232a66 | bec7a2d4c7051445940be2a74c428c748e54b855 | refs/heads/master | 2020-03-30T18:14:12.064479 | 2018-10-04T07:50:11 | 2018-10-04T07:50:11 | 151,490,195 | 0 | 0 | NOASSERTION | 2018-10-03T22:46:47 | 2018-10-03T22:46:47 | null | UTF-8 | C++ | false | false | 1,051 | h | /*
* Copyright information and license terms for this software can be
* found in the file LICENSE that is included with the distribution
*/
/**
* @author mrk
* @date 2013.08.09
*/
#ifndef LONGARRAYGET_H
#define LONGARRAYGET_H
#include <epicsThread.h>
#include <pv/pvaClient.h>
#include <shareLib.h>
namespace epics { namespace exampleCPP { namespace arrayPerformance {
class LongArrayGet;
typedef std::tr1::shared_ptr<LongArrayGet> LongArrayGetPtr;
class epicsShareClass LongArrayGet :
public epicsThreadRunable
{
public:
LongArrayGet(
std::string channelName,
int iterBetweenCreateChannel,
int iterBetweenCreateChannelGet,
double delayTime);
virtual ~LongArrayGet(){}
virtual void run();
void stop();
private:
std::string channelName;
int iterBetweenCreateChannel;
int iterBetweenCreateChannelGet;
double delayTime;
std::auto_ptr<epicsThread> thread;
epics::pvData::Event runStop;
epics::pvData::Event runReturn;
};
}}}
#endif /* LONGARRAYGET_H */
| [
"mrkraimer@comcast.net"
] | mrkraimer@comcast.net |
cb54358efa32418e07042f06a34a2c656e5b4220 | f59da58345ef902710666756b8cb09011d130c7a | /FSM/FSM/InputHandler.h | 5f1bcc33b6297bbdd8979ea7650b2ef3bd05392c | [] | no_license | JackDalton3110/GamesEngLabY4 | 09991507767693ede5c765ed06f53c4293446032 | 2116e762d47e888cc011e1112900eb97ff3abfd5 | refs/heads/master | 2020-03-29T16:00:53.972742 | 2019-03-14T10:04:08 | 2019-03-14T10:04:08 | 150,092,527 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 484 | h | #pragma once
#include "Command.h"
#include "Fire.h"
#include "Jump.h"
#include "Crouch.h"
#include "Melee.h"
#include "MacroCommand.h"
#include "Shield.h"
#include "Animation.h"
#include <SDL.h>
#include <iostream>
class InputHandler
{
public:
InputHandler();
~InputHandler();
enum Action
{
IDLE,
JUMP,
CLIMB
};
void handleInput(SDL_Event & event, SDL_Rect &endrect);
void setCurrent(Action);
Action getCurrent();
private:
Animation * fsm;
Action m_current;
}; | [
"c00205943@itcarlow.ie"
] | c00205943@itcarlow.ie |
6a3e60e4fe0441e182a0d1490565099b3e254302 | f5db28c4a6ada580476f717597b614c54bba578b | /main_1.cpp | 647c62287cc14ade9ea8c8b92c09d4db7be4e5fe | [] | no_license | yuxinhuang/prog1 | 47b2dc348d7f6164aab146bebae6500363c48cd4 | 17285f2e371b7913fd98b1f863739b50e0e8ecbe | refs/heads/master | 2020-04-18T20:22:03.877320 | 2019-01-26T20:36:46 | 2019-01-26T20:36:46 | 167,736,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | cpp | //1_main.cpp
#include <iostream>
#include <sstream>
#include <fstream>
#include "Hash_1.h"
using namespace std;
int main(){
std::string size;
std::string key;
std::string ip;
//std::cout<<"hi"<<std::endl;
std::cin>>size;
//std::cout<<size<<std::endl;
//std::cout<<"hi"<<std::endl;
HashTable ht(stoi(size)+1);
//ht.insert("121.180.184.61");
//ht.setcoef(162,210,89,10);
//std::cout<<"hi"<<std::endl;
while(!cin.eof()){
//std::cout<<"hi"<<std::endl;
std::cin>>key;
//std::cout<<"hi1"<<std::endl;
if (key=="insert"){
//std::cout<<"hi1"<<std::endl;
std::cin>>ip;
ht.insert(ip);
std::cout<<"hi1"<<std::endl;
}
if (key=="delete"){
std::cin>>ip;
ht.remove(ip);
}
if (key=="lookup"){
std::cin>>ip;
ht.exists(ip);
if (ht.exists(ip)==true){
cout<<ip<<": found."<<endl;
}else{
cout<<ip<<": not found."<<endl;
}
}
if (key=="stat"){
std::cout<<"hello"<<endl;
ht.print();
//std::cout<<"hi1"<<std::endl;
return 0;
}
}
return 0;
} | [
"noreply@github.com"
] | yuxinhuang.noreply@github.com |
6fd10d9a28a85b2a627d401f61ab53be01cb19db | 48298469e7d828ab1aa54a419701c23afeeadce1 | /Client/SceneEdit/Xerces/src/xercesc/util/Platforms/Tandem/TandemPlatformUtils.cpp | 712d0d5d4a9df658ffbc9fbf57ff7e4fb7eb1dfe | [
"Apache-2.0"
] | permissive | brock7/TianLong | c39fccb3fd2aa0ad42c9c4183d67a843ab2ce9c2 | 8142f9ccb118e76a5cd0a8b168bcf25e58e0be8b | refs/heads/master | 2021-01-10T14:19:19.850859 | 2016-02-20T13:58:55 | 2016-02-20T13:58:55 | 52,155,393 | 5 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 10,919 | cpp | /*
* Copyright 1999-2000,2004 The Apache Software Foundation.
*
* 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.
*/
/*
* $Id: TandemPlatformUtils.cpp 191054 2005-06-17 02:56:35Z jberry $
*/
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
// XXX #include <pthread.h>
// XXX #include <sys/atomic_op.h>
#include <xercesc/util/PlatformUtils.hpp>
#include <xercesc/util/RuntimeException.hpp>
#include <xercesc/util/Janitor.hpp>
#include <xercesc/util/PanicHandler.hpp>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <libgen.h>
#include <sys/timeb.h>
#include <string.h>
#include <xercesc/util/OutOfMemoryException.hpp>
#include <xercesc/util/XMLHolder.hpp>
#if defined (XML_USE_ICU_MESSAGELOADER)
#include <xercesc/util/MsgLoaders/ICU/ICUMsgLoader.hpp>
#elif defined (XML_USE_ICONV_MESSAGELOADER)
#include <xercesc/util/MsgLoaders/MsgCatalog/MsgCatalogLoader.hpp>
#else // use In-memory message loader
#include <xercesc/util/MsgLoaders/InMemory/InMemMsgLoader.hpp>
#endif
XERCES_CPP_NAMESPACE_BEGIN
// ---------------------------------------------------------------------------
// XMLPlatformUtils: Platform init method
// ---------------------------------------------------------------------------
void XMLPlatformUtils::platformInit()
{
}
//
// This method is called by the platform independent part of this class
// when client code asks to have one of the supported message sets loaded.
// In our case, we use the ICU based message loader mechanism.
//
XMLMsgLoader* XMLPlatformUtils::loadAMsgSet(const XMLCh* const msgDomain)
{
XMLMsgLoader* retVal;
try
{
#if defined (XML_USE_ICU_MESSAGELOADER)
retVal = new (fgMemoryManager) ICUMsgLoader(msgDomain);
#elif defined (XML_USE_ICONV_MESSAGELOADER)
retVal = new (fgMemoryManager) MsgCatalogLoader(msgDomain);
#else
retVal = new (fgMemoryManager) InMemMsgLoader(msgDomain);
#endif
}
catch(const OutOfMemoryException&)
{
throw;
}
catch(...)
{
panic(PanicHandler::Panic_CantLoadMsgDomain);
}
return retVal;
}
void XMLPlatformUtils::panic(const PanicHandler::PanicReasons reason)
{
fgUserPanicHandler? fgUserPanicHandler->panic(reason) : fgDefaultPanicHandler->panic(reason);
}
// ---------------------------------------------------------------------------
// XMLPlatformUtils: File Methods
// ---------------------------------------------------------------------------
unsigned int XMLPlatformUtils::curFilePos(FileHandle theFile
, MemoryManager* const manager)
{
// Get the current position
int curPos = ftell( (FILE*)theFile);
if (curPos == -1)
throw XMLPlatformUtilsException("XMLPlatformUtils::curFilePos - Could not get current pos");
return (unsigned int)curPos;
}
void XMLPlatformUtils::closeFile(FileHandle theFile
, MemoryManager* const manager)
{
if (fclose((FILE*)theFile))
throw XMLPlatformUtilsException("XMLPlatformUtils::closeFile - Could not close the file handle");
}
unsigned int XMLPlatformUtils::fileSize(FileHandle theFile
, MemoryManager* const manager)
{
// Get the current position
long int curPos = ftell((FILE*)theFile);
if (curPos == -1)
throw XMLPlatformUtilsException("XMLPlatformUtils::fileSize - Could not get current pos");
// Seek to the end and save that value for return
if (fseek( (FILE*)theFile, 0, SEEK_END) )
throw XMLPlatformUtilsException("XMLPlatformUtils::fileSize - Could not seek to end");
long int retVal = ftell( (FILE*)theFile);
if (retVal == -1)
throw XMLPlatformUtilsException("XMLPlatformUtils::fileSize - Could not get the file size");
// And put the pointer back
if (fseek( (FILE*)theFile, curPos, SEEK_SET) )
throw XMLPlatformUtilsException("XMLPlatformUtils::fileSize - Could not seek back to original pos");
return (unsigned int)retVal;
}
FileHandle XMLPlatformUtils::openFile(const unsigned short* const fileName
, MemoryManager* const manager)
{
const char* tmpFileName = XMLString::transcode(fileName, manager);
ArrayJanitor<char> tmpFileNameJan((char*)tmpFileName , manager);
FileHandle retVal = (FILE*)fopen( tmpFileName , "rb" );
if (retVal == NULL)
return 0;
return retVal;
}
unsigned int
XMLPlatformUtils::readFileBuffer( FileHandle theFile
, const unsigned int toRead
, XMLByte* const toFill
, MemoryManager* const manager)
{
size_t noOfItemsRead = fread( (void*) toFill, 1, toRead, (FILE*)theFile);
if(ferror((FILE*)theFile))
{
throw XMLPlatformUtilsException("XMLPlatformUtils::readFileBuffer - Read failed");
}
return (unsigned int)noOfItemsRead;
}
void XMLPlatformUtils::resetFile(FileHandle theFile
, MemoryManager* const manager)
{
// Seek to the start of the file
if (fseek((FILE*)theFile, 0, SEEK_SET) )
throw XMLPlatformUtilsException("XMLPlatformUtils::resetFile - Could not seek to beginning");
}
// ---------------------------------------------------------------------------
// XMLPlatformUtils: File system methods
// ---------------------------------------------------------------------------
XMLCh* XMLPlatformUtils::getFullPath(const XMLCh* const srcPath,
MemoryManager* const manager)
{
//
// NOTE: THe path provided has always already been opened successfully,
// so we know that its not some pathological freaky path. It comes in
// in native format, and goes out as Unicode always
//
char* newSrc = XMLString::transcode(srcPath, fgMemoryManager);
// Use a local buffer that is big enough for the largest legal path
char* tmpPath = dirname((char*)newSrc);
if (!tmpPath)
{
throw XMLPlatformUtilsException("XMLPlatformUtils::resetFile - Could not get the base path name");
}
char* newXMLString = (char*) fgMemoryManager->allocate
(
(strlen(tmpPath) +1) * sizeof(char)
);//new char [strlen(tmpPath) +1];
ArrayJanitor<char> newJanitor(newXMLString, fgMemoryManager);
strcpy(newXMLString, tmpPath);
strcat(newXMLString , "/");
// Return a copy of the path, in Unicode format
return XMLString::transcode(newXMLString, manager);
}
bool XMLPlatformUtils::isRelative(const XMLCh* const toCheck)
{
// Check for pathological case of empty path
if (!toCheck[0])
return false;
//
// If it starts with a slash, then it cannot be relative. This covers
// both something like "\Test\File.xml" and an NT Lan type remote path
// that starts with a node like "\\MyNode\Test\File.xml".
//
if (toCheck[0] == XMLCh('/'))
return false;
// Else assume its a relative path
return true;
}
XMLCh* XMLPlatformUtils::getCurrentDirectory()
{
/***
* REVISIT:
*
* To be implemented later
***/
XMLCh curDir[]={ chPeriod, chForwardSlash, chNull};
return getFullPath(curDir);
}
inline bool XMLPlatformUtils::isAnySlash(XMLCh c)
{
return ( chBackSlash == c || chForwardSlash == c);
}
// ---------------------------------------------------------------------------
// XMLPlatformUtils: Timing Methods
// ---------------------------------------------------------------------------
unsigned long XMLPlatformUtils::getCurrentMillis()
{
timeb aTime;
ftime(&aTime);
return (unsigned long)(aTime.time*1000 + aTime.millitm);
}
#ifndef __TANDEM
// -----------------------------------------------------------------------
// Mutex methods
// -----------------------------------------------------------------------
typedef XMLHolder<pthread_mutex_t> MutexHolderType;
void XMLPlatformUtils::closeMutex(void* const mtxHandle)
{
if (mtxHandle != NULL)
{
MutexHolderType* const holder =
MutexHolderType::castTo(mtxHandle);
if (pthread_mutex_destroy(&holder->fInstance))
{
delete holder;
ThrowXMLwithMemMgr(XMLPlatformUtilsException,
XMLExcepts::Mutex_CouldNotDestroy, fgMemoryManager);
}
delete holder;
}
}
void XMLPlatformUtils::lockMutex(void* const mtxHandle)
{
if (mtxHandle != NULL)
{
if (pthread_mutex_lock(&MutexHolderType::castTo(mtxHandle)->fInstance))
{
panic(PanicHandler::Panic_MutexErr);
}
}
}
void* XMLPlatformUtils::makeMutex(MemoryManager* manager)
{
MutexHolderType* const holder = new (manager) MutexHolderType;
if (pthread_mutex_init(&holder->fInstance, NULL))
{
delete holder;
panic(PanicHandler::Panic_MutexErr);
}
return holder;
}
void XMLPlatformUtils::unlockMutex(void* const mtxHandle)
{
if (mtxHandle != NULL)
{
if (pthread_mutex_unlock(&MutexHolderType::castTo(mtxHandle)->fInstance))
{
panic(PanicHandler::Panic_MutexErr);
}
}
}
// -----------------------------------------------------------------------
// Miscellaneous synchronization methods
// -----------------------------------------------------------------------
void* XMLPlatformUtils::compareAndSwap ( void** toFill ,
const void* const newValue ,
const void* const toCompare)
{
boolean_t boolVar = compare_and_swap((atomic_p)toFill, (int *)&toCompare, (int)newValue );
return (void *)toCompare;
}
int XMLPlatformUtils::atomicIncrement(int &location)
{
int retVal = fetch_and_add( (atomic_p)&location, 1);
return retVal+1;
}
int XMLPlatformUtils::atomicDecrement(int &location)
{
int retVal = fetch_and_add( (atomic_p)&location, -1);
return retVal-1;
}
FileHandle XMLPlatformUtils::openStdInHandle(MemoryManager* const manager)
{
return (FileHandle)fdopen(dup(0), "rb");
}
#endif
void XMLPlatformUtils::platformTerm()
{
// We don't have any termination requirements at this time
}
#include <xercesc/util/LogicalPath.c>
XERCES_CPP_NAMESPACE_END
| [
"xiaowave@gmail.com"
] | xiaowave@gmail.com |
1adf06ba796c29faad3e0d947d7ff5c83f6d6f88 | 14541a9f2cef091b474677fb9c3baf4ef3a315d0 | /ewsitemhandler.cpp | d337c23d853d24f50fcd1d9bf3dc31c2b7819ced | [] | no_license | StefanBruens/akonadi-ews | 45f5b75445c16b9e3a26cd35900212a41663acb4 | 05ce7e24547fbdb559de55dabda86d337716cfba | refs/heads/master | 2021-01-21T23:23:27.304824 | 2017-10-04T07:52:29 | 2017-10-04T07:52:29 | 95,236,655 | 0 | 0 | null | 2017-06-23T16:20:49 | 2017-06-23T16:20:49 | null | UTF-8 | C++ | false | false | 3,770 | cpp | /* This file is part of Akonadi EWS Resource
Copyright (C) 2015-2016 Krzysztof Nowicki <krissn@op.pl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "ewsitemhandler.h"
#include "ewsresource.h"
#include "ewsclient_debug.h"
struct HandlerFactory {
EwsItemType type;
EwsItemHandler::ItemHandlerFactory factory;
};
typedef QList<HandlerFactory> HandlerList;
typedef QHash<EwsItemType, QSharedPointer<EwsItemHandler>> HandlerHash;
Q_GLOBAL_STATIC(HandlerList, handlerFactories)
Q_GLOBAL_STATIC(HandlerHash, handlers)
EwsItemHandler::~EwsItemHandler()
{
}
void EwsItemHandler::registerItemHandler(EwsItemType type, ItemHandlerFactory factory)
{
handlerFactories->append({type, factory});
}
EwsItemHandler *EwsItemHandler::itemHandler(EwsItemType type)
{
HandlerHash::iterator it = handlers->find(type);
if (it != handlers->end()) {
return it->data();
}
else {
HandlerList::const_iterator it;
for (it = handlerFactories->cbegin(); it != handlerFactories->cend(); ++it) {
if (it->type == type) {
EwsItemHandler *handler = it->factory();
(*handlers)[type].reset(handler);
return handler;
}
}
qCWarning(EWSRES_LOG) << QStringLiteral("Could not find handler for item type %1").arg(type);
return Q_NULLPTR;
}
}
EwsItemType EwsItemHandler::mimeToItemType(QString mimeType)
{
if (mimeType == itemHandler(EwsItemTypeMessage)->mimeType()) {
return EwsItemTypeMessage;
}
else if (mimeType == itemHandler(EwsItemTypeCalendarItem)->mimeType()) {
return EwsItemTypeCalendarItem;
}
else if (mimeType == itemHandler(EwsItemTypeTask)->mimeType()) {
return EwsItemTypeTask;
}
else if (mimeType == itemHandler(EwsItemTypeContact)->mimeType()) {
return EwsItemTypeContact;
}
else {
return EwsItemTypeItem;
}
}
QHash<EwsPropertyField, QVariant> EwsItemHandler::writeFlags(QSet<QByteArray> flags)
{
QHash<EwsPropertyField, QVariant> propertyHash;
if (flags.isEmpty()) {
propertyHash.insert(EwsResource::flagsProperty, QVariant());
} else {
QStringList flagList;
Q_FOREACH(const QByteArray &flag, flags) {
flagList.append(flag);
}
propertyHash.insert(EwsResource::flagsProperty, flagList);
}
return propertyHash;
}
QSet<QByteArray> EwsItemHandler::readFlags(const EwsItem &item)
{
QSet<QByteArray> flags;
QVariant flagProp = item[EwsResource::flagsProperty];
if (!flagProp.isNull() && (flagProp.canConvert<QStringList>())) {
QStringList flagList = flagProp.toStringList();
Q_FOREACH(const QString &flag, flagList) {
flags.insert(flag.toAscii());
}
}
return flags;
}
QList<EwsPropertyField> EwsItemHandler::flagsProperties()
{
return {EwsResource::flagsProperty};
}
QList<EwsPropertyField> EwsItemHandler::tagsProperties()
{
return {EwsResource::tagsProperty};
}
| [
"krissn@op.pl"
] | krissn@op.pl |
f4f86937fb2992f6f8001154483017e41bd6a50a | 616cf3c7e18cd00ed73044e67b5fd588a4072828 | /src/api/trader_mduser_api_efh32.cpp | 1fcce72846dd1ab4447cf2c8951fbba3d406a4a9 | [] | no_license | genius-lh/ctp_trader | e414c9ba83e9a6eb9bc2d885647b4738f5607620 | 7d875eb6e79523c4d2702ea2dcb91c55a6627b7f | refs/heads/master | 2023-06-09T02:36:47.625727 | 2022-06-26T13:38:50 | 2022-06-26T13:38:50 | 148,415,076 | 7 | 5 | null | null | null | null | GB18030 | C++ | false | false | 21,665 | cpp |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pthread.h>
#include <unistd.h>
#include <fcntl.h>
#include <arpa/inet.h>
#ifdef __cplusplus
extern "C" {
#endif
#pragma pack(push, 1)
struct efh3_2_fut_lev1
{
unsigned int m_sequence; ///<会话编号
char m_exchange_id; ///<市场 0 表示中金 1表示上期
char m_channel_id; ///<通道编号
char m_symbol[8]; ///<合约
char m_update_time_h; ///<最后更新的时间hh
char m_update_time_m; ///<最后更新的时间mm
char m_update_time_s; ///<最后更新的时间ss
unsigned short m_millisecond; ///<最后更新的毫秒数
double m_last_px; ///<最新价
unsigned int m_last_share; ///<最新成交量
double m_total_value; ///<成交金额
double m_total_pos; ///<持仓量
double m_bid_px; ///<买一价
unsigned int m_bid_share; ///<买一量
double m_ask_px; ///<卖一价
unsigned int m_ask_share; ///<卖一量
char m_reserve; ///<保留字段
};
struct efh3_2_opt_lev1
{
unsigned int m_sequence; ///<会话编号
char m_exchange_id; ///<市场 0 表示中金 1表示上期
char m_channel_id; ///<通道编号
char m_symbol[16]; ///<合约
char m_update_time_h; ///<最后更新的时间hh
char m_update_time_m; ///<最后更新的时间mm
char m_update_time_s; ///<最后更新的时间ss
unsigned short m_millisecond; ///<最后更新的毫秒数
double m_last_px; ///<最新价
unsigned int m_last_share; ///<最新成交量
double m_total_value; ///<成交金额
double m_total_pos; ///<持仓量
double m_bid_px; ///<买一价
unsigned int m_bid_share; ///<买一量
double m_ask_px; ///<卖一价
unsigned int m_ask_share; ///<卖一量
char m_reserve; ///<保留字段
};
struct efh3_2_fut_lev2
{
unsigned int m_sequence; ///<会话编号
char m_exchange_id; ///<市场 0 表示中金 1表示上期
char m_channel_id; ///<通道编号
char m_symbol[8]; ///<合约
char m_update_time_h; ///<最后更新的时间hh
char m_update_time_m; ///<最后更新的时间mm
char m_update_time_s; ///<最后更新的时间ss
unsigned short m_millisecond; ///<最后更新的毫秒数
double m_last_px; ///<最新价
unsigned int m_last_share; ///<最新成交量
double m_total_value; ///<成交金额
double m_total_pos; ///<持仓量
double m_bid1_px; ///<买一价
unsigned int m_bid1_share; ///<买一量
double m_bid2_px; ///<买二价
unsigned int m_bid2_share; ///<买二量
double m_bid3_px; ///<买三价
unsigned int m_bid3_share; ///<买三量
double m_bid4_px; ///<买四价
unsigned int m_bid4_share; ///<买四量
double m_bid5_px; ///<买五价
unsigned int m_bid5_share; ///<买五量
double m_ask1_px; ///<卖一价
unsigned int m_ask1_share; ///<卖一量
double m_ask2_px; ///<卖二价
unsigned int m_ask2_share; ///<卖二量
double m_ask3_px; ///<卖三价
unsigned int m_ask3_share; ///<卖三量
double m_ask4_px; ///<卖四价
unsigned int m_ask4_share; ///<卖四量
double m_ask5_px; ///<卖五价
unsigned int m_ask5_share; ///<卖五量
char m_reserve; ///<保留字段
};
struct efh3_2_opt_lev2
{
unsigned int m_sequence; ///<会话编号
char m_exchange_id; ///<市场 0 表示中金 1表示上期
char m_channel_id; ///<通道编号
char m_symbol[16]; ///<合约
char m_update_time_h; ///<最后更新的时间hh
char m_update_time_m; ///<最后更新的时间mm
char m_update_time_s; ///<最后更新的时间ss
unsigned short m_millisecond; ///<最后更新的毫秒数
double m_last_px; ///<最新价
unsigned int m_last_share; ///<最新成交量
double m_total_value; ///<成交金额
double m_total_pos; ///<持仓量
double m_bid1_px; ///<买一价
unsigned int m_bid1_share; ///<买一量
double m_bid2_px; ///<买二价
unsigned int m_bid2_share; ///<买二量
double m_bid3_px; ///<买三价
unsigned int m_bid3_share; ///<买三量
double m_bid4_px; ///<买四价
unsigned int m_bid4_share; ///<买四量
double m_bid5_px; ///<买五价
unsigned int m_bid5_share; ///<买五量
double m_ask1_px; ///<卖一价
unsigned int m_ask1_share; ///<卖一量
double m_ask2_px; ///<卖二价
unsigned int m_ask2_share; ///<卖二量
double m_ask3_px; ///<卖三价
unsigned int m_ask3_share; ///<卖三量
double m_ask4_px; ///<卖四价
unsigned int m_ask4_share; ///<卖四量
double m_ask5_px; ///<卖五价
unsigned int m_ask5_share; ///<卖五量
char m_reserve; ///<保留字段
};
#pragma pack(pop)
#define XHEFH32_LOG(...) printf(__VA_ARGS__)
#include "trader_data.h"
#include "trader_mduser_api.h"
#include "dict.h"
extern trader_mduser_api_method* trader_mduser_api_efh32_method_get();
static void trader_mduser_api_efh32_start(trader_mduser_api* self);
static void trader_mduser_api_efh32_stop(trader_mduser_api* self);
static void trader_mduser_api_efh32_login(trader_mduser_api* self);
static void trader_mduser_api_efh32_logout(trader_mduser_api* self);
static void trader_mduser_api_efh32_subscribe(trader_mduser_api* self, char* instrument);
static void* trader_mduser_api_efh32_thread(void* arg);
static int trader_mduser_api_efh32_prase_url(const char* url, char* local_host, char* remote_host, int* port, char* remote_host2, int* port2);
static void trader_mduser_api_efh32_sock_recv(void* arg, int fd);
static void on_receive_message(void* arg, const char* buff, unsigned int len);
static void on_receive_fut_lev1(void* arg, efh3_2_fut_lev1* data);
static void on_receive_fut_lev2(void* arg, efh3_2_fut_lev2* data);
static void on_receive_opt_lev1(void* arg, efh3_2_opt_lev1* data);
static void on_receive_opt_lev2(void* arg, efh3_2_opt_lev2* data);
#ifdef __cplusplus
}
#endif
///最大的接收缓冲区最
#define RCV_BUF_SIZE (8 * 1024 * 1024)
#define MSG_BUF_SIZE (64 * 1024)
typedef struct trader_mduser_api_efh32_def trader_mduser_api_efh32;
struct trader_mduser_api_efh32_def{
char remote_ip[16]; ///< 组播IP
unsigned short remote_port; ///< 组播端口
char remote_ip2[16]; ///< 组播IP
unsigned short remote_port2; ///< 组播端口
char local_ip[16]; ///< 本地IP
pthread_t thread_id;
int loop_flag;
pthread_mutex_t mutex;
dict* tick_dick;
};
static unsigned int tickHash(const void *key) {
return dictGenHashFunction((const unsigned char *)key,
strlen((const char*)key));
}
static void *tickKeyDup(void *privdata, const void *src) {
((void) privdata);
int l1 = strlen((const char*)src)+1;
char* dup = (char*)malloc(l1 * sizeof(char));
strncpy(dup, (const char*)src, l1);
return dup;
}
static int tickKeyCompare(void *privdata, const void *key1, const void *key2) {
int l1, l2;
((void) privdata);
l1 = strlen((const char*)key1);
l2 = strlen((const char*)key2);
if (l1 != l2) return 0;
return memcmp(key1,key2,l1) == 0;
}
static void tickKeyDestructor(void *privdata, void *key) {
((void) privdata);
free((char*)key);
}
static dictType* tickDictTypeGet() {
static dictType tickDict = {
tickHash,
tickKeyDup,
NULL,
tickKeyCompare,
tickKeyDestructor,
NULL
};
return &tickDict;
}
static int udp_sock_init(int* pfd, const char* remote_ip, int remote_port, const char* local_ip);
static int udp_sock_recv(int fd, void* arg);
int udp_sock_init(int* pfd, const char* remote_ip, int remote_port, const char* local_ip)
{
int m_sock;
m_sock = socket(PF_INET, SOCK_DGRAM, 0);
if(-1 == m_sock)
{
return -1;
}
//socket可以重新使用一个本地地址
int flag=1;
if(setsockopt(m_sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&flag, sizeof(flag)) != 0)
{
return -2;
}
int options = fcntl(m_sock, F_GETFL);
if(options < 0)
{
return -3;
}
options = options | O_NONBLOCK;
int i_ret = fcntl(m_sock, F_SETFL, options);
if(i_ret < 0)
{
return -4;
}
struct sockaddr_in local_addr;
memset(&local_addr, 0, sizeof(local_addr));
local_addr.sin_family = AF_INET;
local_addr.sin_addr.s_addr = htonl(INADDR_ANY);
local_addr.sin_port = htons(remote_port); //multicast port
if (bind(m_sock, (struct sockaddr*)&local_addr, sizeof(local_addr)) < 0)
{
return -5;
}
struct ip_mreq mreq;
mreq.imr_multiaddr.s_addr = inet_addr(remote_ip); //multicast group ip
mreq.imr_interface.s_addr = inet_addr(local_ip);
if (setsockopt(m_sock, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq)) != 0)
{
return -6;
}
int receive_buf_size = RCV_BUF_SIZE;
if (setsockopt(m_sock, SOL_SOCKET, SO_RCVBUF, (const char*)&receive_buf_size, sizeof(receive_buf_size)) != 0)
{
return -7;
}
*pfd = m_sock;
return 0;
}
int udp_sock_recv(int fd, void* arg)
{
struct sockaddr_in muticast_addr;
memset(&muticast_addr, 0, sizeof(muticast_addr));
char line[MSG_BUF_SIZE] = "";
int n_rcved = -1;
socklen_t len = sizeof(sockaddr_in);
int loop = 1;
do{
n_rcved = recvfrom(fd, line, MSG_BUF_SIZE, 0, (struct sockaddr*)&muticast_addr, &len);
if ( n_rcved < 0)
{
break;
}
else if (0 == n_rcved)
{
break;
}
else
{
on_receive_message(arg, line, n_rcved);
}
}while(loop);
return 0;
}
static void trader_mduser_api_efh32_tick_dict_init(trader_mduser_api_efh32* self)
{
dictType* tickDictType = tickDictTypeGet();
self->tick_dick = dictCreate(tickDictType,NULL);
pthread_mutex_init(&self->mutex, NULL);
return;
}
static int trader_mduser_api_efh32_tick_dict_add(trader_mduser_api_efh32* self, const char* instrument)
{
int ret;
pthread_mutex_lock(&self->mutex);
ret = dictAdd(self->tick_dick, (void*)instrument, (void*)NULL);
pthread_mutex_unlock(&self->mutex);
return ret;
}
static int trader_mduser_api_efh32_tick_dict_find(trader_mduser_api_efh32* self, const char* instrument)
{
int ret;
pthread_mutex_lock(&self->mutex);
ret = (NULL != dictFind(self->tick_dick, (void*)instrument));
pthread_mutex_unlock(&self->mutex);
return ret;
}
static void trader_mduser_api_efh32_tick_dict_destory(trader_mduser_api_efh32* self)
{
dictRelease(self->tick_dick);
return;
}
trader_mduser_api_method* trader_mduser_api_efh32_method_get()
{
static trader_mduser_api_method trader_mduser_api_method_st = {
trader_mduser_api_set_user,
trader_mduser_api_set_front_addr,
trader_mduser_api_set_workspace,
trader_mduser_api_efh32_start,
trader_mduser_api_efh32_stop,
trader_mduser_api_efh32_login,
trader_mduser_api_efh32_logout,
trader_mduser_api_efh32_subscribe
};
return &trader_mduser_api_method_st;
}
void trader_mduser_api_efh32_start(trader_mduser_api* self)
{
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)malloc(sizeof(trader_mduser_api_efh32));
self->pUserApi = (void*)pImp;
int port;
int port2;
int ret = trader_mduser_api_efh32_prase_url(self->pAddress, pImp->local_ip,
pImp->remote_ip, &port, pImp->remote_ip2, &port2);
if(ret < 0){
return;
}
XHEFH32_LOG("local_ip[%s]\n"
"remote_ip[%s]\n"
"remote_port[%d]\n"
"remote_ip2[%s]\n"
"remote_port2[%d]\n"
, pImp->local_ip
, pImp->remote_ip
, port
, pImp->remote_ip2
, port2
);
pImp->remote_port = (unsigned short)port;
pImp->remote_port2 = (unsigned short)port2;
trader_mduser_api_efh32_tick_dict_init(pImp);
trader_mduser_api_on_rsp_user_login(self, 0, "OK");
sleep(1);
ret = pthread_create(&pImp->thread_id, NULL, trader_mduser_api_efh32_thread, (void*)self);
return ;
}
void trader_mduser_api_efh32_stop(trader_mduser_api* self)
{
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)self->pUserApi;
pImp->loop_flag = 0;
void* ret;
if(pImp->thread_id){
pthread_join(pImp->thread_id, &ret);
}
trader_mduser_api_efh32_tick_dict_destory(pImp);
free(pImp);
self->pUserApi = (void*)NULL;
return ;
}
void trader_mduser_api_efh32_login(trader_mduser_api* self)
{
return ;
}
void trader_mduser_api_efh32_logout(trader_mduser_api* self)
{
return ;
}
void trader_mduser_api_efh32_subscribe(trader_mduser_api* self, char* instrument)
{
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)self->pUserApi;
trader_mduser_api_efh32_tick_dict_add(pImp, instrument);
return ;
}
void trader_mduser_api_efh32_sock_recv(void* arg, int fd)
{
int n_rcved = 0;
char line[MSG_BUF_SIZE];
trader_mduser_api* self = (trader_mduser_api*)arg;
int loop = 1;
struct sockaddr_in muticast_addr;
socklen_t len = sizeof(sockaddr_in);
memset(&muticast_addr, 0, sizeof(muticast_addr));
do{
n_rcved = recvfrom(fd, line, MSG_BUF_SIZE, 0, (struct sockaddr*)&muticast_addr, &len);
if ( n_rcved < 0)
{
break;
}
else if (0 == n_rcved)
{
break;
}
else
{
on_receive_message(self, line, n_rcved);
}
}while(loop);
}
void on_receive_message(void* arg, const char* buff, unsigned int len)
{
if ( 0 == (len % sizeof(efh3_2_fut_lev1)))
{
/// add by zhou.hu review 2019/12/25 接收的到是上期所的期货lev1
unsigned int proc_len = 0;
while(proc_len < len)
{
efh3_2_fut_lev1* ptr_data = (efh3_2_fut_lev1*)(buff + proc_len);
on_receive_fut_lev1(arg, ptr_data);
proc_len += sizeof(efh3_2_fut_lev1);
}
return;
}
if ( 0 == (len % sizeof(efh3_2_fut_lev2)))
{
/// add by zhou.hu review 2019/12/25 接收的到是上期所的期货lev1
unsigned int proc_len = 0;
while(proc_len < len)
{
efh3_2_fut_lev2* ptr_data = (efh3_2_fut_lev2*)(buff + proc_len);
on_receive_fut_lev2(arg, ptr_data);
proc_len += sizeof(efh3_2_fut_lev2);
}
return;
}
if ( 0 == (len % sizeof(efh3_2_opt_lev1)))
{
/// add by zhou.hu review 2019/12/25 接收的到是上期所的期货lev1
unsigned int proc_len = 0;
while(proc_len < len)
{
efh3_2_opt_lev1* ptr_data = (efh3_2_opt_lev1*)(buff + proc_len);
on_receive_opt_lev1(arg, ptr_data);
proc_len += sizeof(efh3_2_opt_lev1);
}
return;
}
if ( 0 == (len % sizeof(efh3_2_opt_lev2)))
{
/// add by zhou.hu review 2019/12/25 接收的到是上期所的期货lev1
unsigned int proc_len = 0;
while(proc_len < len)
{
efh3_2_opt_lev2* ptr_data = (efh3_2_opt_lev2*)(buff + proc_len);
on_receive_opt_lev2(arg, ptr_data);
proc_len += sizeof(efh3_2_opt_lev2);
}
return;
}
}
void on_receive_fut_lev1(void* arg, efh3_2_fut_lev1* pMarketData)
{
trader_mduser_api* self = (trader_mduser_api*)arg;
trader_tick oTick;
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)self->pUserApi;
int found = trader_mduser_api_efh32_tick_dict_find(pImp, pMarketData->m_symbol);
if(!found){
return;
}
memset(&oTick, 0, sizeof(trader_tick));
strcpy(oTick.InstrumentID, pMarketData->m_symbol);
strcpy(oTick.TradingDay, "20210101");
snprintf(oTick.UpdateTime, sizeof(oTick.UpdateTime), "%02d:%02d:%02d",
(int)pMarketData->m_update_time_h,
(int)pMarketData->m_update_time_m,
(int)pMarketData->m_update_time_s
);
oTick.UpdateMillisec = pMarketData->m_millisecond;
oTick.BidPrice1 = pMarketData->m_bid_px;
oTick.BidVolume1 = pMarketData->m_bid_share;
oTick.AskPrice1 = pMarketData->m_ask_px;
oTick.AskVolume1 = pMarketData->m_ask_share;
oTick.UpperLimitPrice = pMarketData->m_ask_px * 1.1;
oTick.LowerLimitPrice = pMarketData->m_bid_px * 0.9;
oTick.LastPrice = pMarketData->m_last_px;
trader_mduser_api_on_rtn_depth_market_data(self, &oTick);
return;
}
void on_receive_fut_lev2(void* arg, efh3_2_fut_lev2* pMarketData)
{
trader_mduser_api* self = (trader_mduser_api*)arg;
trader_tick oTick;
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)self->pUserApi;
int found = trader_mduser_api_efh32_tick_dict_find(pImp, pMarketData->m_symbol);
if(!found){
return;
}
memset(&oTick, 0, sizeof(trader_tick));
strcpy(oTick.InstrumentID, pMarketData->m_symbol);
strcpy(oTick.TradingDay, "20210101");
snprintf(oTick.UpdateTime, sizeof(oTick.UpdateTime), "%02d%02d%02d",
(int)pMarketData->m_update_time_h,
(int)pMarketData->m_update_time_m,
(int)pMarketData->m_update_time_s
);
oTick.UpdateMillisec = pMarketData->m_millisecond;
oTick.BidPrice1 = pMarketData->m_bid1_px;
oTick.BidVolume1 = pMarketData->m_bid1_share;
oTick.AskPrice1 = pMarketData->m_ask1_px;
oTick.AskVolume1 = pMarketData->m_ask1_share;
oTick.UpperLimitPrice = pMarketData->m_ask1_px * 1.1;
oTick.LowerLimitPrice = pMarketData->m_bid1_px * 0.9;
oTick.LastPrice = pMarketData->m_last_px;
trader_mduser_api_on_rtn_depth_market_data(self, &oTick);
return;
}
void on_receive_opt_lev1(void* arg, efh3_2_opt_lev1* pMarketData)
{
trader_mduser_api* self = (trader_mduser_api*)arg;
trader_tick oTick;
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)self->pUserApi;
int found = trader_mduser_api_efh32_tick_dict_find(pImp, pMarketData->m_symbol);
if(!found){
return;
}
memset(&oTick, 0, sizeof(trader_tick));
strcpy(oTick.InstrumentID, pMarketData->m_symbol);
strcpy(oTick.TradingDay, "20210101");
snprintf(oTick.UpdateTime, sizeof(oTick.UpdateTime), "%02d%02d%02d",
(int)pMarketData->m_update_time_h,
(int)pMarketData->m_update_time_m,
(int)pMarketData->m_update_time_s
);
oTick.UpdateMillisec = pMarketData->m_millisecond;
oTick.BidPrice1 = pMarketData->m_bid_px;
oTick.BidVolume1 = pMarketData->m_bid_share;
oTick.AskPrice1 = pMarketData->m_ask_px;
oTick.AskVolume1 = pMarketData->m_ask_share;
oTick.UpperLimitPrice = pMarketData->m_ask_px * 1.1;
oTick.LowerLimitPrice = pMarketData->m_bid_px * 0.9;
oTick.LastPrice = pMarketData->m_last_px;
trader_mduser_api_on_rtn_depth_market_data(self, &oTick);
return;
}
void on_receive_opt_lev2(void* arg, efh3_2_opt_lev2* pMarketData)
{
trader_mduser_api* self = (trader_mduser_api*)arg;
trader_tick oTick;
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)self->pUserApi;
int found = trader_mduser_api_efh32_tick_dict_find(pImp, pMarketData->m_symbol);
if(!found){
return;
}
memset(&oTick, 0, sizeof(trader_tick));
strcpy(oTick.InstrumentID, pMarketData->m_symbol);
strcpy(oTick.TradingDay, "20210101");
snprintf(oTick.UpdateTime, sizeof(oTick.UpdateTime), "%02d%02d%02d",
(int)pMarketData->m_update_time_h,
(int)pMarketData->m_update_time_m,
(int)pMarketData->m_update_time_s
);
oTick.UpdateMillisec = pMarketData->m_millisecond;
oTick.BidPrice1 = pMarketData->m_bid1_px;
oTick.BidVolume1 = pMarketData->m_bid1_share;
oTick.AskPrice1 = pMarketData->m_ask1_px;
oTick.AskVolume1 = pMarketData->m_ask1_share;
oTick.UpperLimitPrice = pMarketData->m_ask1_px * 1.1;
oTick.LowerLimitPrice = pMarketData->m_bid1_px * 0.9;
oTick.LastPrice = pMarketData->m_last_px;
trader_mduser_api_on_rtn_depth_market_data(self, &oTick);
return;
}
void* trader_mduser_api_efh32_thread(void* arg)
{
trader_mduser_api* self = (trader_mduser_api*)arg;
trader_mduser_api_efh32* pImp = (trader_mduser_api_efh32*)self->pUserApi;
int m_sock[2];
int max_sock;
int ret;
int i;
int n_rcved = -1;
fd_set readSet, writeSet, errorSet;
struct timeval tval;
do{
i = 0;
ret = udp_sock_init(&m_sock[i], pImp->remote_ip, pImp->remote_port, pImp->local_ip);
if(ret < 0){
break;
}
i++;
ret = udp_sock_init(&m_sock[i], pImp->remote_ip2, pImp->remote_port2, pImp->local_ip);
if(ret < 0){
break;
}
if(m_sock[0] > m_sock[1]){
max_sock = m_sock[0] + 1;
}else{
max_sock = m_sock[1] + 1;
}
pImp->loop_flag = 1;
while (pImp->loop_flag)
{
FD_ZERO( &readSet);
FD_ZERO( &writeSet);
FD_ZERO( &errorSet);
for(i = 0; i < sizeof(m_sock) / sizeof(int); i++){
FD_SET(m_sock[i], &readSet);
FD_SET(m_sock[i], &errorSet);
}
tval.tv_usec = 100 * 1000; //100 ms
tval.tv_sec = 0;
n_rcved = select(max_sock, &readSet, &writeSet, &errorSet, &tval);
if(n_rcved < 1) { // timeout
continue;
}
for(i = 0; i < sizeof(m_sock) / sizeof(int); i++){
if(!FD_ISSET(m_sock[i], &readSet)){
continue;
}
udp_sock_recv(m_sock[i], self);
}
}
}while(0);
for(i = 0; i < sizeof(m_sock) / sizeof(int); i++){
if(m_sock[i] > 0){
close(m_sock[i]);
}
}
return (void*)NULL;
}
int trader_mduser_api_efh32_prase_url(const char* url, char* local_host, char* remote_host, int* port, char* remote_host2, int* port2)
{
char buff[512];
char* p;
char* q;
char tmp[6];
// 定位://
strncpy(buff, url, sizeof(buff));
p = buff;
q = (char*)strstr(p, "|");
if(NULL == q){
return -1;
}
memcpy(local_host, p, q - p);
local_host[q-p] = '\0';
q++;
p = q;
q = (char*)strstr(p, ":");
if(NULL == q){
return -2;
}
memcpy(remote_host, p, q - p);
remote_host[q-p] = '\0';
q++;
p = q;
q = (char*)strstr(p, "|");
if(NULL == q){
return -3;
}
memcpy(tmp, p, q - p);
tmp[q-p] = '\0';
*port = atoi(tmp);
q++;
p = q;
q = (char*)strstr(p, ":");
if(NULL == q){
return -4;
}
memcpy(remote_host2, p, q - p);
remote_host2[q-p] = '\0';
q++;
p = q;
*port2 = atoi(p);
return 0;
}
| [
"25143100@qq.com"
] | 25143100@qq.com |
0d69b89997c0b5ec6c28914b57100bc2ee9d1ac7 | 88eb14295f08957b0e7fada22167c2d4a9d5ee9c | /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicImpl.inc | 0b8c1abdf1fd70579eab411e6b6e5acd159a9ac9 | [] | no_license | youngshingjun/BitCodeInterpreter | 63e1fb23c14aed02d818b672150ec7205405222a | c9a73f4dc4f99a9f310e0f88370d9407aa93fa97 | refs/heads/main | 2023-06-12T13:48:34.956970 | 2021-06-29T06:04:21 | 2021-06-29T06:04:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,263,976 | inc | /*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|* *|
|* Intrinsic Function Source Fragment *|
|* *|
|* Automatically generated file, do not edit! *|
|* *|
\*===----------------------------------------------------------------------===*/
// Target mapping
#ifdef GET_INTRINSIC_TARGET_DATA
struct IntrinsicTargetInfo {
llvm::StringLiteral Name;
size_t Offset;
size_t Count;
};
static constexpr IntrinsicTargetInfo TargetInfos[] = {
{llvm::StringLiteral(""), 0, 320},
{llvm::StringLiteral("aarch64"), 320, 841},
{llvm::StringLiteral("amdgcn"), 1161, 696},
{llvm::StringLiteral("arm"), 1857, 489},
{llvm::StringLiteral("bpf"), 2346, 9},
{llvm::StringLiteral("hexagon"), 2355, 1750},
{llvm::StringLiteral("mips"), 4105, 671},
{llvm::StringLiteral("nvvm"), 4776, 1296},
{llvm::StringLiteral("ppc"), 6072, 515},
{llvm::StringLiteral("r600"), 6587, 35},
{llvm::StringLiteral("riscv"), 6622, 364},
{llvm::StringLiteral("s390"), 6986, 228},
{llvm::StringLiteral("ve"), 7214, 1214},
{llvm::StringLiteral("wasm"), 8428, 65},
{llvm::StringLiteral("x86"), 8493, 1206},
{llvm::StringLiteral("xcore"), 9699, 53},
};
#endif
// Intrinsic ID to name table
#ifdef GET_INTRINSIC_NAME_TABLE
// Note that entry #0 is the invalid intrinsic!
"llvm.abs",
"llvm.addressofreturnaddress",
"llvm.adjust.trampoline",
"llvm.annotation",
"llvm.assume",
"llvm.bitreverse",
"llvm.bswap",
"llvm.call.preallocated.arg",
"llvm.call.preallocated.setup",
"llvm.call.preallocated.teardown",
"llvm.canonicalize",
"llvm.ceil",
"llvm.clear_cache",
"llvm.codeview.annotation",
"llvm.convert.from.fp16",
"llvm.convert.to.fp16",
"llvm.copysign",
"llvm.coro.alloc",
"llvm.coro.alloca.alloc",
"llvm.coro.alloca.free",
"llvm.coro.alloca.get",
"llvm.coro.async.context.alloc",
"llvm.coro.async.context.dealloc",
"llvm.coro.async.resume",
"llvm.coro.begin",
"llvm.coro.destroy",
"llvm.coro.done",
"llvm.coro.end",
"llvm.coro.end.async",
"llvm.coro.frame",
"llvm.coro.free",
"llvm.coro.id",
"llvm.coro.id.async",
"llvm.coro.id.retcon",
"llvm.coro.id.retcon.once",
"llvm.coro.noop",
"llvm.coro.param",
"llvm.coro.prepare.async",
"llvm.coro.prepare.retcon",
"llvm.coro.promise",
"llvm.coro.resume",
"llvm.coro.save",
"llvm.coro.size",
"llvm.coro.subfn.addr",
"llvm.coro.suspend",
"llvm.coro.suspend.async",
"llvm.coro.suspend.retcon",
"llvm.cos",
"llvm.ctlz",
"llvm.ctpop",
"llvm.cttz",
"llvm.dbg.addr",
"llvm.dbg.declare",
"llvm.dbg.label",
"llvm.dbg.value",
"llvm.debugtrap",
"llvm.donothing",
"llvm.eh.dwarf.cfa",
"llvm.eh.exceptioncode",
"llvm.eh.exceptionpointer",
"llvm.eh.recoverfp",
"llvm.eh.return.i32",
"llvm.eh.return.i64",
"llvm.eh.sjlj.callsite",
"llvm.eh.sjlj.functioncontext",
"llvm.eh.sjlj.longjmp",
"llvm.eh.sjlj.lsda",
"llvm.eh.sjlj.setjmp",
"llvm.eh.sjlj.setup.dispatch",
"llvm.eh.typeid.for",
"llvm.eh.unwind.init",
"llvm.exp",
"llvm.exp2",
"llvm.expect",
"llvm.expect.with.probability",
"llvm.experimental.constrained.ceil",
"llvm.experimental.constrained.cos",
"llvm.experimental.constrained.exp",
"llvm.experimental.constrained.exp2",
"llvm.experimental.constrained.fadd",
"llvm.experimental.constrained.fcmp",
"llvm.experimental.constrained.fcmps",
"llvm.experimental.constrained.fdiv",
"llvm.experimental.constrained.floor",
"llvm.experimental.constrained.fma",
"llvm.experimental.constrained.fmul",
"llvm.experimental.constrained.fmuladd",
"llvm.experimental.constrained.fpext",
"llvm.experimental.constrained.fptosi",
"llvm.experimental.constrained.fptoui",
"llvm.experimental.constrained.fptrunc",
"llvm.experimental.constrained.frem",
"llvm.experimental.constrained.fsub",
"llvm.experimental.constrained.llrint",
"llvm.experimental.constrained.llround",
"llvm.experimental.constrained.log",
"llvm.experimental.constrained.log10",
"llvm.experimental.constrained.log2",
"llvm.experimental.constrained.lrint",
"llvm.experimental.constrained.lround",
"llvm.experimental.constrained.maximum",
"llvm.experimental.constrained.maxnum",
"llvm.experimental.constrained.minimum",
"llvm.experimental.constrained.minnum",
"llvm.experimental.constrained.nearbyint",
"llvm.experimental.constrained.pow",
"llvm.experimental.constrained.powi",
"llvm.experimental.constrained.rint",
"llvm.experimental.constrained.round",
"llvm.experimental.constrained.roundeven",
"llvm.experimental.constrained.sin",
"llvm.experimental.constrained.sitofp",
"llvm.experimental.constrained.sqrt",
"llvm.experimental.constrained.trunc",
"llvm.experimental.constrained.uitofp",
"llvm.experimental.deoptimize",
"llvm.experimental.gc.relocate",
"llvm.experimental.gc.result",
"llvm.experimental.gc.statepoint",
"llvm.experimental.guard",
"llvm.experimental.patchpoint.i64",
"llvm.experimental.patchpoint.void",
"llvm.experimental.stackmap",
"llvm.experimental.vector.extract",
"llvm.experimental.vector.insert",
"llvm.experimental.widenable.condition",
"llvm.fabs",
"llvm.floor",
"llvm.flt.rounds",
"llvm.fma",
"llvm.fmuladd",
"llvm.fptosi.sat",
"llvm.fptoui.sat",
"llvm.frameaddress",
"llvm.fshl",
"llvm.fshr",
"llvm.gcread",
"llvm.gcroot",
"llvm.gcwrite",
"llvm.get.active.lane.mask",
"llvm.get.dynamic.area.offset",
"llvm.hwasan.check.memaccess",
"llvm.hwasan.check.memaccess.shortgranules",
"llvm.icall.branch.funnel",
"llvm.init.trampoline",
"llvm.instrprof.increment",
"llvm.instrprof.increment.step",
"llvm.instrprof.value.profile",
"llvm.invariant.end",
"llvm.invariant.start",
"llvm.is.constant",
"llvm.launder.invariant.group",
"llvm.lifetime.end",
"llvm.lifetime.start",
"llvm.llrint",
"llvm.llround",
"llvm.load.relative",
"llvm.localaddress",
"llvm.localescape",
"llvm.localrecover",
"llvm.log",
"llvm.log10",
"llvm.log2",
"llvm.loop.decrement",
"llvm.loop.decrement.reg",
"llvm.lrint",
"llvm.lround",
"llvm.masked.compressstore",
"llvm.masked.expandload",
"llvm.masked.gather",
"llvm.masked.load",
"llvm.masked.scatter",
"llvm.masked.store",
"llvm.matrix.column.major.load",
"llvm.matrix.column.major.store",
"llvm.matrix.multiply",
"llvm.matrix.transpose",
"llvm.maximum",
"llvm.maxnum",
"llvm.memcpy",
"llvm.memcpy.element.unordered.atomic",
"llvm.memcpy.inline",
"llvm.memmove",
"llvm.memmove.element.unordered.atomic",
"llvm.memset",
"llvm.memset.element.unordered.atomic",
"llvm.minimum",
"llvm.minnum",
"llvm.nearbyint",
"llvm.objc.arc.annotation.bottomup.bbend",
"llvm.objc.arc.annotation.bottomup.bbstart",
"llvm.objc.arc.annotation.topdown.bbend",
"llvm.objc.arc.annotation.topdown.bbstart",
"llvm.objc.autorelease",
"llvm.objc.autoreleasePoolPop",
"llvm.objc.autoreleasePoolPush",
"llvm.objc.autoreleaseReturnValue",
"llvm.objc.clang.arc.use",
"llvm.objc.copyWeak",
"llvm.objc.destroyWeak",
"llvm.objc.initWeak",
"llvm.objc.loadWeak",
"llvm.objc.loadWeakRetained",
"llvm.objc.moveWeak",
"llvm.objc.release",
"llvm.objc.retain",
"llvm.objc.retain.autorelease",
"llvm.objc.retainAutorelease",
"llvm.objc.retainAutoreleaseReturnValue",
"llvm.objc.retainAutoreleasedReturnValue",
"llvm.objc.retainBlock",
"llvm.objc.retainedObject",
"llvm.objc.storeStrong",
"llvm.objc.storeWeak",
"llvm.objc.sync.enter",
"llvm.objc.sync.exit",
"llvm.objc.unretainedObject",
"llvm.objc.unretainedPointer",
"llvm.objc.unsafeClaimAutoreleasedReturnValue",
"llvm.objectsize",
"llvm.pcmarker",
"llvm.pow",
"llvm.powi",
"llvm.prefetch",
"llvm.preserve.array.access.index",
"llvm.preserve.struct.access.index",
"llvm.preserve.union.access.index",
"llvm.pseudoprobe",
"llvm.ptr.annotation",
"llvm.ptrauth.auth",
"llvm.ptrauth.blend",
"llvm.ptrauth.resign",
"llvm.ptrauth.sign",
"llvm.ptrauth.sign.generic",
"llvm.ptrauth.strip",
"llvm.ptrmask",
"llvm.read_register",
"llvm.read_volatile_register",
"llvm.readcyclecounter",
"llvm.returnaddress",
"llvm.rint",
"llvm.round",
"llvm.roundeven",
"llvm.sadd.sat",
"llvm.sadd.with.overflow",
"llvm.sdiv.fix",
"llvm.sdiv.fix.sat",
"llvm.set.loop.iterations",
"llvm.sideeffect",
"llvm.sin",
"llvm.smax",
"llvm.smin",
"llvm.smul.fix",
"llvm.smul.fix.sat",
"llvm.smul.with.overflow",
"llvm.sponentry",
"llvm.sqrt",
"llvm.ssa.copy",
"llvm.sshl.sat",
"llvm.ssub.sat",
"llvm.ssub.with.overflow",
"llvm.stackguard",
"llvm.stackprotector",
"llvm.stackrestore",
"llvm.stacksave",
"llvm.start.loop.iterations",
"llvm.strip.invariant.group",
"llvm.test.set.loop.iterations",
"llvm.thread.pointer",
"llvm.trap",
"llvm.trunc",
"llvm.type.checked.load",
"llvm.type.test",
"llvm.uadd.sat",
"llvm.uadd.with.overflow",
"llvm.ubsantrap",
"llvm.udiv.fix",
"llvm.udiv.fix.sat",
"llvm.umax",
"llvm.umin",
"llvm.umul.fix",
"llvm.umul.fix.sat",
"llvm.umul.with.overflow",
"llvm.ushl.sat",
"llvm.usub.sat",
"llvm.usub.with.overflow",
"llvm.va_copy",
"llvm.va_end",
"llvm.va_start",
"llvm.var.annotation",
"llvm.vector.reduce.add",
"llvm.vector.reduce.and",
"llvm.vector.reduce.fadd",
"llvm.vector.reduce.fmax",
"llvm.vector.reduce.fmin",
"llvm.vector.reduce.fmul",
"llvm.vector.reduce.mul",
"llvm.vector.reduce.or",
"llvm.vector.reduce.smax",
"llvm.vector.reduce.smin",
"llvm.vector.reduce.umax",
"llvm.vector.reduce.umin",
"llvm.vector.reduce.xor",
"llvm.vp.add",
"llvm.vp.and",
"llvm.vp.ashr",
"llvm.vp.lshr",
"llvm.vp.mul",
"llvm.vp.or",
"llvm.vp.sdiv",
"llvm.vp.shl",
"llvm.vp.srem",
"llvm.vp.sub",
"llvm.vp.udiv",
"llvm.vp.urem",
"llvm.vp.xor",
"llvm.vscale",
"llvm.write_register",
"llvm.xray.customevent",
"llvm.xray.typedevent",
"llvm.aarch64.addg",
"llvm.aarch64.clrex",
"llvm.aarch64.cls",
"llvm.aarch64.cls64",
"llvm.aarch64.crc32b",
"llvm.aarch64.crc32cb",
"llvm.aarch64.crc32ch",
"llvm.aarch64.crc32cw",
"llvm.aarch64.crc32cx",
"llvm.aarch64.crc32h",
"llvm.aarch64.crc32w",
"llvm.aarch64.crc32x",
"llvm.aarch64.crypto.aesd",
"llvm.aarch64.crypto.aese",
"llvm.aarch64.crypto.aesimc",
"llvm.aarch64.crypto.aesmc",
"llvm.aarch64.crypto.sha1c",
"llvm.aarch64.crypto.sha1h",
"llvm.aarch64.crypto.sha1m",
"llvm.aarch64.crypto.sha1p",
"llvm.aarch64.crypto.sha1su0",
"llvm.aarch64.crypto.sha1su1",
"llvm.aarch64.crypto.sha256h",
"llvm.aarch64.crypto.sha256h2",
"llvm.aarch64.crypto.sha256su0",
"llvm.aarch64.crypto.sha256su1",
"llvm.aarch64.dmb",
"llvm.aarch64.dsb",
"llvm.aarch64.fjcvtzs",
"llvm.aarch64.get.fpcr",
"llvm.aarch64.gmi",
"llvm.aarch64.hint",
"llvm.aarch64.irg",
"llvm.aarch64.irg.sp",
"llvm.aarch64.isb",
"llvm.aarch64.ldaxp",
"llvm.aarch64.ldaxr",
"llvm.aarch64.ldg",
"llvm.aarch64.ldxp",
"llvm.aarch64.ldxr",
"llvm.aarch64.neon.abs",
"llvm.aarch64.neon.addhn",
"llvm.aarch64.neon.addp",
"llvm.aarch64.neon.bfcvt",
"llvm.aarch64.neon.bfcvtn",
"llvm.aarch64.neon.bfcvtn2",
"llvm.aarch64.neon.bfdot",
"llvm.aarch64.neon.bfmlalb",
"llvm.aarch64.neon.bfmlalt",
"llvm.aarch64.neon.bfmmla",
"llvm.aarch64.neon.cls",
"llvm.aarch64.neon.fabd",
"llvm.aarch64.neon.facge",
"llvm.aarch64.neon.facgt",
"llvm.aarch64.neon.faddp",
"llvm.aarch64.neon.faddv",
"llvm.aarch64.neon.fcvtas",
"llvm.aarch64.neon.fcvtau",
"llvm.aarch64.neon.fcvtms",
"llvm.aarch64.neon.fcvtmu",
"llvm.aarch64.neon.fcvtns",
"llvm.aarch64.neon.fcvtnu",
"llvm.aarch64.neon.fcvtps",
"llvm.aarch64.neon.fcvtpu",
"llvm.aarch64.neon.fcvtxn",
"llvm.aarch64.neon.fcvtzs",
"llvm.aarch64.neon.fcvtzu",
"llvm.aarch64.neon.fmax",
"llvm.aarch64.neon.fmaxnm",
"llvm.aarch64.neon.fmaxnmp",
"llvm.aarch64.neon.fmaxnmv",
"llvm.aarch64.neon.fmaxp",
"llvm.aarch64.neon.fmaxv",
"llvm.aarch64.neon.fmin",
"llvm.aarch64.neon.fminnm",
"llvm.aarch64.neon.fminnmp",
"llvm.aarch64.neon.fminnmv",
"llvm.aarch64.neon.fminp",
"llvm.aarch64.neon.fminv",
"llvm.aarch64.neon.fmlal",
"llvm.aarch64.neon.fmlal2",
"llvm.aarch64.neon.fmlsl",
"llvm.aarch64.neon.fmlsl2",
"llvm.aarch64.neon.fmulx",
"llvm.aarch64.neon.frecpe",
"llvm.aarch64.neon.frecps",
"llvm.aarch64.neon.frecpx",
"llvm.aarch64.neon.frintn",
"llvm.aarch64.neon.frsqrte",
"llvm.aarch64.neon.frsqrts",
"llvm.aarch64.neon.ld1x2",
"llvm.aarch64.neon.ld1x3",
"llvm.aarch64.neon.ld1x4",
"llvm.aarch64.neon.ld2",
"llvm.aarch64.neon.ld2lane",
"llvm.aarch64.neon.ld2r",
"llvm.aarch64.neon.ld3",
"llvm.aarch64.neon.ld3lane",
"llvm.aarch64.neon.ld3r",
"llvm.aarch64.neon.ld4",
"llvm.aarch64.neon.ld4lane",
"llvm.aarch64.neon.ld4r",
"llvm.aarch64.neon.pmul",
"llvm.aarch64.neon.pmull",
"llvm.aarch64.neon.pmull64",
"llvm.aarch64.neon.raddhn",
"llvm.aarch64.neon.rbit",
"llvm.aarch64.neon.rshrn",
"llvm.aarch64.neon.rsubhn",
"llvm.aarch64.neon.sabd",
"llvm.aarch64.neon.saddlp",
"llvm.aarch64.neon.saddlv",
"llvm.aarch64.neon.saddv",
"llvm.aarch64.neon.scalar.sqxtn",
"llvm.aarch64.neon.scalar.sqxtun",
"llvm.aarch64.neon.scalar.uqxtn",
"llvm.aarch64.neon.sdot",
"llvm.aarch64.neon.shadd",
"llvm.aarch64.neon.shll",
"llvm.aarch64.neon.shsub",
"llvm.aarch64.neon.smax",
"llvm.aarch64.neon.smaxp",
"llvm.aarch64.neon.smaxv",
"llvm.aarch64.neon.smin",
"llvm.aarch64.neon.sminp",
"llvm.aarch64.neon.sminv",
"llvm.aarch64.neon.smmla",
"llvm.aarch64.neon.smull",
"llvm.aarch64.neon.sqabs",
"llvm.aarch64.neon.sqadd",
"llvm.aarch64.neon.sqdmulh",
"llvm.aarch64.neon.sqdmulh.lane",
"llvm.aarch64.neon.sqdmulh.laneq",
"llvm.aarch64.neon.sqdmull",
"llvm.aarch64.neon.sqdmulls.scalar",
"llvm.aarch64.neon.sqneg",
"llvm.aarch64.neon.sqrdmulh",
"llvm.aarch64.neon.sqrdmulh.lane",
"llvm.aarch64.neon.sqrdmulh.laneq",
"llvm.aarch64.neon.sqrshl",
"llvm.aarch64.neon.sqrshrn",
"llvm.aarch64.neon.sqrshrun",
"llvm.aarch64.neon.sqshl",
"llvm.aarch64.neon.sqshlu",
"llvm.aarch64.neon.sqshrn",
"llvm.aarch64.neon.sqshrun",
"llvm.aarch64.neon.sqsub",
"llvm.aarch64.neon.sqxtn",
"llvm.aarch64.neon.sqxtun",
"llvm.aarch64.neon.srhadd",
"llvm.aarch64.neon.srshl",
"llvm.aarch64.neon.sshl",
"llvm.aarch64.neon.sshll",
"llvm.aarch64.neon.st1x2",
"llvm.aarch64.neon.st1x3",
"llvm.aarch64.neon.st1x4",
"llvm.aarch64.neon.st2",
"llvm.aarch64.neon.st2lane",
"llvm.aarch64.neon.st3",
"llvm.aarch64.neon.st3lane",
"llvm.aarch64.neon.st4",
"llvm.aarch64.neon.st4lane",
"llvm.aarch64.neon.subhn",
"llvm.aarch64.neon.suqadd",
"llvm.aarch64.neon.tbl1",
"llvm.aarch64.neon.tbl2",
"llvm.aarch64.neon.tbl3",
"llvm.aarch64.neon.tbl4",
"llvm.aarch64.neon.tbx1",
"llvm.aarch64.neon.tbx2",
"llvm.aarch64.neon.tbx3",
"llvm.aarch64.neon.tbx4",
"llvm.aarch64.neon.uabd",
"llvm.aarch64.neon.uaddlp",
"llvm.aarch64.neon.uaddlv",
"llvm.aarch64.neon.uaddv",
"llvm.aarch64.neon.udot",
"llvm.aarch64.neon.uhadd",
"llvm.aarch64.neon.uhsub",
"llvm.aarch64.neon.umax",
"llvm.aarch64.neon.umaxp",
"llvm.aarch64.neon.umaxv",
"llvm.aarch64.neon.umin",
"llvm.aarch64.neon.uminp",
"llvm.aarch64.neon.uminv",
"llvm.aarch64.neon.ummla",
"llvm.aarch64.neon.umull",
"llvm.aarch64.neon.uqadd",
"llvm.aarch64.neon.uqrshl",
"llvm.aarch64.neon.uqrshrn",
"llvm.aarch64.neon.uqshl",
"llvm.aarch64.neon.uqshrn",
"llvm.aarch64.neon.uqsub",
"llvm.aarch64.neon.uqxtn",
"llvm.aarch64.neon.urecpe",
"llvm.aarch64.neon.urhadd",
"llvm.aarch64.neon.urshl",
"llvm.aarch64.neon.ursqrte",
"llvm.aarch64.neon.usdot",
"llvm.aarch64.neon.ushl",
"llvm.aarch64.neon.ushll",
"llvm.aarch64.neon.usmmla",
"llvm.aarch64.neon.usqadd",
"llvm.aarch64.neon.vcadd.rot270",
"llvm.aarch64.neon.vcadd.rot90",
"llvm.aarch64.neon.vcmla.rot0",
"llvm.aarch64.neon.vcmla.rot180",
"llvm.aarch64.neon.vcmla.rot270",
"llvm.aarch64.neon.vcmla.rot90",
"llvm.aarch64.neon.vcopy.lane",
"llvm.aarch64.neon.vcvtfp2fxs",
"llvm.aarch64.neon.vcvtfp2fxu",
"llvm.aarch64.neon.vcvtfp2hf",
"llvm.aarch64.neon.vcvtfxs2fp",
"llvm.aarch64.neon.vcvtfxu2fp",
"llvm.aarch64.neon.vcvthf2fp",
"llvm.aarch64.neon.vsli",
"llvm.aarch64.neon.vsri",
"llvm.aarch64.sdiv",
"llvm.aarch64.settag",
"llvm.aarch64.settag.zero",
"llvm.aarch64.sisd.fabd",
"llvm.aarch64.sisd.fcvtxn",
"llvm.aarch64.space",
"llvm.aarch64.stg",
"llvm.aarch64.stgp",
"llvm.aarch64.stlxp",
"llvm.aarch64.stlxr",
"llvm.aarch64.stxp",
"llvm.aarch64.stxr",
"llvm.aarch64.subp",
"llvm.aarch64.sve.abs",
"llvm.aarch64.sve.adclb",
"llvm.aarch64.sve.adclt",
"llvm.aarch64.sve.add",
"llvm.aarch64.sve.addhnb",
"llvm.aarch64.sve.addhnt",
"llvm.aarch64.sve.addp",
"llvm.aarch64.sve.adrb",
"llvm.aarch64.sve.adrd",
"llvm.aarch64.sve.adrh",
"llvm.aarch64.sve.adrw",
"llvm.aarch64.sve.aesd",
"llvm.aarch64.sve.aese",
"llvm.aarch64.sve.aesimc",
"llvm.aarch64.sve.aesmc",
"llvm.aarch64.sve.and",
"llvm.aarch64.sve.and.z",
"llvm.aarch64.sve.andv",
"llvm.aarch64.sve.asr",
"llvm.aarch64.sve.asr.wide",
"llvm.aarch64.sve.asrd",
"llvm.aarch64.sve.bcax",
"llvm.aarch64.sve.bdep.x",
"llvm.aarch64.sve.bext.x",
"llvm.aarch64.sve.bfdot",
"llvm.aarch64.sve.bfdot.lane",
"llvm.aarch64.sve.bfmlalb",
"llvm.aarch64.sve.bfmlalb.lane",
"llvm.aarch64.sve.bfmlalt",
"llvm.aarch64.sve.bfmlalt.lane",
"llvm.aarch64.sve.bfmmla",
"llvm.aarch64.sve.bgrp.x",
"llvm.aarch64.sve.bic",
"llvm.aarch64.sve.bic.z",
"llvm.aarch64.sve.brka",
"llvm.aarch64.sve.brka.z",
"llvm.aarch64.sve.brkb",
"llvm.aarch64.sve.brkb.z",
"llvm.aarch64.sve.brkn.z",
"llvm.aarch64.sve.brkpa.z",
"llvm.aarch64.sve.brkpb.z",
"llvm.aarch64.sve.bsl",
"llvm.aarch64.sve.bsl1n",
"llvm.aarch64.sve.bsl2n",
"llvm.aarch64.sve.cadd.x",
"llvm.aarch64.sve.cdot",
"llvm.aarch64.sve.cdot.lane",
"llvm.aarch64.sve.clasta",
"llvm.aarch64.sve.clasta.n",
"llvm.aarch64.sve.clastb",
"llvm.aarch64.sve.clastb.n",
"llvm.aarch64.sve.cls",
"llvm.aarch64.sve.clz",
"llvm.aarch64.sve.cmla.lane.x",
"llvm.aarch64.sve.cmla.x",
"llvm.aarch64.sve.cmpeq",
"llvm.aarch64.sve.cmpeq.wide",
"llvm.aarch64.sve.cmpge",
"llvm.aarch64.sve.cmpge.wide",
"llvm.aarch64.sve.cmpgt",
"llvm.aarch64.sve.cmpgt.wide",
"llvm.aarch64.sve.cmphi",
"llvm.aarch64.sve.cmphi.wide",
"llvm.aarch64.sve.cmphs",
"llvm.aarch64.sve.cmphs.wide",
"llvm.aarch64.sve.cmple.wide",
"llvm.aarch64.sve.cmplo.wide",
"llvm.aarch64.sve.cmpls.wide",
"llvm.aarch64.sve.cmplt.wide",
"llvm.aarch64.sve.cmpne",
"llvm.aarch64.sve.cmpne.wide",
"llvm.aarch64.sve.cnot",
"llvm.aarch64.sve.cnt",
"llvm.aarch64.sve.cntb",
"llvm.aarch64.sve.cntd",
"llvm.aarch64.sve.cnth",
"llvm.aarch64.sve.cntp",
"llvm.aarch64.sve.cntw",
"llvm.aarch64.sve.compact",
"llvm.aarch64.sve.convert.from.svbool",
"llvm.aarch64.sve.convert.to.svbool",
"llvm.aarch64.sve.dup",
"llvm.aarch64.sve.dup.x",
"llvm.aarch64.sve.dupq.lane",
"llvm.aarch64.sve.eor",
"llvm.aarch64.sve.eor.z",
"llvm.aarch64.sve.eor3",
"llvm.aarch64.sve.eorbt",
"llvm.aarch64.sve.eortb",
"llvm.aarch64.sve.eorv",
"llvm.aarch64.sve.ext",
"llvm.aarch64.sve.fabd",
"llvm.aarch64.sve.fabs",
"llvm.aarch64.sve.facge",
"llvm.aarch64.sve.facgt",
"llvm.aarch64.sve.fadd",
"llvm.aarch64.sve.fadda",
"llvm.aarch64.sve.faddp",
"llvm.aarch64.sve.faddv",
"llvm.aarch64.sve.fcadd",
"llvm.aarch64.sve.fcmla",
"llvm.aarch64.sve.fcmla.lane",
"llvm.aarch64.sve.fcmpeq",
"llvm.aarch64.sve.fcmpge",
"llvm.aarch64.sve.fcmpgt",
"llvm.aarch64.sve.fcmpne",
"llvm.aarch64.sve.fcmpuo",
"llvm.aarch64.sve.fcvt",
"llvm.aarch64.sve.fcvt.bf16f32",
"llvm.aarch64.sve.fcvt.f16f32",
"llvm.aarch64.sve.fcvt.f16f64",
"llvm.aarch64.sve.fcvt.f32f16",
"llvm.aarch64.sve.fcvt.f32f64",
"llvm.aarch64.sve.fcvt.f64f16",
"llvm.aarch64.sve.fcvt.f64f32",
"llvm.aarch64.sve.fcvtlt.f32f16",
"llvm.aarch64.sve.fcvtlt.f64f32",
"llvm.aarch64.sve.fcvtnt.bf16f32",
"llvm.aarch64.sve.fcvtnt.f16f32",
"llvm.aarch64.sve.fcvtnt.f32f64",
"llvm.aarch64.sve.fcvtx.f32f64",
"llvm.aarch64.sve.fcvtxnt.f32f64",
"llvm.aarch64.sve.fcvtzs",
"llvm.aarch64.sve.fcvtzs.i32f16",
"llvm.aarch64.sve.fcvtzs.i32f64",
"llvm.aarch64.sve.fcvtzs.i64f16",
"llvm.aarch64.sve.fcvtzs.i64f32",
"llvm.aarch64.sve.fcvtzu",
"llvm.aarch64.sve.fcvtzu.i32f16",
"llvm.aarch64.sve.fcvtzu.i32f64",
"llvm.aarch64.sve.fcvtzu.i64f16",
"llvm.aarch64.sve.fcvtzu.i64f32",
"llvm.aarch64.sve.fdiv",
"llvm.aarch64.sve.fdivr",
"llvm.aarch64.sve.fexpa.x",
"llvm.aarch64.sve.flogb",
"llvm.aarch64.sve.fmad",
"llvm.aarch64.sve.fmax",
"llvm.aarch64.sve.fmaxnm",
"llvm.aarch64.sve.fmaxnmp",
"llvm.aarch64.sve.fmaxnmv",
"llvm.aarch64.sve.fmaxp",
"llvm.aarch64.sve.fmaxv",
"llvm.aarch64.sve.fmin",
"llvm.aarch64.sve.fminnm",
"llvm.aarch64.sve.fminnmp",
"llvm.aarch64.sve.fminnmv",
"llvm.aarch64.sve.fminp",
"llvm.aarch64.sve.fminv",
"llvm.aarch64.sve.fmla",
"llvm.aarch64.sve.fmla.lane",
"llvm.aarch64.sve.fmlalb",
"llvm.aarch64.sve.fmlalb.lane",
"llvm.aarch64.sve.fmlalt",
"llvm.aarch64.sve.fmlalt.lane",
"llvm.aarch64.sve.fmls",
"llvm.aarch64.sve.fmls.lane",
"llvm.aarch64.sve.fmlslb",
"llvm.aarch64.sve.fmlslb.lane",
"llvm.aarch64.sve.fmlslt",
"llvm.aarch64.sve.fmlslt.lane",
"llvm.aarch64.sve.fmmla",
"llvm.aarch64.sve.fmsb",
"llvm.aarch64.sve.fmul",
"llvm.aarch64.sve.fmul.lane",
"llvm.aarch64.sve.fmulx",
"llvm.aarch64.sve.fneg",
"llvm.aarch64.sve.fnmad",
"llvm.aarch64.sve.fnmla",
"llvm.aarch64.sve.fnmls",
"llvm.aarch64.sve.fnmsb",
"llvm.aarch64.sve.frecpe.x",
"llvm.aarch64.sve.frecps.x",
"llvm.aarch64.sve.frecpx",
"llvm.aarch64.sve.frinta",
"llvm.aarch64.sve.frinti",
"llvm.aarch64.sve.frintm",
"llvm.aarch64.sve.frintn",
"llvm.aarch64.sve.frintp",
"llvm.aarch64.sve.frintx",
"llvm.aarch64.sve.frintz",
"llvm.aarch64.sve.frsqrte.x",
"llvm.aarch64.sve.frsqrts.x",
"llvm.aarch64.sve.fscale",
"llvm.aarch64.sve.fsqrt",
"llvm.aarch64.sve.fsub",
"llvm.aarch64.sve.fsubr",
"llvm.aarch64.sve.ftmad.x",
"llvm.aarch64.sve.ftsmul.x",
"llvm.aarch64.sve.ftssel.x",
"llvm.aarch64.sve.histcnt",
"llvm.aarch64.sve.histseg",
"llvm.aarch64.sve.index",
"llvm.aarch64.sve.insr",
"llvm.aarch64.sve.lasta",
"llvm.aarch64.sve.lastb",
"llvm.aarch64.sve.ld1",
"llvm.aarch64.sve.ld1.gather",
"llvm.aarch64.sve.ld1.gather.index",
"llvm.aarch64.sve.ld1.gather.scalar.offset",
"llvm.aarch64.sve.ld1.gather.sxtw",
"llvm.aarch64.sve.ld1.gather.sxtw.index",
"llvm.aarch64.sve.ld1.gather.uxtw",
"llvm.aarch64.sve.ld1.gather.uxtw.index",
"llvm.aarch64.sve.ld1ro",
"llvm.aarch64.sve.ld1rq",
"llvm.aarch64.sve.ld2",
"llvm.aarch64.sve.ld3",
"llvm.aarch64.sve.ld4",
"llvm.aarch64.sve.ldff1",
"llvm.aarch64.sve.ldff1.gather",
"llvm.aarch64.sve.ldff1.gather.index",
"llvm.aarch64.sve.ldff1.gather.scalar.offset",
"llvm.aarch64.sve.ldff1.gather.sxtw",
"llvm.aarch64.sve.ldff1.gather.sxtw.index",
"llvm.aarch64.sve.ldff1.gather.uxtw",
"llvm.aarch64.sve.ldff1.gather.uxtw.index",
"llvm.aarch64.sve.ldnf1",
"llvm.aarch64.sve.ldnt1",
"llvm.aarch64.sve.ldnt1.gather",
"llvm.aarch64.sve.ldnt1.gather.index",
"llvm.aarch64.sve.ldnt1.gather.scalar.offset",
"llvm.aarch64.sve.ldnt1.gather.uxtw",
"llvm.aarch64.sve.lsl",
"llvm.aarch64.sve.lsl.wide",
"llvm.aarch64.sve.lsr",
"llvm.aarch64.sve.lsr.wide",
"llvm.aarch64.sve.mad",
"llvm.aarch64.sve.match",
"llvm.aarch64.sve.mla",
"llvm.aarch64.sve.mla.lane",
"llvm.aarch64.sve.mls",
"llvm.aarch64.sve.mls.lane",
"llvm.aarch64.sve.msb",
"llvm.aarch64.sve.mul",
"llvm.aarch64.sve.mul.lane",
"llvm.aarch64.sve.nand.z",
"llvm.aarch64.sve.nbsl",
"llvm.aarch64.sve.neg",
"llvm.aarch64.sve.nmatch",
"llvm.aarch64.sve.nor.z",
"llvm.aarch64.sve.not",
"llvm.aarch64.sve.orn.z",
"llvm.aarch64.sve.orr",
"llvm.aarch64.sve.orr.z",
"llvm.aarch64.sve.orv",
"llvm.aarch64.sve.pfirst",
"llvm.aarch64.sve.pmul",
"llvm.aarch64.sve.pmullb.pair",
"llvm.aarch64.sve.pmullt.pair",
"llvm.aarch64.sve.pnext",
"llvm.aarch64.sve.prf",
"llvm.aarch64.sve.prfb.gather.index",
"llvm.aarch64.sve.prfb.gather.scalar.offset",
"llvm.aarch64.sve.prfb.gather.sxtw.index",
"llvm.aarch64.sve.prfb.gather.uxtw.index",
"llvm.aarch64.sve.prfd.gather.index",
"llvm.aarch64.sve.prfd.gather.scalar.offset",
"llvm.aarch64.sve.prfd.gather.sxtw.index",
"llvm.aarch64.sve.prfd.gather.uxtw.index",
"llvm.aarch64.sve.prfh.gather.index",
"llvm.aarch64.sve.prfh.gather.scalar.offset",
"llvm.aarch64.sve.prfh.gather.sxtw.index",
"llvm.aarch64.sve.prfh.gather.uxtw.index",
"llvm.aarch64.sve.prfw.gather.index",
"llvm.aarch64.sve.prfw.gather.scalar.offset",
"llvm.aarch64.sve.prfw.gather.sxtw.index",
"llvm.aarch64.sve.prfw.gather.uxtw.index",
"llvm.aarch64.sve.ptest.any",
"llvm.aarch64.sve.ptest.first",
"llvm.aarch64.sve.ptest.last",
"llvm.aarch64.sve.ptrue",
"llvm.aarch64.sve.punpkhi",
"llvm.aarch64.sve.punpklo",
"llvm.aarch64.sve.raddhnb",
"llvm.aarch64.sve.raddhnt",
"llvm.aarch64.sve.rax1",
"llvm.aarch64.sve.rbit",
"llvm.aarch64.sve.rdffr",
"llvm.aarch64.sve.rdffr.z",
"llvm.aarch64.sve.rev",
"llvm.aarch64.sve.revb",
"llvm.aarch64.sve.revh",
"llvm.aarch64.sve.revw",
"llvm.aarch64.sve.rshrnb",
"llvm.aarch64.sve.rshrnt",
"llvm.aarch64.sve.rsubhnb",
"llvm.aarch64.sve.rsubhnt",
"llvm.aarch64.sve.saba",
"llvm.aarch64.sve.sabalb",
"llvm.aarch64.sve.sabalt",
"llvm.aarch64.sve.sabd",
"llvm.aarch64.sve.sabdlb",
"llvm.aarch64.sve.sabdlt",
"llvm.aarch64.sve.sadalp",
"llvm.aarch64.sve.saddlb",
"llvm.aarch64.sve.saddlbt",
"llvm.aarch64.sve.saddlt",
"llvm.aarch64.sve.saddv",
"llvm.aarch64.sve.saddwb",
"llvm.aarch64.sve.saddwt",
"llvm.aarch64.sve.sbclb",
"llvm.aarch64.sve.sbclt",
"llvm.aarch64.sve.scvtf",
"llvm.aarch64.sve.scvtf.f16i32",
"llvm.aarch64.sve.scvtf.f16i64",
"llvm.aarch64.sve.scvtf.f32i64",
"llvm.aarch64.sve.scvtf.f64i32",
"llvm.aarch64.sve.sdiv",
"llvm.aarch64.sve.sdivr",
"llvm.aarch64.sve.sdot",
"llvm.aarch64.sve.sdot.lane",
"llvm.aarch64.sve.sel",
"llvm.aarch64.sve.setffr",
"llvm.aarch64.sve.shadd",
"llvm.aarch64.sve.shrnb",
"llvm.aarch64.sve.shrnt",
"llvm.aarch64.sve.shsub",
"llvm.aarch64.sve.shsubr",
"llvm.aarch64.sve.sli",
"llvm.aarch64.sve.sm4e",
"llvm.aarch64.sve.sm4ekey",
"llvm.aarch64.sve.smax",
"llvm.aarch64.sve.smaxp",
"llvm.aarch64.sve.smaxv",
"llvm.aarch64.sve.smin",
"llvm.aarch64.sve.sminp",
"llvm.aarch64.sve.sminv",
"llvm.aarch64.sve.smlalb",
"llvm.aarch64.sve.smlalb.lane",
"llvm.aarch64.sve.smlalt",
"llvm.aarch64.sve.smlalt.lane",
"llvm.aarch64.sve.smlslb",
"llvm.aarch64.sve.smlslb.lane",
"llvm.aarch64.sve.smlslt",
"llvm.aarch64.sve.smlslt.lane",
"llvm.aarch64.sve.smmla",
"llvm.aarch64.sve.smulh",
"llvm.aarch64.sve.smullb",
"llvm.aarch64.sve.smullb.lane",
"llvm.aarch64.sve.smullt",
"llvm.aarch64.sve.smullt.lane",
"llvm.aarch64.sve.splice",
"llvm.aarch64.sve.sqabs",
"llvm.aarch64.sve.sqadd",
"llvm.aarch64.sve.sqadd.x",
"llvm.aarch64.sve.sqcadd.x",
"llvm.aarch64.sve.sqdecb.n32",
"llvm.aarch64.sve.sqdecb.n64",
"llvm.aarch64.sve.sqdecd",
"llvm.aarch64.sve.sqdecd.n32",
"llvm.aarch64.sve.sqdecd.n64",
"llvm.aarch64.sve.sqdech",
"llvm.aarch64.sve.sqdech.n32",
"llvm.aarch64.sve.sqdech.n64",
"llvm.aarch64.sve.sqdecp",
"llvm.aarch64.sve.sqdecp.n32",
"llvm.aarch64.sve.sqdecp.n64",
"llvm.aarch64.sve.sqdecw",
"llvm.aarch64.sve.sqdecw.n32",
"llvm.aarch64.sve.sqdecw.n64",
"llvm.aarch64.sve.sqdmlalb",
"llvm.aarch64.sve.sqdmlalb.lane",
"llvm.aarch64.sve.sqdmlalbt",
"llvm.aarch64.sve.sqdmlalt",
"llvm.aarch64.sve.sqdmlalt.lane",
"llvm.aarch64.sve.sqdmlslb",
"llvm.aarch64.sve.sqdmlslb.lane",
"llvm.aarch64.sve.sqdmlslbt",
"llvm.aarch64.sve.sqdmlslt",
"llvm.aarch64.sve.sqdmlslt.lane",
"llvm.aarch64.sve.sqdmulh",
"llvm.aarch64.sve.sqdmulh.lane",
"llvm.aarch64.sve.sqdmullb",
"llvm.aarch64.sve.sqdmullb.lane",
"llvm.aarch64.sve.sqdmullt",
"llvm.aarch64.sve.sqdmullt.lane",
"llvm.aarch64.sve.sqincb.n32",
"llvm.aarch64.sve.sqincb.n64",
"llvm.aarch64.sve.sqincd",
"llvm.aarch64.sve.sqincd.n32",
"llvm.aarch64.sve.sqincd.n64",
"llvm.aarch64.sve.sqinch",
"llvm.aarch64.sve.sqinch.n32",
"llvm.aarch64.sve.sqinch.n64",
"llvm.aarch64.sve.sqincp",
"llvm.aarch64.sve.sqincp.n32",
"llvm.aarch64.sve.sqincp.n64",
"llvm.aarch64.sve.sqincw",
"llvm.aarch64.sve.sqincw.n32",
"llvm.aarch64.sve.sqincw.n64",
"llvm.aarch64.sve.sqneg",
"llvm.aarch64.sve.sqrdcmlah.lane.x",
"llvm.aarch64.sve.sqrdcmlah.x",
"llvm.aarch64.sve.sqrdmlah",
"llvm.aarch64.sve.sqrdmlah.lane",
"llvm.aarch64.sve.sqrdmlsh",
"llvm.aarch64.sve.sqrdmlsh.lane",
"llvm.aarch64.sve.sqrdmulh",
"llvm.aarch64.sve.sqrdmulh.lane",
"llvm.aarch64.sve.sqrshl",
"llvm.aarch64.sve.sqrshrnb",
"llvm.aarch64.sve.sqrshrnt",
"llvm.aarch64.sve.sqrshrunb",
"llvm.aarch64.sve.sqrshrunt",
"llvm.aarch64.sve.sqshl",
"llvm.aarch64.sve.sqshlu",
"llvm.aarch64.sve.sqshrnb",
"llvm.aarch64.sve.sqshrnt",
"llvm.aarch64.sve.sqshrunb",
"llvm.aarch64.sve.sqshrunt",
"llvm.aarch64.sve.sqsub",
"llvm.aarch64.sve.sqsub.x",
"llvm.aarch64.sve.sqsubr",
"llvm.aarch64.sve.sqxtnb",
"llvm.aarch64.sve.sqxtnt",
"llvm.aarch64.sve.sqxtunb",
"llvm.aarch64.sve.sqxtunt",
"llvm.aarch64.sve.srhadd",
"llvm.aarch64.sve.sri",
"llvm.aarch64.sve.srshl",
"llvm.aarch64.sve.srshr",
"llvm.aarch64.sve.srsra",
"llvm.aarch64.sve.sshllb",
"llvm.aarch64.sve.sshllt",
"llvm.aarch64.sve.ssra",
"llvm.aarch64.sve.ssublb",
"llvm.aarch64.sve.ssublbt",
"llvm.aarch64.sve.ssublt",
"llvm.aarch64.sve.ssubltb",
"llvm.aarch64.sve.ssubwb",
"llvm.aarch64.sve.ssubwt",
"llvm.aarch64.sve.st1",
"llvm.aarch64.sve.st1.scatter",
"llvm.aarch64.sve.st1.scatter.index",
"llvm.aarch64.sve.st1.scatter.scalar.offset",
"llvm.aarch64.sve.st1.scatter.sxtw",
"llvm.aarch64.sve.st1.scatter.sxtw.index",
"llvm.aarch64.sve.st1.scatter.uxtw",
"llvm.aarch64.sve.st1.scatter.uxtw.index",
"llvm.aarch64.sve.st2",
"llvm.aarch64.sve.st3",
"llvm.aarch64.sve.st4",
"llvm.aarch64.sve.stnt1",
"llvm.aarch64.sve.stnt1.scatter",
"llvm.aarch64.sve.stnt1.scatter.index",
"llvm.aarch64.sve.stnt1.scatter.scalar.offset",
"llvm.aarch64.sve.stnt1.scatter.uxtw",
"llvm.aarch64.sve.sub",
"llvm.aarch64.sve.subhnb",
"llvm.aarch64.sve.subhnt",
"llvm.aarch64.sve.subr",
"llvm.aarch64.sve.sudot.lane",
"llvm.aarch64.sve.sunpkhi",
"llvm.aarch64.sve.sunpklo",
"llvm.aarch64.sve.suqadd",
"llvm.aarch64.sve.sxtb",
"llvm.aarch64.sve.sxth",
"llvm.aarch64.sve.sxtw",
"llvm.aarch64.sve.tbl",
"llvm.aarch64.sve.tbl2",
"llvm.aarch64.sve.tbx",
"llvm.aarch64.sve.trn1",
"llvm.aarch64.sve.trn1q",
"llvm.aarch64.sve.trn2",
"llvm.aarch64.sve.trn2q",
"llvm.aarch64.sve.tuple.create2",
"llvm.aarch64.sve.tuple.create3",
"llvm.aarch64.sve.tuple.create4",
"llvm.aarch64.sve.tuple.get",
"llvm.aarch64.sve.tuple.set",
"llvm.aarch64.sve.uaba",
"llvm.aarch64.sve.uabalb",
"llvm.aarch64.sve.uabalt",
"llvm.aarch64.sve.uabd",
"llvm.aarch64.sve.uabdlb",
"llvm.aarch64.sve.uabdlt",
"llvm.aarch64.sve.uadalp",
"llvm.aarch64.sve.uaddlb",
"llvm.aarch64.sve.uaddlt",
"llvm.aarch64.sve.uaddv",
"llvm.aarch64.sve.uaddwb",
"llvm.aarch64.sve.uaddwt",
"llvm.aarch64.sve.ucvtf",
"llvm.aarch64.sve.ucvtf.f16i32",
"llvm.aarch64.sve.ucvtf.f16i64",
"llvm.aarch64.sve.ucvtf.f32i64",
"llvm.aarch64.sve.ucvtf.f64i32",
"llvm.aarch64.sve.udiv",
"llvm.aarch64.sve.udivr",
"llvm.aarch64.sve.udot",
"llvm.aarch64.sve.udot.lane",
"llvm.aarch64.sve.uhadd",
"llvm.aarch64.sve.uhsub",
"llvm.aarch64.sve.uhsubr",
"llvm.aarch64.sve.umax",
"llvm.aarch64.sve.umaxp",
"llvm.aarch64.sve.umaxv",
"llvm.aarch64.sve.umin",
"llvm.aarch64.sve.uminp",
"llvm.aarch64.sve.uminv",
"llvm.aarch64.sve.umlalb",
"llvm.aarch64.sve.umlalb.lane",
"llvm.aarch64.sve.umlalt",
"llvm.aarch64.sve.umlalt.lane",
"llvm.aarch64.sve.umlslb",
"llvm.aarch64.sve.umlslb.lane",
"llvm.aarch64.sve.umlslt",
"llvm.aarch64.sve.umlslt.lane",
"llvm.aarch64.sve.ummla",
"llvm.aarch64.sve.umulh",
"llvm.aarch64.sve.umullb",
"llvm.aarch64.sve.umullb.lane",
"llvm.aarch64.sve.umullt",
"llvm.aarch64.sve.umullt.lane",
"llvm.aarch64.sve.uqadd",
"llvm.aarch64.sve.uqadd.x",
"llvm.aarch64.sve.uqdecb.n32",
"llvm.aarch64.sve.uqdecb.n64",
"llvm.aarch64.sve.uqdecd",
"llvm.aarch64.sve.uqdecd.n32",
"llvm.aarch64.sve.uqdecd.n64",
"llvm.aarch64.sve.uqdech",
"llvm.aarch64.sve.uqdech.n32",
"llvm.aarch64.sve.uqdech.n64",
"llvm.aarch64.sve.uqdecp",
"llvm.aarch64.sve.uqdecp.n32",
"llvm.aarch64.sve.uqdecp.n64",
"llvm.aarch64.sve.uqdecw",
"llvm.aarch64.sve.uqdecw.n32",
"llvm.aarch64.sve.uqdecw.n64",
"llvm.aarch64.sve.uqincb.n32",
"llvm.aarch64.sve.uqincb.n64",
"llvm.aarch64.sve.uqincd",
"llvm.aarch64.sve.uqincd.n32",
"llvm.aarch64.sve.uqincd.n64",
"llvm.aarch64.sve.uqinch",
"llvm.aarch64.sve.uqinch.n32",
"llvm.aarch64.sve.uqinch.n64",
"llvm.aarch64.sve.uqincp",
"llvm.aarch64.sve.uqincp.n32",
"llvm.aarch64.sve.uqincp.n64",
"llvm.aarch64.sve.uqincw",
"llvm.aarch64.sve.uqincw.n32",
"llvm.aarch64.sve.uqincw.n64",
"llvm.aarch64.sve.uqrshl",
"llvm.aarch64.sve.uqrshrnb",
"llvm.aarch64.sve.uqrshrnt",
"llvm.aarch64.sve.uqshl",
"llvm.aarch64.sve.uqshrnb",
"llvm.aarch64.sve.uqshrnt",
"llvm.aarch64.sve.uqsub",
"llvm.aarch64.sve.uqsub.x",
"llvm.aarch64.sve.uqsubr",
"llvm.aarch64.sve.uqxtnb",
"llvm.aarch64.sve.uqxtnt",
"llvm.aarch64.sve.urecpe",
"llvm.aarch64.sve.urhadd",
"llvm.aarch64.sve.urshl",
"llvm.aarch64.sve.urshr",
"llvm.aarch64.sve.ursqrte",
"llvm.aarch64.sve.ursra",
"llvm.aarch64.sve.usdot",
"llvm.aarch64.sve.usdot.lane",
"llvm.aarch64.sve.ushllb",
"llvm.aarch64.sve.ushllt",
"llvm.aarch64.sve.usmmla",
"llvm.aarch64.sve.usqadd",
"llvm.aarch64.sve.usra",
"llvm.aarch64.sve.usublb",
"llvm.aarch64.sve.usublt",
"llvm.aarch64.sve.usubwb",
"llvm.aarch64.sve.usubwt",
"llvm.aarch64.sve.uunpkhi",
"llvm.aarch64.sve.uunpklo",
"llvm.aarch64.sve.uxtb",
"llvm.aarch64.sve.uxth",
"llvm.aarch64.sve.uxtw",
"llvm.aarch64.sve.uzp1",
"llvm.aarch64.sve.uzp1q",
"llvm.aarch64.sve.uzp2",
"llvm.aarch64.sve.uzp2q",
"llvm.aarch64.sve.whilege",
"llvm.aarch64.sve.whilegt",
"llvm.aarch64.sve.whilehi",
"llvm.aarch64.sve.whilehs",
"llvm.aarch64.sve.whilele",
"llvm.aarch64.sve.whilelo",
"llvm.aarch64.sve.whilels",
"llvm.aarch64.sve.whilelt",
"llvm.aarch64.sve.whilerw.b",
"llvm.aarch64.sve.whilerw.d",
"llvm.aarch64.sve.whilerw.h",
"llvm.aarch64.sve.whilerw.s",
"llvm.aarch64.sve.whilewr.b",
"llvm.aarch64.sve.whilewr.d",
"llvm.aarch64.sve.whilewr.h",
"llvm.aarch64.sve.whilewr.s",
"llvm.aarch64.sve.wrffr",
"llvm.aarch64.sve.xar",
"llvm.aarch64.sve.zip1",
"llvm.aarch64.sve.zip1q",
"llvm.aarch64.sve.zip2",
"llvm.aarch64.sve.zip2q",
"llvm.aarch64.tagp",
"llvm.aarch64.tcancel",
"llvm.aarch64.tcommit",
"llvm.aarch64.tstart",
"llvm.aarch64.ttest",
"llvm.aarch64.udiv",
"llvm.amdgcn.alignbit",
"llvm.amdgcn.alignbyte",
"llvm.amdgcn.atomic.dec",
"llvm.amdgcn.atomic.inc",
"llvm.amdgcn.ballot",
"llvm.amdgcn.buffer.atomic.add",
"llvm.amdgcn.buffer.atomic.and",
"llvm.amdgcn.buffer.atomic.cmpswap",
"llvm.amdgcn.buffer.atomic.csub",
"llvm.amdgcn.buffer.atomic.fadd",
"llvm.amdgcn.buffer.atomic.or",
"llvm.amdgcn.buffer.atomic.smax",
"llvm.amdgcn.buffer.atomic.smin",
"llvm.amdgcn.buffer.atomic.sub",
"llvm.amdgcn.buffer.atomic.swap",
"llvm.amdgcn.buffer.atomic.umax",
"llvm.amdgcn.buffer.atomic.umin",
"llvm.amdgcn.buffer.atomic.xor",
"llvm.amdgcn.buffer.load",
"llvm.amdgcn.buffer.load.format",
"llvm.amdgcn.buffer.store",
"llvm.amdgcn.buffer.store.format",
"llvm.amdgcn.buffer.wbinvl1",
"llvm.amdgcn.buffer.wbinvl1.sc",
"llvm.amdgcn.buffer.wbinvl1.vol",
"llvm.amdgcn.class",
"llvm.amdgcn.cos",
"llvm.amdgcn.cubeid",
"llvm.amdgcn.cubema",
"llvm.amdgcn.cubesc",
"llvm.amdgcn.cubetc",
"llvm.amdgcn.cvt.pk.i16",
"llvm.amdgcn.cvt.pk.u16",
"llvm.amdgcn.cvt.pk.u8.f32",
"llvm.amdgcn.cvt.pknorm.i16",
"llvm.amdgcn.cvt.pknorm.u16",
"llvm.amdgcn.cvt.pkrtz",
"llvm.amdgcn.dispatch.id",
"llvm.amdgcn.dispatch.ptr",
"llvm.amdgcn.div.fixup",
"llvm.amdgcn.div.fmas",
"llvm.amdgcn.div.scale",
"llvm.amdgcn.ds.append",
"llvm.amdgcn.ds.bpermute",
"llvm.amdgcn.ds.consume",
"llvm.amdgcn.ds.fadd",
"llvm.amdgcn.ds.fmax",
"llvm.amdgcn.ds.fmin",
"llvm.amdgcn.ds.gws.barrier",
"llvm.amdgcn.ds.gws.init",
"llvm.amdgcn.ds.gws.sema.br",
"llvm.amdgcn.ds.gws.sema.p",
"llvm.amdgcn.ds.gws.sema.release.all",
"llvm.amdgcn.ds.gws.sema.v",
"llvm.amdgcn.ds.ordered.add",
"llvm.amdgcn.ds.ordered.swap",
"llvm.amdgcn.ds.permute",
"llvm.amdgcn.ds.swizzle",
"llvm.amdgcn.else",
"llvm.amdgcn.end.cf",
"llvm.amdgcn.endpgm",
"llvm.amdgcn.exp",
"llvm.amdgcn.exp.compr",
"llvm.amdgcn.fcmp",
"llvm.amdgcn.fdiv.fast",
"llvm.amdgcn.fdot2",
"llvm.amdgcn.fma.legacy",
"llvm.amdgcn.fmad.ftz",
"llvm.amdgcn.fmed3",
"llvm.amdgcn.fmul.legacy",
"llvm.amdgcn.fract",
"llvm.amdgcn.frexp.exp",
"llvm.amdgcn.frexp.mant",
"llvm.amdgcn.global.atomic.csub",
"llvm.amdgcn.global.atomic.fadd",
"llvm.amdgcn.groupstaticsize",
"llvm.amdgcn.icmp",
"llvm.amdgcn.if",
"llvm.amdgcn.if.break",
"llvm.amdgcn.image.atomic.add.1d",
"llvm.amdgcn.image.atomic.add.1darray",
"llvm.amdgcn.image.atomic.add.2d",
"llvm.amdgcn.image.atomic.add.2darray",
"llvm.amdgcn.image.atomic.add.2darraymsaa",
"llvm.amdgcn.image.atomic.add.2dmsaa",
"llvm.amdgcn.image.atomic.add.3d",
"llvm.amdgcn.image.atomic.add.cube",
"llvm.amdgcn.image.atomic.and.1d",
"llvm.amdgcn.image.atomic.and.1darray",
"llvm.amdgcn.image.atomic.and.2d",
"llvm.amdgcn.image.atomic.and.2darray",
"llvm.amdgcn.image.atomic.and.2darraymsaa",
"llvm.amdgcn.image.atomic.and.2dmsaa",
"llvm.amdgcn.image.atomic.and.3d",
"llvm.amdgcn.image.atomic.and.cube",
"llvm.amdgcn.image.atomic.cmpswap.1d",
"llvm.amdgcn.image.atomic.cmpswap.1darray",
"llvm.amdgcn.image.atomic.cmpswap.2d",
"llvm.amdgcn.image.atomic.cmpswap.2darray",
"llvm.amdgcn.image.atomic.cmpswap.2darraymsaa",
"llvm.amdgcn.image.atomic.cmpswap.2dmsaa",
"llvm.amdgcn.image.atomic.cmpswap.3d",
"llvm.amdgcn.image.atomic.cmpswap.cube",
"llvm.amdgcn.image.atomic.dec.1d",
"llvm.amdgcn.image.atomic.dec.1darray",
"llvm.amdgcn.image.atomic.dec.2d",
"llvm.amdgcn.image.atomic.dec.2darray",
"llvm.amdgcn.image.atomic.dec.2darraymsaa",
"llvm.amdgcn.image.atomic.dec.2dmsaa",
"llvm.amdgcn.image.atomic.dec.3d",
"llvm.amdgcn.image.atomic.dec.cube",
"llvm.amdgcn.image.atomic.inc.1d",
"llvm.amdgcn.image.atomic.inc.1darray",
"llvm.amdgcn.image.atomic.inc.2d",
"llvm.amdgcn.image.atomic.inc.2darray",
"llvm.amdgcn.image.atomic.inc.2darraymsaa",
"llvm.amdgcn.image.atomic.inc.2dmsaa",
"llvm.amdgcn.image.atomic.inc.3d",
"llvm.amdgcn.image.atomic.inc.cube",
"llvm.amdgcn.image.atomic.or.1d",
"llvm.amdgcn.image.atomic.or.1darray",
"llvm.amdgcn.image.atomic.or.2d",
"llvm.amdgcn.image.atomic.or.2darray",
"llvm.amdgcn.image.atomic.or.2darraymsaa",
"llvm.amdgcn.image.atomic.or.2dmsaa",
"llvm.amdgcn.image.atomic.or.3d",
"llvm.amdgcn.image.atomic.or.cube",
"llvm.amdgcn.image.atomic.smax.1d",
"llvm.amdgcn.image.atomic.smax.1darray",
"llvm.amdgcn.image.atomic.smax.2d",
"llvm.amdgcn.image.atomic.smax.2darray",
"llvm.amdgcn.image.atomic.smax.2darraymsaa",
"llvm.amdgcn.image.atomic.smax.2dmsaa",
"llvm.amdgcn.image.atomic.smax.3d",
"llvm.amdgcn.image.atomic.smax.cube",
"llvm.amdgcn.image.atomic.smin.1d",
"llvm.amdgcn.image.atomic.smin.1darray",
"llvm.amdgcn.image.atomic.smin.2d",
"llvm.amdgcn.image.atomic.smin.2darray",
"llvm.amdgcn.image.atomic.smin.2darraymsaa",
"llvm.amdgcn.image.atomic.smin.2dmsaa",
"llvm.amdgcn.image.atomic.smin.3d",
"llvm.amdgcn.image.atomic.smin.cube",
"llvm.amdgcn.image.atomic.sub.1d",
"llvm.amdgcn.image.atomic.sub.1darray",
"llvm.amdgcn.image.atomic.sub.2d",
"llvm.amdgcn.image.atomic.sub.2darray",
"llvm.amdgcn.image.atomic.sub.2darraymsaa",
"llvm.amdgcn.image.atomic.sub.2dmsaa",
"llvm.amdgcn.image.atomic.sub.3d",
"llvm.amdgcn.image.atomic.sub.cube",
"llvm.amdgcn.image.atomic.swap.1d",
"llvm.amdgcn.image.atomic.swap.1darray",
"llvm.amdgcn.image.atomic.swap.2d",
"llvm.amdgcn.image.atomic.swap.2darray",
"llvm.amdgcn.image.atomic.swap.2darraymsaa",
"llvm.amdgcn.image.atomic.swap.2dmsaa",
"llvm.amdgcn.image.atomic.swap.3d",
"llvm.amdgcn.image.atomic.swap.cube",
"llvm.amdgcn.image.atomic.umax.1d",
"llvm.amdgcn.image.atomic.umax.1darray",
"llvm.amdgcn.image.atomic.umax.2d",
"llvm.amdgcn.image.atomic.umax.2darray",
"llvm.amdgcn.image.atomic.umax.2darraymsaa",
"llvm.amdgcn.image.atomic.umax.2dmsaa",
"llvm.amdgcn.image.atomic.umax.3d",
"llvm.amdgcn.image.atomic.umax.cube",
"llvm.amdgcn.image.atomic.umin.1d",
"llvm.amdgcn.image.atomic.umin.1darray",
"llvm.amdgcn.image.atomic.umin.2d",
"llvm.amdgcn.image.atomic.umin.2darray",
"llvm.amdgcn.image.atomic.umin.2darraymsaa",
"llvm.amdgcn.image.atomic.umin.2dmsaa",
"llvm.amdgcn.image.atomic.umin.3d",
"llvm.amdgcn.image.atomic.umin.cube",
"llvm.amdgcn.image.atomic.xor.1d",
"llvm.amdgcn.image.atomic.xor.1darray",
"llvm.amdgcn.image.atomic.xor.2d",
"llvm.amdgcn.image.atomic.xor.2darray",
"llvm.amdgcn.image.atomic.xor.2darraymsaa",
"llvm.amdgcn.image.atomic.xor.2dmsaa",
"llvm.amdgcn.image.atomic.xor.3d",
"llvm.amdgcn.image.atomic.xor.cube",
"llvm.amdgcn.image.bvh.intersect.ray",
"llvm.amdgcn.image.gather4.2d",
"llvm.amdgcn.image.gather4.2darray",
"llvm.amdgcn.image.gather4.b.2d",
"llvm.amdgcn.image.gather4.b.2darray",
"llvm.amdgcn.image.gather4.b.cl.2d",
"llvm.amdgcn.image.gather4.b.cl.2darray",
"llvm.amdgcn.image.gather4.b.cl.cube",
"llvm.amdgcn.image.gather4.b.cl.o.2d",
"llvm.amdgcn.image.gather4.b.cl.o.2darray",
"llvm.amdgcn.image.gather4.b.cl.o.cube",
"llvm.amdgcn.image.gather4.b.cube",
"llvm.amdgcn.image.gather4.b.o.2d",
"llvm.amdgcn.image.gather4.b.o.2darray",
"llvm.amdgcn.image.gather4.b.o.cube",
"llvm.amdgcn.image.gather4.c.2d",
"llvm.amdgcn.image.gather4.c.2darray",
"llvm.amdgcn.image.gather4.c.b.2d",
"llvm.amdgcn.image.gather4.c.b.2darray",
"llvm.amdgcn.image.gather4.c.b.cl.2d",
"llvm.amdgcn.image.gather4.c.b.cl.2darray",
"llvm.amdgcn.image.gather4.c.b.cl.cube",
"llvm.amdgcn.image.gather4.c.b.cl.o.2d",
"llvm.amdgcn.image.gather4.c.b.cl.o.2darray",
"llvm.amdgcn.image.gather4.c.b.cl.o.cube",
"llvm.amdgcn.image.gather4.c.b.cube",
"llvm.amdgcn.image.gather4.c.b.o.2d",
"llvm.amdgcn.image.gather4.c.b.o.2darray",
"llvm.amdgcn.image.gather4.c.b.o.cube",
"llvm.amdgcn.image.gather4.c.cl.2d",
"llvm.amdgcn.image.gather4.c.cl.2darray",
"llvm.amdgcn.image.gather4.c.cl.cube",
"llvm.amdgcn.image.gather4.c.cl.o.2d",
"llvm.amdgcn.image.gather4.c.cl.o.2darray",
"llvm.amdgcn.image.gather4.c.cl.o.cube",
"llvm.amdgcn.image.gather4.c.cube",
"llvm.amdgcn.image.gather4.c.l.2d",
"llvm.amdgcn.image.gather4.c.l.2darray",
"llvm.amdgcn.image.gather4.c.l.cube",
"llvm.amdgcn.image.gather4.c.l.o.2d",
"llvm.amdgcn.image.gather4.c.l.o.2darray",
"llvm.amdgcn.image.gather4.c.l.o.cube",
"llvm.amdgcn.image.gather4.c.lz.2d",
"llvm.amdgcn.image.gather4.c.lz.2darray",
"llvm.amdgcn.image.gather4.c.lz.cube",
"llvm.amdgcn.image.gather4.c.lz.o.2d",
"llvm.amdgcn.image.gather4.c.lz.o.2darray",
"llvm.amdgcn.image.gather4.c.lz.o.cube",
"llvm.amdgcn.image.gather4.c.o.2d",
"llvm.amdgcn.image.gather4.c.o.2darray",
"llvm.amdgcn.image.gather4.c.o.cube",
"llvm.amdgcn.image.gather4.cl.2d",
"llvm.amdgcn.image.gather4.cl.2darray",
"llvm.amdgcn.image.gather4.cl.cube",
"llvm.amdgcn.image.gather4.cl.o.2d",
"llvm.amdgcn.image.gather4.cl.o.2darray",
"llvm.amdgcn.image.gather4.cl.o.cube",
"llvm.amdgcn.image.gather4.cube",
"llvm.amdgcn.image.gather4.l.2d",
"llvm.amdgcn.image.gather4.l.2darray",
"llvm.amdgcn.image.gather4.l.cube",
"llvm.amdgcn.image.gather4.l.o.2d",
"llvm.amdgcn.image.gather4.l.o.2darray",
"llvm.amdgcn.image.gather4.l.o.cube",
"llvm.amdgcn.image.gather4.lz.2d",
"llvm.amdgcn.image.gather4.lz.2darray",
"llvm.amdgcn.image.gather4.lz.cube",
"llvm.amdgcn.image.gather4.lz.o.2d",
"llvm.amdgcn.image.gather4.lz.o.2darray",
"llvm.amdgcn.image.gather4.lz.o.cube",
"llvm.amdgcn.image.gather4.o.2d",
"llvm.amdgcn.image.gather4.o.2darray",
"llvm.amdgcn.image.gather4.o.cube",
"llvm.amdgcn.image.getlod.1d",
"llvm.amdgcn.image.getlod.1darray",
"llvm.amdgcn.image.getlod.2d",
"llvm.amdgcn.image.getlod.2darray",
"llvm.amdgcn.image.getlod.3d",
"llvm.amdgcn.image.getlod.cube",
"llvm.amdgcn.image.getresinfo.1d",
"llvm.amdgcn.image.getresinfo.1darray",
"llvm.amdgcn.image.getresinfo.2d",
"llvm.amdgcn.image.getresinfo.2darray",
"llvm.amdgcn.image.getresinfo.2darraymsaa",
"llvm.amdgcn.image.getresinfo.2dmsaa",
"llvm.amdgcn.image.getresinfo.3d",
"llvm.amdgcn.image.getresinfo.cube",
"llvm.amdgcn.image.load.1d",
"llvm.amdgcn.image.load.1darray",
"llvm.amdgcn.image.load.2d",
"llvm.amdgcn.image.load.2darray",
"llvm.amdgcn.image.load.2darraymsaa",
"llvm.amdgcn.image.load.2dmsaa",
"llvm.amdgcn.image.load.3d",
"llvm.amdgcn.image.load.cube",
"llvm.amdgcn.image.load.mip.1d",
"llvm.amdgcn.image.load.mip.1darray",
"llvm.amdgcn.image.load.mip.2d",
"llvm.amdgcn.image.load.mip.2darray",
"llvm.amdgcn.image.load.mip.3d",
"llvm.amdgcn.image.load.mip.cube",
"llvm.amdgcn.image.msaa.load.1d",
"llvm.amdgcn.image.msaa.load.1darray",
"llvm.amdgcn.image.msaa.load.2d",
"llvm.amdgcn.image.msaa.load.2darray",
"llvm.amdgcn.image.msaa.load.2darraymsaa",
"llvm.amdgcn.image.msaa.load.2dmsaa",
"llvm.amdgcn.image.msaa.load.3d",
"llvm.amdgcn.image.msaa.load.cube",
"llvm.amdgcn.image.sample.1d",
"llvm.amdgcn.image.sample.1darray",
"llvm.amdgcn.image.sample.2d",
"llvm.amdgcn.image.sample.2darray",
"llvm.amdgcn.image.sample.3d",
"llvm.amdgcn.image.sample.b.1d",
"llvm.amdgcn.image.sample.b.1darray",
"llvm.amdgcn.image.sample.b.2d",
"llvm.amdgcn.image.sample.b.2darray",
"llvm.amdgcn.image.sample.b.3d",
"llvm.amdgcn.image.sample.b.cl.1d",
"llvm.amdgcn.image.sample.b.cl.1darray",
"llvm.amdgcn.image.sample.b.cl.2d",
"llvm.amdgcn.image.sample.b.cl.2darray",
"llvm.amdgcn.image.sample.b.cl.3d",
"llvm.amdgcn.image.sample.b.cl.cube",
"llvm.amdgcn.image.sample.b.cl.o.1d",
"llvm.amdgcn.image.sample.b.cl.o.1darray",
"llvm.amdgcn.image.sample.b.cl.o.2d",
"llvm.amdgcn.image.sample.b.cl.o.2darray",
"llvm.amdgcn.image.sample.b.cl.o.3d",
"llvm.amdgcn.image.sample.b.cl.o.cube",
"llvm.amdgcn.image.sample.b.cube",
"llvm.amdgcn.image.sample.b.o.1d",
"llvm.amdgcn.image.sample.b.o.1darray",
"llvm.amdgcn.image.sample.b.o.2d",
"llvm.amdgcn.image.sample.b.o.2darray",
"llvm.amdgcn.image.sample.b.o.3d",
"llvm.amdgcn.image.sample.b.o.cube",
"llvm.amdgcn.image.sample.c.1d",
"llvm.amdgcn.image.sample.c.1darray",
"llvm.amdgcn.image.sample.c.2d",
"llvm.amdgcn.image.sample.c.2darray",
"llvm.amdgcn.image.sample.c.3d",
"llvm.amdgcn.image.sample.c.b.1d",
"llvm.amdgcn.image.sample.c.b.1darray",
"llvm.amdgcn.image.sample.c.b.2d",
"llvm.amdgcn.image.sample.c.b.2darray",
"llvm.amdgcn.image.sample.c.b.3d",
"llvm.amdgcn.image.sample.c.b.cl.1d",
"llvm.amdgcn.image.sample.c.b.cl.1darray",
"llvm.amdgcn.image.sample.c.b.cl.2d",
"llvm.amdgcn.image.sample.c.b.cl.2darray",
"llvm.amdgcn.image.sample.c.b.cl.3d",
"llvm.amdgcn.image.sample.c.b.cl.cube",
"llvm.amdgcn.image.sample.c.b.cl.o.1d",
"llvm.amdgcn.image.sample.c.b.cl.o.1darray",
"llvm.amdgcn.image.sample.c.b.cl.o.2d",
"llvm.amdgcn.image.sample.c.b.cl.o.2darray",
"llvm.amdgcn.image.sample.c.b.cl.o.3d",
"llvm.amdgcn.image.sample.c.b.cl.o.cube",
"llvm.amdgcn.image.sample.c.b.cube",
"llvm.amdgcn.image.sample.c.b.o.1d",
"llvm.amdgcn.image.sample.c.b.o.1darray",
"llvm.amdgcn.image.sample.c.b.o.2d",
"llvm.amdgcn.image.sample.c.b.o.2darray",
"llvm.amdgcn.image.sample.c.b.o.3d",
"llvm.amdgcn.image.sample.c.b.o.cube",
"llvm.amdgcn.image.sample.c.cd.1d",
"llvm.amdgcn.image.sample.c.cd.1darray",
"llvm.amdgcn.image.sample.c.cd.2d",
"llvm.amdgcn.image.sample.c.cd.2darray",
"llvm.amdgcn.image.sample.c.cd.3d",
"llvm.amdgcn.image.sample.c.cd.cl.1d",
"llvm.amdgcn.image.sample.c.cd.cl.1darray",
"llvm.amdgcn.image.sample.c.cd.cl.2d",
"llvm.amdgcn.image.sample.c.cd.cl.2darray",
"llvm.amdgcn.image.sample.c.cd.cl.3d",
"llvm.amdgcn.image.sample.c.cd.cl.cube",
"llvm.amdgcn.image.sample.c.cd.cl.o.1d",
"llvm.amdgcn.image.sample.c.cd.cl.o.1darray",
"llvm.amdgcn.image.sample.c.cd.cl.o.2d",
"llvm.amdgcn.image.sample.c.cd.cl.o.2darray",
"llvm.amdgcn.image.sample.c.cd.cl.o.3d",
"llvm.amdgcn.image.sample.c.cd.cl.o.cube",
"llvm.amdgcn.image.sample.c.cd.cube",
"llvm.amdgcn.image.sample.c.cd.o.1d",
"llvm.amdgcn.image.sample.c.cd.o.1darray",
"llvm.amdgcn.image.sample.c.cd.o.2d",
"llvm.amdgcn.image.sample.c.cd.o.2darray",
"llvm.amdgcn.image.sample.c.cd.o.3d",
"llvm.amdgcn.image.sample.c.cd.o.cube",
"llvm.amdgcn.image.sample.c.cl.1d",
"llvm.amdgcn.image.sample.c.cl.1darray",
"llvm.amdgcn.image.sample.c.cl.2d",
"llvm.amdgcn.image.sample.c.cl.2darray",
"llvm.amdgcn.image.sample.c.cl.3d",
"llvm.amdgcn.image.sample.c.cl.cube",
"llvm.amdgcn.image.sample.c.cl.o.1d",
"llvm.amdgcn.image.sample.c.cl.o.1darray",
"llvm.amdgcn.image.sample.c.cl.o.2d",
"llvm.amdgcn.image.sample.c.cl.o.2darray",
"llvm.amdgcn.image.sample.c.cl.o.3d",
"llvm.amdgcn.image.sample.c.cl.o.cube",
"llvm.amdgcn.image.sample.c.cube",
"llvm.amdgcn.image.sample.c.d.1d",
"llvm.amdgcn.image.sample.c.d.1darray",
"llvm.amdgcn.image.sample.c.d.2d",
"llvm.amdgcn.image.sample.c.d.2darray",
"llvm.amdgcn.image.sample.c.d.3d",
"llvm.amdgcn.image.sample.c.d.cl.1d",
"llvm.amdgcn.image.sample.c.d.cl.1darray",
"llvm.amdgcn.image.sample.c.d.cl.2d",
"llvm.amdgcn.image.sample.c.d.cl.2darray",
"llvm.amdgcn.image.sample.c.d.cl.3d",
"llvm.amdgcn.image.sample.c.d.cl.cube",
"llvm.amdgcn.image.sample.c.d.cl.o.1d",
"llvm.amdgcn.image.sample.c.d.cl.o.1darray",
"llvm.amdgcn.image.sample.c.d.cl.o.2d",
"llvm.amdgcn.image.sample.c.d.cl.o.2darray",
"llvm.amdgcn.image.sample.c.d.cl.o.3d",
"llvm.amdgcn.image.sample.c.d.cl.o.cube",
"llvm.amdgcn.image.sample.c.d.cube",
"llvm.amdgcn.image.sample.c.d.o.1d",
"llvm.amdgcn.image.sample.c.d.o.1darray",
"llvm.amdgcn.image.sample.c.d.o.2d",
"llvm.amdgcn.image.sample.c.d.o.2darray",
"llvm.amdgcn.image.sample.c.d.o.3d",
"llvm.amdgcn.image.sample.c.d.o.cube",
"llvm.amdgcn.image.sample.c.l.1d",
"llvm.amdgcn.image.sample.c.l.1darray",
"llvm.amdgcn.image.sample.c.l.2d",
"llvm.amdgcn.image.sample.c.l.2darray",
"llvm.amdgcn.image.sample.c.l.3d",
"llvm.amdgcn.image.sample.c.l.cube",
"llvm.amdgcn.image.sample.c.l.o.1d",
"llvm.amdgcn.image.sample.c.l.o.1darray",
"llvm.amdgcn.image.sample.c.l.o.2d",
"llvm.amdgcn.image.sample.c.l.o.2darray",
"llvm.amdgcn.image.sample.c.l.o.3d",
"llvm.amdgcn.image.sample.c.l.o.cube",
"llvm.amdgcn.image.sample.c.lz.1d",
"llvm.amdgcn.image.sample.c.lz.1darray",
"llvm.amdgcn.image.sample.c.lz.2d",
"llvm.amdgcn.image.sample.c.lz.2darray",
"llvm.amdgcn.image.sample.c.lz.3d",
"llvm.amdgcn.image.sample.c.lz.cube",
"llvm.amdgcn.image.sample.c.lz.o.1d",
"llvm.amdgcn.image.sample.c.lz.o.1darray",
"llvm.amdgcn.image.sample.c.lz.o.2d",
"llvm.amdgcn.image.sample.c.lz.o.2darray",
"llvm.amdgcn.image.sample.c.lz.o.3d",
"llvm.amdgcn.image.sample.c.lz.o.cube",
"llvm.amdgcn.image.sample.c.o.1d",
"llvm.amdgcn.image.sample.c.o.1darray",
"llvm.amdgcn.image.sample.c.o.2d",
"llvm.amdgcn.image.sample.c.o.2darray",
"llvm.amdgcn.image.sample.c.o.3d",
"llvm.amdgcn.image.sample.c.o.cube",
"llvm.amdgcn.image.sample.cd.1d",
"llvm.amdgcn.image.sample.cd.1darray",
"llvm.amdgcn.image.sample.cd.2d",
"llvm.amdgcn.image.sample.cd.2darray",
"llvm.amdgcn.image.sample.cd.3d",
"llvm.amdgcn.image.sample.cd.cl.1d",
"llvm.amdgcn.image.sample.cd.cl.1darray",
"llvm.amdgcn.image.sample.cd.cl.2d",
"llvm.amdgcn.image.sample.cd.cl.2darray",
"llvm.amdgcn.image.sample.cd.cl.3d",
"llvm.amdgcn.image.sample.cd.cl.cube",
"llvm.amdgcn.image.sample.cd.cl.o.1d",
"llvm.amdgcn.image.sample.cd.cl.o.1darray",
"llvm.amdgcn.image.sample.cd.cl.o.2d",
"llvm.amdgcn.image.sample.cd.cl.o.2darray",
"llvm.amdgcn.image.sample.cd.cl.o.3d",
"llvm.amdgcn.image.sample.cd.cl.o.cube",
"llvm.amdgcn.image.sample.cd.cube",
"llvm.amdgcn.image.sample.cd.o.1d",
"llvm.amdgcn.image.sample.cd.o.1darray",
"llvm.amdgcn.image.sample.cd.o.2d",
"llvm.amdgcn.image.sample.cd.o.2darray",
"llvm.amdgcn.image.sample.cd.o.3d",
"llvm.amdgcn.image.sample.cd.o.cube",
"llvm.amdgcn.image.sample.cl.1d",
"llvm.amdgcn.image.sample.cl.1darray",
"llvm.amdgcn.image.sample.cl.2d",
"llvm.amdgcn.image.sample.cl.2darray",
"llvm.amdgcn.image.sample.cl.3d",
"llvm.amdgcn.image.sample.cl.cube",
"llvm.amdgcn.image.sample.cl.o.1d",
"llvm.amdgcn.image.sample.cl.o.1darray",
"llvm.amdgcn.image.sample.cl.o.2d",
"llvm.amdgcn.image.sample.cl.o.2darray",
"llvm.amdgcn.image.sample.cl.o.3d",
"llvm.amdgcn.image.sample.cl.o.cube",
"llvm.amdgcn.image.sample.cube",
"llvm.amdgcn.image.sample.d.1d",
"llvm.amdgcn.image.sample.d.1darray",
"llvm.amdgcn.image.sample.d.2d",
"llvm.amdgcn.image.sample.d.2darray",
"llvm.amdgcn.image.sample.d.3d",
"llvm.amdgcn.image.sample.d.cl.1d",
"llvm.amdgcn.image.sample.d.cl.1darray",
"llvm.amdgcn.image.sample.d.cl.2d",
"llvm.amdgcn.image.sample.d.cl.2darray",
"llvm.amdgcn.image.sample.d.cl.3d",
"llvm.amdgcn.image.sample.d.cl.cube",
"llvm.amdgcn.image.sample.d.cl.o.1d",
"llvm.amdgcn.image.sample.d.cl.o.1darray",
"llvm.amdgcn.image.sample.d.cl.o.2d",
"llvm.amdgcn.image.sample.d.cl.o.2darray",
"llvm.amdgcn.image.sample.d.cl.o.3d",
"llvm.amdgcn.image.sample.d.cl.o.cube",
"llvm.amdgcn.image.sample.d.cube",
"llvm.amdgcn.image.sample.d.o.1d",
"llvm.amdgcn.image.sample.d.o.1darray",
"llvm.amdgcn.image.sample.d.o.2d",
"llvm.amdgcn.image.sample.d.o.2darray",
"llvm.amdgcn.image.sample.d.o.3d",
"llvm.amdgcn.image.sample.d.o.cube",
"llvm.amdgcn.image.sample.l.1d",
"llvm.amdgcn.image.sample.l.1darray",
"llvm.amdgcn.image.sample.l.2d",
"llvm.amdgcn.image.sample.l.2darray",
"llvm.amdgcn.image.sample.l.3d",
"llvm.amdgcn.image.sample.l.cube",
"llvm.amdgcn.image.sample.l.o.1d",
"llvm.amdgcn.image.sample.l.o.1darray",
"llvm.amdgcn.image.sample.l.o.2d",
"llvm.amdgcn.image.sample.l.o.2darray",
"llvm.amdgcn.image.sample.l.o.3d",
"llvm.amdgcn.image.sample.l.o.cube",
"llvm.amdgcn.image.sample.lz.1d",
"llvm.amdgcn.image.sample.lz.1darray",
"llvm.amdgcn.image.sample.lz.2d",
"llvm.amdgcn.image.sample.lz.2darray",
"llvm.amdgcn.image.sample.lz.3d",
"llvm.amdgcn.image.sample.lz.cube",
"llvm.amdgcn.image.sample.lz.o.1d",
"llvm.amdgcn.image.sample.lz.o.1darray",
"llvm.amdgcn.image.sample.lz.o.2d",
"llvm.amdgcn.image.sample.lz.o.2darray",
"llvm.amdgcn.image.sample.lz.o.3d",
"llvm.amdgcn.image.sample.lz.o.cube",
"llvm.amdgcn.image.sample.o.1d",
"llvm.amdgcn.image.sample.o.1darray",
"llvm.amdgcn.image.sample.o.2d",
"llvm.amdgcn.image.sample.o.2darray",
"llvm.amdgcn.image.sample.o.3d",
"llvm.amdgcn.image.sample.o.cube",
"llvm.amdgcn.image.store.1d",
"llvm.amdgcn.image.store.1darray",
"llvm.amdgcn.image.store.2d",
"llvm.amdgcn.image.store.2darray",
"llvm.amdgcn.image.store.2darraymsaa",
"llvm.amdgcn.image.store.2dmsaa",
"llvm.amdgcn.image.store.3d",
"llvm.amdgcn.image.store.cube",
"llvm.amdgcn.image.store.mip.1d",
"llvm.amdgcn.image.store.mip.1darray",
"llvm.amdgcn.image.store.mip.2d",
"llvm.amdgcn.image.store.mip.2darray",
"llvm.amdgcn.image.store.mip.3d",
"llvm.amdgcn.image.store.mip.cube",
"llvm.amdgcn.implicit.buffer.ptr",
"llvm.amdgcn.implicitarg.ptr",
"llvm.amdgcn.init.exec",
"llvm.amdgcn.init.exec.from.input",
"llvm.amdgcn.interp.mov",
"llvm.amdgcn.interp.p1",
"llvm.amdgcn.interp.p1.f16",
"llvm.amdgcn.interp.p2",
"llvm.amdgcn.interp.p2.f16",
"llvm.amdgcn.is.private",
"llvm.amdgcn.is.shared",
"llvm.amdgcn.kernarg.segment.ptr",
"llvm.amdgcn.kill",
"llvm.amdgcn.ldexp",
"llvm.amdgcn.lerp",
"llvm.amdgcn.log.clamp",
"llvm.amdgcn.loop",
"llvm.amdgcn.mbcnt.hi",
"llvm.amdgcn.mbcnt.lo",
"llvm.amdgcn.mfma.f32.16x16x16f16",
"llvm.amdgcn.mfma.f32.16x16x1f32",
"llvm.amdgcn.mfma.f32.16x16x2bf16",
"llvm.amdgcn.mfma.f32.16x16x4f16",
"llvm.amdgcn.mfma.f32.16x16x4f32",
"llvm.amdgcn.mfma.f32.16x16x8bf16",
"llvm.amdgcn.mfma.f32.32x32x1f32",
"llvm.amdgcn.mfma.f32.32x32x2bf16",
"llvm.amdgcn.mfma.f32.32x32x2f32",
"llvm.amdgcn.mfma.f32.32x32x4bf16",
"llvm.amdgcn.mfma.f32.32x32x4f16",
"llvm.amdgcn.mfma.f32.32x32x8f16",
"llvm.amdgcn.mfma.f32.4x4x1f32",
"llvm.amdgcn.mfma.f32.4x4x2bf16",
"llvm.amdgcn.mfma.f32.4x4x4f16",
"llvm.amdgcn.mfma.i32.16x16x16i8",
"llvm.amdgcn.mfma.i32.16x16x4i8",
"llvm.amdgcn.mfma.i32.32x32x4i8",
"llvm.amdgcn.mfma.i32.32x32x8i8",
"llvm.amdgcn.mfma.i32.4x4x4i8",
"llvm.amdgcn.mov.dpp",
"llvm.amdgcn.mov.dpp8",
"llvm.amdgcn.mqsad.pk.u16.u8",
"llvm.amdgcn.mqsad.u32.u8",
"llvm.amdgcn.msad.u8",
"llvm.amdgcn.mul.i24",
"llvm.amdgcn.mul.u24",
"llvm.amdgcn.permlane16",
"llvm.amdgcn.permlanex16",
"llvm.amdgcn.ps.live",
"llvm.amdgcn.qsad.pk.u16.u8",
"llvm.amdgcn.queue.ptr",
"llvm.amdgcn.raw.buffer.atomic.add",
"llvm.amdgcn.raw.buffer.atomic.and",
"llvm.amdgcn.raw.buffer.atomic.cmpswap",
"llvm.amdgcn.raw.buffer.atomic.dec",
"llvm.amdgcn.raw.buffer.atomic.fadd",
"llvm.amdgcn.raw.buffer.atomic.inc",
"llvm.amdgcn.raw.buffer.atomic.or",
"llvm.amdgcn.raw.buffer.atomic.smax",
"llvm.amdgcn.raw.buffer.atomic.smin",
"llvm.amdgcn.raw.buffer.atomic.sub",
"llvm.amdgcn.raw.buffer.atomic.swap",
"llvm.amdgcn.raw.buffer.atomic.umax",
"llvm.amdgcn.raw.buffer.atomic.umin",
"llvm.amdgcn.raw.buffer.atomic.xor",
"llvm.amdgcn.raw.buffer.load",
"llvm.amdgcn.raw.buffer.load.format",
"llvm.amdgcn.raw.buffer.store",
"llvm.amdgcn.raw.buffer.store.format",
"llvm.amdgcn.raw.tbuffer.load",
"llvm.amdgcn.raw.tbuffer.store",
"llvm.amdgcn.rcp",
"llvm.amdgcn.rcp.legacy",
"llvm.amdgcn.readfirstlane",
"llvm.amdgcn.readlane",
"llvm.amdgcn.reloc.constant",
"llvm.amdgcn.rsq",
"llvm.amdgcn.rsq.clamp",
"llvm.amdgcn.rsq.legacy",
"llvm.amdgcn.s.barrier",
"llvm.amdgcn.s.buffer.load",
"llvm.amdgcn.s.dcache.inv",
"llvm.amdgcn.s.dcache.inv.vol",
"llvm.amdgcn.s.dcache.wb",
"llvm.amdgcn.s.dcache.wb.vol",
"llvm.amdgcn.s.decperflevel",
"llvm.amdgcn.s.get.waveid.in.workgroup",
"llvm.amdgcn.s.getpc",
"llvm.amdgcn.s.getreg",
"llvm.amdgcn.s.incperflevel",
"llvm.amdgcn.s.memrealtime",
"llvm.amdgcn.s.memtime",
"llvm.amdgcn.s.sendmsg",
"llvm.amdgcn.s.sendmsghalt",
"llvm.amdgcn.s.setreg",
"llvm.amdgcn.s.sleep",
"llvm.amdgcn.s.waitcnt",
"llvm.amdgcn.sad.hi.u8",
"llvm.amdgcn.sad.u16",
"llvm.amdgcn.sad.u8",
"llvm.amdgcn.sbfe",
"llvm.amdgcn.sdot2",
"llvm.amdgcn.sdot4",
"llvm.amdgcn.sdot8",
"llvm.amdgcn.set.inactive",
"llvm.amdgcn.sffbh",
"llvm.amdgcn.sin",
"llvm.amdgcn.softwqm",
"llvm.amdgcn.sqrt",
"llvm.amdgcn.struct.buffer.atomic.add",
"llvm.amdgcn.struct.buffer.atomic.and",
"llvm.amdgcn.struct.buffer.atomic.cmpswap",
"llvm.amdgcn.struct.buffer.atomic.dec",
"llvm.amdgcn.struct.buffer.atomic.fadd",
"llvm.amdgcn.struct.buffer.atomic.inc",
"llvm.amdgcn.struct.buffer.atomic.or",
"llvm.amdgcn.struct.buffer.atomic.smax",
"llvm.amdgcn.struct.buffer.atomic.smin",
"llvm.amdgcn.struct.buffer.atomic.sub",
"llvm.amdgcn.struct.buffer.atomic.swap",
"llvm.amdgcn.struct.buffer.atomic.umax",
"llvm.amdgcn.struct.buffer.atomic.umin",
"llvm.amdgcn.struct.buffer.atomic.xor",
"llvm.amdgcn.struct.buffer.load",
"llvm.amdgcn.struct.buffer.load.format",
"llvm.amdgcn.struct.buffer.store",
"llvm.amdgcn.struct.buffer.store.format",
"llvm.amdgcn.struct.tbuffer.load",
"llvm.amdgcn.struct.tbuffer.store",
"llvm.amdgcn.tbuffer.load",
"llvm.amdgcn.tbuffer.store",
"llvm.amdgcn.trig.preop",
"llvm.amdgcn.ubfe",
"llvm.amdgcn.udot2",
"llvm.amdgcn.udot4",
"llvm.amdgcn.udot8",
"llvm.amdgcn.unreachable",
"llvm.amdgcn.update.dpp",
"llvm.amdgcn.wave.barrier",
"llvm.amdgcn.wavefrontsize",
"llvm.amdgcn.workgroup.id.x",
"llvm.amdgcn.workgroup.id.y",
"llvm.amdgcn.workgroup.id.z",
"llvm.amdgcn.workitem.id.x",
"llvm.amdgcn.workitem.id.y",
"llvm.amdgcn.workitem.id.z",
"llvm.amdgcn.wqm",
"llvm.amdgcn.wqm.vote",
"llvm.amdgcn.writelane",
"llvm.amdgcn.wwm",
"llvm.arm.cde.cx1",
"llvm.arm.cde.cx1a",
"llvm.arm.cde.cx1d",
"llvm.arm.cde.cx1da",
"llvm.arm.cde.cx2",
"llvm.arm.cde.cx2a",
"llvm.arm.cde.cx2d",
"llvm.arm.cde.cx2da",
"llvm.arm.cde.cx3",
"llvm.arm.cde.cx3a",
"llvm.arm.cde.cx3d",
"llvm.arm.cde.cx3da",
"llvm.arm.cde.vcx1",
"llvm.arm.cde.vcx1a",
"llvm.arm.cde.vcx1q",
"llvm.arm.cde.vcx1q.predicated",
"llvm.arm.cde.vcx1qa",
"llvm.arm.cde.vcx1qa.predicated",
"llvm.arm.cde.vcx2",
"llvm.arm.cde.vcx2a",
"llvm.arm.cde.vcx2q",
"llvm.arm.cde.vcx2q.predicated",
"llvm.arm.cde.vcx2qa",
"llvm.arm.cde.vcx2qa.predicated",
"llvm.arm.cde.vcx3",
"llvm.arm.cde.vcx3a",
"llvm.arm.cde.vcx3q",
"llvm.arm.cde.vcx3q.predicated",
"llvm.arm.cde.vcx3qa",
"llvm.arm.cde.vcx3qa.predicated",
"llvm.arm.cdp",
"llvm.arm.cdp2",
"llvm.arm.clrex",
"llvm.arm.cls",
"llvm.arm.cls64",
"llvm.arm.cmse.tt",
"llvm.arm.cmse.tta",
"llvm.arm.cmse.ttat",
"llvm.arm.cmse.ttt",
"llvm.arm.crc32b",
"llvm.arm.crc32cb",
"llvm.arm.crc32ch",
"llvm.arm.crc32cw",
"llvm.arm.crc32h",
"llvm.arm.crc32w",
"llvm.arm.dbg",
"llvm.arm.dmb",
"llvm.arm.dsb",
"llvm.arm.get.fpscr",
"llvm.arm.gnu.eabi.mcount",
"llvm.arm.hint",
"llvm.arm.isb",
"llvm.arm.ldaex",
"llvm.arm.ldaexd",
"llvm.arm.ldc",
"llvm.arm.ldc2",
"llvm.arm.ldc2l",
"llvm.arm.ldcl",
"llvm.arm.ldrex",
"llvm.arm.ldrexd",
"llvm.arm.mcr",
"llvm.arm.mcr2",
"llvm.arm.mcrr",
"llvm.arm.mcrr2",
"llvm.arm.mrc",
"llvm.arm.mrc2",
"llvm.arm.mrrc",
"llvm.arm.mrrc2",
"llvm.arm.mve.abd.predicated",
"llvm.arm.mve.abs.predicated",
"llvm.arm.mve.add.predicated",
"llvm.arm.mve.addlv",
"llvm.arm.mve.addlv.predicated",
"llvm.arm.mve.addv",
"llvm.arm.mve.addv.predicated",
"llvm.arm.mve.and.predicated",
"llvm.arm.mve.asrl",
"llvm.arm.mve.bic.predicated",
"llvm.arm.mve.cls.predicated",
"llvm.arm.mve.clz.predicated",
"llvm.arm.mve.eor.predicated",
"llvm.arm.mve.fma.predicated",
"llvm.arm.mve.hadd.predicated",
"llvm.arm.mve.hsub.predicated",
"llvm.arm.mve.lsll",
"llvm.arm.mve.max.predicated",
"llvm.arm.mve.maxav",
"llvm.arm.mve.maxav.predicated",
"llvm.arm.mve.maxnmav",
"llvm.arm.mve.maxnmav.predicated",
"llvm.arm.mve.maxnmv",
"llvm.arm.mve.maxnmv.predicated",
"llvm.arm.mve.maxv",
"llvm.arm.mve.maxv.predicated",
"llvm.arm.mve.min.predicated",
"llvm.arm.mve.minav",
"llvm.arm.mve.minav.predicated",
"llvm.arm.mve.minnmav",
"llvm.arm.mve.minnmav.predicated",
"llvm.arm.mve.minnmv",
"llvm.arm.mve.minnmv.predicated",
"llvm.arm.mve.minv",
"llvm.arm.mve.minv.predicated",
"llvm.arm.mve.mul.predicated",
"llvm.arm.mve.mulh.predicated",
"llvm.arm.mve.mull.int.predicated",
"llvm.arm.mve.mull.poly.predicated",
"llvm.arm.mve.mvn.predicated",
"llvm.arm.mve.neg.predicated",
"llvm.arm.mve.orn.predicated",
"llvm.arm.mve.orr.predicated",
"llvm.arm.mve.pred.i2v",
"llvm.arm.mve.pred.v2i",
"llvm.arm.mve.qabs.predicated",
"llvm.arm.mve.qadd.predicated",
"llvm.arm.mve.qdmulh.predicated",
"llvm.arm.mve.qneg.predicated",
"llvm.arm.mve.qrdmulh.predicated",
"llvm.arm.mve.qsub.predicated",
"llvm.arm.mve.rhadd.predicated",
"llvm.arm.mve.rmulh.predicated",
"llvm.arm.mve.shl.imm.predicated",
"llvm.arm.mve.shr.imm.predicated",
"llvm.arm.mve.sqrshr",
"llvm.arm.mve.sqrshrl",
"llvm.arm.mve.sqshl",
"llvm.arm.mve.sqshll",
"llvm.arm.mve.srshr",
"llvm.arm.mve.srshrl",
"llvm.arm.mve.sub.predicated",
"llvm.arm.mve.uqrshl",
"llvm.arm.mve.uqrshll",
"llvm.arm.mve.uqshl",
"llvm.arm.mve.uqshll",
"llvm.arm.mve.urshr",
"llvm.arm.mve.urshrl",
"llvm.arm.mve.vabav",
"llvm.arm.mve.vabav.predicated",
"llvm.arm.mve.vabd",
"llvm.arm.mve.vadc",
"llvm.arm.mve.vadc.predicated",
"llvm.arm.mve.vbrsr",
"llvm.arm.mve.vbrsr.predicated",
"llvm.arm.mve.vcaddq",
"llvm.arm.mve.vcaddq.predicated",
"llvm.arm.mve.vcls",
"llvm.arm.mve.vcmlaq",
"llvm.arm.mve.vcmlaq.predicated",
"llvm.arm.mve.vcmulq",
"llvm.arm.mve.vcmulq.predicated",
"llvm.arm.mve.vctp16",
"llvm.arm.mve.vctp32",
"llvm.arm.mve.vctp64",
"llvm.arm.mve.vctp8",
"llvm.arm.mve.vcvt.fix",
"llvm.arm.mve.vcvt.fix.predicated",
"llvm.arm.mve.vcvt.fp.int.predicated",
"llvm.arm.mve.vcvt.narrow",
"llvm.arm.mve.vcvt.narrow.predicated",
"llvm.arm.mve.vcvt.widen",
"llvm.arm.mve.vcvt.widen.predicated",
"llvm.arm.mve.vcvta",
"llvm.arm.mve.vcvta.predicated",
"llvm.arm.mve.vcvtm",
"llvm.arm.mve.vcvtm.predicated",
"llvm.arm.mve.vcvtn",
"llvm.arm.mve.vcvtn.predicated",
"llvm.arm.mve.vcvtp",
"llvm.arm.mve.vcvtp.predicated",
"llvm.arm.mve.vddup",
"llvm.arm.mve.vddup.predicated",
"llvm.arm.mve.vdwdup",
"llvm.arm.mve.vdwdup.predicated",
"llvm.arm.mve.vhadd",
"llvm.arm.mve.vhsub",
"llvm.arm.mve.vidup",
"llvm.arm.mve.vidup.predicated",
"llvm.arm.mve.viwdup",
"llvm.arm.mve.viwdup.predicated",
"llvm.arm.mve.vld2q",
"llvm.arm.mve.vld4q",
"llvm.arm.mve.vldr.gather.base",
"llvm.arm.mve.vldr.gather.base.predicated",
"llvm.arm.mve.vldr.gather.base.wb",
"llvm.arm.mve.vldr.gather.base.wb.predicated",
"llvm.arm.mve.vldr.gather.offset",
"llvm.arm.mve.vldr.gather.offset.predicated",
"llvm.arm.mve.vmaxa.predicated",
"llvm.arm.mve.vmaxnma.predicated",
"llvm.arm.mve.vmina.predicated",
"llvm.arm.mve.vminnma.predicated",
"llvm.arm.mve.vmla.n.predicated",
"llvm.arm.mve.vmlas.n.predicated",
"llvm.arm.mve.vmldava",
"llvm.arm.mve.vmldava.predicated",
"llvm.arm.mve.vmlldava",
"llvm.arm.mve.vmlldava.predicated",
"llvm.arm.mve.vmovl.predicated",
"llvm.arm.mve.vmovn.predicated",
"llvm.arm.mve.vmulh",
"llvm.arm.mve.vmull",
"llvm.arm.mve.vmull.poly",
"llvm.arm.mve.vqdmlad",
"llvm.arm.mve.vqdmlad.predicated",
"llvm.arm.mve.vqdmlah",
"llvm.arm.mve.vqdmlah.predicated",
"llvm.arm.mve.vqdmlash",
"llvm.arm.mve.vqdmlash.predicated",
"llvm.arm.mve.vqdmulh",
"llvm.arm.mve.vqdmull",
"llvm.arm.mve.vqdmull.predicated",
"llvm.arm.mve.vqmovn",
"llvm.arm.mve.vqmovn.predicated",
"llvm.arm.mve.vqrdmlah",
"llvm.arm.mve.vqrdmlah.predicated",
"llvm.arm.mve.vqrdmlash",
"llvm.arm.mve.vqrdmlash.predicated",
"llvm.arm.mve.vqrdmulh",
"llvm.arm.mve.vqshl.imm",
"llvm.arm.mve.vqshl.imm.predicated",
"llvm.arm.mve.vqshlu.imm",
"llvm.arm.mve.vqshlu.imm.predicated",
"llvm.arm.mve.vreinterpretq",
"llvm.arm.mve.vrev.predicated",
"llvm.arm.mve.vrhadd",
"llvm.arm.mve.vrinta.predicated",
"llvm.arm.mve.vrintm.predicated",
"llvm.arm.mve.vrintn",
"llvm.arm.mve.vrintn.predicated",
"llvm.arm.mve.vrintp.predicated",
"llvm.arm.mve.vrintx.predicated",
"llvm.arm.mve.vrintz.predicated",
"llvm.arm.mve.vrmlldavha",
"llvm.arm.mve.vrmlldavha.predicated",
"llvm.arm.mve.vrmulh",
"llvm.arm.mve.vrshr.imm",
"llvm.arm.mve.vrshr.imm.predicated",
"llvm.arm.mve.vsbc",
"llvm.arm.mve.vsbc.predicated",
"llvm.arm.mve.vshl.scalar",
"llvm.arm.mve.vshl.scalar.predicated",
"llvm.arm.mve.vshl.vector",
"llvm.arm.mve.vshl.vector.predicated",
"llvm.arm.mve.vshlc",
"llvm.arm.mve.vshlc.predicated",
"llvm.arm.mve.vshll.imm",
"llvm.arm.mve.vshll.imm.predicated",
"llvm.arm.mve.vshrn",
"llvm.arm.mve.vshrn.predicated",
"llvm.arm.mve.vsli",
"llvm.arm.mve.vsli.predicated",
"llvm.arm.mve.vsri",
"llvm.arm.mve.vsri.predicated",
"llvm.arm.mve.vst2q",
"llvm.arm.mve.vst4q",
"llvm.arm.mve.vstr.scatter.base",
"llvm.arm.mve.vstr.scatter.base.predicated",
"llvm.arm.mve.vstr.scatter.base.wb",
"llvm.arm.mve.vstr.scatter.base.wb.predicated",
"llvm.arm.mve.vstr.scatter.offset",
"llvm.arm.mve.vstr.scatter.offset.predicated",
"llvm.arm.neon.aesd",
"llvm.arm.neon.aese",
"llvm.arm.neon.aesimc",
"llvm.arm.neon.aesmc",
"llvm.arm.neon.bfdot",
"llvm.arm.neon.bfmlalb",
"llvm.arm.neon.bfmlalt",
"llvm.arm.neon.bfmmla",
"llvm.arm.neon.sdot",
"llvm.arm.neon.sha1c",
"llvm.arm.neon.sha1h",
"llvm.arm.neon.sha1m",
"llvm.arm.neon.sha1p",
"llvm.arm.neon.sha1su0",
"llvm.arm.neon.sha1su1",
"llvm.arm.neon.sha256h",
"llvm.arm.neon.sha256h2",
"llvm.arm.neon.sha256su0",
"llvm.arm.neon.sha256su1",
"llvm.arm.neon.smmla",
"llvm.arm.neon.udot",
"llvm.arm.neon.ummla",
"llvm.arm.neon.usdot",
"llvm.arm.neon.usmmla",
"llvm.arm.neon.vabds",
"llvm.arm.neon.vabdu",
"llvm.arm.neon.vabs",
"llvm.arm.neon.vacge",
"llvm.arm.neon.vacgt",
"llvm.arm.neon.vbsl",
"llvm.arm.neon.vcadd.rot270",
"llvm.arm.neon.vcadd.rot90",
"llvm.arm.neon.vcls",
"llvm.arm.neon.vcvtas",
"llvm.arm.neon.vcvtau",
"llvm.arm.neon.vcvtbfp2bf",
"llvm.arm.neon.vcvtfp2bf",
"llvm.arm.neon.vcvtfp2fxs",
"llvm.arm.neon.vcvtfp2fxu",
"llvm.arm.neon.vcvtfp2hf",
"llvm.arm.neon.vcvtfxs2fp",
"llvm.arm.neon.vcvtfxu2fp",
"llvm.arm.neon.vcvthf2fp",
"llvm.arm.neon.vcvtms",
"llvm.arm.neon.vcvtmu",
"llvm.arm.neon.vcvtns",
"llvm.arm.neon.vcvtnu",
"llvm.arm.neon.vcvtps",
"llvm.arm.neon.vcvtpu",
"llvm.arm.neon.vhadds",
"llvm.arm.neon.vhaddu",
"llvm.arm.neon.vhsubs",
"llvm.arm.neon.vhsubu",
"llvm.arm.neon.vld1",
"llvm.arm.neon.vld1x2",
"llvm.arm.neon.vld1x3",
"llvm.arm.neon.vld1x4",
"llvm.arm.neon.vld2",
"llvm.arm.neon.vld2dup",
"llvm.arm.neon.vld2lane",
"llvm.arm.neon.vld3",
"llvm.arm.neon.vld3dup",
"llvm.arm.neon.vld3lane",
"llvm.arm.neon.vld4",
"llvm.arm.neon.vld4dup",
"llvm.arm.neon.vld4lane",
"llvm.arm.neon.vmaxnm",
"llvm.arm.neon.vmaxs",
"llvm.arm.neon.vmaxu",
"llvm.arm.neon.vminnm",
"llvm.arm.neon.vmins",
"llvm.arm.neon.vminu",
"llvm.arm.neon.vmullp",
"llvm.arm.neon.vmulls",
"llvm.arm.neon.vmullu",
"llvm.arm.neon.vmulp",
"llvm.arm.neon.vpadals",
"llvm.arm.neon.vpadalu",
"llvm.arm.neon.vpadd",
"llvm.arm.neon.vpaddls",
"llvm.arm.neon.vpaddlu",
"llvm.arm.neon.vpmaxs",
"llvm.arm.neon.vpmaxu",
"llvm.arm.neon.vpmins",
"llvm.arm.neon.vpminu",
"llvm.arm.neon.vqabs",
"llvm.arm.neon.vqdmulh",
"llvm.arm.neon.vqdmull",
"llvm.arm.neon.vqmovns",
"llvm.arm.neon.vqmovnsu",
"llvm.arm.neon.vqmovnu",
"llvm.arm.neon.vqneg",
"llvm.arm.neon.vqrdmulh",
"llvm.arm.neon.vqrshiftns",
"llvm.arm.neon.vqrshiftnsu",
"llvm.arm.neon.vqrshiftnu",
"llvm.arm.neon.vqrshifts",
"llvm.arm.neon.vqrshiftu",
"llvm.arm.neon.vqshiftns",
"llvm.arm.neon.vqshiftnsu",
"llvm.arm.neon.vqshiftnu",
"llvm.arm.neon.vqshifts",
"llvm.arm.neon.vqshiftsu",
"llvm.arm.neon.vqshiftu",
"llvm.arm.neon.vraddhn",
"llvm.arm.neon.vrecpe",
"llvm.arm.neon.vrecps",
"llvm.arm.neon.vrhadds",
"llvm.arm.neon.vrhaddu",
"llvm.arm.neon.vrinta",
"llvm.arm.neon.vrintm",
"llvm.arm.neon.vrintn",
"llvm.arm.neon.vrintp",
"llvm.arm.neon.vrintx",
"llvm.arm.neon.vrintz",
"llvm.arm.neon.vrshiftn",
"llvm.arm.neon.vrshifts",
"llvm.arm.neon.vrshiftu",
"llvm.arm.neon.vrsqrte",
"llvm.arm.neon.vrsqrts",
"llvm.arm.neon.vrsubhn",
"llvm.arm.neon.vshiftins",
"llvm.arm.neon.vshifts",
"llvm.arm.neon.vshiftu",
"llvm.arm.neon.vst1",
"llvm.arm.neon.vst1x2",
"llvm.arm.neon.vst1x3",
"llvm.arm.neon.vst1x4",
"llvm.arm.neon.vst2",
"llvm.arm.neon.vst2lane",
"llvm.arm.neon.vst3",
"llvm.arm.neon.vst3lane",
"llvm.arm.neon.vst4",
"llvm.arm.neon.vst4lane",
"llvm.arm.neon.vtbl1",
"llvm.arm.neon.vtbl2",
"llvm.arm.neon.vtbl3",
"llvm.arm.neon.vtbl4",
"llvm.arm.neon.vtbx1",
"llvm.arm.neon.vtbx2",
"llvm.arm.neon.vtbx3",
"llvm.arm.neon.vtbx4",
"llvm.arm.qadd",
"llvm.arm.qadd16",
"llvm.arm.qadd8",
"llvm.arm.qasx",
"llvm.arm.qsax",
"llvm.arm.qsub",
"llvm.arm.qsub16",
"llvm.arm.qsub8",
"llvm.arm.sadd16",
"llvm.arm.sadd8",
"llvm.arm.sasx",
"llvm.arm.sel",
"llvm.arm.set.fpscr",
"llvm.arm.shadd16",
"llvm.arm.shadd8",
"llvm.arm.shasx",
"llvm.arm.shsax",
"llvm.arm.shsub16",
"llvm.arm.shsub8",
"llvm.arm.smlabb",
"llvm.arm.smlabt",
"llvm.arm.smlad",
"llvm.arm.smladx",
"llvm.arm.smlald",
"llvm.arm.smlaldx",
"llvm.arm.smlatb",
"llvm.arm.smlatt",
"llvm.arm.smlawb",
"llvm.arm.smlawt",
"llvm.arm.smlsd",
"llvm.arm.smlsdx",
"llvm.arm.smlsld",
"llvm.arm.smlsldx",
"llvm.arm.smuad",
"llvm.arm.smuadx",
"llvm.arm.smulbb",
"llvm.arm.smulbt",
"llvm.arm.smultb",
"llvm.arm.smultt",
"llvm.arm.smulwb",
"llvm.arm.smulwt",
"llvm.arm.smusd",
"llvm.arm.smusdx",
"llvm.arm.space",
"llvm.arm.ssat",
"llvm.arm.ssat16",
"llvm.arm.ssax",
"llvm.arm.ssub16",
"llvm.arm.ssub8",
"llvm.arm.stc",
"llvm.arm.stc2",
"llvm.arm.stc2l",
"llvm.arm.stcl",
"llvm.arm.stlex",
"llvm.arm.stlexd",
"llvm.arm.strex",
"llvm.arm.strexd",
"llvm.arm.sxtab16",
"llvm.arm.sxtb16",
"llvm.arm.uadd16",
"llvm.arm.uadd8",
"llvm.arm.uasx",
"llvm.arm.uhadd16",
"llvm.arm.uhadd8",
"llvm.arm.uhasx",
"llvm.arm.uhsax",
"llvm.arm.uhsub16",
"llvm.arm.uhsub8",
"llvm.arm.undefined",
"llvm.arm.uqadd16",
"llvm.arm.uqadd8",
"llvm.arm.uqasx",
"llvm.arm.uqsax",
"llvm.arm.uqsub16",
"llvm.arm.uqsub8",
"llvm.arm.usad8",
"llvm.arm.usada8",
"llvm.arm.usat",
"llvm.arm.usat16",
"llvm.arm.usax",
"llvm.arm.usub16",
"llvm.arm.usub8",
"llvm.arm.uxtab16",
"llvm.arm.uxtb16",
"llvm.arm.vcvtr",
"llvm.arm.vcvtru",
"llvm.bpf.btf.type.id",
"llvm.bpf.load.byte",
"llvm.bpf.load.half",
"llvm.bpf.load.word",
"llvm.bpf.passthrough",
"llvm.bpf.preserve.enum.value",
"llvm.bpf.preserve.field.info",
"llvm.bpf.preserve.type.info",
"llvm.bpf.pseudo",
"llvm.hexagon.A2.abs",
"llvm.hexagon.A2.absp",
"llvm.hexagon.A2.abssat",
"llvm.hexagon.A2.add",
"llvm.hexagon.A2.addh.h16.hh",
"llvm.hexagon.A2.addh.h16.hl",
"llvm.hexagon.A2.addh.h16.lh",
"llvm.hexagon.A2.addh.h16.ll",
"llvm.hexagon.A2.addh.h16.sat.hh",
"llvm.hexagon.A2.addh.h16.sat.hl",
"llvm.hexagon.A2.addh.h16.sat.lh",
"llvm.hexagon.A2.addh.h16.sat.ll",
"llvm.hexagon.A2.addh.l16.hl",
"llvm.hexagon.A2.addh.l16.ll",
"llvm.hexagon.A2.addh.l16.sat.hl",
"llvm.hexagon.A2.addh.l16.sat.ll",
"llvm.hexagon.A2.addi",
"llvm.hexagon.A2.addp",
"llvm.hexagon.A2.addpsat",
"llvm.hexagon.A2.addsat",
"llvm.hexagon.A2.addsp",
"llvm.hexagon.A2.and",
"llvm.hexagon.A2.andir",
"llvm.hexagon.A2.andp",
"llvm.hexagon.A2.aslh",
"llvm.hexagon.A2.asrh",
"llvm.hexagon.A2.combine.hh",
"llvm.hexagon.A2.combine.hl",
"llvm.hexagon.A2.combine.lh",
"llvm.hexagon.A2.combine.ll",
"llvm.hexagon.A2.combineii",
"llvm.hexagon.A2.combinew",
"llvm.hexagon.A2.max",
"llvm.hexagon.A2.maxp",
"llvm.hexagon.A2.maxu",
"llvm.hexagon.A2.maxup",
"llvm.hexagon.A2.min",
"llvm.hexagon.A2.minp",
"llvm.hexagon.A2.minu",
"llvm.hexagon.A2.minup",
"llvm.hexagon.A2.neg",
"llvm.hexagon.A2.negp",
"llvm.hexagon.A2.negsat",
"llvm.hexagon.A2.not",
"llvm.hexagon.A2.notp",
"llvm.hexagon.A2.or",
"llvm.hexagon.A2.orir",
"llvm.hexagon.A2.orp",
"llvm.hexagon.A2.roundsat",
"llvm.hexagon.A2.sat",
"llvm.hexagon.A2.satb",
"llvm.hexagon.A2.sath",
"llvm.hexagon.A2.satub",
"llvm.hexagon.A2.satuh",
"llvm.hexagon.A2.sub",
"llvm.hexagon.A2.subh.h16.hh",
"llvm.hexagon.A2.subh.h16.hl",
"llvm.hexagon.A2.subh.h16.lh",
"llvm.hexagon.A2.subh.h16.ll",
"llvm.hexagon.A2.subh.h16.sat.hh",
"llvm.hexagon.A2.subh.h16.sat.hl",
"llvm.hexagon.A2.subh.h16.sat.lh",
"llvm.hexagon.A2.subh.h16.sat.ll",
"llvm.hexagon.A2.subh.l16.hl",
"llvm.hexagon.A2.subh.l16.ll",
"llvm.hexagon.A2.subh.l16.sat.hl",
"llvm.hexagon.A2.subh.l16.sat.ll",
"llvm.hexagon.A2.subp",
"llvm.hexagon.A2.subri",
"llvm.hexagon.A2.subsat",
"llvm.hexagon.A2.svaddh",
"llvm.hexagon.A2.svaddhs",
"llvm.hexagon.A2.svadduhs",
"llvm.hexagon.A2.svavgh",
"llvm.hexagon.A2.svavghs",
"llvm.hexagon.A2.svnavgh",
"llvm.hexagon.A2.svsubh",
"llvm.hexagon.A2.svsubhs",
"llvm.hexagon.A2.svsubuhs",
"llvm.hexagon.A2.swiz",
"llvm.hexagon.A2.sxtb",
"llvm.hexagon.A2.sxth",
"llvm.hexagon.A2.sxtw",
"llvm.hexagon.A2.tfr",
"llvm.hexagon.A2.tfrih",
"llvm.hexagon.A2.tfril",
"llvm.hexagon.A2.tfrp",
"llvm.hexagon.A2.tfrpi",
"llvm.hexagon.A2.tfrsi",
"llvm.hexagon.A2.vabsh",
"llvm.hexagon.A2.vabshsat",
"llvm.hexagon.A2.vabsw",
"llvm.hexagon.A2.vabswsat",
"llvm.hexagon.A2.vaddb.map",
"llvm.hexagon.A2.vaddh",
"llvm.hexagon.A2.vaddhs",
"llvm.hexagon.A2.vaddub",
"llvm.hexagon.A2.vaddubs",
"llvm.hexagon.A2.vadduhs",
"llvm.hexagon.A2.vaddw",
"llvm.hexagon.A2.vaddws",
"llvm.hexagon.A2.vavgh",
"llvm.hexagon.A2.vavghcr",
"llvm.hexagon.A2.vavghr",
"llvm.hexagon.A2.vavgub",
"llvm.hexagon.A2.vavgubr",
"llvm.hexagon.A2.vavguh",
"llvm.hexagon.A2.vavguhr",
"llvm.hexagon.A2.vavguw",
"llvm.hexagon.A2.vavguwr",
"llvm.hexagon.A2.vavgw",
"llvm.hexagon.A2.vavgwcr",
"llvm.hexagon.A2.vavgwr",
"llvm.hexagon.A2.vcmpbeq",
"llvm.hexagon.A2.vcmpbgtu",
"llvm.hexagon.A2.vcmpheq",
"llvm.hexagon.A2.vcmphgt",
"llvm.hexagon.A2.vcmphgtu",
"llvm.hexagon.A2.vcmpweq",
"llvm.hexagon.A2.vcmpwgt",
"llvm.hexagon.A2.vcmpwgtu",
"llvm.hexagon.A2.vconj",
"llvm.hexagon.A2.vmaxb",
"llvm.hexagon.A2.vmaxh",
"llvm.hexagon.A2.vmaxub",
"llvm.hexagon.A2.vmaxuh",
"llvm.hexagon.A2.vmaxuw",
"llvm.hexagon.A2.vmaxw",
"llvm.hexagon.A2.vminb",
"llvm.hexagon.A2.vminh",
"llvm.hexagon.A2.vminub",
"llvm.hexagon.A2.vminuh",
"llvm.hexagon.A2.vminuw",
"llvm.hexagon.A2.vminw",
"llvm.hexagon.A2.vnavgh",
"llvm.hexagon.A2.vnavghcr",
"llvm.hexagon.A2.vnavghr",
"llvm.hexagon.A2.vnavgw",
"llvm.hexagon.A2.vnavgwcr",
"llvm.hexagon.A2.vnavgwr",
"llvm.hexagon.A2.vraddub",
"llvm.hexagon.A2.vraddub.acc",
"llvm.hexagon.A2.vrsadub",
"llvm.hexagon.A2.vrsadub.acc",
"llvm.hexagon.A2.vsubb.map",
"llvm.hexagon.A2.vsubh",
"llvm.hexagon.A2.vsubhs",
"llvm.hexagon.A2.vsubub",
"llvm.hexagon.A2.vsububs",
"llvm.hexagon.A2.vsubuhs",
"llvm.hexagon.A2.vsubw",
"llvm.hexagon.A2.vsubws",
"llvm.hexagon.A2.xor",
"llvm.hexagon.A2.xorp",
"llvm.hexagon.A2.zxtb",
"llvm.hexagon.A2.zxth",
"llvm.hexagon.A4.andn",
"llvm.hexagon.A4.andnp",
"llvm.hexagon.A4.bitsplit",
"llvm.hexagon.A4.bitspliti",
"llvm.hexagon.A4.boundscheck",
"llvm.hexagon.A4.cmpbeq",
"llvm.hexagon.A4.cmpbeqi",
"llvm.hexagon.A4.cmpbgt",
"llvm.hexagon.A4.cmpbgti",
"llvm.hexagon.A4.cmpbgtu",
"llvm.hexagon.A4.cmpbgtui",
"llvm.hexagon.A4.cmpheq",
"llvm.hexagon.A4.cmpheqi",
"llvm.hexagon.A4.cmphgt",
"llvm.hexagon.A4.cmphgti",
"llvm.hexagon.A4.cmphgtu",
"llvm.hexagon.A4.cmphgtui",
"llvm.hexagon.A4.combineir",
"llvm.hexagon.A4.combineri",
"llvm.hexagon.A4.cround.ri",
"llvm.hexagon.A4.cround.rr",
"llvm.hexagon.A4.modwrapu",
"llvm.hexagon.A4.orn",
"llvm.hexagon.A4.ornp",
"llvm.hexagon.A4.rcmpeq",
"llvm.hexagon.A4.rcmpeqi",
"llvm.hexagon.A4.rcmpneq",
"llvm.hexagon.A4.rcmpneqi",
"llvm.hexagon.A4.round.ri",
"llvm.hexagon.A4.round.ri.sat",
"llvm.hexagon.A4.round.rr",
"llvm.hexagon.A4.round.rr.sat",
"llvm.hexagon.A4.tlbmatch",
"llvm.hexagon.A4.vcmpbeq.any",
"llvm.hexagon.A4.vcmpbeqi",
"llvm.hexagon.A4.vcmpbgt",
"llvm.hexagon.A4.vcmpbgti",
"llvm.hexagon.A4.vcmpbgtui",
"llvm.hexagon.A4.vcmpheqi",
"llvm.hexagon.A4.vcmphgti",
"llvm.hexagon.A4.vcmphgtui",
"llvm.hexagon.A4.vcmpweqi",
"llvm.hexagon.A4.vcmpwgti",
"llvm.hexagon.A4.vcmpwgtui",
"llvm.hexagon.A4.vrmaxh",
"llvm.hexagon.A4.vrmaxuh",
"llvm.hexagon.A4.vrmaxuw",
"llvm.hexagon.A4.vrmaxw",
"llvm.hexagon.A4.vrminh",
"llvm.hexagon.A4.vrminuh",
"llvm.hexagon.A4.vrminuw",
"llvm.hexagon.A4.vrminw",
"llvm.hexagon.A5.vaddhubs",
"llvm.hexagon.A6.vcmpbeq.notany",
"llvm.hexagon.A7.clip",
"llvm.hexagon.A7.croundd.ri",
"llvm.hexagon.A7.croundd.rr",
"llvm.hexagon.A7.vclip",
"llvm.hexagon.C2.all8",
"llvm.hexagon.C2.and",
"llvm.hexagon.C2.andn",
"llvm.hexagon.C2.any8",
"llvm.hexagon.C2.bitsclr",
"llvm.hexagon.C2.bitsclri",
"llvm.hexagon.C2.bitsset",
"llvm.hexagon.C2.cmpeq",
"llvm.hexagon.C2.cmpeqi",
"llvm.hexagon.C2.cmpeqp",
"llvm.hexagon.C2.cmpgei",
"llvm.hexagon.C2.cmpgeui",
"llvm.hexagon.C2.cmpgt",
"llvm.hexagon.C2.cmpgti",
"llvm.hexagon.C2.cmpgtp",
"llvm.hexagon.C2.cmpgtu",
"llvm.hexagon.C2.cmpgtui",
"llvm.hexagon.C2.cmpgtup",
"llvm.hexagon.C2.cmplt",
"llvm.hexagon.C2.cmpltu",
"llvm.hexagon.C2.mask",
"llvm.hexagon.C2.mux",
"llvm.hexagon.C2.muxii",
"llvm.hexagon.C2.muxir",
"llvm.hexagon.C2.muxri",
"llvm.hexagon.C2.not",
"llvm.hexagon.C2.or",
"llvm.hexagon.C2.orn",
"llvm.hexagon.C2.pxfer.map",
"llvm.hexagon.C2.tfrpr",
"llvm.hexagon.C2.tfrrp",
"llvm.hexagon.C2.vitpack",
"llvm.hexagon.C2.vmux",
"llvm.hexagon.C2.xor",
"llvm.hexagon.C4.and.and",
"llvm.hexagon.C4.and.andn",
"llvm.hexagon.C4.and.or",
"llvm.hexagon.C4.and.orn",
"llvm.hexagon.C4.cmplte",
"llvm.hexagon.C4.cmpltei",
"llvm.hexagon.C4.cmplteu",
"llvm.hexagon.C4.cmplteui",
"llvm.hexagon.C4.cmpneq",
"llvm.hexagon.C4.cmpneqi",
"llvm.hexagon.C4.fastcorner9",
"llvm.hexagon.C4.fastcorner9.not",
"llvm.hexagon.C4.nbitsclr",
"llvm.hexagon.C4.nbitsclri",
"llvm.hexagon.C4.nbitsset",
"llvm.hexagon.C4.or.and",
"llvm.hexagon.C4.or.andn",
"llvm.hexagon.C4.or.or",
"llvm.hexagon.C4.or.orn",
"llvm.hexagon.F2.conv.d2df",
"llvm.hexagon.F2.conv.d2sf",
"llvm.hexagon.F2.conv.df2d",
"llvm.hexagon.F2.conv.df2d.chop",
"llvm.hexagon.F2.conv.df2sf",
"llvm.hexagon.F2.conv.df2ud",
"llvm.hexagon.F2.conv.df2ud.chop",
"llvm.hexagon.F2.conv.df2uw",
"llvm.hexagon.F2.conv.df2uw.chop",
"llvm.hexagon.F2.conv.df2w",
"llvm.hexagon.F2.conv.df2w.chop",
"llvm.hexagon.F2.conv.sf2d",
"llvm.hexagon.F2.conv.sf2d.chop",
"llvm.hexagon.F2.conv.sf2df",
"llvm.hexagon.F2.conv.sf2ud",
"llvm.hexagon.F2.conv.sf2ud.chop",
"llvm.hexagon.F2.conv.sf2uw",
"llvm.hexagon.F2.conv.sf2uw.chop",
"llvm.hexagon.F2.conv.sf2w",
"llvm.hexagon.F2.conv.sf2w.chop",
"llvm.hexagon.F2.conv.ud2df",
"llvm.hexagon.F2.conv.ud2sf",
"llvm.hexagon.F2.conv.uw2df",
"llvm.hexagon.F2.conv.uw2sf",
"llvm.hexagon.F2.conv.w2df",
"llvm.hexagon.F2.conv.w2sf",
"llvm.hexagon.F2.dfadd",
"llvm.hexagon.F2.dfclass",
"llvm.hexagon.F2.dfcmpeq",
"llvm.hexagon.F2.dfcmpge",
"llvm.hexagon.F2.dfcmpgt",
"llvm.hexagon.F2.dfcmpuo",
"llvm.hexagon.F2.dfimm.n",
"llvm.hexagon.F2.dfimm.p",
"llvm.hexagon.F2.dfmax",
"llvm.hexagon.F2.dfmin",
"llvm.hexagon.F2.dfmpyfix",
"llvm.hexagon.F2.dfmpyhh",
"llvm.hexagon.F2.dfmpylh",
"llvm.hexagon.F2.dfmpyll",
"llvm.hexagon.F2.dfsub",
"llvm.hexagon.F2.sfadd",
"llvm.hexagon.F2.sfclass",
"llvm.hexagon.F2.sfcmpeq",
"llvm.hexagon.F2.sfcmpge",
"llvm.hexagon.F2.sfcmpgt",
"llvm.hexagon.F2.sfcmpuo",
"llvm.hexagon.F2.sffixupd",
"llvm.hexagon.F2.sffixupn",
"llvm.hexagon.F2.sffixupr",
"llvm.hexagon.F2.sffma",
"llvm.hexagon.F2.sffma.lib",
"llvm.hexagon.F2.sffma.sc",
"llvm.hexagon.F2.sffms",
"llvm.hexagon.F2.sffms.lib",
"llvm.hexagon.F2.sfimm.n",
"llvm.hexagon.F2.sfimm.p",
"llvm.hexagon.F2.sfmax",
"llvm.hexagon.F2.sfmin",
"llvm.hexagon.F2.sfmpy",
"llvm.hexagon.F2.sfsub",
"llvm.hexagon.L2.loadrb.pbr",
"llvm.hexagon.L2.loadrb.pci",
"llvm.hexagon.L2.loadrb.pcr",
"llvm.hexagon.L2.loadrd.pbr",
"llvm.hexagon.L2.loadrd.pci",
"llvm.hexagon.L2.loadrd.pcr",
"llvm.hexagon.L2.loadrh.pbr",
"llvm.hexagon.L2.loadrh.pci",
"llvm.hexagon.L2.loadrh.pcr",
"llvm.hexagon.L2.loadri.pbr",
"llvm.hexagon.L2.loadri.pci",
"llvm.hexagon.L2.loadri.pcr",
"llvm.hexagon.L2.loadrub.pbr",
"llvm.hexagon.L2.loadrub.pci",
"llvm.hexagon.L2.loadrub.pcr",
"llvm.hexagon.L2.loadruh.pbr",
"llvm.hexagon.L2.loadruh.pci",
"llvm.hexagon.L2.loadruh.pcr",
"llvm.hexagon.L2.loadw.locked",
"llvm.hexagon.L4.loadd.locked",
"llvm.hexagon.M2.acci",
"llvm.hexagon.M2.accii",
"llvm.hexagon.M2.cmaci.s0",
"llvm.hexagon.M2.cmacr.s0",
"llvm.hexagon.M2.cmacs.s0",
"llvm.hexagon.M2.cmacs.s1",
"llvm.hexagon.M2.cmacsc.s0",
"llvm.hexagon.M2.cmacsc.s1",
"llvm.hexagon.M2.cmpyi.s0",
"llvm.hexagon.M2.cmpyr.s0",
"llvm.hexagon.M2.cmpyrs.s0",
"llvm.hexagon.M2.cmpyrs.s1",
"llvm.hexagon.M2.cmpyrsc.s0",
"llvm.hexagon.M2.cmpyrsc.s1",
"llvm.hexagon.M2.cmpys.s0",
"llvm.hexagon.M2.cmpys.s1",
"llvm.hexagon.M2.cmpysc.s0",
"llvm.hexagon.M2.cmpysc.s1",
"llvm.hexagon.M2.cnacs.s0",
"llvm.hexagon.M2.cnacs.s1",
"llvm.hexagon.M2.cnacsc.s0",
"llvm.hexagon.M2.cnacsc.s1",
"llvm.hexagon.M2.dpmpyss.acc.s0",
"llvm.hexagon.M2.dpmpyss.nac.s0",
"llvm.hexagon.M2.dpmpyss.rnd.s0",
"llvm.hexagon.M2.dpmpyss.s0",
"llvm.hexagon.M2.dpmpyuu.acc.s0",
"llvm.hexagon.M2.dpmpyuu.nac.s0",
"llvm.hexagon.M2.dpmpyuu.s0",
"llvm.hexagon.M2.hmmpyh.rs1",
"llvm.hexagon.M2.hmmpyh.s1",
"llvm.hexagon.M2.hmmpyl.rs1",
"llvm.hexagon.M2.hmmpyl.s1",
"llvm.hexagon.M2.maci",
"llvm.hexagon.M2.macsin",
"llvm.hexagon.M2.macsip",
"llvm.hexagon.M2.mmachs.rs0",
"llvm.hexagon.M2.mmachs.rs1",
"llvm.hexagon.M2.mmachs.s0",
"llvm.hexagon.M2.mmachs.s1",
"llvm.hexagon.M2.mmacls.rs0",
"llvm.hexagon.M2.mmacls.rs1",
"llvm.hexagon.M2.mmacls.s0",
"llvm.hexagon.M2.mmacls.s1",
"llvm.hexagon.M2.mmacuhs.rs0",
"llvm.hexagon.M2.mmacuhs.rs1",
"llvm.hexagon.M2.mmacuhs.s0",
"llvm.hexagon.M2.mmacuhs.s1",
"llvm.hexagon.M2.mmaculs.rs0",
"llvm.hexagon.M2.mmaculs.rs1",
"llvm.hexagon.M2.mmaculs.s0",
"llvm.hexagon.M2.mmaculs.s1",
"llvm.hexagon.M2.mmpyh.rs0",
"llvm.hexagon.M2.mmpyh.rs1",
"llvm.hexagon.M2.mmpyh.s0",
"llvm.hexagon.M2.mmpyh.s1",
"llvm.hexagon.M2.mmpyl.rs0",
"llvm.hexagon.M2.mmpyl.rs1",
"llvm.hexagon.M2.mmpyl.s0",
"llvm.hexagon.M2.mmpyl.s1",
"llvm.hexagon.M2.mmpyuh.rs0",
"llvm.hexagon.M2.mmpyuh.rs1",
"llvm.hexagon.M2.mmpyuh.s0",
"llvm.hexagon.M2.mmpyuh.s1",
"llvm.hexagon.M2.mmpyul.rs0",
"llvm.hexagon.M2.mmpyul.rs1",
"llvm.hexagon.M2.mmpyul.s0",
"llvm.hexagon.M2.mmpyul.s1",
"llvm.hexagon.M2.mnaci",
"llvm.hexagon.M2.mpy.acc.hh.s0",
"llvm.hexagon.M2.mpy.acc.hh.s1",
"llvm.hexagon.M2.mpy.acc.hl.s0",
"llvm.hexagon.M2.mpy.acc.hl.s1",
"llvm.hexagon.M2.mpy.acc.lh.s0",
"llvm.hexagon.M2.mpy.acc.lh.s1",
"llvm.hexagon.M2.mpy.acc.ll.s0",
"llvm.hexagon.M2.mpy.acc.ll.s1",
"llvm.hexagon.M2.mpy.acc.sat.hh.s0",
"llvm.hexagon.M2.mpy.acc.sat.hh.s1",
"llvm.hexagon.M2.mpy.acc.sat.hl.s0",
"llvm.hexagon.M2.mpy.acc.sat.hl.s1",
"llvm.hexagon.M2.mpy.acc.sat.lh.s0",
"llvm.hexagon.M2.mpy.acc.sat.lh.s1",
"llvm.hexagon.M2.mpy.acc.sat.ll.s0",
"llvm.hexagon.M2.mpy.acc.sat.ll.s1",
"llvm.hexagon.M2.mpy.hh.s0",
"llvm.hexagon.M2.mpy.hh.s1",
"llvm.hexagon.M2.mpy.hl.s0",
"llvm.hexagon.M2.mpy.hl.s1",
"llvm.hexagon.M2.mpy.lh.s0",
"llvm.hexagon.M2.mpy.lh.s1",
"llvm.hexagon.M2.mpy.ll.s0",
"llvm.hexagon.M2.mpy.ll.s1",
"llvm.hexagon.M2.mpy.nac.hh.s0",
"llvm.hexagon.M2.mpy.nac.hh.s1",
"llvm.hexagon.M2.mpy.nac.hl.s0",
"llvm.hexagon.M2.mpy.nac.hl.s1",
"llvm.hexagon.M2.mpy.nac.lh.s0",
"llvm.hexagon.M2.mpy.nac.lh.s1",
"llvm.hexagon.M2.mpy.nac.ll.s0",
"llvm.hexagon.M2.mpy.nac.ll.s1",
"llvm.hexagon.M2.mpy.nac.sat.hh.s0",
"llvm.hexagon.M2.mpy.nac.sat.hh.s1",
"llvm.hexagon.M2.mpy.nac.sat.hl.s0",
"llvm.hexagon.M2.mpy.nac.sat.hl.s1",
"llvm.hexagon.M2.mpy.nac.sat.lh.s0",
"llvm.hexagon.M2.mpy.nac.sat.lh.s1",
"llvm.hexagon.M2.mpy.nac.sat.ll.s0",
"llvm.hexagon.M2.mpy.nac.sat.ll.s1",
"llvm.hexagon.M2.mpy.rnd.hh.s0",
"llvm.hexagon.M2.mpy.rnd.hh.s1",
"llvm.hexagon.M2.mpy.rnd.hl.s0",
"llvm.hexagon.M2.mpy.rnd.hl.s1",
"llvm.hexagon.M2.mpy.rnd.lh.s0",
"llvm.hexagon.M2.mpy.rnd.lh.s1",
"llvm.hexagon.M2.mpy.rnd.ll.s0",
"llvm.hexagon.M2.mpy.rnd.ll.s1",
"llvm.hexagon.M2.mpy.sat.hh.s0",
"llvm.hexagon.M2.mpy.sat.hh.s1",
"llvm.hexagon.M2.mpy.sat.hl.s0",
"llvm.hexagon.M2.mpy.sat.hl.s1",
"llvm.hexagon.M2.mpy.sat.lh.s0",
"llvm.hexagon.M2.mpy.sat.lh.s1",
"llvm.hexagon.M2.mpy.sat.ll.s0",
"llvm.hexagon.M2.mpy.sat.ll.s1",
"llvm.hexagon.M2.mpy.sat.rnd.hh.s0",
"llvm.hexagon.M2.mpy.sat.rnd.hh.s1",
"llvm.hexagon.M2.mpy.sat.rnd.hl.s0",
"llvm.hexagon.M2.mpy.sat.rnd.hl.s1",
"llvm.hexagon.M2.mpy.sat.rnd.lh.s0",
"llvm.hexagon.M2.mpy.sat.rnd.lh.s1",
"llvm.hexagon.M2.mpy.sat.rnd.ll.s0",
"llvm.hexagon.M2.mpy.sat.rnd.ll.s1",
"llvm.hexagon.M2.mpy.up",
"llvm.hexagon.M2.mpy.up.s1",
"llvm.hexagon.M2.mpy.up.s1.sat",
"llvm.hexagon.M2.mpyd.acc.hh.s0",
"llvm.hexagon.M2.mpyd.acc.hh.s1",
"llvm.hexagon.M2.mpyd.acc.hl.s0",
"llvm.hexagon.M2.mpyd.acc.hl.s1",
"llvm.hexagon.M2.mpyd.acc.lh.s0",
"llvm.hexagon.M2.mpyd.acc.lh.s1",
"llvm.hexagon.M2.mpyd.acc.ll.s0",
"llvm.hexagon.M2.mpyd.acc.ll.s1",
"llvm.hexagon.M2.mpyd.hh.s0",
"llvm.hexagon.M2.mpyd.hh.s1",
"llvm.hexagon.M2.mpyd.hl.s0",
"llvm.hexagon.M2.mpyd.hl.s1",
"llvm.hexagon.M2.mpyd.lh.s0",
"llvm.hexagon.M2.mpyd.lh.s1",
"llvm.hexagon.M2.mpyd.ll.s0",
"llvm.hexagon.M2.mpyd.ll.s1",
"llvm.hexagon.M2.mpyd.nac.hh.s0",
"llvm.hexagon.M2.mpyd.nac.hh.s1",
"llvm.hexagon.M2.mpyd.nac.hl.s0",
"llvm.hexagon.M2.mpyd.nac.hl.s1",
"llvm.hexagon.M2.mpyd.nac.lh.s0",
"llvm.hexagon.M2.mpyd.nac.lh.s1",
"llvm.hexagon.M2.mpyd.nac.ll.s0",
"llvm.hexagon.M2.mpyd.nac.ll.s1",
"llvm.hexagon.M2.mpyd.rnd.hh.s0",
"llvm.hexagon.M2.mpyd.rnd.hh.s1",
"llvm.hexagon.M2.mpyd.rnd.hl.s0",
"llvm.hexagon.M2.mpyd.rnd.hl.s1",
"llvm.hexagon.M2.mpyd.rnd.lh.s0",
"llvm.hexagon.M2.mpyd.rnd.lh.s1",
"llvm.hexagon.M2.mpyd.rnd.ll.s0",
"llvm.hexagon.M2.mpyd.rnd.ll.s1",
"llvm.hexagon.M2.mpyi",
"llvm.hexagon.M2.mpysmi",
"llvm.hexagon.M2.mpysu.up",
"llvm.hexagon.M2.mpyu.acc.hh.s0",
"llvm.hexagon.M2.mpyu.acc.hh.s1",
"llvm.hexagon.M2.mpyu.acc.hl.s0",
"llvm.hexagon.M2.mpyu.acc.hl.s1",
"llvm.hexagon.M2.mpyu.acc.lh.s0",
"llvm.hexagon.M2.mpyu.acc.lh.s1",
"llvm.hexagon.M2.mpyu.acc.ll.s0",
"llvm.hexagon.M2.mpyu.acc.ll.s1",
"llvm.hexagon.M2.mpyu.hh.s0",
"llvm.hexagon.M2.mpyu.hh.s1",
"llvm.hexagon.M2.mpyu.hl.s0",
"llvm.hexagon.M2.mpyu.hl.s1",
"llvm.hexagon.M2.mpyu.lh.s0",
"llvm.hexagon.M2.mpyu.lh.s1",
"llvm.hexagon.M2.mpyu.ll.s0",
"llvm.hexagon.M2.mpyu.ll.s1",
"llvm.hexagon.M2.mpyu.nac.hh.s0",
"llvm.hexagon.M2.mpyu.nac.hh.s1",
"llvm.hexagon.M2.mpyu.nac.hl.s0",
"llvm.hexagon.M2.mpyu.nac.hl.s1",
"llvm.hexagon.M2.mpyu.nac.lh.s0",
"llvm.hexagon.M2.mpyu.nac.lh.s1",
"llvm.hexagon.M2.mpyu.nac.ll.s0",
"llvm.hexagon.M2.mpyu.nac.ll.s1",
"llvm.hexagon.M2.mpyu.up",
"llvm.hexagon.M2.mpyud.acc.hh.s0",
"llvm.hexagon.M2.mpyud.acc.hh.s1",
"llvm.hexagon.M2.mpyud.acc.hl.s0",
"llvm.hexagon.M2.mpyud.acc.hl.s1",
"llvm.hexagon.M2.mpyud.acc.lh.s0",
"llvm.hexagon.M2.mpyud.acc.lh.s1",
"llvm.hexagon.M2.mpyud.acc.ll.s0",
"llvm.hexagon.M2.mpyud.acc.ll.s1",
"llvm.hexagon.M2.mpyud.hh.s0",
"llvm.hexagon.M2.mpyud.hh.s1",
"llvm.hexagon.M2.mpyud.hl.s0",
"llvm.hexagon.M2.mpyud.hl.s1",
"llvm.hexagon.M2.mpyud.lh.s0",
"llvm.hexagon.M2.mpyud.lh.s1",
"llvm.hexagon.M2.mpyud.ll.s0",
"llvm.hexagon.M2.mpyud.ll.s1",
"llvm.hexagon.M2.mpyud.nac.hh.s0",
"llvm.hexagon.M2.mpyud.nac.hh.s1",
"llvm.hexagon.M2.mpyud.nac.hl.s0",
"llvm.hexagon.M2.mpyud.nac.hl.s1",
"llvm.hexagon.M2.mpyud.nac.lh.s0",
"llvm.hexagon.M2.mpyud.nac.lh.s1",
"llvm.hexagon.M2.mpyud.nac.ll.s0",
"llvm.hexagon.M2.mpyud.nac.ll.s1",
"llvm.hexagon.M2.mpyui",
"llvm.hexagon.M2.nacci",
"llvm.hexagon.M2.naccii",
"llvm.hexagon.M2.subacc",
"llvm.hexagon.M2.vabsdiffh",
"llvm.hexagon.M2.vabsdiffw",
"llvm.hexagon.M2.vcmac.s0.sat.i",
"llvm.hexagon.M2.vcmac.s0.sat.r",
"llvm.hexagon.M2.vcmpy.s0.sat.i",
"llvm.hexagon.M2.vcmpy.s0.sat.r",
"llvm.hexagon.M2.vcmpy.s1.sat.i",
"llvm.hexagon.M2.vcmpy.s1.sat.r",
"llvm.hexagon.M2.vdmacs.s0",
"llvm.hexagon.M2.vdmacs.s1",
"llvm.hexagon.M2.vdmpyrs.s0",
"llvm.hexagon.M2.vdmpyrs.s1",
"llvm.hexagon.M2.vdmpys.s0",
"llvm.hexagon.M2.vdmpys.s1",
"llvm.hexagon.M2.vmac2",
"llvm.hexagon.M2.vmac2es",
"llvm.hexagon.M2.vmac2es.s0",
"llvm.hexagon.M2.vmac2es.s1",
"llvm.hexagon.M2.vmac2s.s0",
"llvm.hexagon.M2.vmac2s.s1",
"llvm.hexagon.M2.vmac2su.s0",
"llvm.hexagon.M2.vmac2su.s1",
"llvm.hexagon.M2.vmpy2es.s0",
"llvm.hexagon.M2.vmpy2es.s1",
"llvm.hexagon.M2.vmpy2s.s0",
"llvm.hexagon.M2.vmpy2s.s0pack",
"llvm.hexagon.M2.vmpy2s.s1",
"llvm.hexagon.M2.vmpy2s.s1pack",
"llvm.hexagon.M2.vmpy2su.s0",
"llvm.hexagon.M2.vmpy2su.s1",
"llvm.hexagon.M2.vraddh",
"llvm.hexagon.M2.vradduh",
"llvm.hexagon.M2.vrcmaci.s0",
"llvm.hexagon.M2.vrcmaci.s0c",
"llvm.hexagon.M2.vrcmacr.s0",
"llvm.hexagon.M2.vrcmacr.s0c",
"llvm.hexagon.M2.vrcmpyi.s0",
"llvm.hexagon.M2.vrcmpyi.s0c",
"llvm.hexagon.M2.vrcmpyr.s0",
"llvm.hexagon.M2.vrcmpyr.s0c",
"llvm.hexagon.M2.vrcmpys.acc.s1",
"llvm.hexagon.M2.vrcmpys.s1",
"llvm.hexagon.M2.vrcmpys.s1rp",
"llvm.hexagon.M2.vrmac.s0",
"llvm.hexagon.M2.vrmpy.s0",
"llvm.hexagon.M2.xor.xacc",
"llvm.hexagon.M4.and.and",
"llvm.hexagon.M4.and.andn",
"llvm.hexagon.M4.and.or",
"llvm.hexagon.M4.and.xor",
"llvm.hexagon.M4.cmpyi.wh",
"llvm.hexagon.M4.cmpyi.whc",
"llvm.hexagon.M4.cmpyr.wh",
"llvm.hexagon.M4.cmpyr.whc",
"llvm.hexagon.M4.mac.up.s1.sat",
"llvm.hexagon.M4.mpyri.addi",
"llvm.hexagon.M4.mpyri.addr",
"llvm.hexagon.M4.mpyri.addr.u2",
"llvm.hexagon.M4.mpyrr.addi",
"llvm.hexagon.M4.mpyrr.addr",
"llvm.hexagon.M4.nac.up.s1.sat",
"llvm.hexagon.M4.or.and",
"llvm.hexagon.M4.or.andn",
"llvm.hexagon.M4.or.or",
"llvm.hexagon.M4.or.xor",
"llvm.hexagon.M4.pmpyw",
"llvm.hexagon.M4.pmpyw.acc",
"llvm.hexagon.M4.vpmpyh",
"llvm.hexagon.M4.vpmpyh.acc",
"llvm.hexagon.M4.vrmpyeh.acc.s0",
"llvm.hexagon.M4.vrmpyeh.acc.s1",
"llvm.hexagon.M4.vrmpyeh.s0",
"llvm.hexagon.M4.vrmpyeh.s1",
"llvm.hexagon.M4.vrmpyoh.acc.s0",
"llvm.hexagon.M4.vrmpyoh.acc.s1",
"llvm.hexagon.M4.vrmpyoh.s0",
"llvm.hexagon.M4.vrmpyoh.s1",
"llvm.hexagon.M4.xor.and",
"llvm.hexagon.M4.xor.andn",
"llvm.hexagon.M4.xor.or",
"llvm.hexagon.M4.xor.xacc",
"llvm.hexagon.M5.vdmacbsu",
"llvm.hexagon.M5.vdmpybsu",
"llvm.hexagon.M5.vmacbsu",
"llvm.hexagon.M5.vmacbuu",
"llvm.hexagon.M5.vmpybsu",
"llvm.hexagon.M5.vmpybuu",
"llvm.hexagon.M5.vrmacbsu",
"llvm.hexagon.M5.vrmacbuu",
"llvm.hexagon.M5.vrmpybsu",
"llvm.hexagon.M5.vrmpybuu",
"llvm.hexagon.M6.vabsdiffb",
"llvm.hexagon.M6.vabsdiffub",
"llvm.hexagon.M7.dcmpyiw",
"llvm.hexagon.M7.dcmpyiw.acc",
"llvm.hexagon.M7.dcmpyiwc",
"llvm.hexagon.M7.dcmpyiwc.acc",
"llvm.hexagon.M7.dcmpyrw",
"llvm.hexagon.M7.dcmpyrw.acc",
"llvm.hexagon.M7.dcmpyrwc",
"llvm.hexagon.M7.dcmpyrwc.acc",
"llvm.hexagon.M7.vdmpy",
"llvm.hexagon.M7.vdmpy.acc",
"llvm.hexagon.M7.wcmpyiw",
"llvm.hexagon.M7.wcmpyiw.rnd",
"llvm.hexagon.M7.wcmpyiwc",
"llvm.hexagon.M7.wcmpyiwc.rnd",
"llvm.hexagon.M7.wcmpyrw",
"llvm.hexagon.M7.wcmpyrw.rnd",
"llvm.hexagon.M7.wcmpyrwc",
"llvm.hexagon.M7.wcmpyrwc.rnd",
"llvm.hexagon.S2.addasl.rrri",
"llvm.hexagon.S2.asl.i.p",
"llvm.hexagon.S2.asl.i.p.acc",
"llvm.hexagon.S2.asl.i.p.and",
"llvm.hexagon.S2.asl.i.p.nac",
"llvm.hexagon.S2.asl.i.p.or",
"llvm.hexagon.S2.asl.i.p.xacc",
"llvm.hexagon.S2.asl.i.r",
"llvm.hexagon.S2.asl.i.r.acc",
"llvm.hexagon.S2.asl.i.r.and",
"llvm.hexagon.S2.asl.i.r.nac",
"llvm.hexagon.S2.asl.i.r.or",
"llvm.hexagon.S2.asl.i.r.sat",
"llvm.hexagon.S2.asl.i.r.xacc",
"llvm.hexagon.S2.asl.i.vh",
"llvm.hexagon.S2.asl.i.vw",
"llvm.hexagon.S2.asl.r.p",
"llvm.hexagon.S2.asl.r.p.acc",
"llvm.hexagon.S2.asl.r.p.and",
"llvm.hexagon.S2.asl.r.p.nac",
"llvm.hexagon.S2.asl.r.p.or",
"llvm.hexagon.S2.asl.r.p.xor",
"llvm.hexagon.S2.asl.r.r",
"llvm.hexagon.S2.asl.r.r.acc",
"llvm.hexagon.S2.asl.r.r.and",
"llvm.hexagon.S2.asl.r.r.nac",
"llvm.hexagon.S2.asl.r.r.or",
"llvm.hexagon.S2.asl.r.r.sat",
"llvm.hexagon.S2.asl.r.vh",
"llvm.hexagon.S2.asl.r.vw",
"llvm.hexagon.S2.asr.i.p",
"llvm.hexagon.S2.asr.i.p.acc",
"llvm.hexagon.S2.asr.i.p.and",
"llvm.hexagon.S2.asr.i.p.nac",
"llvm.hexagon.S2.asr.i.p.or",
"llvm.hexagon.S2.asr.i.p.rnd",
"llvm.hexagon.S2.asr.i.p.rnd.goodsyntax",
"llvm.hexagon.S2.asr.i.r",
"llvm.hexagon.S2.asr.i.r.acc",
"llvm.hexagon.S2.asr.i.r.and",
"llvm.hexagon.S2.asr.i.r.nac",
"llvm.hexagon.S2.asr.i.r.or",
"llvm.hexagon.S2.asr.i.r.rnd",
"llvm.hexagon.S2.asr.i.r.rnd.goodsyntax",
"llvm.hexagon.S2.asr.i.svw.trun",
"llvm.hexagon.S2.asr.i.vh",
"llvm.hexagon.S2.asr.i.vw",
"llvm.hexagon.S2.asr.r.p",
"llvm.hexagon.S2.asr.r.p.acc",
"llvm.hexagon.S2.asr.r.p.and",
"llvm.hexagon.S2.asr.r.p.nac",
"llvm.hexagon.S2.asr.r.p.or",
"llvm.hexagon.S2.asr.r.p.xor",
"llvm.hexagon.S2.asr.r.r",
"llvm.hexagon.S2.asr.r.r.acc",
"llvm.hexagon.S2.asr.r.r.and",
"llvm.hexagon.S2.asr.r.r.nac",
"llvm.hexagon.S2.asr.r.r.or",
"llvm.hexagon.S2.asr.r.r.sat",
"llvm.hexagon.S2.asr.r.svw.trun",
"llvm.hexagon.S2.asr.r.vh",
"llvm.hexagon.S2.asr.r.vw",
"llvm.hexagon.S2.brev",
"llvm.hexagon.S2.brevp",
"llvm.hexagon.S2.cl0",
"llvm.hexagon.S2.cl0p",
"llvm.hexagon.S2.cl1",
"llvm.hexagon.S2.cl1p",
"llvm.hexagon.S2.clb",
"llvm.hexagon.S2.clbnorm",
"llvm.hexagon.S2.clbp",
"llvm.hexagon.S2.clrbit.i",
"llvm.hexagon.S2.clrbit.r",
"llvm.hexagon.S2.ct0",
"llvm.hexagon.S2.ct0p",
"llvm.hexagon.S2.ct1",
"llvm.hexagon.S2.ct1p",
"llvm.hexagon.S2.deinterleave",
"llvm.hexagon.S2.extractu",
"llvm.hexagon.S2.extractu.rp",
"llvm.hexagon.S2.extractup",
"llvm.hexagon.S2.extractup.rp",
"llvm.hexagon.S2.insert",
"llvm.hexagon.S2.insert.rp",
"llvm.hexagon.S2.insertp",
"llvm.hexagon.S2.insertp.rp",
"llvm.hexagon.S2.interleave",
"llvm.hexagon.S2.lfsp",
"llvm.hexagon.S2.lsl.r.p",
"llvm.hexagon.S2.lsl.r.p.acc",
"llvm.hexagon.S2.lsl.r.p.and",
"llvm.hexagon.S2.lsl.r.p.nac",
"llvm.hexagon.S2.lsl.r.p.or",
"llvm.hexagon.S2.lsl.r.p.xor",
"llvm.hexagon.S2.lsl.r.r",
"llvm.hexagon.S2.lsl.r.r.acc",
"llvm.hexagon.S2.lsl.r.r.and",
"llvm.hexagon.S2.lsl.r.r.nac",
"llvm.hexagon.S2.lsl.r.r.or",
"llvm.hexagon.S2.lsl.r.vh",
"llvm.hexagon.S2.lsl.r.vw",
"llvm.hexagon.S2.lsr.i.p",
"llvm.hexagon.S2.lsr.i.p.acc",
"llvm.hexagon.S2.lsr.i.p.and",
"llvm.hexagon.S2.lsr.i.p.nac",
"llvm.hexagon.S2.lsr.i.p.or",
"llvm.hexagon.S2.lsr.i.p.xacc",
"llvm.hexagon.S2.lsr.i.r",
"llvm.hexagon.S2.lsr.i.r.acc",
"llvm.hexagon.S2.lsr.i.r.and",
"llvm.hexagon.S2.lsr.i.r.nac",
"llvm.hexagon.S2.lsr.i.r.or",
"llvm.hexagon.S2.lsr.i.r.xacc",
"llvm.hexagon.S2.lsr.i.vh",
"llvm.hexagon.S2.lsr.i.vw",
"llvm.hexagon.S2.lsr.r.p",
"llvm.hexagon.S2.lsr.r.p.acc",
"llvm.hexagon.S2.lsr.r.p.and",
"llvm.hexagon.S2.lsr.r.p.nac",
"llvm.hexagon.S2.lsr.r.p.or",
"llvm.hexagon.S2.lsr.r.p.xor",
"llvm.hexagon.S2.lsr.r.r",
"llvm.hexagon.S2.lsr.r.r.acc",
"llvm.hexagon.S2.lsr.r.r.and",
"llvm.hexagon.S2.lsr.r.r.nac",
"llvm.hexagon.S2.lsr.r.r.or",
"llvm.hexagon.S2.lsr.r.vh",
"llvm.hexagon.S2.lsr.r.vw",
"llvm.hexagon.S2.mask",
"llvm.hexagon.S2.packhl",
"llvm.hexagon.S2.parityp",
"llvm.hexagon.S2.setbit.i",
"llvm.hexagon.S2.setbit.r",
"llvm.hexagon.S2.shuffeb",
"llvm.hexagon.S2.shuffeh",
"llvm.hexagon.S2.shuffob",
"llvm.hexagon.S2.shuffoh",
"llvm.hexagon.S2.storerb.pbr",
"llvm.hexagon.S2.storerb.pci",
"llvm.hexagon.S2.storerb.pcr",
"llvm.hexagon.S2.storerd.pbr",
"llvm.hexagon.S2.storerd.pci",
"llvm.hexagon.S2.storerd.pcr",
"llvm.hexagon.S2.storerf.pbr",
"llvm.hexagon.S2.storerf.pci",
"llvm.hexagon.S2.storerf.pcr",
"llvm.hexagon.S2.storerh.pbr",
"llvm.hexagon.S2.storerh.pci",
"llvm.hexagon.S2.storerh.pcr",
"llvm.hexagon.S2.storeri.pbr",
"llvm.hexagon.S2.storeri.pci",
"llvm.hexagon.S2.storeri.pcr",
"llvm.hexagon.S2.storew.locked",
"llvm.hexagon.S2.svsathb",
"llvm.hexagon.S2.svsathub",
"llvm.hexagon.S2.tableidxb.goodsyntax",
"llvm.hexagon.S2.tableidxd.goodsyntax",
"llvm.hexagon.S2.tableidxh.goodsyntax",
"llvm.hexagon.S2.tableidxw.goodsyntax",
"llvm.hexagon.S2.togglebit.i",
"llvm.hexagon.S2.togglebit.r",
"llvm.hexagon.S2.tstbit.i",
"llvm.hexagon.S2.tstbit.r",
"llvm.hexagon.S2.valignib",
"llvm.hexagon.S2.valignrb",
"llvm.hexagon.S2.vcnegh",
"llvm.hexagon.S2.vcrotate",
"llvm.hexagon.S2.vrcnegh",
"llvm.hexagon.S2.vrndpackwh",
"llvm.hexagon.S2.vrndpackwhs",
"llvm.hexagon.S2.vsathb",
"llvm.hexagon.S2.vsathb.nopack",
"llvm.hexagon.S2.vsathub",
"llvm.hexagon.S2.vsathub.nopack",
"llvm.hexagon.S2.vsatwh",
"llvm.hexagon.S2.vsatwh.nopack",
"llvm.hexagon.S2.vsatwuh",
"llvm.hexagon.S2.vsatwuh.nopack",
"llvm.hexagon.S2.vsplatrb",
"llvm.hexagon.S2.vsplatrh",
"llvm.hexagon.S2.vspliceib",
"llvm.hexagon.S2.vsplicerb",
"llvm.hexagon.S2.vsxtbh",
"llvm.hexagon.S2.vsxthw",
"llvm.hexagon.S2.vtrunehb",
"llvm.hexagon.S2.vtrunewh",
"llvm.hexagon.S2.vtrunohb",
"llvm.hexagon.S2.vtrunowh",
"llvm.hexagon.S2.vzxtbh",
"llvm.hexagon.S2.vzxthw",
"llvm.hexagon.S4.addaddi",
"llvm.hexagon.S4.addi.asl.ri",
"llvm.hexagon.S4.addi.lsr.ri",
"llvm.hexagon.S4.andi.asl.ri",
"llvm.hexagon.S4.andi.lsr.ri",
"llvm.hexagon.S4.clbaddi",
"llvm.hexagon.S4.clbpaddi",
"llvm.hexagon.S4.clbpnorm",
"llvm.hexagon.S4.extract",
"llvm.hexagon.S4.extract.rp",
"llvm.hexagon.S4.extractp",
"llvm.hexagon.S4.extractp.rp",
"llvm.hexagon.S4.lsli",
"llvm.hexagon.S4.ntstbit.i",
"llvm.hexagon.S4.ntstbit.r",
"llvm.hexagon.S4.or.andi",
"llvm.hexagon.S4.or.andix",
"llvm.hexagon.S4.or.ori",
"llvm.hexagon.S4.ori.asl.ri",
"llvm.hexagon.S4.ori.lsr.ri",
"llvm.hexagon.S4.parity",
"llvm.hexagon.S4.stored.locked",
"llvm.hexagon.S4.subaddi",
"llvm.hexagon.S4.subi.asl.ri",
"llvm.hexagon.S4.subi.lsr.ri",
"llvm.hexagon.S4.vrcrotate",
"llvm.hexagon.S4.vrcrotate.acc",
"llvm.hexagon.S4.vxaddsubh",
"llvm.hexagon.S4.vxaddsubhr",
"llvm.hexagon.S4.vxaddsubw",
"llvm.hexagon.S4.vxsubaddh",
"llvm.hexagon.S4.vxsubaddhr",
"llvm.hexagon.S4.vxsubaddw",
"llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax",
"llvm.hexagon.S5.asrhub.sat",
"llvm.hexagon.S5.popcountp",
"llvm.hexagon.S5.vasrhrnd.goodsyntax",
"llvm.hexagon.S6.rol.i.p",
"llvm.hexagon.S6.rol.i.p.acc",
"llvm.hexagon.S6.rol.i.p.and",
"llvm.hexagon.S6.rol.i.p.nac",
"llvm.hexagon.S6.rol.i.p.or",
"llvm.hexagon.S6.rol.i.p.xacc",
"llvm.hexagon.S6.rol.i.r",
"llvm.hexagon.S6.rol.i.r.acc",
"llvm.hexagon.S6.rol.i.r.and",
"llvm.hexagon.S6.rol.i.r.nac",
"llvm.hexagon.S6.rol.i.r.or",
"llvm.hexagon.S6.rol.i.r.xacc",
"llvm.hexagon.S6.vsplatrbp",
"llvm.hexagon.S6.vtrunehb.ppp",
"llvm.hexagon.S6.vtrunohb.ppp",
"llvm.hexagon.V6.extractw",
"llvm.hexagon.V6.extractw.128B",
"llvm.hexagon.V6.hi",
"llvm.hexagon.V6.hi.128B",
"llvm.hexagon.V6.lo",
"llvm.hexagon.V6.lo.128B",
"llvm.hexagon.V6.lvsplatb",
"llvm.hexagon.V6.lvsplatb.128B",
"llvm.hexagon.V6.lvsplath",
"llvm.hexagon.V6.lvsplath.128B",
"llvm.hexagon.V6.lvsplatw",
"llvm.hexagon.V6.lvsplatw.128B",
"llvm.hexagon.V6.pred.and",
"llvm.hexagon.V6.pred.and.128B",
"llvm.hexagon.V6.pred.and.n",
"llvm.hexagon.V6.pred.and.n.128B",
"llvm.hexagon.V6.pred.not",
"llvm.hexagon.V6.pred.not.128B",
"llvm.hexagon.V6.pred.or",
"llvm.hexagon.V6.pred.or.128B",
"llvm.hexagon.V6.pred.or.n",
"llvm.hexagon.V6.pred.or.n.128B",
"llvm.hexagon.V6.pred.scalar2",
"llvm.hexagon.V6.pred.scalar2.128B",
"llvm.hexagon.V6.pred.scalar2v2",
"llvm.hexagon.V6.pred.scalar2v2.128B",
"llvm.hexagon.V6.pred.typecast",
"llvm.hexagon.V6.pred.typecast.128B",
"llvm.hexagon.V6.pred.xor",
"llvm.hexagon.V6.pred.xor.128B",
"llvm.hexagon.V6.shuffeqh",
"llvm.hexagon.V6.shuffeqh.128B",
"llvm.hexagon.V6.shuffeqw",
"llvm.hexagon.V6.shuffeqw.128B",
"llvm.hexagon.V6.vS32b.nqpred.ai",
"llvm.hexagon.V6.vS32b.nqpred.ai.128B",
"llvm.hexagon.V6.vS32b.nt.nqpred.ai",
"llvm.hexagon.V6.vS32b.nt.nqpred.ai.128B",
"llvm.hexagon.V6.vS32b.nt.qpred.ai",
"llvm.hexagon.V6.vS32b.nt.qpred.ai.128B",
"llvm.hexagon.V6.vS32b.qpred.ai",
"llvm.hexagon.V6.vS32b.qpred.ai.128B",
"llvm.hexagon.V6.vabsb",
"llvm.hexagon.V6.vabsb.128B",
"llvm.hexagon.V6.vabsb.sat",
"llvm.hexagon.V6.vabsb.sat.128B",
"llvm.hexagon.V6.vabsdiffh",
"llvm.hexagon.V6.vabsdiffh.128B",
"llvm.hexagon.V6.vabsdiffub",
"llvm.hexagon.V6.vabsdiffub.128B",
"llvm.hexagon.V6.vabsdiffuh",
"llvm.hexagon.V6.vabsdiffuh.128B",
"llvm.hexagon.V6.vabsdiffw",
"llvm.hexagon.V6.vabsdiffw.128B",
"llvm.hexagon.V6.vabsh",
"llvm.hexagon.V6.vabsh.128B",
"llvm.hexagon.V6.vabsh.sat",
"llvm.hexagon.V6.vabsh.sat.128B",
"llvm.hexagon.V6.vabsw",
"llvm.hexagon.V6.vabsw.128B",
"llvm.hexagon.V6.vabsw.sat",
"llvm.hexagon.V6.vabsw.sat.128B",
"llvm.hexagon.V6.vaddb",
"llvm.hexagon.V6.vaddb.128B",
"llvm.hexagon.V6.vaddb.dv",
"llvm.hexagon.V6.vaddb.dv.128B",
"llvm.hexagon.V6.vaddbnq",
"llvm.hexagon.V6.vaddbnq.128B",
"llvm.hexagon.V6.vaddbq",
"llvm.hexagon.V6.vaddbq.128B",
"llvm.hexagon.V6.vaddbsat",
"llvm.hexagon.V6.vaddbsat.128B",
"llvm.hexagon.V6.vaddbsat.dv",
"llvm.hexagon.V6.vaddbsat.dv.128B",
"llvm.hexagon.V6.vaddcarry",
"llvm.hexagon.V6.vaddcarry.128B",
"llvm.hexagon.V6.vaddcarrysat",
"llvm.hexagon.V6.vaddcarrysat.128B",
"llvm.hexagon.V6.vaddclbh",
"llvm.hexagon.V6.vaddclbh.128B",
"llvm.hexagon.V6.vaddclbw",
"llvm.hexagon.V6.vaddclbw.128B",
"llvm.hexagon.V6.vaddh",
"llvm.hexagon.V6.vaddh.128B",
"llvm.hexagon.V6.vaddh.dv",
"llvm.hexagon.V6.vaddh.dv.128B",
"llvm.hexagon.V6.vaddhnq",
"llvm.hexagon.V6.vaddhnq.128B",
"llvm.hexagon.V6.vaddhq",
"llvm.hexagon.V6.vaddhq.128B",
"llvm.hexagon.V6.vaddhsat",
"llvm.hexagon.V6.vaddhsat.128B",
"llvm.hexagon.V6.vaddhsat.dv",
"llvm.hexagon.V6.vaddhsat.dv.128B",
"llvm.hexagon.V6.vaddhw",
"llvm.hexagon.V6.vaddhw.128B",
"llvm.hexagon.V6.vaddhw.acc",
"llvm.hexagon.V6.vaddhw.acc.128B",
"llvm.hexagon.V6.vaddubh",
"llvm.hexagon.V6.vaddubh.128B",
"llvm.hexagon.V6.vaddubh.acc",
"llvm.hexagon.V6.vaddubh.acc.128B",
"llvm.hexagon.V6.vaddubsat",
"llvm.hexagon.V6.vaddubsat.128B",
"llvm.hexagon.V6.vaddubsat.dv",
"llvm.hexagon.V6.vaddubsat.dv.128B",
"llvm.hexagon.V6.vaddububb.sat",
"llvm.hexagon.V6.vaddububb.sat.128B",
"llvm.hexagon.V6.vadduhsat",
"llvm.hexagon.V6.vadduhsat.128B",
"llvm.hexagon.V6.vadduhsat.dv",
"llvm.hexagon.V6.vadduhsat.dv.128B",
"llvm.hexagon.V6.vadduhw",
"llvm.hexagon.V6.vadduhw.128B",
"llvm.hexagon.V6.vadduhw.acc",
"llvm.hexagon.V6.vadduhw.acc.128B",
"llvm.hexagon.V6.vadduwsat",
"llvm.hexagon.V6.vadduwsat.128B",
"llvm.hexagon.V6.vadduwsat.dv",
"llvm.hexagon.V6.vadduwsat.dv.128B",
"llvm.hexagon.V6.vaddw",
"llvm.hexagon.V6.vaddw.128B",
"llvm.hexagon.V6.vaddw.dv",
"llvm.hexagon.V6.vaddw.dv.128B",
"llvm.hexagon.V6.vaddwnq",
"llvm.hexagon.V6.vaddwnq.128B",
"llvm.hexagon.V6.vaddwq",
"llvm.hexagon.V6.vaddwq.128B",
"llvm.hexagon.V6.vaddwsat",
"llvm.hexagon.V6.vaddwsat.128B",
"llvm.hexagon.V6.vaddwsat.dv",
"llvm.hexagon.V6.vaddwsat.dv.128B",
"llvm.hexagon.V6.valignb",
"llvm.hexagon.V6.valignb.128B",
"llvm.hexagon.V6.valignbi",
"llvm.hexagon.V6.valignbi.128B",
"llvm.hexagon.V6.vand",
"llvm.hexagon.V6.vand.128B",
"llvm.hexagon.V6.vandnqrt",
"llvm.hexagon.V6.vandnqrt.128B",
"llvm.hexagon.V6.vandnqrt.acc",
"llvm.hexagon.V6.vandnqrt.acc.128B",
"llvm.hexagon.V6.vandqrt",
"llvm.hexagon.V6.vandqrt.128B",
"llvm.hexagon.V6.vandqrt.acc",
"llvm.hexagon.V6.vandqrt.acc.128B",
"llvm.hexagon.V6.vandvnqv",
"llvm.hexagon.V6.vandvnqv.128B",
"llvm.hexagon.V6.vandvqv",
"llvm.hexagon.V6.vandvqv.128B",
"llvm.hexagon.V6.vandvrt",
"llvm.hexagon.V6.vandvrt.128B",
"llvm.hexagon.V6.vandvrt.acc",
"llvm.hexagon.V6.vandvrt.acc.128B",
"llvm.hexagon.V6.vaslh",
"llvm.hexagon.V6.vaslh.128B",
"llvm.hexagon.V6.vaslh.acc",
"llvm.hexagon.V6.vaslh.acc.128B",
"llvm.hexagon.V6.vaslhv",
"llvm.hexagon.V6.vaslhv.128B",
"llvm.hexagon.V6.vaslw",
"llvm.hexagon.V6.vaslw.128B",
"llvm.hexagon.V6.vaslw.acc",
"llvm.hexagon.V6.vaslw.acc.128B",
"llvm.hexagon.V6.vaslwv",
"llvm.hexagon.V6.vaslwv.128B",
"llvm.hexagon.V6.vasr.into",
"llvm.hexagon.V6.vasr.into.128B",
"llvm.hexagon.V6.vasrh",
"llvm.hexagon.V6.vasrh.128B",
"llvm.hexagon.V6.vasrh.acc",
"llvm.hexagon.V6.vasrh.acc.128B",
"llvm.hexagon.V6.vasrhbrndsat",
"llvm.hexagon.V6.vasrhbrndsat.128B",
"llvm.hexagon.V6.vasrhbsat",
"llvm.hexagon.V6.vasrhbsat.128B",
"llvm.hexagon.V6.vasrhubrndsat",
"llvm.hexagon.V6.vasrhubrndsat.128B",
"llvm.hexagon.V6.vasrhubsat",
"llvm.hexagon.V6.vasrhubsat.128B",
"llvm.hexagon.V6.vasrhv",
"llvm.hexagon.V6.vasrhv.128B",
"llvm.hexagon.V6.vasruhubrndsat",
"llvm.hexagon.V6.vasruhubrndsat.128B",
"llvm.hexagon.V6.vasruhubsat",
"llvm.hexagon.V6.vasruhubsat.128B",
"llvm.hexagon.V6.vasruwuhrndsat",
"llvm.hexagon.V6.vasruwuhrndsat.128B",
"llvm.hexagon.V6.vasruwuhsat",
"llvm.hexagon.V6.vasruwuhsat.128B",
"llvm.hexagon.V6.vasrw",
"llvm.hexagon.V6.vasrw.128B",
"llvm.hexagon.V6.vasrw.acc",
"llvm.hexagon.V6.vasrw.acc.128B",
"llvm.hexagon.V6.vasrwh",
"llvm.hexagon.V6.vasrwh.128B",
"llvm.hexagon.V6.vasrwhrndsat",
"llvm.hexagon.V6.vasrwhrndsat.128B",
"llvm.hexagon.V6.vasrwhsat",
"llvm.hexagon.V6.vasrwhsat.128B",
"llvm.hexagon.V6.vasrwuhrndsat",
"llvm.hexagon.V6.vasrwuhrndsat.128B",
"llvm.hexagon.V6.vasrwuhsat",
"llvm.hexagon.V6.vasrwuhsat.128B",
"llvm.hexagon.V6.vasrwv",
"llvm.hexagon.V6.vasrwv.128B",
"llvm.hexagon.V6.vassign",
"llvm.hexagon.V6.vassign.128B",
"llvm.hexagon.V6.vassignp",
"llvm.hexagon.V6.vassignp.128B",
"llvm.hexagon.V6.vavgb",
"llvm.hexagon.V6.vavgb.128B",
"llvm.hexagon.V6.vavgbrnd",
"llvm.hexagon.V6.vavgbrnd.128B",
"llvm.hexagon.V6.vavgh",
"llvm.hexagon.V6.vavgh.128B",
"llvm.hexagon.V6.vavghrnd",
"llvm.hexagon.V6.vavghrnd.128B",
"llvm.hexagon.V6.vavgub",
"llvm.hexagon.V6.vavgub.128B",
"llvm.hexagon.V6.vavgubrnd",
"llvm.hexagon.V6.vavgubrnd.128B",
"llvm.hexagon.V6.vavguh",
"llvm.hexagon.V6.vavguh.128B",
"llvm.hexagon.V6.vavguhrnd",
"llvm.hexagon.V6.vavguhrnd.128B",
"llvm.hexagon.V6.vavguw",
"llvm.hexagon.V6.vavguw.128B",
"llvm.hexagon.V6.vavguwrnd",
"llvm.hexagon.V6.vavguwrnd.128B",
"llvm.hexagon.V6.vavgw",
"llvm.hexagon.V6.vavgw.128B",
"llvm.hexagon.V6.vavgwrnd",
"llvm.hexagon.V6.vavgwrnd.128B",
"llvm.hexagon.V6.vcl0h",
"llvm.hexagon.V6.vcl0h.128B",
"llvm.hexagon.V6.vcl0w",
"llvm.hexagon.V6.vcl0w.128B",
"llvm.hexagon.V6.vcombine",
"llvm.hexagon.V6.vcombine.128B",
"llvm.hexagon.V6.vd0",
"llvm.hexagon.V6.vd0.128B",
"llvm.hexagon.V6.vdd0",
"llvm.hexagon.V6.vdd0.128B",
"llvm.hexagon.V6.vdealb",
"llvm.hexagon.V6.vdealb.128B",
"llvm.hexagon.V6.vdealb4w",
"llvm.hexagon.V6.vdealb4w.128B",
"llvm.hexagon.V6.vdealh",
"llvm.hexagon.V6.vdealh.128B",
"llvm.hexagon.V6.vdealvdd",
"llvm.hexagon.V6.vdealvdd.128B",
"llvm.hexagon.V6.vdelta",
"llvm.hexagon.V6.vdelta.128B",
"llvm.hexagon.V6.vdmpybus",
"llvm.hexagon.V6.vdmpybus.128B",
"llvm.hexagon.V6.vdmpybus.acc",
"llvm.hexagon.V6.vdmpybus.acc.128B",
"llvm.hexagon.V6.vdmpybus.dv",
"llvm.hexagon.V6.vdmpybus.dv.128B",
"llvm.hexagon.V6.vdmpybus.dv.acc",
"llvm.hexagon.V6.vdmpybus.dv.acc.128B",
"llvm.hexagon.V6.vdmpyhb",
"llvm.hexagon.V6.vdmpyhb.128B",
"llvm.hexagon.V6.vdmpyhb.acc",
"llvm.hexagon.V6.vdmpyhb.acc.128B",
"llvm.hexagon.V6.vdmpyhb.dv",
"llvm.hexagon.V6.vdmpyhb.dv.128B",
"llvm.hexagon.V6.vdmpyhb.dv.acc",
"llvm.hexagon.V6.vdmpyhb.dv.acc.128B",
"llvm.hexagon.V6.vdmpyhisat",
"llvm.hexagon.V6.vdmpyhisat.128B",
"llvm.hexagon.V6.vdmpyhisat.acc",
"llvm.hexagon.V6.vdmpyhisat.acc.128B",
"llvm.hexagon.V6.vdmpyhsat",
"llvm.hexagon.V6.vdmpyhsat.128B",
"llvm.hexagon.V6.vdmpyhsat.acc",
"llvm.hexagon.V6.vdmpyhsat.acc.128B",
"llvm.hexagon.V6.vdmpyhsuisat",
"llvm.hexagon.V6.vdmpyhsuisat.128B",
"llvm.hexagon.V6.vdmpyhsuisat.acc",
"llvm.hexagon.V6.vdmpyhsuisat.acc.128B",
"llvm.hexagon.V6.vdmpyhsusat",
"llvm.hexagon.V6.vdmpyhsusat.128B",
"llvm.hexagon.V6.vdmpyhsusat.acc",
"llvm.hexagon.V6.vdmpyhsusat.acc.128B",
"llvm.hexagon.V6.vdmpyhvsat",
"llvm.hexagon.V6.vdmpyhvsat.128B",
"llvm.hexagon.V6.vdmpyhvsat.acc",
"llvm.hexagon.V6.vdmpyhvsat.acc.128B",
"llvm.hexagon.V6.vdsaduh",
"llvm.hexagon.V6.vdsaduh.128B",
"llvm.hexagon.V6.vdsaduh.acc",
"llvm.hexagon.V6.vdsaduh.acc.128B",
"llvm.hexagon.V6.veqb",
"llvm.hexagon.V6.veqb.128B",
"llvm.hexagon.V6.veqb.and",
"llvm.hexagon.V6.veqb.and.128B",
"llvm.hexagon.V6.veqb.or",
"llvm.hexagon.V6.veqb.or.128B",
"llvm.hexagon.V6.veqb.xor",
"llvm.hexagon.V6.veqb.xor.128B",
"llvm.hexagon.V6.veqh",
"llvm.hexagon.V6.veqh.128B",
"llvm.hexagon.V6.veqh.and",
"llvm.hexagon.V6.veqh.and.128B",
"llvm.hexagon.V6.veqh.or",
"llvm.hexagon.V6.veqh.or.128B",
"llvm.hexagon.V6.veqh.xor",
"llvm.hexagon.V6.veqh.xor.128B",
"llvm.hexagon.V6.veqw",
"llvm.hexagon.V6.veqw.128B",
"llvm.hexagon.V6.veqw.and",
"llvm.hexagon.V6.veqw.and.128B",
"llvm.hexagon.V6.veqw.or",
"llvm.hexagon.V6.veqw.or.128B",
"llvm.hexagon.V6.veqw.xor",
"llvm.hexagon.V6.veqw.xor.128B",
"llvm.hexagon.V6.vgathermh",
"llvm.hexagon.V6.vgathermh.128B",
"llvm.hexagon.V6.vgathermhq",
"llvm.hexagon.V6.vgathermhq.128B",
"llvm.hexagon.V6.vgathermhw",
"llvm.hexagon.V6.vgathermhw.128B",
"llvm.hexagon.V6.vgathermhwq",
"llvm.hexagon.V6.vgathermhwq.128B",
"llvm.hexagon.V6.vgathermw",
"llvm.hexagon.V6.vgathermw.128B",
"llvm.hexagon.V6.vgathermwq",
"llvm.hexagon.V6.vgathermwq.128B",
"llvm.hexagon.V6.vgtb",
"llvm.hexagon.V6.vgtb.128B",
"llvm.hexagon.V6.vgtb.and",
"llvm.hexagon.V6.vgtb.and.128B",
"llvm.hexagon.V6.vgtb.or",
"llvm.hexagon.V6.vgtb.or.128B",
"llvm.hexagon.V6.vgtb.xor",
"llvm.hexagon.V6.vgtb.xor.128B",
"llvm.hexagon.V6.vgth",
"llvm.hexagon.V6.vgth.128B",
"llvm.hexagon.V6.vgth.and",
"llvm.hexagon.V6.vgth.and.128B",
"llvm.hexagon.V6.vgth.or",
"llvm.hexagon.V6.vgth.or.128B",
"llvm.hexagon.V6.vgth.xor",
"llvm.hexagon.V6.vgth.xor.128B",
"llvm.hexagon.V6.vgtub",
"llvm.hexagon.V6.vgtub.128B",
"llvm.hexagon.V6.vgtub.and",
"llvm.hexagon.V6.vgtub.and.128B",
"llvm.hexagon.V6.vgtub.or",
"llvm.hexagon.V6.vgtub.or.128B",
"llvm.hexagon.V6.vgtub.xor",
"llvm.hexagon.V6.vgtub.xor.128B",
"llvm.hexagon.V6.vgtuh",
"llvm.hexagon.V6.vgtuh.128B",
"llvm.hexagon.V6.vgtuh.and",
"llvm.hexagon.V6.vgtuh.and.128B",
"llvm.hexagon.V6.vgtuh.or",
"llvm.hexagon.V6.vgtuh.or.128B",
"llvm.hexagon.V6.vgtuh.xor",
"llvm.hexagon.V6.vgtuh.xor.128B",
"llvm.hexagon.V6.vgtuw",
"llvm.hexagon.V6.vgtuw.128B",
"llvm.hexagon.V6.vgtuw.and",
"llvm.hexagon.V6.vgtuw.and.128B",
"llvm.hexagon.V6.vgtuw.or",
"llvm.hexagon.V6.vgtuw.or.128B",
"llvm.hexagon.V6.vgtuw.xor",
"llvm.hexagon.V6.vgtuw.xor.128B",
"llvm.hexagon.V6.vgtw",
"llvm.hexagon.V6.vgtw.128B",
"llvm.hexagon.V6.vgtw.and",
"llvm.hexagon.V6.vgtw.and.128B",
"llvm.hexagon.V6.vgtw.or",
"llvm.hexagon.V6.vgtw.or.128B",
"llvm.hexagon.V6.vgtw.xor",
"llvm.hexagon.V6.vgtw.xor.128B",
"llvm.hexagon.V6.vinsertwr",
"llvm.hexagon.V6.vinsertwr.128B",
"llvm.hexagon.V6.vlalignb",
"llvm.hexagon.V6.vlalignb.128B",
"llvm.hexagon.V6.vlalignbi",
"llvm.hexagon.V6.vlalignbi.128B",
"llvm.hexagon.V6.vlsrb",
"llvm.hexagon.V6.vlsrb.128B",
"llvm.hexagon.V6.vlsrh",
"llvm.hexagon.V6.vlsrh.128B",
"llvm.hexagon.V6.vlsrhv",
"llvm.hexagon.V6.vlsrhv.128B",
"llvm.hexagon.V6.vlsrw",
"llvm.hexagon.V6.vlsrw.128B",
"llvm.hexagon.V6.vlsrwv",
"llvm.hexagon.V6.vlsrwv.128B",
"llvm.hexagon.V6.vlut4",
"llvm.hexagon.V6.vlut4.128B",
"llvm.hexagon.V6.vlutvvb",
"llvm.hexagon.V6.vlutvvb.128B",
"llvm.hexagon.V6.vlutvvb.nm",
"llvm.hexagon.V6.vlutvvb.nm.128B",
"llvm.hexagon.V6.vlutvvb.oracc",
"llvm.hexagon.V6.vlutvvb.oracc.128B",
"llvm.hexagon.V6.vlutvvb.oracci",
"llvm.hexagon.V6.vlutvvb.oracci.128B",
"llvm.hexagon.V6.vlutvvbi",
"llvm.hexagon.V6.vlutvvbi.128B",
"llvm.hexagon.V6.vlutvwh",
"llvm.hexagon.V6.vlutvwh.128B",
"llvm.hexagon.V6.vlutvwh.nm",
"llvm.hexagon.V6.vlutvwh.nm.128B",
"llvm.hexagon.V6.vlutvwh.oracc",
"llvm.hexagon.V6.vlutvwh.oracc.128B",
"llvm.hexagon.V6.vlutvwh.oracci",
"llvm.hexagon.V6.vlutvwh.oracci.128B",
"llvm.hexagon.V6.vlutvwhi",
"llvm.hexagon.V6.vlutvwhi.128B",
"llvm.hexagon.V6.vmaskedstorenq",
"llvm.hexagon.V6.vmaskedstorenq.128B",
"llvm.hexagon.V6.vmaskedstorentnq",
"llvm.hexagon.V6.vmaskedstorentnq.128B",
"llvm.hexagon.V6.vmaskedstorentq",
"llvm.hexagon.V6.vmaskedstorentq.128B",
"llvm.hexagon.V6.vmaskedstoreq",
"llvm.hexagon.V6.vmaskedstoreq.128B",
"llvm.hexagon.V6.vmaxb",
"llvm.hexagon.V6.vmaxb.128B",
"llvm.hexagon.V6.vmaxh",
"llvm.hexagon.V6.vmaxh.128B",
"llvm.hexagon.V6.vmaxub",
"llvm.hexagon.V6.vmaxub.128B",
"llvm.hexagon.V6.vmaxuh",
"llvm.hexagon.V6.vmaxuh.128B",
"llvm.hexagon.V6.vmaxw",
"llvm.hexagon.V6.vmaxw.128B",
"llvm.hexagon.V6.vminb",
"llvm.hexagon.V6.vminb.128B",
"llvm.hexagon.V6.vminh",
"llvm.hexagon.V6.vminh.128B",
"llvm.hexagon.V6.vminub",
"llvm.hexagon.V6.vminub.128B",
"llvm.hexagon.V6.vminuh",
"llvm.hexagon.V6.vminuh.128B",
"llvm.hexagon.V6.vminw",
"llvm.hexagon.V6.vminw.128B",
"llvm.hexagon.V6.vmpabus",
"llvm.hexagon.V6.vmpabus.128B",
"llvm.hexagon.V6.vmpabus.acc",
"llvm.hexagon.V6.vmpabus.acc.128B",
"llvm.hexagon.V6.vmpabusv",
"llvm.hexagon.V6.vmpabusv.128B",
"llvm.hexagon.V6.vmpabuu",
"llvm.hexagon.V6.vmpabuu.128B",
"llvm.hexagon.V6.vmpabuu.acc",
"llvm.hexagon.V6.vmpabuu.acc.128B",
"llvm.hexagon.V6.vmpabuuv",
"llvm.hexagon.V6.vmpabuuv.128B",
"llvm.hexagon.V6.vmpahb",
"llvm.hexagon.V6.vmpahb.128B",
"llvm.hexagon.V6.vmpahb.acc",
"llvm.hexagon.V6.vmpahb.acc.128B",
"llvm.hexagon.V6.vmpahhsat",
"llvm.hexagon.V6.vmpahhsat.128B",
"llvm.hexagon.V6.vmpauhb",
"llvm.hexagon.V6.vmpauhb.128B",
"llvm.hexagon.V6.vmpauhb.acc",
"llvm.hexagon.V6.vmpauhb.acc.128B",
"llvm.hexagon.V6.vmpauhuhsat",
"llvm.hexagon.V6.vmpauhuhsat.128B",
"llvm.hexagon.V6.vmpsuhuhsat",
"llvm.hexagon.V6.vmpsuhuhsat.128B",
"llvm.hexagon.V6.vmpybus",
"llvm.hexagon.V6.vmpybus.128B",
"llvm.hexagon.V6.vmpybus.acc",
"llvm.hexagon.V6.vmpybus.acc.128B",
"llvm.hexagon.V6.vmpybusv",
"llvm.hexagon.V6.vmpybusv.128B",
"llvm.hexagon.V6.vmpybusv.acc",
"llvm.hexagon.V6.vmpybusv.acc.128B",
"llvm.hexagon.V6.vmpybv",
"llvm.hexagon.V6.vmpybv.128B",
"llvm.hexagon.V6.vmpybv.acc",
"llvm.hexagon.V6.vmpybv.acc.128B",
"llvm.hexagon.V6.vmpyewuh",
"llvm.hexagon.V6.vmpyewuh.128B",
"llvm.hexagon.V6.vmpyewuh.64",
"llvm.hexagon.V6.vmpyewuh.64.128B",
"llvm.hexagon.V6.vmpyh",
"llvm.hexagon.V6.vmpyh.128B",
"llvm.hexagon.V6.vmpyh.acc",
"llvm.hexagon.V6.vmpyh.acc.128B",
"llvm.hexagon.V6.vmpyhsat.acc",
"llvm.hexagon.V6.vmpyhsat.acc.128B",
"llvm.hexagon.V6.vmpyhsrs",
"llvm.hexagon.V6.vmpyhsrs.128B",
"llvm.hexagon.V6.vmpyhss",
"llvm.hexagon.V6.vmpyhss.128B",
"llvm.hexagon.V6.vmpyhus",
"llvm.hexagon.V6.vmpyhus.128B",
"llvm.hexagon.V6.vmpyhus.acc",
"llvm.hexagon.V6.vmpyhus.acc.128B",
"llvm.hexagon.V6.vmpyhv",
"llvm.hexagon.V6.vmpyhv.128B",
"llvm.hexagon.V6.vmpyhv.acc",
"llvm.hexagon.V6.vmpyhv.acc.128B",
"llvm.hexagon.V6.vmpyhvsrs",
"llvm.hexagon.V6.vmpyhvsrs.128B",
"llvm.hexagon.V6.vmpyieoh",
"llvm.hexagon.V6.vmpyieoh.128B",
"llvm.hexagon.V6.vmpyiewh.acc",
"llvm.hexagon.V6.vmpyiewh.acc.128B",
"llvm.hexagon.V6.vmpyiewuh",
"llvm.hexagon.V6.vmpyiewuh.128B",
"llvm.hexagon.V6.vmpyiewuh.acc",
"llvm.hexagon.V6.vmpyiewuh.acc.128B",
"llvm.hexagon.V6.vmpyih",
"llvm.hexagon.V6.vmpyih.128B",
"llvm.hexagon.V6.vmpyih.acc",
"llvm.hexagon.V6.vmpyih.acc.128B",
"llvm.hexagon.V6.vmpyihb",
"llvm.hexagon.V6.vmpyihb.128B",
"llvm.hexagon.V6.vmpyihb.acc",
"llvm.hexagon.V6.vmpyihb.acc.128B",
"llvm.hexagon.V6.vmpyiowh",
"llvm.hexagon.V6.vmpyiowh.128B",
"llvm.hexagon.V6.vmpyiwb",
"llvm.hexagon.V6.vmpyiwb.128B",
"llvm.hexagon.V6.vmpyiwb.acc",
"llvm.hexagon.V6.vmpyiwb.acc.128B",
"llvm.hexagon.V6.vmpyiwh",
"llvm.hexagon.V6.vmpyiwh.128B",
"llvm.hexagon.V6.vmpyiwh.acc",
"llvm.hexagon.V6.vmpyiwh.acc.128B",
"llvm.hexagon.V6.vmpyiwub",
"llvm.hexagon.V6.vmpyiwub.128B",
"llvm.hexagon.V6.vmpyiwub.acc",
"llvm.hexagon.V6.vmpyiwub.acc.128B",
"llvm.hexagon.V6.vmpyowh",
"llvm.hexagon.V6.vmpyowh.128B",
"llvm.hexagon.V6.vmpyowh.64.acc",
"llvm.hexagon.V6.vmpyowh.64.acc.128B",
"llvm.hexagon.V6.vmpyowh.rnd",
"llvm.hexagon.V6.vmpyowh.rnd.128B",
"llvm.hexagon.V6.vmpyowh.rnd.sacc",
"llvm.hexagon.V6.vmpyowh.rnd.sacc.128B",
"llvm.hexagon.V6.vmpyowh.sacc",
"llvm.hexagon.V6.vmpyowh.sacc.128B",
"llvm.hexagon.V6.vmpyub",
"llvm.hexagon.V6.vmpyub.128B",
"llvm.hexagon.V6.vmpyub.acc",
"llvm.hexagon.V6.vmpyub.acc.128B",
"llvm.hexagon.V6.vmpyubv",
"llvm.hexagon.V6.vmpyubv.128B",
"llvm.hexagon.V6.vmpyubv.acc",
"llvm.hexagon.V6.vmpyubv.acc.128B",
"llvm.hexagon.V6.vmpyuh",
"llvm.hexagon.V6.vmpyuh.128B",
"llvm.hexagon.V6.vmpyuh.acc",
"llvm.hexagon.V6.vmpyuh.acc.128B",
"llvm.hexagon.V6.vmpyuhe",
"llvm.hexagon.V6.vmpyuhe.128B",
"llvm.hexagon.V6.vmpyuhe.acc",
"llvm.hexagon.V6.vmpyuhe.acc.128B",
"llvm.hexagon.V6.vmpyuhv",
"llvm.hexagon.V6.vmpyuhv.128B",
"llvm.hexagon.V6.vmpyuhv.acc",
"llvm.hexagon.V6.vmpyuhv.acc.128B",
"llvm.hexagon.V6.vmux",
"llvm.hexagon.V6.vmux.128B",
"llvm.hexagon.V6.vnavgb",
"llvm.hexagon.V6.vnavgb.128B",
"llvm.hexagon.V6.vnavgh",
"llvm.hexagon.V6.vnavgh.128B",
"llvm.hexagon.V6.vnavgub",
"llvm.hexagon.V6.vnavgub.128B",
"llvm.hexagon.V6.vnavgw",
"llvm.hexagon.V6.vnavgw.128B",
"llvm.hexagon.V6.vnormamth",
"llvm.hexagon.V6.vnormamth.128B",
"llvm.hexagon.V6.vnormamtw",
"llvm.hexagon.V6.vnormamtw.128B",
"llvm.hexagon.V6.vnot",
"llvm.hexagon.V6.vnot.128B",
"llvm.hexagon.V6.vor",
"llvm.hexagon.V6.vor.128B",
"llvm.hexagon.V6.vpackeb",
"llvm.hexagon.V6.vpackeb.128B",
"llvm.hexagon.V6.vpackeh",
"llvm.hexagon.V6.vpackeh.128B",
"llvm.hexagon.V6.vpackhb.sat",
"llvm.hexagon.V6.vpackhb.sat.128B",
"llvm.hexagon.V6.vpackhub.sat",
"llvm.hexagon.V6.vpackhub.sat.128B",
"llvm.hexagon.V6.vpackob",
"llvm.hexagon.V6.vpackob.128B",
"llvm.hexagon.V6.vpackoh",
"llvm.hexagon.V6.vpackoh.128B",
"llvm.hexagon.V6.vpackwh.sat",
"llvm.hexagon.V6.vpackwh.sat.128B",
"llvm.hexagon.V6.vpackwuh.sat",
"llvm.hexagon.V6.vpackwuh.sat.128B",
"llvm.hexagon.V6.vpopcounth",
"llvm.hexagon.V6.vpopcounth.128B",
"llvm.hexagon.V6.vprefixqb",
"llvm.hexagon.V6.vprefixqb.128B",
"llvm.hexagon.V6.vprefixqh",
"llvm.hexagon.V6.vprefixqh.128B",
"llvm.hexagon.V6.vprefixqw",
"llvm.hexagon.V6.vprefixqw.128B",
"llvm.hexagon.V6.vrdelta",
"llvm.hexagon.V6.vrdelta.128B",
"llvm.hexagon.V6.vrmpybub.rtt",
"llvm.hexagon.V6.vrmpybub.rtt.128B",
"llvm.hexagon.V6.vrmpybub.rtt.acc",
"llvm.hexagon.V6.vrmpybub.rtt.acc.128B",
"llvm.hexagon.V6.vrmpybus",
"llvm.hexagon.V6.vrmpybus.128B",
"llvm.hexagon.V6.vrmpybus.acc",
"llvm.hexagon.V6.vrmpybus.acc.128B",
"llvm.hexagon.V6.vrmpybusi",
"llvm.hexagon.V6.vrmpybusi.128B",
"llvm.hexagon.V6.vrmpybusi.acc",
"llvm.hexagon.V6.vrmpybusi.acc.128B",
"llvm.hexagon.V6.vrmpybusv",
"llvm.hexagon.V6.vrmpybusv.128B",
"llvm.hexagon.V6.vrmpybusv.acc",
"llvm.hexagon.V6.vrmpybusv.acc.128B",
"llvm.hexagon.V6.vrmpybv",
"llvm.hexagon.V6.vrmpybv.128B",
"llvm.hexagon.V6.vrmpybv.acc",
"llvm.hexagon.V6.vrmpybv.acc.128B",
"llvm.hexagon.V6.vrmpyub",
"llvm.hexagon.V6.vrmpyub.128B",
"llvm.hexagon.V6.vrmpyub.acc",
"llvm.hexagon.V6.vrmpyub.acc.128B",
"llvm.hexagon.V6.vrmpyub.rtt",
"llvm.hexagon.V6.vrmpyub.rtt.128B",
"llvm.hexagon.V6.vrmpyub.rtt.acc",
"llvm.hexagon.V6.vrmpyub.rtt.acc.128B",
"llvm.hexagon.V6.vrmpyubi",
"llvm.hexagon.V6.vrmpyubi.128B",
"llvm.hexagon.V6.vrmpyubi.acc",
"llvm.hexagon.V6.vrmpyubi.acc.128B",
"llvm.hexagon.V6.vrmpyubv",
"llvm.hexagon.V6.vrmpyubv.128B",
"llvm.hexagon.V6.vrmpyubv.acc",
"llvm.hexagon.V6.vrmpyubv.acc.128B",
"llvm.hexagon.V6.vror",
"llvm.hexagon.V6.vror.128B",
"llvm.hexagon.V6.vrotr",
"llvm.hexagon.V6.vrotr.128B",
"llvm.hexagon.V6.vroundhb",
"llvm.hexagon.V6.vroundhb.128B",
"llvm.hexagon.V6.vroundhub",
"llvm.hexagon.V6.vroundhub.128B",
"llvm.hexagon.V6.vrounduhub",
"llvm.hexagon.V6.vrounduhub.128B",
"llvm.hexagon.V6.vrounduwuh",
"llvm.hexagon.V6.vrounduwuh.128B",
"llvm.hexagon.V6.vroundwh",
"llvm.hexagon.V6.vroundwh.128B",
"llvm.hexagon.V6.vroundwuh",
"llvm.hexagon.V6.vroundwuh.128B",
"llvm.hexagon.V6.vrsadubi",
"llvm.hexagon.V6.vrsadubi.128B",
"llvm.hexagon.V6.vrsadubi.acc",
"llvm.hexagon.V6.vrsadubi.acc.128B",
"llvm.hexagon.V6.vsatdw",
"llvm.hexagon.V6.vsatdw.128B",
"llvm.hexagon.V6.vsathub",
"llvm.hexagon.V6.vsathub.128B",
"llvm.hexagon.V6.vsatuwuh",
"llvm.hexagon.V6.vsatuwuh.128B",
"llvm.hexagon.V6.vsatwh",
"llvm.hexagon.V6.vsatwh.128B",
"llvm.hexagon.V6.vsb",
"llvm.hexagon.V6.vsb.128B",
"llvm.hexagon.V6.vscattermh",
"llvm.hexagon.V6.vscattermh.128B",
"llvm.hexagon.V6.vscattermh.add",
"llvm.hexagon.V6.vscattermh.add.128B",
"llvm.hexagon.V6.vscattermhq",
"llvm.hexagon.V6.vscattermhq.128B",
"llvm.hexagon.V6.vscattermhw",
"llvm.hexagon.V6.vscattermhw.128B",
"llvm.hexagon.V6.vscattermhw.add",
"llvm.hexagon.V6.vscattermhw.add.128B",
"llvm.hexagon.V6.vscattermhwq",
"llvm.hexagon.V6.vscattermhwq.128B",
"llvm.hexagon.V6.vscattermw",
"llvm.hexagon.V6.vscattermw.128B",
"llvm.hexagon.V6.vscattermw.add",
"llvm.hexagon.V6.vscattermw.add.128B",
"llvm.hexagon.V6.vscattermwq",
"llvm.hexagon.V6.vscattermwq.128B",
"llvm.hexagon.V6.vsh",
"llvm.hexagon.V6.vsh.128B",
"llvm.hexagon.V6.vshufeh",
"llvm.hexagon.V6.vshufeh.128B",
"llvm.hexagon.V6.vshuffb",
"llvm.hexagon.V6.vshuffb.128B",
"llvm.hexagon.V6.vshuffeb",
"llvm.hexagon.V6.vshuffeb.128B",
"llvm.hexagon.V6.vshuffh",
"llvm.hexagon.V6.vshuffh.128B",
"llvm.hexagon.V6.vshuffob",
"llvm.hexagon.V6.vshuffob.128B",
"llvm.hexagon.V6.vshuffvdd",
"llvm.hexagon.V6.vshuffvdd.128B",
"llvm.hexagon.V6.vshufoeb",
"llvm.hexagon.V6.vshufoeb.128B",
"llvm.hexagon.V6.vshufoeh",
"llvm.hexagon.V6.vshufoeh.128B",
"llvm.hexagon.V6.vshufoh",
"llvm.hexagon.V6.vshufoh.128B",
"llvm.hexagon.V6.vsubb",
"llvm.hexagon.V6.vsubb.128B",
"llvm.hexagon.V6.vsubb.dv",
"llvm.hexagon.V6.vsubb.dv.128B",
"llvm.hexagon.V6.vsubbnq",
"llvm.hexagon.V6.vsubbnq.128B",
"llvm.hexagon.V6.vsubbq",
"llvm.hexagon.V6.vsubbq.128B",
"llvm.hexagon.V6.vsubbsat",
"llvm.hexagon.V6.vsubbsat.128B",
"llvm.hexagon.V6.vsubbsat.dv",
"llvm.hexagon.V6.vsubbsat.dv.128B",
"llvm.hexagon.V6.vsubcarry",
"llvm.hexagon.V6.vsubcarry.128B",
"llvm.hexagon.V6.vsubh",
"llvm.hexagon.V6.vsubh.128B",
"llvm.hexagon.V6.vsubh.dv",
"llvm.hexagon.V6.vsubh.dv.128B",
"llvm.hexagon.V6.vsubhnq",
"llvm.hexagon.V6.vsubhnq.128B",
"llvm.hexagon.V6.vsubhq",
"llvm.hexagon.V6.vsubhq.128B",
"llvm.hexagon.V6.vsubhsat",
"llvm.hexagon.V6.vsubhsat.128B",
"llvm.hexagon.V6.vsubhsat.dv",
"llvm.hexagon.V6.vsubhsat.dv.128B",
"llvm.hexagon.V6.vsubhw",
"llvm.hexagon.V6.vsubhw.128B",
"llvm.hexagon.V6.vsububh",
"llvm.hexagon.V6.vsububh.128B",
"llvm.hexagon.V6.vsububsat",
"llvm.hexagon.V6.vsububsat.128B",
"llvm.hexagon.V6.vsububsat.dv",
"llvm.hexagon.V6.vsububsat.dv.128B",
"llvm.hexagon.V6.vsubububb.sat",
"llvm.hexagon.V6.vsubububb.sat.128B",
"llvm.hexagon.V6.vsubuhsat",
"llvm.hexagon.V6.vsubuhsat.128B",
"llvm.hexagon.V6.vsubuhsat.dv",
"llvm.hexagon.V6.vsubuhsat.dv.128B",
"llvm.hexagon.V6.vsubuhw",
"llvm.hexagon.V6.vsubuhw.128B",
"llvm.hexagon.V6.vsubuwsat",
"llvm.hexagon.V6.vsubuwsat.128B",
"llvm.hexagon.V6.vsubuwsat.dv",
"llvm.hexagon.V6.vsubuwsat.dv.128B",
"llvm.hexagon.V6.vsubw",
"llvm.hexagon.V6.vsubw.128B",
"llvm.hexagon.V6.vsubw.dv",
"llvm.hexagon.V6.vsubw.dv.128B",
"llvm.hexagon.V6.vsubwnq",
"llvm.hexagon.V6.vsubwnq.128B",
"llvm.hexagon.V6.vsubwq",
"llvm.hexagon.V6.vsubwq.128B",
"llvm.hexagon.V6.vsubwsat",
"llvm.hexagon.V6.vsubwsat.128B",
"llvm.hexagon.V6.vsubwsat.dv",
"llvm.hexagon.V6.vsubwsat.dv.128B",
"llvm.hexagon.V6.vswap",
"llvm.hexagon.V6.vswap.128B",
"llvm.hexagon.V6.vtmpyb",
"llvm.hexagon.V6.vtmpyb.128B",
"llvm.hexagon.V6.vtmpyb.acc",
"llvm.hexagon.V6.vtmpyb.acc.128B",
"llvm.hexagon.V6.vtmpybus",
"llvm.hexagon.V6.vtmpybus.128B",
"llvm.hexagon.V6.vtmpybus.acc",
"llvm.hexagon.V6.vtmpybus.acc.128B",
"llvm.hexagon.V6.vtmpyhb",
"llvm.hexagon.V6.vtmpyhb.128B",
"llvm.hexagon.V6.vtmpyhb.acc",
"llvm.hexagon.V6.vtmpyhb.acc.128B",
"llvm.hexagon.V6.vunpackb",
"llvm.hexagon.V6.vunpackb.128B",
"llvm.hexagon.V6.vunpackh",
"llvm.hexagon.V6.vunpackh.128B",
"llvm.hexagon.V6.vunpackob",
"llvm.hexagon.V6.vunpackob.128B",
"llvm.hexagon.V6.vunpackoh",
"llvm.hexagon.V6.vunpackoh.128B",
"llvm.hexagon.V6.vunpackub",
"llvm.hexagon.V6.vunpackub.128B",
"llvm.hexagon.V6.vunpackuh",
"llvm.hexagon.V6.vunpackuh.128B",
"llvm.hexagon.V6.vxor",
"llvm.hexagon.V6.vxor.128B",
"llvm.hexagon.V6.vzb",
"llvm.hexagon.V6.vzb.128B",
"llvm.hexagon.V6.vzh",
"llvm.hexagon.V6.vzh.128B",
"llvm.hexagon.Y2.dccleana",
"llvm.hexagon.Y2.dccleaninva",
"llvm.hexagon.Y2.dcfetch",
"llvm.hexagon.Y2.dcinva",
"llvm.hexagon.Y2.dczeroa",
"llvm.hexagon.Y4.l2fetch",
"llvm.hexagon.Y5.l2fetch",
"llvm.hexagon.circ.ldb",
"llvm.hexagon.circ.ldd",
"llvm.hexagon.circ.ldh",
"llvm.hexagon.circ.ldub",
"llvm.hexagon.circ.lduh",
"llvm.hexagon.circ.ldw",
"llvm.hexagon.circ.stb",
"llvm.hexagon.circ.std",
"llvm.hexagon.circ.sth",
"llvm.hexagon.circ.sthhi",
"llvm.hexagon.circ.stw",
"llvm.hexagon.prefetch",
"llvm.hexagon.vmemcpy",
"llvm.hexagon.vmemset",
"llvm.mips.absq.s.ph",
"llvm.mips.absq.s.qb",
"llvm.mips.absq.s.w",
"llvm.mips.add.a.b",
"llvm.mips.add.a.d",
"llvm.mips.add.a.h",
"llvm.mips.add.a.w",
"llvm.mips.addq.ph",
"llvm.mips.addq.s.ph",
"llvm.mips.addq.s.w",
"llvm.mips.addqh.ph",
"llvm.mips.addqh.r.ph",
"llvm.mips.addqh.r.w",
"llvm.mips.addqh.w",
"llvm.mips.adds.a.b",
"llvm.mips.adds.a.d",
"llvm.mips.adds.a.h",
"llvm.mips.adds.a.w",
"llvm.mips.adds.s.b",
"llvm.mips.adds.s.d",
"llvm.mips.adds.s.h",
"llvm.mips.adds.s.w",
"llvm.mips.adds.u.b",
"llvm.mips.adds.u.d",
"llvm.mips.adds.u.h",
"llvm.mips.adds.u.w",
"llvm.mips.addsc",
"llvm.mips.addu.ph",
"llvm.mips.addu.qb",
"llvm.mips.addu.s.ph",
"llvm.mips.addu.s.qb",
"llvm.mips.adduh.qb",
"llvm.mips.adduh.r.qb",
"llvm.mips.addv.b",
"llvm.mips.addv.d",
"llvm.mips.addv.h",
"llvm.mips.addv.w",
"llvm.mips.addvi.b",
"llvm.mips.addvi.d",
"llvm.mips.addvi.h",
"llvm.mips.addvi.w",
"llvm.mips.addwc",
"llvm.mips.and.v",
"llvm.mips.andi.b",
"llvm.mips.append",
"llvm.mips.asub.s.b",
"llvm.mips.asub.s.d",
"llvm.mips.asub.s.h",
"llvm.mips.asub.s.w",
"llvm.mips.asub.u.b",
"llvm.mips.asub.u.d",
"llvm.mips.asub.u.h",
"llvm.mips.asub.u.w",
"llvm.mips.ave.s.b",
"llvm.mips.ave.s.d",
"llvm.mips.ave.s.h",
"llvm.mips.ave.s.w",
"llvm.mips.ave.u.b",
"llvm.mips.ave.u.d",
"llvm.mips.ave.u.h",
"llvm.mips.ave.u.w",
"llvm.mips.aver.s.b",
"llvm.mips.aver.s.d",
"llvm.mips.aver.s.h",
"llvm.mips.aver.s.w",
"llvm.mips.aver.u.b",
"llvm.mips.aver.u.d",
"llvm.mips.aver.u.h",
"llvm.mips.aver.u.w",
"llvm.mips.balign",
"llvm.mips.bclr.b",
"llvm.mips.bclr.d",
"llvm.mips.bclr.h",
"llvm.mips.bclr.w",
"llvm.mips.bclri.b",
"llvm.mips.bclri.d",
"llvm.mips.bclri.h",
"llvm.mips.bclri.w",
"llvm.mips.binsl.b",
"llvm.mips.binsl.d",
"llvm.mips.binsl.h",
"llvm.mips.binsl.w",
"llvm.mips.binsli.b",
"llvm.mips.binsli.d",
"llvm.mips.binsli.h",
"llvm.mips.binsli.w",
"llvm.mips.binsr.b",
"llvm.mips.binsr.d",
"llvm.mips.binsr.h",
"llvm.mips.binsr.w",
"llvm.mips.binsri.b",
"llvm.mips.binsri.d",
"llvm.mips.binsri.h",
"llvm.mips.binsri.w",
"llvm.mips.bitrev",
"llvm.mips.bmnz.v",
"llvm.mips.bmnzi.b",
"llvm.mips.bmz.v",
"llvm.mips.bmzi.b",
"llvm.mips.bneg.b",
"llvm.mips.bneg.d",
"llvm.mips.bneg.h",
"llvm.mips.bneg.w",
"llvm.mips.bnegi.b",
"llvm.mips.bnegi.d",
"llvm.mips.bnegi.h",
"llvm.mips.bnegi.w",
"llvm.mips.bnz.b",
"llvm.mips.bnz.d",
"llvm.mips.bnz.h",
"llvm.mips.bnz.v",
"llvm.mips.bnz.w",
"llvm.mips.bposge32",
"llvm.mips.bsel.v",
"llvm.mips.bseli.b",
"llvm.mips.bset.b",
"llvm.mips.bset.d",
"llvm.mips.bset.h",
"llvm.mips.bset.w",
"llvm.mips.bseti.b",
"llvm.mips.bseti.d",
"llvm.mips.bseti.h",
"llvm.mips.bseti.w",
"llvm.mips.bz.b",
"llvm.mips.bz.d",
"llvm.mips.bz.h",
"llvm.mips.bz.v",
"llvm.mips.bz.w",
"llvm.mips.ceq.b",
"llvm.mips.ceq.d",
"llvm.mips.ceq.h",
"llvm.mips.ceq.w",
"llvm.mips.ceqi.b",
"llvm.mips.ceqi.d",
"llvm.mips.ceqi.h",
"llvm.mips.ceqi.w",
"llvm.mips.cfcmsa",
"llvm.mips.cle.s.b",
"llvm.mips.cle.s.d",
"llvm.mips.cle.s.h",
"llvm.mips.cle.s.w",
"llvm.mips.cle.u.b",
"llvm.mips.cle.u.d",
"llvm.mips.cle.u.h",
"llvm.mips.cle.u.w",
"llvm.mips.clei.s.b",
"llvm.mips.clei.s.d",
"llvm.mips.clei.s.h",
"llvm.mips.clei.s.w",
"llvm.mips.clei.u.b",
"llvm.mips.clei.u.d",
"llvm.mips.clei.u.h",
"llvm.mips.clei.u.w",
"llvm.mips.clt.s.b",
"llvm.mips.clt.s.d",
"llvm.mips.clt.s.h",
"llvm.mips.clt.s.w",
"llvm.mips.clt.u.b",
"llvm.mips.clt.u.d",
"llvm.mips.clt.u.h",
"llvm.mips.clt.u.w",
"llvm.mips.clti.s.b",
"llvm.mips.clti.s.d",
"llvm.mips.clti.s.h",
"llvm.mips.clti.s.w",
"llvm.mips.clti.u.b",
"llvm.mips.clti.u.d",
"llvm.mips.clti.u.h",
"llvm.mips.clti.u.w",
"llvm.mips.cmp.eq.ph",
"llvm.mips.cmp.le.ph",
"llvm.mips.cmp.lt.ph",
"llvm.mips.cmpgdu.eq.qb",
"llvm.mips.cmpgdu.le.qb",
"llvm.mips.cmpgdu.lt.qb",
"llvm.mips.cmpgu.eq.qb",
"llvm.mips.cmpgu.le.qb",
"llvm.mips.cmpgu.lt.qb",
"llvm.mips.cmpu.eq.qb",
"llvm.mips.cmpu.le.qb",
"llvm.mips.cmpu.lt.qb",
"llvm.mips.copy.s.b",
"llvm.mips.copy.s.d",
"llvm.mips.copy.s.h",
"llvm.mips.copy.s.w",
"llvm.mips.copy.u.b",
"llvm.mips.copy.u.d",
"llvm.mips.copy.u.h",
"llvm.mips.copy.u.w",
"llvm.mips.ctcmsa",
"llvm.mips.div.s.b",
"llvm.mips.div.s.d",
"llvm.mips.div.s.h",
"llvm.mips.div.s.w",
"llvm.mips.div.u.b",
"llvm.mips.div.u.d",
"llvm.mips.div.u.h",
"llvm.mips.div.u.w",
"llvm.mips.dlsa",
"llvm.mips.dotp.s.d",
"llvm.mips.dotp.s.h",
"llvm.mips.dotp.s.w",
"llvm.mips.dotp.u.d",
"llvm.mips.dotp.u.h",
"llvm.mips.dotp.u.w",
"llvm.mips.dpa.w.ph",
"llvm.mips.dpadd.s.d",
"llvm.mips.dpadd.s.h",
"llvm.mips.dpadd.s.w",
"llvm.mips.dpadd.u.d",
"llvm.mips.dpadd.u.h",
"llvm.mips.dpadd.u.w",
"llvm.mips.dpaq.s.w.ph",
"llvm.mips.dpaq.sa.l.w",
"llvm.mips.dpaqx.s.w.ph",
"llvm.mips.dpaqx.sa.w.ph",
"llvm.mips.dpau.h.qbl",
"llvm.mips.dpau.h.qbr",
"llvm.mips.dpax.w.ph",
"llvm.mips.dps.w.ph",
"llvm.mips.dpsq.s.w.ph",
"llvm.mips.dpsq.sa.l.w",
"llvm.mips.dpsqx.s.w.ph",
"llvm.mips.dpsqx.sa.w.ph",
"llvm.mips.dpsu.h.qbl",
"llvm.mips.dpsu.h.qbr",
"llvm.mips.dpsub.s.d",
"llvm.mips.dpsub.s.h",
"llvm.mips.dpsub.s.w",
"llvm.mips.dpsub.u.d",
"llvm.mips.dpsub.u.h",
"llvm.mips.dpsub.u.w",
"llvm.mips.dpsx.w.ph",
"llvm.mips.extp",
"llvm.mips.extpdp",
"llvm.mips.extr.r.w",
"llvm.mips.extr.rs.w",
"llvm.mips.extr.s.h",
"llvm.mips.extr.w",
"llvm.mips.fadd.d",
"llvm.mips.fadd.w",
"llvm.mips.fcaf.d",
"llvm.mips.fcaf.w",
"llvm.mips.fceq.d",
"llvm.mips.fceq.w",
"llvm.mips.fclass.d",
"llvm.mips.fclass.w",
"llvm.mips.fcle.d",
"llvm.mips.fcle.w",
"llvm.mips.fclt.d",
"llvm.mips.fclt.w",
"llvm.mips.fcne.d",
"llvm.mips.fcne.w",
"llvm.mips.fcor.d",
"llvm.mips.fcor.w",
"llvm.mips.fcueq.d",
"llvm.mips.fcueq.w",
"llvm.mips.fcule.d",
"llvm.mips.fcule.w",
"llvm.mips.fcult.d",
"llvm.mips.fcult.w",
"llvm.mips.fcun.d",
"llvm.mips.fcun.w",
"llvm.mips.fcune.d",
"llvm.mips.fcune.w",
"llvm.mips.fdiv.d",
"llvm.mips.fdiv.w",
"llvm.mips.fexdo.h",
"llvm.mips.fexdo.w",
"llvm.mips.fexp2.d",
"llvm.mips.fexp2.w",
"llvm.mips.fexupl.d",
"llvm.mips.fexupl.w",
"llvm.mips.fexupr.d",
"llvm.mips.fexupr.w",
"llvm.mips.ffint.s.d",
"llvm.mips.ffint.s.w",
"llvm.mips.ffint.u.d",
"llvm.mips.ffint.u.w",
"llvm.mips.ffql.d",
"llvm.mips.ffql.w",
"llvm.mips.ffqr.d",
"llvm.mips.ffqr.w",
"llvm.mips.fill.b",
"llvm.mips.fill.d",
"llvm.mips.fill.h",
"llvm.mips.fill.w",
"llvm.mips.flog2.d",
"llvm.mips.flog2.w",
"llvm.mips.fmadd.d",
"llvm.mips.fmadd.w",
"llvm.mips.fmax.a.d",
"llvm.mips.fmax.a.w",
"llvm.mips.fmax.d",
"llvm.mips.fmax.w",
"llvm.mips.fmin.a.d",
"llvm.mips.fmin.a.w",
"llvm.mips.fmin.d",
"llvm.mips.fmin.w",
"llvm.mips.fmsub.d",
"llvm.mips.fmsub.w",
"llvm.mips.fmul.d",
"llvm.mips.fmul.w",
"llvm.mips.frcp.d",
"llvm.mips.frcp.w",
"llvm.mips.frint.d",
"llvm.mips.frint.w",
"llvm.mips.frsqrt.d",
"llvm.mips.frsqrt.w",
"llvm.mips.fsaf.d",
"llvm.mips.fsaf.w",
"llvm.mips.fseq.d",
"llvm.mips.fseq.w",
"llvm.mips.fsle.d",
"llvm.mips.fsle.w",
"llvm.mips.fslt.d",
"llvm.mips.fslt.w",
"llvm.mips.fsne.d",
"llvm.mips.fsne.w",
"llvm.mips.fsor.d",
"llvm.mips.fsor.w",
"llvm.mips.fsqrt.d",
"llvm.mips.fsqrt.w",
"llvm.mips.fsub.d",
"llvm.mips.fsub.w",
"llvm.mips.fsueq.d",
"llvm.mips.fsueq.w",
"llvm.mips.fsule.d",
"llvm.mips.fsule.w",
"llvm.mips.fsult.d",
"llvm.mips.fsult.w",
"llvm.mips.fsun.d",
"llvm.mips.fsun.w",
"llvm.mips.fsune.d",
"llvm.mips.fsune.w",
"llvm.mips.ftint.s.d",
"llvm.mips.ftint.s.w",
"llvm.mips.ftint.u.d",
"llvm.mips.ftint.u.w",
"llvm.mips.ftq.h",
"llvm.mips.ftq.w",
"llvm.mips.ftrunc.s.d",
"llvm.mips.ftrunc.s.w",
"llvm.mips.ftrunc.u.d",
"llvm.mips.ftrunc.u.w",
"llvm.mips.hadd.s.d",
"llvm.mips.hadd.s.h",
"llvm.mips.hadd.s.w",
"llvm.mips.hadd.u.d",
"llvm.mips.hadd.u.h",
"llvm.mips.hadd.u.w",
"llvm.mips.hsub.s.d",
"llvm.mips.hsub.s.h",
"llvm.mips.hsub.s.w",
"llvm.mips.hsub.u.d",
"llvm.mips.hsub.u.h",
"llvm.mips.hsub.u.w",
"llvm.mips.ilvev.b",
"llvm.mips.ilvev.d",
"llvm.mips.ilvev.h",
"llvm.mips.ilvev.w",
"llvm.mips.ilvl.b",
"llvm.mips.ilvl.d",
"llvm.mips.ilvl.h",
"llvm.mips.ilvl.w",
"llvm.mips.ilvod.b",
"llvm.mips.ilvod.d",
"llvm.mips.ilvod.h",
"llvm.mips.ilvod.w",
"llvm.mips.ilvr.b",
"llvm.mips.ilvr.d",
"llvm.mips.ilvr.h",
"llvm.mips.ilvr.w",
"llvm.mips.insert.b",
"llvm.mips.insert.d",
"llvm.mips.insert.h",
"llvm.mips.insert.w",
"llvm.mips.insv",
"llvm.mips.insve.b",
"llvm.mips.insve.d",
"llvm.mips.insve.h",
"llvm.mips.insve.w",
"llvm.mips.lbux",
"llvm.mips.ld.b",
"llvm.mips.ld.d",
"llvm.mips.ld.h",
"llvm.mips.ld.w",
"llvm.mips.ldi.b",
"llvm.mips.ldi.d",
"llvm.mips.ldi.h",
"llvm.mips.ldi.w",
"llvm.mips.ldr.d",
"llvm.mips.ldr.w",
"llvm.mips.lhx",
"llvm.mips.lsa",
"llvm.mips.lwx",
"llvm.mips.madd",
"llvm.mips.madd.q.h",
"llvm.mips.madd.q.w",
"llvm.mips.maddr.q.h",
"llvm.mips.maddr.q.w",
"llvm.mips.maddu",
"llvm.mips.maddv.b",
"llvm.mips.maddv.d",
"llvm.mips.maddv.h",
"llvm.mips.maddv.w",
"llvm.mips.maq.s.w.phl",
"llvm.mips.maq.s.w.phr",
"llvm.mips.maq.sa.w.phl",
"llvm.mips.maq.sa.w.phr",
"llvm.mips.max.a.b",
"llvm.mips.max.a.d",
"llvm.mips.max.a.h",
"llvm.mips.max.a.w",
"llvm.mips.max.s.b",
"llvm.mips.max.s.d",
"llvm.mips.max.s.h",
"llvm.mips.max.s.w",
"llvm.mips.max.u.b",
"llvm.mips.max.u.d",
"llvm.mips.max.u.h",
"llvm.mips.max.u.w",
"llvm.mips.maxi.s.b",
"llvm.mips.maxi.s.d",
"llvm.mips.maxi.s.h",
"llvm.mips.maxi.s.w",
"llvm.mips.maxi.u.b",
"llvm.mips.maxi.u.d",
"llvm.mips.maxi.u.h",
"llvm.mips.maxi.u.w",
"llvm.mips.min.a.b",
"llvm.mips.min.a.d",
"llvm.mips.min.a.h",
"llvm.mips.min.a.w",
"llvm.mips.min.s.b",
"llvm.mips.min.s.d",
"llvm.mips.min.s.h",
"llvm.mips.min.s.w",
"llvm.mips.min.u.b",
"llvm.mips.min.u.d",
"llvm.mips.min.u.h",
"llvm.mips.min.u.w",
"llvm.mips.mini.s.b",
"llvm.mips.mini.s.d",
"llvm.mips.mini.s.h",
"llvm.mips.mini.s.w",
"llvm.mips.mini.u.b",
"llvm.mips.mini.u.d",
"llvm.mips.mini.u.h",
"llvm.mips.mini.u.w",
"llvm.mips.mod.s.b",
"llvm.mips.mod.s.d",
"llvm.mips.mod.s.h",
"llvm.mips.mod.s.w",
"llvm.mips.mod.u.b",
"llvm.mips.mod.u.d",
"llvm.mips.mod.u.h",
"llvm.mips.mod.u.w",
"llvm.mips.modsub",
"llvm.mips.move.v",
"llvm.mips.msub",
"llvm.mips.msub.q.h",
"llvm.mips.msub.q.w",
"llvm.mips.msubr.q.h",
"llvm.mips.msubr.q.w",
"llvm.mips.msubu",
"llvm.mips.msubv.b",
"llvm.mips.msubv.d",
"llvm.mips.msubv.h",
"llvm.mips.msubv.w",
"llvm.mips.mthlip",
"llvm.mips.mul.ph",
"llvm.mips.mul.q.h",
"llvm.mips.mul.q.w",
"llvm.mips.mul.s.ph",
"llvm.mips.muleq.s.w.phl",
"llvm.mips.muleq.s.w.phr",
"llvm.mips.muleu.s.ph.qbl",
"llvm.mips.muleu.s.ph.qbr",
"llvm.mips.mulq.rs.ph",
"llvm.mips.mulq.rs.w",
"llvm.mips.mulq.s.ph",
"llvm.mips.mulq.s.w",
"llvm.mips.mulr.q.h",
"llvm.mips.mulr.q.w",
"llvm.mips.mulsa.w.ph",
"llvm.mips.mulsaq.s.w.ph",
"llvm.mips.mult",
"llvm.mips.multu",
"llvm.mips.mulv.b",
"llvm.mips.mulv.d",
"llvm.mips.mulv.h",
"llvm.mips.mulv.w",
"llvm.mips.nloc.b",
"llvm.mips.nloc.d",
"llvm.mips.nloc.h",
"llvm.mips.nloc.w",
"llvm.mips.nlzc.b",
"llvm.mips.nlzc.d",
"llvm.mips.nlzc.h",
"llvm.mips.nlzc.w",
"llvm.mips.nor.v",
"llvm.mips.nori.b",
"llvm.mips.or.v",
"llvm.mips.ori.b",
"llvm.mips.packrl.ph",
"llvm.mips.pckev.b",
"llvm.mips.pckev.d",
"llvm.mips.pckev.h",
"llvm.mips.pckev.w",
"llvm.mips.pckod.b",
"llvm.mips.pckod.d",
"llvm.mips.pckod.h",
"llvm.mips.pckod.w",
"llvm.mips.pcnt.b",
"llvm.mips.pcnt.d",
"llvm.mips.pcnt.h",
"llvm.mips.pcnt.w",
"llvm.mips.pick.ph",
"llvm.mips.pick.qb",
"llvm.mips.preceq.w.phl",
"llvm.mips.preceq.w.phr",
"llvm.mips.precequ.ph.qbl",
"llvm.mips.precequ.ph.qbla",
"llvm.mips.precequ.ph.qbr",
"llvm.mips.precequ.ph.qbra",
"llvm.mips.preceu.ph.qbl",
"llvm.mips.preceu.ph.qbla",
"llvm.mips.preceu.ph.qbr",
"llvm.mips.preceu.ph.qbra",
"llvm.mips.precr.qb.ph",
"llvm.mips.precr.sra.ph.w",
"llvm.mips.precr.sra.r.ph.w",
"llvm.mips.precrq.ph.w",
"llvm.mips.precrq.qb.ph",
"llvm.mips.precrq.rs.ph.w",
"llvm.mips.precrqu.s.qb.ph",
"llvm.mips.prepend",
"llvm.mips.raddu.w.qb",
"llvm.mips.rddsp",
"llvm.mips.repl.ph",
"llvm.mips.repl.qb",
"llvm.mips.sat.s.b",
"llvm.mips.sat.s.d",
"llvm.mips.sat.s.h",
"llvm.mips.sat.s.w",
"llvm.mips.sat.u.b",
"llvm.mips.sat.u.d",
"llvm.mips.sat.u.h",
"llvm.mips.sat.u.w",
"llvm.mips.shf.b",
"llvm.mips.shf.h",
"llvm.mips.shf.w",
"llvm.mips.shilo",
"llvm.mips.shll.ph",
"llvm.mips.shll.qb",
"llvm.mips.shll.s.ph",
"llvm.mips.shll.s.w",
"llvm.mips.shra.ph",
"llvm.mips.shra.qb",
"llvm.mips.shra.r.ph",
"llvm.mips.shra.r.qb",
"llvm.mips.shra.r.w",
"llvm.mips.shrl.ph",
"llvm.mips.shrl.qb",
"llvm.mips.sld.b",
"llvm.mips.sld.d",
"llvm.mips.sld.h",
"llvm.mips.sld.w",
"llvm.mips.sldi.b",
"llvm.mips.sldi.d",
"llvm.mips.sldi.h",
"llvm.mips.sldi.w",
"llvm.mips.sll.b",
"llvm.mips.sll.d",
"llvm.mips.sll.h",
"llvm.mips.sll.w",
"llvm.mips.slli.b",
"llvm.mips.slli.d",
"llvm.mips.slli.h",
"llvm.mips.slli.w",
"llvm.mips.splat.b",
"llvm.mips.splat.d",
"llvm.mips.splat.h",
"llvm.mips.splat.w",
"llvm.mips.splati.b",
"llvm.mips.splati.d",
"llvm.mips.splati.h",
"llvm.mips.splati.w",
"llvm.mips.sra.b",
"llvm.mips.sra.d",
"llvm.mips.sra.h",
"llvm.mips.sra.w",
"llvm.mips.srai.b",
"llvm.mips.srai.d",
"llvm.mips.srai.h",
"llvm.mips.srai.w",
"llvm.mips.srar.b",
"llvm.mips.srar.d",
"llvm.mips.srar.h",
"llvm.mips.srar.w",
"llvm.mips.srari.b",
"llvm.mips.srari.d",
"llvm.mips.srari.h",
"llvm.mips.srari.w",
"llvm.mips.srl.b",
"llvm.mips.srl.d",
"llvm.mips.srl.h",
"llvm.mips.srl.w",
"llvm.mips.srli.b",
"llvm.mips.srli.d",
"llvm.mips.srli.h",
"llvm.mips.srli.w",
"llvm.mips.srlr.b",
"llvm.mips.srlr.d",
"llvm.mips.srlr.h",
"llvm.mips.srlr.w",
"llvm.mips.srlri.b",
"llvm.mips.srlri.d",
"llvm.mips.srlri.h",
"llvm.mips.srlri.w",
"llvm.mips.st.b",
"llvm.mips.st.d",
"llvm.mips.st.h",
"llvm.mips.st.w",
"llvm.mips.str.d",
"llvm.mips.str.w",
"llvm.mips.subq.ph",
"llvm.mips.subq.s.ph",
"llvm.mips.subq.s.w",
"llvm.mips.subqh.ph",
"llvm.mips.subqh.r.ph",
"llvm.mips.subqh.r.w",
"llvm.mips.subqh.w",
"llvm.mips.subs.s.b",
"llvm.mips.subs.s.d",
"llvm.mips.subs.s.h",
"llvm.mips.subs.s.w",
"llvm.mips.subs.u.b",
"llvm.mips.subs.u.d",
"llvm.mips.subs.u.h",
"llvm.mips.subs.u.w",
"llvm.mips.subsus.u.b",
"llvm.mips.subsus.u.d",
"llvm.mips.subsus.u.h",
"llvm.mips.subsus.u.w",
"llvm.mips.subsuu.s.b",
"llvm.mips.subsuu.s.d",
"llvm.mips.subsuu.s.h",
"llvm.mips.subsuu.s.w",
"llvm.mips.subu.ph",
"llvm.mips.subu.qb",
"llvm.mips.subu.s.ph",
"llvm.mips.subu.s.qb",
"llvm.mips.subuh.qb",
"llvm.mips.subuh.r.qb",
"llvm.mips.subv.b",
"llvm.mips.subv.d",
"llvm.mips.subv.h",
"llvm.mips.subv.w",
"llvm.mips.subvi.b",
"llvm.mips.subvi.d",
"llvm.mips.subvi.h",
"llvm.mips.subvi.w",
"llvm.mips.vshf.b",
"llvm.mips.vshf.d",
"llvm.mips.vshf.h",
"llvm.mips.vshf.w",
"llvm.mips.wrdsp",
"llvm.mips.xor.v",
"llvm.mips.xori.b",
"llvm.nvvm.add.rm.d",
"llvm.nvvm.add.rm.f",
"llvm.nvvm.add.rm.ftz.f",
"llvm.nvvm.add.rn.d",
"llvm.nvvm.add.rn.f",
"llvm.nvvm.add.rn.ftz.f",
"llvm.nvvm.add.rp.d",
"llvm.nvvm.add.rp.f",
"llvm.nvvm.add.rp.ftz.f",
"llvm.nvvm.add.rz.d",
"llvm.nvvm.add.rz.f",
"llvm.nvvm.add.rz.ftz.f",
"llvm.nvvm.atomic.add.gen.f.cta",
"llvm.nvvm.atomic.add.gen.f.sys",
"llvm.nvvm.atomic.add.gen.i.cta",
"llvm.nvvm.atomic.add.gen.i.sys",
"llvm.nvvm.atomic.and.gen.i.cta",
"llvm.nvvm.atomic.and.gen.i.sys",
"llvm.nvvm.atomic.cas.gen.i.cta",
"llvm.nvvm.atomic.cas.gen.i.sys",
"llvm.nvvm.atomic.dec.gen.i.cta",
"llvm.nvvm.atomic.dec.gen.i.sys",
"llvm.nvvm.atomic.exch.gen.i.cta",
"llvm.nvvm.atomic.exch.gen.i.sys",
"llvm.nvvm.atomic.inc.gen.i.cta",
"llvm.nvvm.atomic.inc.gen.i.sys",
"llvm.nvvm.atomic.load.dec.32",
"llvm.nvvm.atomic.load.inc.32",
"llvm.nvvm.atomic.max.gen.i.cta",
"llvm.nvvm.atomic.max.gen.i.sys",
"llvm.nvvm.atomic.min.gen.i.cta",
"llvm.nvvm.atomic.min.gen.i.sys",
"llvm.nvvm.atomic.or.gen.i.cta",
"llvm.nvvm.atomic.or.gen.i.sys",
"llvm.nvvm.atomic.xor.gen.i.cta",
"llvm.nvvm.atomic.xor.gen.i.sys",
"llvm.nvvm.bar.sync",
"llvm.nvvm.bar.warp.sync",
"llvm.nvvm.barrier",
"llvm.nvvm.barrier.n",
"llvm.nvvm.barrier.sync",
"llvm.nvvm.barrier.sync.cnt",
"llvm.nvvm.barrier0",
"llvm.nvvm.barrier0.and",
"llvm.nvvm.barrier0.or",
"llvm.nvvm.barrier0.popc",
"llvm.nvvm.bitcast.d2ll",
"llvm.nvvm.bitcast.f2i",
"llvm.nvvm.bitcast.i2f",
"llvm.nvvm.bitcast.ll2d",
"llvm.nvvm.ceil.d",
"llvm.nvvm.ceil.f",
"llvm.nvvm.ceil.ftz.f",
"llvm.nvvm.compiler.error",
"llvm.nvvm.compiler.warn",
"llvm.nvvm.cos.approx.f",
"llvm.nvvm.cos.approx.ftz.f",
"llvm.nvvm.d2f.rm",
"llvm.nvvm.d2f.rm.ftz",
"llvm.nvvm.d2f.rn",
"llvm.nvvm.d2f.rn.ftz",
"llvm.nvvm.d2f.rp",
"llvm.nvvm.d2f.rp.ftz",
"llvm.nvvm.d2f.rz",
"llvm.nvvm.d2f.rz.ftz",
"llvm.nvvm.d2i.hi",
"llvm.nvvm.d2i.lo",
"llvm.nvvm.d2i.rm",
"llvm.nvvm.d2i.rn",
"llvm.nvvm.d2i.rp",
"llvm.nvvm.d2i.rz",
"llvm.nvvm.d2ll.rm",
"llvm.nvvm.d2ll.rn",
"llvm.nvvm.d2ll.rp",
"llvm.nvvm.d2ll.rz",
"llvm.nvvm.d2ui.rm",
"llvm.nvvm.d2ui.rn",
"llvm.nvvm.d2ui.rp",
"llvm.nvvm.d2ui.rz",
"llvm.nvvm.d2ull.rm",
"llvm.nvvm.d2ull.rn",
"llvm.nvvm.d2ull.rp",
"llvm.nvvm.d2ull.rz",
"llvm.nvvm.div.approx.f",
"llvm.nvvm.div.approx.ftz.f",
"llvm.nvvm.div.rm.d",
"llvm.nvvm.div.rm.f",
"llvm.nvvm.div.rm.ftz.f",
"llvm.nvvm.div.rn.d",
"llvm.nvvm.div.rn.f",
"llvm.nvvm.div.rn.ftz.f",
"llvm.nvvm.div.rp.d",
"llvm.nvvm.div.rp.f",
"llvm.nvvm.div.rp.ftz.f",
"llvm.nvvm.div.rz.d",
"llvm.nvvm.div.rz.f",
"llvm.nvvm.div.rz.ftz.f",
"llvm.nvvm.ex2.approx.d",
"llvm.nvvm.ex2.approx.f",
"llvm.nvvm.ex2.approx.ftz.f",
"llvm.nvvm.f2h.rn",
"llvm.nvvm.f2h.rn.ftz",
"llvm.nvvm.f2i.rm",
"llvm.nvvm.f2i.rm.ftz",
"llvm.nvvm.f2i.rn",
"llvm.nvvm.f2i.rn.ftz",
"llvm.nvvm.f2i.rp",
"llvm.nvvm.f2i.rp.ftz",
"llvm.nvvm.f2i.rz",
"llvm.nvvm.f2i.rz.ftz",
"llvm.nvvm.f2ll.rm",
"llvm.nvvm.f2ll.rm.ftz",
"llvm.nvvm.f2ll.rn",
"llvm.nvvm.f2ll.rn.ftz",
"llvm.nvvm.f2ll.rp",
"llvm.nvvm.f2ll.rp.ftz",
"llvm.nvvm.f2ll.rz",
"llvm.nvvm.f2ll.rz.ftz",
"llvm.nvvm.f2ui.rm",
"llvm.nvvm.f2ui.rm.ftz",
"llvm.nvvm.f2ui.rn",
"llvm.nvvm.f2ui.rn.ftz",
"llvm.nvvm.f2ui.rp",
"llvm.nvvm.f2ui.rp.ftz",
"llvm.nvvm.f2ui.rz",
"llvm.nvvm.f2ui.rz.ftz",
"llvm.nvvm.f2ull.rm",
"llvm.nvvm.f2ull.rm.ftz",
"llvm.nvvm.f2ull.rn",
"llvm.nvvm.f2ull.rn.ftz",
"llvm.nvvm.f2ull.rp",
"llvm.nvvm.f2ull.rp.ftz",
"llvm.nvvm.f2ull.rz",
"llvm.nvvm.f2ull.rz.ftz",
"llvm.nvvm.fabs.d",
"llvm.nvvm.fabs.f",
"llvm.nvvm.fabs.ftz.f",
"llvm.nvvm.floor.d",
"llvm.nvvm.floor.f",
"llvm.nvvm.floor.ftz.f",
"llvm.nvvm.fma.rm.d",
"llvm.nvvm.fma.rm.f",
"llvm.nvvm.fma.rm.ftz.f",
"llvm.nvvm.fma.rn.d",
"llvm.nvvm.fma.rn.f",
"llvm.nvvm.fma.rn.ftz.f",
"llvm.nvvm.fma.rp.d",
"llvm.nvvm.fma.rp.f",
"llvm.nvvm.fma.rp.ftz.f",
"llvm.nvvm.fma.rz.d",
"llvm.nvvm.fma.rz.f",
"llvm.nvvm.fma.rz.ftz.f",
"llvm.nvvm.fmax.d",
"llvm.nvvm.fmax.f",
"llvm.nvvm.fmax.ftz.f",
"llvm.nvvm.fmin.d",
"llvm.nvvm.fmin.f",
"llvm.nvvm.fmin.ftz.f",
"llvm.nvvm.fns",
"llvm.nvvm.i2d.rm",
"llvm.nvvm.i2d.rn",
"llvm.nvvm.i2d.rp",
"llvm.nvvm.i2d.rz",
"llvm.nvvm.i2f.rm",
"llvm.nvvm.i2f.rn",
"llvm.nvvm.i2f.rp",
"llvm.nvvm.i2f.rz",
"llvm.nvvm.isspacep.const",
"llvm.nvvm.isspacep.global",
"llvm.nvvm.isspacep.local",
"llvm.nvvm.isspacep.shared",
"llvm.nvvm.istypep.sampler",
"llvm.nvvm.istypep.surface",
"llvm.nvvm.istypep.texture",
"llvm.nvvm.ldg.global.f",
"llvm.nvvm.ldg.global.i",
"llvm.nvvm.ldg.global.p",
"llvm.nvvm.ldu.global.f",
"llvm.nvvm.ldu.global.i",
"llvm.nvvm.ldu.global.p",
"llvm.nvvm.lg2.approx.d",
"llvm.nvvm.lg2.approx.f",
"llvm.nvvm.lg2.approx.ftz.f",
"llvm.nvvm.ll2d.rm",
"llvm.nvvm.ll2d.rn",
"llvm.nvvm.ll2d.rp",
"llvm.nvvm.ll2d.rz",
"llvm.nvvm.ll2f.rm",
"llvm.nvvm.ll2f.rn",
"llvm.nvvm.ll2f.rp",
"llvm.nvvm.ll2f.rz",
"llvm.nvvm.lohi.i2d",
"llvm.nvvm.match.all.sync.i32p",
"llvm.nvvm.match.all.sync.i64p",
"llvm.nvvm.match.any.sync.i32",
"llvm.nvvm.match.any.sync.i64",
"llvm.nvvm.membar.cta",
"llvm.nvvm.membar.gl",
"llvm.nvvm.membar.sys",
"llvm.nvvm.mma.m8n8k4.col.col.f16.f16",
"llvm.nvvm.mma.m8n8k4.col.col.f32.f16",
"llvm.nvvm.mma.m8n8k4.col.col.f32.f32",
"llvm.nvvm.mma.m8n8k4.col.row.f16.f16",
"llvm.nvvm.mma.m8n8k4.col.row.f32.f16",
"llvm.nvvm.mma.m8n8k4.col.row.f32.f32",
"llvm.nvvm.mma.m8n8k4.row.col.f16.f16",
"llvm.nvvm.mma.m8n8k4.row.col.f32.f16",
"llvm.nvvm.mma.m8n8k4.row.col.f32.f32",
"llvm.nvvm.mma.m8n8k4.row.row.f16.f16",
"llvm.nvvm.mma.m8n8k4.row.row.f32.f16",
"llvm.nvvm.mma.m8n8k4.row.row.f32.f32",
"llvm.nvvm.move.double",
"llvm.nvvm.move.float",
"llvm.nvvm.move.i16",
"llvm.nvvm.move.i32",
"llvm.nvvm.move.i64",
"llvm.nvvm.move.ptr",
"llvm.nvvm.mul.rm.d",
"llvm.nvvm.mul.rm.f",
"llvm.nvvm.mul.rm.ftz.f",
"llvm.nvvm.mul.rn.d",
"llvm.nvvm.mul.rn.f",
"llvm.nvvm.mul.rn.ftz.f",
"llvm.nvvm.mul.rp.d",
"llvm.nvvm.mul.rp.f",
"llvm.nvvm.mul.rp.ftz.f",
"llvm.nvvm.mul.rz.d",
"llvm.nvvm.mul.rz.f",
"llvm.nvvm.mul.rz.ftz.f",
"llvm.nvvm.mul24.i",
"llvm.nvvm.mul24.ui",
"llvm.nvvm.mulhi.i",
"llvm.nvvm.mulhi.ll",
"llvm.nvvm.mulhi.ui",
"llvm.nvvm.mulhi.ull",
"llvm.nvvm.prmt",
"llvm.nvvm.ptr.constant.to.gen",
"llvm.nvvm.ptr.gen.to.constant",
"llvm.nvvm.ptr.gen.to.global",
"llvm.nvvm.ptr.gen.to.local",
"llvm.nvvm.ptr.gen.to.param",
"llvm.nvvm.ptr.gen.to.shared",
"llvm.nvvm.ptr.global.to.gen",
"llvm.nvvm.ptr.local.to.gen",
"llvm.nvvm.ptr.shared.to.gen",
"llvm.nvvm.rcp.approx.ftz.d",
"llvm.nvvm.rcp.rm.d",
"llvm.nvvm.rcp.rm.f",
"llvm.nvvm.rcp.rm.ftz.f",
"llvm.nvvm.rcp.rn.d",
"llvm.nvvm.rcp.rn.f",
"llvm.nvvm.rcp.rn.ftz.f",
"llvm.nvvm.rcp.rp.d",
"llvm.nvvm.rcp.rp.f",
"llvm.nvvm.rcp.rp.ftz.f",
"llvm.nvvm.rcp.rz.d",
"llvm.nvvm.rcp.rz.f",
"llvm.nvvm.rcp.rz.ftz.f",
"llvm.nvvm.read.ptx.sreg.clock",
"llvm.nvvm.read.ptx.sreg.clock64",
"llvm.nvvm.read.ptx.sreg.ctaid.w",
"llvm.nvvm.read.ptx.sreg.ctaid.x",
"llvm.nvvm.read.ptx.sreg.ctaid.y",
"llvm.nvvm.read.ptx.sreg.ctaid.z",
"llvm.nvvm.read.ptx.sreg.envreg0",
"llvm.nvvm.read.ptx.sreg.envreg1",
"llvm.nvvm.read.ptx.sreg.envreg10",
"llvm.nvvm.read.ptx.sreg.envreg11",
"llvm.nvvm.read.ptx.sreg.envreg12",
"llvm.nvvm.read.ptx.sreg.envreg13",
"llvm.nvvm.read.ptx.sreg.envreg14",
"llvm.nvvm.read.ptx.sreg.envreg15",
"llvm.nvvm.read.ptx.sreg.envreg16",
"llvm.nvvm.read.ptx.sreg.envreg17",
"llvm.nvvm.read.ptx.sreg.envreg18",
"llvm.nvvm.read.ptx.sreg.envreg19",
"llvm.nvvm.read.ptx.sreg.envreg2",
"llvm.nvvm.read.ptx.sreg.envreg20",
"llvm.nvvm.read.ptx.sreg.envreg21",
"llvm.nvvm.read.ptx.sreg.envreg22",
"llvm.nvvm.read.ptx.sreg.envreg23",
"llvm.nvvm.read.ptx.sreg.envreg24",
"llvm.nvvm.read.ptx.sreg.envreg25",
"llvm.nvvm.read.ptx.sreg.envreg26",
"llvm.nvvm.read.ptx.sreg.envreg27",
"llvm.nvvm.read.ptx.sreg.envreg28",
"llvm.nvvm.read.ptx.sreg.envreg29",
"llvm.nvvm.read.ptx.sreg.envreg3",
"llvm.nvvm.read.ptx.sreg.envreg30",
"llvm.nvvm.read.ptx.sreg.envreg31",
"llvm.nvvm.read.ptx.sreg.envreg4",
"llvm.nvvm.read.ptx.sreg.envreg5",
"llvm.nvvm.read.ptx.sreg.envreg6",
"llvm.nvvm.read.ptx.sreg.envreg7",
"llvm.nvvm.read.ptx.sreg.envreg8",
"llvm.nvvm.read.ptx.sreg.envreg9",
"llvm.nvvm.read.ptx.sreg.gridid",
"llvm.nvvm.read.ptx.sreg.laneid",
"llvm.nvvm.read.ptx.sreg.lanemask.eq",
"llvm.nvvm.read.ptx.sreg.lanemask.ge",
"llvm.nvvm.read.ptx.sreg.lanemask.gt",
"llvm.nvvm.read.ptx.sreg.lanemask.le",
"llvm.nvvm.read.ptx.sreg.lanemask.lt",
"llvm.nvvm.read.ptx.sreg.nctaid.w",
"llvm.nvvm.read.ptx.sreg.nctaid.x",
"llvm.nvvm.read.ptx.sreg.nctaid.y",
"llvm.nvvm.read.ptx.sreg.nctaid.z",
"llvm.nvvm.read.ptx.sreg.nsmid",
"llvm.nvvm.read.ptx.sreg.ntid.w",
"llvm.nvvm.read.ptx.sreg.ntid.x",
"llvm.nvvm.read.ptx.sreg.ntid.y",
"llvm.nvvm.read.ptx.sreg.ntid.z",
"llvm.nvvm.read.ptx.sreg.nwarpid",
"llvm.nvvm.read.ptx.sreg.pm0",
"llvm.nvvm.read.ptx.sreg.pm1",
"llvm.nvvm.read.ptx.sreg.pm2",
"llvm.nvvm.read.ptx.sreg.pm3",
"llvm.nvvm.read.ptx.sreg.smid",
"llvm.nvvm.read.ptx.sreg.tid.w",
"llvm.nvvm.read.ptx.sreg.tid.x",
"llvm.nvvm.read.ptx.sreg.tid.y",
"llvm.nvvm.read.ptx.sreg.tid.z",
"llvm.nvvm.read.ptx.sreg.warpid",
"llvm.nvvm.read.ptx.sreg.warpsize",
"llvm.nvvm.reflect",
"llvm.nvvm.rotate.b32",
"llvm.nvvm.rotate.b64",
"llvm.nvvm.rotate.right.b64",
"llvm.nvvm.round.d",
"llvm.nvvm.round.f",
"llvm.nvvm.round.ftz.f",
"llvm.nvvm.rsqrt.approx.d",
"llvm.nvvm.rsqrt.approx.f",
"llvm.nvvm.rsqrt.approx.ftz.f",
"llvm.nvvm.sad.i",
"llvm.nvvm.sad.ui",
"llvm.nvvm.saturate.d",
"llvm.nvvm.saturate.f",
"llvm.nvvm.saturate.ftz.f",
"llvm.nvvm.shfl.bfly.f32",
"llvm.nvvm.shfl.bfly.f32p",
"llvm.nvvm.shfl.bfly.i32",
"llvm.nvvm.shfl.bfly.i32p",
"llvm.nvvm.shfl.down.f32",
"llvm.nvvm.shfl.down.f32p",
"llvm.nvvm.shfl.down.i32",
"llvm.nvvm.shfl.down.i32p",
"llvm.nvvm.shfl.idx.f32",
"llvm.nvvm.shfl.idx.f32p",
"llvm.nvvm.shfl.idx.i32",
"llvm.nvvm.shfl.idx.i32p",
"llvm.nvvm.shfl.sync.bfly.f32",
"llvm.nvvm.shfl.sync.bfly.f32p",
"llvm.nvvm.shfl.sync.bfly.i32",
"llvm.nvvm.shfl.sync.bfly.i32p",
"llvm.nvvm.shfl.sync.down.f32",
"llvm.nvvm.shfl.sync.down.f32p",
"llvm.nvvm.shfl.sync.down.i32",
"llvm.nvvm.shfl.sync.down.i32p",
"llvm.nvvm.shfl.sync.idx.f32",
"llvm.nvvm.shfl.sync.idx.f32p",
"llvm.nvvm.shfl.sync.idx.i32",
"llvm.nvvm.shfl.sync.idx.i32p",
"llvm.nvvm.shfl.sync.up.f32",
"llvm.nvvm.shfl.sync.up.f32p",
"llvm.nvvm.shfl.sync.up.i32",
"llvm.nvvm.shfl.sync.up.i32p",
"llvm.nvvm.shfl.up.f32",
"llvm.nvvm.shfl.up.f32p",
"llvm.nvvm.shfl.up.i32",
"llvm.nvvm.shfl.up.i32p",
"llvm.nvvm.sin.approx.f",
"llvm.nvvm.sin.approx.ftz.f",
"llvm.nvvm.sqrt.approx.f",
"llvm.nvvm.sqrt.approx.ftz.f",
"llvm.nvvm.sqrt.f",
"llvm.nvvm.sqrt.rm.d",
"llvm.nvvm.sqrt.rm.f",
"llvm.nvvm.sqrt.rm.ftz.f",
"llvm.nvvm.sqrt.rn.d",
"llvm.nvvm.sqrt.rn.f",
"llvm.nvvm.sqrt.rn.ftz.f",
"llvm.nvvm.sqrt.rp.d",
"llvm.nvvm.sqrt.rp.f",
"llvm.nvvm.sqrt.rp.ftz.f",
"llvm.nvvm.sqrt.rz.d",
"llvm.nvvm.sqrt.rz.f",
"llvm.nvvm.sqrt.rz.ftz.f",
"llvm.nvvm.suld.1d.array.i16.clamp",
"llvm.nvvm.suld.1d.array.i16.trap",
"llvm.nvvm.suld.1d.array.i16.zero",
"llvm.nvvm.suld.1d.array.i32.clamp",
"llvm.nvvm.suld.1d.array.i32.trap",
"llvm.nvvm.suld.1d.array.i32.zero",
"llvm.nvvm.suld.1d.array.i64.clamp",
"llvm.nvvm.suld.1d.array.i64.trap",
"llvm.nvvm.suld.1d.array.i64.zero",
"llvm.nvvm.suld.1d.array.i8.clamp",
"llvm.nvvm.suld.1d.array.i8.trap",
"llvm.nvvm.suld.1d.array.i8.zero",
"llvm.nvvm.suld.1d.array.v2i16.clamp",
"llvm.nvvm.suld.1d.array.v2i16.trap",
"llvm.nvvm.suld.1d.array.v2i16.zero",
"llvm.nvvm.suld.1d.array.v2i32.clamp",
"llvm.nvvm.suld.1d.array.v2i32.trap",
"llvm.nvvm.suld.1d.array.v2i32.zero",
"llvm.nvvm.suld.1d.array.v2i64.clamp",
"llvm.nvvm.suld.1d.array.v2i64.trap",
"llvm.nvvm.suld.1d.array.v2i64.zero",
"llvm.nvvm.suld.1d.array.v2i8.clamp",
"llvm.nvvm.suld.1d.array.v2i8.trap",
"llvm.nvvm.suld.1d.array.v2i8.zero",
"llvm.nvvm.suld.1d.array.v4i16.clamp",
"llvm.nvvm.suld.1d.array.v4i16.trap",
"llvm.nvvm.suld.1d.array.v4i16.zero",
"llvm.nvvm.suld.1d.array.v4i32.clamp",
"llvm.nvvm.suld.1d.array.v4i32.trap",
"llvm.nvvm.suld.1d.array.v4i32.zero",
"llvm.nvvm.suld.1d.array.v4i8.clamp",
"llvm.nvvm.suld.1d.array.v4i8.trap",
"llvm.nvvm.suld.1d.array.v4i8.zero",
"llvm.nvvm.suld.1d.i16.clamp",
"llvm.nvvm.suld.1d.i16.trap",
"llvm.nvvm.suld.1d.i16.zero",
"llvm.nvvm.suld.1d.i32.clamp",
"llvm.nvvm.suld.1d.i32.trap",
"llvm.nvvm.suld.1d.i32.zero",
"llvm.nvvm.suld.1d.i64.clamp",
"llvm.nvvm.suld.1d.i64.trap",
"llvm.nvvm.suld.1d.i64.zero",
"llvm.nvvm.suld.1d.i8.clamp",
"llvm.nvvm.suld.1d.i8.trap",
"llvm.nvvm.suld.1d.i8.zero",
"llvm.nvvm.suld.1d.v2i16.clamp",
"llvm.nvvm.suld.1d.v2i16.trap",
"llvm.nvvm.suld.1d.v2i16.zero",
"llvm.nvvm.suld.1d.v2i32.clamp",
"llvm.nvvm.suld.1d.v2i32.trap",
"llvm.nvvm.suld.1d.v2i32.zero",
"llvm.nvvm.suld.1d.v2i64.clamp",
"llvm.nvvm.suld.1d.v2i64.trap",
"llvm.nvvm.suld.1d.v2i64.zero",
"llvm.nvvm.suld.1d.v2i8.clamp",
"llvm.nvvm.suld.1d.v2i8.trap",
"llvm.nvvm.suld.1d.v2i8.zero",
"llvm.nvvm.suld.1d.v4i16.clamp",
"llvm.nvvm.suld.1d.v4i16.trap",
"llvm.nvvm.suld.1d.v4i16.zero",
"llvm.nvvm.suld.1d.v4i32.clamp",
"llvm.nvvm.suld.1d.v4i32.trap",
"llvm.nvvm.suld.1d.v4i32.zero",
"llvm.nvvm.suld.1d.v4i8.clamp",
"llvm.nvvm.suld.1d.v4i8.trap",
"llvm.nvvm.suld.1d.v4i8.zero",
"llvm.nvvm.suld.2d.array.i16.clamp",
"llvm.nvvm.suld.2d.array.i16.trap",
"llvm.nvvm.suld.2d.array.i16.zero",
"llvm.nvvm.suld.2d.array.i32.clamp",
"llvm.nvvm.suld.2d.array.i32.trap",
"llvm.nvvm.suld.2d.array.i32.zero",
"llvm.nvvm.suld.2d.array.i64.clamp",
"llvm.nvvm.suld.2d.array.i64.trap",
"llvm.nvvm.suld.2d.array.i64.zero",
"llvm.nvvm.suld.2d.array.i8.clamp",
"llvm.nvvm.suld.2d.array.i8.trap",
"llvm.nvvm.suld.2d.array.i8.zero",
"llvm.nvvm.suld.2d.array.v2i16.clamp",
"llvm.nvvm.suld.2d.array.v2i16.trap",
"llvm.nvvm.suld.2d.array.v2i16.zero",
"llvm.nvvm.suld.2d.array.v2i32.clamp",
"llvm.nvvm.suld.2d.array.v2i32.trap",
"llvm.nvvm.suld.2d.array.v2i32.zero",
"llvm.nvvm.suld.2d.array.v2i64.clamp",
"llvm.nvvm.suld.2d.array.v2i64.trap",
"llvm.nvvm.suld.2d.array.v2i64.zero",
"llvm.nvvm.suld.2d.array.v2i8.clamp",
"llvm.nvvm.suld.2d.array.v2i8.trap",
"llvm.nvvm.suld.2d.array.v2i8.zero",
"llvm.nvvm.suld.2d.array.v4i16.clamp",
"llvm.nvvm.suld.2d.array.v4i16.trap",
"llvm.nvvm.suld.2d.array.v4i16.zero",
"llvm.nvvm.suld.2d.array.v4i32.clamp",
"llvm.nvvm.suld.2d.array.v4i32.trap",
"llvm.nvvm.suld.2d.array.v4i32.zero",
"llvm.nvvm.suld.2d.array.v4i8.clamp",
"llvm.nvvm.suld.2d.array.v4i8.trap",
"llvm.nvvm.suld.2d.array.v4i8.zero",
"llvm.nvvm.suld.2d.i16.clamp",
"llvm.nvvm.suld.2d.i16.trap",
"llvm.nvvm.suld.2d.i16.zero",
"llvm.nvvm.suld.2d.i32.clamp",
"llvm.nvvm.suld.2d.i32.trap",
"llvm.nvvm.suld.2d.i32.zero",
"llvm.nvvm.suld.2d.i64.clamp",
"llvm.nvvm.suld.2d.i64.trap",
"llvm.nvvm.suld.2d.i64.zero",
"llvm.nvvm.suld.2d.i8.clamp",
"llvm.nvvm.suld.2d.i8.trap",
"llvm.nvvm.suld.2d.i8.zero",
"llvm.nvvm.suld.2d.v2i16.clamp",
"llvm.nvvm.suld.2d.v2i16.trap",
"llvm.nvvm.suld.2d.v2i16.zero",
"llvm.nvvm.suld.2d.v2i32.clamp",
"llvm.nvvm.suld.2d.v2i32.trap",
"llvm.nvvm.suld.2d.v2i32.zero",
"llvm.nvvm.suld.2d.v2i64.clamp",
"llvm.nvvm.suld.2d.v2i64.trap",
"llvm.nvvm.suld.2d.v2i64.zero",
"llvm.nvvm.suld.2d.v2i8.clamp",
"llvm.nvvm.suld.2d.v2i8.trap",
"llvm.nvvm.suld.2d.v2i8.zero",
"llvm.nvvm.suld.2d.v4i16.clamp",
"llvm.nvvm.suld.2d.v4i16.trap",
"llvm.nvvm.suld.2d.v4i16.zero",
"llvm.nvvm.suld.2d.v4i32.clamp",
"llvm.nvvm.suld.2d.v4i32.trap",
"llvm.nvvm.suld.2d.v4i32.zero",
"llvm.nvvm.suld.2d.v4i8.clamp",
"llvm.nvvm.suld.2d.v4i8.trap",
"llvm.nvvm.suld.2d.v4i8.zero",
"llvm.nvvm.suld.3d.i16.clamp",
"llvm.nvvm.suld.3d.i16.trap",
"llvm.nvvm.suld.3d.i16.zero",
"llvm.nvvm.suld.3d.i32.clamp",
"llvm.nvvm.suld.3d.i32.trap",
"llvm.nvvm.suld.3d.i32.zero",
"llvm.nvvm.suld.3d.i64.clamp",
"llvm.nvvm.suld.3d.i64.trap",
"llvm.nvvm.suld.3d.i64.zero",
"llvm.nvvm.suld.3d.i8.clamp",
"llvm.nvvm.suld.3d.i8.trap",
"llvm.nvvm.suld.3d.i8.zero",
"llvm.nvvm.suld.3d.v2i16.clamp",
"llvm.nvvm.suld.3d.v2i16.trap",
"llvm.nvvm.suld.3d.v2i16.zero",
"llvm.nvvm.suld.3d.v2i32.clamp",
"llvm.nvvm.suld.3d.v2i32.trap",
"llvm.nvvm.suld.3d.v2i32.zero",
"llvm.nvvm.suld.3d.v2i64.clamp",
"llvm.nvvm.suld.3d.v2i64.trap",
"llvm.nvvm.suld.3d.v2i64.zero",
"llvm.nvvm.suld.3d.v2i8.clamp",
"llvm.nvvm.suld.3d.v2i8.trap",
"llvm.nvvm.suld.3d.v2i8.zero",
"llvm.nvvm.suld.3d.v4i16.clamp",
"llvm.nvvm.suld.3d.v4i16.trap",
"llvm.nvvm.suld.3d.v4i16.zero",
"llvm.nvvm.suld.3d.v4i32.clamp",
"llvm.nvvm.suld.3d.v4i32.trap",
"llvm.nvvm.suld.3d.v4i32.zero",
"llvm.nvvm.suld.3d.v4i8.clamp",
"llvm.nvvm.suld.3d.v4i8.trap",
"llvm.nvvm.suld.3d.v4i8.zero",
"llvm.nvvm.suq.array.size",
"llvm.nvvm.suq.channel.data.type",
"llvm.nvvm.suq.channel.order",
"llvm.nvvm.suq.depth",
"llvm.nvvm.suq.height",
"llvm.nvvm.suq.width",
"llvm.nvvm.sust.b.1d.array.i16.clamp",
"llvm.nvvm.sust.b.1d.array.i16.trap",
"llvm.nvvm.sust.b.1d.array.i16.zero",
"llvm.nvvm.sust.b.1d.array.i32.clamp",
"llvm.nvvm.sust.b.1d.array.i32.trap",
"llvm.nvvm.sust.b.1d.array.i32.zero",
"llvm.nvvm.sust.b.1d.array.i64.clamp",
"llvm.nvvm.sust.b.1d.array.i64.trap",
"llvm.nvvm.sust.b.1d.array.i64.zero",
"llvm.nvvm.sust.b.1d.array.i8.clamp",
"llvm.nvvm.sust.b.1d.array.i8.trap",
"llvm.nvvm.sust.b.1d.array.i8.zero",
"llvm.nvvm.sust.b.1d.array.v2i16.clamp",
"llvm.nvvm.sust.b.1d.array.v2i16.trap",
"llvm.nvvm.sust.b.1d.array.v2i16.zero",
"llvm.nvvm.sust.b.1d.array.v2i32.clamp",
"llvm.nvvm.sust.b.1d.array.v2i32.trap",
"llvm.nvvm.sust.b.1d.array.v2i32.zero",
"llvm.nvvm.sust.b.1d.array.v2i64.clamp",
"llvm.nvvm.sust.b.1d.array.v2i64.trap",
"llvm.nvvm.sust.b.1d.array.v2i64.zero",
"llvm.nvvm.sust.b.1d.array.v2i8.clamp",
"llvm.nvvm.sust.b.1d.array.v2i8.trap",
"llvm.nvvm.sust.b.1d.array.v2i8.zero",
"llvm.nvvm.sust.b.1d.array.v4i16.clamp",
"llvm.nvvm.sust.b.1d.array.v4i16.trap",
"llvm.nvvm.sust.b.1d.array.v4i16.zero",
"llvm.nvvm.sust.b.1d.array.v4i32.clamp",
"llvm.nvvm.sust.b.1d.array.v4i32.trap",
"llvm.nvvm.sust.b.1d.array.v4i32.zero",
"llvm.nvvm.sust.b.1d.array.v4i8.clamp",
"llvm.nvvm.sust.b.1d.array.v4i8.trap",
"llvm.nvvm.sust.b.1d.array.v4i8.zero",
"llvm.nvvm.sust.b.1d.i16.clamp",
"llvm.nvvm.sust.b.1d.i16.trap",
"llvm.nvvm.sust.b.1d.i16.zero",
"llvm.nvvm.sust.b.1d.i32.clamp",
"llvm.nvvm.sust.b.1d.i32.trap",
"llvm.nvvm.sust.b.1d.i32.zero",
"llvm.nvvm.sust.b.1d.i64.clamp",
"llvm.nvvm.sust.b.1d.i64.trap",
"llvm.nvvm.sust.b.1d.i64.zero",
"llvm.nvvm.sust.b.1d.i8.clamp",
"llvm.nvvm.sust.b.1d.i8.trap",
"llvm.nvvm.sust.b.1d.i8.zero",
"llvm.nvvm.sust.b.1d.v2i16.clamp",
"llvm.nvvm.sust.b.1d.v2i16.trap",
"llvm.nvvm.sust.b.1d.v2i16.zero",
"llvm.nvvm.sust.b.1d.v2i32.clamp",
"llvm.nvvm.sust.b.1d.v2i32.trap",
"llvm.nvvm.sust.b.1d.v2i32.zero",
"llvm.nvvm.sust.b.1d.v2i64.clamp",
"llvm.nvvm.sust.b.1d.v2i64.trap",
"llvm.nvvm.sust.b.1d.v2i64.zero",
"llvm.nvvm.sust.b.1d.v2i8.clamp",
"llvm.nvvm.sust.b.1d.v2i8.trap",
"llvm.nvvm.sust.b.1d.v2i8.zero",
"llvm.nvvm.sust.b.1d.v4i16.clamp",
"llvm.nvvm.sust.b.1d.v4i16.trap",
"llvm.nvvm.sust.b.1d.v4i16.zero",
"llvm.nvvm.sust.b.1d.v4i32.clamp",
"llvm.nvvm.sust.b.1d.v4i32.trap",
"llvm.nvvm.sust.b.1d.v4i32.zero",
"llvm.nvvm.sust.b.1d.v4i8.clamp",
"llvm.nvvm.sust.b.1d.v4i8.trap",
"llvm.nvvm.sust.b.1d.v4i8.zero",
"llvm.nvvm.sust.b.2d.array.i16.clamp",
"llvm.nvvm.sust.b.2d.array.i16.trap",
"llvm.nvvm.sust.b.2d.array.i16.zero",
"llvm.nvvm.sust.b.2d.array.i32.clamp",
"llvm.nvvm.sust.b.2d.array.i32.trap",
"llvm.nvvm.sust.b.2d.array.i32.zero",
"llvm.nvvm.sust.b.2d.array.i64.clamp",
"llvm.nvvm.sust.b.2d.array.i64.trap",
"llvm.nvvm.sust.b.2d.array.i64.zero",
"llvm.nvvm.sust.b.2d.array.i8.clamp",
"llvm.nvvm.sust.b.2d.array.i8.trap",
"llvm.nvvm.sust.b.2d.array.i8.zero",
"llvm.nvvm.sust.b.2d.array.v2i16.clamp",
"llvm.nvvm.sust.b.2d.array.v2i16.trap",
"llvm.nvvm.sust.b.2d.array.v2i16.zero",
"llvm.nvvm.sust.b.2d.array.v2i32.clamp",
"llvm.nvvm.sust.b.2d.array.v2i32.trap",
"llvm.nvvm.sust.b.2d.array.v2i32.zero",
"llvm.nvvm.sust.b.2d.array.v2i64.clamp",
"llvm.nvvm.sust.b.2d.array.v2i64.trap",
"llvm.nvvm.sust.b.2d.array.v2i64.zero",
"llvm.nvvm.sust.b.2d.array.v2i8.clamp",
"llvm.nvvm.sust.b.2d.array.v2i8.trap",
"llvm.nvvm.sust.b.2d.array.v2i8.zero",
"llvm.nvvm.sust.b.2d.array.v4i16.clamp",
"llvm.nvvm.sust.b.2d.array.v4i16.trap",
"llvm.nvvm.sust.b.2d.array.v4i16.zero",
"llvm.nvvm.sust.b.2d.array.v4i32.clamp",
"llvm.nvvm.sust.b.2d.array.v4i32.trap",
"llvm.nvvm.sust.b.2d.array.v4i32.zero",
"llvm.nvvm.sust.b.2d.array.v4i8.clamp",
"llvm.nvvm.sust.b.2d.array.v4i8.trap",
"llvm.nvvm.sust.b.2d.array.v4i8.zero",
"llvm.nvvm.sust.b.2d.i16.clamp",
"llvm.nvvm.sust.b.2d.i16.trap",
"llvm.nvvm.sust.b.2d.i16.zero",
"llvm.nvvm.sust.b.2d.i32.clamp",
"llvm.nvvm.sust.b.2d.i32.trap",
"llvm.nvvm.sust.b.2d.i32.zero",
"llvm.nvvm.sust.b.2d.i64.clamp",
"llvm.nvvm.sust.b.2d.i64.trap",
"llvm.nvvm.sust.b.2d.i64.zero",
"llvm.nvvm.sust.b.2d.i8.clamp",
"llvm.nvvm.sust.b.2d.i8.trap",
"llvm.nvvm.sust.b.2d.i8.zero",
"llvm.nvvm.sust.b.2d.v2i16.clamp",
"llvm.nvvm.sust.b.2d.v2i16.trap",
"llvm.nvvm.sust.b.2d.v2i16.zero",
"llvm.nvvm.sust.b.2d.v2i32.clamp",
"llvm.nvvm.sust.b.2d.v2i32.trap",
"llvm.nvvm.sust.b.2d.v2i32.zero",
"llvm.nvvm.sust.b.2d.v2i64.clamp",
"llvm.nvvm.sust.b.2d.v2i64.trap",
"llvm.nvvm.sust.b.2d.v2i64.zero",
"llvm.nvvm.sust.b.2d.v2i8.clamp",
"llvm.nvvm.sust.b.2d.v2i8.trap",
"llvm.nvvm.sust.b.2d.v2i8.zero",
"llvm.nvvm.sust.b.2d.v4i16.clamp",
"llvm.nvvm.sust.b.2d.v4i16.trap",
"llvm.nvvm.sust.b.2d.v4i16.zero",
"llvm.nvvm.sust.b.2d.v4i32.clamp",
"llvm.nvvm.sust.b.2d.v4i32.trap",
"llvm.nvvm.sust.b.2d.v4i32.zero",
"llvm.nvvm.sust.b.2d.v4i8.clamp",
"llvm.nvvm.sust.b.2d.v4i8.trap",
"llvm.nvvm.sust.b.2d.v4i8.zero",
"llvm.nvvm.sust.b.3d.i16.clamp",
"llvm.nvvm.sust.b.3d.i16.trap",
"llvm.nvvm.sust.b.3d.i16.zero",
"llvm.nvvm.sust.b.3d.i32.clamp",
"llvm.nvvm.sust.b.3d.i32.trap",
"llvm.nvvm.sust.b.3d.i32.zero",
"llvm.nvvm.sust.b.3d.i64.clamp",
"llvm.nvvm.sust.b.3d.i64.trap",
"llvm.nvvm.sust.b.3d.i64.zero",
"llvm.nvvm.sust.b.3d.i8.clamp",
"llvm.nvvm.sust.b.3d.i8.trap",
"llvm.nvvm.sust.b.3d.i8.zero",
"llvm.nvvm.sust.b.3d.v2i16.clamp",
"llvm.nvvm.sust.b.3d.v2i16.trap",
"llvm.nvvm.sust.b.3d.v2i16.zero",
"llvm.nvvm.sust.b.3d.v2i32.clamp",
"llvm.nvvm.sust.b.3d.v2i32.trap",
"llvm.nvvm.sust.b.3d.v2i32.zero",
"llvm.nvvm.sust.b.3d.v2i64.clamp",
"llvm.nvvm.sust.b.3d.v2i64.trap",
"llvm.nvvm.sust.b.3d.v2i64.zero",
"llvm.nvvm.sust.b.3d.v2i8.clamp",
"llvm.nvvm.sust.b.3d.v2i8.trap",
"llvm.nvvm.sust.b.3d.v2i8.zero",
"llvm.nvvm.sust.b.3d.v4i16.clamp",
"llvm.nvvm.sust.b.3d.v4i16.trap",
"llvm.nvvm.sust.b.3d.v4i16.zero",
"llvm.nvvm.sust.b.3d.v4i32.clamp",
"llvm.nvvm.sust.b.3d.v4i32.trap",
"llvm.nvvm.sust.b.3d.v4i32.zero",
"llvm.nvvm.sust.b.3d.v4i8.clamp",
"llvm.nvvm.sust.b.3d.v4i8.trap",
"llvm.nvvm.sust.b.3d.v4i8.zero",
"llvm.nvvm.sust.p.1d.array.i16.trap",
"llvm.nvvm.sust.p.1d.array.i32.trap",
"llvm.nvvm.sust.p.1d.array.i8.trap",
"llvm.nvvm.sust.p.1d.array.v2i16.trap",
"llvm.nvvm.sust.p.1d.array.v2i32.trap",
"llvm.nvvm.sust.p.1d.array.v2i8.trap",
"llvm.nvvm.sust.p.1d.array.v4i16.trap",
"llvm.nvvm.sust.p.1d.array.v4i32.trap",
"llvm.nvvm.sust.p.1d.array.v4i8.trap",
"llvm.nvvm.sust.p.1d.i16.trap",
"llvm.nvvm.sust.p.1d.i32.trap",
"llvm.nvvm.sust.p.1d.i8.trap",
"llvm.nvvm.sust.p.1d.v2i16.trap",
"llvm.nvvm.sust.p.1d.v2i32.trap",
"llvm.nvvm.sust.p.1d.v2i8.trap",
"llvm.nvvm.sust.p.1d.v4i16.trap",
"llvm.nvvm.sust.p.1d.v4i32.trap",
"llvm.nvvm.sust.p.1d.v4i8.trap",
"llvm.nvvm.sust.p.2d.array.i16.trap",
"llvm.nvvm.sust.p.2d.array.i32.trap",
"llvm.nvvm.sust.p.2d.array.i8.trap",
"llvm.nvvm.sust.p.2d.array.v2i16.trap",
"llvm.nvvm.sust.p.2d.array.v2i32.trap",
"llvm.nvvm.sust.p.2d.array.v2i8.trap",
"llvm.nvvm.sust.p.2d.array.v4i16.trap",
"llvm.nvvm.sust.p.2d.array.v4i32.trap",
"llvm.nvvm.sust.p.2d.array.v4i8.trap",
"llvm.nvvm.sust.p.2d.i16.trap",
"llvm.nvvm.sust.p.2d.i32.trap",
"llvm.nvvm.sust.p.2d.i8.trap",
"llvm.nvvm.sust.p.2d.v2i16.trap",
"llvm.nvvm.sust.p.2d.v2i32.trap",
"llvm.nvvm.sust.p.2d.v2i8.trap",
"llvm.nvvm.sust.p.2d.v4i16.trap",
"llvm.nvvm.sust.p.2d.v4i32.trap",
"llvm.nvvm.sust.p.2d.v4i8.trap",
"llvm.nvvm.sust.p.3d.i16.trap",
"llvm.nvvm.sust.p.3d.i32.trap",
"llvm.nvvm.sust.p.3d.i8.trap",
"llvm.nvvm.sust.p.3d.v2i16.trap",
"llvm.nvvm.sust.p.3d.v2i32.trap",
"llvm.nvvm.sust.p.3d.v2i8.trap",
"llvm.nvvm.sust.p.3d.v4i16.trap",
"llvm.nvvm.sust.p.3d.v4i32.trap",
"llvm.nvvm.sust.p.3d.v4i8.trap",
"llvm.nvvm.swap.lo.hi.b64",
"llvm.nvvm.tex.1d.array.grad.v4f32.f32",
"llvm.nvvm.tex.1d.array.grad.v4s32.f32",
"llvm.nvvm.tex.1d.array.grad.v4u32.f32",
"llvm.nvvm.tex.1d.array.level.v4f32.f32",
"llvm.nvvm.tex.1d.array.level.v4s32.f32",
"llvm.nvvm.tex.1d.array.level.v4u32.f32",
"llvm.nvvm.tex.1d.array.v4f32.f32",
"llvm.nvvm.tex.1d.array.v4f32.s32",
"llvm.nvvm.tex.1d.array.v4s32.f32",
"llvm.nvvm.tex.1d.array.v4s32.s32",
"llvm.nvvm.tex.1d.array.v4u32.f32",
"llvm.nvvm.tex.1d.array.v4u32.s32",
"llvm.nvvm.tex.1d.grad.v4f32.f32",
"llvm.nvvm.tex.1d.grad.v4s32.f32",
"llvm.nvvm.tex.1d.grad.v4u32.f32",
"llvm.nvvm.tex.1d.level.v4f32.f32",
"llvm.nvvm.tex.1d.level.v4s32.f32",
"llvm.nvvm.tex.1d.level.v4u32.f32",
"llvm.nvvm.tex.1d.v4f32.f32",
"llvm.nvvm.tex.1d.v4f32.s32",
"llvm.nvvm.tex.1d.v4s32.f32",
"llvm.nvvm.tex.1d.v4s32.s32",
"llvm.nvvm.tex.1d.v4u32.f32",
"llvm.nvvm.tex.1d.v4u32.s32",
"llvm.nvvm.tex.2d.array.grad.v4f32.f32",
"llvm.nvvm.tex.2d.array.grad.v4s32.f32",
"llvm.nvvm.tex.2d.array.grad.v4u32.f32",
"llvm.nvvm.tex.2d.array.level.v4f32.f32",
"llvm.nvvm.tex.2d.array.level.v4s32.f32",
"llvm.nvvm.tex.2d.array.level.v4u32.f32",
"llvm.nvvm.tex.2d.array.v4f32.f32",
"llvm.nvvm.tex.2d.array.v4f32.s32",
"llvm.nvvm.tex.2d.array.v4s32.f32",
"llvm.nvvm.tex.2d.array.v4s32.s32",
"llvm.nvvm.tex.2d.array.v4u32.f32",
"llvm.nvvm.tex.2d.array.v4u32.s32",
"llvm.nvvm.tex.2d.grad.v4f32.f32",
"llvm.nvvm.tex.2d.grad.v4s32.f32",
"llvm.nvvm.tex.2d.grad.v4u32.f32",
"llvm.nvvm.tex.2d.level.v4f32.f32",
"llvm.nvvm.tex.2d.level.v4s32.f32",
"llvm.nvvm.tex.2d.level.v4u32.f32",
"llvm.nvvm.tex.2d.v4f32.f32",
"llvm.nvvm.tex.2d.v4f32.s32",
"llvm.nvvm.tex.2d.v4s32.f32",
"llvm.nvvm.tex.2d.v4s32.s32",
"llvm.nvvm.tex.2d.v4u32.f32",
"llvm.nvvm.tex.2d.v4u32.s32",
"llvm.nvvm.tex.3d.grad.v4f32.f32",
"llvm.nvvm.tex.3d.grad.v4s32.f32",
"llvm.nvvm.tex.3d.grad.v4u32.f32",
"llvm.nvvm.tex.3d.level.v4f32.f32",
"llvm.nvvm.tex.3d.level.v4s32.f32",
"llvm.nvvm.tex.3d.level.v4u32.f32",
"llvm.nvvm.tex.3d.v4f32.f32",
"llvm.nvvm.tex.3d.v4f32.s32",
"llvm.nvvm.tex.3d.v4s32.f32",
"llvm.nvvm.tex.3d.v4s32.s32",
"llvm.nvvm.tex.3d.v4u32.f32",
"llvm.nvvm.tex.3d.v4u32.s32",
"llvm.nvvm.tex.cube.array.level.v4f32.f32",
"llvm.nvvm.tex.cube.array.level.v4s32.f32",
"llvm.nvvm.tex.cube.array.level.v4u32.f32",
"llvm.nvvm.tex.cube.array.v4f32.f32",
"llvm.nvvm.tex.cube.array.v4s32.f32",
"llvm.nvvm.tex.cube.array.v4u32.f32",
"llvm.nvvm.tex.cube.level.v4f32.f32",
"llvm.nvvm.tex.cube.level.v4s32.f32",
"llvm.nvvm.tex.cube.level.v4u32.f32",
"llvm.nvvm.tex.cube.v4f32.f32",
"llvm.nvvm.tex.cube.v4s32.f32",
"llvm.nvvm.tex.cube.v4u32.f32",
"llvm.nvvm.tex.unified.1d.array.grad.v4f32.f32",
"llvm.nvvm.tex.unified.1d.array.grad.v4s32.f32",
"llvm.nvvm.tex.unified.1d.array.grad.v4u32.f32",
"llvm.nvvm.tex.unified.1d.array.level.v4f32.f32",
"llvm.nvvm.tex.unified.1d.array.level.v4s32.f32",
"llvm.nvvm.tex.unified.1d.array.level.v4u32.f32",
"llvm.nvvm.tex.unified.1d.array.v4f32.f32",
"llvm.nvvm.tex.unified.1d.array.v4f32.s32",
"llvm.nvvm.tex.unified.1d.array.v4s32.f32",
"llvm.nvvm.tex.unified.1d.array.v4s32.s32",
"llvm.nvvm.tex.unified.1d.array.v4u32.f32",
"llvm.nvvm.tex.unified.1d.array.v4u32.s32",
"llvm.nvvm.tex.unified.1d.grad.v4f32.f32",
"llvm.nvvm.tex.unified.1d.grad.v4s32.f32",
"llvm.nvvm.tex.unified.1d.grad.v4u32.f32",
"llvm.nvvm.tex.unified.1d.level.v4f32.f32",
"llvm.nvvm.tex.unified.1d.level.v4s32.f32",
"llvm.nvvm.tex.unified.1d.level.v4u32.f32",
"llvm.nvvm.tex.unified.1d.v4f32.f32",
"llvm.nvvm.tex.unified.1d.v4f32.s32",
"llvm.nvvm.tex.unified.1d.v4s32.f32",
"llvm.nvvm.tex.unified.1d.v4s32.s32",
"llvm.nvvm.tex.unified.1d.v4u32.f32",
"llvm.nvvm.tex.unified.1d.v4u32.s32",
"llvm.nvvm.tex.unified.2d.array.grad.v4f32.f32",
"llvm.nvvm.tex.unified.2d.array.grad.v4s32.f32",
"llvm.nvvm.tex.unified.2d.array.grad.v4u32.f32",
"llvm.nvvm.tex.unified.2d.array.level.v4f32.f32",
"llvm.nvvm.tex.unified.2d.array.level.v4s32.f32",
"llvm.nvvm.tex.unified.2d.array.level.v4u32.f32",
"llvm.nvvm.tex.unified.2d.array.v4f32.f32",
"llvm.nvvm.tex.unified.2d.array.v4f32.s32",
"llvm.nvvm.tex.unified.2d.array.v4s32.f32",
"llvm.nvvm.tex.unified.2d.array.v4s32.s32",
"llvm.nvvm.tex.unified.2d.array.v4u32.f32",
"llvm.nvvm.tex.unified.2d.array.v4u32.s32",
"llvm.nvvm.tex.unified.2d.grad.v4f32.f32",
"llvm.nvvm.tex.unified.2d.grad.v4s32.f32",
"llvm.nvvm.tex.unified.2d.grad.v4u32.f32",
"llvm.nvvm.tex.unified.2d.level.v4f32.f32",
"llvm.nvvm.tex.unified.2d.level.v4s32.f32",
"llvm.nvvm.tex.unified.2d.level.v4u32.f32",
"llvm.nvvm.tex.unified.2d.v4f32.f32",
"llvm.nvvm.tex.unified.2d.v4f32.s32",
"llvm.nvvm.tex.unified.2d.v4s32.f32",
"llvm.nvvm.tex.unified.2d.v4s32.s32",
"llvm.nvvm.tex.unified.2d.v4u32.f32",
"llvm.nvvm.tex.unified.2d.v4u32.s32",
"llvm.nvvm.tex.unified.3d.grad.v4f32.f32",
"llvm.nvvm.tex.unified.3d.grad.v4s32.f32",
"llvm.nvvm.tex.unified.3d.grad.v4u32.f32",
"llvm.nvvm.tex.unified.3d.level.v4f32.f32",
"llvm.nvvm.tex.unified.3d.level.v4s32.f32",
"llvm.nvvm.tex.unified.3d.level.v4u32.f32",
"llvm.nvvm.tex.unified.3d.v4f32.f32",
"llvm.nvvm.tex.unified.3d.v4f32.s32",
"llvm.nvvm.tex.unified.3d.v4s32.f32",
"llvm.nvvm.tex.unified.3d.v4s32.s32",
"llvm.nvvm.tex.unified.3d.v4u32.f32",
"llvm.nvvm.tex.unified.3d.v4u32.s32",
"llvm.nvvm.tex.unified.cube.array.level.v4f32.f32",
"llvm.nvvm.tex.unified.cube.array.level.v4s32.f32",
"llvm.nvvm.tex.unified.cube.array.level.v4u32.f32",
"llvm.nvvm.tex.unified.cube.array.v4f32.f32",
"llvm.nvvm.tex.unified.cube.array.v4s32.f32",
"llvm.nvvm.tex.unified.cube.array.v4u32.f32",
"llvm.nvvm.tex.unified.cube.level.v4f32.f32",
"llvm.nvvm.tex.unified.cube.level.v4s32.f32",
"llvm.nvvm.tex.unified.cube.level.v4u32.f32",
"llvm.nvvm.tex.unified.cube.v4f32.f32",
"llvm.nvvm.tex.unified.cube.v4s32.f32",
"llvm.nvvm.tex.unified.cube.v4u32.f32",
"llvm.nvvm.texsurf.handle",
"llvm.nvvm.texsurf.handle.internal",
"llvm.nvvm.tld4.a.2d.v4f32.f32",
"llvm.nvvm.tld4.a.2d.v4s32.f32",
"llvm.nvvm.tld4.a.2d.v4u32.f32",
"llvm.nvvm.tld4.b.2d.v4f32.f32",
"llvm.nvvm.tld4.b.2d.v4s32.f32",
"llvm.nvvm.tld4.b.2d.v4u32.f32",
"llvm.nvvm.tld4.g.2d.v4f32.f32",
"llvm.nvvm.tld4.g.2d.v4s32.f32",
"llvm.nvvm.tld4.g.2d.v4u32.f32",
"llvm.nvvm.tld4.r.2d.v4f32.f32",
"llvm.nvvm.tld4.r.2d.v4s32.f32",
"llvm.nvvm.tld4.r.2d.v4u32.f32",
"llvm.nvvm.tld4.unified.a.2d.v4f32.f32",
"llvm.nvvm.tld4.unified.a.2d.v4s32.f32",
"llvm.nvvm.tld4.unified.a.2d.v4u32.f32",
"llvm.nvvm.tld4.unified.b.2d.v4f32.f32",
"llvm.nvvm.tld4.unified.b.2d.v4s32.f32",
"llvm.nvvm.tld4.unified.b.2d.v4u32.f32",
"llvm.nvvm.tld4.unified.g.2d.v4f32.f32",
"llvm.nvvm.tld4.unified.g.2d.v4s32.f32",
"llvm.nvvm.tld4.unified.g.2d.v4u32.f32",
"llvm.nvvm.tld4.unified.r.2d.v4f32.f32",
"llvm.nvvm.tld4.unified.r.2d.v4s32.f32",
"llvm.nvvm.tld4.unified.r.2d.v4u32.f32",
"llvm.nvvm.trunc.d",
"llvm.nvvm.trunc.f",
"llvm.nvvm.trunc.ftz.f",
"llvm.nvvm.txq.array.size",
"llvm.nvvm.txq.channel.data.type",
"llvm.nvvm.txq.channel.order",
"llvm.nvvm.txq.depth",
"llvm.nvvm.txq.height",
"llvm.nvvm.txq.num.mipmap.levels",
"llvm.nvvm.txq.num.samples",
"llvm.nvvm.txq.width",
"llvm.nvvm.ui2d.rm",
"llvm.nvvm.ui2d.rn",
"llvm.nvvm.ui2d.rp",
"llvm.nvvm.ui2d.rz",
"llvm.nvvm.ui2f.rm",
"llvm.nvvm.ui2f.rn",
"llvm.nvvm.ui2f.rp",
"llvm.nvvm.ui2f.rz",
"llvm.nvvm.ull2d.rm",
"llvm.nvvm.ull2d.rn",
"llvm.nvvm.ull2d.rp",
"llvm.nvvm.ull2d.rz",
"llvm.nvvm.ull2f.rm",
"llvm.nvvm.ull2f.rn",
"llvm.nvvm.ull2f.rp",
"llvm.nvvm.ull2f.rz",
"llvm.nvvm.vote.all",
"llvm.nvvm.vote.all.sync",
"llvm.nvvm.vote.any",
"llvm.nvvm.vote.any.sync",
"llvm.nvvm.vote.ballot",
"llvm.nvvm.vote.ballot.sync",
"llvm.nvvm.vote.uni",
"llvm.nvvm.vote.uni.sync",
"llvm.nvvm.wmma.m16n16k16.load.a.col.f16",
"llvm.nvvm.wmma.m16n16k16.load.a.col.s8",
"llvm.nvvm.wmma.m16n16k16.load.a.col.stride.f16",
"llvm.nvvm.wmma.m16n16k16.load.a.col.stride.s8",
"llvm.nvvm.wmma.m16n16k16.load.a.col.stride.u8",
"llvm.nvvm.wmma.m16n16k16.load.a.col.u8",
"llvm.nvvm.wmma.m16n16k16.load.a.row.f16",
"llvm.nvvm.wmma.m16n16k16.load.a.row.s8",
"llvm.nvvm.wmma.m16n16k16.load.a.row.stride.f16",
"llvm.nvvm.wmma.m16n16k16.load.a.row.stride.s8",
"llvm.nvvm.wmma.m16n16k16.load.a.row.stride.u8",
"llvm.nvvm.wmma.m16n16k16.load.a.row.u8",
"llvm.nvvm.wmma.m16n16k16.load.b.col.f16",
"llvm.nvvm.wmma.m16n16k16.load.b.col.s8",
"llvm.nvvm.wmma.m16n16k16.load.b.col.stride.f16",
"llvm.nvvm.wmma.m16n16k16.load.b.col.stride.s8",
"llvm.nvvm.wmma.m16n16k16.load.b.col.stride.u8",
"llvm.nvvm.wmma.m16n16k16.load.b.col.u8",
"llvm.nvvm.wmma.m16n16k16.load.b.row.f16",
"llvm.nvvm.wmma.m16n16k16.load.b.row.s8",
"llvm.nvvm.wmma.m16n16k16.load.b.row.stride.f16",
"llvm.nvvm.wmma.m16n16k16.load.b.row.stride.s8",
"llvm.nvvm.wmma.m16n16k16.load.b.row.stride.u8",
"llvm.nvvm.wmma.m16n16k16.load.b.row.u8",
"llvm.nvvm.wmma.m16n16k16.load.c.col.f16",
"llvm.nvvm.wmma.m16n16k16.load.c.col.f32",
"llvm.nvvm.wmma.m16n16k16.load.c.col.s32",
"llvm.nvvm.wmma.m16n16k16.load.c.col.stride.f16",
"llvm.nvvm.wmma.m16n16k16.load.c.col.stride.f32",
"llvm.nvvm.wmma.m16n16k16.load.c.col.stride.s32",
"llvm.nvvm.wmma.m16n16k16.load.c.row.f16",
"llvm.nvvm.wmma.m16n16k16.load.c.row.f32",
"llvm.nvvm.wmma.m16n16k16.load.c.row.s32",
"llvm.nvvm.wmma.m16n16k16.load.c.row.stride.f16",
"llvm.nvvm.wmma.m16n16k16.load.c.row.stride.f32",
"llvm.nvvm.wmma.m16n16k16.load.c.row.stride.s32",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f16",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f32",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f16",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f32",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.s8",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.s8.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.u8",
"llvm.nvvm.wmma.m16n16k16.mma.col.col.u8.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f16",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f32",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f16",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f32",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.s8",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.s8.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.u8",
"llvm.nvvm.wmma.m16n16k16.mma.col.row.u8.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f16",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f32",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f16",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f32",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.s8",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.s8.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.u8",
"llvm.nvvm.wmma.m16n16k16.mma.row.col.u8.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f16",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f32",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f16",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f16.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f32",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f32.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.s8",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.s8.satfinite",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.u8",
"llvm.nvvm.wmma.m16n16k16.mma.row.row.u8.satfinite",
"llvm.nvvm.wmma.m16n16k16.store.d.col.f16",
"llvm.nvvm.wmma.m16n16k16.store.d.col.f32",
"llvm.nvvm.wmma.m16n16k16.store.d.col.s32",
"llvm.nvvm.wmma.m16n16k16.store.d.col.stride.f16",
"llvm.nvvm.wmma.m16n16k16.store.d.col.stride.f32",
"llvm.nvvm.wmma.m16n16k16.store.d.col.stride.s32",
"llvm.nvvm.wmma.m16n16k16.store.d.row.f16",
"llvm.nvvm.wmma.m16n16k16.store.d.row.f32",
"llvm.nvvm.wmma.m16n16k16.store.d.row.s32",
"llvm.nvvm.wmma.m16n16k16.store.d.row.stride.f16",
"llvm.nvvm.wmma.m16n16k16.store.d.row.stride.f32",
"llvm.nvvm.wmma.m16n16k16.store.d.row.stride.s32",
"llvm.nvvm.wmma.m32n8k16.load.a.col.f16",
"llvm.nvvm.wmma.m32n8k16.load.a.col.s8",
"llvm.nvvm.wmma.m32n8k16.load.a.col.stride.f16",
"llvm.nvvm.wmma.m32n8k16.load.a.col.stride.s8",
"llvm.nvvm.wmma.m32n8k16.load.a.col.stride.u8",
"llvm.nvvm.wmma.m32n8k16.load.a.col.u8",
"llvm.nvvm.wmma.m32n8k16.load.a.row.f16",
"llvm.nvvm.wmma.m32n8k16.load.a.row.s8",
"llvm.nvvm.wmma.m32n8k16.load.a.row.stride.f16",
"llvm.nvvm.wmma.m32n8k16.load.a.row.stride.s8",
"llvm.nvvm.wmma.m32n8k16.load.a.row.stride.u8",
"llvm.nvvm.wmma.m32n8k16.load.a.row.u8",
"llvm.nvvm.wmma.m32n8k16.load.b.col.f16",
"llvm.nvvm.wmma.m32n8k16.load.b.col.s8",
"llvm.nvvm.wmma.m32n8k16.load.b.col.stride.f16",
"llvm.nvvm.wmma.m32n8k16.load.b.col.stride.s8",
"llvm.nvvm.wmma.m32n8k16.load.b.col.stride.u8",
"llvm.nvvm.wmma.m32n8k16.load.b.col.u8",
"llvm.nvvm.wmma.m32n8k16.load.b.row.f16",
"llvm.nvvm.wmma.m32n8k16.load.b.row.s8",
"llvm.nvvm.wmma.m32n8k16.load.b.row.stride.f16",
"llvm.nvvm.wmma.m32n8k16.load.b.row.stride.s8",
"llvm.nvvm.wmma.m32n8k16.load.b.row.stride.u8",
"llvm.nvvm.wmma.m32n8k16.load.b.row.u8",
"llvm.nvvm.wmma.m32n8k16.load.c.col.f16",
"llvm.nvvm.wmma.m32n8k16.load.c.col.f32",
"llvm.nvvm.wmma.m32n8k16.load.c.col.s32",
"llvm.nvvm.wmma.m32n8k16.load.c.col.stride.f16",
"llvm.nvvm.wmma.m32n8k16.load.c.col.stride.f32",
"llvm.nvvm.wmma.m32n8k16.load.c.col.stride.s32",
"llvm.nvvm.wmma.m32n8k16.load.c.row.f16",
"llvm.nvvm.wmma.m32n8k16.load.c.row.f32",
"llvm.nvvm.wmma.m32n8k16.load.c.row.s32",
"llvm.nvvm.wmma.m32n8k16.load.c.row.stride.f16",
"llvm.nvvm.wmma.m32n8k16.load.c.row.stride.f32",
"llvm.nvvm.wmma.m32n8k16.load.c.row.stride.s32",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f16",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f32",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f16",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f32",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.s8",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.s8.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.u8",
"llvm.nvvm.wmma.m32n8k16.mma.col.col.u8.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f16",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f32",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f16",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f32",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.s8",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.s8.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.u8",
"llvm.nvvm.wmma.m32n8k16.mma.col.row.u8.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f16",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f32",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f16",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f32",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.s8",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.s8.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.u8",
"llvm.nvvm.wmma.m32n8k16.mma.row.col.u8.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f16",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f32",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f16",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f16.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f32",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f32.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.s8",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.s8.satfinite",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.u8",
"llvm.nvvm.wmma.m32n8k16.mma.row.row.u8.satfinite",
"llvm.nvvm.wmma.m32n8k16.store.d.col.f16",
"llvm.nvvm.wmma.m32n8k16.store.d.col.f32",
"llvm.nvvm.wmma.m32n8k16.store.d.col.s32",
"llvm.nvvm.wmma.m32n8k16.store.d.col.stride.f16",
"llvm.nvvm.wmma.m32n8k16.store.d.col.stride.f32",
"llvm.nvvm.wmma.m32n8k16.store.d.col.stride.s32",
"llvm.nvvm.wmma.m32n8k16.store.d.row.f16",
"llvm.nvvm.wmma.m32n8k16.store.d.row.f32",
"llvm.nvvm.wmma.m32n8k16.store.d.row.s32",
"llvm.nvvm.wmma.m32n8k16.store.d.row.stride.f16",
"llvm.nvvm.wmma.m32n8k16.store.d.row.stride.f32",
"llvm.nvvm.wmma.m32n8k16.store.d.row.stride.s32",
"llvm.nvvm.wmma.m8n32k16.load.a.col.f16",
"llvm.nvvm.wmma.m8n32k16.load.a.col.s8",
"llvm.nvvm.wmma.m8n32k16.load.a.col.stride.f16",
"llvm.nvvm.wmma.m8n32k16.load.a.col.stride.s8",
"llvm.nvvm.wmma.m8n32k16.load.a.col.stride.u8",
"llvm.nvvm.wmma.m8n32k16.load.a.col.u8",
"llvm.nvvm.wmma.m8n32k16.load.a.row.f16",
"llvm.nvvm.wmma.m8n32k16.load.a.row.s8",
"llvm.nvvm.wmma.m8n32k16.load.a.row.stride.f16",
"llvm.nvvm.wmma.m8n32k16.load.a.row.stride.s8",
"llvm.nvvm.wmma.m8n32k16.load.a.row.stride.u8",
"llvm.nvvm.wmma.m8n32k16.load.a.row.u8",
"llvm.nvvm.wmma.m8n32k16.load.b.col.f16",
"llvm.nvvm.wmma.m8n32k16.load.b.col.s8",
"llvm.nvvm.wmma.m8n32k16.load.b.col.stride.f16",
"llvm.nvvm.wmma.m8n32k16.load.b.col.stride.s8",
"llvm.nvvm.wmma.m8n32k16.load.b.col.stride.u8",
"llvm.nvvm.wmma.m8n32k16.load.b.col.u8",
"llvm.nvvm.wmma.m8n32k16.load.b.row.f16",
"llvm.nvvm.wmma.m8n32k16.load.b.row.s8",
"llvm.nvvm.wmma.m8n32k16.load.b.row.stride.f16",
"llvm.nvvm.wmma.m8n32k16.load.b.row.stride.s8",
"llvm.nvvm.wmma.m8n32k16.load.b.row.stride.u8",
"llvm.nvvm.wmma.m8n32k16.load.b.row.u8",
"llvm.nvvm.wmma.m8n32k16.load.c.col.f16",
"llvm.nvvm.wmma.m8n32k16.load.c.col.f32",
"llvm.nvvm.wmma.m8n32k16.load.c.col.s32",
"llvm.nvvm.wmma.m8n32k16.load.c.col.stride.f16",
"llvm.nvvm.wmma.m8n32k16.load.c.col.stride.f32",
"llvm.nvvm.wmma.m8n32k16.load.c.col.stride.s32",
"llvm.nvvm.wmma.m8n32k16.load.c.row.f16",
"llvm.nvvm.wmma.m8n32k16.load.c.row.f32",
"llvm.nvvm.wmma.m8n32k16.load.c.row.s32",
"llvm.nvvm.wmma.m8n32k16.load.c.row.stride.f16",
"llvm.nvvm.wmma.m8n32k16.load.c.row.stride.f32",
"llvm.nvvm.wmma.m8n32k16.load.c.row.stride.s32",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f16",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f32",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f16",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f32",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.s8",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.s8.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.u8",
"llvm.nvvm.wmma.m8n32k16.mma.col.col.u8.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f16",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f32",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f16",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f32",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.s8",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.s8.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.u8",
"llvm.nvvm.wmma.m8n32k16.mma.col.row.u8.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f16",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f32",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f16",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f32",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.s8",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.s8.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.u8",
"llvm.nvvm.wmma.m8n32k16.mma.row.col.u8.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f16",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f32",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f16",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f16.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f32",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f32.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.s8",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.s8.satfinite",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.u8",
"llvm.nvvm.wmma.m8n32k16.mma.row.row.u8.satfinite",
"llvm.nvvm.wmma.m8n32k16.store.d.col.f16",
"llvm.nvvm.wmma.m8n32k16.store.d.col.f32",
"llvm.nvvm.wmma.m8n32k16.store.d.col.s32",
"llvm.nvvm.wmma.m8n32k16.store.d.col.stride.f16",
"llvm.nvvm.wmma.m8n32k16.store.d.col.stride.f32",
"llvm.nvvm.wmma.m8n32k16.store.d.col.stride.s32",
"llvm.nvvm.wmma.m8n32k16.store.d.row.f16",
"llvm.nvvm.wmma.m8n32k16.store.d.row.f32",
"llvm.nvvm.wmma.m8n32k16.store.d.row.s32",
"llvm.nvvm.wmma.m8n32k16.store.d.row.stride.f16",
"llvm.nvvm.wmma.m8n32k16.store.d.row.stride.f32",
"llvm.nvvm.wmma.m8n32k16.store.d.row.stride.s32",
"llvm.nvvm.wmma.m8n8k128.load.a.row.b1",
"llvm.nvvm.wmma.m8n8k128.load.a.row.stride.b1",
"llvm.nvvm.wmma.m8n8k128.load.b.col.b1",
"llvm.nvvm.wmma.m8n8k128.load.b.col.stride.b1",
"llvm.nvvm.wmma.m8n8k128.load.c.col.s32",
"llvm.nvvm.wmma.m8n8k128.load.c.col.stride.s32",
"llvm.nvvm.wmma.m8n8k128.load.c.row.s32",
"llvm.nvvm.wmma.m8n8k128.load.c.row.stride.s32",
"llvm.nvvm.wmma.m8n8k128.mma.row.col.b1",
"llvm.nvvm.wmma.m8n8k128.store.d.col.s32",
"llvm.nvvm.wmma.m8n8k128.store.d.col.stride.s32",
"llvm.nvvm.wmma.m8n8k128.store.d.row.s32",
"llvm.nvvm.wmma.m8n8k128.store.d.row.stride.s32",
"llvm.nvvm.wmma.m8n8k32.load.a.row.s4",
"llvm.nvvm.wmma.m8n8k32.load.a.row.stride.s4",
"llvm.nvvm.wmma.m8n8k32.load.a.row.stride.u4",
"llvm.nvvm.wmma.m8n8k32.load.a.row.u4",
"llvm.nvvm.wmma.m8n8k32.load.b.col.s4",
"llvm.nvvm.wmma.m8n8k32.load.b.col.stride.s4",
"llvm.nvvm.wmma.m8n8k32.load.b.col.stride.u4",
"llvm.nvvm.wmma.m8n8k32.load.b.col.u4",
"llvm.nvvm.wmma.m8n8k32.load.c.col.s32",
"llvm.nvvm.wmma.m8n8k32.load.c.col.stride.s32",
"llvm.nvvm.wmma.m8n8k32.load.c.row.s32",
"llvm.nvvm.wmma.m8n8k32.load.c.row.stride.s32",
"llvm.nvvm.wmma.m8n8k32.mma.row.col.s4",
"llvm.nvvm.wmma.m8n8k32.mma.row.col.s4.satfinite",
"llvm.nvvm.wmma.m8n8k32.mma.row.col.u4",
"llvm.nvvm.wmma.m8n8k32.mma.row.col.u4.satfinite",
"llvm.nvvm.wmma.m8n8k32.store.d.col.s32",
"llvm.nvvm.wmma.m8n8k32.store.d.col.stride.s32",
"llvm.nvvm.wmma.m8n8k32.store.d.row.s32",
"llvm.nvvm.wmma.m8n8k32.store.d.row.stride.s32",
"llvm.ppc.addf128.round.to.odd",
"llvm.ppc.altivec.crypto.vcipher",
"llvm.ppc.altivec.crypto.vcipherlast",
"llvm.ppc.altivec.crypto.vncipher",
"llvm.ppc.altivec.crypto.vncipherlast",
"llvm.ppc.altivec.crypto.vpermxor",
"llvm.ppc.altivec.crypto.vpmsumb",
"llvm.ppc.altivec.crypto.vpmsumd",
"llvm.ppc.altivec.crypto.vpmsumh",
"llvm.ppc.altivec.crypto.vpmsumw",
"llvm.ppc.altivec.crypto.vsbox",
"llvm.ppc.altivec.crypto.vshasigmad",
"llvm.ppc.altivec.crypto.vshasigmaw",
"llvm.ppc.altivec.dss",
"llvm.ppc.altivec.dssall",
"llvm.ppc.altivec.dst",
"llvm.ppc.altivec.dstst",
"llvm.ppc.altivec.dststt",
"llvm.ppc.altivec.dstt",
"llvm.ppc.altivec.lvebx",
"llvm.ppc.altivec.lvehx",
"llvm.ppc.altivec.lvewx",
"llvm.ppc.altivec.lvsl",
"llvm.ppc.altivec.lvsr",
"llvm.ppc.altivec.lvx",
"llvm.ppc.altivec.lvxl",
"llvm.ppc.altivec.mfvscr",
"llvm.ppc.altivec.mtvscr",
"llvm.ppc.altivec.mtvsrbm",
"llvm.ppc.altivec.mtvsrdm",
"llvm.ppc.altivec.mtvsrhm",
"llvm.ppc.altivec.mtvsrqm",
"llvm.ppc.altivec.mtvsrwm",
"llvm.ppc.altivec.stvebx",
"llvm.ppc.altivec.stvehx",
"llvm.ppc.altivec.stvewx",
"llvm.ppc.altivec.stvx",
"llvm.ppc.altivec.stvxl",
"llvm.ppc.altivec.vabsdub",
"llvm.ppc.altivec.vabsduh",
"llvm.ppc.altivec.vabsduw",
"llvm.ppc.altivec.vaddcuq",
"llvm.ppc.altivec.vaddcuw",
"llvm.ppc.altivec.vaddecuq",
"llvm.ppc.altivec.vaddeuqm",
"llvm.ppc.altivec.vaddsbs",
"llvm.ppc.altivec.vaddshs",
"llvm.ppc.altivec.vaddsws",
"llvm.ppc.altivec.vaddubs",
"llvm.ppc.altivec.vadduhs",
"llvm.ppc.altivec.vadduws",
"llvm.ppc.altivec.vavgsb",
"llvm.ppc.altivec.vavgsh",
"llvm.ppc.altivec.vavgsw",
"llvm.ppc.altivec.vavgub",
"llvm.ppc.altivec.vavguh",
"llvm.ppc.altivec.vavguw",
"llvm.ppc.altivec.vbpermq",
"llvm.ppc.altivec.vcfsx",
"llvm.ppc.altivec.vcfuged",
"llvm.ppc.altivec.vcfux",
"llvm.ppc.altivec.vclrlb",
"llvm.ppc.altivec.vclrrb",
"llvm.ppc.altivec.vclzdm",
"llvm.ppc.altivec.vclzlsbb",
"llvm.ppc.altivec.vcmpbfp",
"llvm.ppc.altivec.vcmpbfp.p",
"llvm.ppc.altivec.vcmpeqfp",
"llvm.ppc.altivec.vcmpeqfp.p",
"llvm.ppc.altivec.vcmpequb",
"llvm.ppc.altivec.vcmpequb.p",
"llvm.ppc.altivec.vcmpequd",
"llvm.ppc.altivec.vcmpequd.p",
"llvm.ppc.altivec.vcmpequh",
"llvm.ppc.altivec.vcmpequh.p",
"llvm.ppc.altivec.vcmpequq",
"llvm.ppc.altivec.vcmpequq.p",
"llvm.ppc.altivec.vcmpequw",
"llvm.ppc.altivec.vcmpequw.p",
"llvm.ppc.altivec.vcmpgefp",
"llvm.ppc.altivec.vcmpgefp.p",
"llvm.ppc.altivec.vcmpgtfp",
"llvm.ppc.altivec.vcmpgtfp.p",
"llvm.ppc.altivec.vcmpgtsb",
"llvm.ppc.altivec.vcmpgtsb.p",
"llvm.ppc.altivec.vcmpgtsd",
"llvm.ppc.altivec.vcmpgtsd.p",
"llvm.ppc.altivec.vcmpgtsh",
"llvm.ppc.altivec.vcmpgtsh.p",
"llvm.ppc.altivec.vcmpgtsq",
"llvm.ppc.altivec.vcmpgtsq.p",
"llvm.ppc.altivec.vcmpgtsw",
"llvm.ppc.altivec.vcmpgtsw.p",
"llvm.ppc.altivec.vcmpgtub",
"llvm.ppc.altivec.vcmpgtub.p",
"llvm.ppc.altivec.vcmpgtud",
"llvm.ppc.altivec.vcmpgtud.p",
"llvm.ppc.altivec.vcmpgtuh",
"llvm.ppc.altivec.vcmpgtuh.p",
"llvm.ppc.altivec.vcmpgtuq",
"llvm.ppc.altivec.vcmpgtuq.p",
"llvm.ppc.altivec.vcmpgtuw",
"llvm.ppc.altivec.vcmpgtuw.p",
"llvm.ppc.altivec.vcmpneb",
"llvm.ppc.altivec.vcmpneb.p",
"llvm.ppc.altivec.vcmpneh",
"llvm.ppc.altivec.vcmpneh.p",
"llvm.ppc.altivec.vcmpnew",
"llvm.ppc.altivec.vcmpnew.p",
"llvm.ppc.altivec.vcmpnezb",
"llvm.ppc.altivec.vcmpnezb.p",
"llvm.ppc.altivec.vcmpnezh",
"llvm.ppc.altivec.vcmpnezh.p",
"llvm.ppc.altivec.vcmpnezw",
"llvm.ppc.altivec.vcmpnezw.p",
"llvm.ppc.altivec.vcntmbb",
"llvm.ppc.altivec.vcntmbd",
"llvm.ppc.altivec.vcntmbh",
"llvm.ppc.altivec.vcntmbw",
"llvm.ppc.altivec.vctsxs",
"llvm.ppc.altivec.vctuxs",
"llvm.ppc.altivec.vctzdm",
"llvm.ppc.altivec.vctzlsbb",
"llvm.ppc.altivec.vdivesd",
"llvm.ppc.altivec.vdivesq",
"llvm.ppc.altivec.vdivesw",
"llvm.ppc.altivec.vdiveud",
"llvm.ppc.altivec.vdiveuq",
"llvm.ppc.altivec.vdiveuw",
"llvm.ppc.altivec.vexpandbm",
"llvm.ppc.altivec.vexpanddm",
"llvm.ppc.altivec.vexpandhm",
"llvm.ppc.altivec.vexpandqm",
"llvm.ppc.altivec.vexpandwm",
"llvm.ppc.altivec.vexptefp",
"llvm.ppc.altivec.vextddvlx",
"llvm.ppc.altivec.vextddvrx",
"llvm.ppc.altivec.vextdubvlx",
"llvm.ppc.altivec.vextdubvrx",
"llvm.ppc.altivec.vextduhvlx",
"llvm.ppc.altivec.vextduhvrx",
"llvm.ppc.altivec.vextduwvlx",
"llvm.ppc.altivec.vextduwvrx",
"llvm.ppc.altivec.vextractbm",
"llvm.ppc.altivec.vextractdm",
"llvm.ppc.altivec.vextracthm",
"llvm.ppc.altivec.vextractqm",
"llvm.ppc.altivec.vextractwm",
"llvm.ppc.altivec.vextsb2d",
"llvm.ppc.altivec.vextsb2w",
"llvm.ppc.altivec.vextsd2q",
"llvm.ppc.altivec.vextsh2d",
"llvm.ppc.altivec.vextsh2w",
"llvm.ppc.altivec.vextsw2d",
"llvm.ppc.altivec.vgbbd",
"llvm.ppc.altivec.vgnb",
"llvm.ppc.altivec.vinsblx",
"llvm.ppc.altivec.vinsbrx",
"llvm.ppc.altivec.vinsbvlx",
"llvm.ppc.altivec.vinsbvrx",
"llvm.ppc.altivec.vinsd",
"llvm.ppc.altivec.vinsdlx",
"llvm.ppc.altivec.vinsdrx",
"llvm.ppc.altivec.vinshlx",
"llvm.ppc.altivec.vinshrx",
"llvm.ppc.altivec.vinshvlx",
"llvm.ppc.altivec.vinshvrx",
"llvm.ppc.altivec.vinsw",
"llvm.ppc.altivec.vinswlx",
"llvm.ppc.altivec.vinswrx",
"llvm.ppc.altivec.vinswvlx",
"llvm.ppc.altivec.vinswvrx",
"llvm.ppc.altivec.vlogefp",
"llvm.ppc.altivec.vmaddfp",
"llvm.ppc.altivec.vmaxfp",
"llvm.ppc.altivec.vmaxsb",
"llvm.ppc.altivec.vmaxsd",
"llvm.ppc.altivec.vmaxsh",
"llvm.ppc.altivec.vmaxsw",
"llvm.ppc.altivec.vmaxub",
"llvm.ppc.altivec.vmaxud",
"llvm.ppc.altivec.vmaxuh",
"llvm.ppc.altivec.vmaxuw",
"llvm.ppc.altivec.vmhaddshs",
"llvm.ppc.altivec.vmhraddshs",
"llvm.ppc.altivec.vminfp",
"llvm.ppc.altivec.vminsb",
"llvm.ppc.altivec.vminsd",
"llvm.ppc.altivec.vminsh",
"llvm.ppc.altivec.vminsw",
"llvm.ppc.altivec.vminub",
"llvm.ppc.altivec.vminud",
"llvm.ppc.altivec.vminuh",
"llvm.ppc.altivec.vminuw",
"llvm.ppc.altivec.vmladduhm",
"llvm.ppc.altivec.vmsumcud",
"llvm.ppc.altivec.vmsummbm",
"llvm.ppc.altivec.vmsumshm",
"llvm.ppc.altivec.vmsumshs",
"llvm.ppc.altivec.vmsumubm",
"llvm.ppc.altivec.vmsumudm",
"llvm.ppc.altivec.vmsumuhm",
"llvm.ppc.altivec.vmsumuhs",
"llvm.ppc.altivec.vmulesb",
"llvm.ppc.altivec.vmulesd",
"llvm.ppc.altivec.vmulesh",
"llvm.ppc.altivec.vmulesw",
"llvm.ppc.altivec.vmuleub",
"llvm.ppc.altivec.vmuleud",
"llvm.ppc.altivec.vmuleuh",
"llvm.ppc.altivec.vmuleuw",
"llvm.ppc.altivec.vmulhsd",
"llvm.ppc.altivec.vmulhsw",
"llvm.ppc.altivec.vmulhud",
"llvm.ppc.altivec.vmulhuw",
"llvm.ppc.altivec.vmulosb",
"llvm.ppc.altivec.vmulosd",
"llvm.ppc.altivec.vmulosh",
"llvm.ppc.altivec.vmulosw",
"llvm.ppc.altivec.vmuloub",
"llvm.ppc.altivec.vmuloud",
"llvm.ppc.altivec.vmulouh",
"llvm.ppc.altivec.vmulouw",
"llvm.ppc.altivec.vnmsubfp",
"llvm.ppc.altivec.vpdepd",
"llvm.ppc.altivec.vperm",
"llvm.ppc.altivec.vpextd",
"llvm.ppc.altivec.vpkpx",
"llvm.ppc.altivec.vpksdss",
"llvm.ppc.altivec.vpksdus",
"llvm.ppc.altivec.vpkshss",
"llvm.ppc.altivec.vpkshus",
"llvm.ppc.altivec.vpkswss",
"llvm.ppc.altivec.vpkswus",
"llvm.ppc.altivec.vpkudus",
"llvm.ppc.altivec.vpkuhus",
"llvm.ppc.altivec.vpkuwus",
"llvm.ppc.altivec.vprtybd",
"llvm.ppc.altivec.vprtybq",
"llvm.ppc.altivec.vprtybw",
"llvm.ppc.altivec.vrefp",
"llvm.ppc.altivec.vrfim",
"llvm.ppc.altivec.vrfin",
"llvm.ppc.altivec.vrfip",
"llvm.ppc.altivec.vrfiz",
"llvm.ppc.altivec.vrlb",
"llvm.ppc.altivec.vrld",
"llvm.ppc.altivec.vrldmi",
"llvm.ppc.altivec.vrldnm",
"llvm.ppc.altivec.vrlh",
"llvm.ppc.altivec.vrlqmi",
"llvm.ppc.altivec.vrlqnm",
"llvm.ppc.altivec.vrlw",
"llvm.ppc.altivec.vrlwmi",
"llvm.ppc.altivec.vrlwnm",
"llvm.ppc.altivec.vrsqrtefp",
"llvm.ppc.altivec.vsel",
"llvm.ppc.altivec.vsl",
"llvm.ppc.altivec.vslb",
"llvm.ppc.altivec.vsldbi",
"llvm.ppc.altivec.vslh",
"llvm.ppc.altivec.vslo",
"llvm.ppc.altivec.vslv",
"llvm.ppc.altivec.vslw",
"llvm.ppc.altivec.vsr",
"llvm.ppc.altivec.vsrab",
"llvm.ppc.altivec.vsrah",
"llvm.ppc.altivec.vsraw",
"llvm.ppc.altivec.vsrb",
"llvm.ppc.altivec.vsrdbi",
"llvm.ppc.altivec.vsrh",
"llvm.ppc.altivec.vsro",
"llvm.ppc.altivec.vsrv",
"llvm.ppc.altivec.vsrw",
"llvm.ppc.altivec.vstribl",
"llvm.ppc.altivec.vstribl.p",
"llvm.ppc.altivec.vstribr",
"llvm.ppc.altivec.vstribr.p",
"llvm.ppc.altivec.vstrihl",
"llvm.ppc.altivec.vstrihl.p",
"llvm.ppc.altivec.vstrihr",
"llvm.ppc.altivec.vstrihr.p",
"llvm.ppc.altivec.vsubcuq",
"llvm.ppc.altivec.vsubcuw",
"llvm.ppc.altivec.vsubecuq",
"llvm.ppc.altivec.vsubeuqm",
"llvm.ppc.altivec.vsubsbs",
"llvm.ppc.altivec.vsubshs",
"llvm.ppc.altivec.vsubsws",
"llvm.ppc.altivec.vsububs",
"llvm.ppc.altivec.vsubuhs",
"llvm.ppc.altivec.vsubuws",
"llvm.ppc.altivec.vsum2sws",
"llvm.ppc.altivec.vsum4sbs",
"llvm.ppc.altivec.vsum4shs",
"llvm.ppc.altivec.vsum4ubs",
"llvm.ppc.altivec.vsumsws",
"llvm.ppc.altivec.vupkhpx",
"llvm.ppc.altivec.vupkhsb",
"llvm.ppc.altivec.vupkhsh",
"llvm.ppc.altivec.vupkhsw",
"llvm.ppc.altivec.vupklpx",
"llvm.ppc.altivec.vupklsb",
"llvm.ppc.altivec.vupklsh",
"llvm.ppc.altivec.vupklsw",
"llvm.ppc.bpermd",
"llvm.ppc.cfence",
"llvm.ppc.cfuged",
"llvm.ppc.cntlzdm",
"llvm.ppc.cnttzdm",
"llvm.ppc.darn",
"llvm.ppc.darn32",
"llvm.ppc.darnraw",
"llvm.ppc.dcba",
"llvm.ppc.dcbf",
"llvm.ppc.dcbfl",
"llvm.ppc.dcbflp",
"llvm.ppc.dcbfps",
"llvm.ppc.dcbi",
"llvm.ppc.dcbst",
"llvm.ppc.dcbstps",
"llvm.ppc.dcbt",
"llvm.ppc.dcbt.with.hint",
"llvm.ppc.dcbtst",
"llvm.ppc.dcbtst.with.hint",
"llvm.ppc.dcbz",
"llvm.ppc.dcbzl",
"llvm.ppc.divde",
"llvm.ppc.divdeu",
"llvm.ppc.divf128.round.to.odd",
"llvm.ppc.divwe",
"llvm.ppc.divweu",
"llvm.ppc.eieio",
"llvm.ppc.fmaf128.round.to.odd",
"llvm.ppc.get.texasr",
"llvm.ppc.get.texasru",
"llvm.ppc.get.tfhar",
"llvm.ppc.get.tfiar",
"llvm.ppc.isync",
"llvm.ppc.lwsync",
"llvm.ppc.mma.assemble.acc",
"llvm.ppc.mma.disassemble.acc",
"llvm.ppc.mma.pmxvbf16ger2",
"llvm.ppc.mma.pmxvbf16ger2nn",
"llvm.ppc.mma.pmxvbf16ger2np",
"llvm.ppc.mma.pmxvbf16ger2pn",
"llvm.ppc.mma.pmxvbf16ger2pp",
"llvm.ppc.mma.pmxvf16ger2",
"llvm.ppc.mma.pmxvf16ger2nn",
"llvm.ppc.mma.pmxvf16ger2np",
"llvm.ppc.mma.pmxvf16ger2pn",
"llvm.ppc.mma.pmxvf16ger2pp",
"llvm.ppc.mma.pmxvf32ger",
"llvm.ppc.mma.pmxvf32gernn",
"llvm.ppc.mma.pmxvf32gernp",
"llvm.ppc.mma.pmxvf32gerpn",
"llvm.ppc.mma.pmxvf32gerpp",
"llvm.ppc.mma.pmxvf64ger",
"llvm.ppc.mma.pmxvf64gernn",
"llvm.ppc.mma.pmxvf64gernp",
"llvm.ppc.mma.pmxvf64gerpn",
"llvm.ppc.mma.pmxvf64gerpp",
"llvm.ppc.mma.pmxvi16ger2",
"llvm.ppc.mma.pmxvi16ger2pp",
"llvm.ppc.mma.pmxvi16ger2s",
"llvm.ppc.mma.pmxvi16ger2spp",
"llvm.ppc.mma.pmxvi4ger8",
"llvm.ppc.mma.pmxvi4ger8pp",
"llvm.ppc.mma.pmxvi8ger4",
"llvm.ppc.mma.pmxvi8ger4pp",
"llvm.ppc.mma.pmxvi8ger4spp",
"llvm.ppc.mma.xvbf16ger2",
"llvm.ppc.mma.xvbf16ger2nn",
"llvm.ppc.mma.xvbf16ger2np",
"llvm.ppc.mma.xvbf16ger2pn",
"llvm.ppc.mma.xvbf16ger2pp",
"llvm.ppc.mma.xvf16ger2",
"llvm.ppc.mma.xvf16ger2nn",
"llvm.ppc.mma.xvf16ger2np",
"llvm.ppc.mma.xvf16ger2pn",
"llvm.ppc.mma.xvf16ger2pp",
"llvm.ppc.mma.xvf32ger",
"llvm.ppc.mma.xvf32gernn",
"llvm.ppc.mma.xvf32gernp",
"llvm.ppc.mma.xvf32gerpn",
"llvm.ppc.mma.xvf32gerpp",
"llvm.ppc.mma.xvf64ger",
"llvm.ppc.mma.xvf64gernn",
"llvm.ppc.mma.xvf64gernp",
"llvm.ppc.mma.xvf64gerpn",
"llvm.ppc.mma.xvf64gerpp",
"llvm.ppc.mma.xvi16ger2",
"llvm.ppc.mma.xvi16ger2pp",
"llvm.ppc.mma.xvi16ger2s",
"llvm.ppc.mma.xvi16ger2spp",
"llvm.ppc.mma.xvi4ger8",
"llvm.ppc.mma.xvi4ger8pp",
"llvm.ppc.mma.xvi8ger4",
"llvm.ppc.mma.xvi8ger4pp",
"llvm.ppc.mma.xvi8ger4spp",
"llvm.ppc.mma.xxmfacc",
"llvm.ppc.mma.xxmtacc",
"llvm.ppc.mma.xxsetaccz",
"llvm.ppc.mulf128.round.to.odd",
"llvm.ppc.pdepd",
"llvm.ppc.pextd",
"llvm.ppc.popcntb",
"llvm.ppc.readflm",
"llvm.ppc.scalar.extract.expq",
"llvm.ppc.scalar.insert.exp.qp",
"llvm.ppc.set.texasr",
"llvm.ppc.set.texasru",
"llvm.ppc.set.tfhar",
"llvm.ppc.set.tfiar",
"llvm.ppc.setflm",
"llvm.ppc.setrnd",
"llvm.ppc.sqrtf128.round.to.odd",
"llvm.ppc.subf128.round.to.odd",
"llvm.ppc.sync",
"llvm.ppc.tabort",
"llvm.ppc.tabortdc",
"llvm.ppc.tabortdci",
"llvm.ppc.tabortwc",
"llvm.ppc.tabortwci",
"llvm.ppc.tbegin",
"llvm.ppc.tcheck",
"llvm.ppc.tend",
"llvm.ppc.tendall",
"llvm.ppc.trechkpt",
"llvm.ppc.treclaim",
"llvm.ppc.tresume",
"llvm.ppc.truncf128.round.to.odd",
"llvm.ppc.tsr",
"llvm.ppc.tsuspend",
"llvm.ppc.ttest",
"llvm.ppc.vsx.assemble.pair",
"llvm.ppc.vsx.disassemble.pair",
"llvm.ppc.vsx.lxvd2x",
"llvm.ppc.vsx.lxvd2x.be",
"llvm.ppc.vsx.lxvl",
"llvm.ppc.vsx.lxvll",
"llvm.ppc.vsx.lxvp",
"llvm.ppc.vsx.lxvw4x",
"llvm.ppc.vsx.lxvw4x.be",
"llvm.ppc.vsx.stxvd2x",
"llvm.ppc.vsx.stxvd2x.be",
"llvm.ppc.vsx.stxvl",
"llvm.ppc.vsx.stxvll",
"llvm.ppc.vsx.stxvp",
"llvm.ppc.vsx.stxvw4x",
"llvm.ppc.vsx.stxvw4x.be",
"llvm.ppc.vsx.xsmaxdp",
"llvm.ppc.vsx.xsmindp",
"llvm.ppc.vsx.xvcmpeqdp",
"llvm.ppc.vsx.xvcmpeqdp.p",
"llvm.ppc.vsx.xvcmpeqsp",
"llvm.ppc.vsx.xvcmpeqsp.p",
"llvm.ppc.vsx.xvcmpgedp",
"llvm.ppc.vsx.xvcmpgedp.p",
"llvm.ppc.vsx.xvcmpgesp",
"llvm.ppc.vsx.xvcmpgesp.p",
"llvm.ppc.vsx.xvcmpgtdp",
"llvm.ppc.vsx.xvcmpgtdp.p",
"llvm.ppc.vsx.xvcmpgtsp",
"llvm.ppc.vsx.xvcmpgtsp.p",
"llvm.ppc.vsx.xvcvbf16spn",
"llvm.ppc.vsx.xvcvdpsp",
"llvm.ppc.vsx.xvcvdpsxws",
"llvm.ppc.vsx.xvcvdpuxws",
"llvm.ppc.vsx.xvcvhpsp",
"llvm.ppc.vsx.xvcvspbf16",
"llvm.ppc.vsx.xvcvspdp",
"llvm.ppc.vsx.xvcvsphp",
"llvm.ppc.vsx.xvcvsxdsp",
"llvm.ppc.vsx.xvcvsxwdp",
"llvm.ppc.vsx.xvcvuxdsp",
"llvm.ppc.vsx.xvcvuxwdp",
"llvm.ppc.vsx.xvdivdp",
"llvm.ppc.vsx.xvdivsp",
"llvm.ppc.vsx.xviexpdp",
"llvm.ppc.vsx.xviexpsp",
"llvm.ppc.vsx.xvmaxdp",
"llvm.ppc.vsx.xvmaxsp",
"llvm.ppc.vsx.xvmindp",
"llvm.ppc.vsx.xvminsp",
"llvm.ppc.vsx.xvrdpip",
"llvm.ppc.vsx.xvredp",
"llvm.ppc.vsx.xvresp",
"llvm.ppc.vsx.xvrspip",
"llvm.ppc.vsx.xvrsqrtedp",
"llvm.ppc.vsx.xvrsqrtesp",
"llvm.ppc.vsx.xvtdivdp",
"llvm.ppc.vsx.xvtdivsp",
"llvm.ppc.vsx.xvtlsbb",
"llvm.ppc.vsx.xvtsqrtdp",
"llvm.ppc.vsx.xvtsqrtsp",
"llvm.ppc.vsx.xvtstdcdp",
"llvm.ppc.vsx.xvtstdcsp",
"llvm.ppc.vsx.xvxexpdp",
"llvm.ppc.vsx.xvxexpsp",
"llvm.ppc.vsx.xvxsigdp",
"llvm.ppc.vsx.xvxsigsp",
"llvm.ppc.vsx.xxblendvb",
"llvm.ppc.vsx.xxblendvd",
"llvm.ppc.vsx.xxblendvh",
"llvm.ppc.vsx.xxblendvw",
"llvm.ppc.vsx.xxeval",
"llvm.ppc.vsx.xxextractuw",
"llvm.ppc.vsx.xxgenpcvbm",
"llvm.ppc.vsx.xxgenpcvdm",
"llvm.ppc.vsx.xxgenpcvhm",
"llvm.ppc.vsx.xxgenpcvwm",
"llvm.ppc.vsx.xxinsertw",
"llvm.ppc.vsx.xxleqv",
"llvm.ppc.vsx.xxpermx",
"llvm.r600.cube",
"llvm.r600.ddx",
"llvm.r600.ddy",
"llvm.r600.dot4",
"llvm.r600.group.barrier",
"llvm.r600.implicitarg.ptr",
"llvm.r600.kill",
"llvm.r600.rat.store.typed",
"llvm.r600.read.global.size.x",
"llvm.r600.read.global.size.y",
"llvm.r600.read.global.size.z",
"llvm.r600.read.local.size.x",
"llvm.r600.read.local.size.y",
"llvm.r600.read.local.size.z",
"llvm.r600.read.ngroups.x",
"llvm.r600.read.ngroups.y",
"llvm.r600.read.ngroups.z",
"llvm.r600.read.tgid.x",
"llvm.r600.read.tgid.y",
"llvm.r600.read.tgid.z",
"llvm.r600.read.tidig.x",
"llvm.r600.read.tidig.y",
"llvm.r600.read.tidig.z",
"llvm.r600.recipsqrt.clamped",
"llvm.r600.recipsqrt.ieee",
"llvm.r600.store.stream.output",
"llvm.r600.store.swizzle",
"llvm.r600.tex",
"llvm.r600.texc",
"llvm.r600.txb",
"llvm.r600.txbc",
"llvm.r600.txf",
"llvm.r600.txl",
"llvm.r600.txlc",
"llvm.r600.txq",
"llvm.riscv.masked.atomicrmw.add.i32",
"llvm.riscv.masked.atomicrmw.add.i64",
"llvm.riscv.masked.atomicrmw.max.i32",
"llvm.riscv.masked.atomicrmw.max.i64",
"llvm.riscv.masked.atomicrmw.min.i32",
"llvm.riscv.masked.atomicrmw.min.i64",
"llvm.riscv.masked.atomicrmw.nand.i32",
"llvm.riscv.masked.atomicrmw.nand.i64",
"llvm.riscv.masked.atomicrmw.sub.i32",
"llvm.riscv.masked.atomicrmw.sub.i64",
"llvm.riscv.masked.atomicrmw.umax.i32",
"llvm.riscv.masked.atomicrmw.umax.i64",
"llvm.riscv.masked.atomicrmw.umin.i32",
"llvm.riscv.masked.atomicrmw.umin.i64",
"llvm.riscv.masked.atomicrmw.xchg.i32",
"llvm.riscv.masked.atomicrmw.xchg.i64",
"llvm.riscv.masked.cmpxchg.i32",
"llvm.riscv.masked.cmpxchg.i64",
"llvm.riscv.vaadd",
"llvm.riscv.vaadd.mask",
"llvm.riscv.vaaddu",
"llvm.riscv.vaaddu.mask",
"llvm.riscv.vadc",
"llvm.riscv.vadd",
"llvm.riscv.vadd.mask",
"llvm.riscv.vand",
"llvm.riscv.vand.mask",
"llvm.riscv.vasub",
"llvm.riscv.vasub.mask",
"llvm.riscv.vasubu",
"llvm.riscv.vasubu.mask",
"llvm.riscv.vcompress.mask",
"llvm.riscv.vdiv",
"llvm.riscv.vdiv.mask",
"llvm.riscv.vdivu",
"llvm.riscv.vdivu.mask",
"llvm.riscv.vfadd",
"llvm.riscv.vfadd.mask",
"llvm.riscv.vfcvt.f.x.v",
"llvm.riscv.vfcvt.f.x.v.mask",
"llvm.riscv.vfcvt.f.xu.v",
"llvm.riscv.vfcvt.f.xu.v.mask",
"llvm.riscv.vfcvt.rtz.x.f.v",
"llvm.riscv.vfcvt.rtz.x.f.v.mask",
"llvm.riscv.vfcvt.rtz.xu.f.v",
"llvm.riscv.vfcvt.rtz.xu.f.v.mask",
"llvm.riscv.vfcvt.x.f.v",
"llvm.riscv.vfcvt.x.f.v.mask",
"llvm.riscv.vfcvt.xu.f.v",
"llvm.riscv.vfcvt.xu.f.v.mask",
"llvm.riscv.vfdiv",
"llvm.riscv.vfdiv.mask",
"llvm.riscv.vfirst",
"llvm.riscv.vfirst.mask",
"llvm.riscv.vfmacc",
"llvm.riscv.vfmacc.mask",
"llvm.riscv.vfmadd",
"llvm.riscv.vfmadd.mask",
"llvm.riscv.vfmax",
"llvm.riscv.vfmax.mask",
"llvm.riscv.vfmerge",
"llvm.riscv.vfmin",
"llvm.riscv.vfmin.mask",
"llvm.riscv.vfmsac",
"llvm.riscv.vfmsac.mask",
"llvm.riscv.vfmsub",
"llvm.riscv.vfmsub.mask",
"llvm.riscv.vfmul",
"llvm.riscv.vfmul.mask",
"llvm.riscv.vfmv.f.s",
"llvm.riscv.vfmv.s.f",
"llvm.riscv.vfmv.v.f",
"llvm.riscv.vfncvt.f.f.w",
"llvm.riscv.vfncvt.f.f.w.mask",
"llvm.riscv.vfncvt.f.x.w",
"llvm.riscv.vfncvt.f.x.w.mask",
"llvm.riscv.vfncvt.f.xu.w",
"llvm.riscv.vfncvt.f.xu.w.mask",
"llvm.riscv.vfncvt.rod.f.f.w",
"llvm.riscv.vfncvt.rod.f.f.w.mask",
"llvm.riscv.vfncvt.rtz.x.f.w",
"llvm.riscv.vfncvt.rtz.x.f.w.mask",
"llvm.riscv.vfncvt.rtz.xu.f.w",
"llvm.riscv.vfncvt.rtz.xu.f.w.mask",
"llvm.riscv.vfncvt.x.f.w",
"llvm.riscv.vfncvt.x.f.w.mask",
"llvm.riscv.vfncvt.xu.f.w",
"llvm.riscv.vfncvt.xu.f.w.mask",
"llvm.riscv.vfnmacc",
"llvm.riscv.vfnmacc.mask",
"llvm.riscv.vfnmadd",
"llvm.riscv.vfnmadd.mask",
"llvm.riscv.vfnmsac",
"llvm.riscv.vfnmsac.mask",
"llvm.riscv.vfnmsub",
"llvm.riscv.vfnmsub.mask",
"llvm.riscv.vfrdiv",
"llvm.riscv.vfrdiv.mask",
"llvm.riscv.vfredmax",
"llvm.riscv.vfredmax.mask",
"llvm.riscv.vfredmin",
"llvm.riscv.vfredmin.mask",
"llvm.riscv.vfredosum",
"llvm.riscv.vfredosum.mask",
"llvm.riscv.vfredsum",
"llvm.riscv.vfredsum.mask",
"llvm.riscv.vfrsub",
"llvm.riscv.vfrsub.mask",
"llvm.riscv.vfsgnj",
"llvm.riscv.vfsgnj.mask",
"llvm.riscv.vfsgnjn",
"llvm.riscv.vfsgnjn.mask",
"llvm.riscv.vfsgnjx",
"llvm.riscv.vfsgnjx.mask",
"llvm.riscv.vfslide1down",
"llvm.riscv.vfslide1down.mask",
"llvm.riscv.vfslide1up",
"llvm.riscv.vfslide1up.mask",
"llvm.riscv.vfsqrt",
"llvm.riscv.vfsqrt.mask",
"llvm.riscv.vfsub",
"llvm.riscv.vfsub.mask",
"llvm.riscv.vfwadd",
"llvm.riscv.vfwadd.mask",
"llvm.riscv.vfwadd.w",
"llvm.riscv.vfwadd.w.mask",
"llvm.riscv.vfwcvt.f.f.v",
"llvm.riscv.vfwcvt.f.f.v.mask",
"llvm.riscv.vfwcvt.f.x.v",
"llvm.riscv.vfwcvt.f.x.v.mask",
"llvm.riscv.vfwcvt.f.xu.v",
"llvm.riscv.vfwcvt.f.xu.v.mask",
"llvm.riscv.vfwcvt.rtz.x.f.v",
"llvm.riscv.vfwcvt.rtz.x.f.v.mask",
"llvm.riscv.vfwcvt.rtz.xu.f.v",
"llvm.riscv.vfwcvt.rtz.xu.f.v.mask",
"llvm.riscv.vfwcvt.x.f.v",
"llvm.riscv.vfwcvt.x.f.v.mask",
"llvm.riscv.vfwcvt.xu.f.v",
"llvm.riscv.vfwcvt.xu.f.v.mask",
"llvm.riscv.vfwmacc",
"llvm.riscv.vfwmacc.mask",
"llvm.riscv.vfwmsac",
"llvm.riscv.vfwmsac.mask",
"llvm.riscv.vfwmul",
"llvm.riscv.vfwmul.mask",
"llvm.riscv.vfwnmacc",
"llvm.riscv.vfwnmacc.mask",
"llvm.riscv.vfwnmsac",
"llvm.riscv.vfwnmsac.mask",
"llvm.riscv.vfwredosum",
"llvm.riscv.vfwredosum.mask",
"llvm.riscv.vfwredsum",
"llvm.riscv.vfwredsum.mask",
"llvm.riscv.vfwsub",
"llvm.riscv.vfwsub.mask",
"llvm.riscv.vfwsub.w",
"llvm.riscv.vfwsub.w.mask",
"llvm.riscv.vid",
"llvm.riscv.vid.mask",
"llvm.riscv.viota",
"llvm.riscv.viota.mask",
"llvm.riscv.vle",
"llvm.riscv.vle.mask",
"llvm.riscv.vleff",
"llvm.riscv.vleff.mask",
"llvm.riscv.vlse",
"llvm.riscv.vlse.mask",
"llvm.riscv.vlxe",
"llvm.riscv.vlxe.mask",
"llvm.riscv.vmacc",
"llvm.riscv.vmacc.mask",
"llvm.riscv.vmadc",
"llvm.riscv.vmadc.carry.in",
"llvm.riscv.vmadd",
"llvm.riscv.vmadd.mask",
"llvm.riscv.vmand",
"llvm.riscv.vmandnot",
"llvm.riscv.vmax",
"llvm.riscv.vmax.mask",
"llvm.riscv.vmaxu",
"llvm.riscv.vmaxu.mask",
"llvm.riscv.vmclr",
"llvm.riscv.vmerge",
"llvm.riscv.vmfeq",
"llvm.riscv.vmfeq.mask",
"llvm.riscv.vmfge",
"llvm.riscv.vmfge.mask",
"llvm.riscv.vmfgt",
"llvm.riscv.vmfgt.mask",
"llvm.riscv.vmfle",
"llvm.riscv.vmfle.mask",
"llvm.riscv.vmflt",
"llvm.riscv.vmflt.mask",
"llvm.riscv.vmfne",
"llvm.riscv.vmfne.mask",
"llvm.riscv.vmin",
"llvm.riscv.vmin.mask",
"llvm.riscv.vminu",
"llvm.riscv.vminu.mask",
"llvm.riscv.vmnand",
"llvm.riscv.vmnor",
"llvm.riscv.vmor",
"llvm.riscv.vmornot",
"llvm.riscv.vmsbc",
"llvm.riscv.vmsbc.borrow.in",
"llvm.riscv.vmsbf",
"llvm.riscv.vmsbf.mask",
"llvm.riscv.vmseq",
"llvm.riscv.vmseq.mask",
"llvm.riscv.vmset",
"llvm.riscv.vmsgt",
"llvm.riscv.vmsgt.mask",
"llvm.riscv.vmsgtu",
"llvm.riscv.vmsgtu.mask",
"llvm.riscv.vmsif",
"llvm.riscv.vmsif.mask",
"llvm.riscv.vmsle",
"llvm.riscv.vmsle.mask",
"llvm.riscv.vmsleu",
"llvm.riscv.vmsleu.mask",
"llvm.riscv.vmslt",
"llvm.riscv.vmslt.mask",
"llvm.riscv.vmsltu",
"llvm.riscv.vmsltu.mask",
"llvm.riscv.vmsne",
"llvm.riscv.vmsne.mask",
"llvm.riscv.vmsof",
"llvm.riscv.vmsof.mask",
"llvm.riscv.vmul",
"llvm.riscv.vmul.mask",
"llvm.riscv.vmulh",
"llvm.riscv.vmulh.mask",
"llvm.riscv.vmulhsu",
"llvm.riscv.vmulhsu.mask",
"llvm.riscv.vmulhu",
"llvm.riscv.vmulhu.mask",
"llvm.riscv.vmv.s.x",
"llvm.riscv.vmv.v.v",
"llvm.riscv.vmv.v.x",
"llvm.riscv.vmv.x.s",
"llvm.riscv.vmxnor",
"llvm.riscv.vmxor",
"llvm.riscv.vnclip",
"llvm.riscv.vnclip.mask",
"llvm.riscv.vnclipu",
"llvm.riscv.vnclipu.mask",
"llvm.riscv.vnmsac",
"llvm.riscv.vnmsac.mask",
"llvm.riscv.vnmsub",
"llvm.riscv.vnmsub.mask",
"llvm.riscv.vnsra",
"llvm.riscv.vnsra.mask",
"llvm.riscv.vnsrl",
"llvm.riscv.vnsrl.mask",
"llvm.riscv.vor",
"llvm.riscv.vor.mask",
"llvm.riscv.vpopc",
"llvm.riscv.vpopc.mask",
"llvm.riscv.vredand",
"llvm.riscv.vredand.mask",
"llvm.riscv.vredmax",
"llvm.riscv.vredmax.mask",
"llvm.riscv.vredmaxu",
"llvm.riscv.vredmaxu.mask",
"llvm.riscv.vredmin",
"llvm.riscv.vredmin.mask",
"llvm.riscv.vredminu",
"llvm.riscv.vredminu.mask",
"llvm.riscv.vredor",
"llvm.riscv.vredor.mask",
"llvm.riscv.vredsum",
"llvm.riscv.vredsum.mask",
"llvm.riscv.vredxor",
"llvm.riscv.vredxor.mask",
"llvm.riscv.vrem",
"llvm.riscv.vrem.mask",
"llvm.riscv.vremu",
"llvm.riscv.vremu.mask",
"llvm.riscv.vrgather",
"llvm.riscv.vrgather.mask",
"llvm.riscv.vrsub",
"llvm.riscv.vrsub.mask",
"llvm.riscv.vsadd",
"llvm.riscv.vsadd.mask",
"llvm.riscv.vsaddu",
"llvm.riscv.vsaddu.mask",
"llvm.riscv.vsbc",
"llvm.riscv.vse",
"llvm.riscv.vse.mask",
"llvm.riscv.vsetvli",
"llvm.riscv.vsetvlimax",
"llvm.riscv.vsext",
"llvm.riscv.vsext.mask",
"llvm.riscv.vslide1down",
"llvm.riscv.vslide1down.mask",
"llvm.riscv.vslide1up",
"llvm.riscv.vslide1up.mask",
"llvm.riscv.vslidedown",
"llvm.riscv.vslidedown.mask",
"llvm.riscv.vslideup",
"llvm.riscv.vslideup.mask",
"llvm.riscv.vsll",
"llvm.riscv.vsll.mask",
"llvm.riscv.vsmul",
"llvm.riscv.vsmul.mask",
"llvm.riscv.vsra",
"llvm.riscv.vsra.mask",
"llvm.riscv.vsrl",
"llvm.riscv.vsrl.mask",
"llvm.riscv.vsse",
"llvm.riscv.vsse.mask",
"llvm.riscv.vssra",
"llvm.riscv.vssra.mask",
"llvm.riscv.vssrl",
"llvm.riscv.vssrl.mask",
"llvm.riscv.vssub",
"llvm.riscv.vssub.mask",
"llvm.riscv.vssubu",
"llvm.riscv.vssubu.mask",
"llvm.riscv.vsub",
"llvm.riscv.vsub.mask",
"llvm.riscv.vsuxe",
"llvm.riscv.vsuxe.mask",
"llvm.riscv.vsxe",
"llvm.riscv.vsxe.mask",
"llvm.riscv.vwadd",
"llvm.riscv.vwadd.mask",
"llvm.riscv.vwadd.w",
"llvm.riscv.vwadd.w.mask",
"llvm.riscv.vwaddu",
"llvm.riscv.vwaddu.mask",
"llvm.riscv.vwaddu.w",
"llvm.riscv.vwaddu.w.mask",
"llvm.riscv.vwmacc",
"llvm.riscv.vwmacc.mask",
"llvm.riscv.vwmaccsu",
"llvm.riscv.vwmaccsu.mask",
"llvm.riscv.vwmaccu",
"llvm.riscv.vwmaccu.mask",
"llvm.riscv.vwmaccus",
"llvm.riscv.vwmaccus.mask",
"llvm.riscv.vwmul",
"llvm.riscv.vwmul.mask",
"llvm.riscv.vwmulsu",
"llvm.riscv.vwmulsu.mask",
"llvm.riscv.vwmulu",
"llvm.riscv.vwmulu.mask",
"llvm.riscv.vwredsum",
"llvm.riscv.vwredsum.mask",
"llvm.riscv.vwredsumu",
"llvm.riscv.vwredsumu.mask",
"llvm.riscv.vwsub",
"llvm.riscv.vwsub.mask",
"llvm.riscv.vwsub.w",
"llvm.riscv.vwsub.w.mask",
"llvm.riscv.vwsubu",
"llvm.riscv.vwsubu.mask",
"llvm.riscv.vwsubu.w",
"llvm.riscv.vwsubu.w.mask",
"llvm.riscv.vxor",
"llvm.riscv.vxor.mask",
"llvm.riscv.vzext",
"llvm.riscv.vzext.mask",
"llvm.s390.efpc",
"llvm.s390.etnd",
"llvm.s390.lcbb",
"llvm.s390.ntstg",
"llvm.s390.ppa.txassist",
"llvm.s390.sfpc",
"llvm.s390.tabort",
"llvm.s390.tbegin",
"llvm.s390.tbegin.nofloat",
"llvm.s390.tbeginc",
"llvm.s390.tdc",
"llvm.s390.tend",
"llvm.s390.vaccb",
"llvm.s390.vacccq",
"llvm.s390.vaccf",
"llvm.s390.vaccg",
"llvm.s390.vacch",
"llvm.s390.vaccq",
"llvm.s390.vacq",
"llvm.s390.vaq",
"llvm.s390.vavgb",
"llvm.s390.vavgf",
"llvm.s390.vavgg",
"llvm.s390.vavgh",
"llvm.s390.vavglb",
"llvm.s390.vavglf",
"llvm.s390.vavglg",
"llvm.s390.vavglh",
"llvm.s390.vbperm",
"llvm.s390.vceqbs",
"llvm.s390.vceqfs",
"llvm.s390.vceqgs",
"llvm.s390.vceqhs",
"llvm.s390.vchbs",
"llvm.s390.vchfs",
"llvm.s390.vchgs",
"llvm.s390.vchhs",
"llvm.s390.vchlbs",
"llvm.s390.vchlfs",
"llvm.s390.vchlgs",
"llvm.s390.vchlhs",
"llvm.s390.vcksm",
"llvm.s390.verimb",
"llvm.s390.verimf",
"llvm.s390.verimg",
"llvm.s390.verimh",
"llvm.s390.verllb",
"llvm.s390.verllf",
"llvm.s390.verllg",
"llvm.s390.verllh",
"llvm.s390.verllvb",
"llvm.s390.verllvf",
"llvm.s390.verllvg",
"llvm.s390.verllvh",
"llvm.s390.vfaeb",
"llvm.s390.vfaebs",
"llvm.s390.vfaef",
"llvm.s390.vfaefs",
"llvm.s390.vfaeh",
"llvm.s390.vfaehs",
"llvm.s390.vfaezb",
"llvm.s390.vfaezbs",
"llvm.s390.vfaezf",
"llvm.s390.vfaezfs",
"llvm.s390.vfaezh",
"llvm.s390.vfaezhs",
"llvm.s390.vfcedbs",
"llvm.s390.vfcesbs",
"llvm.s390.vfchdbs",
"llvm.s390.vfchedbs",
"llvm.s390.vfchesbs",
"llvm.s390.vfchsbs",
"llvm.s390.vfeeb",
"llvm.s390.vfeebs",
"llvm.s390.vfeef",
"llvm.s390.vfeefs",
"llvm.s390.vfeeh",
"llvm.s390.vfeehs",
"llvm.s390.vfeezb",
"llvm.s390.vfeezbs",
"llvm.s390.vfeezf",
"llvm.s390.vfeezfs",
"llvm.s390.vfeezh",
"llvm.s390.vfeezhs",
"llvm.s390.vfeneb",
"llvm.s390.vfenebs",
"llvm.s390.vfenef",
"llvm.s390.vfenefs",
"llvm.s390.vfeneh",
"llvm.s390.vfenehs",
"llvm.s390.vfenezb",
"llvm.s390.vfenezbs",
"llvm.s390.vfenezf",
"llvm.s390.vfenezfs",
"llvm.s390.vfenezh",
"llvm.s390.vfenezhs",
"llvm.s390.vfidb",
"llvm.s390.vfisb",
"llvm.s390.vfmaxdb",
"llvm.s390.vfmaxsb",
"llvm.s390.vfmindb",
"llvm.s390.vfminsb",
"llvm.s390.vftcidb",
"llvm.s390.vftcisb",
"llvm.s390.vgfmab",
"llvm.s390.vgfmaf",
"llvm.s390.vgfmag",
"llvm.s390.vgfmah",
"llvm.s390.vgfmb",
"llvm.s390.vgfmf",
"llvm.s390.vgfmg",
"llvm.s390.vgfmh",
"llvm.s390.vistrb",
"llvm.s390.vistrbs",
"llvm.s390.vistrf",
"llvm.s390.vistrfs",
"llvm.s390.vistrh",
"llvm.s390.vistrhs",
"llvm.s390.vlbb",
"llvm.s390.vll",
"llvm.s390.vlrl",
"llvm.s390.vmaeb",
"llvm.s390.vmaef",
"llvm.s390.vmaeh",
"llvm.s390.vmahb",
"llvm.s390.vmahf",
"llvm.s390.vmahh",
"llvm.s390.vmaleb",
"llvm.s390.vmalef",
"llvm.s390.vmaleh",
"llvm.s390.vmalhb",
"llvm.s390.vmalhf",
"llvm.s390.vmalhh",
"llvm.s390.vmalob",
"llvm.s390.vmalof",
"llvm.s390.vmaloh",
"llvm.s390.vmaob",
"llvm.s390.vmaof",
"llvm.s390.vmaoh",
"llvm.s390.vmeb",
"llvm.s390.vmef",
"llvm.s390.vmeh",
"llvm.s390.vmhb",
"llvm.s390.vmhf",
"llvm.s390.vmhh",
"llvm.s390.vmleb",
"llvm.s390.vmlef",
"llvm.s390.vmleh",
"llvm.s390.vmlhb",
"llvm.s390.vmlhf",
"llvm.s390.vmlhh",
"llvm.s390.vmlob",
"llvm.s390.vmlof",
"llvm.s390.vmloh",
"llvm.s390.vmob",
"llvm.s390.vmof",
"llvm.s390.vmoh",
"llvm.s390.vmslg",
"llvm.s390.vpdi",
"llvm.s390.vperm",
"llvm.s390.vpklsf",
"llvm.s390.vpklsfs",
"llvm.s390.vpklsg",
"llvm.s390.vpklsgs",
"llvm.s390.vpklsh",
"llvm.s390.vpklshs",
"llvm.s390.vpksf",
"llvm.s390.vpksfs",
"llvm.s390.vpksg",
"llvm.s390.vpksgs",
"llvm.s390.vpksh",
"llvm.s390.vpkshs",
"llvm.s390.vsbcbiq",
"llvm.s390.vsbiq",
"llvm.s390.vscbib",
"llvm.s390.vscbif",
"llvm.s390.vscbig",
"llvm.s390.vscbih",
"llvm.s390.vscbiq",
"llvm.s390.vsl",
"llvm.s390.vslb",
"llvm.s390.vsld",
"llvm.s390.vsldb",
"llvm.s390.vsq",
"llvm.s390.vsra",
"llvm.s390.vsrab",
"llvm.s390.vsrd",
"llvm.s390.vsrl",
"llvm.s390.vsrlb",
"llvm.s390.vstl",
"llvm.s390.vstrcb",
"llvm.s390.vstrcbs",
"llvm.s390.vstrcf",
"llvm.s390.vstrcfs",
"llvm.s390.vstrch",
"llvm.s390.vstrchs",
"llvm.s390.vstrczb",
"llvm.s390.vstrczbs",
"llvm.s390.vstrczf",
"llvm.s390.vstrczfs",
"llvm.s390.vstrczh",
"llvm.s390.vstrczhs",
"llvm.s390.vstrl",
"llvm.s390.vstrsb",
"llvm.s390.vstrsf",
"llvm.s390.vstrsh",
"llvm.s390.vstrszb",
"llvm.s390.vstrszf",
"llvm.s390.vstrszh",
"llvm.s390.vsumb",
"llvm.s390.vsumgf",
"llvm.s390.vsumgh",
"llvm.s390.vsumh",
"llvm.s390.vsumqf",
"llvm.s390.vsumqg",
"llvm.s390.vtm",
"llvm.s390.vuphb",
"llvm.s390.vuphf",
"llvm.s390.vuphh",
"llvm.s390.vuplb",
"llvm.s390.vuplf",
"llvm.s390.vuplhb",
"llvm.s390.vuplhf",
"llvm.s390.vuplhh",
"llvm.s390.vuplhw",
"llvm.s390.vupllb",
"llvm.s390.vupllf",
"llvm.s390.vupllh",
"llvm.ve.vl.andm.MMM",
"llvm.ve.vl.andm.mmm",
"llvm.ve.vl.eqvm.MMM",
"llvm.ve.vl.eqvm.mmm",
"llvm.ve.vl.lsv.vvss",
"llvm.ve.vl.lvm.MMss",
"llvm.ve.vl.lvm.mmss",
"llvm.ve.vl.lvsd.svs",
"llvm.ve.vl.lvsl.svs",
"llvm.ve.vl.lvss.svs",
"llvm.ve.vl.lzvm.sml",
"llvm.ve.vl.negm.MM",
"llvm.ve.vl.negm.mm",
"llvm.ve.vl.nndm.MMM",
"llvm.ve.vl.nndm.mmm",
"llvm.ve.vl.orm.MMM",
"llvm.ve.vl.orm.mmm",
"llvm.ve.vl.pcvm.sml",
"llvm.ve.vl.pfchv.ssl",
"llvm.ve.vl.pfchvnc.ssl",
"llvm.ve.vl.pvadds.vsvMvl",
"llvm.ve.vl.pvadds.vsvl",
"llvm.ve.vl.pvadds.vsvvl",
"llvm.ve.vl.pvadds.vvvMvl",
"llvm.ve.vl.pvadds.vvvl",
"llvm.ve.vl.pvadds.vvvvl",
"llvm.ve.vl.pvaddu.vsvMvl",
"llvm.ve.vl.pvaddu.vsvl",
"llvm.ve.vl.pvaddu.vsvvl",
"llvm.ve.vl.pvaddu.vvvMvl",
"llvm.ve.vl.pvaddu.vvvl",
"llvm.ve.vl.pvaddu.vvvvl",
"llvm.ve.vl.pvand.vsvMvl",
"llvm.ve.vl.pvand.vsvl",
"llvm.ve.vl.pvand.vsvvl",
"llvm.ve.vl.pvand.vvvMvl",
"llvm.ve.vl.pvand.vvvl",
"llvm.ve.vl.pvand.vvvvl",
"llvm.ve.vl.pvbrd.vsMvl",
"llvm.ve.vl.pvbrd.vsl",
"llvm.ve.vl.pvbrd.vsvl",
"llvm.ve.vl.pvcmps.vsvMvl",
"llvm.ve.vl.pvcmps.vsvl",
"llvm.ve.vl.pvcmps.vsvvl",
"llvm.ve.vl.pvcmps.vvvMvl",
"llvm.ve.vl.pvcmps.vvvl",
"llvm.ve.vl.pvcmps.vvvvl",
"llvm.ve.vl.pvcmpu.vsvMvl",
"llvm.ve.vl.pvcmpu.vsvl",
"llvm.ve.vl.pvcmpu.vsvvl",
"llvm.ve.vl.pvcmpu.vvvMvl",
"llvm.ve.vl.pvcmpu.vvvl",
"llvm.ve.vl.pvcmpu.vvvvl",
"llvm.ve.vl.pvcvtsw.vvl",
"llvm.ve.vl.pvcvtsw.vvvl",
"llvm.ve.vl.pvcvtws.vvMvl",
"llvm.ve.vl.pvcvtws.vvl",
"llvm.ve.vl.pvcvtws.vvvl",
"llvm.ve.vl.pvcvtwsrz.vvMvl",
"llvm.ve.vl.pvcvtwsrz.vvl",
"llvm.ve.vl.pvcvtwsrz.vvvl",
"llvm.ve.vl.pveqv.vsvMvl",
"llvm.ve.vl.pveqv.vsvl",
"llvm.ve.vl.pveqv.vsvvl",
"llvm.ve.vl.pveqv.vvvMvl",
"llvm.ve.vl.pveqv.vvvl",
"llvm.ve.vl.pveqv.vvvvl",
"llvm.ve.vl.pvfadd.vsvMvl",
"llvm.ve.vl.pvfadd.vsvl",
"llvm.ve.vl.pvfadd.vsvvl",
"llvm.ve.vl.pvfadd.vvvMvl",
"llvm.ve.vl.pvfadd.vvvl",
"llvm.ve.vl.pvfadd.vvvvl",
"llvm.ve.vl.pvfcmp.vsvMvl",
"llvm.ve.vl.pvfcmp.vsvl",
"llvm.ve.vl.pvfcmp.vsvvl",
"llvm.ve.vl.pvfcmp.vvvMvl",
"llvm.ve.vl.pvfcmp.vvvl",
"llvm.ve.vl.pvfcmp.vvvvl",
"llvm.ve.vl.pvfmad.vsvvMvl",
"llvm.ve.vl.pvfmad.vsvvl",
"llvm.ve.vl.pvfmad.vsvvvl",
"llvm.ve.vl.pvfmad.vvsvMvl",
"llvm.ve.vl.pvfmad.vvsvl",
"llvm.ve.vl.pvfmad.vvsvvl",
"llvm.ve.vl.pvfmad.vvvvMvl",
"llvm.ve.vl.pvfmad.vvvvl",
"llvm.ve.vl.pvfmad.vvvvvl",
"llvm.ve.vl.pvfmax.vsvMvl",
"llvm.ve.vl.pvfmax.vsvl",
"llvm.ve.vl.pvfmax.vsvvl",
"llvm.ve.vl.pvfmax.vvvMvl",
"llvm.ve.vl.pvfmax.vvvl",
"llvm.ve.vl.pvfmax.vvvvl",
"llvm.ve.vl.pvfmin.vsvMvl",
"llvm.ve.vl.pvfmin.vsvl",
"llvm.ve.vl.pvfmin.vsvvl",
"llvm.ve.vl.pvfmin.vvvMvl",
"llvm.ve.vl.pvfmin.vvvl",
"llvm.ve.vl.pvfmin.vvvvl",
"llvm.ve.vl.pvfmkaf.Ml",
"llvm.ve.vl.pvfmkat.Ml",
"llvm.ve.vl.pvfmkseq.MvMl",
"llvm.ve.vl.pvfmkseq.Mvl",
"llvm.ve.vl.pvfmkseqnan.MvMl",
"llvm.ve.vl.pvfmkseqnan.Mvl",
"llvm.ve.vl.pvfmksge.MvMl",
"llvm.ve.vl.pvfmksge.Mvl",
"llvm.ve.vl.pvfmksgenan.MvMl",
"llvm.ve.vl.pvfmksgenan.Mvl",
"llvm.ve.vl.pvfmksgt.MvMl",
"llvm.ve.vl.pvfmksgt.Mvl",
"llvm.ve.vl.pvfmksgtnan.MvMl",
"llvm.ve.vl.pvfmksgtnan.Mvl",
"llvm.ve.vl.pvfmksle.MvMl",
"llvm.ve.vl.pvfmksle.Mvl",
"llvm.ve.vl.pvfmkslenan.MvMl",
"llvm.ve.vl.pvfmkslenan.Mvl",
"llvm.ve.vl.pvfmksloeq.mvl",
"llvm.ve.vl.pvfmksloeq.mvml",
"llvm.ve.vl.pvfmksloeqnan.mvl",
"llvm.ve.vl.pvfmksloeqnan.mvml",
"llvm.ve.vl.pvfmksloge.mvl",
"llvm.ve.vl.pvfmksloge.mvml",
"llvm.ve.vl.pvfmkslogenan.mvl",
"llvm.ve.vl.pvfmkslogenan.mvml",
"llvm.ve.vl.pvfmkslogt.mvl",
"llvm.ve.vl.pvfmkslogt.mvml",
"llvm.ve.vl.pvfmkslogtnan.mvl",
"llvm.ve.vl.pvfmkslogtnan.mvml",
"llvm.ve.vl.pvfmkslole.mvl",
"llvm.ve.vl.pvfmkslole.mvml",
"llvm.ve.vl.pvfmkslolenan.mvl",
"llvm.ve.vl.pvfmkslolenan.mvml",
"llvm.ve.vl.pvfmkslolt.mvl",
"llvm.ve.vl.pvfmkslolt.mvml",
"llvm.ve.vl.pvfmksloltnan.mvl",
"llvm.ve.vl.pvfmksloltnan.mvml",
"llvm.ve.vl.pvfmkslonan.mvl",
"llvm.ve.vl.pvfmkslonan.mvml",
"llvm.ve.vl.pvfmkslone.mvl",
"llvm.ve.vl.pvfmkslone.mvml",
"llvm.ve.vl.pvfmkslonenan.mvl",
"llvm.ve.vl.pvfmkslonenan.mvml",
"llvm.ve.vl.pvfmkslonum.mvl",
"llvm.ve.vl.pvfmkslonum.mvml",
"llvm.ve.vl.pvfmkslt.MvMl",
"llvm.ve.vl.pvfmkslt.Mvl",
"llvm.ve.vl.pvfmksltnan.MvMl",
"llvm.ve.vl.pvfmksltnan.Mvl",
"llvm.ve.vl.pvfmksnan.MvMl",
"llvm.ve.vl.pvfmksnan.Mvl",
"llvm.ve.vl.pvfmksne.MvMl",
"llvm.ve.vl.pvfmksne.Mvl",
"llvm.ve.vl.pvfmksnenan.MvMl",
"llvm.ve.vl.pvfmksnenan.Mvl",
"llvm.ve.vl.pvfmksnum.MvMl",
"llvm.ve.vl.pvfmksnum.Mvl",
"llvm.ve.vl.pvfmksupeq.mvl",
"llvm.ve.vl.pvfmksupeq.mvml",
"llvm.ve.vl.pvfmksupeqnan.mvl",
"llvm.ve.vl.pvfmksupeqnan.mvml",
"llvm.ve.vl.pvfmksupge.mvl",
"llvm.ve.vl.pvfmksupge.mvml",
"llvm.ve.vl.pvfmksupgenan.mvl",
"llvm.ve.vl.pvfmksupgenan.mvml",
"llvm.ve.vl.pvfmksupgt.mvl",
"llvm.ve.vl.pvfmksupgt.mvml",
"llvm.ve.vl.pvfmksupgtnan.mvl",
"llvm.ve.vl.pvfmksupgtnan.mvml",
"llvm.ve.vl.pvfmksuple.mvl",
"llvm.ve.vl.pvfmksuple.mvml",
"llvm.ve.vl.pvfmksuplenan.mvl",
"llvm.ve.vl.pvfmksuplenan.mvml",
"llvm.ve.vl.pvfmksuplt.mvl",
"llvm.ve.vl.pvfmksuplt.mvml",
"llvm.ve.vl.pvfmksupltnan.mvl",
"llvm.ve.vl.pvfmksupltnan.mvml",
"llvm.ve.vl.pvfmksupnan.mvl",
"llvm.ve.vl.pvfmksupnan.mvml",
"llvm.ve.vl.pvfmksupne.mvl",
"llvm.ve.vl.pvfmksupne.mvml",
"llvm.ve.vl.pvfmksupnenan.mvl",
"llvm.ve.vl.pvfmksupnenan.mvml",
"llvm.ve.vl.pvfmksupnum.mvl",
"llvm.ve.vl.pvfmksupnum.mvml",
"llvm.ve.vl.pvfmkweq.MvMl",
"llvm.ve.vl.pvfmkweq.Mvl",
"llvm.ve.vl.pvfmkweqnan.MvMl",
"llvm.ve.vl.pvfmkweqnan.Mvl",
"llvm.ve.vl.pvfmkwge.MvMl",
"llvm.ve.vl.pvfmkwge.Mvl",
"llvm.ve.vl.pvfmkwgenan.MvMl",
"llvm.ve.vl.pvfmkwgenan.Mvl",
"llvm.ve.vl.pvfmkwgt.MvMl",
"llvm.ve.vl.pvfmkwgt.Mvl",
"llvm.ve.vl.pvfmkwgtnan.MvMl",
"llvm.ve.vl.pvfmkwgtnan.Mvl",
"llvm.ve.vl.pvfmkwle.MvMl",
"llvm.ve.vl.pvfmkwle.Mvl",
"llvm.ve.vl.pvfmkwlenan.MvMl",
"llvm.ve.vl.pvfmkwlenan.Mvl",
"llvm.ve.vl.pvfmkwloeq.mvl",
"llvm.ve.vl.pvfmkwloeq.mvml",
"llvm.ve.vl.pvfmkwloeqnan.mvl",
"llvm.ve.vl.pvfmkwloeqnan.mvml",
"llvm.ve.vl.pvfmkwloge.mvl",
"llvm.ve.vl.pvfmkwloge.mvml",
"llvm.ve.vl.pvfmkwlogenan.mvl",
"llvm.ve.vl.pvfmkwlogenan.mvml",
"llvm.ve.vl.pvfmkwlogt.mvl",
"llvm.ve.vl.pvfmkwlogt.mvml",
"llvm.ve.vl.pvfmkwlogtnan.mvl",
"llvm.ve.vl.pvfmkwlogtnan.mvml",
"llvm.ve.vl.pvfmkwlole.mvl",
"llvm.ve.vl.pvfmkwlole.mvml",
"llvm.ve.vl.pvfmkwlolenan.mvl",
"llvm.ve.vl.pvfmkwlolenan.mvml",
"llvm.ve.vl.pvfmkwlolt.mvl",
"llvm.ve.vl.pvfmkwlolt.mvml",
"llvm.ve.vl.pvfmkwloltnan.mvl",
"llvm.ve.vl.pvfmkwloltnan.mvml",
"llvm.ve.vl.pvfmkwlonan.mvl",
"llvm.ve.vl.pvfmkwlonan.mvml",
"llvm.ve.vl.pvfmkwlone.mvl",
"llvm.ve.vl.pvfmkwlone.mvml",
"llvm.ve.vl.pvfmkwlonenan.mvl",
"llvm.ve.vl.pvfmkwlonenan.mvml",
"llvm.ve.vl.pvfmkwlonum.mvl",
"llvm.ve.vl.pvfmkwlonum.mvml",
"llvm.ve.vl.pvfmkwlt.MvMl",
"llvm.ve.vl.pvfmkwlt.Mvl",
"llvm.ve.vl.pvfmkwltnan.MvMl",
"llvm.ve.vl.pvfmkwltnan.Mvl",
"llvm.ve.vl.pvfmkwnan.MvMl",
"llvm.ve.vl.pvfmkwnan.Mvl",
"llvm.ve.vl.pvfmkwne.MvMl",
"llvm.ve.vl.pvfmkwne.Mvl",
"llvm.ve.vl.pvfmkwnenan.MvMl",
"llvm.ve.vl.pvfmkwnenan.Mvl",
"llvm.ve.vl.pvfmkwnum.MvMl",
"llvm.ve.vl.pvfmkwnum.Mvl",
"llvm.ve.vl.pvfmkwupeq.mvl",
"llvm.ve.vl.pvfmkwupeq.mvml",
"llvm.ve.vl.pvfmkwupeqnan.mvl",
"llvm.ve.vl.pvfmkwupeqnan.mvml",
"llvm.ve.vl.pvfmkwupge.mvl",
"llvm.ve.vl.pvfmkwupge.mvml",
"llvm.ve.vl.pvfmkwupgenan.mvl",
"llvm.ve.vl.pvfmkwupgenan.mvml",
"llvm.ve.vl.pvfmkwupgt.mvl",
"llvm.ve.vl.pvfmkwupgt.mvml",
"llvm.ve.vl.pvfmkwupgtnan.mvl",
"llvm.ve.vl.pvfmkwupgtnan.mvml",
"llvm.ve.vl.pvfmkwuple.mvl",
"llvm.ve.vl.pvfmkwuple.mvml",
"llvm.ve.vl.pvfmkwuplenan.mvl",
"llvm.ve.vl.pvfmkwuplenan.mvml",
"llvm.ve.vl.pvfmkwuplt.mvl",
"llvm.ve.vl.pvfmkwuplt.mvml",
"llvm.ve.vl.pvfmkwupltnan.mvl",
"llvm.ve.vl.pvfmkwupltnan.mvml",
"llvm.ve.vl.pvfmkwupnan.mvl",
"llvm.ve.vl.pvfmkwupnan.mvml",
"llvm.ve.vl.pvfmkwupne.mvl",
"llvm.ve.vl.pvfmkwupne.mvml",
"llvm.ve.vl.pvfmkwupnenan.mvl",
"llvm.ve.vl.pvfmkwupnenan.mvml",
"llvm.ve.vl.pvfmkwupnum.mvl",
"llvm.ve.vl.pvfmkwupnum.mvml",
"llvm.ve.vl.pvfmsb.vsvvMvl",
"llvm.ve.vl.pvfmsb.vsvvl",
"llvm.ve.vl.pvfmsb.vsvvvl",
"llvm.ve.vl.pvfmsb.vvsvMvl",
"llvm.ve.vl.pvfmsb.vvsvl",
"llvm.ve.vl.pvfmsb.vvsvvl",
"llvm.ve.vl.pvfmsb.vvvvMvl",
"llvm.ve.vl.pvfmsb.vvvvl",
"llvm.ve.vl.pvfmsb.vvvvvl",
"llvm.ve.vl.pvfmul.vsvMvl",
"llvm.ve.vl.pvfmul.vsvl",
"llvm.ve.vl.pvfmul.vsvvl",
"llvm.ve.vl.pvfmul.vvvMvl",
"llvm.ve.vl.pvfmul.vvvl",
"llvm.ve.vl.pvfmul.vvvvl",
"llvm.ve.vl.pvfnmad.vsvvMvl",
"llvm.ve.vl.pvfnmad.vsvvl",
"llvm.ve.vl.pvfnmad.vsvvvl",
"llvm.ve.vl.pvfnmad.vvsvMvl",
"llvm.ve.vl.pvfnmad.vvsvl",
"llvm.ve.vl.pvfnmad.vvsvvl",
"llvm.ve.vl.pvfnmad.vvvvMvl",
"llvm.ve.vl.pvfnmad.vvvvl",
"llvm.ve.vl.pvfnmad.vvvvvl",
"llvm.ve.vl.pvfnmsb.vsvvMvl",
"llvm.ve.vl.pvfnmsb.vsvvl",
"llvm.ve.vl.pvfnmsb.vsvvvl",
"llvm.ve.vl.pvfnmsb.vvsvMvl",
"llvm.ve.vl.pvfnmsb.vvsvl",
"llvm.ve.vl.pvfnmsb.vvsvvl",
"llvm.ve.vl.pvfnmsb.vvvvMvl",
"llvm.ve.vl.pvfnmsb.vvvvl",
"llvm.ve.vl.pvfnmsb.vvvvvl",
"llvm.ve.vl.pvfsub.vsvMvl",
"llvm.ve.vl.pvfsub.vsvl",
"llvm.ve.vl.pvfsub.vsvvl",
"llvm.ve.vl.pvfsub.vvvMvl",
"llvm.ve.vl.pvfsub.vvvl",
"llvm.ve.vl.pvfsub.vvvvl",
"llvm.ve.vl.pvmaxs.vsvMvl",
"llvm.ve.vl.pvmaxs.vsvl",
"llvm.ve.vl.pvmaxs.vsvvl",
"llvm.ve.vl.pvmaxs.vvvMvl",
"llvm.ve.vl.pvmaxs.vvvl",
"llvm.ve.vl.pvmaxs.vvvvl",
"llvm.ve.vl.pvmins.vsvMvl",
"llvm.ve.vl.pvmins.vsvl",
"llvm.ve.vl.pvmins.vsvvl",
"llvm.ve.vl.pvmins.vvvMvl",
"llvm.ve.vl.pvmins.vvvl",
"llvm.ve.vl.pvmins.vvvvl",
"llvm.ve.vl.pvor.vsvMvl",
"llvm.ve.vl.pvor.vsvl",
"llvm.ve.vl.pvor.vsvvl",
"llvm.ve.vl.pvor.vvvMvl",
"llvm.ve.vl.pvor.vvvl",
"llvm.ve.vl.pvor.vvvvl",
"llvm.ve.vl.pvrcp.vvl",
"llvm.ve.vl.pvrcp.vvvl",
"llvm.ve.vl.pvrsqrt.vvl",
"llvm.ve.vl.pvrsqrt.vvvl",
"llvm.ve.vl.pvrsqrtnex.vvl",
"llvm.ve.vl.pvrsqrtnex.vvvl",
"llvm.ve.vl.pvseq.vl",
"llvm.ve.vl.pvseq.vvl",
"llvm.ve.vl.pvseqlo.vl",
"llvm.ve.vl.pvseqlo.vvl",
"llvm.ve.vl.pvsequp.vl",
"llvm.ve.vl.pvsequp.vvl",
"llvm.ve.vl.pvsla.vvsMvl",
"llvm.ve.vl.pvsla.vvsl",
"llvm.ve.vl.pvsla.vvsvl",
"llvm.ve.vl.pvsla.vvvMvl",
"llvm.ve.vl.pvsla.vvvl",
"llvm.ve.vl.pvsla.vvvvl",
"llvm.ve.vl.pvsll.vvsMvl",
"llvm.ve.vl.pvsll.vvsl",
"llvm.ve.vl.pvsll.vvsvl",
"llvm.ve.vl.pvsll.vvvMvl",
"llvm.ve.vl.pvsll.vvvl",
"llvm.ve.vl.pvsll.vvvvl",
"llvm.ve.vl.pvsra.vvsMvl",
"llvm.ve.vl.pvsra.vvsl",
"llvm.ve.vl.pvsra.vvsvl",
"llvm.ve.vl.pvsra.vvvMvl",
"llvm.ve.vl.pvsra.vvvl",
"llvm.ve.vl.pvsra.vvvvl",
"llvm.ve.vl.pvsrl.vvsMvl",
"llvm.ve.vl.pvsrl.vvsl",
"llvm.ve.vl.pvsrl.vvsvl",
"llvm.ve.vl.pvsrl.vvvMvl",
"llvm.ve.vl.pvsrl.vvvl",
"llvm.ve.vl.pvsrl.vvvvl",
"llvm.ve.vl.pvsubs.vsvMvl",
"llvm.ve.vl.pvsubs.vsvl",
"llvm.ve.vl.pvsubs.vsvvl",
"llvm.ve.vl.pvsubs.vvvMvl",
"llvm.ve.vl.pvsubs.vvvl",
"llvm.ve.vl.pvsubs.vvvvl",
"llvm.ve.vl.pvsubu.vsvMvl",
"llvm.ve.vl.pvsubu.vsvl",
"llvm.ve.vl.pvsubu.vsvvl",
"llvm.ve.vl.pvsubu.vvvMvl",
"llvm.ve.vl.pvsubu.vvvl",
"llvm.ve.vl.pvsubu.vvvvl",
"llvm.ve.vl.pvxor.vsvMvl",
"llvm.ve.vl.pvxor.vsvl",
"llvm.ve.vl.pvxor.vsvvl",
"llvm.ve.vl.pvxor.vvvMvl",
"llvm.ve.vl.pvxor.vvvl",
"llvm.ve.vl.pvxor.vvvvl",
"llvm.ve.vl.svm.sMs",
"llvm.ve.vl.svm.sms",
"llvm.ve.vl.svob",
"llvm.ve.vl.tovm.sml",
"llvm.ve.vl.vaddsl.vsvl",
"llvm.ve.vl.vaddsl.vsvmvl",
"llvm.ve.vl.vaddsl.vsvvl",
"llvm.ve.vl.vaddsl.vvvl",
"llvm.ve.vl.vaddsl.vvvmvl",
"llvm.ve.vl.vaddsl.vvvvl",
"llvm.ve.vl.vaddswsx.vsvl",
"llvm.ve.vl.vaddswsx.vsvmvl",
"llvm.ve.vl.vaddswsx.vsvvl",
"llvm.ve.vl.vaddswsx.vvvl",
"llvm.ve.vl.vaddswsx.vvvmvl",
"llvm.ve.vl.vaddswsx.vvvvl",
"llvm.ve.vl.vaddswzx.vsvl",
"llvm.ve.vl.vaddswzx.vsvmvl",
"llvm.ve.vl.vaddswzx.vsvvl",
"llvm.ve.vl.vaddswzx.vvvl",
"llvm.ve.vl.vaddswzx.vvvmvl",
"llvm.ve.vl.vaddswzx.vvvvl",
"llvm.ve.vl.vaddul.vsvl",
"llvm.ve.vl.vaddul.vsvmvl",
"llvm.ve.vl.vaddul.vsvvl",
"llvm.ve.vl.vaddul.vvvl",
"llvm.ve.vl.vaddul.vvvmvl",
"llvm.ve.vl.vaddul.vvvvl",
"llvm.ve.vl.vadduw.vsvl",
"llvm.ve.vl.vadduw.vsvmvl",
"llvm.ve.vl.vadduw.vsvvl",
"llvm.ve.vl.vadduw.vvvl",
"llvm.ve.vl.vadduw.vvvmvl",
"llvm.ve.vl.vadduw.vvvvl",
"llvm.ve.vl.vand.vsvl",
"llvm.ve.vl.vand.vsvmvl",
"llvm.ve.vl.vand.vsvvl",
"llvm.ve.vl.vand.vvvl",
"llvm.ve.vl.vand.vvvmvl",
"llvm.ve.vl.vand.vvvvl",
"llvm.ve.vl.vbrdd.vsl",
"llvm.ve.vl.vbrdd.vsmvl",
"llvm.ve.vl.vbrdd.vsvl",
"llvm.ve.vl.vbrdl.vsl",
"llvm.ve.vl.vbrdl.vsmvl",
"llvm.ve.vl.vbrdl.vsvl",
"llvm.ve.vl.vbrds.vsl",
"llvm.ve.vl.vbrds.vsmvl",
"llvm.ve.vl.vbrds.vsvl",
"llvm.ve.vl.vbrdw.vsl",
"llvm.ve.vl.vbrdw.vsmvl",
"llvm.ve.vl.vbrdw.vsvl",
"llvm.ve.vl.vcmpsl.vsvl",
"llvm.ve.vl.vcmpsl.vsvmvl",
"llvm.ve.vl.vcmpsl.vsvvl",
"llvm.ve.vl.vcmpsl.vvvl",
"llvm.ve.vl.vcmpsl.vvvmvl",
"llvm.ve.vl.vcmpsl.vvvvl",
"llvm.ve.vl.vcmpswsx.vsvl",
"llvm.ve.vl.vcmpswsx.vsvmvl",
"llvm.ve.vl.vcmpswsx.vsvvl",
"llvm.ve.vl.vcmpswsx.vvvl",
"llvm.ve.vl.vcmpswsx.vvvmvl",
"llvm.ve.vl.vcmpswsx.vvvvl",
"llvm.ve.vl.vcmpswzx.vsvl",
"llvm.ve.vl.vcmpswzx.vsvmvl",
"llvm.ve.vl.vcmpswzx.vsvvl",
"llvm.ve.vl.vcmpswzx.vvvl",
"llvm.ve.vl.vcmpswzx.vvvmvl",
"llvm.ve.vl.vcmpswzx.vvvvl",
"llvm.ve.vl.vcmpul.vsvl",
"llvm.ve.vl.vcmpul.vsvmvl",
"llvm.ve.vl.vcmpul.vsvvl",
"llvm.ve.vl.vcmpul.vvvl",
"llvm.ve.vl.vcmpul.vvvmvl",
"llvm.ve.vl.vcmpul.vvvvl",
"llvm.ve.vl.vcmpuw.vsvl",
"llvm.ve.vl.vcmpuw.vsvmvl",
"llvm.ve.vl.vcmpuw.vsvvl",
"llvm.ve.vl.vcmpuw.vvvl",
"llvm.ve.vl.vcmpuw.vvvmvl",
"llvm.ve.vl.vcmpuw.vvvvl",
"llvm.ve.vl.vcp.vvmvl",
"llvm.ve.vl.vcvtdl.vvl",
"llvm.ve.vl.vcvtdl.vvvl",
"llvm.ve.vl.vcvtds.vvl",
"llvm.ve.vl.vcvtds.vvvl",
"llvm.ve.vl.vcvtdw.vvl",
"llvm.ve.vl.vcvtdw.vvvl",
"llvm.ve.vl.vcvtld.vvl",
"llvm.ve.vl.vcvtld.vvmvl",
"llvm.ve.vl.vcvtld.vvvl",
"llvm.ve.vl.vcvtldrz.vvl",
"llvm.ve.vl.vcvtldrz.vvmvl",
"llvm.ve.vl.vcvtldrz.vvvl",
"llvm.ve.vl.vcvtsd.vvl",
"llvm.ve.vl.vcvtsd.vvvl",
"llvm.ve.vl.vcvtsw.vvl",
"llvm.ve.vl.vcvtsw.vvvl",
"llvm.ve.vl.vcvtwdsx.vvl",
"llvm.ve.vl.vcvtwdsx.vvmvl",
"llvm.ve.vl.vcvtwdsx.vvvl",
"llvm.ve.vl.vcvtwdsxrz.vvl",
"llvm.ve.vl.vcvtwdsxrz.vvmvl",
"llvm.ve.vl.vcvtwdsxrz.vvvl",
"llvm.ve.vl.vcvtwdzx.vvl",
"llvm.ve.vl.vcvtwdzx.vvmvl",
"llvm.ve.vl.vcvtwdzx.vvvl",
"llvm.ve.vl.vcvtwdzxrz.vvl",
"llvm.ve.vl.vcvtwdzxrz.vvmvl",
"llvm.ve.vl.vcvtwdzxrz.vvvl",
"llvm.ve.vl.vcvtwssx.vvl",
"llvm.ve.vl.vcvtwssx.vvmvl",
"llvm.ve.vl.vcvtwssx.vvvl",
"llvm.ve.vl.vcvtwssxrz.vvl",
"llvm.ve.vl.vcvtwssxrz.vvmvl",
"llvm.ve.vl.vcvtwssxrz.vvvl",
"llvm.ve.vl.vcvtwszx.vvl",
"llvm.ve.vl.vcvtwszx.vvmvl",
"llvm.ve.vl.vcvtwszx.vvvl",
"llvm.ve.vl.vcvtwszxrz.vvl",
"llvm.ve.vl.vcvtwszxrz.vvmvl",
"llvm.ve.vl.vcvtwszxrz.vvvl",
"llvm.ve.vl.vdivsl.vsvl",
"llvm.ve.vl.vdivsl.vsvmvl",
"llvm.ve.vl.vdivsl.vsvvl",
"llvm.ve.vl.vdivsl.vvsl",
"llvm.ve.vl.vdivsl.vvsmvl",
"llvm.ve.vl.vdivsl.vvsvl",
"llvm.ve.vl.vdivsl.vvvl",
"llvm.ve.vl.vdivsl.vvvmvl",
"llvm.ve.vl.vdivsl.vvvvl",
"llvm.ve.vl.vdivswsx.vsvl",
"llvm.ve.vl.vdivswsx.vsvmvl",
"llvm.ve.vl.vdivswsx.vsvvl",
"llvm.ve.vl.vdivswsx.vvsl",
"llvm.ve.vl.vdivswsx.vvsmvl",
"llvm.ve.vl.vdivswsx.vvsvl",
"llvm.ve.vl.vdivswsx.vvvl",
"llvm.ve.vl.vdivswsx.vvvmvl",
"llvm.ve.vl.vdivswsx.vvvvl",
"llvm.ve.vl.vdivswzx.vsvl",
"llvm.ve.vl.vdivswzx.vsvmvl",
"llvm.ve.vl.vdivswzx.vsvvl",
"llvm.ve.vl.vdivswzx.vvsl",
"llvm.ve.vl.vdivswzx.vvsmvl",
"llvm.ve.vl.vdivswzx.vvsvl",
"llvm.ve.vl.vdivswzx.vvvl",
"llvm.ve.vl.vdivswzx.vvvmvl",
"llvm.ve.vl.vdivswzx.vvvvl",
"llvm.ve.vl.vdivul.vsvl",
"llvm.ve.vl.vdivul.vsvmvl",
"llvm.ve.vl.vdivul.vsvvl",
"llvm.ve.vl.vdivul.vvsl",
"llvm.ve.vl.vdivul.vvsmvl",
"llvm.ve.vl.vdivul.vvsvl",
"llvm.ve.vl.vdivul.vvvl",
"llvm.ve.vl.vdivul.vvvmvl",
"llvm.ve.vl.vdivul.vvvvl",
"llvm.ve.vl.vdivuw.vsvl",
"llvm.ve.vl.vdivuw.vsvmvl",
"llvm.ve.vl.vdivuw.vsvvl",
"llvm.ve.vl.vdivuw.vvsl",
"llvm.ve.vl.vdivuw.vvsmvl",
"llvm.ve.vl.vdivuw.vvsvl",
"llvm.ve.vl.vdivuw.vvvl",
"llvm.ve.vl.vdivuw.vvvmvl",
"llvm.ve.vl.vdivuw.vvvvl",
"llvm.ve.vl.veqv.vsvl",
"llvm.ve.vl.veqv.vsvmvl",
"llvm.ve.vl.veqv.vsvvl",
"llvm.ve.vl.veqv.vvvl",
"llvm.ve.vl.veqv.vvvmvl",
"llvm.ve.vl.veqv.vvvvl",
"llvm.ve.vl.vex.vvmvl",
"llvm.ve.vl.vfaddd.vsvl",
"llvm.ve.vl.vfaddd.vsvmvl",
"llvm.ve.vl.vfaddd.vsvvl",
"llvm.ve.vl.vfaddd.vvvl",
"llvm.ve.vl.vfaddd.vvvmvl",
"llvm.ve.vl.vfaddd.vvvvl",
"llvm.ve.vl.vfadds.vsvl",
"llvm.ve.vl.vfadds.vsvmvl",
"llvm.ve.vl.vfadds.vsvvl",
"llvm.ve.vl.vfadds.vvvl",
"llvm.ve.vl.vfadds.vvvmvl",
"llvm.ve.vl.vfadds.vvvvl",
"llvm.ve.vl.vfcmpd.vsvl",
"llvm.ve.vl.vfcmpd.vsvmvl",
"llvm.ve.vl.vfcmpd.vsvvl",
"llvm.ve.vl.vfcmpd.vvvl",
"llvm.ve.vl.vfcmpd.vvvmvl",
"llvm.ve.vl.vfcmpd.vvvvl",
"llvm.ve.vl.vfcmps.vsvl",
"llvm.ve.vl.vfcmps.vsvmvl",
"llvm.ve.vl.vfcmps.vsvvl",
"llvm.ve.vl.vfcmps.vvvl",
"llvm.ve.vl.vfcmps.vvvmvl",
"llvm.ve.vl.vfcmps.vvvvl",
"llvm.ve.vl.vfdivd.vsvl",
"llvm.ve.vl.vfdivd.vsvmvl",
"llvm.ve.vl.vfdivd.vsvvl",
"llvm.ve.vl.vfdivd.vvvl",
"llvm.ve.vl.vfdivd.vvvmvl",
"llvm.ve.vl.vfdivd.vvvvl",
"llvm.ve.vl.vfdivs.vsvl",
"llvm.ve.vl.vfdivs.vsvmvl",
"llvm.ve.vl.vfdivs.vsvvl",
"llvm.ve.vl.vfdivs.vvvl",
"llvm.ve.vl.vfdivs.vvvmvl",
"llvm.ve.vl.vfdivs.vvvvl",
"llvm.ve.vl.vfmadd.vsvvl",
"llvm.ve.vl.vfmadd.vsvvmvl",
"llvm.ve.vl.vfmadd.vsvvvl",
"llvm.ve.vl.vfmadd.vvsvl",
"llvm.ve.vl.vfmadd.vvsvmvl",
"llvm.ve.vl.vfmadd.vvsvvl",
"llvm.ve.vl.vfmadd.vvvvl",
"llvm.ve.vl.vfmadd.vvvvmvl",
"llvm.ve.vl.vfmadd.vvvvvl",
"llvm.ve.vl.vfmads.vsvvl",
"llvm.ve.vl.vfmads.vsvvmvl",
"llvm.ve.vl.vfmads.vsvvvl",
"llvm.ve.vl.vfmads.vvsvl",
"llvm.ve.vl.vfmads.vvsvmvl",
"llvm.ve.vl.vfmads.vvsvvl",
"llvm.ve.vl.vfmads.vvvvl",
"llvm.ve.vl.vfmads.vvvvmvl",
"llvm.ve.vl.vfmads.vvvvvl",
"llvm.ve.vl.vfmaxd.vsvl",
"llvm.ve.vl.vfmaxd.vsvmvl",
"llvm.ve.vl.vfmaxd.vsvvl",
"llvm.ve.vl.vfmaxd.vvvl",
"llvm.ve.vl.vfmaxd.vvvmvl",
"llvm.ve.vl.vfmaxd.vvvvl",
"llvm.ve.vl.vfmaxs.vsvl",
"llvm.ve.vl.vfmaxs.vsvmvl",
"llvm.ve.vl.vfmaxs.vsvvl",
"llvm.ve.vl.vfmaxs.vvvl",
"llvm.ve.vl.vfmaxs.vvvmvl",
"llvm.ve.vl.vfmaxs.vvvvl",
"llvm.ve.vl.vfmind.vsvl",
"llvm.ve.vl.vfmind.vsvmvl",
"llvm.ve.vl.vfmind.vsvvl",
"llvm.ve.vl.vfmind.vvvl",
"llvm.ve.vl.vfmind.vvvmvl",
"llvm.ve.vl.vfmind.vvvvl",
"llvm.ve.vl.vfmins.vsvl",
"llvm.ve.vl.vfmins.vsvmvl",
"llvm.ve.vl.vfmins.vsvvl",
"llvm.ve.vl.vfmins.vvvl",
"llvm.ve.vl.vfmins.vvvmvl",
"llvm.ve.vl.vfmins.vvvvl",
"llvm.ve.vl.vfmkdeq.mvl",
"llvm.ve.vl.vfmkdeq.mvml",
"llvm.ve.vl.vfmkdeqnan.mvl",
"llvm.ve.vl.vfmkdeqnan.mvml",
"llvm.ve.vl.vfmkdge.mvl",
"llvm.ve.vl.vfmkdge.mvml",
"llvm.ve.vl.vfmkdgenan.mvl",
"llvm.ve.vl.vfmkdgenan.mvml",
"llvm.ve.vl.vfmkdgt.mvl",
"llvm.ve.vl.vfmkdgt.mvml",
"llvm.ve.vl.vfmkdgtnan.mvl",
"llvm.ve.vl.vfmkdgtnan.mvml",
"llvm.ve.vl.vfmkdle.mvl",
"llvm.ve.vl.vfmkdle.mvml",
"llvm.ve.vl.vfmkdlenan.mvl",
"llvm.ve.vl.vfmkdlenan.mvml",
"llvm.ve.vl.vfmkdlt.mvl",
"llvm.ve.vl.vfmkdlt.mvml",
"llvm.ve.vl.vfmkdltnan.mvl",
"llvm.ve.vl.vfmkdltnan.mvml",
"llvm.ve.vl.vfmkdnan.mvl",
"llvm.ve.vl.vfmkdnan.mvml",
"llvm.ve.vl.vfmkdne.mvl",
"llvm.ve.vl.vfmkdne.mvml",
"llvm.ve.vl.vfmkdnenan.mvl",
"llvm.ve.vl.vfmkdnenan.mvml",
"llvm.ve.vl.vfmkdnum.mvl",
"llvm.ve.vl.vfmkdnum.mvml",
"llvm.ve.vl.vfmklaf.ml",
"llvm.ve.vl.vfmklat.ml",
"llvm.ve.vl.vfmkleq.mvl",
"llvm.ve.vl.vfmkleq.mvml",
"llvm.ve.vl.vfmkleqnan.mvl",
"llvm.ve.vl.vfmkleqnan.mvml",
"llvm.ve.vl.vfmklge.mvl",
"llvm.ve.vl.vfmklge.mvml",
"llvm.ve.vl.vfmklgenan.mvl",
"llvm.ve.vl.vfmklgenan.mvml",
"llvm.ve.vl.vfmklgt.mvl",
"llvm.ve.vl.vfmklgt.mvml",
"llvm.ve.vl.vfmklgtnan.mvl",
"llvm.ve.vl.vfmklgtnan.mvml",
"llvm.ve.vl.vfmklle.mvl",
"llvm.ve.vl.vfmklle.mvml",
"llvm.ve.vl.vfmkllenan.mvl",
"llvm.ve.vl.vfmkllenan.mvml",
"llvm.ve.vl.vfmkllt.mvl",
"llvm.ve.vl.vfmkllt.mvml",
"llvm.ve.vl.vfmklltnan.mvl",
"llvm.ve.vl.vfmklltnan.mvml",
"llvm.ve.vl.vfmklnan.mvl",
"llvm.ve.vl.vfmklnan.mvml",
"llvm.ve.vl.vfmklne.mvl",
"llvm.ve.vl.vfmklne.mvml",
"llvm.ve.vl.vfmklnenan.mvl",
"llvm.ve.vl.vfmklnenan.mvml",
"llvm.ve.vl.vfmklnum.mvl",
"llvm.ve.vl.vfmklnum.mvml",
"llvm.ve.vl.vfmkseq.mvl",
"llvm.ve.vl.vfmkseq.mvml",
"llvm.ve.vl.vfmkseqnan.mvl",
"llvm.ve.vl.vfmkseqnan.mvml",
"llvm.ve.vl.vfmksge.mvl",
"llvm.ve.vl.vfmksge.mvml",
"llvm.ve.vl.vfmksgenan.mvl",
"llvm.ve.vl.vfmksgenan.mvml",
"llvm.ve.vl.vfmksgt.mvl",
"llvm.ve.vl.vfmksgt.mvml",
"llvm.ve.vl.vfmksgtnan.mvl",
"llvm.ve.vl.vfmksgtnan.mvml",
"llvm.ve.vl.vfmksle.mvl",
"llvm.ve.vl.vfmksle.mvml",
"llvm.ve.vl.vfmkslenan.mvl",
"llvm.ve.vl.vfmkslenan.mvml",
"llvm.ve.vl.vfmkslt.mvl",
"llvm.ve.vl.vfmkslt.mvml",
"llvm.ve.vl.vfmksltnan.mvl",
"llvm.ve.vl.vfmksltnan.mvml",
"llvm.ve.vl.vfmksnan.mvl",
"llvm.ve.vl.vfmksnan.mvml",
"llvm.ve.vl.vfmksne.mvl",
"llvm.ve.vl.vfmksne.mvml",
"llvm.ve.vl.vfmksnenan.mvl",
"llvm.ve.vl.vfmksnenan.mvml",
"llvm.ve.vl.vfmksnum.mvl",
"llvm.ve.vl.vfmksnum.mvml",
"llvm.ve.vl.vfmkweq.mvl",
"llvm.ve.vl.vfmkweq.mvml",
"llvm.ve.vl.vfmkweqnan.mvl",
"llvm.ve.vl.vfmkweqnan.mvml",
"llvm.ve.vl.vfmkwge.mvl",
"llvm.ve.vl.vfmkwge.mvml",
"llvm.ve.vl.vfmkwgenan.mvl",
"llvm.ve.vl.vfmkwgenan.mvml",
"llvm.ve.vl.vfmkwgt.mvl",
"llvm.ve.vl.vfmkwgt.mvml",
"llvm.ve.vl.vfmkwgtnan.mvl",
"llvm.ve.vl.vfmkwgtnan.mvml",
"llvm.ve.vl.vfmkwle.mvl",
"llvm.ve.vl.vfmkwle.mvml",
"llvm.ve.vl.vfmkwlenan.mvl",
"llvm.ve.vl.vfmkwlenan.mvml",
"llvm.ve.vl.vfmkwlt.mvl",
"llvm.ve.vl.vfmkwlt.mvml",
"llvm.ve.vl.vfmkwltnan.mvl",
"llvm.ve.vl.vfmkwltnan.mvml",
"llvm.ve.vl.vfmkwnan.mvl",
"llvm.ve.vl.vfmkwnan.mvml",
"llvm.ve.vl.vfmkwne.mvl",
"llvm.ve.vl.vfmkwne.mvml",
"llvm.ve.vl.vfmkwnenan.mvl",
"llvm.ve.vl.vfmkwnenan.mvml",
"llvm.ve.vl.vfmkwnum.mvl",
"llvm.ve.vl.vfmkwnum.mvml",
"llvm.ve.vl.vfmsbd.vsvvl",
"llvm.ve.vl.vfmsbd.vsvvmvl",
"llvm.ve.vl.vfmsbd.vsvvvl",
"llvm.ve.vl.vfmsbd.vvsvl",
"llvm.ve.vl.vfmsbd.vvsvmvl",
"llvm.ve.vl.vfmsbd.vvsvvl",
"llvm.ve.vl.vfmsbd.vvvvl",
"llvm.ve.vl.vfmsbd.vvvvmvl",
"llvm.ve.vl.vfmsbd.vvvvvl",
"llvm.ve.vl.vfmsbs.vsvvl",
"llvm.ve.vl.vfmsbs.vsvvmvl",
"llvm.ve.vl.vfmsbs.vsvvvl",
"llvm.ve.vl.vfmsbs.vvsvl",
"llvm.ve.vl.vfmsbs.vvsvmvl",
"llvm.ve.vl.vfmsbs.vvsvvl",
"llvm.ve.vl.vfmsbs.vvvvl",
"llvm.ve.vl.vfmsbs.vvvvmvl",
"llvm.ve.vl.vfmsbs.vvvvvl",
"llvm.ve.vl.vfmuld.vsvl",
"llvm.ve.vl.vfmuld.vsvmvl",
"llvm.ve.vl.vfmuld.vsvvl",
"llvm.ve.vl.vfmuld.vvvl",
"llvm.ve.vl.vfmuld.vvvmvl",
"llvm.ve.vl.vfmuld.vvvvl",
"llvm.ve.vl.vfmuls.vsvl",
"llvm.ve.vl.vfmuls.vsvmvl",
"llvm.ve.vl.vfmuls.vsvvl",
"llvm.ve.vl.vfmuls.vvvl",
"llvm.ve.vl.vfmuls.vvvmvl",
"llvm.ve.vl.vfmuls.vvvvl",
"llvm.ve.vl.vfnmadd.vsvvl",
"llvm.ve.vl.vfnmadd.vsvvmvl",
"llvm.ve.vl.vfnmadd.vsvvvl",
"llvm.ve.vl.vfnmadd.vvsvl",
"llvm.ve.vl.vfnmadd.vvsvmvl",
"llvm.ve.vl.vfnmadd.vvsvvl",
"llvm.ve.vl.vfnmadd.vvvvl",
"llvm.ve.vl.vfnmadd.vvvvmvl",
"llvm.ve.vl.vfnmadd.vvvvvl",
"llvm.ve.vl.vfnmads.vsvvl",
"llvm.ve.vl.vfnmads.vsvvmvl",
"llvm.ve.vl.vfnmads.vsvvvl",
"llvm.ve.vl.vfnmads.vvsvl",
"llvm.ve.vl.vfnmads.vvsvmvl",
"llvm.ve.vl.vfnmads.vvsvvl",
"llvm.ve.vl.vfnmads.vvvvl",
"llvm.ve.vl.vfnmads.vvvvmvl",
"llvm.ve.vl.vfnmads.vvvvvl",
"llvm.ve.vl.vfnmsbd.vsvvl",
"llvm.ve.vl.vfnmsbd.vsvvmvl",
"llvm.ve.vl.vfnmsbd.vsvvvl",
"llvm.ve.vl.vfnmsbd.vvsvl",
"llvm.ve.vl.vfnmsbd.vvsvmvl",
"llvm.ve.vl.vfnmsbd.vvsvvl",
"llvm.ve.vl.vfnmsbd.vvvvl",
"llvm.ve.vl.vfnmsbd.vvvvmvl",
"llvm.ve.vl.vfnmsbd.vvvvvl",
"llvm.ve.vl.vfnmsbs.vsvvl",
"llvm.ve.vl.vfnmsbs.vsvvmvl",
"llvm.ve.vl.vfnmsbs.vsvvvl",
"llvm.ve.vl.vfnmsbs.vvsvl",
"llvm.ve.vl.vfnmsbs.vvsvmvl",
"llvm.ve.vl.vfnmsbs.vvsvvl",
"llvm.ve.vl.vfnmsbs.vvvvl",
"llvm.ve.vl.vfnmsbs.vvvvmvl",
"llvm.ve.vl.vfnmsbs.vvvvvl",
"llvm.ve.vl.vfrmaxdfst.vvl",
"llvm.ve.vl.vfrmaxdfst.vvvl",
"llvm.ve.vl.vfrmaxdlst.vvl",
"llvm.ve.vl.vfrmaxdlst.vvvl",
"llvm.ve.vl.vfrmaxsfst.vvl",
"llvm.ve.vl.vfrmaxsfst.vvvl",
"llvm.ve.vl.vfrmaxslst.vvl",
"llvm.ve.vl.vfrmaxslst.vvvl",
"llvm.ve.vl.vfrmindfst.vvl",
"llvm.ve.vl.vfrmindfst.vvvl",
"llvm.ve.vl.vfrmindlst.vvl",
"llvm.ve.vl.vfrmindlst.vvvl",
"llvm.ve.vl.vfrminsfst.vvl",
"llvm.ve.vl.vfrminsfst.vvvl",
"llvm.ve.vl.vfrminslst.vvl",
"llvm.ve.vl.vfrminslst.vvvl",
"llvm.ve.vl.vfsqrtd.vvl",
"llvm.ve.vl.vfsqrtd.vvvl",
"llvm.ve.vl.vfsqrts.vvl",
"llvm.ve.vl.vfsqrts.vvvl",
"llvm.ve.vl.vfsubd.vsvl",
"llvm.ve.vl.vfsubd.vsvmvl",
"llvm.ve.vl.vfsubd.vsvvl",
"llvm.ve.vl.vfsubd.vvvl",
"llvm.ve.vl.vfsubd.vvvmvl",
"llvm.ve.vl.vfsubd.vvvvl",
"llvm.ve.vl.vfsubs.vsvl",
"llvm.ve.vl.vfsubs.vsvmvl",
"llvm.ve.vl.vfsubs.vsvvl",
"llvm.ve.vl.vfsubs.vvvl",
"llvm.ve.vl.vfsubs.vvvmvl",
"llvm.ve.vl.vfsubs.vvvvl",
"llvm.ve.vl.vfsumd.vvl",
"llvm.ve.vl.vfsumd.vvml",
"llvm.ve.vl.vfsums.vvl",
"llvm.ve.vl.vfsums.vvml",
"llvm.ve.vl.vgt.vvssl",
"llvm.ve.vl.vgt.vvssml",
"llvm.ve.vl.vgt.vvssmvl",
"llvm.ve.vl.vgt.vvssvl",
"llvm.ve.vl.vgtlsx.vvssl",
"llvm.ve.vl.vgtlsx.vvssml",
"llvm.ve.vl.vgtlsx.vvssmvl",
"llvm.ve.vl.vgtlsx.vvssvl",
"llvm.ve.vl.vgtlsxnc.vvssl",
"llvm.ve.vl.vgtlsxnc.vvssml",
"llvm.ve.vl.vgtlsxnc.vvssmvl",
"llvm.ve.vl.vgtlsxnc.vvssvl",
"llvm.ve.vl.vgtlzx.vvssl",
"llvm.ve.vl.vgtlzx.vvssml",
"llvm.ve.vl.vgtlzx.vvssmvl",
"llvm.ve.vl.vgtlzx.vvssvl",
"llvm.ve.vl.vgtlzxnc.vvssl",
"llvm.ve.vl.vgtlzxnc.vvssml",
"llvm.ve.vl.vgtlzxnc.vvssmvl",
"llvm.ve.vl.vgtlzxnc.vvssvl",
"llvm.ve.vl.vgtnc.vvssl",
"llvm.ve.vl.vgtnc.vvssml",
"llvm.ve.vl.vgtnc.vvssmvl",
"llvm.ve.vl.vgtnc.vvssvl",
"llvm.ve.vl.vgtu.vvssl",
"llvm.ve.vl.vgtu.vvssml",
"llvm.ve.vl.vgtu.vvssmvl",
"llvm.ve.vl.vgtu.vvssvl",
"llvm.ve.vl.vgtunc.vvssl",
"llvm.ve.vl.vgtunc.vvssml",
"llvm.ve.vl.vgtunc.vvssmvl",
"llvm.ve.vl.vgtunc.vvssvl",
"llvm.ve.vl.vld.vssl",
"llvm.ve.vl.vld.vssvl",
"llvm.ve.vl.vld2d.vssl",
"llvm.ve.vl.vld2d.vssvl",
"llvm.ve.vl.vld2dnc.vssl",
"llvm.ve.vl.vld2dnc.vssvl",
"llvm.ve.vl.vldl2dsx.vssl",
"llvm.ve.vl.vldl2dsx.vssvl",
"llvm.ve.vl.vldl2dsxnc.vssl",
"llvm.ve.vl.vldl2dsxnc.vssvl",
"llvm.ve.vl.vldl2dzx.vssl",
"llvm.ve.vl.vldl2dzx.vssvl",
"llvm.ve.vl.vldl2dzxnc.vssl",
"llvm.ve.vl.vldl2dzxnc.vssvl",
"llvm.ve.vl.vldlsx.vssl",
"llvm.ve.vl.vldlsx.vssvl",
"llvm.ve.vl.vldlsxnc.vssl",
"llvm.ve.vl.vldlsxnc.vssvl",
"llvm.ve.vl.vldlzx.vssl",
"llvm.ve.vl.vldlzx.vssvl",
"llvm.ve.vl.vldlzxnc.vssl",
"llvm.ve.vl.vldlzxnc.vssvl",
"llvm.ve.vl.vldnc.vssl",
"llvm.ve.vl.vldnc.vssvl",
"llvm.ve.vl.vldu.vssl",
"llvm.ve.vl.vldu.vssvl",
"llvm.ve.vl.vldu2d.vssl",
"llvm.ve.vl.vldu2d.vssvl",
"llvm.ve.vl.vldu2dnc.vssl",
"llvm.ve.vl.vldu2dnc.vssvl",
"llvm.ve.vl.vldunc.vssl",
"llvm.ve.vl.vldunc.vssvl",
"llvm.ve.vl.vmaxsl.vsvl",
"llvm.ve.vl.vmaxsl.vsvmvl",
"llvm.ve.vl.vmaxsl.vsvvl",
"llvm.ve.vl.vmaxsl.vvvl",
"llvm.ve.vl.vmaxsl.vvvmvl",
"llvm.ve.vl.vmaxsl.vvvvl",
"llvm.ve.vl.vmaxswsx.vsvl",
"llvm.ve.vl.vmaxswsx.vsvmvl",
"llvm.ve.vl.vmaxswsx.vsvvl",
"llvm.ve.vl.vmaxswsx.vvvl",
"llvm.ve.vl.vmaxswsx.vvvmvl",
"llvm.ve.vl.vmaxswsx.vvvvl",
"llvm.ve.vl.vmaxswzx.vsvl",
"llvm.ve.vl.vmaxswzx.vsvmvl",
"llvm.ve.vl.vmaxswzx.vsvvl",
"llvm.ve.vl.vmaxswzx.vvvl",
"llvm.ve.vl.vmaxswzx.vvvmvl",
"llvm.ve.vl.vmaxswzx.vvvvl",
"llvm.ve.vl.vminsl.vsvl",
"llvm.ve.vl.vminsl.vsvmvl",
"llvm.ve.vl.vminsl.vsvvl",
"llvm.ve.vl.vminsl.vvvl",
"llvm.ve.vl.vminsl.vvvmvl",
"llvm.ve.vl.vminsl.vvvvl",
"llvm.ve.vl.vminswsx.vsvl",
"llvm.ve.vl.vminswsx.vsvmvl",
"llvm.ve.vl.vminswsx.vsvvl",
"llvm.ve.vl.vminswsx.vvvl",
"llvm.ve.vl.vminswsx.vvvmvl",
"llvm.ve.vl.vminswsx.vvvvl",
"llvm.ve.vl.vminswzx.vsvl",
"llvm.ve.vl.vminswzx.vsvmvl",
"llvm.ve.vl.vminswzx.vsvvl",
"llvm.ve.vl.vminswzx.vvvl",
"llvm.ve.vl.vminswzx.vvvmvl",
"llvm.ve.vl.vminswzx.vvvvl",
"llvm.ve.vl.vmrg.vsvml",
"llvm.ve.vl.vmrg.vsvmvl",
"llvm.ve.vl.vmrg.vvvml",
"llvm.ve.vl.vmrg.vvvmvl",
"llvm.ve.vl.vmrgw.vsvMl",
"llvm.ve.vl.vmrgw.vsvMvl",
"llvm.ve.vl.vmrgw.vvvMl",
"llvm.ve.vl.vmrgw.vvvMvl",
"llvm.ve.vl.vmulsl.vsvl",
"llvm.ve.vl.vmulsl.vsvmvl",
"llvm.ve.vl.vmulsl.vsvvl",
"llvm.ve.vl.vmulsl.vvvl",
"llvm.ve.vl.vmulsl.vvvmvl",
"llvm.ve.vl.vmulsl.vvvvl",
"llvm.ve.vl.vmulslw.vsvl",
"llvm.ve.vl.vmulslw.vsvvl",
"llvm.ve.vl.vmulslw.vvvl",
"llvm.ve.vl.vmulslw.vvvvl",
"llvm.ve.vl.vmulswsx.vsvl",
"llvm.ve.vl.vmulswsx.vsvmvl",
"llvm.ve.vl.vmulswsx.vsvvl",
"llvm.ve.vl.vmulswsx.vvvl",
"llvm.ve.vl.vmulswsx.vvvmvl",
"llvm.ve.vl.vmulswsx.vvvvl",
"llvm.ve.vl.vmulswzx.vsvl",
"llvm.ve.vl.vmulswzx.vsvmvl",
"llvm.ve.vl.vmulswzx.vsvvl",
"llvm.ve.vl.vmulswzx.vvvl",
"llvm.ve.vl.vmulswzx.vvvmvl",
"llvm.ve.vl.vmulswzx.vvvvl",
"llvm.ve.vl.vmulul.vsvl",
"llvm.ve.vl.vmulul.vsvmvl",
"llvm.ve.vl.vmulul.vsvvl",
"llvm.ve.vl.vmulul.vvvl",
"llvm.ve.vl.vmulul.vvvmvl",
"llvm.ve.vl.vmulul.vvvvl",
"llvm.ve.vl.vmuluw.vsvl",
"llvm.ve.vl.vmuluw.vsvmvl",
"llvm.ve.vl.vmuluw.vsvvl",
"llvm.ve.vl.vmuluw.vvvl",
"llvm.ve.vl.vmuluw.vvvmvl",
"llvm.ve.vl.vmuluw.vvvvl",
"llvm.ve.vl.vmv.vsvl",
"llvm.ve.vl.vmv.vsvmvl",
"llvm.ve.vl.vmv.vsvvl",
"llvm.ve.vl.vor.vsvl",
"llvm.ve.vl.vor.vsvmvl",
"llvm.ve.vl.vor.vsvvl",
"llvm.ve.vl.vor.vvvl",
"llvm.ve.vl.vor.vvvmvl",
"llvm.ve.vl.vor.vvvvl",
"llvm.ve.vl.vrand.vvl",
"llvm.ve.vl.vrand.vvml",
"llvm.ve.vl.vrcpd.vvl",
"llvm.ve.vl.vrcpd.vvvl",
"llvm.ve.vl.vrcps.vvl",
"llvm.ve.vl.vrcps.vvvl",
"llvm.ve.vl.vrmaxslfst.vvl",
"llvm.ve.vl.vrmaxslfst.vvvl",
"llvm.ve.vl.vrmaxsllst.vvl",
"llvm.ve.vl.vrmaxsllst.vvvl",
"llvm.ve.vl.vrmaxswfstsx.vvl",
"llvm.ve.vl.vrmaxswfstsx.vvvl",
"llvm.ve.vl.vrmaxswfstzx.vvl",
"llvm.ve.vl.vrmaxswfstzx.vvvl",
"llvm.ve.vl.vrmaxswlstsx.vvl",
"llvm.ve.vl.vrmaxswlstsx.vvvl",
"llvm.ve.vl.vrmaxswlstzx.vvl",
"llvm.ve.vl.vrmaxswlstzx.vvvl",
"llvm.ve.vl.vrminslfst.vvl",
"llvm.ve.vl.vrminslfst.vvvl",
"llvm.ve.vl.vrminsllst.vvl",
"llvm.ve.vl.vrminsllst.vvvl",
"llvm.ve.vl.vrminswfstsx.vvl",
"llvm.ve.vl.vrminswfstsx.vvvl",
"llvm.ve.vl.vrminswfstzx.vvl",
"llvm.ve.vl.vrminswfstzx.vvvl",
"llvm.ve.vl.vrminswlstsx.vvl",
"llvm.ve.vl.vrminswlstsx.vvvl",
"llvm.ve.vl.vrminswlstzx.vvl",
"llvm.ve.vl.vrminswlstzx.vvvl",
"llvm.ve.vl.vror.vvl",
"llvm.ve.vl.vror.vvml",
"llvm.ve.vl.vrsqrtd.vvl",
"llvm.ve.vl.vrsqrtd.vvvl",
"llvm.ve.vl.vrsqrtdnex.vvl",
"llvm.ve.vl.vrsqrtdnex.vvvl",
"llvm.ve.vl.vrsqrts.vvl",
"llvm.ve.vl.vrsqrts.vvvl",
"llvm.ve.vl.vrsqrtsnex.vvl",
"llvm.ve.vl.vrsqrtsnex.vvvl",
"llvm.ve.vl.vrxor.vvl",
"llvm.ve.vl.vrxor.vvml",
"llvm.ve.vl.vsc.vvssl",
"llvm.ve.vl.vsc.vvssml",
"llvm.ve.vl.vscl.vvssl",
"llvm.ve.vl.vscl.vvssml",
"llvm.ve.vl.vsclnc.vvssl",
"llvm.ve.vl.vsclnc.vvssml",
"llvm.ve.vl.vsclncot.vvssl",
"llvm.ve.vl.vsclncot.vvssml",
"llvm.ve.vl.vsclot.vvssl",
"llvm.ve.vl.vsclot.vvssml",
"llvm.ve.vl.vscnc.vvssl",
"llvm.ve.vl.vscnc.vvssml",
"llvm.ve.vl.vscncot.vvssl",
"llvm.ve.vl.vscncot.vvssml",
"llvm.ve.vl.vscot.vvssl",
"llvm.ve.vl.vscot.vvssml",
"llvm.ve.vl.vscu.vvssl",
"llvm.ve.vl.vscu.vvssml",
"llvm.ve.vl.vscunc.vvssl",
"llvm.ve.vl.vscunc.vvssml",
"llvm.ve.vl.vscuncot.vvssl",
"llvm.ve.vl.vscuncot.vvssml",
"llvm.ve.vl.vscuot.vvssl",
"llvm.ve.vl.vscuot.vvssml",
"llvm.ve.vl.vseq.vl",
"llvm.ve.vl.vseq.vvl",
"llvm.ve.vl.vsfa.vvssl",
"llvm.ve.vl.vsfa.vvssmvl",
"llvm.ve.vl.vsfa.vvssvl",
"llvm.ve.vl.vshf.vvvsl",
"llvm.ve.vl.vshf.vvvsvl",
"llvm.ve.vl.vslal.vvsl",
"llvm.ve.vl.vslal.vvsmvl",
"llvm.ve.vl.vslal.vvsvl",
"llvm.ve.vl.vslal.vvvl",
"llvm.ve.vl.vslal.vvvmvl",
"llvm.ve.vl.vslal.vvvvl",
"llvm.ve.vl.vslawsx.vvsl",
"llvm.ve.vl.vslawsx.vvsmvl",
"llvm.ve.vl.vslawsx.vvsvl",
"llvm.ve.vl.vslawsx.vvvl",
"llvm.ve.vl.vslawsx.vvvmvl",
"llvm.ve.vl.vslawsx.vvvvl",
"llvm.ve.vl.vslawzx.vvsl",
"llvm.ve.vl.vslawzx.vvsmvl",
"llvm.ve.vl.vslawzx.vvsvl",
"llvm.ve.vl.vslawzx.vvvl",
"llvm.ve.vl.vslawzx.vvvmvl",
"llvm.ve.vl.vslawzx.vvvvl",
"llvm.ve.vl.vsll.vvsl",
"llvm.ve.vl.vsll.vvsmvl",
"llvm.ve.vl.vsll.vvsvl",
"llvm.ve.vl.vsll.vvvl",
"llvm.ve.vl.vsll.vvvmvl",
"llvm.ve.vl.vsll.vvvvl",
"llvm.ve.vl.vsral.vvsl",
"llvm.ve.vl.vsral.vvsmvl",
"llvm.ve.vl.vsral.vvsvl",
"llvm.ve.vl.vsral.vvvl",
"llvm.ve.vl.vsral.vvvmvl",
"llvm.ve.vl.vsral.vvvvl",
"llvm.ve.vl.vsrawsx.vvsl",
"llvm.ve.vl.vsrawsx.vvsmvl",
"llvm.ve.vl.vsrawsx.vvsvl",
"llvm.ve.vl.vsrawsx.vvvl",
"llvm.ve.vl.vsrawsx.vvvmvl",
"llvm.ve.vl.vsrawsx.vvvvl",
"llvm.ve.vl.vsrawzx.vvsl",
"llvm.ve.vl.vsrawzx.vvsmvl",
"llvm.ve.vl.vsrawzx.vvsvl",
"llvm.ve.vl.vsrawzx.vvvl",
"llvm.ve.vl.vsrawzx.vvvmvl",
"llvm.ve.vl.vsrawzx.vvvvl",
"llvm.ve.vl.vsrl.vvsl",
"llvm.ve.vl.vsrl.vvsmvl",
"llvm.ve.vl.vsrl.vvsvl",
"llvm.ve.vl.vsrl.vvvl",
"llvm.ve.vl.vsrl.vvvmvl",
"llvm.ve.vl.vsrl.vvvvl",
"llvm.ve.vl.vst.vssl",
"llvm.ve.vl.vst.vssml",
"llvm.ve.vl.vst2d.vssl",
"llvm.ve.vl.vst2d.vssml",
"llvm.ve.vl.vst2dnc.vssl",
"llvm.ve.vl.vst2dnc.vssml",
"llvm.ve.vl.vst2dncot.vssl",
"llvm.ve.vl.vst2dncot.vssml",
"llvm.ve.vl.vst2dot.vssl",
"llvm.ve.vl.vst2dot.vssml",
"llvm.ve.vl.vstl.vssl",
"llvm.ve.vl.vstl.vssml",
"llvm.ve.vl.vstl2d.vssl",
"llvm.ve.vl.vstl2d.vssml",
"llvm.ve.vl.vstl2dnc.vssl",
"llvm.ve.vl.vstl2dnc.vssml",
"llvm.ve.vl.vstl2dncot.vssl",
"llvm.ve.vl.vstl2dncot.vssml",
"llvm.ve.vl.vstl2dot.vssl",
"llvm.ve.vl.vstl2dot.vssml",
"llvm.ve.vl.vstlnc.vssl",
"llvm.ve.vl.vstlnc.vssml",
"llvm.ve.vl.vstlncot.vssl",
"llvm.ve.vl.vstlncot.vssml",
"llvm.ve.vl.vstlot.vssl",
"llvm.ve.vl.vstlot.vssml",
"llvm.ve.vl.vstnc.vssl",
"llvm.ve.vl.vstnc.vssml",
"llvm.ve.vl.vstncot.vssl",
"llvm.ve.vl.vstncot.vssml",
"llvm.ve.vl.vstot.vssl",
"llvm.ve.vl.vstot.vssml",
"llvm.ve.vl.vstu.vssl",
"llvm.ve.vl.vstu.vssml",
"llvm.ve.vl.vstu2d.vssl",
"llvm.ve.vl.vstu2d.vssml",
"llvm.ve.vl.vstu2dnc.vssl",
"llvm.ve.vl.vstu2dnc.vssml",
"llvm.ve.vl.vstu2dncot.vssl",
"llvm.ve.vl.vstu2dncot.vssml",
"llvm.ve.vl.vstu2dot.vssl",
"llvm.ve.vl.vstu2dot.vssml",
"llvm.ve.vl.vstunc.vssl",
"llvm.ve.vl.vstunc.vssml",
"llvm.ve.vl.vstuncot.vssl",
"llvm.ve.vl.vstuncot.vssml",
"llvm.ve.vl.vstuot.vssl",
"llvm.ve.vl.vstuot.vssml",
"llvm.ve.vl.vsubsl.vsvl",
"llvm.ve.vl.vsubsl.vsvmvl",
"llvm.ve.vl.vsubsl.vsvvl",
"llvm.ve.vl.vsubsl.vvvl",
"llvm.ve.vl.vsubsl.vvvmvl",
"llvm.ve.vl.vsubsl.vvvvl",
"llvm.ve.vl.vsubswsx.vsvl",
"llvm.ve.vl.vsubswsx.vsvmvl",
"llvm.ve.vl.vsubswsx.vsvvl",
"llvm.ve.vl.vsubswsx.vvvl",
"llvm.ve.vl.vsubswsx.vvvmvl",
"llvm.ve.vl.vsubswsx.vvvvl",
"llvm.ve.vl.vsubswzx.vsvl",
"llvm.ve.vl.vsubswzx.vsvmvl",
"llvm.ve.vl.vsubswzx.vsvvl",
"llvm.ve.vl.vsubswzx.vvvl",
"llvm.ve.vl.vsubswzx.vvvmvl",
"llvm.ve.vl.vsubswzx.vvvvl",
"llvm.ve.vl.vsubul.vsvl",
"llvm.ve.vl.vsubul.vsvmvl",
"llvm.ve.vl.vsubul.vsvvl",
"llvm.ve.vl.vsubul.vvvl",
"llvm.ve.vl.vsubul.vvvmvl",
"llvm.ve.vl.vsubul.vvvvl",
"llvm.ve.vl.vsubuw.vsvl",
"llvm.ve.vl.vsubuw.vsvmvl",
"llvm.ve.vl.vsubuw.vsvvl",
"llvm.ve.vl.vsubuw.vvvl",
"llvm.ve.vl.vsubuw.vvvmvl",
"llvm.ve.vl.vsubuw.vvvvl",
"llvm.ve.vl.vsuml.vvl",
"llvm.ve.vl.vsuml.vvml",
"llvm.ve.vl.vsumwsx.vvl",
"llvm.ve.vl.vsumwsx.vvml",
"llvm.ve.vl.vsumwzx.vvl",
"llvm.ve.vl.vsumwzx.vvml",
"llvm.ve.vl.vxor.vsvl",
"llvm.ve.vl.vxor.vsvmvl",
"llvm.ve.vl.vxor.vsvvl",
"llvm.ve.vl.vxor.vvvl",
"llvm.ve.vl.vxor.vvvmvl",
"llvm.ve.vl.vxor.vvvvl",
"llvm.ve.vl.xorm.MMM",
"llvm.ve.vl.xorm.mmm",
"llvm.wasm.alltrue",
"llvm.wasm.anytrue",
"llvm.wasm.avgr.unsigned",
"llvm.wasm.bitmask",
"llvm.wasm.bitselect",
"llvm.wasm.ceil",
"llvm.wasm.dot",
"llvm.wasm.eq",
"llvm.wasm.extadd.pairwise.signed",
"llvm.wasm.extadd.pairwise.unsigned",
"llvm.wasm.extmul.high.signed",
"llvm.wasm.extmul.high.unsigned",
"llvm.wasm.extmul.low.signed",
"llvm.wasm.extmul.low.unsigned",
"llvm.wasm.extract.exception",
"llvm.wasm.floor",
"llvm.wasm.get.ehselector",
"llvm.wasm.get.exception",
"llvm.wasm.landingpad.index",
"llvm.wasm.load16.lane",
"llvm.wasm.load32.lane",
"llvm.wasm.load32.zero",
"llvm.wasm.load64.lane",
"llvm.wasm.load64.zero",
"llvm.wasm.load8.lane",
"llvm.wasm.lsda",
"llvm.wasm.memory.atomic.notify",
"llvm.wasm.memory.atomic.wait32",
"llvm.wasm.memory.atomic.wait64",
"llvm.wasm.memory.grow",
"llvm.wasm.memory.size",
"llvm.wasm.narrow.signed",
"llvm.wasm.narrow.unsigned",
"llvm.wasm.nearest",
"llvm.wasm.pmax",
"llvm.wasm.pmin",
"llvm.wasm.popcnt",
"llvm.wasm.prefetch.nt",
"llvm.wasm.prefetch.t",
"llvm.wasm.q15mulr.saturate.signed",
"llvm.wasm.qfma",
"llvm.wasm.qfms",
"llvm.wasm.rethrow.in.catch",
"llvm.wasm.shuffle",
"llvm.wasm.signselect",
"llvm.wasm.store16.lane",
"llvm.wasm.store32.lane",
"llvm.wasm.store64.lane",
"llvm.wasm.store8.lane",
"llvm.wasm.sub.saturate.signed",
"llvm.wasm.sub.saturate.unsigned",
"llvm.wasm.swizzle",
"llvm.wasm.throw",
"llvm.wasm.tls.align",
"llvm.wasm.tls.base",
"llvm.wasm.tls.size",
"llvm.wasm.trunc",
"llvm.wasm.trunc.saturate.signed",
"llvm.wasm.trunc.saturate.unsigned",
"llvm.wasm.trunc.signed",
"llvm.wasm.trunc.unsigned",
"llvm.wasm.widen.high.signed",
"llvm.wasm.widen.high.unsigned",
"llvm.wasm.widen.low.signed",
"llvm.wasm.widen.low.unsigned",
"llvm.x86.3dnow.pavgusb",
"llvm.x86.3dnow.pf2id",
"llvm.x86.3dnow.pfacc",
"llvm.x86.3dnow.pfadd",
"llvm.x86.3dnow.pfcmpeq",
"llvm.x86.3dnow.pfcmpge",
"llvm.x86.3dnow.pfcmpgt",
"llvm.x86.3dnow.pfmax",
"llvm.x86.3dnow.pfmin",
"llvm.x86.3dnow.pfmul",
"llvm.x86.3dnow.pfrcp",
"llvm.x86.3dnow.pfrcpit1",
"llvm.x86.3dnow.pfrcpit2",
"llvm.x86.3dnow.pfrsqit1",
"llvm.x86.3dnow.pfrsqrt",
"llvm.x86.3dnow.pfsub",
"llvm.x86.3dnow.pfsubr",
"llvm.x86.3dnow.pi2fd",
"llvm.x86.3dnow.pmulhrw",
"llvm.x86.3dnowa.pf2iw",
"llvm.x86.3dnowa.pfnacc",
"llvm.x86.3dnowa.pfpnacc",
"llvm.x86.3dnowa.pi2fw",
"llvm.x86.3dnowa.pswapd",
"llvm.x86.addcarry.32",
"llvm.x86.addcarry.64",
"llvm.x86.aesdec128kl",
"llvm.x86.aesdec256kl",
"llvm.x86.aesdecwide128kl",
"llvm.x86.aesdecwide256kl",
"llvm.x86.aesenc128kl",
"llvm.x86.aesenc256kl",
"llvm.x86.aesencwide128kl",
"llvm.x86.aesencwide256kl",
"llvm.x86.aesni.aesdec",
"llvm.x86.aesni.aesdec.256",
"llvm.x86.aesni.aesdec.512",
"llvm.x86.aesni.aesdeclast",
"llvm.x86.aesni.aesdeclast.256",
"llvm.x86.aesni.aesdeclast.512",
"llvm.x86.aesni.aesenc",
"llvm.x86.aesni.aesenc.256",
"llvm.x86.aesni.aesenc.512",
"llvm.x86.aesni.aesenclast",
"llvm.x86.aesni.aesenclast.256",
"llvm.x86.aesni.aesenclast.512",
"llvm.x86.aesni.aesimc",
"llvm.x86.aesni.aeskeygenassist",
"llvm.x86.avx.addsub.pd.256",
"llvm.x86.avx.addsub.ps.256",
"llvm.x86.avx.blendv.pd.256",
"llvm.x86.avx.blendv.ps.256",
"llvm.x86.avx.cmp.pd.256",
"llvm.x86.avx.cmp.ps.256",
"llvm.x86.avx.cvt.pd2.ps.256",
"llvm.x86.avx.cvt.pd2dq.256",
"llvm.x86.avx.cvt.ps2dq.256",
"llvm.x86.avx.cvtt.pd2dq.256",
"llvm.x86.avx.cvtt.ps2dq.256",
"llvm.x86.avx.dp.ps.256",
"llvm.x86.avx.hadd.pd.256",
"llvm.x86.avx.hadd.ps.256",
"llvm.x86.avx.hsub.pd.256",
"llvm.x86.avx.hsub.ps.256",
"llvm.x86.avx.ldu.dq.256",
"llvm.x86.avx.maskload.pd",
"llvm.x86.avx.maskload.pd.256",
"llvm.x86.avx.maskload.ps",
"llvm.x86.avx.maskload.ps.256",
"llvm.x86.avx.maskstore.pd",
"llvm.x86.avx.maskstore.pd.256",
"llvm.x86.avx.maskstore.ps",
"llvm.x86.avx.maskstore.ps.256",
"llvm.x86.avx.max.pd.256",
"llvm.x86.avx.max.ps.256",
"llvm.x86.avx.min.pd.256",
"llvm.x86.avx.min.ps.256",
"llvm.x86.avx.movmsk.pd.256",
"llvm.x86.avx.movmsk.ps.256",
"llvm.x86.avx.ptestc.256",
"llvm.x86.avx.ptestnzc.256",
"llvm.x86.avx.ptestz.256",
"llvm.x86.avx.rcp.ps.256",
"llvm.x86.avx.round.pd.256",
"llvm.x86.avx.round.ps.256",
"llvm.x86.avx.rsqrt.ps.256",
"llvm.x86.avx.vpermilvar.pd",
"llvm.x86.avx.vpermilvar.pd.256",
"llvm.x86.avx.vpermilvar.ps",
"llvm.x86.avx.vpermilvar.ps.256",
"llvm.x86.avx.vtestc.pd",
"llvm.x86.avx.vtestc.pd.256",
"llvm.x86.avx.vtestc.ps",
"llvm.x86.avx.vtestc.ps.256",
"llvm.x86.avx.vtestnzc.pd",
"llvm.x86.avx.vtestnzc.pd.256",
"llvm.x86.avx.vtestnzc.ps",
"llvm.x86.avx.vtestnzc.ps.256",
"llvm.x86.avx.vtestz.pd",
"llvm.x86.avx.vtestz.pd.256",
"llvm.x86.avx.vtestz.ps",
"llvm.x86.avx.vtestz.ps.256",
"llvm.x86.avx.vzeroall",
"llvm.x86.avx.vzeroupper",
"llvm.x86.avx2.gather.d.d",
"llvm.x86.avx2.gather.d.d.256",
"llvm.x86.avx2.gather.d.pd",
"llvm.x86.avx2.gather.d.pd.256",
"llvm.x86.avx2.gather.d.ps",
"llvm.x86.avx2.gather.d.ps.256",
"llvm.x86.avx2.gather.d.q",
"llvm.x86.avx2.gather.d.q.256",
"llvm.x86.avx2.gather.q.d",
"llvm.x86.avx2.gather.q.d.256",
"llvm.x86.avx2.gather.q.pd",
"llvm.x86.avx2.gather.q.pd.256",
"llvm.x86.avx2.gather.q.ps",
"llvm.x86.avx2.gather.q.ps.256",
"llvm.x86.avx2.gather.q.q",
"llvm.x86.avx2.gather.q.q.256",
"llvm.x86.avx2.maskload.d",
"llvm.x86.avx2.maskload.d.256",
"llvm.x86.avx2.maskload.q",
"llvm.x86.avx2.maskload.q.256",
"llvm.x86.avx2.maskstore.d",
"llvm.x86.avx2.maskstore.d.256",
"llvm.x86.avx2.maskstore.q",
"llvm.x86.avx2.maskstore.q.256",
"llvm.x86.avx2.mpsadbw",
"llvm.x86.avx2.packssdw",
"llvm.x86.avx2.packsswb",
"llvm.x86.avx2.packusdw",
"llvm.x86.avx2.packuswb",
"llvm.x86.avx2.pavg.b",
"llvm.x86.avx2.pavg.w",
"llvm.x86.avx2.pblendvb",
"llvm.x86.avx2.permd",
"llvm.x86.avx2.permps",
"llvm.x86.avx2.phadd.d",
"llvm.x86.avx2.phadd.sw",
"llvm.x86.avx2.phadd.w",
"llvm.x86.avx2.phsub.d",
"llvm.x86.avx2.phsub.sw",
"llvm.x86.avx2.phsub.w",
"llvm.x86.avx2.pmadd.ub.sw",
"llvm.x86.avx2.pmadd.wd",
"llvm.x86.avx2.pmovmskb",
"llvm.x86.avx2.pmul.hr.sw",
"llvm.x86.avx2.pmulh.w",
"llvm.x86.avx2.pmulhu.w",
"llvm.x86.avx2.psad.bw",
"llvm.x86.avx2.pshuf.b",
"llvm.x86.avx2.psign.b",
"llvm.x86.avx2.psign.d",
"llvm.x86.avx2.psign.w",
"llvm.x86.avx2.psll.d",
"llvm.x86.avx2.psll.q",
"llvm.x86.avx2.psll.w",
"llvm.x86.avx2.pslli.d",
"llvm.x86.avx2.pslli.q",
"llvm.x86.avx2.pslli.w",
"llvm.x86.avx2.psllv.d",
"llvm.x86.avx2.psllv.d.256",
"llvm.x86.avx2.psllv.q",
"llvm.x86.avx2.psllv.q.256",
"llvm.x86.avx2.psra.d",
"llvm.x86.avx2.psra.w",
"llvm.x86.avx2.psrai.d",
"llvm.x86.avx2.psrai.w",
"llvm.x86.avx2.psrav.d",
"llvm.x86.avx2.psrav.d.256",
"llvm.x86.avx2.psrl.d",
"llvm.x86.avx2.psrl.q",
"llvm.x86.avx2.psrl.w",
"llvm.x86.avx2.psrli.d",
"llvm.x86.avx2.psrli.q",
"llvm.x86.avx2.psrli.w",
"llvm.x86.avx2.psrlv.d",
"llvm.x86.avx2.psrlv.d.256",
"llvm.x86.avx2.psrlv.q",
"llvm.x86.avx2.psrlv.q.256",
"llvm.x86.avx512.add.pd.512",
"llvm.x86.avx512.add.ps.512",
"llvm.x86.avx512.broadcastmb.128",
"llvm.x86.avx512.broadcastmb.256",
"llvm.x86.avx512.broadcastmb.512",
"llvm.x86.avx512.broadcastmw.128",
"llvm.x86.avx512.broadcastmw.256",
"llvm.x86.avx512.broadcastmw.512",
"llvm.x86.avx512.conflict.d.128",
"llvm.x86.avx512.conflict.d.256",
"llvm.x86.avx512.conflict.d.512",
"llvm.x86.avx512.conflict.q.128",
"llvm.x86.avx512.conflict.q.256",
"llvm.x86.avx512.conflict.q.512",
"llvm.x86.avx512.cvtsi2sd64",
"llvm.x86.avx512.cvtsi2ss32",
"llvm.x86.avx512.cvtsi2ss64",
"llvm.x86.avx512.cvttsd2si",
"llvm.x86.avx512.cvttsd2si64",
"llvm.x86.avx512.cvttsd2usi",
"llvm.x86.avx512.cvttsd2usi64",
"llvm.x86.avx512.cvttss2si",
"llvm.x86.avx512.cvttss2si64",
"llvm.x86.avx512.cvttss2usi",
"llvm.x86.avx512.cvttss2usi64",
"llvm.x86.avx512.cvtusi2ss",
"llvm.x86.avx512.cvtusi642sd",
"llvm.x86.avx512.cvtusi642ss",
"llvm.x86.avx512.dbpsadbw.128",
"llvm.x86.avx512.dbpsadbw.256",
"llvm.x86.avx512.dbpsadbw.512",
"llvm.x86.avx512.div.pd.512",
"llvm.x86.avx512.div.ps.512",
"llvm.x86.avx512.exp2.pd",
"llvm.x86.avx512.exp2.ps",
"llvm.x86.avx512.fpclass.pd.128",
"llvm.x86.avx512.fpclass.pd.256",
"llvm.x86.avx512.fpclass.pd.512",
"llvm.x86.avx512.fpclass.ps.128",
"llvm.x86.avx512.fpclass.ps.256",
"llvm.x86.avx512.fpclass.ps.512",
"llvm.x86.avx512.gather.dpd.512",
"llvm.x86.avx512.gather.dpi.512",
"llvm.x86.avx512.gather.dpq.512",
"llvm.x86.avx512.gather.dps.512",
"llvm.x86.avx512.gather.qpd.512",
"llvm.x86.avx512.gather.qpi.512",
"llvm.x86.avx512.gather.qpq.512",
"llvm.x86.avx512.gather.qps.512",
"llvm.x86.avx512.gather3div2.df",
"llvm.x86.avx512.gather3div2.di",
"llvm.x86.avx512.gather3div4.df",
"llvm.x86.avx512.gather3div4.di",
"llvm.x86.avx512.gather3div4.sf",
"llvm.x86.avx512.gather3div4.si",
"llvm.x86.avx512.gather3div8.sf",
"llvm.x86.avx512.gather3div8.si",
"llvm.x86.avx512.gather3siv2.df",
"llvm.x86.avx512.gather3siv2.di",
"llvm.x86.avx512.gather3siv4.df",
"llvm.x86.avx512.gather3siv4.di",
"llvm.x86.avx512.gather3siv4.sf",
"llvm.x86.avx512.gather3siv4.si",
"llvm.x86.avx512.gather3siv8.sf",
"llvm.x86.avx512.gather3siv8.si",
"llvm.x86.avx512.gatherpf.dpd.512",
"llvm.x86.avx512.gatherpf.dps.512",
"llvm.x86.avx512.gatherpf.qpd.512",
"llvm.x86.avx512.gatherpf.qps.512",
"llvm.x86.avx512.kadd.b",
"llvm.x86.avx512.kadd.d",
"llvm.x86.avx512.kadd.q",
"llvm.x86.avx512.kadd.w",
"llvm.x86.avx512.ktestc.b",
"llvm.x86.avx512.ktestc.d",
"llvm.x86.avx512.ktestc.q",
"llvm.x86.avx512.ktestc.w",
"llvm.x86.avx512.ktestz.b",
"llvm.x86.avx512.ktestz.d",
"llvm.x86.avx512.ktestz.q",
"llvm.x86.avx512.ktestz.w",
"llvm.x86.avx512.mask.add.sd.round",
"llvm.x86.avx512.mask.add.ss.round",
"llvm.x86.avx512.mask.cmp.pd.128",
"llvm.x86.avx512.mask.cmp.pd.256",
"llvm.x86.avx512.mask.cmp.pd.512",
"llvm.x86.avx512.mask.cmp.ps.128",
"llvm.x86.avx512.mask.cmp.ps.256",
"llvm.x86.avx512.mask.cmp.ps.512",
"llvm.x86.avx512.mask.cmp.sd",
"llvm.x86.avx512.mask.cmp.ss",
"llvm.x86.avx512.mask.compress",
"llvm.x86.avx512.mask.cvtpd2dq.128",
"llvm.x86.avx512.mask.cvtpd2dq.512",
"llvm.x86.avx512.mask.cvtpd2ps",
"llvm.x86.avx512.mask.cvtpd2ps.512",
"llvm.x86.avx512.mask.cvtpd2qq.128",
"llvm.x86.avx512.mask.cvtpd2qq.256",
"llvm.x86.avx512.mask.cvtpd2qq.512",
"llvm.x86.avx512.mask.cvtpd2udq.128",
"llvm.x86.avx512.mask.cvtpd2udq.256",
"llvm.x86.avx512.mask.cvtpd2udq.512",
"llvm.x86.avx512.mask.cvtpd2uqq.128",
"llvm.x86.avx512.mask.cvtpd2uqq.256",
"llvm.x86.avx512.mask.cvtpd2uqq.512",
"llvm.x86.avx512.mask.cvtps2dq.128",
"llvm.x86.avx512.mask.cvtps2dq.256",
"llvm.x86.avx512.mask.cvtps2dq.512",
"llvm.x86.avx512.mask.cvtps2pd.512",
"llvm.x86.avx512.mask.cvtps2qq.128",
"llvm.x86.avx512.mask.cvtps2qq.256",
"llvm.x86.avx512.mask.cvtps2qq.512",
"llvm.x86.avx512.mask.cvtps2udq.128",
"llvm.x86.avx512.mask.cvtps2udq.256",
"llvm.x86.avx512.mask.cvtps2udq.512",
"llvm.x86.avx512.mask.cvtps2uqq.128",
"llvm.x86.avx512.mask.cvtps2uqq.256",
"llvm.x86.avx512.mask.cvtps2uqq.512",
"llvm.x86.avx512.mask.cvtqq2ps.128",
"llvm.x86.avx512.mask.cvtsd2ss.round",
"llvm.x86.avx512.mask.cvtss2sd.round",
"llvm.x86.avx512.mask.cvttpd2dq.128",
"llvm.x86.avx512.mask.cvttpd2dq.512",
"llvm.x86.avx512.mask.cvttpd2qq.128",
"llvm.x86.avx512.mask.cvttpd2qq.256",
"llvm.x86.avx512.mask.cvttpd2qq.512",
"llvm.x86.avx512.mask.cvttpd2udq.128",
"llvm.x86.avx512.mask.cvttpd2udq.256",
"llvm.x86.avx512.mask.cvttpd2udq.512",
"llvm.x86.avx512.mask.cvttpd2uqq.128",
"llvm.x86.avx512.mask.cvttpd2uqq.256",
"llvm.x86.avx512.mask.cvttpd2uqq.512",
"llvm.x86.avx512.mask.cvttps2dq.512",
"llvm.x86.avx512.mask.cvttps2qq.128",
"llvm.x86.avx512.mask.cvttps2qq.256",
"llvm.x86.avx512.mask.cvttps2qq.512",
"llvm.x86.avx512.mask.cvttps2udq.128",
"llvm.x86.avx512.mask.cvttps2udq.256",
"llvm.x86.avx512.mask.cvttps2udq.512",
"llvm.x86.avx512.mask.cvttps2uqq.128",
"llvm.x86.avx512.mask.cvttps2uqq.256",
"llvm.x86.avx512.mask.cvttps2uqq.512",
"llvm.x86.avx512.mask.cvtuqq2ps.128",
"llvm.x86.avx512.mask.div.sd.round",
"llvm.x86.avx512.mask.div.ss.round",
"llvm.x86.avx512.mask.expand",
"llvm.x86.avx512.mask.fixupimm.pd.128",
"llvm.x86.avx512.mask.fixupimm.pd.256",
"llvm.x86.avx512.mask.fixupimm.pd.512",
"llvm.x86.avx512.mask.fixupimm.ps.128",
"llvm.x86.avx512.mask.fixupimm.ps.256",
"llvm.x86.avx512.mask.fixupimm.ps.512",
"llvm.x86.avx512.mask.fixupimm.sd",
"llvm.x86.avx512.mask.fixupimm.ss",
"llvm.x86.avx512.mask.fpclass.sd",
"llvm.x86.avx512.mask.fpclass.ss",
"llvm.x86.avx512.mask.gather.dpd.512",
"llvm.x86.avx512.mask.gather.dpi.512",
"llvm.x86.avx512.mask.gather.dpq.512",
"llvm.x86.avx512.mask.gather.dps.512",
"llvm.x86.avx512.mask.gather.qpd.512",
"llvm.x86.avx512.mask.gather.qpi.512",
"llvm.x86.avx512.mask.gather.qpq.512",
"llvm.x86.avx512.mask.gather.qps.512",
"llvm.x86.avx512.mask.gather3div2.df",
"llvm.x86.avx512.mask.gather3div2.di",
"llvm.x86.avx512.mask.gather3div4.df",
"llvm.x86.avx512.mask.gather3div4.di",
"llvm.x86.avx512.mask.gather3div4.sf",
"llvm.x86.avx512.mask.gather3div4.si",
"llvm.x86.avx512.mask.gather3div8.sf",
"llvm.x86.avx512.mask.gather3div8.si",
"llvm.x86.avx512.mask.gather3siv2.df",
"llvm.x86.avx512.mask.gather3siv2.di",
"llvm.x86.avx512.mask.gather3siv4.df",
"llvm.x86.avx512.mask.gather3siv4.di",
"llvm.x86.avx512.mask.gather3siv4.sf",
"llvm.x86.avx512.mask.gather3siv4.si",
"llvm.x86.avx512.mask.gather3siv8.sf",
"llvm.x86.avx512.mask.gather3siv8.si",
"llvm.x86.avx512.mask.getexp.pd.128",
"llvm.x86.avx512.mask.getexp.pd.256",
"llvm.x86.avx512.mask.getexp.pd.512",
"llvm.x86.avx512.mask.getexp.ps.128",
"llvm.x86.avx512.mask.getexp.ps.256",
"llvm.x86.avx512.mask.getexp.ps.512",
"llvm.x86.avx512.mask.getexp.sd",
"llvm.x86.avx512.mask.getexp.ss",
"llvm.x86.avx512.mask.getmant.pd.128",
"llvm.x86.avx512.mask.getmant.pd.256",
"llvm.x86.avx512.mask.getmant.pd.512",
"llvm.x86.avx512.mask.getmant.ps.128",
"llvm.x86.avx512.mask.getmant.ps.256",
"llvm.x86.avx512.mask.getmant.ps.512",
"llvm.x86.avx512.mask.getmant.sd",
"llvm.x86.avx512.mask.getmant.ss",
"llvm.x86.avx512.mask.max.sd.round",
"llvm.x86.avx512.mask.max.ss.round",
"llvm.x86.avx512.mask.min.sd.round",
"llvm.x86.avx512.mask.min.ss.round",
"llvm.x86.avx512.mask.mul.sd.round",
"llvm.x86.avx512.mask.mul.ss.round",
"llvm.x86.avx512.mask.pmov.db.128",
"llvm.x86.avx512.mask.pmov.db.256",
"llvm.x86.avx512.mask.pmov.db.512",
"llvm.x86.avx512.mask.pmov.db.mem.128",
"llvm.x86.avx512.mask.pmov.db.mem.256",
"llvm.x86.avx512.mask.pmov.db.mem.512",
"llvm.x86.avx512.mask.pmov.dw.128",
"llvm.x86.avx512.mask.pmov.dw.256",
"llvm.x86.avx512.mask.pmov.dw.512",
"llvm.x86.avx512.mask.pmov.dw.mem.128",
"llvm.x86.avx512.mask.pmov.dw.mem.256",
"llvm.x86.avx512.mask.pmov.dw.mem.512",
"llvm.x86.avx512.mask.pmov.qb.128",
"llvm.x86.avx512.mask.pmov.qb.256",
"llvm.x86.avx512.mask.pmov.qb.512",
"llvm.x86.avx512.mask.pmov.qb.mem.128",
"llvm.x86.avx512.mask.pmov.qb.mem.256",
"llvm.x86.avx512.mask.pmov.qb.mem.512",
"llvm.x86.avx512.mask.pmov.qd.128",
"llvm.x86.avx512.mask.pmov.qd.mem.128",
"llvm.x86.avx512.mask.pmov.qd.mem.256",
"llvm.x86.avx512.mask.pmov.qd.mem.512",
"llvm.x86.avx512.mask.pmov.qw.128",
"llvm.x86.avx512.mask.pmov.qw.256",
"llvm.x86.avx512.mask.pmov.qw.512",
"llvm.x86.avx512.mask.pmov.qw.mem.128",
"llvm.x86.avx512.mask.pmov.qw.mem.256",
"llvm.x86.avx512.mask.pmov.qw.mem.512",
"llvm.x86.avx512.mask.pmov.wb.128",
"llvm.x86.avx512.mask.pmov.wb.mem.128",
"llvm.x86.avx512.mask.pmov.wb.mem.256",
"llvm.x86.avx512.mask.pmov.wb.mem.512",
"llvm.x86.avx512.mask.pmovs.db.128",
"llvm.x86.avx512.mask.pmovs.db.256",
"llvm.x86.avx512.mask.pmovs.db.512",
"llvm.x86.avx512.mask.pmovs.db.mem.128",
"llvm.x86.avx512.mask.pmovs.db.mem.256",
"llvm.x86.avx512.mask.pmovs.db.mem.512",
"llvm.x86.avx512.mask.pmovs.dw.128",
"llvm.x86.avx512.mask.pmovs.dw.256",
"llvm.x86.avx512.mask.pmovs.dw.512",
"llvm.x86.avx512.mask.pmovs.dw.mem.128",
"llvm.x86.avx512.mask.pmovs.dw.mem.256",
"llvm.x86.avx512.mask.pmovs.dw.mem.512",
"llvm.x86.avx512.mask.pmovs.qb.128",
"llvm.x86.avx512.mask.pmovs.qb.256",
"llvm.x86.avx512.mask.pmovs.qb.512",
"llvm.x86.avx512.mask.pmovs.qb.mem.128",
"llvm.x86.avx512.mask.pmovs.qb.mem.256",
"llvm.x86.avx512.mask.pmovs.qb.mem.512",
"llvm.x86.avx512.mask.pmovs.qd.128",
"llvm.x86.avx512.mask.pmovs.qd.256",
"llvm.x86.avx512.mask.pmovs.qd.512",
"llvm.x86.avx512.mask.pmovs.qd.mem.128",
"llvm.x86.avx512.mask.pmovs.qd.mem.256",
"llvm.x86.avx512.mask.pmovs.qd.mem.512",
"llvm.x86.avx512.mask.pmovs.qw.128",
"llvm.x86.avx512.mask.pmovs.qw.256",
"llvm.x86.avx512.mask.pmovs.qw.512",
"llvm.x86.avx512.mask.pmovs.qw.mem.128",
"llvm.x86.avx512.mask.pmovs.qw.mem.256",
"llvm.x86.avx512.mask.pmovs.qw.mem.512",
"llvm.x86.avx512.mask.pmovs.wb.128",
"llvm.x86.avx512.mask.pmovs.wb.256",
"llvm.x86.avx512.mask.pmovs.wb.512",
"llvm.x86.avx512.mask.pmovs.wb.mem.128",
"llvm.x86.avx512.mask.pmovs.wb.mem.256",
"llvm.x86.avx512.mask.pmovs.wb.mem.512",
"llvm.x86.avx512.mask.pmovus.db.128",
"llvm.x86.avx512.mask.pmovus.db.256",
"llvm.x86.avx512.mask.pmovus.db.512",
"llvm.x86.avx512.mask.pmovus.db.mem.128",
"llvm.x86.avx512.mask.pmovus.db.mem.256",
"llvm.x86.avx512.mask.pmovus.db.mem.512",
"llvm.x86.avx512.mask.pmovus.dw.128",
"llvm.x86.avx512.mask.pmovus.dw.256",
"llvm.x86.avx512.mask.pmovus.dw.512",
"llvm.x86.avx512.mask.pmovus.dw.mem.128",
"llvm.x86.avx512.mask.pmovus.dw.mem.256",
"llvm.x86.avx512.mask.pmovus.dw.mem.512",
"llvm.x86.avx512.mask.pmovus.qb.128",
"llvm.x86.avx512.mask.pmovus.qb.256",
"llvm.x86.avx512.mask.pmovus.qb.512",
"llvm.x86.avx512.mask.pmovus.qb.mem.128",
"llvm.x86.avx512.mask.pmovus.qb.mem.256",
"llvm.x86.avx512.mask.pmovus.qb.mem.512",
"llvm.x86.avx512.mask.pmovus.qd.128",
"llvm.x86.avx512.mask.pmovus.qd.256",
"llvm.x86.avx512.mask.pmovus.qd.512",
"llvm.x86.avx512.mask.pmovus.qd.mem.128",
"llvm.x86.avx512.mask.pmovus.qd.mem.256",
"llvm.x86.avx512.mask.pmovus.qd.mem.512",
"llvm.x86.avx512.mask.pmovus.qw.128",
"llvm.x86.avx512.mask.pmovus.qw.256",
"llvm.x86.avx512.mask.pmovus.qw.512",
"llvm.x86.avx512.mask.pmovus.qw.mem.128",
"llvm.x86.avx512.mask.pmovus.qw.mem.256",
"llvm.x86.avx512.mask.pmovus.qw.mem.512",
"llvm.x86.avx512.mask.pmovus.wb.128",
"llvm.x86.avx512.mask.pmovus.wb.256",
"llvm.x86.avx512.mask.pmovus.wb.512",
"llvm.x86.avx512.mask.pmovus.wb.mem.128",
"llvm.x86.avx512.mask.pmovus.wb.mem.256",
"llvm.x86.avx512.mask.pmovus.wb.mem.512",
"llvm.x86.avx512.mask.range.pd.128",
"llvm.x86.avx512.mask.range.pd.256",
"llvm.x86.avx512.mask.range.pd.512",
"llvm.x86.avx512.mask.range.ps.128",
"llvm.x86.avx512.mask.range.ps.256",
"llvm.x86.avx512.mask.range.ps.512",
"llvm.x86.avx512.mask.range.sd",
"llvm.x86.avx512.mask.range.ss",
"llvm.x86.avx512.mask.reduce.pd.128",
"llvm.x86.avx512.mask.reduce.pd.256",
"llvm.x86.avx512.mask.reduce.pd.512",
"llvm.x86.avx512.mask.reduce.ps.128",
"llvm.x86.avx512.mask.reduce.ps.256",
"llvm.x86.avx512.mask.reduce.ps.512",
"llvm.x86.avx512.mask.reduce.sd",
"llvm.x86.avx512.mask.reduce.ss",
"llvm.x86.avx512.mask.rndscale.pd.128",
"llvm.x86.avx512.mask.rndscale.pd.256",
"llvm.x86.avx512.mask.rndscale.pd.512",
"llvm.x86.avx512.mask.rndscale.ps.128",
"llvm.x86.avx512.mask.rndscale.ps.256",
"llvm.x86.avx512.mask.rndscale.ps.512",
"llvm.x86.avx512.mask.rndscale.sd",
"llvm.x86.avx512.mask.rndscale.ss",
"llvm.x86.avx512.mask.scalef.pd.128",
"llvm.x86.avx512.mask.scalef.pd.256",
"llvm.x86.avx512.mask.scalef.pd.512",
"llvm.x86.avx512.mask.scalef.ps.128",
"llvm.x86.avx512.mask.scalef.ps.256",
"llvm.x86.avx512.mask.scalef.ps.512",
"llvm.x86.avx512.mask.scalef.sd",
"llvm.x86.avx512.mask.scalef.ss",
"llvm.x86.avx512.mask.scatter.dpd.512",
"llvm.x86.avx512.mask.scatter.dpi.512",
"llvm.x86.avx512.mask.scatter.dpq.512",
"llvm.x86.avx512.mask.scatter.dps.512",
"llvm.x86.avx512.mask.scatter.qpd.512",
"llvm.x86.avx512.mask.scatter.qpi.512",
"llvm.x86.avx512.mask.scatter.qpq.512",
"llvm.x86.avx512.mask.scatter.qps.512",
"llvm.x86.avx512.mask.scatterdiv2.df",
"llvm.x86.avx512.mask.scatterdiv2.di",
"llvm.x86.avx512.mask.scatterdiv4.df",
"llvm.x86.avx512.mask.scatterdiv4.di",
"llvm.x86.avx512.mask.scatterdiv4.sf",
"llvm.x86.avx512.mask.scatterdiv4.si",
"llvm.x86.avx512.mask.scatterdiv8.sf",
"llvm.x86.avx512.mask.scatterdiv8.si",
"llvm.x86.avx512.mask.scattersiv2.df",
"llvm.x86.avx512.mask.scattersiv2.di",
"llvm.x86.avx512.mask.scattersiv4.df",
"llvm.x86.avx512.mask.scattersiv4.di",
"llvm.x86.avx512.mask.scattersiv4.sf",
"llvm.x86.avx512.mask.scattersiv4.si",
"llvm.x86.avx512.mask.scattersiv8.sf",
"llvm.x86.avx512.mask.scattersiv8.si",
"llvm.x86.avx512.mask.sqrt.sd",
"llvm.x86.avx512.mask.sqrt.ss",
"llvm.x86.avx512.mask.sub.sd.round",
"llvm.x86.avx512.mask.sub.ss.round",
"llvm.x86.avx512.mask.vcvtph2ps.512",
"llvm.x86.avx512.mask.vcvtps2ph.128",
"llvm.x86.avx512.mask.vcvtps2ph.256",
"llvm.x86.avx512.mask.vcvtps2ph.512",
"llvm.x86.avx512.maskz.fixupimm.pd.128",
"llvm.x86.avx512.maskz.fixupimm.pd.256",
"llvm.x86.avx512.maskz.fixupimm.pd.512",
"llvm.x86.avx512.maskz.fixupimm.ps.128",
"llvm.x86.avx512.maskz.fixupimm.ps.256",
"llvm.x86.avx512.maskz.fixupimm.ps.512",
"llvm.x86.avx512.maskz.fixupimm.sd",
"llvm.x86.avx512.maskz.fixupimm.ss",
"llvm.x86.avx512.max.pd.512",
"llvm.x86.avx512.max.ps.512",
"llvm.x86.avx512.min.pd.512",
"llvm.x86.avx512.min.ps.512",
"llvm.x86.avx512.mul.pd.512",
"llvm.x86.avx512.mul.ps.512",
"llvm.x86.avx512.packssdw.512",
"llvm.x86.avx512.packsswb.512",
"llvm.x86.avx512.packusdw.512",
"llvm.x86.avx512.packuswb.512",
"llvm.x86.avx512.pavg.b.512",
"llvm.x86.avx512.pavg.w.512",
"llvm.x86.avx512.permvar.df.256",
"llvm.x86.avx512.permvar.df.512",
"llvm.x86.avx512.permvar.di.256",
"llvm.x86.avx512.permvar.di.512",
"llvm.x86.avx512.permvar.hi.128",
"llvm.x86.avx512.permvar.hi.256",
"llvm.x86.avx512.permvar.hi.512",
"llvm.x86.avx512.permvar.qi.128",
"llvm.x86.avx512.permvar.qi.256",
"llvm.x86.avx512.permvar.qi.512",
"llvm.x86.avx512.permvar.sf.512",
"llvm.x86.avx512.permvar.si.512",
"llvm.x86.avx512.pmaddubs.w.512",
"llvm.x86.avx512.pmaddw.d.512",
"llvm.x86.avx512.pmul.hr.sw.512",
"llvm.x86.avx512.pmulh.w.512",
"llvm.x86.avx512.pmulhu.w.512",
"llvm.x86.avx512.pmultishift.qb.128",
"llvm.x86.avx512.pmultishift.qb.256",
"llvm.x86.avx512.pmultishift.qb.512",
"llvm.x86.avx512.psad.bw.512",
"llvm.x86.avx512.pshuf.b.512",
"llvm.x86.avx512.psll.d.512",
"llvm.x86.avx512.psll.q.512",
"llvm.x86.avx512.psll.w.512",
"llvm.x86.avx512.pslli.d.512",
"llvm.x86.avx512.pslli.q.512",
"llvm.x86.avx512.pslli.w.512",
"llvm.x86.avx512.psllv.d.512",
"llvm.x86.avx512.psllv.q.512",
"llvm.x86.avx512.psllv.w.128",
"llvm.x86.avx512.psllv.w.256",
"llvm.x86.avx512.psllv.w.512",
"llvm.x86.avx512.psra.d.512",
"llvm.x86.avx512.psra.q.128",
"llvm.x86.avx512.psra.q.256",
"llvm.x86.avx512.psra.q.512",
"llvm.x86.avx512.psra.w.512",
"llvm.x86.avx512.psrai.d.512",
"llvm.x86.avx512.psrai.q.128",
"llvm.x86.avx512.psrai.q.256",
"llvm.x86.avx512.psrai.q.512",
"llvm.x86.avx512.psrai.w.512",
"llvm.x86.avx512.psrav.d.512",
"llvm.x86.avx512.psrav.q.128",
"llvm.x86.avx512.psrav.q.256",
"llvm.x86.avx512.psrav.q.512",
"llvm.x86.avx512.psrav.w.128",
"llvm.x86.avx512.psrav.w.256",
"llvm.x86.avx512.psrav.w.512",
"llvm.x86.avx512.psrl.d.512",
"llvm.x86.avx512.psrl.q.512",
"llvm.x86.avx512.psrl.w.512",
"llvm.x86.avx512.psrli.d.512",
"llvm.x86.avx512.psrli.q.512",
"llvm.x86.avx512.psrli.w.512",
"llvm.x86.avx512.psrlv.d.512",
"llvm.x86.avx512.psrlv.q.512",
"llvm.x86.avx512.psrlv.w.128",
"llvm.x86.avx512.psrlv.w.256",
"llvm.x86.avx512.psrlv.w.512",
"llvm.x86.avx512.pternlog.d.128",
"llvm.x86.avx512.pternlog.d.256",
"llvm.x86.avx512.pternlog.d.512",
"llvm.x86.avx512.pternlog.q.128",
"llvm.x86.avx512.pternlog.q.256",
"llvm.x86.avx512.pternlog.q.512",
"llvm.x86.avx512.rcp14.pd.128",
"llvm.x86.avx512.rcp14.pd.256",
"llvm.x86.avx512.rcp14.pd.512",
"llvm.x86.avx512.rcp14.ps.128",
"llvm.x86.avx512.rcp14.ps.256",
"llvm.x86.avx512.rcp14.ps.512",
"llvm.x86.avx512.rcp14.sd",
"llvm.x86.avx512.rcp14.ss",
"llvm.x86.avx512.rcp28.pd",
"llvm.x86.avx512.rcp28.ps",
"llvm.x86.avx512.rcp28.sd",
"llvm.x86.avx512.rcp28.ss",
"llvm.x86.avx512.rsqrt14.pd.128",
"llvm.x86.avx512.rsqrt14.pd.256",
"llvm.x86.avx512.rsqrt14.pd.512",
"llvm.x86.avx512.rsqrt14.ps.128",
"llvm.x86.avx512.rsqrt14.ps.256",
"llvm.x86.avx512.rsqrt14.ps.512",
"llvm.x86.avx512.rsqrt14.sd",
"llvm.x86.avx512.rsqrt14.ss",
"llvm.x86.avx512.rsqrt28.pd",
"llvm.x86.avx512.rsqrt28.ps",
"llvm.x86.avx512.rsqrt28.sd",
"llvm.x86.avx512.rsqrt28.ss",
"llvm.x86.avx512.scatter.dpd.512",
"llvm.x86.avx512.scatter.dpi.512",
"llvm.x86.avx512.scatter.dpq.512",
"llvm.x86.avx512.scatter.dps.512",
"llvm.x86.avx512.scatter.qpd.512",
"llvm.x86.avx512.scatter.qpi.512",
"llvm.x86.avx512.scatter.qpq.512",
"llvm.x86.avx512.scatter.qps.512",
"llvm.x86.avx512.scatterdiv2.df",
"llvm.x86.avx512.scatterdiv2.di",
"llvm.x86.avx512.scatterdiv4.df",
"llvm.x86.avx512.scatterdiv4.di",
"llvm.x86.avx512.scatterdiv4.sf",
"llvm.x86.avx512.scatterdiv4.si",
"llvm.x86.avx512.scatterdiv8.sf",
"llvm.x86.avx512.scatterdiv8.si",
"llvm.x86.avx512.scatterpf.dpd.512",
"llvm.x86.avx512.scatterpf.dps.512",
"llvm.x86.avx512.scatterpf.qpd.512",
"llvm.x86.avx512.scatterpf.qps.512",
"llvm.x86.avx512.scattersiv2.df",
"llvm.x86.avx512.scattersiv2.di",
"llvm.x86.avx512.scattersiv4.df",
"llvm.x86.avx512.scattersiv4.di",
"llvm.x86.avx512.scattersiv4.sf",
"llvm.x86.avx512.scattersiv4.si",
"llvm.x86.avx512.scattersiv8.sf",
"llvm.x86.avx512.scattersiv8.si",
"llvm.x86.avx512.sitofp.round",
"llvm.x86.avx512.sqrt.pd.512",
"llvm.x86.avx512.sqrt.ps.512",
"llvm.x86.avx512.sub.pd.512",
"llvm.x86.avx512.sub.ps.512",
"llvm.x86.avx512.uitofp.round",
"llvm.x86.avx512.vcomi.sd",
"llvm.x86.avx512.vcomi.ss",
"llvm.x86.avx512.vcvtsd2si32",
"llvm.x86.avx512.vcvtsd2si64",
"llvm.x86.avx512.vcvtsd2usi32",
"llvm.x86.avx512.vcvtsd2usi64",
"llvm.x86.avx512.vcvtss2si32",
"llvm.x86.avx512.vcvtss2si64",
"llvm.x86.avx512.vcvtss2usi32",
"llvm.x86.avx512.vcvtss2usi64",
"llvm.x86.avx512.vfmadd.f32",
"llvm.x86.avx512.vfmadd.f64",
"llvm.x86.avx512.vfmadd.pd.512",
"llvm.x86.avx512.vfmadd.ps.512",
"llvm.x86.avx512.vfmaddsub.pd.512",
"llvm.x86.avx512.vfmaddsub.ps.512",
"llvm.x86.avx512.vp2intersect.d.128",
"llvm.x86.avx512.vp2intersect.d.256",
"llvm.x86.avx512.vp2intersect.d.512",
"llvm.x86.avx512.vp2intersect.q.128",
"llvm.x86.avx512.vp2intersect.q.256",
"llvm.x86.avx512.vp2intersect.q.512",
"llvm.x86.avx512.vpdpbusd.128",
"llvm.x86.avx512.vpdpbusd.256",
"llvm.x86.avx512.vpdpbusd.512",
"llvm.x86.avx512.vpdpbusds.128",
"llvm.x86.avx512.vpdpbusds.256",
"llvm.x86.avx512.vpdpbusds.512",
"llvm.x86.avx512.vpdpwssd.128",
"llvm.x86.avx512.vpdpwssd.256",
"llvm.x86.avx512.vpdpwssd.512",
"llvm.x86.avx512.vpdpwssds.128",
"llvm.x86.avx512.vpdpwssds.256",
"llvm.x86.avx512.vpdpwssds.512",
"llvm.x86.avx512.vpermi2var.d.128",
"llvm.x86.avx512.vpermi2var.d.256",
"llvm.x86.avx512.vpermi2var.d.512",
"llvm.x86.avx512.vpermi2var.hi.128",
"llvm.x86.avx512.vpermi2var.hi.256",
"llvm.x86.avx512.vpermi2var.hi.512",
"llvm.x86.avx512.vpermi2var.pd.128",
"llvm.x86.avx512.vpermi2var.pd.256",
"llvm.x86.avx512.vpermi2var.pd.512",
"llvm.x86.avx512.vpermi2var.ps.128",
"llvm.x86.avx512.vpermi2var.ps.256",
"llvm.x86.avx512.vpermi2var.ps.512",
"llvm.x86.avx512.vpermi2var.q.128",
"llvm.x86.avx512.vpermi2var.q.256",
"llvm.x86.avx512.vpermi2var.q.512",
"llvm.x86.avx512.vpermi2var.qi.128",
"llvm.x86.avx512.vpermi2var.qi.256",
"llvm.x86.avx512.vpermi2var.qi.512",
"llvm.x86.avx512.vpermilvar.pd.512",
"llvm.x86.avx512.vpermilvar.ps.512",
"llvm.x86.avx512.vpmadd52h.uq.128",
"llvm.x86.avx512.vpmadd52h.uq.256",
"llvm.x86.avx512.vpmadd52h.uq.512",
"llvm.x86.avx512.vpmadd52l.uq.128",
"llvm.x86.avx512.vpmadd52l.uq.256",
"llvm.x86.avx512.vpmadd52l.uq.512",
"llvm.x86.avx512.vpshufbitqmb.128",
"llvm.x86.avx512.vpshufbitqmb.256",
"llvm.x86.avx512.vpshufbitqmb.512",
"llvm.x86.avx512bf16.cvtne2ps2bf16.128",
"llvm.x86.avx512bf16.cvtne2ps2bf16.256",
"llvm.x86.avx512bf16.cvtne2ps2bf16.512",
"llvm.x86.avx512bf16.cvtneps2bf16.256",
"llvm.x86.avx512bf16.cvtneps2bf16.512",
"llvm.x86.avx512bf16.dpbf16ps.128",
"llvm.x86.avx512bf16.dpbf16ps.256",
"llvm.x86.avx512bf16.dpbf16ps.512",
"llvm.x86.avx512bf16.mask.cvtneps2bf16.128",
"llvm.x86.bmi.bextr.32",
"llvm.x86.bmi.bextr.64",
"llvm.x86.bmi.bzhi.32",
"llvm.x86.bmi.bzhi.64",
"llvm.x86.bmi.pdep.32",
"llvm.x86.bmi.pdep.64",
"llvm.x86.bmi.pext.32",
"llvm.x86.bmi.pext.64",
"llvm.x86.cldemote",
"llvm.x86.clflushopt",
"llvm.x86.clrssbsy",
"llvm.x86.clui",
"llvm.x86.clwb",
"llvm.x86.clzero",
"llvm.x86.directstore32",
"llvm.x86.directstore64",
"llvm.x86.encodekey128",
"llvm.x86.encodekey256",
"llvm.x86.enqcmd",
"llvm.x86.enqcmds",
"llvm.x86.flags.read.u32",
"llvm.x86.flags.read.u64",
"llvm.x86.flags.write.u32",
"llvm.x86.flags.write.u64",
"llvm.x86.fma.vfmaddsub.pd",
"llvm.x86.fma.vfmaddsub.pd.256",
"llvm.x86.fma.vfmaddsub.ps",
"llvm.x86.fma.vfmaddsub.ps.256",
"llvm.x86.fxrstor",
"llvm.x86.fxrstor64",
"llvm.x86.fxsave",
"llvm.x86.fxsave64",
"llvm.x86.incsspd",
"llvm.x86.incsspq",
"llvm.x86.int",
"llvm.x86.invpcid",
"llvm.x86.ldtilecfg",
"llvm.x86.llwpcb",
"llvm.x86.loadiwkey",
"llvm.x86.lwpins32",
"llvm.x86.lwpins64",
"llvm.x86.lwpval32",
"llvm.x86.lwpval64",
"llvm.x86.mmx.emms",
"llvm.x86.mmx.femms",
"llvm.x86.mmx.maskmovq",
"llvm.x86.mmx.movnt.dq",
"llvm.x86.mmx.packssdw",
"llvm.x86.mmx.packsswb",
"llvm.x86.mmx.packuswb",
"llvm.x86.mmx.padd.b",
"llvm.x86.mmx.padd.d",
"llvm.x86.mmx.padd.q",
"llvm.x86.mmx.padd.w",
"llvm.x86.mmx.padds.b",
"llvm.x86.mmx.padds.w",
"llvm.x86.mmx.paddus.b",
"llvm.x86.mmx.paddus.w",
"llvm.x86.mmx.palignr.b",
"llvm.x86.mmx.pand",
"llvm.x86.mmx.pandn",
"llvm.x86.mmx.pavg.b",
"llvm.x86.mmx.pavg.w",
"llvm.x86.mmx.pcmpeq.b",
"llvm.x86.mmx.pcmpeq.d",
"llvm.x86.mmx.pcmpeq.w",
"llvm.x86.mmx.pcmpgt.b",
"llvm.x86.mmx.pcmpgt.d",
"llvm.x86.mmx.pcmpgt.w",
"llvm.x86.mmx.pextr.w",
"llvm.x86.mmx.pinsr.w",
"llvm.x86.mmx.pmadd.wd",
"llvm.x86.mmx.pmaxs.w",
"llvm.x86.mmx.pmaxu.b",
"llvm.x86.mmx.pmins.w",
"llvm.x86.mmx.pminu.b",
"llvm.x86.mmx.pmovmskb",
"llvm.x86.mmx.pmulh.w",
"llvm.x86.mmx.pmulhu.w",
"llvm.x86.mmx.pmull.w",
"llvm.x86.mmx.pmulu.dq",
"llvm.x86.mmx.por",
"llvm.x86.mmx.psad.bw",
"llvm.x86.mmx.psll.d",
"llvm.x86.mmx.psll.q",
"llvm.x86.mmx.psll.w",
"llvm.x86.mmx.pslli.d",
"llvm.x86.mmx.pslli.q",
"llvm.x86.mmx.pslli.w",
"llvm.x86.mmx.psra.d",
"llvm.x86.mmx.psra.w",
"llvm.x86.mmx.psrai.d",
"llvm.x86.mmx.psrai.w",
"llvm.x86.mmx.psrl.d",
"llvm.x86.mmx.psrl.q",
"llvm.x86.mmx.psrl.w",
"llvm.x86.mmx.psrli.d",
"llvm.x86.mmx.psrli.q",
"llvm.x86.mmx.psrli.w",
"llvm.x86.mmx.psub.b",
"llvm.x86.mmx.psub.d",
"llvm.x86.mmx.psub.q",
"llvm.x86.mmx.psub.w",
"llvm.x86.mmx.psubs.b",
"llvm.x86.mmx.psubs.w",
"llvm.x86.mmx.psubus.b",
"llvm.x86.mmx.psubus.w",
"llvm.x86.mmx.punpckhbw",
"llvm.x86.mmx.punpckhdq",
"llvm.x86.mmx.punpckhwd",
"llvm.x86.mmx.punpcklbw",
"llvm.x86.mmx.punpckldq",
"llvm.x86.mmx.punpcklwd",
"llvm.x86.mmx.pxor",
"llvm.x86.monitorx",
"llvm.x86.movdir64b",
"llvm.x86.mwaitx",
"llvm.x86.pclmulqdq",
"llvm.x86.pclmulqdq.256",
"llvm.x86.pclmulqdq.512",
"llvm.x86.ptwrite32",
"llvm.x86.ptwrite64",
"llvm.x86.rdfsbase.32",
"llvm.x86.rdfsbase.64",
"llvm.x86.rdgsbase.32",
"llvm.x86.rdgsbase.64",
"llvm.x86.rdpid",
"llvm.x86.rdpkru",
"llvm.x86.rdpmc",
"llvm.x86.rdrand.16",
"llvm.x86.rdrand.32",
"llvm.x86.rdrand.64",
"llvm.x86.rdseed.16",
"llvm.x86.rdseed.32",
"llvm.x86.rdseed.64",
"llvm.x86.rdsspd",
"llvm.x86.rdsspq",
"llvm.x86.rdtsc",
"llvm.x86.rdtscp",
"llvm.x86.rstorssp",
"llvm.x86.saveprevssp",
"llvm.x86.seh.ehguard",
"llvm.x86.seh.ehregnode",
"llvm.x86.seh.lsda",
"llvm.x86.senduipi",
"llvm.x86.serialize",
"llvm.x86.setssbsy",
"llvm.x86.sha1msg1",
"llvm.x86.sha1msg2",
"llvm.x86.sha1nexte",
"llvm.x86.sha1rnds4",
"llvm.x86.sha256msg1",
"llvm.x86.sha256msg2",
"llvm.x86.sha256rnds2",
"llvm.x86.slwpcb",
"llvm.x86.sse.cmp.ps",
"llvm.x86.sse.cmp.ss",
"llvm.x86.sse.comieq.ss",
"llvm.x86.sse.comige.ss",
"llvm.x86.sse.comigt.ss",
"llvm.x86.sse.comile.ss",
"llvm.x86.sse.comilt.ss",
"llvm.x86.sse.comineq.ss",
"llvm.x86.sse.cvtpd2pi",
"llvm.x86.sse.cvtpi2pd",
"llvm.x86.sse.cvtpi2ps",
"llvm.x86.sse.cvtps2pi",
"llvm.x86.sse.cvtss2si",
"llvm.x86.sse.cvtss2si64",
"llvm.x86.sse.cvttpd2pi",
"llvm.x86.sse.cvttps2pi",
"llvm.x86.sse.cvttss2si",
"llvm.x86.sse.cvttss2si64",
"llvm.x86.sse.ldmxcsr",
"llvm.x86.sse.max.ps",
"llvm.x86.sse.max.ss",
"llvm.x86.sse.min.ps",
"llvm.x86.sse.min.ss",
"llvm.x86.sse.movmsk.ps",
"llvm.x86.sse.pshuf.w",
"llvm.x86.sse.rcp.ps",
"llvm.x86.sse.rcp.ss",
"llvm.x86.sse.rsqrt.ps",
"llvm.x86.sse.rsqrt.ss",
"llvm.x86.sse.sfence",
"llvm.x86.sse.stmxcsr",
"llvm.x86.sse.ucomieq.ss",
"llvm.x86.sse.ucomige.ss",
"llvm.x86.sse.ucomigt.ss",
"llvm.x86.sse.ucomile.ss",
"llvm.x86.sse.ucomilt.ss",
"llvm.x86.sse.ucomineq.ss",
"llvm.x86.sse2.clflush",
"llvm.x86.sse2.cmp.pd",
"llvm.x86.sse2.cmp.sd",
"llvm.x86.sse2.comieq.sd",
"llvm.x86.sse2.comige.sd",
"llvm.x86.sse2.comigt.sd",
"llvm.x86.sse2.comile.sd",
"llvm.x86.sse2.comilt.sd",
"llvm.x86.sse2.comineq.sd",
"llvm.x86.sse2.cvtpd2dq",
"llvm.x86.sse2.cvtpd2ps",
"llvm.x86.sse2.cvtps2dq",
"llvm.x86.sse2.cvtsd2si",
"llvm.x86.sse2.cvtsd2si64",
"llvm.x86.sse2.cvtsd2ss",
"llvm.x86.sse2.cvttpd2dq",
"llvm.x86.sse2.cvttps2dq",
"llvm.x86.sse2.cvttsd2si",
"llvm.x86.sse2.cvttsd2si64",
"llvm.x86.sse2.lfence",
"llvm.x86.sse2.maskmov.dqu",
"llvm.x86.sse2.max.pd",
"llvm.x86.sse2.max.sd",
"llvm.x86.sse2.mfence",
"llvm.x86.sse2.min.pd",
"llvm.x86.sse2.min.sd",
"llvm.x86.sse2.movmsk.pd",
"llvm.x86.sse2.packssdw.128",
"llvm.x86.sse2.packsswb.128",
"llvm.x86.sse2.packuswb.128",
"llvm.x86.sse2.pause",
"llvm.x86.sse2.pavg.b",
"llvm.x86.sse2.pavg.w",
"llvm.x86.sse2.pmadd.wd",
"llvm.x86.sse2.pmovmskb.128",
"llvm.x86.sse2.pmulh.w",
"llvm.x86.sse2.pmulhu.w",
"llvm.x86.sse2.psad.bw",
"llvm.x86.sse2.psll.d",
"llvm.x86.sse2.psll.q",
"llvm.x86.sse2.psll.w",
"llvm.x86.sse2.pslli.d",
"llvm.x86.sse2.pslli.q",
"llvm.x86.sse2.pslli.w",
"llvm.x86.sse2.psra.d",
"llvm.x86.sse2.psra.w",
"llvm.x86.sse2.psrai.d",
"llvm.x86.sse2.psrai.w",
"llvm.x86.sse2.psrl.d",
"llvm.x86.sse2.psrl.q",
"llvm.x86.sse2.psrl.w",
"llvm.x86.sse2.psrli.d",
"llvm.x86.sse2.psrli.q",
"llvm.x86.sse2.psrli.w",
"llvm.x86.sse2.ucomieq.sd",
"llvm.x86.sse2.ucomige.sd",
"llvm.x86.sse2.ucomigt.sd",
"llvm.x86.sse2.ucomile.sd",
"llvm.x86.sse2.ucomilt.sd",
"llvm.x86.sse2.ucomineq.sd",
"llvm.x86.sse3.addsub.pd",
"llvm.x86.sse3.addsub.ps",
"llvm.x86.sse3.hadd.pd",
"llvm.x86.sse3.hadd.ps",
"llvm.x86.sse3.hsub.pd",
"llvm.x86.sse3.hsub.ps",
"llvm.x86.sse3.ldu.dq",
"llvm.x86.sse3.monitor",
"llvm.x86.sse3.mwait",
"llvm.x86.sse41.blendvpd",
"llvm.x86.sse41.blendvps",
"llvm.x86.sse41.dppd",
"llvm.x86.sse41.dpps",
"llvm.x86.sse41.insertps",
"llvm.x86.sse41.mpsadbw",
"llvm.x86.sse41.packusdw",
"llvm.x86.sse41.pblendvb",
"llvm.x86.sse41.phminposuw",
"llvm.x86.sse41.ptestc",
"llvm.x86.sse41.ptestnzc",
"llvm.x86.sse41.ptestz",
"llvm.x86.sse41.round.pd",
"llvm.x86.sse41.round.ps",
"llvm.x86.sse41.round.sd",
"llvm.x86.sse41.round.ss",
"llvm.x86.sse42.crc32.32.16",
"llvm.x86.sse42.crc32.32.32",
"llvm.x86.sse42.crc32.32.8",
"llvm.x86.sse42.crc32.64.64",
"llvm.x86.sse42.pcmpestri128",
"llvm.x86.sse42.pcmpestria128",
"llvm.x86.sse42.pcmpestric128",
"llvm.x86.sse42.pcmpestrio128",
"llvm.x86.sse42.pcmpestris128",
"llvm.x86.sse42.pcmpestriz128",
"llvm.x86.sse42.pcmpestrm128",
"llvm.x86.sse42.pcmpistri128",
"llvm.x86.sse42.pcmpistria128",
"llvm.x86.sse42.pcmpistric128",
"llvm.x86.sse42.pcmpistrio128",
"llvm.x86.sse42.pcmpistris128",
"llvm.x86.sse42.pcmpistriz128",
"llvm.x86.sse42.pcmpistrm128",
"llvm.x86.sse4a.extrq",
"llvm.x86.sse4a.extrqi",
"llvm.x86.sse4a.insertq",
"llvm.x86.sse4a.insertqi",
"llvm.x86.ssse3.pabs.b",
"llvm.x86.ssse3.pabs.d",
"llvm.x86.ssse3.pabs.w",
"llvm.x86.ssse3.phadd.d",
"llvm.x86.ssse3.phadd.d.128",
"llvm.x86.ssse3.phadd.sw",
"llvm.x86.ssse3.phadd.sw.128",
"llvm.x86.ssse3.phadd.w",
"llvm.x86.ssse3.phadd.w.128",
"llvm.x86.ssse3.phsub.d",
"llvm.x86.ssse3.phsub.d.128",
"llvm.x86.ssse3.phsub.sw",
"llvm.x86.ssse3.phsub.sw.128",
"llvm.x86.ssse3.phsub.w",
"llvm.x86.ssse3.phsub.w.128",
"llvm.x86.ssse3.pmadd.ub.sw",
"llvm.x86.ssse3.pmadd.ub.sw.128",
"llvm.x86.ssse3.pmul.hr.sw",
"llvm.x86.ssse3.pmul.hr.sw.128",
"llvm.x86.ssse3.pshuf.b",
"llvm.x86.ssse3.pshuf.b.128",
"llvm.x86.ssse3.psign.b",
"llvm.x86.ssse3.psign.b.128",
"llvm.x86.ssse3.psign.d",
"llvm.x86.ssse3.psign.d.128",
"llvm.x86.ssse3.psign.w",
"llvm.x86.ssse3.psign.w.128",
"llvm.x86.sttilecfg",
"llvm.x86.stui",
"llvm.x86.subborrow.32",
"llvm.x86.subborrow.64",
"llvm.x86.tbm.bextri.u32",
"llvm.x86.tbm.bextri.u64",
"llvm.x86.tdpbf16ps",
"llvm.x86.tdpbssd",
"llvm.x86.tdpbssd.internal",
"llvm.x86.tdpbsud",
"llvm.x86.tdpbusd",
"llvm.x86.tdpbuud",
"llvm.x86.testui",
"llvm.x86.tileloadd64",
"llvm.x86.tileloadd64.internal",
"llvm.x86.tileloaddt164",
"llvm.x86.tilerelease",
"llvm.x86.tilestored64",
"llvm.x86.tilestored64.internal",
"llvm.x86.tilezero",
"llvm.x86.tilezero.internal",
"llvm.x86.tpause",
"llvm.x86.umonitor",
"llvm.x86.umwait",
"llvm.x86.vcvtps2ph.128",
"llvm.x86.vcvtps2ph.256",
"llvm.x86.vgf2p8affineinvqb.128",
"llvm.x86.vgf2p8affineinvqb.256",
"llvm.x86.vgf2p8affineinvqb.512",
"llvm.x86.vgf2p8affineqb.128",
"llvm.x86.vgf2p8affineqb.256",
"llvm.x86.vgf2p8affineqb.512",
"llvm.x86.vgf2p8mulb.128",
"llvm.x86.vgf2p8mulb.256",
"llvm.x86.vgf2p8mulb.512",
"llvm.x86.wbinvd",
"llvm.x86.wbnoinvd",
"llvm.x86.wrfsbase.32",
"llvm.x86.wrfsbase.64",
"llvm.x86.wrgsbase.32",
"llvm.x86.wrgsbase.64",
"llvm.x86.wrpkru",
"llvm.x86.wrssd",
"llvm.x86.wrssq",
"llvm.x86.wrussd",
"llvm.x86.wrussq",
"llvm.x86.xabort",
"llvm.x86.xbegin",
"llvm.x86.xend",
"llvm.x86.xgetbv",
"llvm.x86.xop.vfrcz.pd",
"llvm.x86.xop.vfrcz.pd.256",
"llvm.x86.xop.vfrcz.ps",
"llvm.x86.xop.vfrcz.ps.256",
"llvm.x86.xop.vfrcz.sd",
"llvm.x86.xop.vfrcz.ss",
"llvm.x86.xop.vpermil2pd",
"llvm.x86.xop.vpermil2pd.256",
"llvm.x86.xop.vpermil2ps",
"llvm.x86.xop.vpermil2ps.256",
"llvm.x86.xop.vphaddbd",
"llvm.x86.xop.vphaddbq",
"llvm.x86.xop.vphaddbw",
"llvm.x86.xop.vphadddq",
"llvm.x86.xop.vphaddubd",
"llvm.x86.xop.vphaddubq",
"llvm.x86.xop.vphaddubw",
"llvm.x86.xop.vphaddudq",
"llvm.x86.xop.vphadduwd",
"llvm.x86.xop.vphadduwq",
"llvm.x86.xop.vphaddwd",
"llvm.x86.xop.vphaddwq",
"llvm.x86.xop.vphsubbw",
"llvm.x86.xop.vphsubdq",
"llvm.x86.xop.vphsubwd",
"llvm.x86.xop.vpmacsdd",
"llvm.x86.xop.vpmacsdqh",
"llvm.x86.xop.vpmacsdql",
"llvm.x86.xop.vpmacssdd",
"llvm.x86.xop.vpmacssdqh",
"llvm.x86.xop.vpmacssdql",
"llvm.x86.xop.vpmacsswd",
"llvm.x86.xop.vpmacssww",
"llvm.x86.xop.vpmacswd",
"llvm.x86.xop.vpmacsww",
"llvm.x86.xop.vpmadcsswd",
"llvm.x86.xop.vpmadcswd",
"llvm.x86.xop.vpperm",
"llvm.x86.xop.vpshab",
"llvm.x86.xop.vpshad",
"llvm.x86.xop.vpshaq",
"llvm.x86.xop.vpshaw",
"llvm.x86.xop.vpshlb",
"llvm.x86.xop.vpshld",
"llvm.x86.xop.vpshlq",
"llvm.x86.xop.vpshlw",
"llvm.x86.xresldtrk",
"llvm.x86.xrstor",
"llvm.x86.xrstor64",
"llvm.x86.xrstors",
"llvm.x86.xrstors64",
"llvm.x86.xsave",
"llvm.x86.xsave64",
"llvm.x86.xsavec",
"llvm.x86.xsavec64",
"llvm.x86.xsaveopt",
"llvm.x86.xsaveopt64",
"llvm.x86.xsaves",
"llvm.x86.xsaves64",
"llvm.x86.xsetbv",
"llvm.x86.xsusldtrk",
"llvm.x86.xtest",
"llvm.xcore.bitrev",
"llvm.xcore.checkevent",
"llvm.xcore.chkct",
"llvm.xcore.clre",
"llvm.xcore.clrpt",
"llvm.xcore.clrsr",
"llvm.xcore.crc32",
"llvm.xcore.crc8",
"llvm.xcore.edu",
"llvm.xcore.eeu",
"llvm.xcore.endin",
"llvm.xcore.freer",
"llvm.xcore.geted",
"llvm.xcore.getet",
"llvm.xcore.getid",
"llvm.xcore.getps",
"llvm.xcore.getr",
"llvm.xcore.getst",
"llvm.xcore.getts",
"llvm.xcore.in",
"llvm.xcore.inct",
"llvm.xcore.initcp",
"llvm.xcore.initdp",
"llvm.xcore.initlr",
"llvm.xcore.initpc",
"llvm.xcore.initsp",
"llvm.xcore.inshr",
"llvm.xcore.int",
"llvm.xcore.mjoin",
"llvm.xcore.msync",
"llvm.xcore.out",
"llvm.xcore.outct",
"llvm.xcore.outshr",
"llvm.xcore.outt",
"llvm.xcore.peek",
"llvm.xcore.setc",
"llvm.xcore.setclk",
"llvm.xcore.setd",
"llvm.xcore.setev",
"llvm.xcore.setps",
"llvm.xcore.setpsc",
"llvm.xcore.setpt",
"llvm.xcore.setrdy",
"llvm.xcore.setsr",
"llvm.xcore.settw",
"llvm.xcore.setv",
"llvm.xcore.sext",
"llvm.xcore.ssync",
"llvm.xcore.syncr",
"llvm.xcore.testct",
"llvm.xcore.testwct",
"llvm.xcore.waitevent",
"llvm.xcore.zext",
#endif
// Intrinsic ID to overload bitset
#ifdef GET_INTRINSIC_OVERLOAD_TABLE
static const uint8_t OTable[] = {
0 | (1<<1) | (1<<2) | (1<<4) | (1<<6) | (1<<7),
0 | (1<<3) | (1<<4) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<3),
0,
0,
0 | (1<<3) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0 | (1<<4),
0,
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<4) | (1<<5) | (1<<7),
0 | (1<<0) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<4) | (1<<5),
0 | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5),
0,
0,
0,
0 | (1<<4) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5),
0 | (1<<2) | (1<<3) | (1<<4) | (1<<7),
0 | (1<<2) | (1<<3) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6),
0 | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6),
0,
0,
0,
0,
0 | (1<<5),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<7),
0 | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<6) | (1<<7),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<6),
0 | (1<<4) | (1<<6),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<4) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0,
0 | (1<<2) | (1<<7),
0 | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<5),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<5),
0 | (1<<0) | (1<<3) | (1<<4) | (1<<5) | (1<<6),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<3) | (1<<6),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<7),
0 | (1<<2) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<5),
0 | (1<<0) | (1<<3) | (1<<4) | (1<<5) | (1<<6),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4),
0 | (1<<1) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<3) | (1<<4),
0,
0 | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1),
0 | (1<<4) | (1<<5) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<5) | (1<<6),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0,
0 | (1<<1) | (1<<3) | (1<<4),
0,
0,
0 | (1<<3) | (1<<4),
0 | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0 | (1<<0) | (1<<1) | (1<<4),
0,
0,
0 | (1<<0) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<5),
0 | (1<<6),
0 | (1<<1),
0 | (1<<6) | (1<<7),
0 | (1<<1) | (1<<3) | (1<<4) | (1<<5) | (1<<7),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<5) | (1<<7),
0,
0,
0 | (1<<6),
0 | (1<<4),
0 | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4),
0 | (1<<3),
0 | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<4) | (1<<5) | (1<<6),
0 | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6),
0 | (1<<3) | (1<<7),
0,
0 | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<3) | (1<<4) | (1<<5) | (1<<7),
0 | (1<<0) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4),
0,
0,
0,
0,
0,
0,
0,
0 | (1<<2) | (1<<4),
0,
0,
0,
0 | (1<<1) | (1<<2) | (1<<7),
0 | (1<<1),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<3) | (1<<4),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4),
0,
0 | (1<<6) | (1<<7),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4),
0,
0,
0,
0,
0 | (1<<1),
0,
0 | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<5),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<3) | (1<<4),
0,
0,
0,
0,
0,
0,
0,
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0,
0,
0,
0,
0,
0 | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0,
0,
0,
0,
0,
0 | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3),
0,
0,
0,
0,
0,
0 | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<3),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<3) | (1<<4),
0 | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2),
0 | (1<<5),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<4),
0,
0 | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<5) | (1<<6),
0 | (1<<1) | (1<<6) | (1<<7),
0 | (1<<2) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<6),
0,
0,
0,
0,
0,
0,
0 | (1<<4),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<0) | (1<<5),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0 | (1<<6),
0 | (1<<0) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<3) | (1<<4) | (1<<5) | (1<<6) | (1<<7),
0 | (1<<0) | (1<<1) | (1<<2) | (1<<4) | (1<<5) | (1<<6),
0 | (1<<0) | (1<<1) | (1<<4) | (1<<5) | (1<<6),
0
};
return (OTable[id/8] & (1 << (id%8))) != 0;
#endif
// Global intrinsic function declaration type table.
#ifdef GET_INTRINSIC_GENERATOR_GLOBAL
static const unsigned IIT_Table[] = {
0x17f1f, 0x4f, 0x2e2e, (1U<<31) | 2032, 0x10, 0x7f1f, 0x7f1f,
(1U<<31) | 6496, (1U<<31) | 6493, (1U<<31) | 9182, 0x7f2f, 0x7f2f, 0x2e2e0, (1U<<31) | 9203, 0x32f,
0x2f3, 0x7f7f2f, (1U<<31) | 9185, (1U<<31) | 1509, (1U<<31) | 9182, (1U<<31) | 9188, 0x2e2e2e, 0x2e0,
0x2e, (1U<<31) | 1036, 0x2e0, 0x2e1, 0x12e1, (1U<<31) | 9499, 0x2e, (1U<<31) | 1036,
(1U<<31) | 908, (1U<<31) | 992, (1U<<31) | 896, (1U<<31) | 896, 0x2e, 0x2e2e1, 0x2e2e, 0x2e2e,
0x142e2e, 0x2e0, (1U<<31) | 1038, 0x1f, 0x22e2e, (1U<<31) | 328, (1U<<31) | 9505, (1U<<31) | 9491,
0x7f2f, 0x17f1f, 0x7f1f, 0x17f1f, (1U<<31) | 9414, (1U<<31) | 9414, (1U<<31) | 9203, (1U<<31) | 9414,
0x0, 0x0, 0x42e, (1U<<31) | 9193, (1U<<31) | 9192, 0x2e2e2e, 0x2e40, 0x2e50,
0x40, 0x2e0, 0x2e0, 0x2e, 0x2e4, 0x0, 0x2e4, 0x0,
0x7f2f, 0x7f2f, 0x7f7f1f, 0x87f7f1f, (1U<<31) | 9224, (1U<<31) | 9366, (1U<<31) | 9366, (1U<<31) | 9366,
(1U<<31) | 9373, (1U<<31) | 9363, (1U<<31) | 9363, (1U<<31) | 9373, (1U<<31) | 9224, (1U<<31) | 9382, (1U<<31) | 9373, (1U<<31) | 9382,
(1U<<31) | 9244, (1U<<31) | 9238, (1U<<31) | 9238, (1U<<31) | 9407, (1U<<31) | 9373, (1U<<31) | 9373, (1U<<31) | 9400, (1U<<31) | 9238,
(1U<<31) | 9366, (1U<<31) | 9366, (1U<<31) | 9366, (1U<<31) | 9400, (1U<<31) | 9238, (1U<<31) | 9230, (1U<<31) | 9230, (1U<<31) | 9230,
(1U<<31) | 9230, (1U<<31) | 9366, (1U<<31) | 9373, (1U<<31) | 9355, (1U<<31) | 9366, (1U<<31) | 9224, (1U<<31) | 9224, (1U<<31) | 9366,
(1U<<31) | 9393, (1U<<31) | 9366, (1U<<31) | 9224, (1U<<31) | 9393, (1U<<31) | 9491, (1U<<31) | 4967, (1U<<31) | 9181, (1U<<31) | 9534,
(1U<<31) | 9495, (1U<<31) | 9526, (1U<<31) | 9518, (1U<<31) | 9543, 0x5bf3f, 0x5bf7f3f, 0x1, 0x7f2f,
0x7f2f, 0x4, 0x7f7f7f2f, 0x7f7f7f2f, 0xaf1f, 0xaf1f, 0x44f, 0x7f7f7f1f,
0x7f7f7f1f, 0x2ee2e2e, 0x2e2ee0, 0x2ee2e2e0, 0xff9f3f, 0x1f, 0x42e2e0, 0x42e2e0,
(1U<<31) | 9492, 0x2e2e2e0, 0x4452e0, 0x54452e0, 0x44552e0, (1U<<31) | 6356, (1U<<31) | 6357, 0xf1,
0x7f4f, 0x4f50, 0x4f50, 0xaf1f, 0xaf1f, 0x1f2e2e, 0x2e, (1U<<31) | 9492,
0x42e2e2e, 0x7f2f, 0x7f2f, 0x7f2f, 0x1f1, 0x7f7f1f, 0xaf1f, 0xaf1f,
(1U<<31) | 115, (1U<<31) | 7786, (1U<<31) | 7753, (1U<<31) | 7765, (1U<<31) | 76, (1U<<31) | 87, (1U<<31) | 3564, (1U<<31) | 3563,
(1U<<31) | 4407, 0x447f3f, 0x7f7f2f, 0x7f7f2f, (1U<<31) | 319, (1U<<31) | 6479, (1U<<31) | 319, (1U<<31) | 319,
(1U<<31) | 6479, 0x19f24f0, 0x49f24f0, 0x7f7f2f, 0x7f7f2f, 0x7f2f, 0x2ee2ee0, 0x2ee2ee0,
0x2ee2ee0, 0x2ee2ee0, 0x2e2e, 0x2e0, 0x2e, 0x2e2e, (1U<<31) | 9492, 0x2ee2ee0,
0x2ee0, 0x2e2ee2e, 0x2ee2e, 0x2ee2e, 0x2ee2ee0, 0x2e0, 0x2e2e, 0x2e2e,
0x2e2e, 0x2e2e, 0x2e2e, 0x2e2e, 0x2e2e, 0x2e2ee0, 0x2e2ee2e, 0x2e4,
0x2e4, 0x2e2e, 0x2e2e, 0x2e2e, 0x111cf1f, 0x40, 0x7f7f2f, 0x47f2f,
0x4444f0, 0x44cf4f, 0x44cf4f, 0x4cf4f, 0x4550, (1U<<31) | 948, 0x7f47f1f, 0x7f7f1f,
(1U<<31) | 7892, 0x7f47f1f, 0x7f7f1f, 0x47f1f, 0x9f7f4f, (1U<<31) | 9206, (1U<<31) | 9206, 0x5,
0x42e, 0x7f2f, 0x7f2f, 0x7f2f, 0x7f7f1f, (1U<<31) | 7903, 0x47f7f1f, 0x47f7f1f,
0x1f0, 0x0, 0x7f2f, 0x7f7f1f, 0x7f7f1f, 0x47f7f1f, 0x47f7f1f, (1U<<31) | 7903,
0x4f, 0x7f2f, 0x7f0f, 0x7f7f1f, 0x7f7f1f, (1U<<31) | 7903, 0x2e, 0x2ee2e0,
0x2e0, 0x2e, 0x7f1f, 0x7f4f, 0x1f1, 0x2e, 0x0, 0x7f2f,
(1U<<31) | 9215, (1U<<31) | 9210, 0x7f7f1f, (1U<<31) | 7903, 0x20, 0x47f7f1f, 0x47f7f1f, 0x7f7f1f,
0x7f7f1f, 0x47f7f1f, 0x47f7f1f, (1U<<31) | 7903, 0x7f7f1f, 0x7f7f1f, (1U<<31) | 7903, 0x2e2e0,
0x2e0, 0x2e0, (1U<<31) | 917, (1U<<31) | 1169, (1U<<31) | 1169, (1U<<31) | 1174, (1U<<31) | 1169, (1U<<31) | 1169,
(1U<<31) | 1174, (1U<<31) | 1169, (1U<<31) | 1169, (1U<<31) | 1169, (1U<<31) | 1169, (1U<<31) | 1169, (1U<<31) | 1169, (1U<<31) | 1169,
(1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188,
(1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, (1U<<31) | 1188, 0x1f, (1U<<31) | 280, 0x42e0,
0x42e30, 0x52e2e, 0x0, 0x44, 0x54, 0x444, 0x444, 0x444,
0x444, 0x544, 0x444, 0x444, 0x544, 0x2c2c2c, 0x2c2c2c, 0x2c2c,
0x2c2c, 0x4a44a4a, 0x44, 0x4a44a4a, 0x4a44a4a, 0x4a4a4a4a, 0x4a4a4a, 0x4a4a4a4a,
0x4a4a4a4a, 0x4a4a4a, 0x4a4a4a4a, 0x40, 0x40, 0x84, 0x5, 0x52e5,
0x40, 0x52e2e, 0x52e, 0x40, (1U<<31) | 1015, 0x4f5, 0x2e2e2e, (1U<<31) | 1015,
0x4f5, 0x7f0f, (1U<<31) | 8072, 0x7f7f3f, (1U<<31) | 8253, (1U<<31) | 7740, (1U<<31) | 7738, (1U<<31) | 8916,
(1U<<31) | 9601, (1U<<31) | 9601, (1U<<31) | 9601, 0x7f3f, 0x7f7f3f, 0xffaf1f, 0xffaf1f, 0x7f7f3f,
0xbf2f, 0xaf1f, 0xaf1f, 0xaf1f, 0xaf1f, 0xaf1f, 0xaf1f, 0xaf1f,
0xaf1f, 0xbf3f, 0xaf1f, 0xaf1f, 0x7f7f2f, 0x7f7f2f, 0x7f7f3f, 0xbf2f,
0x7f7f3f, 0xbf2f, 0x7f7f2f, 0x7f7f2f, 0x7f7f3f, 0xbf2f, 0x7f7f3f, 0xbf2f,
(1U<<31) | 8916, (1U<<31) | 8916, (1U<<31) | 8916, (1U<<31) | 8916, 0x7f7f2f, 0x7f2f, 0x7f7f2f, 0x7f2f,
0x7f2f, 0x7f2f, 0x7f7f2f, (1U<<31) | 8707, (1U<<31) | 8697, (1U<<31) | 8685, (1U<<31) | 8707, (1U<<31) | 8753,
(1U<<31) | 8707, (1U<<31) | 8697, (1U<<31) | 8736, (1U<<31) | 8697, (1U<<31) | 8685, (1U<<31) | 8715, (1U<<31) | 8685, 0x7f7f3f,
(1U<<31) | 8084, 0x552c, (1U<<31) | 8072, 0x7f3f, (1U<<31) | 5473, (1U<<31) | 8072, 0x7f7f3f, 0xbf3f,
0xbf1f, 0xbf1f, 0x9f1f, 0x9f1f, 0x9f1f, (1U<<31) | 8916, 0x7f7f3f, (1U<<31) | 8079,
0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0xbf1f, 0x7f7f3f, 0x7f7f3f, 0xbf1f, (1U<<31) | 8916,
(1U<<31) | 8084, 0x7f1f, 0x7f7f1f, 0x7f7f1f, 0x49f7f1f, 0x49f7f1f, (1U<<31) | 8084, 0x445,
0x7f1f, 0x7f7f1f, 0x49f7f1f, 0x49f7f1f, 0x7f7f1f, (1U<<31) | 5473, (1U<<31) | 5473, 0x7f7f1f,
0x7f7f1f, (1U<<31) | 5473, (1U<<31) | 5473, 0x7f7f1f, (1U<<31) | 8062, (1U<<31) | 8062, 0x7f7f3f, 0x7f7f1f,
0x7f7f1f, (1U<<31) | 5479, 0xcf7f3f0, (1U<<31) | 8807, (1U<<31) | 8827, 0xcf7f3f0, (1U<<31) | 8766, (1U<<31) | 8807,
(1U<<31) | 8775, (1U<<31) | 8827, (1U<<31) | 8786, (1U<<31) | 8072, 0x7f7f1f, 0x7f2c3f, 0x7f2c2c3f, (1U<<31) | 7824,
(1U<<31) | 7796, 0x7f2c7f3f, (1U<<31) | 7848, (1U<<31) | 7835, (1U<<31) | 7809, 0x7f7f3f, 0xbf3f, 0xbf1f,
0xbf1f, (1U<<31) | 8916, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0xbf1f, 0x7f7f3f,
0x7f7f3f, 0xbf1f, (1U<<31) | 8916, (1U<<31) | 8084, 0x7f7f1f, 0x7f7f1f, (1U<<31) | 5473, 0x7f7f1f,
(1U<<31) | 5473, 0x7f7f1f, (1U<<31) | 8062, 0x7f3f, 0x7f7f3f, 0x7f7f1f, 0x7f3f, (1U<<31) | 8916,
0x7f7f1f, (1U<<31) | 5479, (1U<<31) | 8916, 0x7f7f1f, 0x7f7f3f, 0x7f7f3f, 0x7f7f7f3f, 0x7f7f7f3f,
0x7f7f7f3f, 0x7f7f7f3f, 0x57f5bf3f, 0x4af1f, 0x4af1f, 0x7a3a, 0x49f2f, 0x49f2f,
0x3a7a, 0x47f7f3f, 0x47f7f3f, 0x7f7f1f, 0x52e0, 0x52e0, 0x7f7f2f, 0x87,
0x545, 0x2e2e0, 0x552e0, 0x2e554, 0x4f54, 0x2e554, 0x4f54, 0x2e2e5,
(1U<<31) | 7776, 0x7f7f7f3f, 0x7f7f7f3f, (1U<<31) | 7914, (1U<<31) | 7885, (1U<<31) | 7883, (1U<<31) | 7914, 0x7f7f3f,
0x7f7f3f, 0x7f7f3f, 0x7f7f3f, (1U<<31) | 880, (1U<<31) | 880, (1U<<31) | 883, (1U<<31) | 883, (1U<<31) | 7914,
(1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7914, (1U<<31) | 6742, (1U<<31) | 5409, 0x7f7f7f3f, 0x7f7f3f, 0x7f7f3f,
(1U<<31) | 9588, (1U<<31) | 6791, (1U<<31) | 9588, (1U<<31) | 6791, (1U<<31) | 9588, (1U<<31) | 6791, (1U<<31) | 9588, 0x7f7f3f,
(1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 7776, (1U<<31) | 7745, (1U<<31) | 7776, (1U<<31) | 7745, (1U<<31) | 7914, (1U<<31) | 7914,
(1U<<31) | 7914, 0x7f7f7f3f, 0x7f7f7f3f, 0x7f7f7f3f, 0x47f7f3f, (1U<<31) | 5509, (1U<<31) | 4584, (1U<<31) | 7914,
(1U<<31) | 1164, (1U<<31) | 7914, (1U<<31) | 1164, (1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 4519, (1U<<31) | 5452, (1U<<31) | 7859,
(1U<<31) | 6720, (1U<<31) | 7859, (1U<<31) | 6720, (1U<<31) | 7859, (1U<<31) | 6720, (1U<<31) | 7859, (1U<<31) | 6720, (1U<<31) | 7859,
(1U<<31) | 6720, (1U<<31) | 6720, (1U<<31) | 6720, (1U<<31) | 6720, (1U<<31) | 6720, (1U<<31) | 7859, (1U<<31) | 6720, (1U<<31) | 7776,
(1U<<31) | 1143, 0x45, 0x45, 0x45, 0x7f3f5, 0x45, (1U<<31) | 7745, (1U<<31) | 269,
(1U<<31) | 1153, (1U<<31) | 8146, (1U<<31) | 8156, 0x57f3f, (1U<<31) | 7914, (1U<<31) | 7914, 0x7f7f7f3f, 0x7f7f7f3f,
0x7f7f7f3f, (1U<<31) | 1135, 0x47f7f3f, (1U<<31) | 7914, (1U<<31) | 7776, (1U<<31) | 7859, (1U<<31) | 7859, (1U<<31) | 7914,
(1U<<31) | 1164, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 5418, (1U<<31) | 5439, (1U<<31) | 4519, (1U<<31) | 7859, (1U<<31) | 7859,
(1U<<31) | 7859, (1U<<31) | 7859, (1U<<31) | 7859, (1U<<31) | 8489, (1U<<31) | 7725, (1U<<31) | 7712, (1U<<31) | 8300, (1U<<31) | 7008,
(1U<<31) | 8313, (1U<<31) | 6982, (1U<<31) | 7699, (1U<<31) | 7008, (1U<<31) | 7699, (1U<<31) | 7725, (1U<<31) | 7712, (1U<<31) | 8313,
(1U<<31) | 8313, (1U<<31) | 8313, (1U<<31) | 8499, (1U<<31) | 6995, (1U<<31) | 8287, (1U<<31) | 6969, (1U<<31) | 7686, (1U<<31) | 8499,
(1U<<31) | 6995, (1U<<31) | 8287, (1U<<31) | 6969, (1U<<31) | 7686, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 8222, (1U<<31) | 1143,
(1U<<31) | 7924, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7914,
(1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7924, (1U<<31) | 5452, (1U<<31) | 8204,
(1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 7924, (1U<<31) | 5452, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204,
(1U<<31) | 5499, 0x7f7f7f3f, (1U<<31) | 7924, (1U<<31) | 7914, 0x47f7f3f, (1U<<31) | 7914, (1U<<31) | 7776, (1U<<31) | 7924,
(1U<<31) | 7924, (1U<<31) | 7924, (1U<<31) | 7924, 0x7f3f, 0x7f7f3f, (1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 7776,
(1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 7776, 0x7f3f, 0x7f7f3f, (1U<<31) | 8227,
(1U<<31) | 7776, (1U<<31) | 7914, (1U<<31) | 7914, 0x47f7f3f, (1U<<31) | 8237, (1U<<31) | 8237, (1U<<31) | 7914, 0x7f7f3f,
(1U<<31) | 8168, (1U<<31) | 8161, (1U<<31) | 1135, (1U<<31) | 1135, (1U<<31) | 8092, (1U<<31) | 6524, (1U<<31) | 6524, (1U<<31) | 6774,
(1U<<31) | 2170, (1U<<31) | 2170, (1U<<31) | 2170, (1U<<31) | 2170, (1U<<31) | 8092, (1U<<31) | 8092, (1U<<31) | 8139, (1U<<31) | 8139,
(1U<<31) | 8139, (1U<<31) | 8092, (1U<<31) | 6524, (1U<<31) | 6524, (1U<<31) | 6774, (1U<<31) | 2170, (1U<<31) | 2170, (1U<<31) | 2170,
(1U<<31) | 2170, (1U<<31) | 8092, (1U<<31) | 8092, (1U<<31) | 6524, (1U<<31) | 6524, (1U<<31) | 6774, (1U<<31) | 2170, (1U<<31) | 7914,
(1U<<31) | 6742, (1U<<31) | 7914, (1U<<31) | 6742, (1U<<31) | 7924, (1U<<31) | 7859, (1U<<31) | 7924, (1U<<31) | 5452, (1U<<31) | 7924,
(1U<<31) | 5452, (1U<<31) | 7924, (1U<<31) | 7914, 0x47f7f3f, (1U<<31) | 7914, 0x7f7f7f3f, (1U<<31) | 7776, (1U<<31) | 7859,
(1U<<31) | 7914, (1U<<31) | 7776, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7745, 0x7f7f3f,
0x7f7f3f, 0x7f7f3f, (1U<<31) | 7745, 0x42e3f0, (1U<<31) | 2147, (1U<<31) | 5001, (1U<<31) | 2147, (1U<<31) | 2147,
(1U<<31) | 2147, (1U<<31) | 5001, (1U<<31) | 2147, (1U<<31) | 2147, (1U<<31) | 2147, (1U<<31) | 5001, (1U<<31) | 2147, (1U<<31) | 2147,
(1U<<31) | 2147, (1U<<31) | 5001, (1U<<31) | 2147, (1U<<31) | 2147, 0x7f3f1, 0x7f3f1, 0x7f3f1, 0x43f,
(1U<<31) | 1159, (1U<<31) | 1159, (1U<<31) | 7885, (1U<<31) | 7883, (1U<<31) | 6732, (1U<<31) | 7776, (1U<<31) | 258, (1U<<31) | 262,
0x7f3f, (1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 2159, (1U<<31) | 2157, (1U<<31) | 7885, (1U<<31) | 7883,
0x7f7f7f3f, (1U<<31) | 8204, (1U<<31) | 8204, (1U<<31) | 7914, (1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 8180, (1U<<31) | 8197,
(1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 1128, (1U<<31) | 8190, (1U<<31) | 8190, 0x7f7f7f3f, 0x7f7f7f3f, (1U<<31) | 8489,
(1U<<31) | 6076, (1U<<31) | 6694, (1U<<31) | 6707, (1U<<31) | 6063, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 8213, (1U<<31) | 5509,
(1U<<31) | 7914, 0x0, (1U<<31) | 7914, (1U<<31) | 2159, (1U<<31) | 2157, (1U<<31) | 7914, (1U<<31) | 7914, 0x47f7f3f,
(1U<<31) | 6089, (1U<<31) | 6089, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 1135,
(1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 5499,
(1U<<31) | 8213, (1U<<31) | 7914, (1U<<31) | 8197, (1U<<31) | 5491, (1U<<31) | 8197, (1U<<31) | 5491, (1U<<31) | 7914, (1U<<31) | 7776,
(1U<<31) | 7914, 0x7f7f3f, 0x47f7f3f, 0x4444, 0x4455, 0x447f3f, 0x4444, 0x4455,
0x447f3f, 0x4444, 0x4455, (1U<<31) | 97, 0x3f44, 0x3f55, 0x447f3f, 0x4444,
0x4455, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 5499,
(1U<<31) | 8204, (1U<<31) | 8204, (1U<<31) | 5499, 0x7f7f3f, 0x47f7f3f, (1U<<31) | 8197, (1U<<31) | 5491, (1U<<31) | 8197,
(1U<<31) | 5491, 0x4444, 0x4455, 0x447f3f, 0x4444, 0x4455, 0x447f3f, 0x4444,
0x4455, (1U<<31) | 97, 0x3f44, 0x3f55, 0x447f3f, 0x4444, 0x4455, (1U<<31) | 7776,
(1U<<31) | 4519, (1U<<31) | 5452, 0x7f7f7f3f, (1U<<31) | 5452, 0x7f7f7f3f, (1U<<31) | 5452, 0x7f7f3f, 0x47f7f3f,
(1U<<31) | 7914, (1U<<31) | 2159, (1U<<31) | 2157, (1U<<31) | 2159, (1U<<31) | 2157, (1U<<31) | 7914, (1U<<31) | 5409, (1U<<31) | 2159,
(1U<<31) | 2157, (1U<<31) | 2159, (1U<<31) | 2157, (1U<<31) | 7914, 0x7f7f3f, (1U<<31) | 7914, (1U<<31) | 1183, (1U<<31) | 1181,
(1U<<31) | 1183, (1U<<31) | 1181, (1U<<31) | 7914, 0x47f7f3f, (1U<<31) | 7914, (1U<<31) | 5409, 0x47f7f3f, (1U<<31) | 5485,
(1U<<31) | 5485, 0x47f7f3f, (1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 8190, (1U<<31) | 8190,
(1U<<31) | 8091, (1U<<31) | 6523, (1U<<31) | 6523, (1U<<31) | 6773, (1U<<31) | 2169, (1U<<31) | 2169, (1U<<31) | 2169, (1U<<31) | 2169,
(1U<<31) | 8100, (1U<<31) | 8111, (1U<<31) | 8124, (1U<<31) | 8091, (1U<<31) | 6523, (1U<<31) | 6523, (1U<<31) | 6773, (1U<<31) | 2169,
(1U<<31) | 7914, (1U<<31) | 7885, (1U<<31) | 7883, (1U<<31) | 7914, (1U<<31) | 5509, (1U<<31) | 8175, (1U<<31) | 8175, (1U<<31) | 7914,
(1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 7776, (1U<<31) | 8237, (1U<<31) | 8244, (1U<<31) | 8244, 0x7f7f3f, 0x7f7f3f,
0x7f7f3f, 0x7f7f3f, 0xffbf3f, (1U<<31) | 8925, (1U<<31) | 8944, 0x4bf3f, 0xbf47f3f, 0x7f7f7f3f,
(1U<<31) | 8204, (1U<<31) | 8204, (1U<<31) | 7914, (1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 8180, (1U<<31) | 8197, (1U<<31) | 8197,
(1U<<31) | 1128, (1U<<31) | 8190, (1U<<31) | 8190, (1U<<31) | 8489, (1U<<31) | 6076, (1U<<31) | 6694, (1U<<31) | 6707, (1U<<31) | 6063,
(1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 8213, (1U<<31) | 5509, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 7914,
(1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 1135, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204,
(1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8204, (1U<<31) | 5499, (1U<<31) | 8213, (1U<<31) | 7914, (1U<<31) | 8197,
(1U<<31) | 5491, (1U<<31) | 8197, (1U<<31) | 5491, (1U<<31) | 7914, 0x7f7f3f, 0x4444, 0x4455, 0x447f3f,
0x4444, 0x4455, 0x447f3f, 0x4444, 0x4455, (1U<<31) | 97, 0x3f44, 0x3f55,
0x447f3f, 0x4444, 0x4455, 0x4444, 0x4455, 0x447f3f, 0x4444, 0x4455,
0x447f3f, 0x4444, 0x4455, (1U<<31) | 97, 0x3f44, 0x3f55, 0x447f3f, 0x4444,
0x4455, (1U<<31) | 7914, (1U<<31) | 2159, (1U<<31) | 2157, (1U<<31) | 7914, (1U<<31) | 2159, (1U<<31) | 2157, (1U<<31) | 7914,
0x7f7f3f, (1U<<31) | 7914, (1U<<31) | 1183, (1U<<31) | 1181, (1U<<31) | 7776, (1U<<31) | 7914, (1U<<31) | 7914, (1U<<31) | 5409,
(1U<<31) | 7776, 0x47f7f3f, (1U<<31) | 8213, (1U<<31) | 5509, (1U<<31) | 5485, (1U<<31) | 5485, (1U<<31) | 8213, (1U<<31) | 7914,
0x47f7f3f, (1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 8190, (1U<<31) | 8190, (1U<<31) | 8175, (1U<<31) | 8175, (1U<<31) | 7776,
(1U<<31) | 7776, (1U<<31) | 7776, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0xff9f3f, 0xff9f3f,
0xff9f3f, 0xff9f3f, 0xff9f3f, 0xff9f3f, 0xff9f3f, 0xff9f3f, 0xffcf3f, 0xffcf3f,
0xffcf3f, 0xffcf3f, 0xffcf3f, 0xffcf3f, 0xffcf3f, 0xffcf3f, (1U<<31) | 257, 0x47f7f3f,
0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x52e7f4f, 0x50, 0x0, 0x5,
0x5, 0x7f7f1f, 0x4444, 0x4444, (1U<<31) | 167, (1U<<31) | 167, 0x11f, (1U<<31) | 135,
(1U<<31) | 135, 0x1444a444, (1U<<31) | 135, (1U<<31) | 145, (1U<<31) | 135, (1U<<31) | 135, (1U<<31) | 135, (1U<<31) | 135,
(1U<<31) | 135, (1U<<31) | 135, (1U<<31) | 135, (1U<<31) | 135, 0x11444a0f, 0x11444a2f, (1U<<31) | 26, (1U<<31) | 36,
0x0, 0x0, 0x0, 0x42f1, 0x7f2f, 0x7777, 0x7777, 0x7777,
0x7777, 0x4439, 0x4439, 0x4474, 0x7739, 0x7739, 0x7769, 0x5,
(1U<<31) | 524, 0x7f7f7f2f, (1U<<31) | 187, (1U<<31) | 177, 0x14f4, 0x444, 0x14f4, (1U<<31) | 155,
(1U<<31) | 155, (1U<<31) | 155, 0x440, 0x440, 0x440, 0x40, 0x40, 0x40,
(1U<<31) | 0, (1U<<31) | 0, 0x444, 0x444, (1U<<31) | 8421, 0x1f0, 0x0, (1U<<31) | 56,
(1U<<31) | 46, 0x4ffaf1f, 0x777, 0x1769697, 0x7777, 0x7f7f7f2f, 0x7f7f7f2f, 0x777,
0x7f2f, 0xaf1f, 0x7f2f, 0x44f4, (1U<<31) | 9196, 0x4, 0x4ff9f1f, (1U<<31) | 70,
0x7f11f, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4192, (1U<<31) | 4253, (1U<<31) | 4253, (1U<<31) | 4312, (1U<<31) | 4379, (1U<<31) | 4312, (1U<<31) | 4312,
(1U<<31) | 4312, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 4181, (1U<<31) | 4240, (1U<<31) | 4240, (1U<<31) | 4297, (1U<<31) | 4362, (1U<<31) | 4297, (1U<<31) | 4297,
(1U<<31) | 4297, (1U<<31) | 6049, (1U<<31) | 2237, (1U<<31) | 2301, (1U<<31) | 2626, (1U<<31) | 2878, (1U<<31) | 2878, (1U<<31) | 3274,
(1U<<31) | 3274, (1U<<31) | 2897, (1U<<31) | 3295, (1U<<31) | 3295, (1U<<31) | 2878, (1U<<31) | 2643, (1U<<31) | 2897, (1U<<31) | 2897,
(1U<<31) | 2268, (1U<<31) | 2336, (1U<<31) | 2589, (1U<<31) | 2837, (1U<<31) | 2837, (1U<<31) | 3229, (1U<<31) | 3229, (1U<<31) | 2857,
(1U<<31) | 3251, (1U<<31) | 3251, (1U<<31) | 2837, (1U<<31) | 2607, (1U<<31) | 2857, (1U<<31) | 2857, (1U<<31) | 2336, (1U<<31) | 2412,
(1U<<31) | 2412, (1U<<31) | 2354, (1U<<31) | 2432, (1U<<31) | 2432, (1U<<31) | 2336, (1U<<31) | 2336, (1U<<31) | 2412, (1U<<31) | 2412,
(1U<<31) | 2354, (1U<<31) | 2432, (1U<<31) | 2432, (1U<<31) | 2268, (1U<<31) | 2336, (1U<<31) | 2336, (1U<<31) | 2284, (1U<<31) | 2354,
(1U<<31) | 2354, (1U<<31) | 2284, (1U<<31) | 2354, (1U<<31) | 2354, (1U<<31) | 2301, (1U<<31) | 2373, (1U<<31) | 2373, (1U<<31) | 2318,
(1U<<31) | 2392, (1U<<31) | 2392, (1U<<31) | 2301, (1U<<31) | 2301, (1U<<31) | 2373, (1U<<31) | 2373, (1U<<31) | 2318, (1U<<31) | 2392,
(1U<<31) | 2392, (1U<<31) | 2237, (1U<<31) | 2301, (1U<<31) | 2301, (1U<<31) | 2252, (1U<<31) | 2318, (1U<<31) | 2318, (1U<<31) | 2252,
(1U<<31) | 2318, (1U<<31) | 2318, (1U<<31) | 2181, (1U<<31) | 2237, (1U<<31) | 2237, (1U<<31) | 2301, (1U<<31) | 2301, (1U<<31) | 2301,
(1U<<31) | 4171, (1U<<31) | 4171, (1U<<31) | 4171, (1U<<31) | 4171, (1U<<31) | 4171, (1U<<31) | 4171, (1U<<31) | 4171, (1U<<31) | 4171,
(1U<<31) | 4160, (1U<<31) | 4215, (1U<<31) | 4215, (1U<<31) | 4268, (1U<<31) | 4329, (1U<<31) | 4268, (1U<<31) | 4268, (1U<<31) | 4268,
(1U<<31) | 4215, (1U<<31) | 4268, (1U<<31) | 4268, (1U<<31) | 4329, (1U<<31) | 4329, (1U<<31) | 4329, (1U<<31) | 4160, (1U<<31) | 4215,
(1U<<31) | 4215, (1U<<31) | 4268, (1U<<31) | 4329, (1U<<31) | 4268, (1U<<31) | 4268, (1U<<31) | 4268, (1U<<31) | 2181, (1U<<31) | 2237,
(1U<<31) | 2237, (1U<<31) | 2301, (1U<<31) | 2301, (1U<<31) | 2486, (1U<<31) | 2626, (1U<<31) | 2626, (1U<<31) | 2878, (1U<<31) | 2878,
(1U<<31) | 2626, (1U<<31) | 2878, (1U<<31) | 2878, (1U<<31) | 3274, (1U<<31) | 3274, (1U<<31) | 3274, (1U<<31) | 2643, (1U<<31) | 2897,
(1U<<31) | 2897, (1U<<31) | 3295, (1U<<31) | 3295, (1U<<31) | 3295, (1U<<31) | 2878, (1U<<31) | 2501, (1U<<31) | 2643, (1U<<31) | 2643,
(1U<<31) | 2897, (1U<<31) | 2897, (1U<<31) | 2897, (1U<<31) | 2208, (1U<<31) | 2268, (1U<<31) | 2268, (1U<<31) | 2336, (1U<<31) | 2336,
(1U<<31) | 2453, (1U<<31) | 2589, (1U<<31) | 2589, (1U<<31) | 2837, (1U<<31) | 2837, (1U<<31) | 2589, (1U<<31) | 2837, (1U<<31) | 2837,
(1U<<31) | 3229, (1U<<31) | 3229, (1U<<31) | 3229, (1U<<31) | 2607, (1U<<31) | 2857, (1U<<31) | 2857, (1U<<31) | 3251, (1U<<31) | 3251,
(1U<<31) | 3251, (1U<<31) | 2837, (1U<<31) | 2469, (1U<<31) | 2607, (1U<<31) | 2607, (1U<<31) | 2857, (1U<<31) | 2857, (1U<<31) | 2857,
(1U<<31) | 2552, (1U<<31) | 2700, (1U<<31) | 2788, (1U<<31) | 3056, (1U<<31) | 3168, (1U<<31) | 2700, (1U<<31) | 2960, (1U<<31) | 3056,
(1U<<31) | 3372, (1U<<31) | 3492, (1U<<31) | 3372, (1U<<31) | 2720, (1U<<31) | 2982, (1U<<31) | 3082, (1U<<31) | 3400, (1U<<31) | 3524,
(1U<<31) | 3400, (1U<<31) | 3056, (1U<<31) | 2570, (1U<<31) | 2720, (1U<<31) | 2812, (1U<<31) | 3082, (1U<<31) | 3198, (1U<<31) | 3082,
(1U<<31) | 2268, (1U<<31) | 2336, (1U<<31) | 2336, (1U<<31) | 2412, (1U<<31) | 2412, (1U<<31) | 2412, (1U<<31) | 2284, (1U<<31) | 2354,
(1U<<31) | 2354, (1U<<31) | 2432, (1U<<31) | 2432, (1U<<31) | 2432, (1U<<31) | 2336, (1U<<31) | 2552, (1U<<31) | 2700, (1U<<31) | 2788,
(1U<<31) | 3056, (1U<<31) | 3168, (1U<<31) | 2700, (1U<<31) | 2960, (1U<<31) | 3056, (1U<<31) | 3372, (1U<<31) | 3492, (1U<<31) | 3372,
(1U<<31) | 2720, (1U<<31) | 2982, (1U<<31) | 3082, (1U<<31) | 3400, (1U<<31) | 3524, (1U<<31) | 3400, (1U<<31) | 3056, (1U<<31) | 2570,
(1U<<31) | 2720, (1U<<31) | 2812, (1U<<31) | 3082, (1U<<31) | 3198, (1U<<31) | 3082, (1U<<31) | 2268, (1U<<31) | 2336, (1U<<31) | 2336,
(1U<<31) | 2412, (1U<<31) | 2412, (1U<<31) | 2412, (1U<<31) | 2284, (1U<<31) | 2354, (1U<<31) | 2354, (1U<<31) | 2432, (1U<<31) | 2432,
(1U<<31) | 2432, (1U<<31) | 2208, (1U<<31) | 2268, (1U<<31) | 2268, (1U<<31) | 2336, (1U<<31) | 2336, (1U<<31) | 2336, (1U<<31) | 2222,
(1U<<31) | 2284, (1U<<31) | 2284, (1U<<31) | 2354, (1U<<31) | 2354, (1U<<31) | 2354, (1U<<31) | 2222, (1U<<31) | 2284, (1U<<31) | 2284,
(1U<<31) | 2354, (1U<<31) | 2354, (1U<<31) | 2354, (1U<<31) | 2517, (1U<<31) | 2661, (1U<<31) | 2741, (1U<<31) | 3005, (1U<<31) | 3109,
(1U<<31) | 2661, (1U<<31) | 2917, (1U<<31) | 3005, (1U<<31) | 3317, (1U<<31) | 3429, (1U<<31) | 3317, (1U<<31) | 2680, (1U<<31) | 2938,
(1U<<31) | 3030, (1U<<31) | 3344, (1U<<31) | 3460, (1U<<31) | 3344, (1U<<31) | 3005, (1U<<31) | 2534, (1U<<31) | 2680, (1U<<31) | 2764,
(1U<<31) | 3030, (1U<<31) | 3138, (1U<<31) | 3030, (1U<<31) | 2237, (1U<<31) | 2301, (1U<<31) | 2301, (1U<<31) | 2373, (1U<<31) | 2373,
(1U<<31) | 2373, (1U<<31) | 2252, (1U<<31) | 2318, (1U<<31) | 2318, (1U<<31) | 2392, (1U<<31) | 2392, (1U<<31) | 2392, (1U<<31) | 2301,
(1U<<31) | 2517, (1U<<31) | 2661, (1U<<31) | 2741, (1U<<31) | 3005, (1U<<31) | 3109, (1U<<31) | 2661, (1U<<31) | 2917, (1U<<31) | 3005,
(1U<<31) | 3317, (1U<<31) | 3429, (1U<<31) | 3317, (1U<<31) | 2680, (1U<<31) | 2938, (1U<<31) | 3030, (1U<<31) | 3344, (1U<<31) | 3460,
(1U<<31) | 3344, (1U<<31) | 3005, (1U<<31) | 2534, (1U<<31) | 2680, (1U<<31) | 2764, (1U<<31) | 3030, (1U<<31) | 3138, (1U<<31) | 3030,
(1U<<31) | 2237, (1U<<31) | 2301, (1U<<31) | 2301, (1U<<31) | 2373, (1U<<31) | 2373, (1U<<31) | 2373, (1U<<31) | 2252, (1U<<31) | 2318,
(1U<<31) | 2318, (1U<<31) | 2392, (1U<<31) | 2392, (1U<<31) | 2392, (1U<<31) | 2181, (1U<<31) | 2237, (1U<<31) | 2237, (1U<<31) | 2301,
(1U<<31) | 2301, (1U<<31) | 2301, (1U<<31) | 2194, (1U<<31) | 2252, (1U<<31) | 2252, (1U<<31) | 2318, (1U<<31) | 2318, (1U<<31) | 2318,
(1U<<31) | 2194, (1U<<31) | 2252, (1U<<31) | 2252, (1U<<31) | 2318, (1U<<31) | 2318, (1U<<31) | 2318, (1U<<31) | 4170, (1U<<31) | 4227,
(1U<<31) | 4227, (1U<<31) | 4282, (1U<<31) | 4345, (1U<<31) | 4282, (1U<<31) | 4282, (1U<<31) | 4282, (1U<<31) | 4227, (1U<<31) | 4282,
(1U<<31) | 4282, (1U<<31) | 4345, (1U<<31) | 4345, (1U<<31) | 4345, (1U<<31) | 524, (1U<<31) | 524, 0x50, 0x440,
0x44447, 0x44477, 0x414477, 0x444777, 0x4144776, 0x2e1, 0x2e1, (1U<<31) | 524,
0x10, 0x47f2f, 0x4444, 0x7f2f, 0x1f1, 0x444, 0x444, (1U<<31) | 4058,
(1U<<31) | 4104, (1U<<31) | 4080, (1U<<31) | 4092, (1U<<31) | 4070, (1U<<31) | 4046, (1U<<31) | 4138, (1U<<31) | 4114, (1U<<31) | 4104,
(1U<<31) | 4080, (1U<<31) | 4126, (1U<<31) | 4092, (1U<<31) | 4070, (1U<<31) | 4046, (1U<<31) | 4058, (1U<<31) | 3902, (1U<<31) | 3944,
(1U<<31) | 3954, (1U<<31) | 3944, (1U<<31) | 3902, 0x14447f1f, 0x47f1f, 0x5455, 0x4a454a, 0x4444,
0x444, 0x444, 0x1144444, 0x1144444, 0x1, 0x5455, (1U<<31) | 524, (1U<<31) | 3912,
(1U<<31) | 3912, (1U<<31) | 3932, (1U<<31) | 3912, (1U<<31) | 3922, (1U<<31) | 3912, (1U<<31) | 3912, (1U<<31) | 3912, (1U<<31) | 3912,
(1U<<31) | 3912, (1U<<31) | 3912, (1U<<31) | 3912, (1U<<31) | 3912, (1U<<31) | 3912, 0x4444a0f, 0x4444a2f, 0x4444a0f0,
0x4444a2f0, 0x44444a0f, (1U<<31) | 3850, 0x7f2f, 0x77, 0x44, 0x444, (1U<<31) | 9221,
0x7f2f, 0x7f2f, 0x77, 0x0, 0x444a0f, 0x0, 0x0, 0x0,
0x0, 0x40, 0x4, 0x5, 0x44, 0x40, 0x5, 0x5,
0x440, 0x440, 0x440, 0x40, 0x40, 0x4444, 0x4444, 0x4444,
0x447f1f, 0x1439394, 0x14444, 0x14444, 0x7f7f1f, 0x7f1f, 0x7f2f, 0x7f0f,
0x7f2f, (1U<<31) | 3860, (1U<<31) | 3860, (1U<<31) | 3882, (1U<<31) | 3860, (1U<<31) | 3871, (1U<<31) | 3860, (1U<<31) | 3860,
(1U<<31) | 3860, (1U<<31) | 3860, (1U<<31) | 3860, (1U<<31) | 3860, (1U<<31) | 3860, (1U<<31) | 3860, (1U<<31) | 3860, 0x44444a0f,
0x44444a0f, (1U<<31) | 3850, (1U<<31) | 3850, (1U<<31) | 3819, (1U<<31) | 3818, (1U<<31) | 13, (1U<<31) | 12, 0x47f2f,
0x447f1f, 0x1439394, 0x14444, 0x14444, 0x0, (1U<<31) | 124, 0x0, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x7f0f, 0x11,
0x4444, 0x7f0f, 0x444, 0x4444, (1U<<31) | 3964, (1U<<31) | 3842, 0x4444, 0x44444,
(1U<<31) | 3895, (1U<<31) | 3809, 0x44444, 0x444444, (1U<<31) | 3842, (1U<<31) | 3789, 0x442f, 0x47f42f,
0x442c, (1U<<31) | 8592, 0x42c42c, (1U<<31) | 8592, 0x47f42f, 0x47f7f42f, 0x42c42c, (1U<<31) | 8522,
0x42c2c42c, (1U<<31) | 8522, 0x47f7f42f, (1U<<31) | 5462, 0x42c2c42c, (1U<<31) | 8509, (1U<<31) | 1985, (1U<<31) | 8509,
0x4444440, 0x4444440, 0x0, 0x44, 0x54, 0x2e4, 0x2e4, 0x2e4,
0x2e4, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x40,
0x40, 0x40, 0x4, 0x0, 0x40, 0x40, 0x4f4, (1U<<31) | 999,
0x2e440, 0x2e440, 0x2e440, 0x2e440, 0x4f4, (1U<<31) | 999, 0x4444440, 0x4444440,
0x444440, 0x444440, 0x444444, 0x444444, (1U<<31) | 3895, (1U<<31) | 3895, (1U<<31) | 7967, 0x7fbf7f3f,
(1U<<31) | 7979, 0x43f5, 0xbf43f5, 0x43f4, 0xbf43f4, (1U<<31) | 7979, (1U<<31) | 3895, (1U<<31) | 7979,
0x7fbf7f3f, 0x7fbf7f3f, (1U<<31) | 7979, (1U<<31) | 8649, (1U<<31) | 7967, (1U<<31) | 7967, (1U<<31) | 3895, (1U<<31) | 7967,
0x3f44, 0xbf3f44, 0xbf7f2f, (1U<<31) | 9336, 0xbf7f2f, (1U<<31) | 9336, 0x43f44, 0xbf43f44,
(1U<<31) | 7967, 0x3f44, 0xbf3f44, 0xbf7f2f, (1U<<31) | 9336, 0xbf7f2f, (1U<<31) | 9336, 0x43f44,
0xbf43f44, (1U<<31) | 7979, (1U<<31) | 7967, (1U<<31) | 8027, (1U<<31) | 8050, 0x7fbf7f3f, 0x7fbf7f3f, (1U<<31) | 7979,
(1U<<31) | 7979, 0x43f, 0x3f4, 0x7fbf7f3f, (1U<<31) | 7967, (1U<<31) | 7979, 0x7fbf7f3f, (1U<<31) | 7979,
(1U<<31) | 7967, (1U<<31) | 7967, (1U<<31) | 7967, (1U<<31) | 7957, (1U<<31) | 7946, 0x444, (1U<<31) | 3842, 0x444,
(1U<<31) | 3895, 0x444, (1U<<31) | 3895, (1U<<31) | 7979, 0x444, (1U<<31) | 3842, 0x444, (1U<<31) | 3895,
0x444, (1U<<31) | 3895, 0x7f3f444, (1U<<31) | 8630, 0x47f7f3f, (1U<<31) | 5429, (1U<<31) | 8611, 0x47f3f,
(1U<<31) | 8601, 0x7f7f443f, (1U<<31) | 8672, 0x7f3f, (1U<<31) | 7936, (1U<<31) | 8660, 0x7f7f43f, (1U<<31) | 8660,
0x41b, 0x41a, 0x41a, 0x41c, 0x4bf43f, (1U<<31) | 9295, (1U<<31) | 8040, 0x47a6b6b,
(1U<<31) | 217, 0x46b7a, (1U<<31) | 207, 0xbf43f, (1U<<31) | 9345, 0xbf43f, (1U<<31) | 9345, 0xbf43f,
(1U<<31) | 9345, 0xbf43f, (1U<<31) | 9345, (1U<<31) | 3645, (1U<<31) | 8581, (1U<<31) | 3660, (1U<<31) | 8544, 0x47f7f3f,
0x47f7f3f, (1U<<31) | 3645, (1U<<31) | 8581, (1U<<31) | 3660, (1U<<31) | 8544, (1U<<31) | 8799, (1U<<31) | 8839, 0x4bf3f,
(1U<<31) | 9277, (1U<<31) | 6407, (1U<<31) | 9306, (1U<<31) | 4417, (1U<<31) | 9467, (1U<<31) | 8640, (1U<<31) | 8640, (1U<<31) | 8640,
(1U<<31) | 8640, (1U<<31) | 8601, (1U<<31) | 8601, (1U<<31) | 7873, (1U<<31) | 8628, (1U<<31) | 7870, (1U<<31) | 8625, (1U<<31) | 8016,
(1U<<31) | 9285, 0x47f7f3f, 0x44ffbf3f, 0x4ffbf3f, (1U<<31) | 4148, (1U<<31) | 8556, 0x47f7f3f, (1U<<31) | 8601,
0x47f7f3f, (1U<<31) | 8601, 0x7f7f3f, 0x4ffbf3f, (1U<<31) | 8050, (1U<<31) | 4205, (1U<<31) | 9265, 0x47f7f3f,
(1U<<31) | 8601, 0x47f7f3f, (1U<<31) | 8601, 0x7f7f3f, 0x447f3f, (1U<<31) | 7946, 0x47f3f, (1U<<31) | 7957,
0xbf3f, (1U<<31) | 7957, 0x47f7f3f, 0x7fbf7f3f, 0x7fbf7f3f, 0x7f3f, 0x7fbf7f3f, 0x7fbf7f3f,
0x7fbf7f3f, 0x7fbf7f3f, (1U<<31) | 7870, (1U<<31) | 8625, 0x47f7f3f, 0x447f3f, (1U<<31) | 7946, (1U<<31) | 5429,
(1U<<31) | 8611, 0x44447f3f, (1U<<31) | 8533, (1U<<31) | 4205, (1U<<31) | 8002, (1U<<31) | 4510, (1U<<31) | 8570, 0x444bf3f,
(1U<<31) | 7990, (1U<<31) | 3829, (1U<<31) | 9250, 0x47f7f3f, (1U<<31) | 8601, 0x47f7f3f, (1U<<31) | 8601, 0x4ffbf4f0,
(1U<<31) | 6427, 0xbf43f0, (1U<<31) | 9317, 0xbf47f3f, (1U<<31) | 9326, (1U<<31) | 4973, (1U<<31) | 9479, 0x2c2c2c,
0x2c2c2c, 0x2c2c, 0x2c2c, (1U<<31) | 8916, (1U<<31) | 9601, (1U<<31) | 9601, (1U<<31) | 9601, (1U<<31) | 8916,
0x4a44a4a, 0x44, 0x4a44a4a, 0x4a44a4a, 0x4a4a4a4a, 0x4a4a4a, 0x4a4a4a4a, 0x4a4a4a4a,
0x4a4a4a, 0x4a4a4a4a, (1U<<31) | 8916, (1U<<31) | 8916, (1U<<31) | 8916, (1U<<31) | 8916, (1U<<31) | 8916, 0x7f7f3f,
0x7f7f3f, 0x7f3f, 0xffbf3f, 0xffbf3f, 0x7f7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f3f,
0xbf3f, 0xbf3f, (1U<<31) | 8253, 0x7a3f, 0x4af1f, 0x4af1f, 0x7a3a, 0x49f2f,
0x49f2f, 0x3a7a, 0xbf3f, 0xbf3f, 0xbf3f, 0xbf3f, 0xbf3f, 0xbf3f,
0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x4cf3f, (1U<<31) | 8799, (1U<<31) | 8817, (1U<<31) | 8839,
(1U<<31) | 6191, (1U<<31) | 6191, (1U<<31) | 4570, (1U<<31) | 6200, (1U<<31) | 6200, (1U<<31) | 4552, (1U<<31) | 6211, (1U<<31) | 6211,
(1U<<31) | 4530, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, (1U<<31) | 8084,
(1U<<31) | 8084, (1U<<31) | 8084, 0x7f7f3f, 0xbf7f3f, 0xbf7f3f, 0x7f7f3f, 0xbf3f, 0xbf3f,
0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f3f, 0x7f7f3f, (1U<<31) | 8084, (1U<<31) | 8067,
(1U<<31) | 8067, (1U<<31) | 8067, 0x7f3f, 0x7f7f3f, (1U<<31) | 8072, (1U<<31) | 8072, (1U<<31) | 8072, 0x7f7f3f,
0x7f7f3f, (1U<<31) | 8072, (1U<<31) | 8072, (1U<<31) | 8072, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, (1U<<31) | 8072,
0x7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x7f3f, 0x7f3f, 0x7f2f, 0x7f3f,
0x7f3f, 0x7f3f, (1U<<31) | 8072, 0x7f7f3f, 0x7f7f3f, 0x7f3f, 0x7f7f3f, (1U<<31) | 8072,
0x7f7f7f3f, 0x7f7f3f, 0x7f7f3f, 0x4bf4f0, 0xffbf4f0, (1U<<31) | 8934, (1U<<31) | 8955, 0x4ffbf4f0,
(1U<<31) | 4910, (1U<<31) | 6416, (1U<<31) | 4920, (1U<<31) | 6427, (1U<<31) | 4932, 0x2b2b2b, 0x2b2b2b2b, (1U<<31) | 784,
(1U<<31) | 782, 0x2b2b2b2b, (1U<<31) | 784, (1U<<31) | 782, (1U<<31) | 780, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x40, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x4444, 0x4444, 0x4444, 0x4444, 0x5445, 0x5445, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x4444, 0x5445, 0x5445, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x2e440, 0x2e440,
0x2e440, 0x2e440, 0x4f44, 0x2e444, 0x4f44, 0x2e444, 0x444, 0x44,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x40, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x4444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x44, 0x2f7, 0x2f7, 0x545, 0x52e5, 0x52e5, 0x52e5, 0x8f40f,
0x52e45, 0x54f4, 0x544, 0x555, 0x44, 0x55, 0x44, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x555, 0x555, 0x444,
0x545, 0x444, 0x444, 0x555, 0x44, 0x44, 0x444, 0x444,
0x444, 0x444, 0x445, 0x445, 0x444, 0x555, 0x444, 0x555,
0x444, 0x555, 0x444, 0x555, 0x44, 0x55, 0x44, 0x44,
0x55, 0x444, 0x444, 0x555, 0x54, 0x54, 0x44, 0x44,
0x44, 0x44, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x555,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x44, 0x44, 0x44, 0x45, 0x44,
0x444, 0x444, 0x55, 0x45, 0x44, 0x55, 0x55, 0x55,
0x55, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555,
0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555,
0x555, 0x555, 0x555, 0x555, 0x555, 0x554, 0x554, 0x554,
0x554, 0x554, 0x554, 0x554, 0x554, 0x55, 0x555, 0x555,
0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555,
0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555,
0x555, 0x5555, 0x555, 0x5555, 0x555, 0x555, 0x555, 0x555,
0x555, 0x555, 0x555, 0x555, 0x444, 0x555, 0x44, 0x44,
0x444, 0x555, 0x445, 0x445, 0x544, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x445, 0x445, 0x444, 0x444, 0x444, 0x444, 0x555,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x454, 0x554, 0x454, 0x554, 0x454, 0x454, 0x454, 0x454,
0x454, 0x454, 0x454, 0x454, 0x4555, 0x4555, 0x4555, 0x4555,
0x4555, 0x4555, 0x4555, 0x4555, 0x554, 0x554, 0x444, 0x455,
0x455, 0x455, 0x44, 0x444, 0x444, 0x44, 0x444, 0x444,
0x444, 0x444, 0x444, 0x554, 0x444, 0x444, 0x444, 0x444,
0x554, 0x444, 0x444, 0x554, 0x444, 0x444, 0x45, 0x4444,
0x4444, 0x4444, 0x4444, 0x44, 0x444, 0x444, 0x44, 0x44,
0x44, 0x444, 0x5545, 0x444, 0x4444, 0x4444, 0x4444, 0x4444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x4444, 0x4444, 0x4444, 0x4444, 0x58,
0x57, 0x85, 0x85, 0x87, 0x85, 0x85, 0x84, 0x84,
0x84, 0x84, 0x75, 0x75, 0x78, 0x75, 0x75, 0x74,
0x74, 0x74, 0x74, 0x58, 0x57, 0x48, 0x47, 0x48,
0x47, 0x888, 0x484, 0x884, 0x884, 0x884, 0x884, 0x48,
0x48, 0x888, 0x888, 0x888, 0x8888, 0x8888, 0x888, 0x888,
0x777, 0x474, 0x774, 0x774, 0x774, 0x774, 0x777, 0x777,
0x77, 0x7777, 0x7777, 0x47777, 0x7777, 0x7777, 0x47, 0x47,
0x777, 0x777, 0x777, 0x777, (1U<<31) | 2016, (1U<<31) | 960, (1U<<31) | 928, (1U<<31) | 2024,
(1U<<31) | 971, (1U<<31) | 938, (1U<<31) | 2016, (1U<<31) | 960, (1U<<31) | 928, (1U<<31) | 2016, (1U<<31) | 960, (1U<<31) | 928,
(1U<<31) | 2016, (1U<<31) | 960, (1U<<31) | 928, (1U<<31) | 2016, (1U<<31) | 960, (1U<<31) | 928, 0x4e4, 0x5e5,
0x4444, 0x4444, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455,
0x445, 0x445, 0x444, 0x444, 0x444, 0x444, 0x445, 0x445,
0x445, 0x445, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455,
0x444, 0x445, 0x4455, 0x4455, 0x445, 0x444, 0x444, 0x444,
0x444, 0x4444, 0x4444, 0x4444, 0x5555, 0x5555, 0x5555, 0x5555,
0x5555, 0x5555, 0x5555, 0x5555, 0x5555, 0x5555, 0x5555, 0x5555,
0x5555, 0x5555, 0x5555, 0x5555, 0x555, 0x555, 0x555, 0x555,
0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x555,
0x555, 0x555, 0x555, 0x555, 0x4444, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455,
0x445, 0x445, 0x445, 0x445, 0x445, 0x445, 0x445, 0x445,
0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455, 0x4455,
0x445, 0x445, 0x445, 0x445, 0x445, 0x445, 0x445, 0x445,
0x444, 0x444, 0x444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x444, 0x444, 0x444, 0x444, 0x444,
0x444, 0x444, 0x444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x444, 0x4455, 0x4455, 0x4455, 0x4455,
0x4455, 0x4455, 0x4455, 0x4455, 0x445, 0x445, 0x445, 0x445,
0x445, 0x445, 0x445, 0x445, 0x4455, 0x4455, 0x4455, 0x4455,
0x4455, 0x4455, 0x4455, 0x4455, 0x444, 0x4444, 0x4444, 0x4444,
0x555, 0x555, 0x5555, 0x5555, 0x555, 0x555, 0x555, 0x555,
0x5555, 0x5555, 0x554, 0x554, 0x555, 0x555, 0x4455, 0x5555,
0x5555, 0x5555, 0x4455, 0x4455, 0x4455, 0x4455, 0x555, 0x555,
0x445, 0x444, 0x445, 0x444, 0x445, 0x445, 0x554, 0x554,
0x5555, 0x5555, 0x5555, 0x5555, 0x555, 0x555, 0x555, 0x555,
0x4555, 0x455, 0x454, 0x5555, 0x555, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x454, 0x454, 0x454, 0x454, 0x4444, 0x4444,
0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444,
0x4444, 0x445, 0x4455, 0x445, 0x4455, 0x5555, 0x5555, 0x555,
0x555, 0x5555, 0x5555, 0x555, 0x555, 0x4444, 0x4444, 0x4444,
0x5555, 0x5555, 0x555, 0x4455, 0x4455, 0x445, 0x445, 0x5555,
0x5555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x5555, 0x555,
0x5555, 0x555, 0x5555, 0x555, 0x5555, 0x555, 0x5555, 0x554,
0x554, 0x554, 0x554, 0x554, 0x554, 0x554, 0x554, 0x4444,
0x455, 0x4555, 0x4555, 0x4555, 0x4555, 0x4555, 0x444, 0x4444,
0x4444, 0x4444, 0x4444, 0x444, 0x4444, 0x455, 0x455, 0x455,
0x4555, 0x4555, 0x4555, 0x4555, 0x4555, 0x444, 0x4444, 0x4444,
0x4444, 0x4444, 0x444, 0x455, 0x455, 0x455, 0x4555, 0x4555,
0x4555, 0x4555, 0x455, 0x455, 0x444, 0x4444, 0x4444, 0x4444,
0x4444, 0x444, 0x444, 0x454, 0x455, 0x455, 0x455, 0x4555,
0x4555, 0x4555, 0x4555, 0x4555, 0x444, 0x4444, 0x4444, 0x4444,
0x4444, 0x444, 0x454, 0x455, 0x455, 0x44, 0x55, 0x44,
0x54, 0x44, 0x54, 0x44, 0x44, 0x54, 0x444, 0x444,
0x44, 0x54, 0x44, 0x54, 0x55, 0x4444, 0x544, 0x4455,
0x555, 0x44444, 0x5444, 0x44555, 0x5555, 0x55, 0x555, 0x455,
0x4555, 0x4555, 0x4555, 0x4555, 0x4555, 0x444, 0x4444, 0x4444,
0x4444, 0x4444, 0x455, 0x455, 0x455, 0x4555, 0x4555, 0x4555,
0x4555, 0x4555, 0x444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444,
0x455, 0x455, 0x455, 0x4555, 0x4555, 0x4555, 0x4555, 0x4555,
0x444, 0x4444, 0x4444, 0x4444, 0x4444, 0x455, 0x455, 0x444,
0x445, 0x554, 0x444, 0x444, 0x555, 0x555, 0x555, 0x555,
0x442e2e, (1U<<31) | 982, 0x2e442e2e, 0x452e2e, (1U<<31) | 1005, 0x2e542e2e, 0x442e2e, (1U<<31) | 982,
0x2e442e2e, 0x442e2e, (1U<<31) | 982, 0x2e442e2e, 0x442e2e, (1U<<31) | 982, 0x2e442e2e, 0x44e4,
0x44, 0x44, 0x44444, 0x44444, 0x44444, 0x44444, 0x444, 0x444,
0x444, 0x444, 0x4555, 0x4555, 0x455, 0x455, 0x4555, 0x54,
0x54, 0x54, 0x55, 0x54, 0x55, 0x54, 0x55, 0x54,
0x55, 0x44, 0x45, 0x4555, 0x4555, 0x45, 0x45, 0x54,
0x555, 0x54, 0x555, 0x45, 0x45, 0x4444, 0x4444, 0x4444,
0x4444, 0x4444, 0x444, 0x454, 0x54, 0x4444, 0x544, 0x4455,
0x555, 0x444, 0x444, 0x444, 0x4444, 0x4444, 0x4444, 0x4444,
0x4444, 0x444, 0x55e4, 0x4444, 0x4444, 0x4444, 0x4455, 0x44555,
0x555, 0x555, 0x555, 0x555, 0x555, 0x555, 0x454, 0x454,
0x54, 0x455, 0x455, 0x4555, 0x4555, 0x4555, 0x4555, 0x4555,
0x444, 0x4444, 0x4444, 0x4444, 0x4444, 0x4444, 0x45, 0x555,
0x555, 0x44c4, 0x44d4, 0x4d4c, (1U<<31) | 6463, 0x4d4c, (1U<<31) | 6463, 0x44c,
0x44d, 0x44c, 0x44d, 0x44c, 0x44d, (1U<<31) | 285, (1U<<31) | 351, (1U<<31) | 285,
(1U<<31) | 351, (1U<<31) | 287, (1U<<31) | 353, (1U<<31) | 285, (1U<<31) | 351, (1U<<31) | 285, (1U<<31) | 351, (1U<<31) | 1518,
(1U<<31) | 1553, (1U<<31) | 1518, (1U<<31) | 1553, 0xbf3f, 0xbf3f, (1U<<31) | 285, (1U<<31) | 351, (1U<<31) | 285,
(1U<<31) | 351, (1U<<31) | 285, (1U<<31) | 351, (1U<<31) | 6116, (1U<<31) | 6231, (1U<<31) | 6116, (1U<<31) | 6231, (1U<<31) | 6116,
(1U<<31) | 6231, (1U<<31) | 6116, (1U<<31) | 6231, 0x4c4c, 0x4d4d, 0x4c4c, 0x4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c,
0x4d4d, 0x4c4c, 0x4d4d, 0x4c4c, 0x4d4d, 0x4c4c, 0x4d4d, 0x4c4c4c,
0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 6153, (1U<<31) | 6268, (1U<<31) | 6153, (1U<<31) | 6268, 0x4c4c4c,
0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 298, (1U<<31) | 358, (1U<<31) | 310, (1U<<31) | 370, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 6153,
(1U<<31) | 6268, (1U<<31) | 6153, (1U<<31) | 6268, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, 0x4c4c4d,
(1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, 0x4c4c4c,
0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d,
(1U<<31) | 6468, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d,
(1U<<31) | 6468, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 6153, (1U<<31) | 6268, (1U<<31) | 6153,
(1U<<31) | 6268, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c,
0x44d4d4d, 0x4c4c4c, 0x4d4d4d, (1U<<31) | 1516, (1U<<31) | 1551, (1U<<31) | 1514, (1U<<31) | 1549, (1U<<31) | 1516,
(1U<<31) | 1551, (1U<<31) | 1514, (1U<<31) | 1549, (1U<<31) | 6109, (1U<<31) | 6224, (1U<<31) | 6109, (1U<<31) | 6224, (1U<<31) | 4751,
(1U<<31) | 4800, (1U<<31) | 4749, (1U<<31) | 4798, 0x44c4c, 0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x4c4c4c,
0x4d4d4d, 0x44c4c, 0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4d4d,
(1U<<31) | 6296, 0x44c4c, 0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c,
0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x4c4c4c, 0x4d4d4d, 0x44c4c4c,
0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c,
0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c,
0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c, 0x44d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c,
0x4d4d, 0x4d4d, (1U<<31) | 6470, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c, 0x4d4d, 0x4c4c, 0x4d4d, 0x4c4c4d,
(1U<<31) | 6298, 0x4c, 0x4d, 0x4d, (1U<<31) | 6452, 0x4c4c, 0x4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c, 0x4d4d, 0x44c4c4d, (1U<<31) | 4818, 0x4c4c4c, 0x4d4d4d, 0x44c4c,
0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x44d4d, (1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x44c4c,
0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x44d4d, (1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x44d4c,
(1U<<31) | 4948, 0x44d4c4c, (1U<<31) | 4946, 0x44c4c, 0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x44d4c,
(1U<<31) | 4948, 0x44d4c4c, (1U<<31) | 4946, 0x44c4c, 0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x44d4d, (1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, (1U<<31) | 6146,
(1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6146,
(1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6146,
(1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, 0x4c442e0,
0x4d442e0, (1U<<31) | 6124, (1U<<31) | 6249, 0x4d442e0, (1U<<31) | 6455, (1U<<31) | 6239, (1U<<31) | 6445, 0x4c442e0,
0x4d442e0, (1U<<31) | 6124, (1U<<31) | 6249, (1U<<31) | 6146, (1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144,
(1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6146, (1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144,
(1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6146, (1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144,
(1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6146, (1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144,
(1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6146, (1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144,
(1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6146, (1U<<31) | 6261, (1U<<31) | 6144, (1U<<31) | 6259, (1U<<31) | 6144,
(1U<<31) | 6259, (1U<<31) | 6144, (1U<<31) | 6259, 0x44c4c, 0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c,
0x44d4d4d, 0x44c4c, 0x44d4d, 0x44c4c, 0x44d4d, 0x4c4c4c, 0x4d4d4d, 0x44c4c,
0x44d4d, 0x4c4c4c, 0x4d4d4d, 0x54c4c, 0x54d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c4c,
0x44d4d4d, (1U<<31) | 4778, (1U<<31) | 4806, (1U<<31) | 4778, (1U<<31) | 4806, 0x44c4c4c, 0x44d4d4d, 0x44c4c4d,
(1U<<31) | 4818, 0x44c4c4d, (1U<<31) | 4818, (1U<<31) | 4788, (1U<<31) | 4816, (1U<<31) | 4788, (1U<<31) | 4816, 0x44c4c4d,
(1U<<31) | 4818, (1U<<31) | 6116, (1U<<31) | 6231, (1U<<31) | 6116, (1U<<31) | 6231, (1U<<31) | 6116, (1U<<31) | 6231, (1U<<31) | 6116,
(1U<<31) | 6231, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x44d4d, (1U<<31) | 4956, 0x44d4d4d,
(1U<<31) | 4954, 0x4d4d4d, (1U<<31) | 6468, 0x44d4d, (1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x4d4d4d,
(1U<<31) | 6468, 0x44d4d, (1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x54c4c4c, 0x54d4d4d, 0x44d4d,
(1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x54c4c4c, 0x54d4d4d, 0x54c4c4c, 0x54d4d4d, 0x44c4d,
(1U<<31) | 4828, 0x44c4d4d, (1U<<31) | 4826, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, 0x4c4c4d,
(1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, 0x4c4c4c, 0x4d4d4d, 0x4c4c4d, (1U<<31) | 6298, 0x44c4d,
(1U<<31) | 4828, 0x44c4d4d, (1U<<31) | 4826, 0x44c4d4d, (1U<<31) | 4826, 0x44c4c, 0x44d4d, 0x44c4c,
0x44d4d, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d4d,
(1U<<31) | 6296, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x44c4c,
0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x4c4c4c, 0x4d4d4d, 0x44c4c, 0x44d4d, 0x44c4c4c,
0x44d4d4d, 0x44c4c, 0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x44c4c, 0x44d4d, 0x44c4c4c,
0x44d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4d4d, (1U<<31) | 6296, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c4c,
0x4d4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x44c4d, (1U<<31) | 4828, 0x44c4d4d, (1U<<31) | 4826, 0x4c4c4d,
(1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, 0x44c4d, (1U<<31) | 4828, 0x44c4d4d, (1U<<31) | 4826, 0x44c4c,
0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d4d, (1U<<31) | 6296, (1U<<31) | 6153,
(1U<<31) | 6268, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c, 0x4d4d, 0x4c4c, 0x4d4d, 0x4c4c, 0x4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c, 0x4d4d, (1U<<31) | 305, (1U<<31) | 365, (1U<<31) | 305, (1U<<31) | 365, (1U<<31) | 305,
(1U<<31) | 365, 0x4c4c4c, 0x4d4d4d, 0x54c4d, (1U<<31) | 6550, 0x54c4d4d, (1U<<31) | 6548, 0x44c4c,
0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x444d4d, (1U<<31) | 4400, 0x444d4d4d, (1U<<31) | 4398, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x44c4c,
0x44d4d, 0x44c4c4c, 0x44d4d4d, 0x54c4d, (1U<<31) | 6550, 0x54c4d4d, (1U<<31) | 6548, 0x444d4d,
(1U<<31) | 4400, 0x444d4d4d, (1U<<31) | 4398, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c4c, 0x4d4d4d4d, 0x44c4c,
0x44d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x444d4d,
(1U<<31) | 4400, 0x444d4d4d, (1U<<31) | 4398, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4d, (1U<<31) | 6308, 0x4c4c440, 0x4d4d440, 0x4c4c440,
0x4d4d440, (1U<<31) | 6171, (1U<<31) | 6286, 0x4c4d440, (1U<<31) | 6305, 0x4c4d440, (1U<<31) | 6305, (1U<<31) | 6181,
(1U<<31) | 6313, 0x4c4c440, 0x4d4d440, 0x4c4c440, 0x4d4d440, (1U<<31) | 6171, (1U<<31) | 6286, 0x4c4d,
(1U<<31) | 6308, 0x4c4c4c, 0x4d4d4d, 0x4c4c, 0x4d4d, 0x4c4c4c, 0x4d4d4d, 0x4c4c,
0x4d4d, 0x4c4c4c, 0x4d4d4d, 0x44c4c4d, (1U<<31) | 4818, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d,
(1U<<31) | 6298, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 6153,
(1U<<31) | 6268, (1U<<31) | 6153, (1U<<31) | 6268, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 298,
(1U<<31) | 358, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 6153, (1U<<31) | 6268, (1U<<31) | 6153,
(1U<<31) | 6268, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4d,
(1U<<31) | 6298, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, 0x4c4c4c, 0x4d4d4d, 0x4c4c4c,
0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, 0x4c4c4d, (1U<<31) | 6298, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d,
(1U<<31) | 6468, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 6153, (1U<<31) | 6268, (1U<<31) | 6153,
(1U<<31) | 6268, 0x4c4c4c, 0x4d4d4d, 0x4d4d4d, (1U<<31) | 6468, (1U<<31) | 6162, (1U<<31) | 6277, 0x44d4d,
(1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x44d4d, (1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x44d4d,
(1U<<31) | 4956, 0x44d4d4d, (1U<<31) | 4954, 0x4c4d, (1U<<31) | 6308, 0x4c4d, (1U<<31) | 6308, 0x4c4d4d,
(1U<<31) | 6323, 0x4c4d4d, (1U<<31) | 6323, 0x4c4d, (1U<<31) | 6308, 0x4c4d, (1U<<31) | 6308, 0x4c4c4c,
0x4d4d4d, 0x4c4d, (1U<<31) | 6308, 0x4c4d, (1U<<31) | 6308, 0x2e0, 0x2e0, 0x2e0,
0x2e0, 0x2e0, 0x42e0, 0x52e0, 0x442e2e2e, 0x442e2e2e, 0x442e2e2e, 0x442e2e2e,
0x442e2e2e, 0x442e2e2e, 0x4442e2e, 0x4452e2e, 0x4442e2e, 0x4442e2e, 0x4442e2e, 0x2e0,
0x42e2e0, 0x442e0, 0x3939, 0x2a2a, 0x44, 0x2c2c2c, 0x595959, 0x3b3b3b,
0x4a4a4a, 0x393939, 0x393939, 0x444, 0x393939, 0x393939, 0x444, 0x444,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x444, 0x393939, 0x2a2a2a, 0x393939,
0x2a2a2a, 0x2a2a2a, 0x2a2a2a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c,
0x45959, 0x43b3b, 0x44a4a, 0x444, 0x2c2c2c, 0x42c2c, 0x4444, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x4444,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a,
0x2c2c2c2c, 0x59595959, 0x3b3b3b3b, 0x4a4a4a4a, 0x42c2c2c, 0x4595959, 0x43b3b3b, 0x44a4a4a,
0x2c2c2c2c, 0x59595959, 0x3b3b3b3b, 0x4a4a4a4a, 0x42c2c2c, 0x4595959, 0x43b3b3b, 0x44a4a4a,
0x44, 0x2c2c2c2c, 0x42c2c2c, 0x2c2c2c2c, 0x42c2c2c, 0x2c2c2c, 0x595959, 0x3b3b3b,
0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x2c4, 0x594, 0x3b4,
0x2c4, 0x4a4, 0x4, 0x2c2c2c2c, 0x42c2c2c, 0x2c2c2c, 0x595959, 0x3b3b3b,
0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x2c4, 0x594, 0x3b4,
0x2c4, 0x4a4, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959,
0x43b3b, 0x44a4a, 0x44, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x42c2c,
0x45959, 0x43b3b, 0x44a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x42c2c,
0x45959, 0x43b3b, 0x44a4a, 0x39390, 0x39390, 0x39390, 0x2a2a4, 0x2a2a4,
0x2a2a4, 0x2a2a4, 0x2a2a4, 0x2a2a4, 0x2a2a0, 0x2a2a0, 0x2a2a0, 0x42c4,
0x4595, 0x43b4, 0x44a4, 0x42c4, 0x4595, 0x43b4, 0x44a4, 0x440,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x4555, 0x4a4a59, 0x2c2c3b, 0x3b3b4a, 0x4a4a59, 0x2c2c3b, 0x3b3b4a, 0x393955,
0x4a4a5959, 0x2c2c3b3b, 0x3b3b4a4a, 0x4a4a5959, 0x2c2c3b3b, 0x3b3b4a4a, 0x393955, 0x4455,
0x393955, 0x393955, 0x2a2a55, 0x2a2a55, 0x393955, 0x393955, 0x393955, 0x4455,
0x393955, 0x393955, 0x2a2a55, 0x2a2a55, 0x4a4a5959, 0x2c2c3b3b, 0x3b3b4a4a, 0x4a4a5959,
0x2c2c3b3b, 0x3b3b4a4a, 0x393955, 0x454, 0x454, 0x454, 0x454, 0x454,
0x454, 0x898989, 0x7a7a7a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x8959,
0x7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959,
0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959,
0x7a7a4a, 0x898959, 0x7a7a4a, 0x898989, 0x7a7a7a, 0x7a7a6b, 0x89897a, 0x598989,
0x4a7a7a, 0x7a89, 0x6b7a, 0x7a89, 0x6b7a, 0x5989, 0x4a7a, 0x5989,
0x4a7a, 0x4a89, 0x3b7a, 0x4a89, 0x3b7a, 0x42c, 0x559, 0x43b,
0x44a, 0x8989, 0x7a7a, (1U<<31) | 8274, 0x7a7a7a7a, 0x898989, 0x7a7a7a, 0x898989,
0x7a7a7a, 0x898989, 0x7a7a7a, 0x898989, 0x7a7a7a, (1U<<31) | 8274, 0x7a7a7a7a, 0x898989,
0x7a7a7a, 0x8989, 0x7a7a, 0x8989, 0x7a7a, 0x8989, 0x7a7a, 0x898959,
0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959,
0x7a7a4a, 0x898959, 0x7a7a4a, 0x8989, 0x7a7a, 0x898989, 0x7a7a7a, 0x898959,
0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959, 0x7a7a4a, 0x898959,
0x7a7a4a, 0x8959, 0x7a4a, 0x8959, 0x7a4a, 0x7a7a3b, 0x89894a, 0x8959,
0x7a4a, 0x8959, 0x7a4a, 0x4a4a59, 0x2c2c3b, 0x3b3b4a, 0x4a4a59, 0x2c2c3b,
0x3b3b4a, 0x4a4a59, 0x2c2c3b, 0x3b3b4a, 0x4a4a59, 0x2c2c3b, 0x3b3b4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x442c2c,
0x545959, 0x443b3b, 0x444a4a, 0x444, 0x2c42c2c, 0x5945959, 0x3b43b3b, 0x4a44a4a,
0x42e4, 0x42e2c, 0x42e59, 0x42e3b, 0x42e4a, 0x42c, 0x459, 0x43b,
0x44a, 0x42e59, 0x42e4a, 0x42e4, 0x4444, 0x42e4, 0x4455, 0x3b3b3b3b,
0x4a4a4a4a, 0x3b3b3b3b, 0x4a4a4a4a, 0x4455, 0x2c2c2c2c, 0x59595959, 0x3b3b3b3b, 0x4a4a4a4a,
0x393955, 0x393955, 0x393955, 0x393955, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a,
0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x444, 0x2c2c, 0x4455, 0x3b3b3b3b,
0x4a4a4a4a, 0x3b3b3b3b, 0x4a4a4a4a, 0x4455, 0x2c2c2c2c, 0x59595959, 0x3b3b3b3b, 0x4a4a4a4a,
0x455, 0x393939, 0x3b3b3b, 0x4a4a4a, 0x393939, 0x39394, 0x39394, 0x392a39,
0x392a39, 0x393939, 0x444, 0x393939, 0x444, 0x3b3b3b, 0x4a4a4a, 0x393955,
0x393955, 0x445, 0x445, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c,
0x5959, 0x3b3b, 0x4a4a, 0x2c2c, 0x5959, 0x3b3b, 0x4a4a, 0x2c2c2c,
0x42c2c, 0x2c2c2c, 0x42c2c, 0x393939, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c, 0x5959, 0x3b3b, 0x4a4a,
0x393939, 0x2a2a2a, 0x394, 0x394, 0x2a39, 0x2a39, 0x2a39, 0x2a39,
0x2a39, 0x2a39, 0x2a39, 0x2a39, 0x39392a, 0x44439, 0x44439, 0x4439,
0x39392a, 0x4439, 0x39392a, 0x4444, 0x2a4, 0x44, 0x439, 0x42a,
0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a,
0x42c2c, 0x43b3b, 0x44a4a, 0x455, 0x43939, 0x42a2a, 0x43939, 0x444,
0x43939, 0x42a2a, 0x43939, 0x42a2a, 0x444, 0x43939, 0x42a2a, 0x42c2c2c,
0x4595959, 0x43b3b3b, 0x44a4a4a, 0x42c2c2c, 0x4595959, 0x43b3b3b, 0x44a4a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x42c2c,
0x45959, 0x43b3b, 0x44a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959, 0x43b3b, 0x44a4a, 0x42e2c0,
0x42e590, 0x42e3b0, 0x42e4a0, 0x42e590, 0x42e4a0, 0x393939, 0x393939, 0x444,
0x393939, 0x393939, 0x444, 0x444, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x393939, 0x2a2a2a, 0x393939, 0x2a2a2a,
0x2a2a2a, 0x2a2a2a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x42c2c, 0x45959,
0x43b3b, 0x44a4a, 0x2c2c2c2c, 0x59595959, 0x3b3b3b3b, 0x4a4a4a4a, 0x440, 0x2c2c2c,
0x42c2c, 0x888, 0x777, 0x777, 0x888, 0x777, 0x777, 0x888,
0x777, 0x777, 0x888, 0x777, 0x777, 0x7fcf2f, 0x7fcf2f, 0x7fcf1f,
0x7fcf1f, 0x7fcf1f, 0x7fcf1f, 0x7f7fcf1f, 0x7f7fcf1f, 0x7fcf1f, 0x7fcf1f, 0x7fcf1f,
0x7fcf1f, 0x7fcf1f, 0x7fcf1f, 0x44f4, 0x44f4, 0x7fcf1f, 0x7fcf1f, 0x7fcf1f,
0x7fcf1f, 0x7fcf1f, 0x7fcf1f, 0x7fcf1f, 0x7fcf1f, 0x40, 0x40, 0x440,
0x40, 0x40, 0x440, 0x0, 0x44, 0x44, 0x44, 0x85,
0x74, 0x47, 0x58, 0x88, 0x77, 0x77, 0x4f0, 0x4f0,
0x77, 0x77, 0x87, 0x87, 0x87, 0x87, 0x87, 0x87,
0x87, 0x87, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84,
0x85, 0x85, 0x85, 0x85, 0x84, 0x84, 0x84, 0x84,
0x85, 0x85, 0x85, 0x85, 0x777, 0x777, 0x888, 0x777,
0x777, 0x888, 0x777, 0x777, 0x888, 0x777, 0x777, 0x888,
0x777, 0x777, 0x88, 0x77, 0x77, 0x73, 0x73, 0x74,
0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75,
0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x74,
0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x74, 0x75,
0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x75, 0x88,
0x77, 0x77, 0x88, 0x77, 0x77, 0x8888, 0x7777, 0x7777,
0x8888, 0x7777, 0x7777, 0x8888, 0x7777, 0x7777, 0x8888, 0x7777,
0x7777, 0x888, 0x777, 0x777, 0x888, 0x777, 0x777, 0x4444,
0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47,
0x2e1, 0x2e1, 0x2e1, 0x2e1, 0x51, 0x51, 0x51, 0x4cf2f,
0x4cf1f, 0x4cf4f, 0x4cf2f, 0x4cf1f, 0x4cf4f, 0x88, 0x77, 0x77,
0x58, 0x58, 0x58, 0x58, 0x57, 0x57, 0x57, 0x57,
0x448, (1U<<31) | 3557, (1U<<31) | 6535, 0x444, 0x545, 0x0, 0x0, 0x0,
(1U<<31) | 6917, (1U<<31) | 6943, (1U<<31) | 7581, (1U<<31) | 6917, (1U<<31) | 6943, (1U<<31) | 7581, (1U<<31) | 6917, (1U<<31) | 6943,
(1U<<31) | 7581, (1U<<31) | 6917, (1U<<31) | 6943, (1U<<31) | 7581, 0x88, 0x77, 0x33, 0x44,
0x55, 0xcf4f, 0x888, 0x777, 0x777, 0x888, 0x777, 0x777,
0x888, 0x777, 0x777, 0x888, 0x777, 0x777, 0x444, 0x444,
0x444, 0x555, 0x444, 0x555, 0x4444, 0xcf4f, 0xcf4f, 0xcf4f,
0xcf4f, 0xcf4f, 0xcf4f, 0xcf4f, 0xcf4f, 0xcf4f, 0x88, 0x88,
0x77, 0x77, 0x88, 0x77, 0x77, 0x88, 0x77, 0x77,
0x88, 0x77, 0x77, 0x4, 0x5, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4f4, 0x444, 0x455,
0x455, 0x88, 0x77, 0x77, 0x88, 0x77, 0x77, 0x4444,
0x4444, 0x88, 0x77, 0x77, 0x4477, (1U<<31) | 4495, 0x4444, (1U<<31) | 3626,
0x4477, (1U<<31) | 4495, 0x4444, (1U<<31) | 3626, 0x4477, (1U<<31) | 4495, 0x4444, (1U<<31) | 3626,
0x44747, (1U<<31) | 4502, 0x44444, (1U<<31) | 3652, 0x44747, (1U<<31) | 4502, 0x44444, (1U<<31) | 3652,
0x44747, (1U<<31) | 4502, 0x44444, (1U<<31) | 3652, 0x44747, (1U<<31) | 4502, 0x44444, (1U<<31) | 3652,
0x4477, (1U<<31) | 4495, 0x4444, (1U<<31) | 3626, 0x77, 0x77, 0x77, 0x77,
0x77, 0x88, 0x77, 0x77, 0x88, 0x77, 0x77, 0x88,
0x77, 0x77, 0x88, 0x77, 0x77, 0x4453, 0x4453, 0x4453,
0x4454, 0x4454, 0x4454, 0x4455, 0x4455, 0x4455, 0x4453, 0x4453,
0x4453, (1U<<31) | 4436, (1U<<31) | 4436, (1U<<31) | 4436, (1U<<31) | 4452, (1U<<31) | 4452, (1U<<31) | 4452, (1U<<31) | 4469,
(1U<<31) | 4469, (1U<<31) | 4469, (1U<<31) | 4436, (1U<<31) | 4436, (1U<<31) | 4436, (1U<<31) | 4427, (1U<<31) | 4427, (1U<<31) | 4427,
(1U<<31) | 4443, (1U<<31) | 4443, (1U<<31) | 4443, (1U<<31) | 4427, (1U<<31) | 4427, (1U<<31) | 4427, 0x453, 0x453,
0x453, 0x454, 0x454, 0x454, 0x455, 0x455, 0x455, 0x453,
0x453, 0x453, (1U<<31) | 4995, (1U<<31) | 4995, (1U<<31) | 4995, (1U<<31) | 5018, (1U<<31) | 5018, (1U<<31) | 5018,
(1U<<31) | 5033, (1U<<31) | 5033, (1U<<31) | 5033, (1U<<31) | 4995, (1U<<31) | 4995, (1U<<31) | 4995, (1U<<31) | 4987, (1U<<31) | 4987,
(1U<<31) | 4987, (1U<<31) | 5010, (1U<<31) | 5010, (1U<<31) | 5010, (1U<<31) | 4987, (1U<<31) | 4987, (1U<<31) | 4987, 0x44453,
0x44453, 0x44453, 0x44454, 0x44454, 0x44454, 0x44455, 0x44455, 0x44455,
0x44453, 0x44453, 0x44453, (1U<<31) | 3980, (1U<<31) | 3980, (1U<<31) | 3980, (1U<<31) | 3998, (1U<<31) | 3998,
(1U<<31) | 3998, (1U<<31) | 4017, (1U<<31) | 4017, (1U<<31) | 4017, (1U<<31) | 3980, (1U<<31) | 3980, (1U<<31) | 3980, (1U<<31) | 3970,
(1U<<31) | 3970, (1U<<31) | 3970, (1U<<31) | 3988, (1U<<31) | 3988, (1U<<31) | 3988, (1U<<31) | 3970, (1U<<31) | 3970, (1U<<31) | 3970,
0x4453, 0x4453, 0x4453, 0x4454, 0x4454, 0x4454, 0x4455, 0x4455,
0x4455, 0x4453, 0x4453, 0x4453, (1U<<31) | 4436, (1U<<31) | 4436, (1U<<31) | 4436, (1U<<31) | 4452,
(1U<<31) | 4452, (1U<<31) | 4452, (1U<<31) | 4469, (1U<<31) | 4469, (1U<<31) | 4469, (1U<<31) | 4436, (1U<<31) | 4436, (1U<<31) | 4436,
(1U<<31) | 4427, (1U<<31) | 4427, (1U<<31) | 4427, (1U<<31) | 4443, (1U<<31) | 4443, (1U<<31) | 4443, (1U<<31) | 4427, (1U<<31) | 4427,
(1U<<31) | 4427, 0x44453, 0x44453, 0x44453, 0x44454, 0x44454, 0x44454, 0x44455,
0x44455, 0x44455, 0x44453, 0x44453, 0x44453, (1U<<31) | 3980, (1U<<31) | 3980, (1U<<31) | 3980,
(1U<<31) | 3998, (1U<<31) | 3998, (1U<<31) | 3998, (1U<<31) | 4017, (1U<<31) | 4017, (1U<<31) | 4017, (1U<<31) | 3980, (1U<<31) | 3980,
(1U<<31) | 3980, (1U<<31) | 3970, (1U<<31) | 3970, (1U<<31) | 3970, (1U<<31) | 3988, (1U<<31) | 3988, (1U<<31) | 3988, (1U<<31) | 3970,
(1U<<31) | 3970, (1U<<31) | 3970, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54,
0x34450, 0x34450, 0x34450, 0x44450, 0x44450, 0x44450, 0x54450, 0x54450,
0x54450, 0x34450, 0x34450, 0x34450, 0x334450, 0x334450, 0x334450, 0x444450,
0x444450, 0x444450, 0x554450, 0x554450, 0x554450, 0x334450, 0x334450, 0x334450,
0x33334450, 0x33334450, 0x33334450, 0x44444450, 0x44444450, 0x44444450, 0x33334450, 0x33334450,
0x33334450, 0x3450, 0x3450, 0x3450, 0x4450, 0x4450, 0x4450, 0x5450,
0x5450, 0x5450, 0x3450, 0x3450, 0x3450, 0x33450, 0x33450, 0x33450,
0x44450, 0x44450, 0x44450, 0x55450, 0x55450, 0x55450, 0x33450, 0x33450,
0x33450, 0x3333450, 0x3333450, 0x3333450, 0x4444450, 0x4444450, 0x4444450, 0x3333450,
0x3333450, 0x3333450, 0x344450, 0x344450, 0x344450, 0x444450, 0x444450, 0x444450,
0x544450, 0x544450, 0x544450, 0x344450, 0x344450, 0x344450, 0x3344450, 0x3344450,
0x3344450, 0x4444450, 0x4444450, 0x4444450, 0x5544450, 0x5544450, 0x5544450, 0x3344450,
0x3344450, 0x3344450, (1U<<31) | 1082, (1U<<31) | 1082, (1U<<31) | 1082, (1U<<31) | 3799, (1U<<31) | 3799, (1U<<31) | 3799,
(1U<<31) | 1082, (1U<<31) | 1082, (1U<<31) | 1082, 0x34450, 0x34450, 0x34450, 0x44450, 0x44450,
0x44450, 0x54450, 0x54450, 0x54450, 0x34450, 0x34450, 0x34450, 0x334450,
0x334450, 0x334450, 0x444450, 0x444450, 0x444450, 0x554450, 0x554450, 0x554450,
0x334450, 0x334450, 0x334450, 0x33334450, 0x33334450, 0x33334450, 0x44444450, 0x44444450,
0x44444450, 0x33334450, 0x33334450, 0x33334450, 0x344450, 0x344450, 0x344450, 0x444450,
0x444450, 0x444450, 0x544450, 0x544450, 0x544450, 0x344450, 0x344450, 0x344450,
0x3344450, 0x3344450, 0x3344450, 0x4444450, 0x4444450, 0x4444450, 0x5544450, 0x5544450,
0x5544450, 0x3344450, 0x3344450, 0x3344450, (1U<<31) | 1082, (1U<<31) | 1082, (1U<<31) | 1082, (1U<<31) | 3799,
(1U<<31) | 3799, (1U<<31) | 3799, (1U<<31) | 1082, (1U<<31) | 1082, (1U<<31) | 1082, 0x34450, 0x44450, 0x34450,
0x334450, 0x444450, 0x334450, 0x33334450, 0x44444450, 0x33334450, 0x3450, 0x4450,
0x3450, 0x33450, 0x44450, 0x33450, 0x3333450, 0x4444450, 0x3333450, 0x344450,
0x444450, 0x344450, 0x3344450, 0x4444450, 0x3344450, (1U<<31) | 1082, (1U<<31) | 3799, (1U<<31) | 1082,
0x34450, 0x44450, 0x34450, 0x334450, 0x444450, 0x334450, 0x33334450, 0x44444450,
0x33334450, 0x344450, 0x444450, 0x344450, 0x3344450, 0x4444450, 0x3344450, (1U<<31) | 1082,
(1U<<31) | 3799, (1U<<31) | 1082, 0x55, (1U<<31) | 7196, (1U<<31) | 7184, (1U<<31) | 7184, (1U<<31) | 7114, (1U<<31) | 7103,
(1U<<31) | 7103, (1U<<31) | 7040, (1U<<31) | 4476, (1U<<31) | 7030, (1U<<31) | 4459, (1U<<31) | 7030, (1U<<31) | 4459, (1U<<31) | 7240,
(1U<<31) | 7229, (1U<<31) | 7229, (1U<<31) | 7154, (1U<<31) | 7144, (1U<<31) | 7144, (1U<<31) | 7076, (1U<<31) | 5039, (1U<<31) | 7067,
(1U<<31) | 5024, (1U<<31) | 7067, (1U<<31) | 5024, (1U<<31) | 7386, (1U<<31) | 7371, (1U<<31) | 7371, (1U<<31) | 7196, (1U<<31) | 7184,
(1U<<31) | 7184, (1U<<31) | 7114, (1U<<31) | 4025, (1U<<31) | 7103, (1U<<31) | 4006, (1U<<31) | 7103, (1U<<31) | 4006, (1U<<31) | 7442,
(1U<<31) | 7428, (1U<<31) | 7428, (1U<<31) | 7240, (1U<<31) | 7229, (1U<<31) | 7229, (1U<<31) | 7154, (1U<<31) | 4476, (1U<<31) | 7144,
(1U<<31) | 4459, (1U<<31) | 7144, (1U<<31) | 4459, (1U<<31) | 7640, (1U<<31) | 7623, (1U<<31) | 7623, (1U<<31) | 7334, (1U<<31) | 7322,
(1U<<31) | 7322, (1U<<31) | 7240, (1U<<31) | 4025, (1U<<31) | 7229, (1U<<31) | 4006, (1U<<31) | 7229, (1U<<31) | 4006, (1U<<31) | 7286,
(1U<<31) | 7273, (1U<<31) | 7273, (1U<<31) | 7196, (1U<<31) | 7184, (1U<<31) | 7184, (1U<<31) | 7334, (1U<<31) | 7322, (1U<<31) | 7322,
(1U<<31) | 7240, (1U<<31) | 7229, (1U<<31) | 7229, (1U<<31) | 7208, (1U<<31) | 7173, (1U<<31) | 7173, (1U<<31) | 7125, (1U<<31) | 7093,
(1U<<31) | 7093, (1U<<31) | 7050, (1U<<31) | 4486, (1U<<31) | 7021, (1U<<31) | 4443, (1U<<31) | 7021, (1U<<31) | 4443, (1U<<31) | 7251,
(1U<<31) | 7219, (1U<<31) | 7219, (1U<<31) | 7164, (1U<<31) | 7135, (1U<<31) | 7135, (1U<<31) | 7085, (1U<<31) | 5057, (1U<<31) | 7059,
(1U<<31) | 5010, (1U<<31) | 7059, (1U<<31) | 5010, (1U<<31) | 7401, (1U<<31) | 7357, (1U<<31) | 7357, (1U<<31) | 7208, (1U<<31) | 7173,
(1U<<31) | 7173, (1U<<31) | 7125, (1U<<31) | 4036, (1U<<31) | 7093, (1U<<31) | 3988, (1U<<31) | 7093, (1U<<31) | 3988, (1U<<31) | 7456,
(1U<<31) | 7415, (1U<<31) | 7415, (1U<<31) | 7251, (1U<<31) | 7219, (1U<<31) | 7219, (1U<<31) | 7164, (1U<<31) | 4486, (1U<<31) | 7135,
(1U<<31) | 4443, (1U<<31) | 7135, (1U<<31) | 4443, (1U<<31) | 7657, (1U<<31) | 7607, (1U<<31) | 7607, (1U<<31) | 7346, (1U<<31) | 7311,
(1U<<31) | 7311, (1U<<31) | 7251, (1U<<31) | 4036, (1U<<31) | 7219, (1U<<31) | 3988, (1U<<31) | 7219, (1U<<31) | 3988, (1U<<31) | 7299,
(1U<<31) | 7261, (1U<<31) | 7261, (1U<<31) | 7208, (1U<<31) | 7173, (1U<<31) | 7173, (1U<<31) | 7346, (1U<<31) | 7311, (1U<<31) | 7311,
(1U<<31) | 7251, (1U<<31) | 7219, (1U<<31) | 7219, (1U<<31) | 6440, 0x4f5, (1U<<31) | 7154, (1U<<31) | 7144, (1U<<31) | 7144,
(1U<<31) | 7154, (1U<<31) | 7144, (1U<<31) | 7144, (1U<<31) | 7154, (1U<<31) | 7144, (1U<<31) | 7144, (1U<<31) | 7154, (1U<<31) | 7144,
(1U<<31) | 7144, (1U<<31) | 7164, (1U<<31) | 7135, (1U<<31) | 7135, (1U<<31) | 7164, (1U<<31) | 7135, (1U<<31) | 7135, (1U<<31) | 7164,
(1U<<31) | 7135, (1U<<31) | 7135, (1U<<31) | 7164, (1U<<31) | 7135, (1U<<31) | 7135, 0x88, 0x77, 0x77,
0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54, 0x54,
0x48, 0x48, 0x48, 0x48, 0x47, 0x47, 0x47, 0x47,
0x58, 0x58, 0x58, 0x58, 0x57, 0x57, 0x57, 0x57,
0x11, 0x141, 0x11, 0x141, 0x14, 0x144, 0x11, 0x141,
(1U<<31) | 6363, (1U<<31) | 6350, (1U<<31) | 4863, (1U<<31) | 4856, (1U<<31) | 4856, (1U<<31) | 6350, (1U<<31) | 6363, (1U<<31) | 6350,
(1U<<31) | 4863, (1U<<31) | 4856, (1U<<31) | 4856, (1U<<31) | 6350, (1U<<31) | 6363, (1U<<31) | 6350, (1U<<31) | 4863, (1U<<31) | 4856,
(1U<<31) | 4856, (1U<<31) | 6350, (1U<<31) | 6363, (1U<<31) | 6350, (1U<<31) | 4863, (1U<<31) | 4856, (1U<<31) | 4856, (1U<<31) | 6350,
(1U<<31) | 6383, (1U<<31) | 6395, (1U<<31) | 6330, (1U<<31) | 4884, (1U<<31) | 4897, (1U<<31) | 4834, (1U<<31) | 6383, (1U<<31) | 6395,
(1U<<31) | 6330, (1U<<31) | 4884, (1U<<31) | 4897, (1U<<31) | 4834, (1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481,
(1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714,
(1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481, (1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531,
(1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481,
(1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714,
(1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481, (1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531,
(1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 3714, (1U<<31) | 6805, (1U<<31) | 7469, (1U<<31) | 3777, (1U<<31) | 5234,
(1U<<31) | 5247, (1U<<31) | 3750, (1U<<31) | 6805, (1U<<31) | 7469, (1U<<31) | 3777, (1U<<31) | 5234, (1U<<31) | 5247, (1U<<31) | 3750,
(1U<<31) | 6363, (1U<<31) | 6342, (1U<<31) | 4863, (1U<<31) | 4847, (1U<<31) | 4847, (1U<<31) | 6342, (1U<<31) | 6363, (1U<<31) | 6342,
(1U<<31) | 4863, (1U<<31) | 4847, (1U<<31) | 4847, (1U<<31) | 6342, (1U<<31) | 6363, 0x4f4, (1U<<31) | 4863, 0x44f4,
0x44f4, 0x4f4, (1U<<31) | 6363, 0x4f4, (1U<<31) | 4863, 0x44f4, 0x44f4, 0x4f4,
(1U<<31) | 6383, (1U<<31) | 6395, (1U<<31) | 6330, (1U<<31) | 4884, (1U<<31) | 4897, (1U<<31) | 4834, (1U<<31) | 6383, (1U<<31) | 6395,
(1U<<31) | 6330, (1U<<31) | 4884, (1U<<31) | 4897, (1U<<31) | 4834, (1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481,
(1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691,
(1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481, (1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531,
(1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481,
(1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691,
(1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481, (1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531,
(1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 6805, (1U<<31) | 7469, (1U<<31) | 3777, (1U<<31) | 5234,
(1U<<31) | 5247, (1U<<31) | 3750, (1U<<31) | 6805, (1U<<31) | 7469, (1U<<31) | 3777, (1U<<31) | 5234, (1U<<31) | 5247, (1U<<31) | 3750,
(1U<<31) | 6363, 0x4f4, (1U<<31) | 4863, 0x44f4, 0x44f4, 0x4f4, (1U<<31) | 6363, 0x4f4,
(1U<<31) | 4863, 0x44f4, 0x44f4, 0x4f4, (1U<<31) | 6363, (1U<<31) | 6342, (1U<<31) | 4863, (1U<<31) | 4847,
(1U<<31) | 4847, (1U<<31) | 6342, (1U<<31) | 6363, (1U<<31) | 6342, (1U<<31) | 4863, (1U<<31) | 4847, (1U<<31) | 4847, (1U<<31) | 6342,
(1U<<31) | 6383, (1U<<31) | 6395, (1U<<31) | 6330, (1U<<31) | 4884, (1U<<31) | 4897, (1U<<31) | 4834, (1U<<31) | 6383, (1U<<31) | 6395,
(1U<<31) | 6330, (1U<<31) | 4884, (1U<<31) | 4897, (1U<<31) | 4834, (1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481,
(1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691,
(1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481, (1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531,
(1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481,
(1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691,
(1U<<31) | 6817, (1U<<31) | 6817, (1U<<31) | 7481, (1U<<31) | 7481, (1U<<31) | 6867, (1U<<31) | 6867, (1U<<31) | 7531, (1U<<31) | 7531,
(1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 3691, (1U<<31) | 6805, (1U<<31) | 7469, (1U<<31) | 3777, (1U<<31) | 5234,
(1U<<31) | 5247, (1U<<31) | 3750, (1U<<31) | 6805, (1U<<31) | 7469, (1U<<31) | 3777, (1U<<31) | 5234, (1U<<31) | 5247, (1U<<31) | 3750,
0x4f4, 0x44f4, 0x4f4, 0x44f4, (1U<<31) | 6350, (1U<<31) | 4856, (1U<<31) | 6350, (1U<<31) | 4856,
(1U<<31) | 3842, 0x444f0, 0x4444f0, 0x444f0, 0x4444f0, 0x4f4, 0x44f4, 0x44f4,
0x4f4, 0x4f4, 0x44f4, 0x44f4, 0x4f4, (1U<<31) | 6350, (1U<<31) | 4856, (1U<<31) | 6350,
(1U<<31) | 4856, (1U<<31) | 3842, (1U<<31) | 3842, (1U<<31) | 3842, (1U<<31) | 3842, 0x444f0, 0x4444f0, 0x444f0,
0x4444f0, (1U<<31) | 9584, 0x595959, 0x595959, 0x595959, 0x595959, 0x2c2c2c2c, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x5959, 0x445959, 0x444a4a, 0x40, 0x0,
0x442e0, 0x442e0, 0x442e0, 0x442e0, 0x2e2c, 0x2e3b, 0x2e4a, 0x2e2c,
0x2e2c, 0x2e4a, 0x2e4a, 0x3b, 0x4a0, 0x52c, 0x559, 0x53b,
(1U<<31) | 6783, 0x54a, 0x2e2c0, 0x2e3b0, 0x2e4a0, 0x2e4a0, 0x2e4a0, 0x2c2c2c,
0x3b3b3b, 0x4a4a4a, (1U<<31) | 9570, 0x4a4a4a, (1U<<31) | 9568, (1U<<31) | 9568, 0x2c2c2c, 0x3b3b3b,
0x4a4a4a, 0x2c2c2c, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x3b3b3b, 0x4a4a4a, 0x2c2c59, 0x44a7a, 0x595959, 0x44a7a, 0x42c2c, 0x42c2c,
0x595959, 0x2c4, 0x7a7a4a, 0x7a7a44, 0x7a7a4a, 0x7a7a44, 0x2c2c2c, 0x2c2c44,
0x595959, 0x595944, 0x3b3b3b, 0x3b3b44, (1U<<31) | 9570, (1U<<31) | 9561, 0x4a4a4a, 0x4a4a44,
0x7a7a4a, 0x7a7a44, 0x7a7a4a, 0x7a7a44, 0x2c2c2c, 0x2c2c44, 0x595959, 0x595944,
0x3b3b3b, 0x3b3b44, (1U<<31) | 9570, (1U<<31) | 9561, 0x4a4a4a, 0x4a4a44, 0x2c2c2c, 0x2c2c44,
0x595959, 0x595944, 0x3b3b3b, 0x3b3b44, (1U<<31) | 9570, (1U<<31) | 9561, 0x4a4a4a, 0x4a4a44,
0x2c2c2c, 0x2c2c44, 0x3b3b3b, 0x3b3b44, 0x4a4a4a, 0x4a4a44, 0x2c2c2c, 0x2c2c44,
0x3b3b3b, 0x3b3b44, 0x4a4a4a, 0x4a4a44, 0x42c5, 0x4595, 0x43b5, 0x44a5,
0x47a4a, 0x47a4a, 0x595959, 0x2c4, 0x595959, (1U<<31) | 9570, 0x4a4a4a, 0x595959,
(1U<<31) | 9570, 0x4a4a4a, 0x2c2c, 0x5959, 0x3b3b, (1U<<31) | 9563, 0x4a4a, 0x7a7a,
0x4595959, 0x4595959, 0x42c2c59, 0x42c2c59, 0x43b3b59, 0x43b3b59, 0x44a4a59, 0x44a4a59,
0x2c4, 0x594, 0x3b4, (1U<<31) | 9548, 0x4a4, 0x2c59, 0x2c4a, (1U<<31) | 6689,
0x3b59, 0x3b4a, 0x4a59, 0x2c2c, (1U<<31) | 6501, 0x442c2c, 0x442c2c, 0x2c42c2c,
0x2c42c2c, 0x455959, 0x555959, 0x555959, 0x443b3b, 0x443b3b, 0x3b43b3b, 0x3b43b3b,
0x444a4a, 0x444a4a, 0x444a4a, 0x4a44a4a, 0x4a44a4a, 0x7a7a, 0x7a7a7a7a, 0x7a7a7a,
0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a,
0x3b3b3b3b, 0x3b3b3b3b, 0x7a7a7a, 0x2c2c2c, 0x595959, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x595959, 0x3b3b3b, 0x4a4a4a, 0x3b3b3b3b, (1U<<31) | 9552, 0x4a2c2c4a, 0x4a3b3b4a, 0x4a3b3b4a,
0x4a2c2c4a, (1U<<31) | 9552, 0x4a3b3b4a, 0x4a3b3b4a, 0x2c2c3b, (1U<<31) | 6682, 0x3b3b4a, 0x4a4a59,
0x2c2c3b, (1U<<31) | 6682, 0x3b3b4a, 0x4a4a59, 0x595959, 0x4a4a4a, 0x595959, 0x4a4a4a,
0x2c2c3b, (1U<<31) | 6682, 0x3b3b4a, 0x4a4a59, 0x2c2c3b, (1U<<31) | 6682, 0x3b3b4a, 0x4a4a59,
0x7a7a7a7a, 0x595959, 0x2c4a4a4a, 0x595959, 0x4a4a3b, 0x59594a, 0x59594a, 0x3b3b2c,
0x3b3b2c, 0x4a4a3b, 0x4a4a3b, 0x59594a, 0x3b3b2c, 0x4a4a3b, 0x5959, (1U<<31) | 9563,
0x4a4a, 0x7a7a, 0x7a7a, 0x7a7a, 0x7a7a, 0x7a7a, 0x2c2c2c, 0x595959,
0x59595959, 0x595959, 0x3b3b3b, (1U<<31) | 9568, (1U<<31) | 9570, 0x4a4a4a, 0x4a4a4a4a, 0x4a4a4a,
0x7a7a, 0x4a4a4a4a, 0x4a4a4a, 0x2c2c2c, 0x42c2c2c, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c,
0x4a4a4a, 0x4a4a4a, 0x2c2c2c, 0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x42c2c2c, 0x3b3b3b,
0x4a4a4a, 0x2c2c2c, 0x4a4a4a, 0x2c2c, 0x2c44, 0x2c2c, 0x2c44, 0x3b3b,
0x3b44, 0x3b3b, 0x3b44, (1U<<31) | 9570, 0x4a4a4a, (1U<<31) | 9568, (1U<<31) | 9568, 0x2c2c2c,
0x3b3b3b, 0x4a4a4a, 0x2c2c2c, 0x3b3b3b, 0x4a4a4a, 0x4a4a4a, 0x4a2c4a, 0x4a3b4a,
0x4a2c4a, 0x4a4a4a, 0x3b4a, 0x2c3b, 0x3b4a, 0x4a59, 0x3b4a, 0x2c3b,
0x3b4a, 0x4a59, 0x555, 0x1f0, 0x555, 0x555, 0x555, 0x5,
0x4, 0x5, 0x2e0, 0x2e0, 0x2e0, 0x2e0, 0x2e0, 0x2e0,
0x2e0, 0x2e0, 0x2e0, 0x42e0, 0x2e0, 0x42e0, 0x2e0, 0x2e0,
0x555, 0x555, (1U<<31) | 9584, 0x444, 0x444, 0x0, (1U<<31) | 9583, 0x5,
0x5, 0x5, 0x5, 0x0, 0x0, (1U<<31) | 820, (1U<<31) | 339, (1U<<31) | 3635,
(1U<<31) | 3633, (1U<<31) | 3633, (1U<<31) | 3633, (1U<<31) | 3633, (1U<<31) | 3635, (1U<<31) | 3633, (1U<<31) | 3633, (1U<<31) | 3633,
(1U<<31) | 3633, (1U<<31) | 3617, (1U<<31) | 3615, (1U<<31) | 3615, (1U<<31) | 3615, (1U<<31) | 3615, (1U<<31) | 3606, (1U<<31) | 3604,
(1U<<31) | 3604, (1U<<31) | 3604, (1U<<31) | 3604, (1U<<31) | 3635, (1U<<31) | 3633, (1U<<31) | 3635, (1U<<31) | 3633, (1U<<31) | 3635,
(1U<<31) | 3633, (1U<<31) | 3635, (1U<<31) | 3633, (1U<<31) | 3633, (1U<<31) | 806, (1U<<31) | 804, (1U<<31) | 804, (1U<<31) | 804,
(1U<<31) | 804, (1U<<31) | 806, (1U<<31) | 804, (1U<<31) | 804, (1U<<31) | 804, (1U<<31) | 804, (1U<<31) | 806, (1U<<31) | 804,
(1U<<31) | 804, (1U<<31) | 804, (1U<<31) | 804, (1U<<31) | 797, (1U<<31) | 795, (1U<<31) | 795, (1U<<31) | 795, (1U<<31) | 795,
(1U<<31) | 806, (1U<<31) | 804, (1U<<31) | 806, (1U<<31) | 804, (1U<<31) | 806, (1U<<31) | 804, (1U<<31) | 806, (1U<<31) | 804,
(1U<<31) | 804, (1U<<31) | 334, (1U<<31) | 334, (1U<<31) | 336, (1U<<31) | 9584, 0x555, 0x555, 0x55,
0x8, (1U<<31) | 9577, (1U<<31) | 6787, 0x50, 0x50, 0x50, 0x50, 0x88,
0x48, (1U<<31) | 9585, (1U<<31) | 9584, 0x0, 0x44, 0x4444, 0x4444, 0x4444,
0x4444, 0x44, 0x4, 0x44, 0x4, 0x4, 0x44, 0x4,
(1U<<31) | 9580, 0x44, 0x4, 0x5, (1U<<31) | 813, (1U<<31) | 386, 0x2e89, 0x2e89,
0x52e4a, 0x52e4a, (1U<<31) | 891, 0x2e4a, 0x2e4a, 0x2e890, 0x2e890, 0x52e4a0,
0x52e4a0, (1U<<31) | 890, 0x2e4a0, 0x2e4a0, 0x888, 0x888, 0x898959, 0x898944,
0x7a7a4a, 0x7a7a44, 0x898959, 0x898944, 0x7a7a4a, 0x7a7a44, 0x898959, 0x898944,
0x7a7a4a, 0x7a7a44, 0x2c2c, 0x897a, 0x894a, 0x894a, 0x3b7a, 0x2c2c,
0x7a89, 0x7a7a, 0x597a, 0x4a89, 0x597a, 0x4a89, 0x898989, 0x7a7a7a,
0x595989, 0x4a4a7a, 0x898989, 0x7a7a7a, 0x898989, 0x7a7a7a, 0x8989, 0x8989,
0x7a7a, 0x7a7a, 0x8989, 0x7a7a, 0x89894, 0x7a7a4, 0x42c4, 0x894,
0x7a4, 0x48959, 0x47a4a, 0x8959, 0x7a4a, 0x8959, 0x7a4a, 0x2c2c2c2c,
0x59595959, 0x3b3b3b3b, 0x4a4a4a4a, (1U<<31) | 5116, 0x45959, 0x42c2c, 0x45959, 0x43b3b,
0x44a4a, 0x4594a4a, 0x4a4a4a, (1U<<31) | 1974, 0x7a7a, (1U<<31) | 3763, (1U<<31) | 3763, 0x7a7a7,
0x0, (1U<<31) | 686, 0x70, 0x44a4a0, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4, 0x4,
0x4, 0x4, 0x4, 0x7f2f, 0x7f2f, 0x4447a0, 0x447a0, (1U<<31) | 3763,
(1U<<31) | 3763, (1U<<31) | 3763, (1U<<31) | 3763, (1U<<31) | 3736, (1U<<31) | 3763, (1U<<31) | 3763, (1U<<31) | 3736, 0x4444f4,
0x5554f5, 0x44444f4, 0x55554f5, 0x44444f4, 0x55554f5, 0x4444f4, 0x5554f5, 0x4444f4,
0x5554f5, 0x4444f4, 0x5554f5, 0x4444f4, 0x5554f5, 0x4444f4, 0x5554f5, 0x44444f4,
0x55554f5, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9010, (1U<<31) | 9135, (1U<<31) | 9022,
(1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 8384, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155,
(1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155,
(1U<<31) | 9036, (1U<<31) | 9135, (1U<<31) | 9022, 0x7fbf1f, 0x7fffbf1f, (1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 9103,
(1U<<31) | 8980, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9010, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9103, (1U<<31) | 8980,
(1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 1042, (1U<<31) | 8480, (1U<<31) | 8464, (1U<<31) | 9155,
(1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155,
(1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9103,
(1U<<31) | 8980, (1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114,
(1U<<31) | 9077, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, 0x9f7f3f, (1U<<31) | 8384, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155,
(1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9155,
(1U<<31) | 9036, (1U<<31) | 9155, (1U<<31) | 9036, (1U<<31) | 9456, (1U<<31) | 9433, (1U<<31) | 9456, (1U<<31) | 9433, (1U<<31) | 9447,
(1U<<31) | 9419, (1U<<31) | 9456, (1U<<31) | 9433, (1U<<31) | 9456, (1U<<31) | 9433, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114,
(1U<<31) | 9077, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9135, (1U<<31) | 9022, 0x9f3f, (1U<<31) | 8374, (1U<<31) | 8366,
(1U<<31) | 8353, 0x9f7fe3f, (1U<<31) | 8408, 0x9f7fe3f, (1U<<31) | 8408, (1U<<31) | 8906, (1U<<31) | 8879, (1U<<31) | 9162,
(1U<<31) | 9062, (1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 9125, (1U<<31) | 8997, (1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 8428,
(1U<<31) | 8428, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, 0x9f3f, (1U<<31) | 9010, (1U<<31) | 9125,
(1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9125,
(1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 8428,
(1U<<31) | 8428, (1U<<31) | 8428, (1U<<31) | 8428, (1U<<31) | 9125, (1U<<31) | 8997, 0x9f7f3f, (1U<<31) | 8437, (1U<<31) | 9125,
(1U<<31) | 8994, 0x9f3f, (1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994, 0x9f7f3f, (1U<<31) | 8437,
(1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994, (1U<<31) | 9125, (1U<<31) | 8994,
(1U<<31) | 9125, (1U<<31) | 8994, 0x9f7f3f, (1U<<31) | 8437, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022,
(1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 8471, 0x9f7f3f, (1U<<31) | 8457, (1U<<31) | 275,
(1U<<31) | 8428, (1U<<31) | 8428, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9103, (1U<<31) | 8980,
(1U<<31) | 9103, (1U<<31) | 8980, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9135, (1U<<31) | 9022,
0x7fbf1f, 0x7fffbf1f, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077,
(1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077,
(1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022,
(1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9010, (1U<<31) | 8448,
(1U<<31) | 8396, 0x7f7f7f1f, 0x7f7f1f, (1U<<31) | 9155, (1U<<31) | 9091, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 8894, (1U<<31) | 8851, (1U<<31) | 8894, (1U<<31) | 8851, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 8905, (1U<<31) | 8865, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9144, (1U<<31) | 9048, (1U<<31) | 9144, (1U<<31) | 9048, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9456, (1U<<31) | 9433, (1U<<31) | 9456,
(1U<<31) | 9433, (1U<<31) | 9456, (1U<<31) | 9433, (1U<<31) | 9456, (1U<<31) | 9433, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9447,
(1U<<31) | 9419, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9114, (1U<<31) | 9077, (1U<<31) | 9447,
(1U<<31) | 9419, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9447, (1U<<31) | 9419, (1U<<31) | 9135, (1U<<31) | 9022, (1U<<31) | 9135,
(1U<<31) | 9022, (1U<<31) | 9155, (1U<<31) | 9091, 0x4, 0x4, 0x42e4, 0x5e50, 0x40,
0x40, 0x50, 0x42e4, 0x42e4, 0x42e0, 0x52f4, 0x4, 0x2c2c2c,
0x2c2c2c2c, 0x4a4a4a, 0x595959, 0x3b3b3b, 0x2c2c2c, 0x2c2c2c2c, 0x2c2c2c, 0x2c2c2c,
0x4a4a4a, 0x595959, 0x3b3b3b, 0x2c2c2c, 0x4a4a4a, 0x595959, 0x3b3b3b, 0x2c2c59,
(1U<<31) | 842, (1U<<31) | 6040, (1U<<31) | 6636, (1U<<31) | 1105, (1U<<31) | 842, (1U<<31) | 6040, (1U<<31) | 6636, (1U<<31) | 1105,
(1U<<31) | 842, (1U<<31) | 6040, (1U<<31) | 6636, (1U<<31) | 1105, 0x4a4a4a, (1U<<31) | 1974, (1U<<31) | 4645, (1U<<31) | 5116,
(1U<<31) | 2115, 0x42c2c, 0x44a4a, 0x45959, 0x43b3b, 0x2c2c2c, 0x4a4a4a, 0x595959,
0x3b3b3b, 0x42c2c2c, (1U<<31) | 1996, 0x44a4a4a, (1U<<31) | 4623, 0x43b3b3b, (1U<<31) | 2137, 0x42c2c2c,
(1U<<31) | 1996, 0x44a4a4a, (1U<<31) | 4623, 0x43b3b3b, (1U<<31) | 2137, (1U<<31) | 8265, (1U<<31) | 7673, (1U<<31) | 8265,
(1U<<31) | 8265, (1U<<31) | 7673, (1U<<31) | 7673, 0x2c2c2c, (1U<<31) | 842, 0x4a4a4a, (1U<<31) | 6040, 0x3b3b3b,
(1U<<31) | 1105, 0x2c2c2c, (1U<<31) | 842, 0x4a4a4a, (1U<<31) | 6040, 0x3b3b3b, (1U<<31) | 1105, 0x2c2c2c,
(1U<<31) | 842, 0x4a4a4a, (1U<<31) | 6040, 0x3b3b3b, (1U<<31) | 1105, 0x2c2c2c, (1U<<31) | 842, 0x4a4a4a,
(1U<<31) | 6040, 0x3b3b3b, (1U<<31) | 1105, 0x448989, 0x447a7a, 0x4898989, 0x47a7a7a, 0x4898989,
0x47a7a7a, (1U<<31) | 5524, (1U<<31) | 5265, 0x3b2c2c3b, 0x594a4a59, 0x2c59592c, 0x4a3b3b4a, 0x2c2c3b,
0x4a4a59, 0x59592c, 0x3b3b4a, 0x2c2c, (1U<<31) | 862, 0x4a4a, (1U<<31) | 6014, 0x3b3b,
(1U<<31) | 1114, 0x42e2c, 0x2e42c, 0x2e42c, 0x3b2c2c3b, 0x594a4a59, 0x4a3b3b4a, 0x2c2c2c2c,
0x4a4a4a4a, 0x3b3b3b3b, 0x3b2c2c3b, 0x594a4a59, 0x4a3b3b4a, 0x2c2c2c2c, 0x4a4a4a4a, 0x3b3b3b3b,
0x3b2c2c3b, 0x594a4a59, 0x4a3b3b4a, 0x3b2c2c3b, 0x594a4a59, 0x4a3b3b4a, 0x2c2c3b, 0x4a4a59,
0x3b3b4a, 0x2c2c2c, 0x4a4a4a, 0x3b3b3b, 0x2c2c3b, 0x4a4a59, 0x3b3b4a, 0x2c2c2c,
0x4a4a4a, 0x3b3b3b, 0x2c2c3b, 0x4a4a59, 0x3b3b4a, 0x2c2c3b, 0x4a4a59, 0x3b3b4a,
(1U<<31) | 2006, 0x4595959, 0x2c2c2c2c, 0x4a4a3b, (1U<<31) | 6031, 0x59594a, (1U<<31) | 6605, 0x3b3b2c,
(1U<<31) | 1096, 0x4a4a3b, (1U<<31) | 6031, 0x59594a, (1U<<31) | 6605, 0x3b3b2c, (1U<<31) | 1096, 0x2c2c2c2c,
0x2c2c2c2c, 0x2c2c2c, 0x4a4a4a, 0x595959, 0x3b3b3b, 0x2c2c2c, 0x2c2c2c, 0x2c2c2c,
0x42c2c2c, 0x42c2c2c, 0x2c2c2c, 0x2c2c2c, 0x2c2c2c, 0x42c2c2c, 0x2c2c2c, 0x2c2c2c,
0x2e42c0, (1U<<31) | 1974, (1U<<31) | 1984, (1U<<31) | 4645, (1U<<31) | 4633, (1U<<31) | 2115, (1U<<31) | 2125, (1U<<31) | 1974,
(1U<<31) | 1984, (1U<<31) | 4645, (1U<<31) | 4633, (1U<<31) | 2115, (1U<<31) | 2125, 0x2e42c0, (1U<<31) | 831, (1U<<31) | 869,
(1U<<31) | 851, (1U<<31) | 831, (1U<<31) | 869, (1U<<31) | 851, 0x2c2c4a, 0x4a4a59, 0x3b3b59, 0x3b3b4a,
0x4a4a2c, 0x59592c, 0x2c2c4, 0x2c3b, 0x4a59, 0x3b4a, 0x2c3b, 0x4a59,
0x2c3b, 0x4a59, 0x3b4a, 0x3b4a, 0x2c3b, 0x4a59, 0x3b4a, (1U<<31) | 332,
(1U<<31) | 379, (1U<<31) | 332, (1U<<31) | 379, (1U<<31) | 6541, (1U<<31) | 6556, (1U<<31) | 6563, (1U<<31) | 5922, (1U<<31) | 5893,
(1U<<31) | 5913, (1U<<31) | 1573, (1U<<31) | 334, (1U<<31) | 381, (1U<<31) | 332, (1U<<31) | 379, (1U<<31) | 332, (1U<<31) | 379,
(1U<<31) | 1573, 0x42e50, 0x42e50, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972,
(1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692,
(1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5670, (1U<<31) | 5069, (1U<<31) | 5902,
(1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902,
(1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5706, (1U<<31) | 5930,
(1U<<31) | 5972, (1U<<31) | 5706, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718,
(1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004,
(1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5703, (1U<<31) | 5938,
(1U<<31) | 5969, (1U<<31) | 5690, (1U<<31) | 5900, (1U<<31) | 5936, (1U<<31) | 5716, (1U<<31) | 6004, (1U<<31) | 6002, (1U<<31) | 5692,
(1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938,
(1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 1526, (1U<<31) | 1526, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522,
(1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522,
(1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522,
(1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522,
(1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522,
(1U<<31) | 5673, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522,
(1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522, (1U<<31) | 5673, (1U<<31) | 1522,
(1U<<31) | 5673, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5703, (1U<<31) | 5938, (1U<<31) | 5969,
(1U<<31) | 5690, (1U<<31) | 5900, (1U<<31) | 5936, (1U<<31) | 5716, (1U<<31) | 6004, (1U<<31) | 6002, (1U<<31) | 5692, (1U<<31) | 5902,
(1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5703, (1U<<31) | 5938, (1U<<31) | 5969, (1U<<31) | 5690,
(1U<<31) | 5900, (1U<<31) | 5936, (1U<<31) | 5716, (1U<<31) | 6004, (1U<<31) | 6002, (1U<<31) | 5703, (1U<<31) | 5938, (1U<<31) | 5969,
(1U<<31) | 5690, (1U<<31) | 5900, (1U<<31) | 5936, (1U<<31) | 5716, (1U<<31) | 6004, (1U<<31) | 6002, (1U<<31) | 5692, (1U<<31) | 5902,
(1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718,
(1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004,
(1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5930, (1U<<31) | 5972,
(1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5675, (1U<<31) | 5930, (1U<<31) | 5675, (1U<<31) | 5930,
(1U<<31) | 5675, (1U<<31) | 5930, (1U<<31) | 5668, (1U<<31) | 5067, (1U<<31) | 5900, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004,
(1U<<31) | 5668, (1U<<31) | 5067, (1U<<31) | 5900, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5668, (1U<<31) | 5067,
(1U<<31) | 5900, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5668, (1U<<31) | 5067, (1U<<31) | 5900, (1U<<31) | 5718,
(1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004,
(1U<<31) | 5692, (1U<<31) | 5902, (1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5692, (1U<<31) | 5902,
(1U<<31) | 5938, (1U<<31) | 5718, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 6506, (1U<<31) | 6511, 0x0, (1U<<31) | 1573,
(1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782,
(1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972,
(1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004,
(1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793,
(1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5519, (1U<<31) | 5773, (1U<<31) | 5920, (1U<<31) | 5069,
(1U<<31) | 5755, (1U<<31) | 5902, (1U<<31) | 5260, (1U<<31) | 5764, (1U<<31) | 5911, (1U<<31) | 4597, (1U<<31) | 5732, (1U<<31) | 5881,
(1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782,
(1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972,
(1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004,
(1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5833, (1U<<31) | 5930,
(1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972,
(1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930,
(1U<<31) | 5833, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972,
(1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5833,
(1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5833, (1U<<31) | 5972, (1U<<31) | 5902,
(1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5067, (1U<<31) | 5753, (1U<<31) | 5900, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004,
(1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 4595, (1U<<31) | 5730, (1U<<31) | 5879, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 4595, (1U<<31) | 5730, (1U<<31) | 5879, (1U<<31) | 5972,
(1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5067, (1U<<31) | 5753, (1U<<31) | 5900,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 4595, (1U<<31) | 5730,
(1U<<31) | 5879, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972,
(1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5833, (1U<<31) | 5920, (1U<<31) | 5819, (1U<<31) | 5960, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5911, (1U<<31) | 5806, (1U<<31) | 5949, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5920,
(1U<<31) | 5819, (1U<<31) | 5960, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5911, (1U<<31) | 5806, (1U<<31) | 5949,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5920, (1U<<31) | 5819, (1U<<31) | 5960, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5911, (1U<<31) | 5806, (1U<<31) | 5949, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5960,
(1U<<31) | 5843, (1U<<31) | 5991, (1U<<31) | 5918, (1U<<31) | 5817, (1U<<31) | 5958, (1U<<31) | 6004, (1U<<31) | 5856, (1U<<31) | 6002,
(1U<<31) | 5949, (1U<<31) | 5830, (1U<<31) | 5980, (1U<<31) | 5909, (1U<<31) | 5804, (1U<<31) | 5947, (1U<<31) | 6004, (1U<<31) | 5856,
(1U<<31) | 6002, (1U<<31) | 5920, (1U<<31) | 5819, (1U<<31) | 5960, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5911,
(1U<<31) | 5806, (1U<<31) | 5949, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5920, (1U<<31) | 5819, (1U<<31) | 5960,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5911, (1U<<31) | 5806, (1U<<31) | 5949, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 1563, (1U<<31) | 1563, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5735,
(1U<<31) | 1578, (1U<<31) | 5735, (1U<<31) | 1578, (1U<<31) | 5960, (1U<<31) | 5843, (1U<<31) | 5991, (1U<<31) | 5918, (1U<<31) | 5817,
(1U<<31) | 5958, (1U<<31) | 6004, (1U<<31) | 5856, (1U<<31) | 6002, (1U<<31) | 5949, (1U<<31) | 5830, (1U<<31) | 5980, (1U<<31) | 5909,
(1U<<31) | 5804, (1U<<31) | 5947, (1U<<31) | 6004, (1U<<31) | 5856, (1U<<31) | 6002, (1U<<31) | 5920, (1U<<31) | 5819, (1U<<31) | 5960,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5911, (1U<<31) | 5806, (1U<<31) | 5949, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5960, (1U<<31) | 5843, (1U<<31) | 5991, (1U<<31) | 5918, (1U<<31) | 5817, (1U<<31) | 5958, (1U<<31) | 6004,
(1U<<31) | 5856, (1U<<31) | 6002, (1U<<31) | 5949, (1U<<31) | 5830, (1U<<31) | 5980, (1U<<31) | 5909, (1U<<31) | 5804, (1U<<31) | 5947,
(1U<<31) | 6004, (1U<<31) | 5856, (1U<<31) | 6002, (1U<<31) | 5960, (1U<<31) | 5843, (1U<<31) | 5991, (1U<<31) | 5918, (1U<<31) | 5817,
(1U<<31) | 5958, (1U<<31) | 6004, (1U<<31) | 5856, (1U<<31) | 6002, (1U<<31) | 5949, (1U<<31) | 5830, (1U<<31) | 5980, (1U<<31) | 5909,
(1U<<31) | 5804, (1U<<31) | 5947, (1U<<31) | 6004, (1U<<31) | 5856, (1U<<31) | 6002, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930,
(1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930,
(1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930,
(1U<<31) | 5972, (1U<<31) | 5920, (1U<<31) | 5819, (1U<<31) | 5960, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5911,
(1U<<31) | 5806, (1U<<31) | 5949, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5930, (1U<<31) | 1597, (1U<<31) | 5930,
(1U<<31) | 1597, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741, (1U<<31) | 5888, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741,
(1U<<31) | 5888, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741, (1U<<31) | 5888, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741,
(1U<<31) | 5888, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741, (1U<<31) | 5888, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741,
(1U<<31) | 5888, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741, (1U<<31) | 5888, (1U<<31) | 5049, (1U<<31) | 1568, (1U<<31) | 5741,
(1U<<31) | 5888, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043,
(1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043,
(1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043,
(1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043, (1U<<31) | 5870, (1U<<31) | 2043,
(1U<<31) | 5870, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881,
(1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881,
(1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 1586, (1U<<31) | 5793, (1U<<31) | 1595,
(1U<<31) | 5858, (1U<<31) | 1530, (1U<<31) | 5679, (1U<<31) | 1539, (1U<<31) | 5718, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 6004, (1U<<31) | 5881,
(1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881,
(1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004,
(1U<<31) | 5930, (1U<<31) | 1597, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972,
(1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972,
(1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972,
(1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 1597,
(1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972, (1U<<31) | 5930, (1U<<31) | 5972,
(1U<<31) | 5930, (1U<<31) | 1597, (1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567,
(1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567,
(1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5048, (1U<<31) | 1567,
(1U<<31) | 5048, (1U<<31) | 1567, (1U<<31) | 5675, (1U<<31) | 5930, (1U<<31) | 5049, (1U<<31) | 5741, (1U<<31) | 5888, (1U<<31) | 5065,
(1U<<31) | 5898, (1U<<31) | 5067, (1U<<31) | 5753, (1U<<31) | 5900, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 4595,
(1U<<31) | 5730, (1U<<31) | 5879, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 4595, (1U<<31) | 5730, (1U<<31) | 5879,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5067, (1U<<31) | 5753, (1U<<31) | 5900, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5067, (1U<<31) | 5753, (1U<<31) | 5900, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 4595,
(1U<<31) | 5730, (1U<<31) | 5879, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 4595, (1U<<31) | 5730, (1U<<31) | 5879,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5067, (1U<<31) | 5753, (1U<<31) | 5900, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042,
(1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042,
(1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042,
(1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042,
(1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042,
(1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042, (1U<<31) | 1557, (1U<<31) | 2042,
(1U<<31) | 1557, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881,
(1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938, (1U<<31) | 5972, (1U<<31) | 5858,
(1U<<31) | 6004, (1U<<31) | 5881, (1U<<31) | 5782, (1U<<31) | 5927, (1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 5930,
(1U<<31) | 1597, (1U<<31) | 5930, (1U<<31) | 1597, (1U<<31) | 5930, (1U<<31) | 1597, (1U<<31) | 5902, (1U<<31) | 5793, (1U<<31) | 5938,
(1U<<31) | 5972, (1U<<31) | 5858, (1U<<31) | 6004, (1U<<31) | 332, (1U<<31) | 379, 0x3f4, 0x3f4, 0x7f7f3f,
0x3f4, 0x7f7f7f3f, 0x7f3f, 0x3b3b4a, 0x595959, (1U<<31) | 8175, (1U<<31) | 8175, (1U<<31) | 8197,
(1U<<31) | 8197, (1U<<31) | 8197, (1U<<31) | 8197, 0x2e, 0x7f3f, (1U<<31) | 9193, (1U<<31) | 9188, (1U<<31) | 6492,
0x43b3e3b, 0x44a4e4a, 0x4e4a, 0x4595e59, 0x5e59, 0x42c2e2c, 0x2e, 0x44e4,
0x544e4, 0x555e4, 0x7f41f, 0x41f, 0xffbf3f, 0xffbf3f, 0x7f3f, 0x7f7f3f,
0x7f7f3f, 0x2c2c, 0x2e0, 0x2e0, 0x3b3b3b, 0x7f7f7f3f, 0x7f7f7f3f, 0x0,
(1U<<31) | 3668, 0x7f7f7f3f, 0x43b3e0, 0x44a4e0, 0x4595e0, 0x42c2e0, 0x7f7f3f, 0x7f7f3f,
0x2c2c2c, 0x2e40, 0x1f, 0x2e, 0x1f, 0x7f3f, 0xaf1f, 0xaf1f,
0xaf1f, 0xaf1f, 0x4a59, 0x4a59, 0x4a59, 0x4a59, (1U<<31) | 9177, (1U<<31) | 9174,
(1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
(1U<<31) | 9174, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9174, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9174,
(1U<<31) | 9177, (1U<<31) | 9174, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9174, (1U<<31) | 9174, (1U<<31) | 3573, (1U<<31) | 6570,
(1U<<31) | 1021, (1U<<31) | 1021, (1U<<31) | 6645, (1U<<31) | 6645, (1U<<31) | 1021, (1U<<31) | 1021, (1U<<31) | 6645, (1U<<31) | 6645,
0x595959, 0x5a5a5a, 0x5b5b5b, 0x595959, 0x5a5a5a, 0x5b5b5b, 0x595959, 0x5a5a5a,
0x5b5b5b, 0x595959, 0x5a5a5a, 0x5b5b5b, 0x5959, 0x25959, 0x8a8a8a, 0x7b7b7b,
(1U<<31) | 8335, 0x7b7b7b7b, 0x28a8a8a, 0x27b7b7b, 0x8a7a, 0x8a4a, 0x7b4b, 0x8a4a,
0x7b4b, 0x27b7b7b, 0x8a8a8a, 0x7b7b7b, 0x8a8a8a, 0x7b7b7b, 0x2e2d, 0x592e89,
0x5a2e8a, 0x4a2e7a, 0x4b2e7b, 0x89592e0, 0x8a5a2e0, 0x7a4a2e0, 0x7b4b2e0, 0x8a8a8a,
0x7b7b7b, 0x8a8a8a, 0x7b7b7b, 0x8a4, 0x7b4, 0x5a5a4, 0x5a5a4, 0x5a5a4,
0x7b7b, 0x48a8a, 0x47b7b, 0x7b7b, 0x598989, 0x5a8a8a, 0x4a7a7a, 0x4b7b7b,
0x89894, 0x8a8a4, 0x7a7a4, 0x7b7b4, 0x89894, 0x8a8a4, 0x7a7a4, 0x7b7b4,
0x89894, 0x8a8a4, 0x7a7a4, 0x7b7b4, 0x0, 0x0, (1U<<31) | 456, (1U<<31) | 502,
(1U<<31) | 701, (1U<<31) | 746, (1U<<31) | 607, (1U<<31) | 664, (1U<<31) | 528, (1U<<31) | 562, (1U<<31) | 468, (1U<<31) | 480,
(1U<<31) | 713, (1U<<31) | 758, (1U<<31) | 619, (1U<<31) | 631, (1U<<31) | 540, (1U<<31) | 574, 0x4a2e4a, 0x4b2e4b,
0x592e59, 0x5a2e5a, 0x4a4a2e0, 0x4b4b2e0, 0x59592e0, 0x5a5a2e0, 0x22d2d3c, 0x4b4b3c,
0x3c3c2d, 0x4b4b3c, 0x3c3c2d, 0x2d2d2d, 0x3c3c3c, 0x2d2d2d2d, 0x4b4b4b, 0x4b7b7b,
0x4b4b4b, 0x3c3c3c, 0x3c3c3c, 0x4b4b4b, 0x3c3c3c, 0x3c3c3c, 0x2d2d3c, 0x3c3c4b,
0x2d4, 0x3c3c3c, 0x3c3c3c, 0x3c3c3c, 0x2d2d5a, 0x2d2d2d, 0x2d2d2d, 0x4b4b4b,
0x3c3c3c, 0x4a4b4b, 0x595a5a, 0x3b3c3c, 0x44b4b, 0x45a5a, 0x43c3c, 0x4a4a4a,
0x4b4b4b, 0x595959, 0x5a5a5a, 0x4a4b4b, 0x3b3c3c, 0x44b4b, 0x43c3c, 0x4a4a4a,
0x4b4b4b, 0x4a4b4b, 0x595a5a, 0x3b3c3c, 0x44b4b, 0x45a5a, 0x43c3c, 0x4a4a4a,
0x4b4b4b, 0x595959, 0x5a5a5a, 0x48b8b8b, 0x47c7c7c, 0x259, 0x25a, 0x25b,
0x34a, 0x34b, 0x34c, 0x4a4a, 0x4b4b, 0x4c4c, 0x5959, 0x5a5a,
0x5b5b, 0x458989, 0x447a7a, 0x457a7a, 0x4894, 0x4895, 0x4894, 0x4895,
0x47a4, 0x47a5, 0x47a4, 0x47a5, 0x447a7a, 0x458989, 0x457a7a, 0x42c2c3b,
0x42d2d3c, (1U<<31) | 2050, 0x48b8b8b, 0x47c7c7c, 0x428b8b8b, 0x437c7c7c, 0x48919, 0x48a1a,
0x48b1b, 0x47a1a, 0x47b1b, 0x47c1c, (1U<<31) | 1740, (1U<<31) | 2070, (1U<<31) | 1718, (1U<<31) | 2081,
(1U<<31) | 1872, (1U<<31) | 1839, (1U<<31) | 1850, (1U<<31) | 1861, (1U<<31) | 1784, (1U<<31) | 1762, (1U<<31) | 1828, (1U<<31) | 1806,
(1U<<31) | 1773, (1U<<31) | 1751, (1U<<31) | 1817, (1U<<31) | 1795, (1U<<31) | 1685, (1U<<31) | 1652, (1U<<31) | 1696, (1U<<31) | 1663,
(1U<<31) | 1674, (1U<<31) | 1641, (1U<<31) | 1729, (1U<<31) | 1707, 0x442e4b20, 0x442e4c30, 0x442e5b20, 0x442e5b20,
0x1b1b1b, 0x1d1d1d, (1U<<31) | 285, 0x1c1c1c, 0x1b1b4, 0x1d1d4, (1U<<31) | 292, 0x1c1c4,
0x1b1b4, 0x1d1d4, (1U<<31) | 292, 0x1c1c4, (1U<<31) | 1940, (1U<<31) | 1895, (1U<<31) | 197, (1U<<31) | 237,
(1U<<31) | 1367, (1U<<31) | 227, (1U<<31) | 247, (1U<<31) | 1474, 0x42489892, 0x4247a7a2, (1U<<31) | 105, 0x24a894a,
0x424b8b4b, 0x27a897a, 0x427b8b7b, 0x2598959, 0x25a8a5a, 0x425b8b5b, 0x24a894a, 0x24a8a4a,
0x424b8b4b, 0x2598959, 0x25a8a5a, 0x425b8b5b, 0x24a7a4a, 0x24b7b4b, 0x434c7c4c, 0x428b7b8b,
0x2597a59, 0x25a7a5a, 0x425b7b5b, 0x24a7a4a, 0x24b7b4b, 0x434c7c4c, 0x2597a59, 0x25a7a5a,
0x425b7b5b, 0x27a597a, (1U<<31) | 1906, (1U<<31) | 1929, 0x24a894a, 0x424b8b4b, 0x2598959, 0x25a8a5a,
0x425b8b5b, 0x24a894a, 0x24a8a4a, 0x424b8b4b, 0x2598959, 0x25a8a5a, 0x425b8b5b, 0x434c7c4c,
0x2597a59, 0x25a7a5a, 0x425b7b5b, 0x24a7a4a, 0x24b7b4b, 0x434c7c4c, 0x2597a59, 0x25a7a5a,
0x425b7b5b, 0x27a597a, (1U<<31) | 1940, (1U<<31) | 1895, (1U<<31) | 105, (1U<<31) | 434, (1U<<31) | 445, (1U<<31) | 1629,
(1U<<31) | 412, (1U<<31) | 423, (1U<<31) | 2058, (1U<<31) | 1617, (1U<<31) | 1605, 0x24892, 0x247a2, (1U<<31) | 1414,
(1U<<31) | 1485, (1U<<31) | 1390, (1U<<31) | 1497, (1U<<31) | 1462, (1U<<31) | 1426, (1U<<31) | 1438, (1U<<31) | 1450, (1U<<31) | 1259,
(1U<<31) | 1235, (1U<<31) | 1355, (1U<<31) | 1331, (1U<<31) | 1247, (1U<<31) | 1223, (1U<<31) | 1343, (1U<<31) | 1319, (1U<<31) | 1211,
(1U<<31) | 1199, (1U<<31) | 1307, (1U<<31) | 1283, (1U<<31) | 1295, (1U<<31) | 1271, (1U<<31) | 1402, (1U<<31) | 1378, 0x2898989,
0x28a8a8a, 0x428b8b8b, 0x27a7a7a, 0x27b7b7b, 0x437c7c7c, (1U<<31) | 1940, (1U<<31) | 1895, 0x28948989,
0x28a48a8a, (1U<<31) | 1953, 0x27a47a7a, 0x27b47b7b, (1U<<31) | 2094, (1U<<31) | 1917, (1U<<31) | 1883, (1U<<31) | 1940,
(1U<<31) | 1895, (1U<<31) | 1940, (1U<<31) | 1895, (1U<<31) | 1940, (1U<<31) | 1895, 0x22c4a2c, 0x22c4b2c, 0x32c4c2c,
0x24a2e0, 0x24b2e0, 0x34c2e0, 0x23b4a3b, 0x23b4b3b, 0x33c4c3c, 0x24a2e0, 0x24b2e0,
0x34c2e0, 0x22c592c, 0x22c5a2c, 0x22c5b2c, 0x2592e0, 0x25a2e0, 0x25b2e0, 0x24a594a,
0x2592e0, 0x25a2e0, 0x25b2e0, 0x23b593b, 0x23b5a3b, 0x23b5b3b, 0x2592e0, 0x25a2e0,
0x25b2e0, 0x22c3b2c, 0x23b2e0, 0x33c2e0, 0x43d2e0, 0x22c4a2c, 0x22c4b2c, 0x32c4c2c,
0x24a2e0, 0x24b2e0, 0x34c2e0, 0x23b4a3b, 0x23b4b3b, 0x33c4c3c, 0x24a2e0, 0x24b2e0,
0x34c2e0, 0x22c592c, 0x22c5a2c, 0x22c5b2c, 0x2592e0, 0x25a2e0, 0x25b2e0, 0x24a594a,
0x24a5a4a, 0x24b5b4b, 0x2592e0, 0x25a2e0, 0x25b2e0, 0x23b593b, 0x23b5a3b, 0x23b5b3b,
0x2592e0, 0x25a2e0, 0x25b2e0, 0x22c3b2c, 0x32c3c2c, 0x42d3d2d, 0x23b2e0, 0x33c2e0,
0x43d2e0, 0x22c4a2c, 0x22c4b2c, 0x32c4c2c, 0x24a2e0, 0x24b2e0, 0x34c2e0, 0x23b4a3b,
0x23b4b3b, 0x33c4c3c, 0x24a2e0, 0x24b2e0, 0x34c2e0, 0x22c592c, 0x22c5a2c, 0x22c5b2c,
0x2592e0, 0x25a2e0, 0x25b2e0, 0x24a594a, 0x24a5a4a, 0x24b5b4b, 0x2592e0, 0x25a2e0,
0x25b2e0, 0x23b593b, 0x23b5a3b, 0x23b5b3b, 0x2592e0, 0x25a2e0, 0x25b2e0, 0x22c3b2c,
0x32c3c2c, 0x42d3d2d, 0x23b2e0, 0x33c2e0, 0x43d2e0, (1U<<31) | 690, (1U<<31) | 735, (1U<<31) | 1951,
(1U<<31) | 596, (1U<<31) | 653, (1U<<31) | 2092, (1U<<31) | 3592, (1U<<31) | 3580, 0x28948989, 0x28a48a8a, (1U<<31) | 1953,
0x27a47a7a, 0x27b47b7b, (1U<<31) | 2094, (1U<<31) | 3592, (1U<<31) | 3580, 0x28948989, 0x28a48a8a, (1U<<31) | 1953,
0x27a47a7a, 0x27b47b7b, (1U<<31) | 2094, (1U<<31) | 3592, (1U<<31) | 3580, (1U<<31) | 725, (1U<<31) | 770, (1U<<31) | 1963,
(1U<<31) | 643, (1U<<31) | 676, (1U<<31) | 2104, (1U<<31) | 1940, (1U<<31) | 1895, (1U<<31) | 5616, (1U<<31) | 4757, (1U<<31) | 5178,
(1U<<31) | 5378, (1U<<31) | 5637, (1U<<31) | 4728, (1U<<31) | 5199, (1U<<31) | 5357, (1U<<31) | 5553, (1U<<31) | 5095, (1U<<31) | 5595,
(1U<<31) | 5147, (1U<<31) | 5294, (1U<<31) | 4655, (1U<<31) | 5315, (1U<<31) | 4676, (1U<<31) | 5532, (1U<<31) | 5074, (1U<<31) | 5574,
(1U<<31) | 5126, (1U<<31) | 5273, (1U<<31) | 4602, (1U<<31) | 5336, (1U<<31) | 4697, (1U<<31) | 1940, (1U<<31) | 1895, (1U<<31) | 1940,
(1U<<31) | 1895, 0x437c3c7c, 0x23b47a3b, 0x23b47b3b, 0x33c47c3c, (1U<<31) | 434, (1U<<31) | 445, (1U<<31) | 1629,
(1U<<31) | 412, (1U<<31) | 423, (1U<<31) | 2058, (1U<<31) | 1617, (1U<<31) | 1605, 0x48b8b8b, 0x47c7c7c, 0x48b8b8b,
0x47c7c7c, 0x48b8b8b, 0x47c7c7c, 0x4c4c3d, (1U<<31) | 1121, 0x4c4c3d, (1U<<31) | 1121, (1U<<31) | 1056,
0x3d3d3d, 0x5a8a8a, 0x5b8b8b, 0x5a5a5a, 0x5b5b5b, 0x3b3b3b, 0x3c3c3c, 0x3d3d3d,
0x2c2c2c, 0x2d2d2d, (1U<<31) | 1056, 0x4c7c7c, 0x4c4c4c, (1U<<31) | 1063, 0x3d3d4c, 0x3d3d3d,
0x3d3d3d, 0x3d3d3d, 0x2c2c2c, 0x2d2d2d, (1U<<31) | 1056, (1U<<31) | 1070, (1U<<31) | 1056, 0x4a4c4c,
0x595b5b, 0x3b3d3d, 0x44c4c, 0x45b5b, 0x43d3d, 0x4c4c4c, 0x5b5b5b, 0x3b3b3b,
0x3c3c3c, 0x3d3d3d, 0x4a4c4c, 0x595959, 0x595a5a, 0x595b5b, 0x3b3d3d, 0x44c4c,
0x45959, 0x45a5a, 0x45b5b, 0x43d3d, 0x4c4c4c, 0x595959, 0x5a5a5a, 0x5b5b5b,
0x3b3b3b, 0x3c3c3c, 0x3d3d3d, 0x4a4c4c, 0x595b5b, 0x3b3d3d, 0x44c4c, 0x45b5b,
0x43d3d, 0x4c4c4c, 0x5b5b5b, 0x3b3b3b, 0x3c3c3c, 0x3d3d3d, (1U<<31) | 4645, (1U<<31) | 4718,
(1U<<31) | 4778, (1U<<31) | 5116, (1U<<31) | 5168, (1U<<31) | 5220, 0x2898989, 0x28a8a8a, 0x28b8b8b, 0x27a7a7a,
0x27b7b7b, 0x37c7c7c, (1U<<31) | 725, (1U<<31) | 643, 0x428b8b8b, 0x437c7c7c, (1U<<31) | 1940, (1U<<31) | 1895,
0x2898989, 0x28a8a8a, 0x28b8b8b, 0x27a7a7a, 0x27b7b7b, 0x37c7c7c, (1U<<31) | 725, (1U<<31) | 643,
0x428b8b8b, 0x437c7c7c, (1U<<31) | 1940, (1U<<31) | 1895, (1U<<31) | 5627, (1U<<31) | 4768, (1U<<31) | 5189, (1U<<31) | 5389,
(1U<<31) | 5648, (1U<<31) | 4739, (1U<<31) | 5210, (1U<<31) | 5368, (1U<<31) | 5564, (1U<<31) | 5106, (1U<<31) | 5606, (1U<<31) | 5158,
(1U<<31) | 5305, (1U<<31) | 4666, (1U<<31) | 5326, (1U<<31) | 4687, 0x442e4b20, 0x442e4c30, 0x442e5b20, 0x442e5b20,
(1U<<31) | 5543, (1U<<31) | 5085, (1U<<31) | 5585, (1U<<31) | 5137, (1U<<31) | 5284, (1U<<31) | 4613, (1U<<31) | 5347, (1U<<31) | 4708,
0x49f2f, 0x48b8b, 0x47c7c, 0x48b8b8b, 0x47c7c7c, 0x49f2f, 0x4489894, 0x447a7a4,
0x4894, 0x4895, 0x4894, 0x4895, 0x47a4, 0x47a5, 0x47a4, 0x47a5,
0x47777, 0x48888, (1U<<31) | 5658, (1U<<31) | 5399, (1U<<31) | 5658, (1U<<31) | 5399, (1U<<31) | 6021, (1U<<31) | 6099,
(1U<<31) | 6134, (1U<<31) | 6595, (1U<<31) | 6753, (1U<<31) | 6763, 0x4a4a4a4a, 0x4b4b4b4b, 0x4c4c4c4c, 0x4a4a4a4a,
0x4b4b4b4b, 0x4c4c4c4c, 0x4a4a4a4a, 0x4b4b4b4b, 0x4c4c4c4c, 0x4a4a4a4a, 0x4b4b4b4b, 0x4c4c4c4c,
0x4a4a4a4a, 0x4b4b4b4b, 0x4c4c4c4c, 0x3b3b3b3b, 0x3c3c3c3c, 0x3d3d3d3d, (1U<<31) | 8256, (1U<<31) | 8326,
(1U<<31) | 8344, 0x7a4a7a7a, 0x7b4b7b7b, 0x7c4c7c7c, 0x59595959, 0x5a5a5a5a, 0x5b5b5b5b, 0x2c2c2c2c,
0x2d2d2d2d, (1U<<31) | 1054, 0x5b8b8b, 0x4c7c7c, 0x59595959, 0x5a5a5a5a, 0x5b5b5b5b, 0x59595959,
0x5a5a5a5a, 0x5b5b5b5b, 0x2c2c1c, 0x2d2d1d, (1U<<31) | 1047, 0x7a7a3b, 0x7b7b3c, 0x7c7c3d,
0x7b3b, 0x7c3c, 0x4a4a7a7a, 0x4b4b7b7b, 0x4c4c7c7c, 0x1a3b7a3b, 0x444, 0x555,
0x444, 0x555, 0x444, 0x555, 0x444, 0x555, 0x2e0, 0x2e0,
0x2e0, 0x0, 0x2e0, 0x2e0, 0x42e0, 0x52e0, (1U<<31) | 6577, (1U<<31) | 6614,
0x2e2e2, 0x2e2e2, 0x4, 0x5, 0x40, 0x50, (1U<<31) | 8274, (1U<<31) | 8335,
0x7a7a7a7a, 0x7b7b7b7b, 0x2e0, 0x2e0, 0x2e0, 0x2e0, 0x40, 0x50,
0x20, 0x2e40, 0x2e0, 0x2e0, 0x45959590, 0x4442, 0x4452, 0x4440,
0x4450, 0x0, 0x0, (1U<<31) | 1030, (1U<<31) | 9172, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
(1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
(1U<<31) | 1077, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
(1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 6475, (1U<<31) | 4962, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
(1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 8967, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
(1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 6488, (1U<<31) | 6488, (1U<<31) | 6488, (1U<<31) | 9177,
(1U<<31) | 9177, (1U<<31) | 6488, (1U<<31) | 6488, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 6488, (1U<<31) | 6488,
(1U<<31) | 6488, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
(1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177, (1U<<31) | 9177,
0x442e0, 0x2e2e0, 0x4440, 0x2595959, 0x25a5a5a, 0x25b5b5b, 0x40, 0x50,
0x4, 0x5, 0x4, 0x5, 0x4, 0x4, 0x45, (1U<<31) | 2165,
(1U<<31) | 4983, (1U<<31) | 5230, (1U<<31) | 2165, (1U<<31) | 4983, (1U<<31) | 5230, 0x44, 0x55, 0x5,
(1U<<31) | 5230, 0x2e0, 0x0, 0x2e0, 0x2e0, 0x2e2e, 0x50, 0x0,
0x0, 0x4a4a4a, 0x4a4a4a, 0x4a4a4a, 0x24a4a4a, 0x4a4a4a, 0x4a4a4a, 0x4a4a4a4a,
0x2e, 0x27a7a7a, 0x27a7a7a, 0x7a7a4, 0x7a7a4, 0x7a7a4, 0x7a7a4, 0x7a7a4,
0x7a7a4, (1U<<31) | 8283, (1U<<31) | 8976, (1U<<31) | 8970, (1U<<31) | 7682, 0x7a4, 0x7a5, (1U<<31) | 8283,
(1U<<31) | 7682, 0x7a4, 0x7a5, 0x2e0, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a, 0x7a7a7a,
0x7a4, (1U<<31) | 1078, 0x7a7a, 0x7a7a, 0x7a7a, 0x7a7a, 0x0, 0x2e0,
0x7a7a4, 0x7a7a4, 0x7a7a4, 0x7a7a4, 0x7a7a4, 0x7a7a4, 0x2e0, 0x2898989,
0x2898989, 0x89894, 0x89894, 0x89894, 0x89894, 0x89894, 0x89894, 0x894a,
0x897a, 0x7a4a, 0x894, 0x895, 0x897a7a, 0x894a, 0x7a4a, 0x894,
0x895, 0x0, 0x2e2c2c0, 0x898989, 0x898989, 0x0, 0x898989, 0x898989,
0x894, 0x4a4a3b, 0x3b3b2c, 0x3b3b2c, 0x0, 0x2c2c2c, 0x3b3b3b, 0x3b3b4a,
0x2c4, 0x3b3b3b, 0x3b3b3b, 0x2c2c59, 0x4a4a4a, 0x595959, 0x3b3b3b, 0x44a4a,
0x45959, 0x43b3b, 0x4a4a4a, 0x3b3b3b, 0x44a4a, 0x43b3b, 0x4a4a4a, 0x595959,
0x3b3b3b, 0x44a4a, 0x45959, 0x43b3b, 0x89894, 0x89894, 0x89894, 0x89894,
0x89894, 0x89894, 0x898989, 0x7a7a7a, 0x898989, 0x7a7a7a, 0x898989, 0x7a7a7a,
0x2e2c, 0x442e0, 0x440, (1U<<31) | 8274, 0x7a7a7a7a, 0x2898989, 0x27a7a7a, 0x27a7a7a,
0x22c2c3b, 0x4a4a3b, 0x2c2c2c2c, 0x3b3b, 0x59594, 0x59594, 0x59594, 0x48989,
0x47a7a, 0x4898989, 0x47a7a7a, 0x344, 0x444, 0x244, 0x555, 0x242c42c4,
0x242c42c4, 0x242c42c4, 0x242c42c4, 0x242c42c4, 0x242c42c4, (1U<<31) | 402, 0x22c2c4, 0x22c2c4,
0x22c2c4, 0x22c2c4, 0x22c2c4, 0x22c2c4, 0x22c2c2c, 0x2c5959, 0x225959, 0x595959,
0x22595959, (1U<<31) | 9174, (1U<<31) | 9174, (1U<<31) | 9174, (1U<<31) | 9177, 0x4a4a4a, (1U<<31) | 9177, 0x3b3b3b,
(1U<<31) | 9177, 0x3b3b3b, (1U<<31) | 9177, 0x4a4a4a, (1U<<31) | 9177, 0x3b3b3b, (1U<<31) | 9177, 0x3b3b3b,
(1U<<31) | 9177, 0x2c2c3b, (1U<<31) | 9177, 0x3b3b3b, (1U<<31) | 9177, 0x2c2c2c, (1U<<31) | 9177, 0x2c2c2c,
(1U<<31) | 9177, 0x4a4a4a, (1U<<31) | 9177, 0x3b3b3b, 0x2e0, 0x0, (1U<<31) | 3573, (1U<<31) | 6570,
0x444, 0x555, 0x2220, 0x2220, (1U<<31) | 9618, 0x2220, 0x2220, 0x2220,
0x2, 0x52e20, (1U<<31) | 6516, 0x52e20, 0x0, 0x52e20, (1U<<31) | 9610, 0x20,
(1U<<31) | 1092, 0x4442, 0x2e0, 0x4442, 0x47a3b, 0x47b3b, 0x22c2c2c, 0x22d2d2d,
(1U<<31) | 394, 0x22c2c2c, 0x22d2d2d, (1U<<31) | 394, 0x2c2c2c, 0x2d2d2d, (1U<<31) | 1056, 0x0,
0x0, 0x40, 0x50, 0x40, 0x50, 0x40, 0x2e40, 0x2e50,
0x2e40, 0x2e50, 0x20, 0x4, 0x0, 0x45, 0x8989, 0x8a8a,
0x7a7a, 0x7b7b, 0x8989, 0x7a7a, (1U<<31) | 552, (1U<<31) | 586, (1U<<31) | 492, (1U<<31) | 514,
0x2c4a, 0x2c59, 0x2c3b, 0x4a59, 0x2c4a, 0x2c59, 0x2c3b, 0x4a59,
0x3b4a, 0x3b59, 0x3b4a, 0x3b59, 0x2c3b, 0x4a59, 0x3b4a, 0x4a4a4a4a,
0x594a4a59, 0x594a4a59, 0x4a4a4a4a, 0x594a4a59, 0x594a4a59, 0x4a3b3b4a, 0x3b3b3b3b, 0x4a3b3b4a,
0x3b3b3b3b, 0x4a3b3b4a, 0x4a3b3b4a, 0x2c2c2c2c, 0x2c2c2c, 0x4a4a4a, 0x595959, 0x3b3b3b,
0x2c2c2c, 0x4a4a4a, 0x595959, 0x3b3b3b, 0x0, 0x442e0, 0x442e0, 0x442e0,
0x442e0, 0x442e0, 0x442e0, 0x442e0, 0x442e0, 0x442e0, 0x442e0, 0x442e0,
0x442e0, 0x4440, 0x0, 0x4, 0x44, 0x2e2e, 0x44f0, 0x0,
0x4f0, 0x40, 0x4444, (1U<<31) | 3895, 0x4f0, 0x4f0, 0x4f4, 0x4f0,
0x4, 0x4, 0x4, 0x44, 0x44f, 0xcf4f, 0x4f4, 0x4f4,
0x4f4, 0x2e4f0, 0x2e4f0, 0x2e4f0, 0x2e4f0, 0x2e4f0, 0x44f4, 0x4f4,
0x4f0, 0x4f0, 0x44f0, 0x44f0, 0x44f4, 0x44f0, 0x4f4, 0x44f0,
0xcf4f0, 0x44f0, 0x2e4f0, 0x440, 0x44f0, 0x44f0, 0xcf4f0, 0x40,
0x44f0, 0x2e4f0, 0x444, 0x0, 0x4f0, 0x4f4, 0x4f4, 0x2e,
0x444, 0
};
static const unsigned char IIT_LongEncodingTable[] = {
/* 0 */ 4, 27, 2, 4, 4, 4, 4, 1, 4, 1, 1, 0,
/* 12 */ 0, 15, 0, 10, 4, 4, 4, 4, 4, 4, 4, 1, 1, 0,
/* 26 */ 0, 15, 0, 10, 4, 4, 4, 1, 1, 0,
/* 36 */ 0, 15, 2, 10, 4, 4, 4, 1, 1, 0,
/* 46 */ 0, 4, 4, 15, 3, 15, 7, 1, 1, 0,
/* 56 */ 0, 4, 4, 15, 0, 15, 7, 15, 7, 15, 7, 1, 1, 0,
/* 70 */ 21, 1, 15, 1, 1, 0,
/* 76 */ 0, 15, 3, 34, 1, 0, 4, 31, 3, 1, 0,
/* 87 */ 0, 15, 3, 15, 12, 4, 31, 3, 1, 0,
/* 97 */ 15, 3, 15, 7, 31, 3, 1, 0,
/* 105 */ 15, 3, 15, 7, 15, 7, 31, 3, 1, 0,
/* 115 */ 0, 15, 3, 33, 7, 31, 3, 1, 0,
/* 124 */ 15, 1, 15, 7, 15, 7, 4, 4, 4, 1, 0,
/* 135 */ 15, 1, 15, 7, 10, 4, 4, 4, 1, 0,
/* 145 */ 15, 2, 15, 7, 10, 4, 4, 4, 1, 0,
/* 155 */ 15, 0, 27, 3, 15, 7, 15, 7, 4, 4, 1, 0,
/* 167 */ 15, 1, 15, 12, 15, 7, 4, 4, 1, 0,
/* 177 */ 21, 15, 2, 1, 15, 7, 15, 7, 1, 0,
/* 187 */ 15, 2, 15, 7, 15, 7, 15, 7, 1, 0,
/* 197 */ 9, 1, 9, 8, 9, 8, 4, 9, 1, 0,
/* 207 */ 10, 7, 10, 7, 11, 6, 4, 10, 1, 0,
/* 217 */ 11, 6, 11, 6, 10, 7, 4, 10, 1, 0,
/* 227 */ 10, 1, 10, 7, 10, 7, 4, 10, 1, 0,
/* 237 */ 10, 1, 10, 8, 10, 8, 4, 10, 1, 0,
/* 247 */ 11, 1, 11, 7, 11, 7, 4, 11, 1, 0,
/* 257 */ 0, 43, 12, 1, 0,
/* 262 */ 43, 12, 1, 43, 12, 1, 0,
/* 269 */ 15, 3, 43, 12, 1, 0,
/* 275 */ 42, 7, 15, 1, 0,
/* 280 */ 0, 19, 15, 1, 0,
/* 285 */ 16, 1, 16, 1, 16, 1, 0,
/* 292 */ 4, 16, 1, 16, 1, 0,
/* 298 */ 21, 12, 4, 16, 1, 12, 4, 12, 4, 16, 1, 0,
/* 310 */ 12, 4, 12, 4, 12, 4, 16, 1, 0,
/* 319 */ 0, 15, 4, 15, 12, 15, 17, 1, 0,
/* 328 */ 2, 18, 1, 0,
/* 332 */ 36, 1, 36, 1, 36, 1, 0,
/* 339 */ 23, 12, 2, 12, 2, 12, 2, 12, 2, 36, 1, 0,
/* 351 */ 47, 1, 47, 1, 47, 1, 0,
/* 358 */ 21, 13, 4, 47, 1, 13, 4, 13, 4, 47, 1, 0,
/* 370 */ 13, 4, 13, 4, 13, 4, 47, 1, 0,
/* 379 */ 50, 1, 50, 1, 50, 1, 0,
/* 386 */ 21, 12, 2, 12, 2, 50, 1, 0,
/* 394 */ 16, 2, 16, 2, 16, 2, 2, 0,
/* 402 */ 12, 2, 12, 2, 4, 12, 2, 4, 2, 0,
/* 412 */ 10, 7, 10, 7, 10, 7, 10, 4, 4, 2, 0,
/* 423 */ 11, 7, 11, 7, 11, 7, 11, 4, 4, 2, 0,
/* 434 */ 9, 8, 9, 8, 9, 8, 9, 5, 4, 2, 0,
/* 445 */ 10, 8, 10, 8, 10, 8, 10, 5, 4, 2, 0,
/* 456 */ 10, 4, 10, 4, 14, 2, 10, 4, 10, 4, 2, 0,
/* 468 */ 10, 4, 10, 4, 14, 2, 9, 5, 10, 4, 2, 0,
/* 480 */ 10, 4, 10, 4, 14, 2, 10, 5, 10, 4, 2, 0,
/* 492 */ 10, 7, 10, 7, 10, 7, 10, 4, 2, 0,
/* 502 */ 11, 4, 11, 4, 14, 2, 11, 4, 11, 4, 2, 0,
/* 514 */ 11, 7, 11, 7, 11, 7, 11, 4, 2, 0,
/* 524 */ 27, 4, 2, 0,
/* 528 */ 9, 5, 9, 5, 14, 2, 10, 4, 9, 5, 2, 0,
/* 540 */ 9, 5, 9, 5, 14, 2, 9, 5, 9, 5, 2, 0,
/* 552 */ 9, 8, 9, 8, 9, 8, 9, 5, 2, 0,
/* 562 */ 10, 5, 10, 5, 14, 2, 10, 4, 10, 5, 2, 0,
/* 574 */ 10, 5, 10, 5, 14, 2, 10, 5, 10, 5, 2, 0,
/* 586 */ 10, 8, 10, 8, 10, 8, 10, 5, 2, 0,
/* 596 */ 10, 7, 10, 7, 10, 7, 4, 10, 7, 2, 0,
/* 607 */ 10, 7, 10, 7, 14, 2, 10, 4, 10, 7, 2, 0,
/* 619 */ 10, 7, 10, 7, 14, 2, 9, 5, 10, 7, 2, 0,
/* 631 */ 10, 7, 10, 7, 14, 2, 10, 5, 10, 7, 2, 0,
/* 643 */ 10, 7, 10, 7, 10, 7, 10, 7, 2, 0,
/* 653 */ 11, 7, 11, 7, 11, 7, 4, 11, 7, 2, 0,
/* 664 */ 11, 7, 11, 7, 14, 2, 11, 4, 11, 7, 2, 0,
/* 676 */ 11, 7, 11, 7, 11, 7, 11, 7, 2, 0,
/* 686 */ 27, 7, 2, 0,
/* 690 */ 9, 8, 9, 8, 9, 8, 4, 9, 8, 2, 0,
/* 701 */ 9, 8, 9, 8, 14, 2, 10, 4, 9, 8, 2, 0,
/* 713 */ 9, 8, 9, 8, 14, 2, 9, 5, 9, 8, 2, 0,
/* 725 */ 9, 8, 9, 8, 9, 8, 9, 8, 2, 0,
/* 735 */ 10, 8, 10, 8, 10, 8, 4, 10, 8, 2, 0,
/* 746 */ 10, 8, 10, 8, 14, 2, 10, 4, 10, 8, 2, 0,
/* 758 */ 10, 8, 10, 8, 14, 2, 10, 5, 10, 8, 2, 0,
/* 770 */ 10, 8, 10, 8, 10, 8, 10, 8, 2, 0,
/* 780 */ 11, 2, 11, 2, 11, 2, 11, 2, 11, 2, 11, 2, 11, 2, 0,
/* 795 */ 36, 1, 36, 1, 50, 1, 12, 2, 0,
/* 804 */ 36, 1, 36, 1, 12, 2, 12, 2, 0,
/* 813 */ 50, 1, 12, 2, 12, 2, 0,
/* 820 */ 36, 1, 12, 2, 12, 2, 12, 2, 12, 2, 0,
/* 831 */ 21, 12, 2, 4, 12, 2, 12, 2, 12, 2, 0,
/* 842 */ 21, 12, 2, 4, 12, 2, 12, 2, 0,
/* 851 */ 21, 12, 2, 4, 11, 3, 11, 3, 12, 2, 0,
/* 862 */ 21, 12, 2, 4, 12, 2, 0,
/* 869 */ 21, 12, 2, 4, 10, 4, 10, 4, 12, 2, 0,
/* 880 */ 43, 12, 2, 43, 12, 2, 43, 12, 2, 0,
/* 890 */ 0, 50, 1, 14, 2, 0,
/* 896 */ 18, 4, 4, 14, 2, 14, 2, 14, 2, 14, 2, 0,
/* 908 */ 18, 4, 14, 2, 14, 2, 14, 2, 0,
/* 917 */ 0, 14, 2, 14, 2, 14, 2, 4, 14, 2, 0,
/* 928 */ 21, 4, 14, 2, 14, 2, 4, 14, 2, 0,
/* 938 */ 21, 5, 14, 2, 14, 2, 4, 14, 2, 0,
/* 948 */ 15, 4, 15, 7, 14, 2, 14, 2, 4, 14, 2, 0,
/* 960 */ 21, 4, 14, 2, 14, 2, 4, 4, 14, 2, 0,
/* 971 */ 21, 5, 14, 2, 14, 2, 4, 4, 14, 2, 0,
/* 982 */ 14, 2, 14, 2, 4, 4, 4, 14, 2, 0,
/* 992 */ 18, 4, 4, 4, 14, 2, 0,
/* 999 */ 21, 4, 4, 14, 2, 0,
/* 1005 */ 14, 2, 14, 2, 4, 4, 5, 14, 2, 0,
/* 1015 */ 21, 5, 5, 14, 2, 0,
/* 1021 */ 21, 2, 9, 5, 9, 5, 14, 2, 0,
/* 1030 */ 0, 17, 17, 14, 2, 0,
/* 1036 */ 14, 2, 18, 14, 2, 0,
/* 1042 */ 42, 7, 15, 2, 0,
/* 1047 */ 16, 1, 16, 2, 16, 2, 0,
/* 1054 */ 16, 2, 16, 2, 16, 2, 16, 2, 0,
/* 1063 */ 13, 3, 16, 2, 16, 2, 0,
/* 1070 */ 11, 5, 16, 2, 16, 2, 0,
/* 1077 */ 17, 17, 17, 2, 0,
/* 1082 */ 0, 5, 4, 4, 4, 3, 3, 3, 3, 0,
/* 1092 */ 51, 3, 3, 0,
/* 1096 */ 21, 12, 2, 4, 11, 3, 11, 3, 0,
/* 1105 */ 21, 11, 3, 4, 11, 3, 11, 3, 0,
/* 1114 */ 21, 11, 3, 4, 11, 3, 0,
/* 1121 */ 16, 2, 13, 3, 13, 3, 0,
/* 1128 */ 5, 31, 3, 1, 15, 3, 0,
/* 1135 */ 42, 7, 31, 3, 1, 15, 3, 0,
/* 1143 */ 46, 7, 46, 7, 31, 3, 1, 15, 3, 0,
/* 1153 */ 43, 12, 1, 15, 3, 0,
/* 1159 */ 30, 7, 15, 3, 0,
/* 1164 */ 42, 7, 31, 3, 1, 42, 7, 15, 3, 0,
/* 1174 */ 42, 7, 42, 7, 15, 3, 0,
/* 1181 */ 44, 7, 44, 7, 15, 3, 0,
/* 1188 */ 15, 3, 15, 7, 15, 7, 31, 3, 1, 4, 0,
/* 1199 */ 9, 5, 9, 5, 14, 2, 10, 4, 9, 1, 4, 0,
/* 1211 */ 9, 8, 9, 8, 14, 2, 10, 4, 9, 1, 4, 0,
/* 1223 */ 10, 4, 10, 4, 14, 2, 9, 5, 9, 1, 4, 0,
/* 1235 */ 9, 5, 9, 5, 14, 2, 9, 5, 9, 1, 4, 0,
/* 1247 */ 10, 7, 10, 7, 14, 2, 9, 5, 9, 1, 4, 0,
/* 1259 */ 9, 8, 9, 8, 14, 2, 9, 5, 9, 1, 4, 0,
/* 1271 */ 10, 4, 10, 4, 14, 2, 10, 4, 10, 1, 4, 0,
/* 1283 */ 10, 5, 10, 5, 14, 2, 10, 4, 10, 1, 4, 0,
/* 1295 */ 10, 7, 10, 7, 14, 2, 10, 4, 10, 1, 4, 0,
/* 1307 */ 10, 8, 10, 8, 14, 2, 10, 4, 10, 1, 4, 0,
/* 1319 */ 10, 4, 10, 4, 14, 2, 10, 5, 10, 1, 4, 0,
/* 1331 */ 10, 5, 10, 5, 14, 2, 10, 5, 10, 1, 4, 0,
/* 1343 */ 10, 7, 10, 7, 14, 2, 10, 5, 10, 1, 4, 0,
/* 1355 */ 10, 8, 10, 8, 14, 2, 10, 5, 10, 1, 4, 0,
/* 1367 */ 11, 1, 11, 8, 11, 8, 4, 11, 1, 4, 0,
/* 1378 */ 11, 4, 11, 4, 14, 2, 11, 4, 11, 1, 4, 0,
/* 1390 */ 11, 5, 11, 5, 14, 2, 11, 4, 11, 1, 4, 0,
/* 1402 */ 11, 7, 11, 7, 14, 2, 11, 4, 11, 1, 4, 0,
/* 1414 */ 11, 8, 11, 8, 14, 2, 11, 4, 11, 1, 4, 0,
/* 1426 */ 11, 4, 11, 4, 14, 2, 11, 5, 11, 1, 4, 0,
/* 1438 */ 11, 5, 11, 5, 14, 2, 11, 5, 11, 1, 4, 0,
/* 1450 */ 11, 7, 11, 7, 14, 2, 11, 5, 11, 1, 4, 0,
/* 1462 */ 11, 8, 11, 8, 14, 2, 11, 5, 11, 1, 4, 0,
/* 1474 */ 12, 1, 12, 7, 12, 7, 4, 12, 1, 4, 0,
/* 1485 */ 12, 4, 12, 4, 14, 2, 12, 4, 12, 1, 4, 0,
/* 1497 */ 12, 7, 12, 7, 14, 2, 12, 4, 12, 1, 4, 0,
/* 1509 */ 18, 15, 1, 4, 0,
/* 1514 */ 12, 4, 12, 4, 16, 1, 4, 0,
/* 1522 */ 36, 1, 50, 8, 36, 1, 4, 0,
/* 1530 */ 50, 8, 4, 50, 8, 36, 1, 4, 0,
/* 1539 */ 50, 8, 50, 8, 50, 8, 36, 1, 4, 0,
/* 1549 */ 13, 4, 13, 4, 47, 1, 4, 0,
/* 1557 */ 0, 50, 8, 5, 14, 2, 50, 1, 4, 0,
/* 1567 */ 0, 50, 8, 50, 8, 5, 5, 50, 1, 4, 0,
/* 1578 */ 50, 1, 50, 8, 50, 1, 4, 0,
/* 1586 */ 50, 8, 5, 50, 8, 50, 1, 4, 0,
/* 1595 */ 50, 8, 50, 8, 50, 8, 50, 1, 4, 0,
/* 1605 */ 10, 7, 10, 7, 10, 7, 10, 4, 4, 2, 4, 0,
/* 1617 */ 9, 8, 9, 8, 9, 8, 9, 5, 4, 2, 4, 0,
/* 1629 */ 11, 8, 11, 8, 11, 8, 11, 5, 4, 2, 4, 0,
/* 1641 */ 10, 4, 10, 4, 14, 2, 10, 4, 2, 4, 0,
/* 1652 */ 9, 5, 9, 5, 14, 2, 10, 4, 2, 4, 0,
/* 1663 */ 10, 5, 10, 5, 14, 2, 10, 4, 2, 4, 0,
/* 1674 */ 10, 7, 10, 7, 14, 2, 10, 4, 2, 4, 0,
/* 1685 */ 9, 8, 9, 8, 14, 2, 10, 4, 2, 4, 0,
/* 1696 */ 10, 8, 10, 8, 14, 2, 10, 4, 2, 4, 0,
/* 1707 */ 11, 4, 11, 4, 14, 2, 11, 4, 2, 4, 0,
/* 1718 */ 11, 5, 11, 5, 14, 2, 11, 4, 2, 4, 0,
/* 1729 */ 11, 7, 11, 7, 14, 2, 11, 4, 2, 4, 0,
/* 1740 */ 11, 8, 11, 8, 14, 2, 11, 4, 2, 4, 0,
/* 1751 */ 10, 4, 10, 4, 14, 2, 9, 5, 2, 4, 0,
/* 1762 */ 9, 5, 9, 5, 14, 2, 9, 5, 2, 4, 0,
/* 1773 */ 10, 7, 10, 7, 14, 2, 9, 5, 2, 4, 0,
/* 1784 */ 9, 8, 9, 8, 14, 2, 9, 5, 2, 4, 0,
/* 1795 */ 10, 4, 10, 4, 14, 2, 10, 5, 2, 4, 0,
/* 1806 */ 10, 5, 10, 5, 14, 2, 10, 5, 2, 4, 0,
/* 1817 */ 10, 7, 10, 7, 14, 2, 10, 5, 2, 4, 0,
/* 1828 */ 10, 8, 10, 8, 14, 2, 10, 5, 2, 4, 0,
/* 1839 */ 11, 4, 11, 4, 14, 2, 11, 5, 2, 4, 0,
/* 1850 */ 11, 5, 11, 5, 14, 2, 11, 5, 2, 4, 0,
/* 1861 */ 11, 7, 11, 7, 14, 2, 11, 5, 2, 4, 0,
/* 1872 */ 11, 8, 11, 8, 14, 2, 11, 5, 2, 4, 0,
/* 1883 */ 10, 7, 10, 7, 10, 7, 4, 10, 7, 2, 4, 0,
/* 1895 */ 10, 7, 10, 7, 10, 7, 10, 7, 2, 4, 0,
/* 1906 */ 10, 7, 10, 7, 9, 8, 10, 7, 2, 4, 0,
/* 1917 */ 9, 8, 9, 8, 9, 8, 4, 9, 8, 2, 4, 0,
/* 1929 */ 9, 8, 9, 8, 10, 7, 9, 8, 2, 4, 0,
/* 1940 */ 9, 8, 9, 8, 9, 8, 9, 8, 2, 4, 0,
/* 1951 */ 11, 8, 11, 8, 11, 8, 4, 11, 8, 2, 4, 0,
/* 1963 */ 11, 8, 11, 8, 11, 8, 11, 8, 2, 4, 0,
/* 1974 */ 12, 2, 12, 2, 12, 2, 12, 2, 4, 0,
/* 1984 */ 21, 12, 2, 4, 12, 2, 12, 2, 12, 2, 4, 0,
/* 1996 */ 21, 12, 2, 4, 12, 2, 12, 2, 4, 0,
/* 2006 */ 12, 2, 9, 5, 9, 5, 12, 2, 4, 0,
/* 2016 */ 21, 4, 14, 2, 14, 2, 4, 0,
/* 2024 */ 21, 5, 14, 2, 14, 2, 4, 0,
/* 2032 */ 15, 1, 15, 7, 14, 2, 14, 2, 4, 0,
/* 2042 */ 0, 50, 8, 5, 14, 2, 4, 0,
/* 2050 */ 13, 3, 16, 2, 16, 2, 4, 0,
/* 2058 */ 12, 7, 12, 7, 12, 7, 12, 4, 4, 3, 4, 0,
/* 2070 */ 12, 4, 12, 4, 14, 2, 12, 4, 3, 4, 0,
/* 2081 */ 12, 7, 12, 7, 14, 2, 12, 4, 3, 4, 0,
/* 2092 */ 12, 7, 12, 7, 12, 7, 4, 12, 7, 3, 4, 0,
/* 2104 */ 12, 7, 12, 7, 12, 7, 12, 7, 3, 4, 0,
/* 2115 */ 11, 3, 11, 3, 11, 3, 11, 3, 4, 0,
/* 2125 */ 21, 11, 3, 4, 11, 3, 11, 3, 11, 3, 4, 0,
/* 2137 */ 21, 11, 3, 4, 11, 3, 11, 3, 4, 0,
/* 2147 */ 0, 31, 3, 1, 14, 2, 15, 3, 4, 0,
/* 2157 */ 44, 7, 44, 7, 15, 3, 4, 0,
/* 2165 */ 21, 3, 4, 0,
/* 2169 */ 0, 15, 3, 31, 3, 1, 33, 7, 31, 3, 4, 0,
/* 2181 */ 15, 0, 4, 15, 10, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2194 */ 15, 0, 4, 4, 15, 10, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2208 */ 15, 0, 4, 7, 15, 10, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2222 */ 15, 0, 4, 4, 7, 15, 10, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2237 */ 15, 0, 4, 15, 10, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2252 */ 15, 0, 4, 4, 15, 10, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2268 */ 15, 0, 4, 7, 15, 10, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2284 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2301 */ 15, 0, 4, 15, 10, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2318 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2336 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2354 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2373 */ 15, 0, 4, 15, 10, 15, 15, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2392 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2412 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2432 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2453 */ 15, 0, 4, 15, 10, 7, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2469 */ 15, 0, 4, 4, 15, 10, 7, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2486 */ 15, 0, 4, 15, 10, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2501 */ 15, 0, 4, 4, 15, 10, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2517 */ 15, 0, 4, 15, 10, 15, 15, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2534 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2552 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2570 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 18, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2589 */ 15, 0, 4, 15, 10, 7, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2607 */ 15, 0, 4, 4, 15, 10, 7, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2626 */ 15, 0, 4, 15, 10, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2643 */ 15, 0, 4, 4, 15, 10, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2661 */ 15, 0, 4, 15, 10, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2680 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2700 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2720 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2741 */ 15, 0, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2764 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2788 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2812 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2837 */ 15, 0, 4, 15, 10, 7, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2857 */ 15, 0, 4, 4, 15, 10, 7, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2878 */ 15, 0, 4, 15, 10, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2897 */ 15, 0, 4, 4, 15, 10, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2917 */ 15, 0, 4, 15, 10, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2938 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2960 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 2982 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3005 */ 15, 0, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3030 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3056 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3082 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3109 */ 15, 0, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3138 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3168 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3198 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3229 */ 15, 0, 4, 15, 10, 7, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3251 */ 15, 0, 4, 4, 15, 10, 7, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3274 */ 15, 0, 4, 15, 10, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3295 */ 15, 0, 4, 4, 15, 10, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3317 */ 15, 0, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3344 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3372 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3400 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3429 */ 15, 0, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3460 */ 15, 0, 4, 4, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3492 */ 15, 0, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3524 */ 15, 0, 4, 4, 7, 15, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 18, 15, 23, 15, 23, 15, 23, 11, 4, 10, 4, 1, 4, 4, 0,
/* 3557 */ 21, 4, 1, 4, 4, 0,
/* 3563 */ 0, 15, 3, 33, 7, 5, 1, 4, 4, 0,
/* 3573 */ 21, 2, 4, 2, 4, 4, 0,
/* 3580 */ 10, 7, 10, 7, 10, 7, 10, 7, 2, 4, 4, 0,
/* 3592 */ 9, 8, 9, 8, 9, 8, 9, 8, 2, 4, 4, 0,
/* 3604 */ 36, 1, 36, 1, 50, 1, 12, 2, 4, 4, 0,
/* 3615 */ 36, 1, 36, 1, 12, 2, 12, 2, 4, 4, 0,
/* 3626 */ 21, 4, 1, 4, 4, 4, 0,
/* 3633 */ 36, 1, 36, 1, 12, 2, 12, 2, 4, 4, 4, 0,
/* 3645 */ 21, 15, 3, 4, 4, 4, 0,
/* 3652 */ 21, 4, 1, 4, 4, 4, 4, 0,
/* 3660 */ 21, 15, 3, 4, 4, 4, 4, 0,
/* 3668 */ 12, 2, 12, 2, 12, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3691 */ 40, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3714 */ 40, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3736 */ 10, 4, 10, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3750 */ 0, 15, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3763 */ 10, 7, 10, 7, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3777 */ 0, 15, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3789 */ 21, 4, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3799 */ 0, 5, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3809 */ 21, 4, 4, 4, 4, 4, 4, 4, 0,
/* 3818 */ 0, 15, 0, 10, 4, 4, 4, 4, 4, 4, 0,
/* 3829 */ 15, 3, 15, 7, 15, 11, 4, 4, 4, 4, 4, 4, 0,
/* 3842 */ 21, 4, 4, 4, 4, 4, 4, 0,
/* 3850 */ 0, 15, 0, 10, 4, 4, 4, 4, 4, 0,
/* 3860 */ 15, 0, 15, 7, 10, 4, 4, 4, 4, 4, 0,
/* 3871 */ 15, 2, 15, 7, 10, 4, 4, 4, 4, 4, 0,
/* 3882 */ 15, 1, 15, 7, 15, 7, 10, 4, 4, 4, 4, 4, 0,
/* 3895 */ 21, 4, 4, 4, 4, 4, 0,
/* 3902 */ 10, 4, 4, 4, 10, 4, 4, 4, 4, 0,
/* 3912 */ 15, 0, 15, 7, 10, 4, 4, 4, 4, 0,
/* 3922 */ 15, 2, 15, 7, 10, 4, 4, 4, 4, 0,
/* 3932 */ 15, 1, 15, 7, 15, 7, 10, 4, 4, 4, 4, 0,
/* 3944 */ 12, 4, 4, 4, 12, 4, 4, 4, 4, 0,
/* 3954 */ 13, 4, 4, 4, 13, 4, 4, 4, 4, 0,
/* 3964 */ 21, 4, 4, 4, 4, 0,
/* 3970 */ 23, 3, 3, 3, 3, 5, 4, 4, 4, 0,
/* 3980 */ 21, 3, 3, 5, 4, 4, 4, 0,
/* 3988 */ 23, 4, 4, 4, 4, 5, 4, 4, 4, 0,
/* 3998 */ 21, 4, 4, 5, 4, 4, 4, 0,
/* 4006 */ 23, 4, 4, 4, 4, 5, 5, 4, 4, 4, 0,
/* 4017 */ 21, 5, 5, 5, 4, 4, 4, 0,
/* 4025 */ 23, 7, 7, 7, 7, 5, 5, 4, 4, 4, 0,
/* 4036 */ 23, 7, 7, 7, 7, 5, 4, 4, 4, 0,
/* 4046 */ 10, 7, 9, 3, 9, 3, 10, 7, 4, 4, 4, 0,
/* 4058 */ 10, 7, 10, 6, 10, 6, 10, 7, 4, 4, 4, 0,
/* 4070 */ 10, 7, 7, 7, 10, 7, 4, 4, 4, 0,
/* 4080 */ 12, 7, 9, 3, 9, 3, 12, 7, 4, 4, 4, 0,
/* 4092 */ 12, 7, 10, 6, 10, 6, 12, 7, 4, 4, 4, 0,
/* 4104 */ 12, 7, 7, 7, 12, 7, 4, 4, 4, 0,
/* 4114 */ 13, 7, 9, 3, 9, 3, 13, 7, 4, 4, 4, 0,
/* 4126 */ 13, 7, 10, 6, 10, 6, 13, 7, 4, 4, 4, 0,
/* 4138 */ 13, 7, 7, 7, 13, 7, 4, 4, 4, 0,
/* 4148 */ 15, 3, 15, 7, 15, 7, 15, 7, 4, 4, 4, 0,
/* 4160 */ 15, 0, 4, 15, 9, 11, 4, 4, 4, 0,
/* 4170 */ 0, 15, 2, 4, 15, 9, 11, 4, 4, 4, 0,
/* 4181 */ 15, 1, 15, 7, 15, 9, 11, 4, 4, 4, 0,
/* 4192 */ 15, 1, 15, 7, 15, 7, 15, 9, 11, 4, 4, 4, 0,
/* 4205 */ 15, 3, 15, 7, 15, 11, 4, 4, 4, 0,
/* 4215 */ 15, 0, 4, 15, 9, 15, 15, 11, 4, 4, 4, 0,
/* 4227 */ 0, 15, 2, 4, 15, 9, 15, 15, 11, 4, 4, 4, 0,
/* 4240 */ 15, 1, 15, 7, 15, 9, 15, 15, 11, 4, 4, 4, 0,
/* 4253 */ 15, 1, 15, 7, 15, 7, 15, 9, 15, 15, 11, 4, 4, 4, 0,
/* 4268 */ 15, 0, 4, 15, 9, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4282 */ 0, 15, 2, 4, 15, 9, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4297 */ 15, 1, 15, 7, 15, 9, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4312 */ 15, 1, 15, 7, 15, 7, 15, 9, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4329 */ 15, 0, 4, 15, 9, 15, 15, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4345 */ 0, 15, 2, 4, 15, 9, 15, 15, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4362 */ 15, 1, 15, 7, 15, 9, 15, 15, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4379 */ 15, 1, 15, 7, 15, 7, 15, 9, 15, 15, 15, 15, 15, 15, 11, 4, 4, 4, 0,
/* 4398 */ 16, 4, 16, 4, 16, 4, 4, 4, 0,
/* 4407 */ 15, 3, 15, 11, 15, 19, 4, 4, 4, 0,
/* 4417 */ 15, 3, 15, 12, 15, 19, 4, 4, 4, 0,
/* 4427 */ 23, 3, 3, 3, 3, 5, 4, 4, 0,
/* 4436 */ 21, 3, 3, 5, 4, 4, 0,
/* 4443 */ 23, 4, 4, 4, 4, 5, 4, 4, 0,
/* 4452 */ 21, 4, 4, 5, 4, 4, 0,
/* 4459 */ 23, 4, 4, 4, 4, 5, 5, 4, 4, 0,
/* 4469 */ 21, 5, 5, 5, 4, 4, 0,
/* 4476 */ 23, 7, 7, 7, 7, 5, 5, 4, 4, 0,
/* 4486 */ 23, 7, 7, 7, 7, 5, 4, 4, 0,
/* 4495 */ 21, 7, 1, 7, 4, 4, 0,
/* 4502 */ 21, 7, 1, 4, 7, 4, 4, 0,
/* 4510 */ 21, 4, 15, 3, 15, 7, 4, 4, 0,
/* 4519 */ 15, 3, 15, 7, 15, 7, 15, 7, 4, 4, 0,
/* 4530 */ 23, 15, 3, 15, 7, 15, 7, 15, 7, 15, 12, 15, 7, 15, 7, 15, 7, 15, 7, 4, 4, 0,
/* 4552 */ 22, 15, 3, 15, 7, 15, 7, 15, 12, 15, 7, 15, 7, 15, 7, 4, 4, 0,
/* 4570 */ 21, 15, 3, 15, 7, 15, 12, 15, 7, 15, 7, 4, 4, 0,
/* 4584 */ 15, 3, 15, 7, 45, 7, 45, 7, 4, 4, 0,
/* 4595 */ 50, 8, 50, 8, 4, 4, 0,
/* 4602 */ 0, 14, 2, 10, 1, 10, 4, 10, 4, 4, 0,
/* 4613 */ 0, 14, 2, 2, 10, 4, 10, 4, 4, 0,
/* 4623 */ 21, 10, 4, 4, 10, 4, 10, 4, 4, 0,
/* 4633 */ 21, 10, 4, 4, 10, 4, 10, 4, 10, 4, 4, 0,
/* 4645 */ 10, 4, 10, 4, 10, 4, 10, 4, 4, 0,
/* 4655 */ 0, 14, 2, 9, 1, 9, 5, 10, 4, 4, 0,
/* 4666 */ 0, 14, 2, 2, 9, 5, 10, 4, 4, 0,
/* 4676 */ 0, 14, 2, 10, 1, 10, 5, 10, 4, 4, 0,
/* 4687 */ 0, 14, 2, 2, 10, 5, 10, 4, 4, 0,
/* 4697 */ 0, 14, 2, 11, 1, 11, 4, 11, 4, 4, 0,
/* 4708 */ 0, 14, 2, 2, 11, 4, 11, 4, 4, 0,
/* 4718 */ 11, 4, 11, 4, 11, 4, 11, 4, 4, 0,
/* 4728 */ 0, 14, 2, 11, 1, 11, 5, 11, 4, 4, 0,
/* 4739 */ 0, 14, 2, 2, 11, 5, 11, 4, 4, 0,
/* 4749 */ 16, 1, 16, 1, 12, 4, 4, 0,
/* 4757 */ 0, 14, 2, 12, 1, 12, 4, 12, 4, 4, 0,
/* 4768 */ 0, 14, 2, 3, 12, 4, 12, 4, 4, 0,
/* 4778 */ 12, 4, 12, 4, 12, 4, 12, 4, 4, 0,
/* 4788 */ 13, 4, 13, 4, 12, 4, 12, 4, 4, 0,
/* 4798 */ 47, 1, 47, 1, 13, 4, 4, 0,
/* 4806 */ 13, 4, 13, 4, 13, 4, 13, 4, 4, 0,
/* 4816 */ 16, 4, 16, 4, 13, 4, 13, 4, 4, 0,
/* 4826 */ 16, 4, 16, 4, 13, 4, 4, 0,
/* 4834 */ 40, 4, 4, 4, 4, 4, 4, 4, 4, 15, 4, 4, 0,
/* 4847 */ 23, 4, 4, 4, 4, 15, 4, 4, 0,
/* 4856 */ 21, 4, 4, 15, 4, 4, 0,
/* 4863 */ 40, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 15, 4, 4, 0,
/* 4884 */ 23, 9, 6, 9, 6, 9, 6, 9, 6, 15, 4, 4, 0,
/* 4897 */ 40, 7, 7, 7, 7, 7, 7, 7, 7, 15, 4, 4, 0,
/* 4910 */ 0, 15, 4, 15, 11, 15, 15, 4, 4, 0,
/* 4920 */ 0, 15, 4, 15, 11, 15, 15, 15, 15, 4, 4, 0,
/* 4932 */ 0, 15, 4, 15, 11, 15, 15, 15, 15, 15, 15, 4, 4, 0,
/* 4946 */ 13, 4, 13, 4, 16, 4, 4, 0,
/* 4954 */ 16, 4, 16, 4, 16, 4, 4, 0,
/* 4962 */ 17, 17, 4, 4, 0,
/* 4967 */ 15, 0, 18, 4, 4, 0,
/* 4973 */ 0, 15, 4, 15, 11, 15, 19, 4, 4, 0,
/* 4983 */ 21, 4, 4, 0,
/* 4987 */ 23, 3, 3, 3, 3, 5, 4, 0,
/* 4995 */ 21, 3, 3, 5, 4, 0,
/* 5001 */ 0, 31, 3, 1, 15, 3, 5, 4, 0,
/* 5010 */ 23, 4, 4, 4, 4, 5, 4, 0,
/* 5018 */ 21, 4, 4, 5, 4, 0,
/* 5024 */ 23, 4, 4, 4, 4, 5, 5, 4, 0,
/* 5033 */ 21, 5, 5, 5, 4, 0,
/* 5039 */ 23, 7, 7, 7, 7, 5, 5, 4, 0,
/* 5048 */ 0, 50, 8, 50, 8, 5, 5, 4, 0,
/* 5057 */ 23, 7, 7, 7, 7, 5, 4, 0,
/* 5065 */ 50, 8, 50, 8, 50, 8, 5, 4, 0,
/* 5074 */ 0, 14, 2, 9, 1, 10, 4, 9, 5, 4, 0,
/* 5085 */ 0, 14, 2, 2, 10, 4, 9, 5, 4, 0,
/* 5095 */ 0, 14, 2, 9, 1, 9, 5, 9, 5, 4, 0,
/* 5106 */ 0, 14, 2, 2, 9, 5, 9, 5, 4, 0,
/* 5116 */ 9, 5, 9, 5, 9, 5, 9, 5, 4, 0,
/* 5126 */ 0, 14, 2, 10, 1, 10, 4, 10, 5, 4, 0,
/* 5137 */ 0, 14, 2, 2, 10, 4, 10, 5, 4, 0,
/* 5147 */ 0, 14, 2, 10, 1, 10, 5, 10, 5, 4, 0,
/* 5158 */ 0, 14, 2, 2, 10, 5, 10, 5, 4, 0,
/* 5168 */ 10, 5, 10, 5, 10, 5, 10, 5, 4, 0,
/* 5178 */ 0, 14, 2, 11, 1, 11, 4, 11, 5, 4, 0,
/* 5189 */ 0, 14, 2, 2, 11, 4, 11, 5, 4, 0,
/* 5199 */ 0, 14, 2, 11, 1, 11, 5, 11, 5, 4, 0,
/* 5210 */ 0, 14, 2, 2, 11, 5, 11, 5, 4, 0,
/* 5220 */ 11, 5, 11, 5, 11, 5, 11, 5, 4, 0,
/* 5230 */ 21, 5, 4, 0,
/* 5234 */ 0, 15, 4, 9, 6, 9, 6, 9, 6, 9, 6, 4, 0,
/* 5247 */ 0, 15, 4, 7, 7, 7, 7, 7, 7, 7, 7, 4, 0,
/* 5260 */ 50, 8, 7, 4, 0,
/* 5265 */ 21, 10, 4, 4, 10, 7, 4, 0,
/* 5273 */ 0, 14, 2, 10, 1, 10, 4, 10, 7, 4, 0,
/* 5284 */ 0, 14, 2, 2, 10, 4, 10, 7, 4, 0,
/* 5294 */ 0, 14, 2, 9, 1, 9, 5, 10, 7, 4, 0,
/* 5305 */ 0, 14, 2, 2, 9, 5, 10, 7, 4, 0,
/* 5315 */ 0, 14, 2, 10, 1, 10, 5, 10, 7, 4, 0,
/* 5326 */ 0, 14, 2, 2, 10, 5, 10, 7, 4, 0,
/* 5336 */ 0, 14, 2, 11, 1, 11, 4, 11, 7, 4, 0,
/* 5347 */ 0, 14, 2, 2, 11, 4, 11, 7, 4, 0,
/* 5357 */ 0, 14, 2, 11, 1, 11, 5, 11, 7, 4, 0,
/* 5368 */ 0, 14, 2, 2, 11, 5, 11, 7, 4, 0,
/* 5378 */ 0, 14, 2, 12, 1, 12, 4, 12, 7, 4, 0,
/* 5389 */ 0, 14, 2, 3, 12, 4, 12, 7, 4, 0,
/* 5399 */ 12, 7, 12, 7, 12, 7, 12, 7, 4, 0,
/* 5409 */ 15, 3, 31, 3, 1, 15, 7, 4, 0,
/* 5418 */ 15, 3, 31, 3, 1, 15, 7, 15, 7, 4, 0,
/* 5429 */ 21, 15, 3, 4, 15, 7, 15, 7, 4, 0,
/* 5439 */ 15, 3, 31, 3, 1, 15, 7, 15, 7, 15, 7, 4, 0,
/* 5452 */ 15, 3, 15, 7, 15, 7, 15, 7, 4, 0,
/* 5462 */ 15, 2, 4, 15, 7, 15, 7, 15, 7, 4, 0,
/* 5473 */ 15, 1, 25, 7, 4, 0,
/* 5479 */ 15, 3, 26, 7, 4, 0,
/* 5485 */ 15, 3, 44, 7, 4, 0,
/* 5491 */ 15, 3, 44, 7, 44, 7, 4, 0,
/* 5499 */ 15, 3, 15, 7, 44, 7, 44, 7, 4, 0,
/* 5509 */ 15, 3, 15, 7, 45, 7, 45, 7, 4, 0,
/* 5519 */ 50, 8, 8, 4, 0,
/* 5524 */ 21, 9, 5, 4, 9, 8, 4, 0,
/* 5532 */ 0, 14, 2, 9, 1, 10, 4, 9, 8, 4, 0,
/* 5543 */ 0, 14, 2, 2, 10, 4, 9, 8, 4, 0,
/* 5553 */ 0, 14, 2, 9, 1, 9, 5, 9, 8, 4, 0,
/* 5564 */ 0, 14, 2, 2, 9, 5, 9, 8, 4, 0,
/* 5574 */ 0, 14, 2, 10, 1, 10, 4, 10, 8, 4, 0,
/* 5585 */ 0, 14, 2, 2, 10, 4, 10, 8, 4, 0,
/* 5595 */ 0, 14, 2, 10, 1, 10, 5, 10, 8, 4, 0,
/* 5606 */ 0, 14, 2, 2, 10, 5, 10, 8, 4, 0,
/* 5616 */ 0, 14, 2, 11, 1, 11, 4, 11, 8, 4, 0,
/* 5627 */ 0, 14, 2, 2, 11, 4, 11, 8, 4, 0,
/* 5637 */ 0, 14, 2, 11, 1, 11, 5, 11, 8, 4, 0,
/* 5648 */ 0, 14, 2, 2, 11, 5, 11, 8, 4, 0,
/* 5658 */ 11, 8, 11, 8, 11, 8, 11, 8, 4, 0,
/* 5668 */ 50, 8, 50, 8, 5, 36, 1, 50, 8, 4, 0,
/* 5679 */ 50, 8, 4, 50, 8, 36, 1, 50, 8, 4, 0,
/* 5690 */ 50, 8, 50, 8, 5, 50, 8, 36, 1, 50, 8, 4, 0,
/* 5703 */ 50, 8, 5, 50, 8, 50, 8, 36, 1, 50, 8, 4, 0,
/* 5716 */ 50, 8, 50, 8, 50, 8, 50, 8, 36, 1, 50, 8, 4, 0,
/* 5730 */ 50, 8, 50, 8, 4, 50, 1, 50, 8, 4, 0,
/* 5741 */ 50, 8, 50, 8, 5, 5, 50, 1, 50, 8, 4, 0,
/* 5753 */ 50, 8, 50, 8, 5, 50, 1, 50, 8, 4, 0,
/* 5764 */ 50, 8, 7, 50, 1, 50, 8, 4, 0,
/* 5773 */ 50, 8, 8, 50, 1, 50, 8, 4, 0,
/* 5782 */ 50, 8, 4, 50, 8, 50, 1, 50, 8, 4, 0,
/* 5793 */ 50, 8, 5, 50, 8, 50, 1, 50, 8, 4, 0,
/* 5804 */ 50, 8, 50, 8, 7, 50, 8, 50, 1, 50, 8, 4, 0,
/* 5817 */ 50, 8, 50, 8, 8, 50, 8, 50, 1, 50, 8, 4, 0,
/* 5830 */ 50, 8, 7, 50, 8, 50, 8, 50, 1, 50, 8, 4, 0,
/* 5843 */ 50, 8, 8, 50, 8, 50, 8, 50, 1, 50, 8, 4, 0,
/* 5856 */ 50, 8, 50, 8, 50, 8, 50, 8, 50, 1, 50, 8, 4, 0,
/* 5870 */ 50, 8, 5, 14, 2, 50, 8, 4, 0,
/* 5879 */ 50, 8, 50, 8, 4, 50, 8, 4, 0,
/* 5888 */ 50, 8, 50, 8, 5, 5, 50, 8, 4, 0,
/* 5898 */ 50, 8, 50, 8, 50, 8, 5, 50, 8, 4, 0,
/* 5909 */ 50, 8, 50, 8, 7, 50, 8, 4, 0,
/* 5918 */ 50, 8, 50, 8, 8, 50, 8, 4, 0,
/* 5927 */ 50, 8, 4, 50, 8, 50, 8, 4, 0,
/* 5936 */ 50, 8, 50, 8, 5, 50, 8, 50, 8, 4, 0,
/* 5947 */ 50, 8, 50, 8, 7, 50, 8, 50, 8, 4, 0,
/* 5958 */ 50, 8, 50, 8, 8, 50, 8, 50, 8, 4, 0,
/* 5969 */ 50, 8, 5, 50, 8, 50, 8, 50, 8, 4, 0,
/* 5980 */ 50, 8, 7, 50, 8, 50, 8, 50, 8, 4, 0,
/* 5991 */ 50, 8, 8, 50, 8, 50, 8, 50, 8, 4, 0,
/* 6002 */ 50, 8, 50, 8, 50, 8, 50, 8, 50, 8, 4, 0,
/* 6014 */ 21, 10, 4, 4, 10, 4, 0,
/* 6021 */ 21, 10, 1, 10, 1, 10, 4, 10, 4, 0,
/* 6031 */ 21, 11, 3, 4, 10, 4, 10, 4, 0,
/* 6040 */ 21, 10, 4, 4, 10, 4, 10, 4, 0,
/* 6049 */ 10, 4, 15, 1, 7, 10, 7, 15, 11, 15, 15, 10, 4, 0,
/* 6063 */ 43, 9, 8, 43, 9, 8, 43, 9, 1, 43, 10, 4, 0,
/* 6076 */ 43, 11, 6, 43, 11, 6, 43, 10, 1, 43, 10, 4, 0,
/* 6089 */ 43, 10, 4, 43, 10, 4, 43, 10, 4, 0,
/* 6099 */ 21, 11, 1, 11, 1, 11, 4, 11, 4, 0,
/* 6109 */ 12, 4, 16, 1, 12, 4, 0,
/* 6116 */ 0, 16, 1, 14, 2, 12, 4, 0,
/* 6124 */ 0, 14, 2, 16, 1, 4, 4, 12, 4, 0,
/* 6134 */ 21, 12, 1, 12, 1, 12, 4, 12, 4, 0,
/* 6144 */ 16, 1, 16, 1, 12, 4, 12, 4, 0,
/* 6153 */ 12, 4, 16, 1, 12, 4, 12, 4, 0,
/* 6162 */ 13, 4, 16, 1, 12, 4, 12, 4, 0,
/* 6171 */ 0, 16, 1, 4, 4, 12, 4, 12, 4, 0,
/* 6181 */ 0, 16, 1, 4, 4, 13, 4, 12, 4, 0,
/* 6191 */ 21, 15, 3, 15, 7, 15, 12, 4, 0,
/* 6200 */ 22, 15, 3, 15, 7, 15, 7, 15, 12, 4, 0,
/* 6211 */ 23, 15, 3, 15, 7, 15, 7, 15, 7, 15, 12, 4, 0,
/* 6224 */ 13, 4, 47, 1, 13, 4, 0,
/* 6231 */ 0, 47, 1, 14, 2, 13, 4, 0,
/* 6239 */ 0, 14, 2, 16, 1, 4, 4, 13, 4, 0,
/* 6249 */ 0, 14, 2, 47, 1, 4, 4, 13, 4, 0,
/* 6259 */ 47, 1, 47, 1, 13, 4, 13, 4, 0,
/* 6268 */ 13, 4, 47, 1, 13, 4, 13, 4, 0,
/* 6277 */ 16, 4, 47, 1, 13, 4, 13, 4, 0,
/* 6286 */ 0, 47, 1, 4, 4, 13, 4, 13, 4, 0,
/* 6296 */ 16, 4, 16, 4, 13, 4, 13, 4, 0,
/* 6305 */ 0, 4, 4, 16, 4, 13, 4, 0,
/* 6313 */ 0, 47, 1, 4, 4, 16, 4, 13, 4, 0,
/* 6323 */ 16, 4, 16, 4, 13, 4, 0,
/* 6330 */ 40, 4, 4, 4, 4, 4, 4, 4, 4, 15, 4, 0,
/* 6342 */ 23, 4, 4, 4, 4, 15, 4, 0,
/* 6350 */ 21, 4, 4, 15, 4, 0,
/* 6356 */ 0, 14, 20, 5, 15, 4, 0,
/* 6363 */ 40, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 15, 4, 0,
/* 6383 */ 23, 9, 6, 9, 6, 9, 6, 9, 6, 15, 4, 0,
/* 6395 */ 40, 7, 7, 7, 7, 7, 7, 7, 7, 15, 4, 0,
/* 6407 */ 21, 15, 3, 15, 11, 15, 15, 4, 0,
/* 6416 */ 0, 15, 4, 15, 11, 15, 15, 15, 15, 4, 0,
/* 6427 */ 0, 15, 4, 15, 11, 15, 15, 15, 15, 15, 15, 4, 0,
/* 6440 */ 5, 19, 15, 4, 0,
/* 6445 */ 0, 14, 2, 47, 1, 4, 4, 16, 4, 0,
/* 6455 */ 0, 14, 2, 4, 4, 16, 4, 0,
/* 6463 */ 13, 4, 16, 4, 0,
/* 6468 */ 16, 4, 16, 4, 16, 4, 0,
/* 6475 */ 4, 17, 4, 0,
/* 6479 */ 0, 15, 4, 15, 12, 15, 17, 4, 0,
/* 6488 */ 17, 17, 4, 0,
/* 6492 */ 0, 18, 4, 0,
/* 6496 */ 14, 2, 18, 4, 0,
/* 6501 */ 5, 28, 35, 4, 0,
/* 6506 */ 5, 36, 1, 5, 0,
/* 6511 */ 5, 50, 1, 5, 0,
/* 6516 */ 51, 3, 3, 14, 2, 5, 0,
/* 6523 */ 0, 15, 3, 31, 3, 1, 33, 7, 31, 3, 5, 0,
/* 6535 */ 21, 5, 1, 4, 5, 0,
/* 6541 */ 50, 8, 50, 8, 4, 5, 0,
/* 6548 */ 16, 4, 16, 4, 13, 4, 5, 0,
/* 6556 */ 36, 1, 36, 1, 5, 5, 0,
/* 6563 */ 50, 1, 50, 1, 5, 5, 0,
/* 6570 */ 21, 2, 5, 2, 5, 5, 0,
/* 6577 */ 39, 4, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 4, 9, 5, 0,
/* 6595 */ 21, 9, 1, 9, 1, 9, 5, 9, 5, 0,
/* 6605 */ 21, 10, 4, 4, 9, 5, 9, 5, 0,
/* 6614 */ 40, 4, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 4, 9, 5, 9, 5, 0,
/* 6636 */ 21, 9, 5, 4, 9, 5, 9, 5, 0,
/* 6645 */ 49, 2, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 14, 2, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 9, 5, 0,
/* 6682 */ 28, 35, 9, 5, 9, 5, 0,
/* 6689 */ 28, 35, 9, 5, 0,
/* 6694 */ 43, 11, 6, 43, 11, 6, 43, 9, 1, 43, 9, 5, 0,
/* 6707 */ 43, 10, 7, 43, 10, 7, 43, 9, 1, 43, 9, 5, 0,
/* 6720 */ 31, 3, 1, 31, 3, 1, 15, 3, 43, 9, 5, 0,
/* 6732 */ 43, 9, 5, 43, 9, 5, 43, 9, 5, 0,
/* 6742 */ 15, 3, 31, 3, 1, 15, 7, 43, 9, 5, 0,
/* 6753 */ 21, 10, 1, 10, 1, 10, 5, 10, 5, 0,
/* 6763 */ 21, 11, 1, 11, 1, 11, 5, 11, 5, 0,
/* 6773 */ 0, 15, 3, 31, 3, 1, 15, 11, 5, 0,
/* 6783 */ 28, 35, 5, 0,
/* 6787 */ 41, 41, 5, 0,
/* 6791 */ 43, 10, 7, 43, 10, 7, 43, 11, 48, 43, 11, 48, 5, 0,
/* 6805 */ 0, 15, 4, 9, 6, 9, 6, 9, 6, 9, 6, 0,
/* 6817 */ 23, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 0,
/* 6867 */ 40, 7, 7, 7, 7, 7, 7, 7, 7, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 0,
/* 6917 */ 23, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 0,
/* 6943 */ 40, 7, 7, 7, 7, 7, 7, 7, 7, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 0,
/* 6969 */ 43, 9, 5, 43, 9, 5, 43, 9, 1, 43, 11, 6, 0,
/* 6982 */ 43, 9, 8, 43, 9, 8, 43, 9, 1, 43, 11, 6, 0,
/* 6995 */ 43, 10, 4, 43, 10, 4, 43, 10, 1, 43, 11, 6, 0,
/* 7008 */ 43, 10, 7, 43, 10, 7, 43, 10, 1, 43, 11, 6, 0,
/* 7021 */ 23, 4, 4, 4, 4, 5, 4, 7, 0,
/* 7030 */ 23, 4, 4, 4, 4, 5, 5, 4, 7, 0,
/* 7040 */ 23, 7, 7, 7, 7, 5, 5, 4, 7, 0,
/* 7050 */ 23, 7, 7, 7, 7, 5, 4, 7, 0,
/* 7059 */ 23, 4, 4, 4, 4, 5, 7, 0,
/* 7067 */ 23, 4, 4, 4, 4, 5, 5, 7, 0,
/* 7076 */ 23, 7, 7, 7, 7, 5, 5, 7, 0,
/* 7085 */ 23, 7, 7, 7, 7, 5, 7, 0,
/* 7093 */ 23, 4, 4, 4, 4, 5, 4, 7, 7, 0,
/* 7103 */ 23, 4, 4, 4, 4, 5, 5, 4, 7, 7, 0,
/* 7114 */ 23, 7, 7, 7, 7, 5, 5, 4, 7, 7, 0,
/* 7125 */ 23, 7, 7, 7, 7, 5, 4, 7, 7, 0,
/* 7135 */ 23, 4, 4, 4, 4, 5, 7, 7, 0,
/* 7144 */ 23, 4, 4, 4, 4, 5, 5, 7, 7, 0,
/* 7154 */ 23, 7, 7, 7, 7, 5, 5, 7, 7, 0,
/* 7164 */ 23, 7, 7, 7, 7, 5, 7, 7, 0,
/* 7173 */ 23, 4, 4, 4, 4, 5, 4, 7, 7, 7, 0,
/* 7184 */ 23, 4, 4, 4, 4, 5, 5, 4, 7, 7, 7, 0,
/* 7196 */ 23, 7, 7, 7, 7, 5, 5, 4, 7, 7, 7, 0,
/* 7208 */ 23, 7, 7, 7, 7, 5, 4, 7, 7, 7, 0,
/* 7219 */ 23, 4, 4, 4, 4, 5, 7, 7, 7, 0,
/* 7229 */ 23, 4, 4, 4, 4, 5, 5, 7, 7, 7, 0,
/* 7240 */ 23, 7, 7, 7, 7, 5, 5, 7, 7, 7, 0,
/* 7251 */ 23, 7, 7, 7, 7, 5, 7, 7, 7, 0,
/* 7261 */ 23, 4, 4, 4, 4, 5, 4, 7, 7, 7, 7, 0,
/* 7273 */ 23, 4, 4, 4, 4, 5, 5, 4, 7, 7, 7, 7, 0,
/* 7286 */ 23, 7, 7, 7, 7, 5, 5, 4, 7, 7, 7, 7, 0,
/* 7299 */ 23, 7, 7, 7, 7, 5, 4, 7, 7, 7, 7, 0,
/* 7311 */ 23, 4, 4, 4, 4, 5, 7, 7, 7, 7, 0,
/* 7322 */ 23, 4, 4, 4, 4, 5, 5, 7, 7, 7, 7, 0,
/* 7334 */ 23, 7, 7, 7, 7, 5, 5, 7, 7, 7, 7, 0,
/* 7346 */ 23, 7, 7, 7, 7, 5, 7, 7, 7, 7, 0,
/* 7357 */ 23, 4, 4, 4, 4, 5, 4, 7, 7, 7, 7, 7, 7, 0,
/* 7371 */ 23, 4, 4, 4, 4, 5, 5, 4, 7, 7, 7, 7, 7, 7, 0,
/* 7386 */ 23, 7, 7, 7, 7, 5, 5, 4, 7, 7, 7, 7, 7, 7, 0,
/* 7401 */ 23, 7, 7, 7, 7, 5, 4, 7, 7, 7, 7, 7, 7, 0,
/* 7415 */ 23, 4, 4, 4, 4, 5, 7, 7, 7, 7, 7, 7, 0,
/* 7428 */ 23, 4, 4, 4, 4, 5, 5, 7, 7, 7, 7, 7, 7, 0,
/* 7442 */ 23, 7, 7, 7, 7, 5, 5, 7, 7, 7, 7, 7, 7, 0,
/* 7456 */ 23, 7, 7, 7, 7, 5, 7, 7, 7, 7, 7, 7, 0,
/* 7469 */ 0, 15, 4, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7481 */ 23, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7531 */ 40, 7, 7, 7, 7, 7, 7, 7, 7, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 9, 6, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7581 */ 40, 7, 7, 7, 7, 7, 7, 7, 7, 9, 6, 9, 6, 9, 6, 9, 6, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7607 */ 23, 4, 4, 4, 4, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7623 */ 23, 4, 4, 4, 4, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7640 */ 23, 7, 7, 7, 7, 5, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7657 */ 23, 7, 7, 7, 7, 5, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0,
/* 7673 */ 21, 10, 4, 4, 10, 7, 10, 7, 0,
/* 7682 */ 17, 10, 7, 0,
/* 7686 */ 43, 9, 5, 43, 9, 5, 43, 9, 1, 43, 10, 7, 0,
/* 7699 */ 43, 9, 8, 43, 9, 8, 43, 9, 1, 43, 10, 7, 0,
/* 7712 */ 43, 11, 6, 43, 11, 6, 43, 10, 1, 43, 10, 7, 0,
/* 7725 */ 43, 11, 48, 43, 11, 48, 43, 11, 1, 43, 10, 7, 0,
/* 7738 */ 11, 48, 11, 48, 10, 7, 0,
/* 7745 */ 15, 3, 31, 3, 1, 15, 7, 0,
/* 7753 */ 15, 3, 34, 1, 0, 4, 31, 3, 1, 15, 7, 0,
/* 7765 */ 15, 3, 15, 12, 4, 31, 3, 1, 15, 7, 0,
/* 7776 */ 15, 3, 15, 7, 31, 3, 1, 15, 7, 0,
/* 7786 */ 15, 3, 33, 7, 31, 3, 1, 15, 7, 0,
/* 7796 */ 15, 3, 12, 2, 12, 2, 12, 2, 12, 2, 15, 7, 0,
/* 7809 */ 15, 3, 15, 7, 12, 2, 12, 2, 12, 2, 12, 2, 15, 7, 0,
/* 7824 */ 15, 3, 12, 2, 12, 2, 12, 2, 15, 7, 0,
/* 7835 */ 15, 3, 15, 7, 12, 2, 12, 2, 12, 2, 15, 7, 0,
/* 7848 */ 15, 3, 15, 7, 12, 2, 12, 2, 15, 7, 0,
/* 7859 */ 31, 3, 1, 31, 3, 1, 15, 3, 15, 7, 0,
/* 7870 */ 21, 4, 4, 4, 4, 4, 4, 4, 15, 3, 15, 7, 0,
/* 7883 */ 44, 7, 44, 7, 15, 3, 15, 7, 0,
/* 7892 */ 15, 1, 15, 7, 4, 15, 7, 4, 15, 7, 0,
/* 7903 */ 21, 15, 1, 31, 1, 1, 15, 7, 15, 7, 0,
/* 7914 */ 15, 3, 31, 3, 1, 15, 7, 15, 7, 0,
/* 7924 */ 15, 3, 31, 3, 1, 15, 7, 15, 7, 15, 7, 0,
/* 7936 */ 15, 3, 4, 15, 7, 15, 7, 15, 7, 0,
/* 7946 */ 15, 3, 15, 7, 4, 4, 15, 11, 15, 7, 0,
/* 7957 */ 15, 3, 15, 7, 4, 15, 11, 15, 7, 0,
/* 7967 */ 15, 3, 15, 7, 15, 7, 4, 15, 11, 15, 7, 0,
/* 7979 */ 15, 3, 15, 7, 15, 7, 15, 11, 15, 7, 0,
/* 7990 */ 15, 3, 15, 11, 4, 4, 4, 15, 19, 15, 7, 0,
/* 8002 */ 15, 3, 15, 7, 15, 11, 4, 4, 4, 15, 19, 15, 7, 0,
/* 8016 */ 15, 3, 15, 11, 4, 4, 15, 19, 15, 7, 0,
/* 8027 */ 15, 3, 15, 11, 15, 15, 4, 4, 15, 19, 15, 7, 0,
/* 8040 */ 15, 3, 15, 11, 4, 15, 19, 15, 7, 0,
/* 8050 */ 15, 3, 15, 11, 15, 15, 4, 15, 19, 15, 7, 0,
/* 8062 */ 15, 1, 25, 7, 0,
/* 8067 */ 15, 3, 25, 7, 0,
/* 8072 */ 15, 3, 25, 7, 25, 7, 0,
/* 8079 */ 15, 3, 26, 7, 0,
/* 8084 */ 15, 3, 26, 7, 26, 7, 0,
/* 8091 */ 0, 15, 3, 31, 3, 1, 33, 7, 0,
/* 8100 */ 0, 15, 3, 15, 7, 31, 3, 1, 33, 7, 0,
/* 8111 */ 0, 15, 3, 15, 7, 15, 7, 31, 3, 1, 33, 7, 0,
/* 8124 */ 0, 15, 3, 15, 7, 15, 7, 15, 7, 31, 3, 1, 33, 7, 0,
/* 8139 */ 15, 3, 15, 11, 33, 7, 0,
/* 8146 */ 15, 3, 15, 7, 31, 3, 1, 42, 7, 0,
/* 8156 */ 15, 3, 42, 7, 0,
/* 8161 */ 15, 3, 15, 7, 42, 7, 0,
/* 8168 */ 15, 3, 42, 7, 42, 7, 0,
/* 8175 */ 15, 3, 44, 7, 0,
/* 8180 */ 15, 3, 31, 3, 1, 15, 7, 44, 7, 0,
/* 8190 */ 15, 3, 15, 7, 44, 7, 0,
/* 8197 */ 15, 3, 44, 7, 44, 7, 0,
/* 8204 */ 15, 3, 15, 7, 44, 7, 44, 7, 0,
/* 8213 */ 15, 3, 15, 7, 45, 7, 45, 7, 0,
/* 8222 */ 15, 3, 46, 7, 0,
/* 8227 */ 15, 3, 31, 3, 1, 15, 7, 46, 7, 0,
/* 8237 */ 15, 3, 15, 7, 46, 7, 0,
/* 8244 */ 15, 3, 15, 7, 15, 7, 46, 7, 0,
/* 8253 */ 48, 7, 0,
/* 8256 */ 9, 8, 9, 8, 9, 5, 9, 8, 0,
/* 8265 */ 21, 9, 5, 4, 9, 8, 9, 8, 0,
/* 8274 */ 9, 8, 9, 8, 9, 8, 9, 8, 0,
/* 8283 */ 17, 9, 8, 0,
/* 8287 */ 43, 10, 4, 43, 10, 4, 43, 9, 1, 43, 9, 8, 0,
/* 8300 */ 43, 11, 6, 43, 11, 6, 43, 9, 1, 43, 9, 8, 0,
/* 8313 */ 43, 10, 7, 43, 10, 7, 43, 9, 1, 43, 9, 8, 0,
/* 8326 */ 10, 8, 10, 8, 10, 5, 10, 8, 0,
/* 8335 */ 10, 8, 10, 8, 10, 8, 10, 8, 0,
/* 8344 */ 11, 8, 11, 8, 11, 5, 11, 8, 0,
/* 8353 */ 15, 3, 15, 7, 31, 3, 1, 31, 3, 1, 15, 9, 0,
/* 8366 */ 15, 3, 31, 3, 1, 15, 9, 0,
/* 8374 */ 15, 3, 15, 7, 31, 3, 1, 15, 9, 0,
/* 8384 */ 15, 3, 15, 7, 15, 7, 31, 3, 1, 15, 9, 0,
/* 8396 */ 0, 15, 3, 14, 15, 7, 31, 3, 1, 15, 9, 0,
/* 8408 */ 15, 3, 15, 7, 14, 15, 7, 31, 3, 1, 15, 9, 0,
/* 8421 */ 21, 1, 15, 1, 15, 9, 0,
/* 8428 */ 15, 3, 15, 7, 15, 7, 15, 9, 0,
/* 8437 */ 15, 1, 15, 7, 15, 7, 15, 7, 15, 9, 0,
/* 8448 */ 0, 15, 3, 14, 15, 7, 15, 9, 0,
/* 8457 */ 15, 1, 42, 7, 15, 9, 0,
/* 8464 */ 15, 2, 42, 7, 15, 9, 0,
/* 8471 */ 15, 1, 15, 7, 42, 7, 15, 9, 0,
/* 8480 */ 15, 2, 15, 7, 42, 7, 15, 9, 0,
/* 8489 */ 15, 3, 15, 7, 31, 3, 1, 15, 11, 0,
/* 8499 */ 15, 3, 46, 7, 31, 3, 1, 15, 11, 0,
/* 8509 */ 15, 3, 4, 15, 7, 12, 2, 12, 2, 4, 15, 11, 0,
/* 8522 */ 15, 3, 4, 15, 7, 12, 2, 4, 15, 11, 0,
/* 8533 */ 15, 3, 15, 7, 4, 4, 4, 4, 15, 11, 0,
/* 8544 */ 21, 15, 3, 4, 15, 7, 4, 4, 4, 15, 11, 0,
/* 8556 */ 15, 3, 15, 7, 15, 7, 15, 7, 4, 4, 4, 15, 11, 0,
/* 8570 */ 21, 4, 15, 3, 15, 7, 4, 4, 15, 11, 0,
/* 8581 */ 21, 15, 3, 4, 15, 7, 4, 4, 15, 11, 0,
/* 8592 */ 15, 3, 4, 15, 7, 4, 15, 11, 0,
/* 8601 */ 15, 3, 15, 7, 15, 7, 4, 15, 11, 0,
/* 8611 */ 21, 15, 3, 4, 15, 7, 15, 7, 15, 7, 4, 15, 11, 0,
/* 8625 */ 21, 4, 4, 4, 4, 4, 4, 4, 15, 3, 15, 7, 15, 11, 0,
/* 8640 */ 15, 3, 15, 7, 15, 7, 15, 11, 0,
/* 8649 */ 15, 3, 15, 7, 15, 7, 15, 7, 15, 11, 0,
/* 8660 */ 15, 3, 4, 15, 7, 15, 7, 15, 7, 15, 11, 0,
/* 8672 */ 15, 3, 4, 4, 15, 7, 15, 7, 15, 7, 15, 11, 0,
/* 8685 */ 23, 15, 7, 15, 7, 15, 7, 15, 3, 15, 12, 0,
/* 8697 */ 22, 15, 7, 15, 7, 15, 3, 15, 12, 0,
/* 8707 */ 21, 15, 7, 15, 3, 15, 12, 0,
/* 8715 */ 23, 15, 7, 15, 7, 15, 7, 15, 7, 15, 7, 15, 7, 15, 7, 15, 3, 5, 15, 12, 0,
/* 8736 */ 22, 15, 7, 15, 7, 15, 7, 15, 7, 15, 7, 15, 3, 5, 15, 12, 0,
/* 8753 */ 21, 15, 7, 15, 7, 15, 7, 15, 3, 5, 15, 12, 0,
/* 8766 */ 0, 15, 3, 15, 7, 5, 15, 12, 0,
/* 8775 */ 0, 15, 3, 15, 7, 15, 7, 5, 15, 12, 0,
/* 8786 */ 0, 15, 3, 15, 7, 15, 7, 15, 7, 5, 15, 12, 0,
/* 8799 */ 21, 15, 3, 15, 7, 15, 12, 0,
/* 8807 */ 0, 15, 3, 15, 7, 15, 7, 15, 12, 0,
/* 8817 */ 22, 15, 3, 15, 7, 15, 7, 15, 12, 0,
/* 8827 */ 0, 15, 3, 15, 7, 15, 7, 15, 7, 15, 12, 0,
/* 8839 */ 23, 15, 3, 15, 7, 15, 7, 15, 7, 15, 12, 0,
/* 8851 */ 15, 3, 15, 7, 15, 7, 15, 9, 31, 3, 1, 15, 15, 0,
/* 8865 */ 0, 15, 3, 14, 15, 7, 15, 9, 31, 3, 1, 15, 15, 0,
/* 8879 */ 15, 3, 15, 7, 14, 15, 7, 15, 9, 31, 3, 1, 15, 15, 0,
/* 8894 */ 15, 3, 15, 7, 15, 7, 15, 9, 15, 15, 0,
/* 8905 */ 0, 15, 3, 14, 15, 7, 15, 9, 15, 15, 0,
/* 8916 */ 15, 3, 15, 7, 15, 11, 15, 15, 0,
/* 8925 */ 15, 3, 15, 11, 15, 15, 15, 15, 0,
/* 8934 */ 0, 15, 4, 15, 11, 15, 15, 15, 15, 0,
/* 8944 */ 15, 3, 15, 11, 15, 15, 15, 15, 15, 15, 0,
/* 8955 */ 0, 15, 4, 15, 11, 15, 15, 15, 15, 15, 15, 0,
/* 8967 */ 4, 17, 0,
/* 8970 */ 10, 7, 10, 7, 17, 0,
/* 8976 */ 9, 8, 17, 0,
/* 8980 */ 15, 3, 15, 7, 15, 8, 15, 7, 31, 3, 1, 15, 17, 0,
/* 8994 */ 31, 3, 1, 31, 3, 1, 15, 3, 15, 8, 31, 3, 1, 15, 17, 0,
/* 9010 */ 15, 3, 15, 7, 15, 8, 31, 3, 1, 15, 17, 0,
/* 9022 */ 15, 3, 15, 7, 15, 7, 15, 8, 31, 3, 1, 15, 17, 0,
/* 9036 */ 15, 3, 15, 7, 15, 11, 31, 3, 1, 15, 17, 0,
/* 9048 */ 0, 15, 3, 14, 15, 7, 15, 11, 31, 3, 1, 15, 17, 0,
/* 9062 */ 15, 3, 15, 7, 14, 15, 7, 15, 11, 31, 3, 1, 15, 17, 0,
/* 9077 */ 15, 3, 15, 7, 15, 11, 15, 7, 31, 11, 1, 15, 17, 0,
/* 9091 */ 15, 3, 15, 7, 15, 11, 31, 11, 1, 15, 17, 0,
/* 9103 */ 15, 3, 15, 7, 15, 8, 15, 7, 15, 17, 0,
/* 9114 */ 15, 3, 15, 7, 15, 11, 15, 7, 15, 17, 0,
/* 9125 */ 31, 3, 1, 15, 3, 15, 8, 15, 17, 0,
/* 9135 */ 15, 3, 15, 7, 15, 8, 15, 17, 0,
/* 9144 */ 0, 15, 3, 14, 15, 7, 15, 9, 15, 17, 0,
/* 9155 */ 15, 3, 15, 11, 15, 17, 0,
/* 9162 */ 15, 3, 14, 15, 7, 15, 11, 15, 17, 0,
/* 9172 */ 0, 14, 17, 17, 0,
/* 9177 */ 17, 17, 17, 0,
/* 9181 */ 15, 0, 18, 0,
/* 9185 */ 1, 18, 0,
/* 9188 */ 14, 2, 18, 0,
/* 9192 */ 15, 4, 18, 0,
/* 9196 */ 15, 2, 15, 12, 15, 18, 0,
/* 9203 */ 0, 19, 0,
/* 9206 */ 15, 1, 19, 0,
/* 9210 */ 1, 14, 2, 19, 0,
/* 9215 */ 21, 14, 2, 1, 14, 2, 4, 19, 0,
/* 9224 */ 15, 2, 15, 7, 19, 0,
/* 9230 */ 15, 2, 15, 7, 15, 7, 19, 0,
/* 9238 */ 15, 1, 15, 10, 19, 0,
/* 9244 */ 15, 2, 15, 10, 19, 0,
/* 9250 */ 15, 3, 15, 7, 15, 11, 4, 4, 4, 4, 4, 4, 15, 19, 0,
/* 9265 */ 15, 3, 15, 7, 15, 11, 4, 4, 4, 15, 19, 0,
/* 9277 */ 15, 3, 15, 11, 4, 15, 19, 0,
/* 9285 */ 15, 3, 15, 7, 15, 11, 4, 15, 19, 0,
/* 9295 */ 15, 3, 4, 15, 7, 15, 11, 4, 15, 19, 0,
/* 9306 */ 21, 15, 3, 15, 11, 15, 15, 4, 15, 19, 0,
/* 9317 */ 0, 15, 3, 4, 15, 11, 15, 19, 0,
/* 9326 */ 15, 3, 15, 7, 4, 15, 11, 15, 19, 0,
/* 9336 */ 15, 2, 15, 7, 15, 11, 15, 19, 0,
/* 9345 */ 15, 3, 4, 15, 7, 15, 11, 15, 19, 0,
/* 9355 */ 15, 2, 15, 7, 4, 19, 19, 0,
/* 9363 */ 31, 2, 1, 15, 2, 15, 7, 19, 19, 0,
/* 9373 */ 15, 2, 15, 7, 15, 7, 19, 19, 0,
/* 9382 */ 15, 2, 15, 7, 15, 7, 15, 7, 19, 19, 0,
/* 9393 */ 15, 2, 15, 9, 19, 19, 0,
/* 9400 */ 15, 1, 15, 10, 19, 19, 0,
/* 9407 */ 15, 2, 15, 10, 19, 19, 0,
/* 9414 */ 0, 19, 19, 19, 0,
/* 9419 */ 15, 3, 15, 7, 15, 11, 15, 16, 31, 3, 1, 15, 25, 0,
/* 9433 */ 15, 3, 15, 7, 15, 8, 15, 19, 31, 3, 1, 15, 25, 0,
/* 9447 */ 15, 3, 15, 11, 15, 16, 15, 25, 0,
/* 9456 */ 15, 3, 15, 7, 15, 8, 15, 19, 15, 25, 0,
/* 9467 */ 15, 3, 15, 12, 15, 19, 4, 4, 4, 15, 27, 0,
/* 9479 */ 0, 15, 4, 15, 11, 15, 19, 4, 4, 15, 27, 0,
/* 9491 */ 15, 0, 29, 0,
/* 9495 */ 0, 1, 29, 0,
/* 9499 */ 1, 14, 2, 1, 29, 0,
/* 9505 */ 22, 14, 2, 14, 2, 14, 2, 14, 2, 14, 2, 29, 0,
/* 9518 */ 0, 5, 4, 14, 2, 4, 29, 0,
/* 9526 */ 5, 5, 4, 14, 2, 4, 29, 0,
/* 9534 */ 18, 5, 4, 15, 4, 4, 4, 29, 0,
/* 9543 */ 0, 5, 4, 29, 0,
/* 9548 */ 4, 28, 35, 0,
/* 9552 */ 28, 35, 9, 5, 9, 5, 28, 35, 0,
/* 9561 */ 4, 4, 28, 35, 28, 35, 0,
/* 9568 */ 28, 35, 28, 35, 28, 35, 28, 35, 0,
/* 9577 */ 5, 41, 0,
/* 9580 */ 8, 41, 0,
/* 9583 */ 41, 41, 41, 41, 0,
/* 9588 */ 43, 10, 7, 43, 10, 7, 43, 11, 48, 43, 11, 48, 0,
/* 9601 */ 10, 7, 10, 7, 11, 48, 11, 48, 0,
/* 9610 */ 0, 3, 3, 14, 2, 5, 51, 0,
/* 9618 */ 51, 3, 3, 3, 51, 51, 51, 0,
255
};
#endif
// Add parameter attributes that are not common to all intrinsics.
#ifdef GET_INTRINSIC_ATTRIBUTES
AttributeList Intrinsic::getAttributes(LLVMContext &C, ID id) {
static const uint8_t IntrinsicsToAttributesMap[] = {
1, // llvm.abs
2, // llvm.addressofreturnaddress
3, // llvm.adjust.trampoline
4, // llvm.annotation
5, // llvm.assume
6, // llvm.bitreverse
6, // llvm.bswap
4, // llvm.call.preallocated.arg
4, // llvm.call.preallocated.setup
4, // llvm.call.preallocated.teardown
6, // llvm.canonicalize
6, // llvm.ceil
7, // llvm.clear_cache
8, // llvm.codeview.annotation
2, // llvm.convert.from.fp16
2, // llvm.convert.to.fp16
6, // llvm.copysign
7, // llvm.coro.alloc
7, // llvm.coro.alloca.alloc
7, // llvm.coro.alloca.free
7, // llvm.coro.alloca.get
7, // llvm.coro.async.context.alloc
7, // llvm.coro.async.context.dealloc
7, // llvm.coro.async.resume
9, // llvm.coro.begin
10, // llvm.coro.destroy
11, // llvm.coro.done
7, // llvm.coro.end
7, // llvm.coro.end.async
12, // llvm.coro.frame
13, // llvm.coro.free
14, // llvm.coro.id
7, // llvm.coro.id.async
7, // llvm.coro.id.retcon
7, // llvm.coro.id.retcon.once
12, // llvm.coro.noop
15, // llvm.coro.param
12, // llvm.coro.prepare.async
12, // llvm.coro.prepare.retcon
16, // llvm.coro.promise
10, // llvm.coro.resume
7, // llvm.coro.save
12, // llvm.coro.size
17, // llvm.coro.subfn.addr
7, // llvm.coro.suspend
7, // llvm.coro.suspend.async
7, // llvm.coro.suspend.retcon
6, // llvm.cos
1, // llvm.ctlz
6, // llvm.ctpop
1, // llvm.cttz
6, // llvm.dbg.addr
6, // llvm.dbg.declare
6, // llvm.dbg.label
6, // llvm.dbg.value
7, // llvm.debugtrap
2, // llvm.donothing
7, // llvm.eh.dwarf.cfa
12, // llvm.eh.exceptioncode
12, // llvm.eh.exceptionpointer
2, // llvm.eh.recoverfp
7, // llvm.eh.return.i32
7, // llvm.eh.return.i64
12, // llvm.eh.sjlj.callsite
7, // llvm.eh.sjlj.functioncontext
18, // llvm.eh.sjlj.longjmp
12, // llvm.eh.sjlj.lsda
7, // llvm.eh.sjlj.setjmp
7, // llvm.eh.sjlj.setup.dispatch
12, // llvm.eh.typeid.for
7, // llvm.eh.unwind.init
6, // llvm.exp
6, // llvm.exp2
2, // llvm.expect
2, // llvm.expect.with.probability
19, // llvm.experimental.constrained.ceil
19, // llvm.experimental.constrained.cos
19, // llvm.experimental.constrained.exp
19, // llvm.experimental.constrained.exp2
19, // llvm.experimental.constrained.fadd
19, // llvm.experimental.constrained.fcmp
19, // llvm.experimental.constrained.fcmps
19, // llvm.experimental.constrained.fdiv
19, // llvm.experimental.constrained.floor
19, // llvm.experimental.constrained.fma
19, // llvm.experimental.constrained.fmul
19, // llvm.experimental.constrained.fmuladd
19, // llvm.experimental.constrained.fpext
19, // llvm.experimental.constrained.fptosi
19, // llvm.experimental.constrained.fptoui
19, // llvm.experimental.constrained.fptrunc
19, // llvm.experimental.constrained.frem
19, // llvm.experimental.constrained.fsub
19, // llvm.experimental.constrained.llrint
19, // llvm.experimental.constrained.llround
19, // llvm.experimental.constrained.log
19, // llvm.experimental.constrained.log10
19, // llvm.experimental.constrained.log2
19, // llvm.experimental.constrained.lrint
19, // llvm.experimental.constrained.lround
19, // llvm.experimental.constrained.maximum
19, // llvm.experimental.constrained.maxnum
19, // llvm.experimental.constrained.minimum
19, // llvm.experimental.constrained.minnum
19, // llvm.experimental.constrained.nearbyint
19, // llvm.experimental.constrained.pow
19, // llvm.experimental.constrained.powi
19, // llvm.experimental.constrained.rint
19, // llvm.experimental.constrained.round
19, // llvm.experimental.constrained.roundeven
19, // llvm.experimental.constrained.sin
19, // llvm.experimental.constrained.sitofp
19, // llvm.experimental.constrained.sqrt
19, // llvm.experimental.constrained.trunc
19, // llvm.experimental.constrained.uitofp
10, // llvm.experimental.deoptimize
20, // llvm.experimental.gc.relocate
21, // llvm.experimental.gc.result
22, // llvm.experimental.gc.statepoint
23, // llvm.experimental.guard
23, // llvm.experimental.patchpoint.i64
23, // llvm.experimental.patchpoint.void
23, // llvm.experimental.stackmap
24, // llvm.experimental.vector.extract
25, // llvm.experimental.vector.insert
26, // llvm.experimental.widenable.condition
6, // llvm.fabs
6, // llvm.floor
19, // llvm.flt.rounds
6, // llvm.fma
6, // llvm.fmuladd
6, // llvm.fptosi.sat
6, // llvm.fptoui.sat
27, // llvm.frameaddress
6, // llvm.fshl
6, // llvm.fshr
3, // llvm.gcread
7, // llvm.gcroot
28, // llvm.gcwrite
2, // llvm.get.active.lane.mask
4, // llvm.get.dynamic.area.offset
29, // llvm.hwasan.check.memaccess
29, // llvm.hwasan.check.memaccess.shortgranules
4, // llvm.icall.branch.funnel
30, // llvm.init.trampoline
7, // llvm.instrprof.increment
7, // llvm.instrprof.increment.step
7, // llvm.instrprof.value.profile
31, // llvm.invariant.end
32, // llvm.invariant.start
33, // llvm.is.constant
26, // llvm.launder.invariant.group
32, // llvm.lifetime.end
32, // llvm.lifetime.start
6, // llvm.llrint
6, // llvm.llround
34, // llvm.load.relative
2, // llvm.localaddress
4, // llvm.localescape
25, // llvm.localrecover
6, // llvm.log
6, // llvm.log10
6, // llvm.log2
35, // llvm.loop.decrement
35, // llvm.loop.decrement.reg
6, // llvm.lrint
6, // llvm.lround
36, // llvm.masked.compressstore
37, // llvm.masked.expandload
38, // llvm.masked.gather
39, // llvm.masked.load
40, // llvm.masked.scatter
41, // llvm.masked.store
42, // llvm.matrix.column.major.load
43, // llvm.matrix.column.major.store
44, // llvm.matrix.multiply
45, // llvm.matrix.transpose
6, // llvm.maximum
6, // llvm.maxnum
46, // llvm.memcpy
47, // llvm.memcpy.element.unordered.atomic
48, // llvm.memcpy.inline
49, // llvm.memmove
47, // llvm.memmove.element.unordered.atomic
50, // llvm.memset
51, // llvm.memset.element.unordered.atomic
6, // llvm.minimum
6, // llvm.minnum
6, // llvm.nearbyint
7, // llvm.objc.arc.annotation.bottomup.bbend
7, // llvm.objc.arc.annotation.bottomup.bbstart
7, // llvm.objc.arc.annotation.topdown.bbend
7, // llvm.objc.arc.annotation.topdown.bbstart
7, // llvm.objc.autorelease
7, // llvm.objc.autoreleasePoolPop
7, // llvm.objc.autoreleasePoolPush
7, // llvm.objc.autoreleaseReturnValue
7, // llvm.objc.clang.arc.use
7, // llvm.objc.copyWeak
7, // llvm.objc.destroyWeak
7, // llvm.objc.initWeak
7, // llvm.objc.loadWeak
7, // llvm.objc.loadWeakRetained
7, // llvm.objc.moveWeak
7, // llvm.objc.release
7, // llvm.objc.retain
7, // llvm.objc.retain.autorelease
7, // llvm.objc.retainAutorelease
7, // llvm.objc.retainAutoreleaseReturnValue
7, // llvm.objc.retainAutoreleasedReturnValue
7, // llvm.objc.retainBlock
7, // llvm.objc.retainedObject
7, // llvm.objc.storeStrong
7, // llvm.objc.storeWeak
7, // llvm.objc.sync.enter
7, // llvm.objc.sync.exit
7, // llvm.objc.unretainedObject
7, // llvm.objc.unretainedPointer
7, // llvm.objc.unsafeClaimAutoreleasedReturnValue
52, // llvm.objectsize
4, // llvm.pcmarker
6, // llvm.pow
6, // llvm.powi
53, // llvm.prefetch
54, // llvm.preserve.array.access.index
54, // llvm.preserve.struct.access.index
24, // llvm.preserve.union.access.index
55, // llvm.pseudoprobe
4, // llvm.ptr.annotation
56, // llvm.ptrauth.auth
12, // llvm.ptrauth.blend
57, // llvm.ptrauth.resign
56, // llvm.ptrauth.sign
12, // llvm.ptrauth.sign.generic
56, // llvm.ptrauth.strip
6, // llvm.ptrmask
21, // llvm.read_register
58, // llvm.read_volatile_register
4, // llvm.readcyclecounter
27, // llvm.returnaddress
6, // llvm.rint
6, // llvm.round
6, // llvm.roundeven
6, // llvm.sadd.sat
6, // llvm.sadd.with.overflow
25, // llvm.sdiv.fix
25, // llvm.sdiv.fix.sat
35, // llvm.set.loop.iterations
19, // llvm.sideeffect
6, // llvm.sin
6, // llvm.smax
6, // llvm.smin
59, // llvm.smul.fix
59, // llvm.smul.fix.sat
6, // llvm.smul.with.overflow
2, // llvm.sponentry
6, // llvm.sqrt
60, // llvm.ssa.copy
6, // llvm.sshl.sat
6, // llvm.ssub.sat
6, // llvm.ssub.with.overflow
4, // llvm.stackguard
4, // llvm.stackprotector
4, // llvm.stackrestore
4, // llvm.stacksave
35, // llvm.start.loop.iterations
6, // llvm.strip.invariant.group
35, // llvm.test.set.loop.iterations
2, // llvm.thread.pointer
61, // llvm.trap
6, // llvm.trunc
2, // llvm.type.checked.load
2, // llvm.type.test
6, // llvm.uadd.sat
6, // llvm.uadd.with.overflow
62, // llvm.ubsantrap
25, // llvm.udiv.fix
25, // llvm.udiv.fix.sat
6, // llvm.umax
6, // llvm.umin
59, // llvm.umul.fix
59, // llvm.umul.fix.sat
6, // llvm.umul.with.overflow
6, // llvm.ushl.sat
6, // llvm.usub.sat
6, // llvm.usub.with.overflow
4, // llvm.va_copy
4, // llvm.va_end
4, // llvm.va_start
4, // llvm.var.annotation
2, // llvm.vector.reduce.add
2, // llvm.vector.reduce.and
2, // llvm.vector.reduce.fadd
2, // llvm.vector.reduce.fmax
2, // llvm.vector.reduce.fmin
2, // llvm.vector.reduce.fmul
2, // llvm.vector.reduce.mul
2, // llvm.vector.reduce.or
2, // llvm.vector.reduce.smax
2, // llvm.vector.reduce.smin
2, // llvm.vector.reduce.umax
2, // llvm.vector.reduce.umin
2, // llvm.vector.reduce.xor
6, // llvm.vp.add
6, // llvm.vp.and
6, // llvm.vp.ashr
6, // llvm.vp.lshr
6, // llvm.vp.mul
6, // llvm.vp.or
2, // llvm.vp.sdiv
6, // llvm.vp.shl
2, // llvm.vp.srem
6, // llvm.vp.sub
2, // llvm.vp.udiv
2, // llvm.vp.urem
6, // llvm.vp.xor
2, // llvm.vscale
7, // llvm.write_register
63, // llvm.xray.customevent
64, // llvm.xray.typedevent
12, // llvm.aarch64.addg
7, // llvm.aarch64.clrex
12, // llvm.aarch64.cls
12, // llvm.aarch64.cls64
12, // llvm.aarch64.crc32b
12, // llvm.aarch64.crc32cb
12, // llvm.aarch64.crc32ch
12, // llvm.aarch64.crc32cw
12, // llvm.aarch64.crc32cx
12, // llvm.aarch64.crc32h
12, // llvm.aarch64.crc32w
12, // llvm.aarch64.crc32x
12, // llvm.aarch64.crypto.aesd
12, // llvm.aarch64.crypto.aese
12, // llvm.aarch64.crypto.aesimc
12, // llvm.aarch64.crypto.aesmc
12, // llvm.aarch64.crypto.sha1c
12, // llvm.aarch64.crypto.sha1h
12, // llvm.aarch64.crypto.sha1m
12, // llvm.aarch64.crypto.sha1p
12, // llvm.aarch64.crypto.sha1su0
12, // llvm.aarch64.crypto.sha1su1
12, // llvm.aarch64.crypto.sha256h
12, // llvm.aarch64.crypto.sha256h2
12, // llvm.aarch64.crypto.sha256su0
12, // llvm.aarch64.crypto.sha256su1
7, // llvm.aarch64.dmb
7, // llvm.aarch64.dsb
12, // llvm.aarch64.fjcvtzs
65, // llvm.aarch64.get.fpcr
12, // llvm.aarch64.gmi
7, // llvm.aarch64.hint
65, // llvm.aarch64.irg
65, // llvm.aarch64.irg.sp
7, // llvm.aarch64.isb
7, // llvm.aarch64.ldaxp
7, // llvm.aarch64.ldaxr
21, // llvm.aarch64.ldg
7, // llvm.aarch64.ldxp
7, // llvm.aarch64.ldxr
12, // llvm.aarch64.neon.abs
12, // llvm.aarch64.neon.addhn
12, // llvm.aarch64.neon.addp
12, // llvm.aarch64.neon.bfcvt
12, // llvm.aarch64.neon.bfcvtn
12, // llvm.aarch64.neon.bfcvtn2
12, // llvm.aarch64.neon.bfdot
12, // llvm.aarch64.neon.bfmlalb
12, // llvm.aarch64.neon.bfmlalt
12, // llvm.aarch64.neon.bfmmla
12, // llvm.aarch64.neon.cls
12, // llvm.aarch64.neon.fabd
12, // llvm.aarch64.neon.facge
12, // llvm.aarch64.neon.facgt
12, // llvm.aarch64.neon.faddp
12, // llvm.aarch64.neon.faddv
12, // llvm.aarch64.neon.fcvtas
12, // llvm.aarch64.neon.fcvtau
12, // llvm.aarch64.neon.fcvtms
12, // llvm.aarch64.neon.fcvtmu
12, // llvm.aarch64.neon.fcvtns
12, // llvm.aarch64.neon.fcvtnu
12, // llvm.aarch64.neon.fcvtps
12, // llvm.aarch64.neon.fcvtpu
12, // llvm.aarch64.neon.fcvtxn
12, // llvm.aarch64.neon.fcvtzs
12, // llvm.aarch64.neon.fcvtzu
12, // llvm.aarch64.neon.fmax
12, // llvm.aarch64.neon.fmaxnm
12, // llvm.aarch64.neon.fmaxnmp
12, // llvm.aarch64.neon.fmaxnmv
12, // llvm.aarch64.neon.fmaxp
12, // llvm.aarch64.neon.fmaxv
12, // llvm.aarch64.neon.fmin
12, // llvm.aarch64.neon.fminnm
12, // llvm.aarch64.neon.fminnmp
12, // llvm.aarch64.neon.fminnmv
12, // llvm.aarch64.neon.fminp
12, // llvm.aarch64.neon.fminv
12, // llvm.aarch64.neon.fmlal
12, // llvm.aarch64.neon.fmlal2
12, // llvm.aarch64.neon.fmlsl
12, // llvm.aarch64.neon.fmlsl2
12, // llvm.aarch64.neon.fmulx
12, // llvm.aarch64.neon.frecpe
12, // llvm.aarch64.neon.frecps
12, // llvm.aarch64.neon.frecpx
12, // llvm.aarch64.neon.frintn
12, // llvm.aarch64.neon.frsqrte
12, // llvm.aarch64.neon.frsqrts
3, // llvm.aarch64.neon.ld1x2
3, // llvm.aarch64.neon.ld1x3
3, // llvm.aarch64.neon.ld1x4
3, // llvm.aarch64.neon.ld2
3, // llvm.aarch64.neon.ld2lane
3, // llvm.aarch64.neon.ld2r
3, // llvm.aarch64.neon.ld3
3, // llvm.aarch64.neon.ld3lane
3, // llvm.aarch64.neon.ld3r
3, // llvm.aarch64.neon.ld4
3, // llvm.aarch64.neon.ld4lane
3, // llvm.aarch64.neon.ld4r
12, // llvm.aarch64.neon.pmul
12, // llvm.aarch64.neon.pmull
12, // llvm.aarch64.neon.pmull64
12, // llvm.aarch64.neon.raddhn
12, // llvm.aarch64.neon.rbit
12, // llvm.aarch64.neon.rshrn
12, // llvm.aarch64.neon.rsubhn
12, // llvm.aarch64.neon.sabd
12, // llvm.aarch64.neon.saddlp
12, // llvm.aarch64.neon.saddlv
12, // llvm.aarch64.neon.saddv
12, // llvm.aarch64.neon.scalar.sqxtn
12, // llvm.aarch64.neon.scalar.sqxtun
12, // llvm.aarch64.neon.scalar.uqxtn
12, // llvm.aarch64.neon.sdot
12, // llvm.aarch64.neon.shadd
12, // llvm.aarch64.neon.shll
12, // llvm.aarch64.neon.shsub
12, // llvm.aarch64.neon.smax
12, // llvm.aarch64.neon.smaxp
12, // llvm.aarch64.neon.smaxv
12, // llvm.aarch64.neon.smin
12, // llvm.aarch64.neon.sminp
12, // llvm.aarch64.neon.sminv
12, // llvm.aarch64.neon.smmla
12, // llvm.aarch64.neon.smull
12, // llvm.aarch64.neon.sqabs
12, // llvm.aarch64.neon.sqadd
12, // llvm.aarch64.neon.sqdmulh
12, // llvm.aarch64.neon.sqdmulh.lane
12, // llvm.aarch64.neon.sqdmulh.laneq
12, // llvm.aarch64.neon.sqdmull
12, // llvm.aarch64.neon.sqdmulls.scalar
12, // llvm.aarch64.neon.sqneg
12, // llvm.aarch64.neon.sqrdmulh
12, // llvm.aarch64.neon.sqrdmulh.lane
12, // llvm.aarch64.neon.sqrdmulh.laneq
12, // llvm.aarch64.neon.sqrshl
12, // llvm.aarch64.neon.sqrshrn
12, // llvm.aarch64.neon.sqrshrun
12, // llvm.aarch64.neon.sqshl
12, // llvm.aarch64.neon.sqshlu
12, // llvm.aarch64.neon.sqshrn
12, // llvm.aarch64.neon.sqshrun
12, // llvm.aarch64.neon.sqsub
12, // llvm.aarch64.neon.sqxtn
12, // llvm.aarch64.neon.sqxtun
12, // llvm.aarch64.neon.srhadd
12, // llvm.aarch64.neon.srshl
12, // llvm.aarch64.neon.sshl
12, // llvm.aarch64.neon.sshll
66, // llvm.aarch64.neon.st1x2
67, // llvm.aarch64.neon.st1x3
68, // llvm.aarch64.neon.st1x4
66, // llvm.aarch64.neon.st2
67, // llvm.aarch64.neon.st2lane
67, // llvm.aarch64.neon.st3
68, // llvm.aarch64.neon.st3lane
68, // llvm.aarch64.neon.st4
69, // llvm.aarch64.neon.st4lane
12, // llvm.aarch64.neon.subhn
12, // llvm.aarch64.neon.suqadd
12, // llvm.aarch64.neon.tbl1
12, // llvm.aarch64.neon.tbl2
12, // llvm.aarch64.neon.tbl3
12, // llvm.aarch64.neon.tbl4
12, // llvm.aarch64.neon.tbx1
12, // llvm.aarch64.neon.tbx2
12, // llvm.aarch64.neon.tbx3
12, // llvm.aarch64.neon.tbx4
12, // llvm.aarch64.neon.uabd
12, // llvm.aarch64.neon.uaddlp
12, // llvm.aarch64.neon.uaddlv
12, // llvm.aarch64.neon.uaddv
12, // llvm.aarch64.neon.udot
12, // llvm.aarch64.neon.uhadd
12, // llvm.aarch64.neon.uhsub
12, // llvm.aarch64.neon.umax
12, // llvm.aarch64.neon.umaxp
12, // llvm.aarch64.neon.umaxv
12, // llvm.aarch64.neon.umin
12, // llvm.aarch64.neon.uminp
12, // llvm.aarch64.neon.uminv
12, // llvm.aarch64.neon.ummla
12, // llvm.aarch64.neon.umull
12, // llvm.aarch64.neon.uqadd
12, // llvm.aarch64.neon.uqrshl
12, // llvm.aarch64.neon.uqrshrn
12, // llvm.aarch64.neon.uqshl
12, // llvm.aarch64.neon.uqshrn
12, // llvm.aarch64.neon.uqsub
12, // llvm.aarch64.neon.uqxtn
12, // llvm.aarch64.neon.urecpe
12, // llvm.aarch64.neon.urhadd
12, // llvm.aarch64.neon.urshl
12, // llvm.aarch64.neon.ursqrte
12, // llvm.aarch64.neon.usdot
12, // llvm.aarch64.neon.ushl
12, // llvm.aarch64.neon.ushll
12, // llvm.aarch64.neon.usmmla
12, // llvm.aarch64.neon.usqadd
12, // llvm.aarch64.neon.vcadd.rot270
12, // llvm.aarch64.neon.vcadd.rot90
12, // llvm.aarch64.neon.vcmla.rot0
12, // llvm.aarch64.neon.vcmla.rot180
12, // llvm.aarch64.neon.vcmla.rot270
12, // llvm.aarch64.neon.vcmla.rot90
12, // llvm.aarch64.neon.vcopy.lane
12, // llvm.aarch64.neon.vcvtfp2fxs
12, // llvm.aarch64.neon.vcvtfp2fxu
12, // llvm.aarch64.neon.vcvtfp2hf
12, // llvm.aarch64.neon.vcvtfxs2fp
12, // llvm.aarch64.neon.vcvtfxu2fp
12, // llvm.aarch64.neon.vcvthf2fp
12, // llvm.aarch64.neon.vsli
12, // llvm.aarch64.neon.vsri
12, // llvm.aarch64.sdiv
70, // llvm.aarch64.settag
70, // llvm.aarch64.settag.zero
12, // llvm.aarch64.sisd.fabd
12, // llvm.aarch64.sisd.fcvtxn
7, // llvm.aarch64.space
71, // llvm.aarch64.stg
70, // llvm.aarch64.stgp
7, // llvm.aarch64.stlxp
7, // llvm.aarch64.stlxr
7, // llvm.aarch64.stxp
7, // llvm.aarch64.stxr
12, // llvm.aarch64.subp
12, // llvm.aarch64.sve.abs
12, // llvm.aarch64.sve.adclb
12, // llvm.aarch64.sve.adclt
12, // llvm.aarch64.sve.add
12, // llvm.aarch64.sve.addhnb
12, // llvm.aarch64.sve.addhnt
12, // llvm.aarch64.sve.addp
12, // llvm.aarch64.sve.adrb
12, // llvm.aarch64.sve.adrd
12, // llvm.aarch64.sve.adrh
12, // llvm.aarch64.sve.adrw
12, // llvm.aarch64.sve.aesd
12, // llvm.aarch64.sve.aese
12, // llvm.aarch64.sve.aesimc
12, // llvm.aarch64.sve.aesmc
12, // llvm.aarch64.sve.and
12, // llvm.aarch64.sve.and.z
12, // llvm.aarch64.sve.andv
12, // llvm.aarch64.sve.asr
12, // llvm.aarch64.sve.asr.wide
72, // llvm.aarch64.sve.asrd
12, // llvm.aarch64.sve.bcax
12, // llvm.aarch64.sve.bdep.x
12, // llvm.aarch64.sve.bext.x
12, // llvm.aarch64.sve.bfdot
73, // llvm.aarch64.sve.bfdot.lane
12, // llvm.aarch64.sve.bfmlalb
73, // llvm.aarch64.sve.bfmlalb.lane
12, // llvm.aarch64.sve.bfmlalt
73, // llvm.aarch64.sve.bfmlalt.lane
12, // llvm.aarch64.sve.bfmmla
12, // llvm.aarch64.sve.bgrp.x
12, // llvm.aarch64.sve.bic
12, // llvm.aarch64.sve.bic.z
12, // llvm.aarch64.sve.brka
12, // llvm.aarch64.sve.brka.z
12, // llvm.aarch64.sve.brkb
12, // llvm.aarch64.sve.brkb.z
12, // llvm.aarch64.sve.brkn.z
12, // llvm.aarch64.sve.brkpa.z
12, // llvm.aarch64.sve.brkpb.z
12, // llvm.aarch64.sve.bsl
12, // llvm.aarch64.sve.bsl1n
12, // llvm.aarch64.sve.bsl2n
72, // llvm.aarch64.sve.cadd.x
73, // llvm.aarch64.sve.cdot
74, // llvm.aarch64.sve.cdot.lane
12, // llvm.aarch64.sve.clasta
12, // llvm.aarch64.sve.clasta.n
12, // llvm.aarch64.sve.clastb
12, // llvm.aarch64.sve.clastb.n
12, // llvm.aarch64.sve.cls
12, // llvm.aarch64.sve.clz
74, // llvm.aarch64.sve.cmla.lane.x
73, // llvm.aarch64.sve.cmla.x
12, // llvm.aarch64.sve.cmpeq
12, // llvm.aarch64.sve.cmpeq.wide
12, // llvm.aarch64.sve.cmpge
12, // llvm.aarch64.sve.cmpge.wide
12, // llvm.aarch64.sve.cmpgt
12, // llvm.aarch64.sve.cmpgt.wide
12, // llvm.aarch64.sve.cmphi
12, // llvm.aarch64.sve.cmphi.wide
12, // llvm.aarch64.sve.cmphs
12, // llvm.aarch64.sve.cmphs.wide
12, // llvm.aarch64.sve.cmple.wide
12, // llvm.aarch64.sve.cmplo.wide
12, // llvm.aarch64.sve.cmpls.wide
12, // llvm.aarch64.sve.cmplt.wide
12, // llvm.aarch64.sve.cmpne
12, // llvm.aarch64.sve.cmpne.wide
12, // llvm.aarch64.sve.cnot
12, // llvm.aarch64.sve.cnt
75, // llvm.aarch64.sve.cntb
75, // llvm.aarch64.sve.cntd
75, // llvm.aarch64.sve.cnth
12, // llvm.aarch64.sve.cntp
75, // llvm.aarch64.sve.cntw
12, // llvm.aarch64.sve.compact
12, // llvm.aarch64.sve.convert.from.svbool
12, // llvm.aarch64.sve.convert.to.svbool
12, // llvm.aarch64.sve.dup
12, // llvm.aarch64.sve.dup.x
12, // llvm.aarch64.sve.dupq.lane
12, // llvm.aarch64.sve.eor
12, // llvm.aarch64.sve.eor.z
12, // llvm.aarch64.sve.eor3
12, // llvm.aarch64.sve.eorbt
12, // llvm.aarch64.sve.eortb
12, // llvm.aarch64.sve.eorv
72, // llvm.aarch64.sve.ext
12, // llvm.aarch64.sve.fabd
12, // llvm.aarch64.sve.fabs
12, // llvm.aarch64.sve.facge
12, // llvm.aarch64.sve.facgt
12, // llvm.aarch64.sve.fadd
12, // llvm.aarch64.sve.fadda
12, // llvm.aarch64.sve.faddp
12, // llvm.aarch64.sve.faddv
73, // llvm.aarch64.sve.fcadd
76, // llvm.aarch64.sve.fcmla
74, // llvm.aarch64.sve.fcmla.lane
12, // llvm.aarch64.sve.fcmpeq
12, // llvm.aarch64.sve.fcmpge
12, // llvm.aarch64.sve.fcmpgt
12, // llvm.aarch64.sve.fcmpne
12, // llvm.aarch64.sve.fcmpuo
12, // llvm.aarch64.sve.fcvt
12, // llvm.aarch64.sve.fcvt.bf16f32
12, // llvm.aarch64.sve.fcvt.f16f32
12, // llvm.aarch64.sve.fcvt.f16f64
12, // llvm.aarch64.sve.fcvt.f32f16
12, // llvm.aarch64.sve.fcvt.f32f64
12, // llvm.aarch64.sve.fcvt.f64f16
12, // llvm.aarch64.sve.fcvt.f64f32
12, // llvm.aarch64.sve.fcvtlt.f32f16
12, // llvm.aarch64.sve.fcvtlt.f64f32
12, // llvm.aarch64.sve.fcvtnt.bf16f32
12, // llvm.aarch64.sve.fcvtnt.f16f32
12, // llvm.aarch64.sve.fcvtnt.f32f64
12, // llvm.aarch64.sve.fcvtx.f32f64
12, // llvm.aarch64.sve.fcvtxnt.f32f64
12, // llvm.aarch64.sve.fcvtzs
12, // llvm.aarch64.sve.fcvtzs.i32f16
12, // llvm.aarch64.sve.fcvtzs.i32f64
12, // llvm.aarch64.sve.fcvtzs.i64f16
12, // llvm.aarch64.sve.fcvtzs.i64f32
12, // llvm.aarch64.sve.fcvtzu
12, // llvm.aarch64.sve.fcvtzu.i32f16
12, // llvm.aarch64.sve.fcvtzu.i32f64
12, // llvm.aarch64.sve.fcvtzu.i64f16
12, // llvm.aarch64.sve.fcvtzu.i64f32
12, // llvm.aarch64.sve.fdiv
12, // llvm.aarch64.sve.fdivr
12, // llvm.aarch64.sve.fexpa.x
12, // llvm.aarch64.sve.flogb
12, // llvm.aarch64.sve.fmad
12, // llvm.aarch64.sve.fmax
12, // llvm.aarch64.sve.fmaxnm
12, // llvm.aarch64.sve.fmaxnmp
12, // llvm.aarch64.sve.fmaxnmv
12, // llvm.aarch64.sve.fmaxp
12, // llvm.aarch64.sve.fmaxv
12, // llvm.aarch64.sve.fmin
12, // llvm.aarch64.sve.fminnm
12, // llvm.aarch64.sve.fminnmp
12, // llvm.aarch64.sve.fminnmv
12, // llvm.aarch64.sve.fminp
12, // llvm.aarch64.sve.fminv
12, // llvm.aarch64.sve.fmla
73, // llvm.aarch64.sve.fmla.lane
12, // llvm.aarch64.sve.fmlalb
73, // llvm.aarch64.sve.fmlalb.lane
12, // llvm.aarch64.sve.fmlalt
73, // llvm.aarch64.sve.fmlalt.lane
12, // llvm.aarch64.sve.fmls
73, // llvm.aarch64.sve.fmls.lane
12, // llvm.aarch64.sve.fmlslb
73, // llvm.aarch64.sve.fmlslb.lane
12, // llvm.aarch64.sve.fmlslt
73, // llvm.aarch64.sve.fmlslt.lane
12, // llvm.aarch64.sve.fmmla
12, // llvm.aarch64.sve.fmsb
12, // llvm.aarch64.sve.fmul
72, // llvm.aarch64.sve.fmul.lane
12, // llvm.aarch64.sve.fmulx
12, // llvm.aarch64.sve.fneg
12, // llvm.aarch64.sve.fnmad
12, // llvm.aarch64.sve.fnmla
12, // llvm.aarch64.sve.fnmls
12, // llvm.aarch64.sve.fnmsb
12, // llvm.aarch64.sve.frecpe.x
12, // llvm.aarch64.sve.frecps.x
12, // llvm.aarch64.sve.frecpx
12, // llvm.aarch64.sve.frinta
12, // llvm.aarch64.sve.frinti
12, // llvm.aarch64.sve.frintm
12, // llvm.aarch64.sve.frintn
12, // llvm.aarch64.sve.frintp
12, // llvm.aarch64.sve.frintx
12, // llvm.aarch64.sve.frintz
12, // llvm.aarch64.sve.frsqrte.x
12, // llvm.aarch64.sve.frsqrts.x
12, // llvm.aarch64.sve.fscale
12, // llvm.aarch64.sve.fsqrt
12, // llvm.aarch64.sve.fsub
12, // llvm.aarch64.sve.fsubr
72, // llvm.aarch64.sve.ftmad.x
12, // llvm.aarch64.sve.ftsmul.x
12, // llvm.aarch64.sve.ftssel.x
12, // llvm.aarch64.sve.histcnt
12, // llvm.aarch64.sve.histseg
12, // llvm.aarch64.sve.index
12, // llvm.aarch64.sve.insr
12, // llvm.aarch64.sve.lasta
12, // llvm.aarch64.sve.lastb
3, // llvm.aarch64.sve.ld1
3, // llvm.aarch64.sve.ld1.gather
3, // llvm.aarch64.sve.ld1.gather.index
21, // llvm.aarch64.sve.ld1.gather.scalar.offset
3, // llvm.aarch64.sve.ld1.gather.sxtw
3, // llvm.aarch64.sve.ld1.gather.sxtw.index
3, // llvm.aarch64.sve.ld1.gather.uxtw
3, // llvm.aarch64.sve.ld1.gather.uxtw.index
3, // llvm.aarch64.sve.ld1ro
3, // llvm.aarch64.sve.ld1rq
3, // llvm.aarch64.sve.ld2
3, // llvm.aarch64.sve.ld3
3, // llvm.aarch64.sve.ld4
3, // llvm.aarch64.sve.ldff1
3, // llvm.aarch64.sve.ldff1.gather
3, // llvm.aarch64.sve.ldff1.gather.index
21, // llvm.aarch64.sve.ldff1.gather.scalar.offset
3, // llvm.aarch64.sve.ldff1.gather.sxtw
3, // llvm.aarch64.sve.ldff1.gather.sxtw.index
3, // llvm.aarch64.sve.ldff1.gather.uxtw
3, // llvm.aarch64.sve.ldff1.gather.uxtw.index
3, // llvm.aarch64.sve.ldnf1
3, // llvm.aarch64.sve.ldnt1
3, // llvm.aarch64.sve.ldnt1.gather
3, // llvm.aarch64.sve.ldnt1.gather.index
21, // llvm.aarch64.sve.ldnt1.gather.scalar.offset
3, // llvm.aarch64.sve.ldnt1.gather.uxtw
12, // llvm.aarch64.sve.lsl
12, // llvm.aarch64.sve.lsl.wide
12, // llvm.aarch64.sve.lsr
12, // llvm.aarch64.sve.lsr.wide
12, // llvm.aarch64.sve.mad
12, // llvm.aarch64.sve.match
12, // llvm.aarch64.sve.mla
73, // llvm.aarch64.sve.mla.lane
12, // llvm.aarch64.sve.mls
73, // llvm.aarch64.sve.mls.lane
12, // llvm.aarch64.sve.msb
12, // llvm.aarch64.sve.mul
72, // llvm.aarch64.sve.mul.lane
12, // llvm.aarch64.sve.nand.z
12, // llvm.aarch64.sve.nbsl
12, // llvm.aarch64.sve.neg
12, // llvm.aarch64.sve.nmatch
12, // llvm.aarch64.sve.nor.z
12, // llvm.aarch64.sve.not
12, // llvm.aarch64.sve.orn.z
12, // llvm.aarch64.sve.orr
12, // llvm.aarch64.sve.orr.z
12, // llvm.aarch64.sve.orv
12, // llvm.aarch64.sve.pfirst
12, // llvm.aarch64.sve.pmul
12, // llvm.aarch64.sve.pmullb.pair
12, // llvm.aarch64.sve.pmullt.pair
12, // llvm.aarch64.sve.pnext
77, // llvm.aarch64.sve.prf
78, // llvm.aarch64.sve.prfb.gather.index
79, // llvm.aarch64.sve.prfb.gather.scalar.offset
78, // llvm.aarch64.sve.prfb.gather.sxtw.index
78, // llvm.aarch64.sve.prfb.gather.uxtw.index
78, // llvm.aarch64.sve.prfd.gather.index
79, // llvm.aarch64.sve.prfd.gather.scalar.offset
78, // llvm.aarch64.sve.prfd.gather.sxtw.index
78, // llvm.aarch64.sve.prfd.gather.uxtw.index
78, // llvm.aarch64.sve.prfh.gather.index
79, // llvm.aarch64.sve.prfh.gather.scalar.offset
78, // llvm.aarch64.sve.prfh.gather.sxtw.index
78, // llvm.aarch64.sve.prfh.gather.uxtw.index
78, // llvm.aarch64.sve.prfw.gather.index
79, // llvm.aarch64.sve.prfw.gather.scalar.offset
78, // llvm.aarch64.sve.prfw.gather.sxtw.index
78, // llvm.aarch64.sve.prfw.gather.uxtw.index
12, // llvm.aarch64.sve.ptest.any
12, // llvm.aarch64.sve.ptest.first
12, // llvm.aarch64.sve.ptest.last
75, // llvm.aarch64.sve.ptrue
12, // llvm.aarch64.sve.punpkhi
12, // llvm.aarch64.sve.punpklo
12, // llvm.aarch64.sve.raddhnb
12, // llvm.aarch64.sve.raddhnt
12, // llvm.aarch64.sve.rax1
12, // llvm.aarch64.sve.rbit
7, // llvm.aarch64.sve.rdffr
7, // llvm.aarch64.sve.rdffr.z
12, // llvm.aarch64.sve.rev
12, // llvm.aarch64.sve.revb
12, // llvm.aarch64.sve.revh
12, // llvm.aarch64.sve.revw
56, // llvm.aarch64.sve.rshrnb
72, // llvm.aarch64.sve.rshrnt
12, // llvm.aarch64.sve.rsubhnb
12, // llvm.aarch64.sve.rsubhnt
12, // llvm.aarch64.sve.saba
12, // llvm.aarch64.sve.sabalb
12, // llvm.aarch64.sve.sabalt
12, // llvm.aarch64.sve.sabd
12, // llvm.aarch64.sve.sabdlb
12, // llvm.aarch64.sve.sabdlt
12, // llvm.aarch64.sve.sadalp
12, // llvm.aarch64.sve.saddlb
12, // llvm.aarch64.sve.saddlbt
12, // llvm.aarch64.sve.saddlt
12, // llvm.aarch64.sve.saddv
12, // llvm.aarch64.sve.saddwb
12, // llvm.aarch64.sve.saddwt
12, // llvm.aarch64.sve.sbclb
12, // llvm.aarch64.sve.sbclt
12, // llvm.aarch64.sve.scvtf
12, // llvm.aarch64.sve.scvtf.f16i32
12, // llvm.aarch64.sve.scvtf.f16i64
12, // llvm.aarch64.sve.scvtf.f32i64
12, // llvm.aarch64.sve.scvtf.f64i32
12, // llvm.aarch64.sve.sdiv
12, // llvm.aarch64.sve.sdivr
12, // llvm.aarch64.sve.sdot
73, // llvm.aarch64.sve.sdot.lane
12, // llvm.aarch64.sve.sel
7, // llvm.aarch64.sve.setffr
12, // llvm.aarch64.sve.shadd
56, // llvm.aarch64.sve.shrnb
72, // llvm.aarch64.sve.shrnt
12, // llvm.aarch64.sve.shsub
12, // llvm.aarch64.sve.shsubr
72, // llvm.aarch64.sve.sli
12, // llvm.aarch64.sve.sm4e
12, // llvm.aarch64.sve.sm4ekey
12, // llvm.aarch64.sve.smax
12, // llvm.aarch64.sve.smaxp
12, // llvm.aarch64.sve.smaxv
12, // llvm.aarch64.sve.smin
12, // llvm.aarch64.sve.sminp
12, // llvm.aarch64.sve.sminv
12, // llvm.aarch64.sve.smlalb
73, // llvm.aarch64.sve.smlalb.lane
12, // llvm.aarch64.sve.smlalt
73, // llvm.aarch64.sve.smlalt.lane
12, // llvm.aarch64.sve.smlslb
73, // llvm.aarch64.sve.smlslb.lane
12, // llvm.aarch64.sve.smlslt
73, // llvm.aarch64.sve.smlslt.lane
12, // llvm.aarch64.sve.smmla
12, // llvm.aarch64.sve.smulh
12, // llvm.aarch64.sve.smullb
72, // llvm.aarch64.sve.smullb.lane
12, // llvm.aarch64.sve.smullt
72, // llvm.aarch64.sve.smullt.lane
12, // llvm.aarch64.sve.splice
12, // llvm.aarch64.sve.sqabs
12, // llvm.aarch64.sve.sqadd
12, // llvm.aarch64.sve.sqadd.x
72, // llvm.aarch64.sve.sqcadd.x
80, // llvm.aarch64.sve.sqdecb.n32
80, // llvm.aarch64.sve.sqdecb.n64
80, // llvm.aarch64.sve.sqdecd
80, // llvm.aarch64.sve.sqdecd.n32
80, // llvm.aarch64.sve.sqdecd.n64
80, // llvm.aarch64.sve.sqdech
80, // llvm.aarch64.sve.sqdech.n32
80, // llvm.aarch64.sve.sqdech.n64
12, // llvm.aarch64.sve.sqdecp
12, // llvm.aarch64.sve.sqdecp.n32
12, // llvm.aarch64.sve.sqdecp.n64
80, // llvm.aarch64.sve.sqdecw
80, // llvm.aarch64.sve.sqdecw.n32
80, // llvm.aarch64.sve.sqdecw.n64
12, // llvm.aarch64.sve.sqdmlalb
73, // llvm.aarch64.sve.sqdmlalb.lane
12, // llvm.aarch64.sve.sqdmlalbt
12, // llvm.aarch64.sve.sqdmlalt
73, // llvm.aarch64.sve.sqdmlalt.lane
12, // llvm.aarch64.sve.sqdmlslb
73, // llvm.aarch64.sve.sqdmlslb.lane
12, // llvm.aarch64.sve.sqdmlslbt
12, // llvm.aarch64.sve.sqdmlslt
73, // llvm.aarch64.sve.sqdmlslt.lane
12, // llvm.aarch64.sve.sqdmulh
72, // llvm.aarch64.sve.sqdmulh.lane
12, // llvm.aarch64.sve.sqdmullb
72, // llvm.aarch64.sve.sqdmullb.lane
12, // llvm.aarch64.sve.sqdmullt
72, // llvm.aarch64.sve.sqdmullt.lane
80, // llvm.aarch64.sve.sqincb.n32
80, // llvm.aarch64.sve.sqincb.n64
80, // llvm.aarch64.sve.sqincd
80, // llvm.aarch64.sve.sqincd.n32
80, // llvm.aarch64.sve.sqincd.n64
80, // llvm.aarch64.sve.sqinch
80, // llvm.aarch64.sve.sqinch.n32
80, // llvm.aarch64.sve.sqinch.n64
12, // llvm.aarch64.sve.sqincp
12, // llvm.aarch64.sve.sqincp.n32
12, // llvm.aarch64.sve.sqincp.n64
80, // llvm.aarch64.sve.sqincw
80, // llvm.aarch64.sve.sqincw.n32
80, // llvm.aarch64.sve.sqincw.n64
12, // llvm.aarch64.sve.sqneg
74, // llvm.aarch64.sve.sqrdcmlah.lane.x
73, // llvm.aarch64.sve.sqrdcmlah.x
12, // llvm.aarch64.sve.sqrdmlah
73, // llvm.aarch64.sve.sqrdmlah.lane
12, // llvm.aarch64.sve.sqrdmlsh
73, // llvm.aarch64.sve.sqrdmlsh.lane
12, // llvm.aarch64.sve.sqrdmulh
72, // llvm.aarch64.sve.sqrdmulh.lane
12, // llvm.aarch64.sve.sqrshl
56, // llvm.aarch64.sve.sqrshrnb
72, // llvm.aarch64.sve.sqrshrnt
56, // llvm.aarch64.sve.sqrshrunb
72, // llvm.aarch64.sve.sqrshrunt
12, // llvm.aarch64.sve.sqshl
72, // llvm.aarch64.sve.sqshlu
56, // llvm.aarch64.sve.sqshrnb
72, // llvm.aarch64.sve.sqshrnt
56, // llvm.aarch64.sve.sqshrunb
72, // llvm.aarch64.sve.sqshrunt
12, // llvm.aarch64.sve.sqsub
12, // llvm.aarch64.sve.sqsub.x
12, // llvm.aarch64.sve.sqsubr
12, // llvm.aarch64.sve.sqxtnb
12, // llvm.aarch64.sve.sqxtnt
12, // llvm.aarch64.sve.sqxtunb
12, // llvm.aarch64.sve.sqxtunt
12, // llvm.aarch64.sve.srhadd
72, // llvm.aarch64.sve.sri
12, // llvm.aarch64.sve.srshl
72, // llvm.aarch64.sve.srshr
72, // llvm.aarch64.sve.srsra
56, // llvm.aarch64.sve.sshllb
56, // llvm.aarch64.sve.sshllt
72, // llvm.aarch64.sve.ssra
12, // llvm.aarch64.sve.ssublb
12, // llvm.aarch64.sve.ssublbt
12, // llvm.aarch64.sve.ssublt
12, // llvm.aarch64.sve.ssubltb
12, // llvm.aarch64.sve.ssubwb
12, // llvm.aarch64.sve.ssubwt
66, // llvm.aarch64.sve.st1
81, // llvm.aarch64.sve.st1.scatter
81, // llvm.aarch64.sve.st1.scatter.index
71, // llvm.aarch64.sve.st1.scatter.scalar.offset
81, // llvm.aarch64.sve.st1.scatter.sxtw
81, // llvm.aarch64.sve.st1.scatter.sxtw.index
81, // llvm.aarch64.sve.st1.scatter.uxtw
81, // llvm.aarch64.sve.st1.scatter.uxtw.index
67, // llvm.aarch64.sve.st2
68, // llvm.aarch64.sve.st3
69, // llvm.aarch64.sve.st4
66, // llvm.aarch64.sve.stnt1
81, // llvm.aarch64.sve.stnt1.scatter
81, // llvm.aarch64.sve.stnt1.scatter.index
71, // llvm.aarch64.sve.stnt1.scatter.scalar.offset
81, // llvm.aarch64.sve.stnt1.scatter.uxtw
12, // llvm.aarch64.sve.sub
12, // llvm.aarch64.sve.subhnb
12, // llvm.aarch64.sve.subhnt
12, // llvm.aarch64.sve.subr
73, // llvm.aarch64.sve.sudot.lane
12, // llvm.aarch64.sve.sunpkhi
12, // llvm.aarch64.sve.sunpklo
12, // llvm.aarch64.sve.suqadd
12, // llvm.aarch64.sve.sxtb
12, // llvm.aarch64.sve.sxth
12, // llvm.aarch64.sve.sxtw
12, // llvm.aarch64.sve.tbl
12, // llvm.aarch64.sve.tbl2
12, // llvm.aarch64.sve.tbx
12, // llvm.aarch64.sve.trn1
12, // llvm.aarch64.sve.trn1q
12, // llvm.aarch64.sve.trn2
12, // llvm.aarch64.sve.trn2q
21, // llvm.aarch64.sve.tuple.create2
21, // llvm.aarch64.sve.tuple.create3
21, // llvm.aarch64.sve.tuple.create4
82, // llvm.aarch64.sve.tuple.get
83, // llvm.aarch64.sve.tuple.set
12, // llvm.aarch64.sve.uaba
12, // llvm.aarch64.sve.uabalb
12, // llvm.aarch64.sve.uabalt
12, // llvm.aarch64.sve.uabd
12, // llvm.aarch64.sve.uabdlb
12, // llvm.aarch64.sve.uabdlt
12, // llvm.aarch64.sve.uadalp
12, // llvm.aarch64.sve.uaddlb
12, // llvm.aarch64.sve.uaddlt
12, // llvm.aarch64.sve.uaddv
12, // llvm.aarch64.sve.uaddwb
12, // llvm.aarch64.sve.uaddwt
12, // llvm.aarch64.sve.ucvtf
12, // llvm.aarch64.sve.ucvtf.f16i32
12, // llvm.aarch64.sve.ucvtf.f16i64
12, // llvm.aarch64.sve.ucvtf.f32i64
12, // llvm.aarch64.sve.ucvtf.f64i32
12, // llvm.aarch64.sve.udiv
12, // llvm.aarch64.sve.udivr
12, // llvm.aarch64.sve.udot
73, // llvm.aarch64.sve.udot.lane
12, // llvm.aarch64.sve.uhadd
12, // llvm.aarch64.sve.uhsub
12, // llvm.aarch64.sve.uhsubr
12, // llvm.aarch64.sve.umax
12, // llvm.aarch64.sve.umaxp
12, // llvm.aarch64.sve.umaxv
12, // llvm.aarch64.sve.umin
12, // llvm.aarch64.sve.uminp
12, // llvm.aarch64.sve.uminv
12, // llvm.aarch64.sve.umlalb
73, // llvm.aarch64.sve.umlalb.lane
12, // llvm.aarch64.sve.umlalt
73, // llvm.aarch64.sve.umlalt.lane
12, // llvm.aarch64.sve.umlslb
73, // llvm.aarch64.sve.umlslb.lane
12, // llvm.aarch64.sve.umlslt
73, // llvm.aarch64.sve.umlslt.lane
12, // llvm.aarch64.sve.ummla
12, // llvm.aarch64.sve.umulh
12, // llvm.aarch64.sve.umullb
72, // llvm.aarch64.sve.umullb.lane
12, // llvm.aarch64.sve.umullt
72, // llvm.aarch64.sve.umullt.lane
12, // llvm.aarch64.sve.uqadd
12, // llvm.aarch64.sve.uqadd.x
80, // llvm.aarch64.sve.uqdecb.n32
80, // llvm.aarch64.sve.uqdecb.n64
80, // llvm.aarch64.sve.uqdecd
80, // llvm.aarch64.sve.uqdecd.n32
80, // llvm.aarch64.sve.uqdecd.n64
80, // llvm.aarch64.sve.uqdech
80, // llvm.aarch64.sve.uqdech.n32
80, // llvm.aarch64.sve.uqdech.n64
12, // llvm.aarch64.sve.uqdecp
12, // llvm.aarch64.sve.uqdecp.n32
12, // llvm.aarch64.sve.uqdecp.n64
80, // llvm.aarch64.sve.uqdecw
80, // llvm.aarch64.sve.uqdecw.n32
80, // llvm.aarch64.sve.uqdecw.n64
80, // llvm.aarch64.sve.uqincb.n32
80, // llvm.aarch64.sve.uqincb.n64
80, // llvm.aarch64.sve.uqincd
80, // llvm.aarch64.sve.uqincd.n32
80, // llvm.aarch64.sve.uqincd.n64
80, // llvm.aarch64.sve.uqinch
80, // llvm.aarch64.sve.uqinch.n32
80, // llvm.aarch64.sve.uqinch.n64
12, // llvm.aarch64.sve.uqincp
12, // llvm.aarch64.sve.uqincp.n32
12, // llvm.aarch64.sve.uqincp.n64
80, // llvm.aarch64.sve.uqincw
80, // llvm.aarch64.sve.uqincw.n32
80, // llvm.aarch64.sve.uqincw.n64
12, // llvm.aarch64.sve.uqrshl
56, // llvm.aarch64.sve.uqrshrnb
72, // llvm.aarch64.sve.uqrshrnt
12, // llvm.aarch64.sve.uqshl
56, // llvm.aarch64.sve.uqshrnb
72, // llvm.aarch64.sve.uqshrnt
12, // llvm.aarch64.sve.uqsub
12, // llvm.aarch64.sve.uqsub.x
12, // llvm.aarch64.sve.uqsubr
12, // llvm.aarch64.sve.uqxtnb
12, // llvm.aarch64.sve.uqxtnt
12, // llvm.aarch64.sve.urecpe
12, // llvm.aarch64.sve.urhadd
12, // llvm.aarch64.sve.urshl
72, // llvm.aarch64.sve.urshr
12, // llvm.aarch64.sve.ursqrte
72, // llvm.aarch64.sve.ursra
12, // llvm.aarch64.sve.usdot
73, // llvm.aarch64.sve.usdot.lane
56, // llvm.aarch64.sve.ushllb
56, // llvm.aarch64.sve.ushllt
12, // llvm.aarch64.sve.usmmla
12, // llvm.aarch64.sve.usqadd
72, // llvm.aarch64.sve.usra
12, // llvm.aarch64.sve.usublb
12, // llvm.aarch64.sve.usublt
12, // llvm.aarch64.sve.usubwb
12, // llvm.aarch64.sve.usubwt
12, // llvm.aarch64.sve.uunpkhi
12, // llvm.aarch64.sve.uunpklo
12, // llvm.aarch64.sve.uxtb
12, // llvm.aarch64.sve.uxth
12, // llvm.aarch64.sve.uxtw
12, // llvm.aarch64.sve.uzp1
12, // llvm.aarch64.sve.uzp1q
12, // llvm.aarch64.sve.uzp2
12, // llvm.aarch64.sve.uzp2q
12, // llvm.aarch64.sve.whilege
12, // llvm.aarch64.sve.whilegt
12, // llvm.aarch64.sve.whilehi
12, // llvm.aarch64.sve.whilehs
12, // llvm.aarch64.sve.whilele
12, // llvm.aarch64.sve.whilelo
12, // llvm.aarch64.sve.whilels
12, // llvm.aarch64.sve.whilelt
7, // llvm.aarch64.sve.whilerw.b
7, // llvm.aarch64.sve.whilerw.d
7, // llvm.aarch64.sve.whilerw.h
7, // llvm.aarch64.sve.whilerw.s
7, // llvm.aarch64.sve.whilewr.b
7, // llvm.aarch64.sve.whilewr.d
7, // llvm.aarch64.sve.whilewr.h
7, // llvm.aarch64.sve.whilewr.s
7, // llvm.aarch64.sve.wrffr
72, // llvm.aarch64.sve.xar
12, // llvm.aarch64.sve.zip1
12, // llvm.aarch64.sve.zip1q
12, // llvm.aarch64.sve.zip2
12, // llvm.aarch64.sve.zip2q
72, // llvm.aarch64.tagp
84, // llvm.aarch64.tcancel
7, // llvm.aarch64.tcommit
7, // llvm.aarch64.tstart
65, // llvm.aarch64.ttest
12, // llvm.aarch64.udiv
85, // llvm.amdgcn.alignbit
85, // llvm.amdgcn.alignbyte
86, // llvm.amdgcn.atomic.dec
86, // llvm.amdgcn.atomic.inc
87, // llvm.amdgcn.ballot
88, // llvm.amdgcn.buffer.atomic.add
88, // llvm.amdgcn.buffer.atomic.and
89, // llvm.amdgcn.buffer.atomic.cmpswap
88, // llvm.amdgcn.buffer.atomic.csub
90, // llvm.amdgcn.buffer.atomic.fadd
88, // llvm.amdgcn.buffer.atomic.or
88, // llvm.amdgcn.buffer.atomic.smax
88, // llvm.amdgcn.buffer.atomic.smin
88, // llvm.amdgcn.buffer.atomic.sub
88, // llvm.amdgcn.buffer.atomic.swap
88, // llvm.amdgcn.buffer.atomic.umax
88, // llvm.amdgcn.buffer.atomic.umin
88, // llvm.amdgcn.buffer.atomic.xor
91, // llvm.amdgcn.buffer.load
91, // llvm.amdgcn.buffer.load.format
92, // llvm.amdgcn.buffer.store
92, // llvm.amdgcn.buffer.store.format
93, // llvm.amdgcn.buffer.wbinvl1
93, // llvm.amdgcn.buffer.wbinvl1.sc
93, // llvm.amdgcn.buffer.wbinvl1.vol
85, // llvm.amdgcn.class
85, // llvm.amdgcn.cos
85, // llvm.amdgcn.cubeid
85, // llvm.amdgcn.cubema
85, // llvm.amdgcn.cubesc
85, // llvm.amdgcn.cubetc
85, // llvm.amdgcn.cvt.pk.i16
85, // llvm.amdgcn.cvt.pk.u16
85, // llvm.amdgcn.cvt.pk.u8.f32
85, // llvm.amdgcn.cvt.pknorm.i16
85, // llvm.amdgcn.cvt.pknorm.u16
85, // llvm.amdgcn.cvt.pkrtz
85, // llvm.amdgcn.dispatch.id
94, // llvm.amdgcn.dispatch.ptr
85, // llvm.amdgcn.div.fixup
85, // llvm.amdgcn.div.fmas
95, // llvm.amdgcn.div.scale
96, // llvm.amdgcn.ds.append
87, // llvm.amdgcn.ds.bpermute
96, // llvm.amdgcn.ds.consume
86, // llvm.amdgcn.ds.fadd
86, // llvm.amdgcn.ds.fmax
86, // llvm.amdgcn.ds.fmin
97, // llvm.amdgcn.ds.gws.barrier
98, // llvm.amdgcn.ds.gws.init
97, // llvm.amdgcn.ds.gws.sema.br
97, // llvm.amdgcn.ds.gws.sema.p
97, // llvm.amdgcn.ds.gws.sema.release.all
97, // llvm.amdgcn.ds.gws.sema.v
99, // llvm.amdgcn.ds.ordered.add
99, // llvm.amdgcn.ds.ordered.swap
87, // llvm.amdgcn.ds.permute
100, // llvm.amdgcn.ds.swizzle
101, // llvm.amdgcn.else
101, // llvm.amdgcn.end.cf
102, // llvm.amdgcn.endpgm
103, // llvm.amdgcn.exp
104, // llvm.amdgcn.exp.compr
105, // llvm.amdgcn.fcmp
85, // llvm.amdgcn.fdiv.fast
106, // llvm.amdgcn.fdot2
85, // llvm.amdgcn.fma.legacy
85, // llvm.amdgcn.fmad.ftz
85, // llvm.amdgcn.fmed3
85, // llvm.amdgcn.fmul.legacy
85, // llvm.amdgcn.fract
85, // llvm.amdgcn.frexp.exp
85, // llvm.amdgcn.frexp.mant
107, // llvm.amdgcn.global.atomic.csub
107, // llvm.amdgcn.global.atomic.fadd
85, // llvm.amdgcn.groupstaticsize
105, // llvm.amdgcn.icmp
101, // llvm.amdgcn.if
87, // llvm.amdgcn.if.break
108, // llvm.amdgcn.image.atomic.add.1d
109, // llvm.amdgcn.image.atomic.add.1darray
109, // llvm.amdgcn.image.atomic.add.2d
110, // llvm.amdgcn.image.atomic.add.2darray
111, // llvm.amdgcn.image.atomic.add.2darraymsaa
110, // llvm.amdgcn.image.atomic.add.2dmsaa
110, // llvm.amdgcn.image.atomic.add.3d
110, // llvm.amdgcn.image.atomic.add.cube
108, // llvm.amdgcn.image.atomic.and.1d
109, // llvm.amdgcn.image.atomic.and.1darray
109, // llvm.amdgcn.image.atomic.and.2d
110, // llvm.amdgcn.image.atomic.and.2darray
111, // llvm.amdgcn.image.atomic.and.2darraymsaa
110, // llvm.amdgcn.image.atomic.and.2dmsaa
110, // llvm.amdgcn.image.atomic.and.3d
110, // llvm.amdgcn.image.atomic.and.cube
109, // llvm.amdgcn.image.atomic.cmpswap.1d
110, // llvm.amdgcn.image.atomic.cmpswap.1darray
110, // llvm.amdgcn.image.atomic.cmpswap.2d
111, // llvm.amdgcn.image.atomic.cmpswap.2darray
112, // llvm.amdgcn.image.atomic.cmpswap.2darraymsaa
111, // llvm.amdgcn.image.atomic.cmpswap.2dmsaa
111, // llvm.amdgcn.image.atomic.cmpswap.3d
111, // llvm.amdgcn.image.atomic.cmpswap.cube
108, // llvm.amdgcn.image.atomic.dec.1d
109, // llvm.amdgcn.image.atomic.dec.1darray
109, // llvm.amdgcn.image.atomic.dec.2d
110, // llvm.amdgcn.image.atomic.dec.2darray
111, // llvm.amdgcn.image.atomic.dec.2darraymsaa
110, // llvm.amdgcn.image.atomic.dec.2dmsaa
110, // llvm.amdgcn.image.atomic.dec.3d
110, // llvm.amdgcn.image.atomic.dec.cube
108, // llvm.amdgcn.image.atomic.inc.1d
109, // llvm.amdgcn.image.atomic.inc.1darray
109, // llvm.amdgcn.image.atomic.inc.2d
110, // llvm.amdgcn.image.atomic.inc.2darray
111, // llvm.amdgcn.image.atomic.inc.2darraymsaa
110, // llvm.amdgcn.image.atomic.inc.2dmsaa
110, // llvm.amdgcn.image.atomic.inc.3d
110, // llvm.amdgcn.image.atomic.inc.cube
108, // llvm.amdgcn.image.atomic.or.1d
109, // llvm.amdgcn.image.atomic.or.1darray
109, // llvm.amdgcn.image.atomic.or.2d
110, // llvm.amdgcn.image.atomic.or.2darray
111, // llvm.amdgcn.image.atomic.or.2darraymsaa
110, // llvm.amdgcn.image.atomic.or.2dmsaa
110, // llvm.amdgcn.image.atomic.or.3d
110, // llvm.amdgcn.image.atomic.or.cube
108, // llvm.amdgcn.image.atomic.smax.1d
109, // llvm.amdgcn.image.atomic.smax.1darray
109, // llvm.amdgcn.image.atomic.smax.2d
110, // llvm.amdgcn.image.atomic.smax.2darray
111, // llvm.amdgcn.image.atomic.smax.2darraymsaa
110, // llvm.amdgcn.image.atomic.smax.2dmsaa
110, // llvm.amdgcn.image.atomic.smax.3d
110, // llvm.amdgcn.image.atomic.smax.cube
108, // llvm.amdgcn.image.atomic.smin.1d
109, // llvm.amdgcn.image.atomic.smin.1darray
109, // llvm.amdgcn.image.atomic.smin.2d
110, // llvm.amdgcn.image.atomic.smin.2darray
111, // llvm.amdgcn.image.atomic.smin.2darraymsaa
110, // llvm.amdgcn.image.atomic.smin.2dmsaa
110, // llvm.amdgcn.image.atomic.smin.3d
110, // llvm.amdgcn.image.atomic.smin.cube
108, // llvm.amdgcn.image.atomic.sub.1d
109, // llvm.amdgcn.image.atomic.sub.1darray
109, // llvm.amdgcn.image.atomic.sub.2d
110, // llvm.amdgcn.image.atomic.sub.2darray
111, // llvm.amdgcn.image.atomic.sub.2darraymsaa
110, // llvm.amdgcn.image.atomic.sub.2dmsaa
110, // llvm.amdgcn.image.atomic.sub.3d
110, // llvm.amdgcn.image.atomic.sub.cube
108, // llvm.amdgcn.image.atomic.swap.1d
109, // llvm.amdgcn.image.atomic.swap.1darray
109, // llvm.amdgcn.image.atomic.swap.2d
110, // llvm.amdgcn.image.atomic.swap.2darray
111, // llvm.amdgcn.image.atomic.swap.2darraymsaa
110, // llvm.amdgcn.image.atomic.swap.2dmsaa
110, // llvm.amdgcn.image.atomic.swap.3d
110, // llvm.amdgcn.image.atomic.swap.cube
108, // llvm.amdgcn.image.atomic.umax.1d
109, // llvm.amdgcn.image.atomic.umax.1darray
109, // llvm.amdgcn.image.atomic.umax.2d
110, // llvm.amdgcn.image.atomic.umax.2darray
111, // llvm.amdgcn.image.atomic.umax.2darraymsaa
110, // llvm.amdgcn.image.atomic.umax.2dmsaa
110, // llvm.amdgcn.image.atomic.umax.3d
110, // llvm.amdgcn.image.atomic.umax.cube
108, // llvm.amdgcn.image.atomic.umin.1d
109, // llvm.amdgcn.image.atomic.umin.1darray
109, // llvm.amdgcn.image.atomic.umin.2d
110, // llvm.amdgcn.image.atomic.umin.2darray
111, // llvm.amdgcn.image.atomic.umin.2darraymsaa
110, // llvm.amdgcn.image.atomic.umin.2dmsaa
110, // llvm.amdgcn.image.atomic.umin.3d
110, // llvm.amdgcn.image.atomic.umin.cube
108, // llvm.amdgcn.image.atomic.xor.1d
109, // llvm.amdgcn.image.atomic.xor.1darray
109, // llvm.amdgcn.image.atomic.xor.2d
110, // llvm.amdgcn.image.atomic.xor.2darray
111, // llvm.amdgcn.image.atomic.xor.2darraymsaa
110, // llvm.amdgcn.image.atomic.xor.2dmsaa
110, // llvm.amdgcn.image.atomic.xor.3d
110, // llvm.amdgcn.image.atomic.xor.cube
21, // llvm.amdgcn.image.bvh.intersect.ray
113, // llvm.amdgcn.image.gather4.2d
114, // llvm.amdgcn.image.gather4.2darray
114, // llvm.amdgcn.image.gather4.b.2d
115, // llvm.amdgcn.image.gather4.b.2darray
115, // llvm.amdgcn.image.gather4.b.cl.2d
116, // llvm.amdgcn.image.gather4.b.cl.2darray
116, // llvm.amdgcn.image.gather4.b.cl.cube
116, // llvm.amdgcn.image.gather4.b.cl.o.2d
117, // llvm.amdgcn.image.gather4.b.cl.o.2darray
117, // llvm.amdgcn.image.gather4.b.cl.o.cube
115, // llvm.amdgcn.image.gather4.b.cube
115, // llvm.amdgcn.image.gather4.b.o.2d
116, // llvm.amdgcn.image.gather4.b.o.2darray
116, // llvm.amdgcn.image.gather4.b.o.cube
114, // llvm.amdgcn.image.gather4.c.2d
115, // llvm.amdgcn.image.gather4.c.2darray
115, // llvm.amdgcn.image.gather4.c.b.2d
116, // llvm.amdgcn.image.gather4.c.b.2darray
116, // llvm.amdgcn.image.gather4.c.b.cl.2d
117, // llvm.amdgcn.image.gather4.c.b.cl.2darray
117, // llvm.amdgcn.image.gather4.c.b.cl.cube
117, // llvm.amdgcn.image.gather4.c.b.cl.o.2d
118, // llvm.amdgcn.image.gather4.c.b.cl.o.2darray
118, // llvm.amdgcn.image.gather4.c.b.cl.o.cube
116, // llvm.amdgcn.image.gather4.c.b.cube
116, // llvm.amdgcn.image.gather4.c.b.o.2d
117, // llvm.amdgcn.image.gather4.c.b.o.2darray
117, // llvm.amdgcn.image.gather4.c.b.o.cube
115, // llvm.amdgcn.image.gather4.c.cl.2d
116, // llvm.amdgcn.image.gather4.c.cl.2darray
116, // llvm.amdgcn.image.gather4.c.cl.cube
116, // llvm.amdgcn.image.gather4.c.cl.o.2d
117, // llvm.amdgcn.image.gather4.c.cl.o.2darray
117, // llvm.amdgcn.image.gather4.c.cl.o.cube
115, // llvm.amdgcn.image.gather4.c.cube
115, // llvm.amdgcn.image.gather4.c.l.2d
116, // llvm.amdgcn.image.gather4.c.l.2darray
116, // llvm.amdgcn.image.gather4.c.l.cube
116, // llvm.amdgcn.image.gather4.c.l.o.2d
117, // llvm.amdgcn.image.gather4.c.l.o.2darray
117, // llvm.amdgcn.image.gather4.c.l.o.cube
114, // llvm.amdgcn.image.gather4.c.lz.2d
115, // llvm.amdgcn.image.gather4.c.lz.2darray
115, // llvm.amdgcn.image.gather4.c.lz.cube
115, // llvm.amdgcn.image.gather4.c.lz.o.2d
116, // llvm.amdgcn.image.gather4.c.lz.o.2darray
116, // llvm.amdgcn.image.gather4.c.lz.o.cube
115, // llvm.amdgcn.image.gather4.c.o.2d
116, // llvm.amdgcn.image.gather4.c.o.2darray
116, // llvm.amdgcn.image.gather4.c.o.cube
114, // llvm.amdgcn.image.gather4.cl.2d
115, // llvm.amdgcn.image.gather4.cl.2darray
115, // llvm.amdgcn.image.gather4.cl.cube
115, // llvm.amdgcn.image.gather4.cl.o.2d
116, // llvm.amdgcn.image.gather4.cl.o.2darray
116, // llvm.amdgcn.image.gather4.cl.o.cube
114, // llvm.amdgcn.image.gather4.cube
114, // llvm.amdgcn.image.gather4.l.2d
115, // llvm.amdgcn.image.gather4.l.2darray
115, // llvm.amdgcn.image.gather4.l.cube
115, // llvm.amdgcn.image.gather4.l.o.2d
116, // llvm.amdgcn.image.gather4.l.o.2darray
116, // llvm.amdgcn.image.gather4.l.o.cube
113, // llvm.amdgcn.image.gather4.lz.2d
114, // llvm.amdgcn.image.gather4.lz.2darray
114, // llvm.amdgcn.image.gather4.lz.cube
114, // llvm.amdgcn.image.gather4.lz.o.2d
115, // llvm.amdgcn.image.gather4.lz.o.2darray
115, // llvm.amdgcn.image.gather4.lz.o.cube
114, // llvm.amdgcn.image.gather4.o.2d
115, // llvm.amdgcn.image.gather4.o.2darray
115, // llvm.amdgcn.image.gather4.o.cube
119, // llvm.amdgcn.image.getlod.1d
120, // llvm.amdgcn.image.getlod.1darray
120, // llvm.amdgcn.image.getlod.2d
121, // llvm.amdgcn.image.getlod.2darray
121, // llvm.amdgcn.image.getlod.3d
121, // llvm.amdgcn.image.getlod.cube
122, // llvm.amdgcn.image.getresinfo.1d
122, // llvm.amdgcn.image.getresinfo.1darray
122, // llvm.amdgcn.image.getresinfo.2d
122, // llvm.amdgcn.image.getresinfo.2darray
122, // llvm.amdgcn.image.getresinfo.2darraymsaa
122, // llvm.amdgcn.image.getresinfo.2dmsaa
122, // llvm.amdgcn.image.getresinfo.3d
122, // llvm.amdgcn.image.getresinfo.cube
123, // llvm.amdgcn.image.load.1d
124, // llvm.amdgcn.image.load.1darray
124, // llvm.amdgcn.image.load.2d
125, // llvm.amdgcn.image.load.2darray
126, // llvm.amdgcn.image.load.2darraymsaa
125, // llvm.amdgcn.image.load.2dmsaa
125, // llvm.amdgcn.image.load.3d
125, // llvm.amdgcn.image.load.cube
124, // llvm.amdgcn.image.load.mip.1d
125, // llvm.amdgcn.image.load.mip.1darray
125, // llvm.amdgcn.image.load.mip.2d
126, // llvm.amdgcn.image.load.mip.2darray
126, // llvm.amdgcn.image.load.mip.3d
126, // llvm.amdgcn.image.load.mip.cube
123, // llvm.amdgcn.image.msaa.load.1d
124, // llvm.amdgcn.image.msaa.load.1darray
124, // llvm.amdgcn.image.msaa.load.2d
125, // llvm.amdgcn.image.msaa.load.2darray
126, // llvm.amdgcn.image.msaa.load.2darraymsaa
125, // llvm.amdgcn.image.msaa.load.2dmsaa
125, // llvm.amdgcn.image.msaa.load.3d
125, // llvm.amdgcn.image.msaa.load.cube
127, // llvm.amdgcn.image.sample.1d
113, // llvm.amdgcn.image.sample.1darray
113, // llvm.amdgcn.image.sample.2d
114, // llvm.amdgcn.image.sample.2darray
114, // llvm.amdgcn.image.sample.3d
113, // llvm.amdgcn.image.sample.b.1d
114, // llvm.amdgcn.image.sample.b.1darray
114, // llvm.amdgcn.image.sample.b.2d
115, // llvm.amdgcn.image.sample.b.2darray
115, // llvm.amdgcn.image.sample.b.3d
114, // llvm.amdgcn.image.sample.b.cl.1d
115, // llvm.amdgcn.image.sample.b.cl.1darray
115, // llvm.amdgcn.image.sample.b.cl.2d
116, // llvm.amdgcn.image.sample.b.cl.2darray
116, // llvm.amdgcn.image.sample.b.cl.3d
116, // llvm.amdgcn.image.sample.b.cl.cube
115, // llvm.amdgcn.image.sample.b.cl.o.1d
116, // llvm.amdgcn.image.sample.b.cl.o.1darray
116, // llvm.amdgcn.image.sample.b.cl.o.2d
117, // llvm.amdgcn.image.sample.b.cl.o.2darray
117, // llvm.amdgcn.image.sample.b.cl.o.3d
117, // llvm.amdgcn.image.sample.b.cl.o.cube
115, // llvm.amdgcn.image.sample.b.cube
114, // llvm.amdgcn.image.sample.b.o.1d
115, // llvm.amdgcn.image.sample.b.o.1darray
115, // llvm.amdgcn.image.sample.b.o.2d
116, // llvm.amdgcn.image.sample.b.o.2darray
116, // llvm.amdgcn.image.sample.b.o.3d
116, // llvm.amdgcn.image.sample.b.o.cube
113, // llvm.amdgcn.image.sample.c.1d
114, // llvm.amdgcn.image.sample.c.1darray
114, // llvm.amdgcn.image.sample.c.2d
115, // llvm.amdgcn.image.sample.c.2darray
115, // llvm.amdgcn.image.sample.c.3d
114, // llvm.amdgcn.image.sample.c.b.1d
115, // llvm.amdgcn.image.sample.c.b.1darray
115, // llvm.amdgcn.image.sample.c.b.2d
116, // llvm.amdgcn.image.sample.c.b.2darray
116, // llvm.amdgcn.image.sample.c.b.3d
115, // llvm.amdgcn.image.sample.c.b.cl.1d
116, // llvm.amdgcn.image.sample.c.b.cl.1darray
116, // llvm.amdgcn.image.sample.c.b.cl.2d
117, // llvm.amdgcn.image.sample.c.b.cl.2darray
117, // llvm.amdgcn.image.sample.c.b.cl.3d
117, // llvm.amdgcn.image.sample.c.b.cl.cube
116, // llvm.amdgcn.image.sample.c.b.cl.o.1d
117, // llvm.amdgcn.image.sample.c.b.cl.o.1darray
117, // llvm.amdgcn.image.sample.c.b.cl.o.2d
118, // llvm.amdgcn.image.sample.c.b.cl.o.2darray
118, // llvm.amdgcn.image.sample.c.b.cl.o.3d
118, // llvm.amdgcn.image.sample.c.b.cl.o.cube
116, // llvm.amdgcn.image.sample.c.b.cube
115, // llvm.amdgcn.image.sample.c.b.o.1d
116, // llvm.amdgcn.image.sample.c.b.o.1darray
116, // llvm.amdgcn.image.sample.c.b.o.2d
117, // llvm.amdgcn.image.sample.c.b.o.2darray
117, // llvm.amdgcn.image.sample.c.b.o.3d
117, // llvm.amdgcn.image.sample.c.b.o.cube
115, // llvm.amdgcn.image.sample.c.cd.1d
116, // llvm.amdgcn.image.sample.c.cd.1darray
118, // llvm.amdgcn.image.sample.c.cd.2d
128, // llvm.amdgcn.image.sample.c.cd.2darray
129, // llvm.amdgcn.image.sample.c.cd.3d
116, // llvm.amdgcn.image.sample.c.cd.cl.1d
117, // llvm.amdgcn.image.sample.c.cd.cl.1darray
128, // llvm.amdgcn.image.sample.c.cd.cl.2d
130, // llvm.amdgcn.image.sample.c.cd.cl.2darray
131, // llvm.amdgcn.image.sample.c.cd.cl.3d
130, // llvm.amdgcn.image.sample.c.cd.cl.cube
117, // llvm.amdgcn.image.sample.c.cd.cl.o.1d
118, // llvm.amdgcn.image.sample.c.cd.cl.o.1darray
130, // llvm.amdgcn.image.sample.c.cd.cl.o.2d
129, // llvm.amdgcn.image.sample.c.cd.cl.o.2darray
132, // llvm.amdgcn.image.sample.c.cd.cl.o.3d
129, // llvm.amdgcn.image.sample.c.cd.cl.o.cube
128, // llvm.amdgcn.image.sample.c.cd.cube
116, // llvm.amdgcn.image.sample.c.cd.o.1d
117, // llvm.amdgcn.image.sample.c.cd.o.1darray
128, // llvm.amdgcn.image.sample.c.cd.o.2d
130, // llvm.amdgcn.image.sample.c.cd.o.2darray
131, // llvm.amdgcn.image.sample.c.cd.o.3d
130, // llvm.amdgcn.image.sample.c.cd.o.cube
114, // llvm.amdgcn.image.sample.c.cl.1d
115, // llvm.amdgcn.image.sample.c.cl.1darray
115, // llvm.amdgcn.image.sample.c.cl.2d
116, // llvm.amdgcn.image.sample.c.cl.2darray
116, // llvm.amdgcn.image.sample.c.cl.3d
116, // llvm.amdgcn.image.sample.c.cl.cube
115, // llvm.amdgcn.image.sample.c.cl.o.1d
116, // llvm.amdgcn.image.sample.c.cl.o.1darray
116, // llvm.amdgcn.image.sample.c.cl.o.2d
117, // llvm.amdgcn.image.sample.c.cl.o.2darray
117, // llvm.amdgcn.image.sample.c.cl.o.3d
117, // llvm.amdgcn.image.sample.c.cl.o.cube
115, // llvm.amdgcn.image.sample.c.cube
115, // llvm.amdgcn.image.sample.c.d.1d
116, // llvm.amdgcn.image.sample.c.d.1darray
118, // llvm.amdgcn.image.sample.c.d.2d
128, // llvm.amdgcn.image.sample.c.d.2darray
129, // llvm.amdgcn.image.sample.c.d.3d
116, // llvm.amdgcn.image.sample.c.d.cl.1d
117, // llvm.amdgcn.image.sample.c.d.cl.1darray
128, // llvm.amdgcn.image.sample.c.d.cl.2d
130, // llvm.amdgcn.image.sample.c.d.cl.2darray
131, // llvm.amdgcn.image.sample.c.d.cl.3d
130, // llvm.amdgcn.image.sample.c.d.cl.cube
117, // llvm.amdgcn.image.sample.c.d.cl.o.1d
118, // llvm.amdgcn.image.sample.c.d.cl.o.1darray
130, // llvm.amdgcn.image.sample.c.d.cl.o.2d
129, // llvm.amdgcn.image.sample.c.d.cl.o.2darray
132, // llvm.amdgcn.image.sample.c.d.cl.o.3d
129, // llvm.amdgcn.image.sample.c.d.cl.o.cube
128, // llvm.amdgcn.image.sample.c.d.cube
116, // llvm.amdgcn.image.sample.c.d.o.1d
117, // llvm.amdgcn.image.sample.c.d.o.1darray
128, // llvm.amdgcn.image.sample.c.d.o.2d
130, // llvm.amdgcn.image.sample.c.d.o.2darray
131, // llvm.amdgcn.image.sample.c.d.o.3d
130, // llvm.amdgcn.image.sample.c.d.o.cube
114, // llvm.amdgcn.image.sample.c.l.1d
115, // llvm.amdgcn.image.sample.c.l.1darray
115, // llvm.amdgcn.image.sample.c.l.2d
116, // llvm.amdgcn.image.sample.c.l.2darray
116, // llvm.amdgcn.image.sample.c.l.3d
116, // llvm.amdgcn.image.sample.c.l.cube
115, // llvm.amdgcn.image.sample.c.l.o.1d
116, // llvm.amdgcn.image.sample.c.l.o.1darray
116, // llvm.amdgcn.image.sample.c.l.o.2d
117, // llvm.amdgcn.image.sample.c.l.o.2darray
117, // llvm.amdgcn.image.sample.c.l.o.3d
117, // llvm.amdgcn.image.sample.c.l.o.cube
113, // llvm.amdgcn.image.sample.c.lz.1d
114, // llvm.amdgcn.image.sample.c.lz.1darray
114, // llvm.amdgcn.image.sample.c.lz.2d
115, // llvm.amdgcn.image.sample.c.lz.2darray
115, // llvm.amdgcn.image.sample.c.lz.3d
115, // llvm.amdgcn.image.sample.c.lz.cube
114, // llvm.amdgcn.image.sample.c.lz.o.1d
115, // llvm.amdgcn.image.sample.c.lz.o.1darray
115, // llvm.amdgcn.image.sample.c.lz.o.2d
116, // llvm.amdgcn.image.sample.c.lz.o.2darray
116, // llvm.amdgcn.image.sample.c.lz.o.3d
116, // llvm.amdgcn.image.sample.c.lz.o.cube
114, // llvm.amdgcn.image.sample.c.o.1d
115, // llvm.amdgcn.image.sample.c.o.1darray
115, // llvm.amdgcn.image.sample.c.o.2d
116, // llvm.amdgcn.image.sample.c.o.2darray
116, // llvm.amdgcn.image.sample.c.o.3d
116, // llvm.amdgcn.image.sample.c.o.cube
114, // llvm.amdgcn.image.sample.cd.1d
115, // llvm.amdgcn.image.sample.cd.1darray
117, // llvm.amdgcn.image.sample.cd.2d
118, // llvm.amdgcn.image.sample.cd.2darray
130, // llvm.amdgcn.image.sample.cd.3d
115, // llvm.amdgcn.image.sample.cd.cl.1d
116, // llvm.amdgcn.image.sample.cd.cl.1darray
118, // llvm.amdgcn.image.sample.cd.cl.2d
128, // llvm.amdgcn.image.sample.cd.cl.2darray
129, // llvm.amdgcn.image.sample.cd.cl.3d
128, // llvm.amdgcn.image.sample.cd.cl.cube
116, // llvm.amdgcn.image.sample.cd.cl.o.1d
117, // llvm.amdgcn.image.sample.cd.cl.o.1darray
128, // llvm.amdgcn.image.sample.cd.cl.o.2d
130, // llvm.amdgcn.image.sample.cd.cl.o.2darray
131, // llvm.amdgcn.image.sample.cd.cl.o.3d
130, // llvm.amdgcn.image.sample.cd.cl.o.cube
118, // llvm.amdgcn.image.sample.cd.cube
115, // llvm.amdgcn.image.sample.cd.o.1d
116, // llvm.amdgcn.image.sample.cd.o.1darray
118, // llvm.amdgcn.image.sample.cd.o.2d
128, // llvm.amdgcn.image.sample.cd.o.2darray
129, // llvm.amdgcn.image.sample.cd.o.3d
128, // llvm.amdgcn.image.sample.cd.o.cube
113, // llvm.amdgcn.image.sample.cl.1d
114, // llvm.amdgcn.image.sample.cl.1darray
114, // llvm.amdgcn.image.sample.cl.2d
115, // llvm.amdgcn.image.sample.cl.2darray
115, // llvm.amdgcn.image.sample.cl.3d
115, // llvm.amdgcn.image.sample.cl.cube
114, // llvm.amdgcn.image.sample.cl.o.1d
115, // llvm.amdgcn.image.sample.cl.o.1darray
115, // llvm.amdgcn.image.sample.cl.o.2d
116, // llvm.amdgcn.image.sample.cl.o.2darray
116, // llvm.amdgcn.image.sample.cl.o.3d
116, // llvm.amdgcn.image.sample.cl.o.cube
114, // llvm.amdgcn.image.sample.cube
114, // llvm.amdgcn.image.sample.d.1d
115, // llvm.amdgcn.image.sample.d.1darray
117, // llvm.amdgcn.image.sample.d.2d
118, // llvm.amdgcn.image.sample.d.2darray
130, // llvm.amdgcn.image.sample.d.3d
115, // llvm.amdgcn.image.sample.d.cl.1d
116, // llvm.amdgcn.image.sample.d.cl.1darray
118, // llvm.amdgcn.image.sample.d.cl.2d
128, // llvm.amdgcn.image.sample.d.cl.2darray
129, // llvm.amdgcn.image.sample.d.cl.3d
128, // llvm.amdgcn.image.sample.d.cl.cube
116, // llvm.amdgcn.image.sample.d.cl.o.1d
117, // llvm.amdgcn.image.sample.d.cl.o.1darray
128, // llvm.amdgcn.image.sample.d.cl.o.2d
130, // llvm.amdgcn.image.sample.d.cl.o.2darray
131, // llvm.amdgcn.image.sample.d.cl.o.3d
130, // llvm.amdgcn.image.sample.d.cl.o.cube
118, // llvm.amdgcn.image.sample.d.cube
115, // llvm.amdgcn.image.sample.d.o.1d
116, // llvm.amdgcn.image.sample.d.o.1darray
118, // llvm.amdgcn.image.sample.d.o.2d
128, // llvm.amdgcn.image.sample.d.o.2darray
129, // llvm.amdgcn.image.sample.d.o.3d
128, // llvm.amdgcn.image.sample.d.o.cube
113, // llvm.amdgcn.image.sample.l.1d
114, // llvm.amdgcn.image.sample.l.1darray
114, // llvm.amdgcn.image.sample.l.2d
115, // llvm.amdgcn.image.sample.l.2darray
115, // llvm.amdgcn.image.sample.l.3d
115, // llvm.amdgcn.image.sample.l.cube
114, // llvm.amdgcn.image.sample.l.o.1d
115, // llvm.amdgcn.image.sample.l.o.1darray
115, // llvm.amdgcn.image.sample.l.o.2d
116, // llvm.amdgcn.image.sample.l.o.2darray
116, // llvm.amdgcn.image.sample.l.o.3d
116, // llvm.amdgcn.image.sample.l.o.cube
127, // llvm.amdgcn.image.sample.lz.1d
113, // llvm.amdgcn.image.sample.lz.1darray
113, // llvm.amdgcn.image.sample.lz.2d
114, // llvm.amdgcn.image.sample.lz.2darray
114, // llvm.amdgcn.image.sample.lz.3d
114, // llvm.amdgcn.image.sample.lz.cube
113, // llvm.amdgcn.image.sample.lz.o.1d
114, // llvm.amdgcn.image.sample.lz.o.1darray
114, // llvm.amdgcn.image.sample.lz.o.2d
115, // llvm.amdgcn.image.sample.lz.o.2darray
115, // llvm.amdgcn.image.sample.lz.o.3d
115, // llvm.amdgcn.image.sample.lz.o.cube
113, // llvm.amdgcn.image.sample.o.1d
114, // llvm.amdgcn.image.sample.o.1darray
114, // llvm.amdgcn.image.sample.o.2d
115, // llvm.amdgcn.image.sample.o.2darray
115, // llvm.amdgcn.image.sample.o.3d
115, // llvm.amdgcn.image.sample.o.cube
133, // llvm.amdgcn.image.store.1d
134, // llvm.amdgcn.image.store.1darray
134, // llvm.amdgcn.image.store.2d
135, // llvm.amdgcn.image.store.2darray
136, // llvm.amdgcn.image.store.2darraymsaa
135, // llvm.amdgcn.image.store.2dmsaa
135, // llvm.amdgcn.image.store.3d
135, // llvm.amdgcn.image.store.cube
134, // llvm.amdgcn.image.store.mip.1d
135, // llvm.amdgcn.image.store.mip.1darray
135, // llvm.amdgcn.image.store.mip.2d
136, // llvm.amdgcn.image.store.mip.2darray
136, // llvm.amdgcn.image.store.mip.3d
136, // llvm.amdgcn.image.store.mip.cube
94, // llvm.amdgcn.implicit.buffer.ptr
94, // llvm.amdgcn.implicitarg.ptr
137, // llvm.amdgcn.init.exec
138, // llvm.amdgcn.init.exec.from.input
139, // llvm.amdgcn.interp.mov
140, // llvm.amdgcn.interp.p1
141, // llvm.amdgcn.interp.p1.f16
142, // llvm.amdgcn.interp.p2
143, // llvm.amdgcn.interp.p2.f16
144, // llvm.amdgcn.is.private
144, // llvm.amdgcn.is.shared
94, // llvm.amdgcn.kernarg.segment.ptr
7, // llvm.amdgcn.kill
85, // llvm.amdgcn.ldexp
85, // llvm.amdgcn.lerp
85, // llvm.amdgcn.log.clamp
101, // llvm.amdgcn.loop
145, // llvm.amdgcn.mbcnt.hi
145, // llvm.amdgcn.mbcnt.lo
146, // llvm.amdgcn.mfma.f32.16x16x16f16
146, // llvm.amdgcn.mfma.f32.16x16x1f32
146, // llvm.amdgcn.mfma.f32.16x16x2bf16
146, // llvm.amdgcn.mfma.f32.16x16x4f16
146, // llvm.amdgcn.mfma.f32.16x16x4f32
146, // llvm.amdgcn.mfma.f32.16x16x8bf16
146, // llvm.amdgcn.mfma.f32.32x32x1f32
146, // llvm.amdgcn.mfma.f32.32x32x2bf16
146, // llvm.amdgcn.mfma.f32.32x32x2f32
146, // llvm.amdgcn.mfma.f32.32x32x4bf16
146, // llvm.amdgcn.mfma.f32.32x32x4f16
146, // llvm.amdgcn.mfma.f32.32x32x8f16
146, // llvm.amdgcn.mfma.f32.4x4x1f32
146, // llvm.amdgcn.mfma.f32.4x4x2bf16
146, // llvm.amdgcn.mfma.f32.4x4x4f16
146, // llvm.amdgcn.mfma.i32.16x16x16i8
146, // llvm.amdgcn.mfma.i32.16x16x4i8
146, // llvm.amdgcn.mfma.i32.32x32x4i8
146, // llvm.amdgcn.mfma.i32.32x32x8i8
146, // llvm.amdgcn.mfma.i32.4x4x4i8
147, // llvm.amdgcn.mov.dpp
100, // llvm.amdgcn.mov.dpp8
85, // llvm.amdgcn.mqsad.pk.u16.u8
85, // llvm.amdgcn.mqsad.u32.u8
85, // llvm.amdgcn.msad.u8
85, // llvm.amdgcn.mul.i24
85, // llvm.amdgcn.mul.u24
148, // llvm.amdgcn.permlane16
148, // llvm.amdgcn.permlanex16
145, // llvm.amdgcn.ps.live
85, // llvm.amdgcn.qsad.pk.u16.u8
94, // llvm.amdgcn.queue.ptr
88, // llvm.amdgcn.raw.buffer.atomic.add
88, // llvm.amdgcn.raw.buffer.atomic.and
89, // llvm.amdgcn.raw.buffer.atomic.cmpswap
88, // llvm.amdgcn.raw.buffer.atomic.dec
88, // llvm.amdgcn.raw.buffer.atomic.fadd
88, // llvm.amdgcn.raw.buffer.atomic.inc
88, // llvm.amdgcn.raw.buffer.atomic.or
88, // llvm.amdgcn.raw.buffer.atomic.smax
88, // llvm.amdgcn.raw.buffer.atomic.smin
88, // llvm.amdgcn.raw.buffer.atomic.sub
88, // llvm.amdgcn.raw.buffer.atomic.swap
88, // llvm.amdgcn.raw.buffer.atomic.umax
88, // llvm.amdgcn.raw.buffer.atomic.umin
88, // llvm.amdgcn.raw.buffer.atomic.xor
149, // llvm.amdgcn.raw.buffer.load
149, // llvm.amdgcn.raw.buffer.load.format
150, // llvm.amdgcn.raw.buffer.store
150, // llvm.amdgcn.raw.buffer.store.format
91, // llvm.amdgcn.raw.tbuffer.load
92, // llvm.amdgcn.raw.tbuffer.store
85, // llvm.amdgcn.rcp
85, // llvm.amdgcn.rcp.legacy
87, // llvm.amdgcn.readfirstlane
87, // llvm.amdgcn.readlane
85, // llvm.amdgcn.reloc.constant
85, // llvm.amdgcn.rsq
85, // llvm.amdgcn.rsq.clamp
85, // llvm.amdgcn.rsq.legacy
151, // llvm.amdgcn.s.barrier
152, // llvm.amdgcn.s.buffer.load
93, // llvm.amdgcn.s.dcache.inv
93, // llvm.amdgcn.s.dcache.inv.vol
93, // llvm.amdgcn.s.dcache.wb
93, // llvm.amdgcn.s.dcache.wb.vol
153, // llvm.amdgcn.s.decperflevel
154, // llvm.amdgcn.s.get.waveid.in.workgroup
85, // llvm.amdgcn.s.getpc
155, // llvm.amdgcn.s.getreg
153, // llvm.amdgcn.s.incperflevel
156, // llvm.amdgcn.s.memrealtime
156, // llvm.amdgcn.s.memtime
157, // llvm.amdgcn.s.sendmsg
157, // llvm.amdgcn.s.sendmsghalt
157, // llvm.amdgcn.s.setreg
153, // llvm.amdgcn.s.sleep
153, // llvm.amdgcn.s.waitcnt
85, // llvm.amdgcn.sad.hi.u8
85, // llvm.amdgcn.sad.u16
85, // llvm.amdgcn.sad.u8
85, // llvm.amdgcn.sbfe
106, // llvm.amdgcn.sdot2
106, // llvm.amdgcn.sdot4
106, // llvm.amdgcn.sdot8
87, // llvm.amdgcn.set.inactive
85, // llvm.amdgcn.sffbh
85, // llvm.amdgcn.sin
85, // llvm.amdgcn.softwqm
85, // llvm.amdgcn.sqrt
89, // llvm.amdgcn.struct.buffer.atomic.add
89, // llvm.amdgcn.struct.buffer.atomic.and
158, // llvm.amdgcn.struct.buffer.atomic.cmpswap
89, // llvm.amdgcn.struct.buffer.atomic.dec
89, // llvm.amdgcn.struct.buffer.atomic.fadd
89, // llvm.amdgcn.struct.buffer.atomic.inc
89, // llvm.amdgcn.struct.buffer.atomic.or
89, // llvm.amdgcn.struct.buffer.atomic.smax
89, // llvm.amdgcn.struct.buffer.atomic.smin
89, // llvm.amdgcn.struct.buffer.atomic.sub
89, // llvm.amdgcn.struct.buffer.atomic.swap
89, // llvm.amdgcn.struct.buffer.atomic.umax
89, // llvm.amdgcn.struct.buffer.atomic.umin
89, // llvm.amdgcn.struct.buffer.atomic.xor
159, // llvm.amdgcn.struct.buffer.load
159, // llvm.amdgcn.struct.buffer.load.format
160, // llvm.amdgcn.struct.buffer.store
160, // llvm.amdgcn.struct.buffer.store.format
161, // llvm.amdgcn.struct.tbuffer.load
162, // llvm.amdgcn.struct.tbuffer.store
163, // llvm.amdgcn.tbuffer.load
164, // llvm.amdgcn.tbuffer.store
85, // llvm.amdgcn.trig.preop
85, // llvm.amdgcn.ubfe
106, // llvm.amdgcn.udot2
106, // llvm.amdgcn.udot4
106, // llvm.amdgcn.udot8
165, // llvm.amdgcn.unreachable
166, // llvm.amdgcn.update.dpp
151, // llvm.amdgcn.wave.barrier
85, // llvm.amdgcn.wavefrontsize
85, // llvm.amdgcn.workgroup.id.x
85, // llvm.amdgcn.workgroup.id.y
85, // llvm.amdgcn.workgroup.id.z
85, // llvm.amdgcn.workitem.id.x
85, // llvm.amdgcn.workitem.id.y
85, // llvm.amdgcn.workitem.id.z
85, // llvm.amdgcn.wqm
87, // llvm.amdgcn.wqm.vote
87, // llvm.amdgcn.writelane
167, // llvm.amdgcn.wwm
168, // llvm.arm.cde.cx1
169, // llvm.arm.cde.cx1a
168, // llvm.arm.cde.cx1d
170, // llvm.arm.cde.cx1da
169, // llvm.arm.cde.cx2
170, // llvm.arm.cde.cx2a
169, // llvm.arm.cde.cx2d
171, // llvm.arm.cde.cx2da
170, // llvm.arm.cde.cx3
171, // llvm.arm.cde.cx3a
170, // llvm.arm.cde.cx3d
172, // llvm.arm.cde.cx3da
168, // llvm.arm.cde.vcx1
169, // llvm.arm.cde.vcx1a
168, // llvm.arm.cde.vcx1q
169, // llvm.arm.cde.vcx1q.predicated
169, // llvm.arm.cde.vcx1qa
169, // llvm.arm.cde.vcx1qa.predicated
169, // llvm.arm.cde.vcx2
170, // llvm.arm.cde.vcx2a
169, // llvm.arm.cde.vcx2q
170, // llvm.arm.cde.vcx2q.predicated
170, // llvm.arm.cde.vcx2qa
170, // llvm.arm.cde.vcx2qa.predicated
170, // llvm.arm.cde.vcx3
171, // llvm.arm.cde.vcx3a
170, // llvm.arm.cde.vcx3q
171, // llvm.arm.cde.vcx3q.predicated
171, // llvm.arm.cde.vcx3qa
171, // llvm.arm.cde.vcx3qa.predicated
173, // llvm.arm.cdp
173, // llvm.arm.cdp2
7, // llvm.arm.clrex
12, // llvm.arm.cls
12, // llvm.arm.cls64
12, // llvm.arm.cmse.tt
12, // llvm.arm.cmse.tta
12, // llvm.arm.cmse.ttat
12, // llvm.arm.cmse.ttt
12, // llvm.arm.crc32b
12, // llvm.arm.crc32cb
12, // llvm.arm.crc32ch
12, // llvm.arm.crc32cw
12, // llvm.arm.crc32h
12, // llvm.arm.crc32w
7, // llvm.arm.dbg
7, // llvm.arm.dmb
7, // llvm.arm.dsb
7, // llvm.arm.get.fpscr
7, // llvm.arm.gnu.eabi.mcount
7, // llvm.arm.hint
7, // llvm.arm.isb
7, // llvm.arm.ldaex
7, // llvm.arm.ldaexd
174, // llvm.arm.ldc
174, // llvm.arm.ldc2
174, // llvm.arm.ldc2l
174, // llvm.arm.ldcl
7, // llvm.arm.ldrex
7, // llvm.arm.ldrexd
175, // llvm.arm.mcr
175, // llvm.arm.mcr2
176, // llvm.arm.mcrr
176, // llvm.arm.mcrr2
177, // llvm.arm.mrc
177, // llvm.arm.mrc2
178, // llvm.arm.mrrc
178, // llvm.arm.mrrc2
12, // llvm.arm.mve.abd.predicated
12, // llvm.arm.mve.abs.predicated
12, // llvm.arm.mve.add.predicated
12, // llvm.arm.mve.addlv
12, // llvm.arm.mve.addlv.predicated
12, // llvm.arm.mve.addv
12, // llvm.arm.mve.addv.predicated
12, // llvm.arm.mve.and.predicated
12, // llvm.arm.mve.asrl
12, // llvm.arm.mve.bic.predicated
12, // llvm.arm.mve.cls.predicated
12, // llvm.arm.mve.clz.predicated
12, // llvm.arm.mve.eor.predicated
12, // llvm.arm.mve.fma.predicated
12, // llvm.arm.mve.hadd.predicated
12, // llvm.arm.mve.hsub.predicated
12, // llvm.arm.mve.lsll
12, // llvm.arm.mve.max.predicated
12, // llvm.arm.mve.maxav
12, // llvm.arm.mve.maxav.predicated
12, // llvm.arm.mve.maxnmav
12, // llvm.arm.mve.maxnmav.predicated
12, // llvm.arm.mve.maxnmv
12, // llvm.arm.mve.maxnmv.predicated
12, // llvm.arm.mve.maxv
12, // llvm.arm.mve.maxv.predicated
12, // llvm.arm.mve.min.predicated
12, // llvm.arm.mve.minav
12, // llvm.arm.mve.minav.predicated
12, // llvm.arm.mve.minnmav
12, // llvm.arm.mve.minnmav.predicated
12, // llvm.arm.mve.minnmv
12, // llvm.arm.mve.minnmv.predicated
12, // llvm.arm.mve.minv
12, // llvm.arm.mve.minv.predicated
12, // llvm.arm.mve.mul.predicated
12, // llvm.arm.mve.mulh.predicated
12, // llvm.arm.mve.mull.int.predicated
12, // llvm.arm.mve.mull.poly.predicated
12, // llvm.arm.mve.mvn.predicated
12, // llvm.arm.mve.neg.predicated
12, // llvm.arm.mve.orn.predicated
12, // llvm.arm.mve.orr.predicated
12, // llvm.arm.mve.pred.i2v
12, // llvm.arm.mve.pred.v2i
12, // llvm.arm.mve.qabs.predicated
12, // llvm.arm.mve.qadd.predicated
12, // llvm.arm.mve.qdmulh.predicated
12, // llvm.arm.mve.qneg.predicated
12, // llvm.arm.mve.qrdmulh.predicated
12, // llvm.arm.mve.qsub.predicated
12, // llvm.arm.mve.rhadd.predicated
12, // llvm.arm.mve.rmulh.predicated
12, // llvm.arm.mve.shl.imm.predicated
12, // llvm.arm.mve.shr.imm.predicated
12, // llvm.arm.mve.sqrshr
12, // llvm.arm.mve.sqrshrl
12, // llvm.arm.mve.sqshl
12, // llvm.arm.mve.sqshll
12, // llvm.arm.mve.srshr
12, // llvm.arm.mve.srshrl
12, // llvm.arm.mve.sub.predicated
12, // llvm.arm.mve.uqrshl
12, // llvm.arm.mve.uqrshll
12, // llvm.arm.mve.uqshl
12, // llvm.arm.mve.uqshll
12, // llvm.arm.mve.urshr
12, // llvm.arm.mve.urshrl
12, // llvm.arm.mve.vabav
12, // llvm.arm.mve.vabav.predicated
12, // llvm.arm.mve.vabd
12, // llvm.arm.mve.vadc
12, // llvm.arm.mve.vadc.predicated
12, // llvm.arm.mve.vbrsr
12, // llvm.arm.mve.vbrsr.predicated
12, // llvm.arm.mve.vcaddq
12, // llvm.arm.mve.vcaddq.predicated
12, // llvm.arm.mve.vcls
12, // llvm.arm.mve.vcmlaq
12, // llvm.arm.mve.vcmlaq.predicated
12, // llvm.arm.mve.vcmulq
12, // llvm.arm.mve.vcmulq.predicated
12, // llvm.arm.mve.vctp16
12, // llvm.arm.mve.vctp32
12, // llvm.arm.mve.vctp64
12, // llvm.arm.mve.vctp8
12, // llvm.arm.mve.vcvt.fix
12, // llvm.arm.mve.vcvt.fix.predicated
12, // llvm.arm.mve.vcvt.fp.int.predicated
12, // llvm.arm.mve.vcvt.narrow
12, // llvm.arm.mve.vcvt.narrow.predicated
12, // llvm.arm.mve.vcvt.widen
12, // llvm.arm.mve.vcvt.widen.predicated
12, // llvm.arm.mve.vcvta
12, // llvm.arm.mve.vcvta.predicated
12, // llvm.arm.mve.vcvtm
12, // llvm.arm.mve.vcvtm.predicated
12, // llvm.arm.mve.vcvtn
12, // llvm.arm.mve.vcvtn.predicated
12, // llvm.arm.mve.vcvtp
12, // llvm.arm.mve.vcvtp.predicated
12, // llvm.arm.mve.vddup
12, // llvm.arm.mve.vddup.predicated
12, // llvm.arm.mve.vdwdup
12, // llvm.arm.mve.vdwdup.predicated
12, // llvm.arm.mve.vhadd
12, // llvm.arm.mve.vhsub
12, // llvm.arm.mve.vidup
12, // llvm.arm.mve.vidup.predicated
12, // llvm.arm.mve.viwdup
12, // llvm.arm.mve.viwdup.predicated
3, // llvm.arm.mve.vld2q
3, // llvm.arm.mve.vld4q
21, // llvm.arm.mve.vldr.gather.base
21, // llvm.arm.mve.vldr.gather.base.predicated
21, // llvm.arm.mve.vldr.gather.base.wb
21, // llvm.arm.mve.vldr.gather.base.wb.predicated
21, // llvm.arm.mve.vldr.gather.offset
21, // llvm.arm.mve.vldr.gather.offset.predicated
12, // llvm.arm.mve.vmaxa.predicated
12, // llvm.arm.mve.vmaxnma.predicated
12, // llvm.arm.mve.vmina.predicated
12, // llvm.arm.mve.vminnma.predicated
12, // llvm.arm.mve.vmla.n.predicated
12, // llvm.arm.mve.vmlas.n.predicated
12, // llvm.arm.mve.vmldava
12, // llvm.arm.mve.vmldava.predicated
12, // llvm.arm.mve.vmlldava
12, // llvm.arm.mve.vmlldava.predicated
12, // llvm.arm.mve.vmovl.predicated
12, // llvm.arm.mve.vmovn.predicated
12, // llvm.arm.mve.vmulh
12, // llvm.arm.mve.vmull
12, // llvm.arm.mve.vmull.poly
12, // llvm.arm.mve.vqdmlad
12, // llvm.arm.mve.vqdmlad.predicated
12, // llvm.arm.mve.vqdmlah
12, // llvm.arm.mve.vqdmlah.predicated
12, // llvm.arm.mve.vqdmlash
12, // llvm.arm.mve.vqdmlash.predicated
12, // llvm.arm.mve.vqdmulh
12, // llvm.arm.mve.vqdmull
12, // llvm.arm.mve.vqdmull.predicated
12, // llvm.arm.mve.vqmovn
12, // llvm.arm.mve.vqmovn.predicated
12, // llvm.arm.mve.vqrdmlah
12, // llvm.arm.mve.vqrdmlah.predicated
12, // llvm.arm.mve.vqrdmlash
12, // llvm.arm.mve.vqrdmlash.predicated
12, // llvm.arm.mve.vqrdmulh
12, // llvm.arm.mve.vqshl.imm
12, // llvm.arm.mve.vqshl.imm.predicated
12, // llvm.arm.mve.vqshlu.imm
12, // llvm.arm.mve.vqshlu.imm.predicated
12, // llvm.arm.mve.vreinterpretq
12, // llvm.arm.mve.vrev.predicated
12, // llvm.arm.mve.vrhadd
12, // llvm.arm.mve.vrinta.predicated
12, // llvm.arm.mve.vrintm.predicated
12, // llvm.arm.mve.vrintn
12, // llvm.arm.mve.vrintn.predicated
12, // llvm.arm.mve.vrintp.predicated
12, // llvm.arm.mve.vrintx.predicated
12, // llvm.arm.mve.vrintz.predicated
12, // llvm.arm.mve.vrmlldavha
12, // llvm.arm.mve.vrmlldavha.predicated
12, // llvm.arm.mve.vrmulh
12, // llvm.arm.mve.vrshr.imm
12, // llvm.arm.mve.vrshr.imm.predicated
12, // llvm.arm.mve.vsbc
12, // llvm.arm.mve.vsbc.predicated
12, // llvm.arm.mve.vshl.scalar
12, // llvm.arm.mve.vshl.scalar.predicated
12, // llvm.arm.mve.vshl.vector
12, // llvm.arm.mve.vshl.vector.predicated
12, // llvm.arm.mve.vshlc
12, // llvm.arm.mve.vshlc.predicated
12, // llvm.arm.mve.vshll.imm
12, // llvm.arm.mve.vshll.imm.predicated
12, // llvm.arm.mve.vshrn
12, // llvm.arm.mve.vshrn.predicated
12, // llvm.arm.mve.vsli
12, // llvm.arm.mve.vsli.predicated
12, // llvm.arm.mve.vsri
12, // llvm.arm.mve.vsri.predicated
81, // llvm.arm.mve.vst2q
81, // llvm.arm.mve.vst4q
71, // llvm.arm.mve.vstr.scatter.base
71, // llvm.arm.mve.vstr.scatter.base.predicated
71, // llvm.arm.mve.vstr.scatter.base.wb
71, // llvm.arm.mve.vstr.scatter.base.wb.predicated
71, // llvm.arm.mve.vstr.scatter.offset
71, // llvm.arm.mve.vstr.scatter.offset.predicated
12, // llvm.arm.neon.aesd
12, // llvm.arm.neon.aese
12, // llvm.arm.neon.aesimc
12, // llvm.arm.neon.aesmc
12, // llvm.arm.neon.bfdot
12, // llvm.arm.neon.bfmlalb
12, // llvm.arm.neon.bfmlalt
12, // llvm.arm.neon.bfmmla
12, // llvm.arm.neon.sdot
12, // llvm.arm.neon.sha1c
12, // llvm.arm.neon.sha1h
12, // llvm.arm.neon.sha1m
12, // llvm.arm.neon.sha1p
12, // llvm.arm.neon.sha1su0
12, // llvm.arm.neon.sha1su1
12, // llvm.arm.neon.sha256h
12, // llvm.arm.neon.sha256h2
12, // llvm.arm.neon.sha256su0
12, // llvm.arm.neon.sha256su1
12, // llvm.arm.neon.smmla
12, // llvm.arm.neon.udot
12, // llvm.arm.neon.ummla
12, // llvm.arm.neon.usdot
12, // llvm.arm.neon.usmmla
12, // llvm.arm.neon.vabds
12, // llvm.arm.neon.vabdu
12, // llvm.arm.neon.vabs
12, // llvm.arm.neon.vacge
12, // llvm.arm.neon.vacgt
12, // llvm.arm.neon.vbsl
12, // llvm.arm.neon.vcadd.rot270
12, // llvm.arm.neon.vcadd.rot90
12, // llvm.arm.neon.vcls
12, // llvm.arm.neon.vcvtas
12, // llvm.arm.neon.vcvtau
12, // llvm.arm.neon.vcvtbfp2bf
12, // llvm.arm.neon.vcvtfp2bf
12, // llvm.arm.neon.vcvtfp2fxs
12, // llvm.arm.neon.vcvtfp2fxu
12, // llvm.arm.neon.vcvtfp2hf
12, // llvm.arm.neon.vcvtfxs2fp
12, // llvm.arm.neon.vcvtfxu2fp
12, // llvm.arm.neon.vcvthf2fp
12, // llvm.arm.neon.vcvtms
12, // llvm.arm.neon.vcvtmu
12, // llvm.arm.neon.vcvtns
12, // llvm.arm.neon.vcvtnu
12, // llvm.arm.neon.vcvtps
12, // llvm.arm.neon.vcvtpu
12, // llvm.arm.neon.vhadds
12, // llvm.arm.neon.vhaddu
12, // llvm.arm.neon.vhsubs
12, // llvm.arm.neon.vhsubu
3, // llvm.arm.neon.vld1
3, // llvm.arm.neon.vld1x2
3, // llvm.arm.neon.vld1x3
3, // llvm.arm.neon.vld1x4
3, // llvm.arm.neon.vld2
3, // llvm.arm.neon.vld2dup
3, // llvm.arm.neon.vld2lane
3, // llvm.arm.neon.vld3
3, // llvm.arm.neon.vld3dup
3, // llvm.arm.neon.vld3lane
3, // llvm.arm.neon.vld4
3, // llvm.arm.neon.vld4dup
3, // llvm.arm.neon.vld4lane
12, // llvm.arm.neon.vmaxnm
12, // llvm.arm.neon.vmaxs
12, // llvm.arm.neon.vmaxu
12, // llvm.arm.neon.vminnm
12, // llvm.arm.neon.vmins
12, // llvm.arm.neon.vminu
12, // llvm.arm.neon.vmullp
12, // llvm.arm.neon.vmulls
12, // llvm.arm.neon.vmullu
12, // llvm.arm.neon.vmulp
12, // llvm.arm.neon.vpadals
12, // llvm.arm.neon.vpadalu
12, // llvm.arm.neon.vpadd
12, // llvm.arm.neon.vpaddls
12, // llvm.arm.neon.vpaddlu
12, // llvm.arm.neon.vpmaxs
12, // llvm.arm.neon.vpmaxu
12, // llvm.arm.neon.vpmins
12, // llvm.arm.neon.vpminu
12, // llvm.arm.neon.vqabs
12, // llvm.arm.neon.vqdmulh
12, // llvm.arm.neon.vqdmull
12, // llvm.arm.neon.vqmovns
12, // llvm.arm.neon.vqmovnsu
12, // llvm.arm.neon.vqmovnu
12, // llvm.arm.neon.vqneg
12, // llvm.arm.neon.vqrdmulh
12, // llvm.arm.neon.vqrshiftns
12, // llvm.arm.neon.vqrshiftnsu
12, // llvm.arm.neon.vqrshiftnu
12, // llvm.arm.neon.vqrshifts
12, // llvm.arm.neon.vqrshiftu
12, // llvm.arm.neon.vqshiftns
12, // llvm.arm.neon.vqshiftnsu
12, // llvm.arm.neon.vqshiftnu
12, // llvm.arm.neon.vqshifts
12, // llvm.arm.neon.vqshiftsu
12, // llvm.arm.neon.vqshiftu
12, // llvm.arm.neon.vraddhn
12, // llvm.arm.neon.vrecpe
12, // llvm.arm.neon.vrecps
12, // llvm.arm.neon.vrhadds
12, // llvm.arm.neon.vrhaddu
12, // llvm.arm.neon.vrinta
12, // llvm.arm.neon.vrintm
12, // llvm.arm.neon.vrintn
12, // llvm.arm.neon.vrintp
12, // llvm.arm.neon.vrintx
12, // llvm.arm.neon.vrintz
12, // llvm.arm.neon.vrshiftn
12, // llvm.arm.neon.vrshifts
12, // llvm.arm.neon.vrshiftu
12, // llvm.arm.neon.vrsqrte
12, // llvm.arm.neon.vrsqrts
12, // llvm.arm.neon.vrsubhn
12, // llvm.arm.neon.vshiftins
12, // llvm.arm.neon.vshifts
12, // llvm.arm.neon.vshiftu
179, // llvm.arm.neon.vst1
30, // llvm.arm.neon.vst1x2
30, // llvm.arm.neon.vst1x3
30, // llvm.arm.neon.vst1x4
179, // llvm.arm.neon.vst2
179, // llvm.arm.neon.vst2lane
179, // llvm.arm.neon.vst3
179, // llvm.arm.neon.vst3lane
179, // llvm.arm.neon.vst4
179, // llvm.arm.neon.vst4lane
12, // llvm.arm.neon.vtbl1
12, // llvm.arm.neon.vtbl2
12, // llvm.arm.neon.vtbl3
12, // llvm.arm.neon.vtbl4
12, // llvm.arm.neon.vtbx1
12, // llvm.arm.neon.vtbx2
12, // llvm.arm.neon.vtbx3
12, // llvm.arm.neon.vtbx4
12, // llvm.arm.qadd
12, // llvm.arm.qadd16
12, // llvm.arm.qadd8
12, // llvm.arm.qasx
12, // llvm.arm.qsax
12, // llvm.arm.qsub
12, // llvm.arm.qsub16
12, // llvm.arm.qsub8
7, // llvm.arm.sadd16
7, // llvm.arm.sadd8
7, // llvm.arm.sasx
21, // llvm.arm.sel
7, // llvm.arm.set.fpscr
12, // llvm.arm.shadd16
12, // llvm.arm.shadd8
12, // llvm.arm.shasx
12, // llvm.arm.shsax
12, // llvm.arm.shsub16
12, // llvm.arm.shsub8
12, // llvm.arm.smlabb
12, // llvm.arm.smlabt
12, // llvm.arm.smlad
12, // llvm.arm.smladx
12, // llvm.arm.smlald
12, // llvm.arm.smlaldx
12, // llvm.arm.smlatb
12, // llvm.arm.smlatt
12, // llvm.arm.smlawb
12, // llvm.arm.smlawt
12, // llvm.arm.smlsd
12, // llvm.arm.smlsdx
12, // llvm.arm.smlsld
12, // llvm.arm.smlsldx
12, // llvm.arm.smuad
12, // llvm.arm.smuadx
12, // llvm.arm.smulbb
12, // llvm.arm.smulbt
12, // llvm.arm.smultb
12, // llvm.arm.smultt
12, // llvm.arm.smulwb
12, // llvm.arm.smulwt
12, // llvm.arm.smusd
12, // llvm.arm.smusdx
84, // llvm.arm.space
12, // llvm.arm.ssat
12, // llvm.arm.ssat16
7, // llvm.arm.ssax
7, // llvm.arm.ssub16
7, // llvm.arm.ssub8
174, // llvm.arm.stc
174, // llvm.arm.stc2
174, // llvm.arm.stc2l
174, // llvm.arm.stcl
7, // llvm.arm.stlex
7, // llvm.arm.stlexd
7, // llvm.arm.strex
7, // llvm.arm.strexd
12, // llvm.arm.sxtab16
12, // llvm.arm.sxtb16
7, // llvm.arm.uadd16
7, // llvm.arm.uadd8
7, // llvm.arm.uasx
12, // llvm.arm.uhadd16
12, // llvm.arm.uhadd8
12, // llvm.arm.uhasx
12, // llvm.arm.uhsax
12, // llvm.arm.uhsub16
12, // llvm.arm.uhsub8
7, // llvm.arm.undefined
12, // llvm.arm.uqadd16
12, // llvm.arm.uqadd8
12, // llvm.arm.uqasx
12, // llvm.arm.uqsax
12, // llvm.arm.uqsub16
12, // llvm.arm.uqsub8
12, // llvm.arm.usad8
12, // llvm.arm.usada8
12, // llvm.arm.usat
12, // llvm.arm.usat16
7, // llvm.arm.usax
7, // llvm.arm.usub16
7, // llvm.arm.usub8
12, // llvm.arm.uxtab16
12, // llvm.arm.uxtb16
12, // llvm.arm.vcvtr
12, // llvm.arm.vcvtru
12, // llvm.bpf.btf.type.id
21, // llvm.bpf.load.byte
21, // llvm.bpf.load.half
21, // llvm.bpf.load.word
12, // llvm.bpf.passthrough
12, // llvm.bpf.preserve.enum.value
56, // llvm.bpf.preserve.field.info
12, // llvm.bpf.preserve.type.info
7, // llvm.bpf.pseudo
12, // llvm.hexagon.A2.abs
12, // llvm.hexagon.A2.absp
12, // llvm.hexagon.A2.abssat
12, // llvm.hexagon.A2.add
12, // llvm.hexagon.A2.addh.h16.hh
12, // llvm.hexagon.A2.addh.h16.hl
12, // llvm.hexagon.A2.addh.h16.lh
12, // llvm.hexagon.A2.addh.h16.ll
12, // llvm.hexagon.A2.addh.h16.sat.hh
12, // llvm.hexagon.A2.addh.h16.sat.hl
12, // llvm.hexagon.A2.addh.h16.sat.lh
12, // llvm.hexagon.A2.addh.h16.sat.ll
12, // llvm.hexagon.A2.addh.l16.hl
12, // llvm.hexagon.A2.addh.l16.ll
12, // llvm.hexagon.A2.addh.l16.sat.hl
12, // llvm.hexagon.A2.addh.l16.sat.ll
56, // llvm.hexagon.A2.addi
12, // llvm.hexagon.A2.addp
12, // llvm.hexagon.A2.addpsat
12, // llvm.hexagon.A2.addsat
12, // llvm.hexagon.A2.addsp
12, // llvm.hexagon.A2.and
56, // llvm.hexagon.A2.andir
12, // llvm.hexagon.A2.andp
12, // llvm.hexagon.A2.aslh
12, // llvm.hexagon.A2.asrh
12, // llvm.hexagon.A2.combine.hh
12, // llvm.hexagon.A2.combine.hl
12, // llvm.hexagon.A2.combine.lh
12, // llvm.hexagon.A2.combine.ll
168, // llvm.hexagon.A2.combineii
12, // llvm.hexagon.A2.combinew
12, // llvm.hexagon.A2.max
12, // llvm.hexagon.A2.maxp
12, // llvm.hexagon.A2.maxu
12, // llvm.hexagon.A2.maxup
12, // llvm.hexagon.A2.min
12, // llvm.hexagon.A2.minp
12, // llvm.hexagon.A2.minu
12, // llvm.hexagon.A2.minup
12, // llvm.hexagon.A2.neg
12, // llvm.hexagon.A2.negp
12, // llvm.hexagon.A2.negsat
12, // llvm.hexagon.A2.not
12, // llvm.hexagon.A2.notp
12, // llvm.hexagon.A2.or
56, // llvm.hexagon.A2.orir
12, // llvm.hexagon.A2.orp
12, // llvm.hexagon.A2.roundsat
12, // llvm.hexagon.A2.sat
12, // llvm.hexagon.A2.satb
12, // llvm.hexagon.A2.sath
12, // llvm.hexagon.A2.satub
12, // llvm.hexagon.A2.satuh
12, // llvm.hexagon.A2.sub
12, // llvm.hexagon.A2.subh.h16.hh
12, // llvm.hexagon.A2.subh.h16.hl
12, // llvm.hexagon.A2.subh.h16.lh
12, // llvm.hexagon.A2.subh.h16.ll
12, // llvm.hexagon.A2.subh.h16.sat.hh
12, // llvm.hexagon.A2.subh.h16.sat.hl
12, // llvm.hexagon.A2.subh.h16.sat.lh
12, // llvm.hexagon.A2.subh.h16.sat.ll
12, // llvm.hexagon.A2.subh.l16.hl
12, // llvm.hexagon.A2.subh.l16.ll
12, // llvm.hexagon.A2.subh.l16.sat.hl
12, // llvm.hexagon.A2.subh.l16.sat.ll
12, // llvm.hexagon.A2.subp
75, // llvm.hexagon.A2.subri
12, // llvm.hexagon.A2.subsat
12, // llvm.hexagon.A2.svaddh
12, // llvm.hexagon.A2.svaddhs
12, // llvm.hexagon.A2.svadduhs
12, // llvm.hexagon.A2.svavgh
12, // llvm.hexagon.A2.svavghs
12, // llvm.hexagon.A2.svnavgh
12, // llvm.hexagon.A2.svsubh
12, // llvm.hexagon.A2.svsubhs
12, // llvm.hexagon.A2.svsubuhs
12, // llvm.hexagon.A2.swiz
12, // llvm.hexagon.A2.sxtb
12, // llvm.hexagon.A2.sxth
12, // llvm.hexagon.A2.sxtw
12, // llvm.hexagon.A2.tfr
56, // llvm.hexagon.A2.tfrih
56, // llvm.hexagon.A2.tfril
12, // llvm.hexagon.A2.tfrp
75, // llvm.hexagon.A2.tfrpi
75, // llvm.hexagon.A2.tfrsi
12, // llvm.hexagon.A2.vabsh
12, // llvm.hexagon.A2.vabshsat
12, // llvm.hexagon.A2.vabsw
12, // llvm.hexagon.A2.vabswsat
12, // llvm.hexagon.A2.vaddb.map
12, // llvm.hexagon.A2.vaddh
12, // llvm.hexagon.A2.vaddhs
12, // llvm.hexagon.A2.vaddub
12, // llvm.hexagon.A2.vaddubs
12, // llvm.hexagon.A2.vadduhs
12, // llvm.hexagon.A2.vaddw
12, // llvm.hexagon.A2.vaddws
12, // llvm.hexagon.A2.vavgh
12, // llvm.hexagon.A2.vavghcr
12, // llvm.hexagon.A2.vavghr
12, // llvm.hexagon.A2.vavgub
12, // llvm.hexagon.A2.vavgubr
12, // llvm.hexagon.A2.vavguh
12, // llvm.hexagon.A2.vavguhr
12, // llvm.hexagon.A2.vavguw
12, // llvm.hexagon.A2.vavguwr
12, // llvm.hexagon.A2.vavgw
12, // llvm.hexagon.A2.vavgwcr
12, // llvm.hexagon.A2.vavgwr
12, // llvm.hexagon.A2.vcmpbeq
12, // llvm.hexagon.A2.vcmpbgtu
12, // llvm.hexagon.A2.vcmpheq
12, // llvm.hexagon.A2.vcmphgt
12, // llvm.hexagon.A2.vcmphgtu
12, // llvm.hexagon.A2.vcmpweq
12, // llvm.hexagon.A2.vcmpwgt
12, // llvm.hexagon.A2.vcmpwgtu
12, // llvm.hexagon.A2.vconj
12, // llvm.hexagon.A2.vmaxb
12, // llvm.hexagon.A2.vmaxh
12, // llvm.hexagon.A2.vmaxub
12, // llvm.hexagon.A2.vmaxuh
12, // llvm.hexagon.A2.vmaxuw
12, // llvm.hexagon.A2.vmaxw
12, // llvm.hexagon.A2.vminb
12, // llvm.hexagon.A2.vminh
12, // llvm.hexagon.A2.vminub
12, // llvm.hexagon.A2.vminuh
12, // llvm.hexagon.A2.vminuw
12, // llvm.hexagon.A2.vminw
12, // llvm.hexagon.A2.vnavgh
12, // llvm.hexagon.A2.vnavghcr
12, // llvm.hexagon.A2.vnavghr
12, // llvm.hexagon.A2.vnavgw
12, // llvm.hexagon.A2.vnavgwcr
12, // llvm.hexagon.A2.vnavgwr
12, // llvm.hexagon.A2.vraddub
12, // llvm.hexagon.A2.vraddub.acc
12, // llvm.hexagon.A2.vrsadub
12, // llvm.hexagon.A2.vrsadub.acc
12, // llvm.hexagon.A2.vsubb.map
12, // llvm.hexagon.A2.vsubh
12, // llvm.hexagon.A2.vsubhs
12, // llvm.hexagon.A2.vsubub
12, // llvm.hexagon.A2.vsububs
12, // llvm.hexagon.A2.vsubuhs
12, // llvm.hexagon.A2.vsubw
12, // llvm.hexagon.A2.vsubws
12, // llvm.hexagon.A2.xor
12, // llvm.hexagon.A2.xorp
12, // llvm.hexagon.A2.zxtb
12, // llvm.hexagon.A2.zxth
12, // llvm.hexagon.A4.andn
12, // llvm.hexagon.A4.andnp
12, // llvm.hexagon.A4.bitsplit
56, // llvm.hexagon.A4.bitspliti
12, // llvm.hexagon.A4.boundscheck
12, // llvm.hexagon.A4.cmpbeq
56, // llvm.hexagon.A4.cmpbeqi
12, // llvm.hexagon.A4.cmpbgt
56, // llvm.hexagon.A4.cmpbgti
12, // llvm.hexagon.A4.cmpbgtu
56, // llvm.hexagon.A4.cmpbgtui
12, // llvm.hexagon.A4.cmpheq
56, // llvm.hexagon.A4.cmpheqi
12, // llvm.hexagon.A4.cmphgt
56, // llvm.hexagon.A4.cmphgti
12, // llvm.hexagon.A4.cmphgtu
56, // llvm.hexagon.A4.cmphgtui
75, // llvm.hexagon.A4.combineir
56, // llvm.hexagon.A4.combineri
56, // llvm.hexagon.A4.cround.ri
12, // llvm.hexagon.A4.cround.rr
12, // llvm.hexagon.A4.modwrapu
12, // llvm.hexagon.A4.orn
12, // llvm.hexagon.A4.ornp
12, // llvm.hexagon.A4.rcmpeq
56, // llvm.hexagon.A4.rcmpeqi
12, // llvm.hexagon.A4.rcmpneq
56, // llvm.hexagon.A4.rcmpneqi
56, // llvm.hexagon.A4.round.ri
56, // llvm.hexagon.A4.round.ri.sat
12, // llvm.hexagon.A4.round.rr
12, // llvm.hexagon.A4.round.rr.sat
12, // llvm.hexagon.A4.tlbmatch
12, // llvm.hexagon.A4.vcmpbeq.any
56, // llvm.hexagon.A4.vcmpbeqi
12, // llvm.hexagon.A4.vcmpbgt
56, // llvm.hexagon.A4.vcmpbgti
56, // llvm.hexagon.A4.vcmpbgtui
56, // llvm.hexagon.A4.vcmpheqi
56, // llvm.hexagon.A4.vcmphgti
56, // llvm.hexagon.A4.vcmphgtui
56, // llvm.hexagon.A4.vcmpweqi
56, // llvm.hexagon.A4.vcmpwgti
56, // llvm.hexagon.A4.vcmpwgtui
12, // llvm.hexagon.A4.vrmaxh
12, // llvm.hexagon.A4.vrmaxuh
12, // llvm.hexagon.A4.vrmaxuw
12, // llvm.hexagon.A4.vrmaxw
12, // llvm.hexagon.A4.vrminh
12, // llvm.hexagon.A4.vrminuh
12, // llvm.hexagon.A4.vrminuw
12, // llvm.hexagon.A4.vrminw
12, // llvm.hexagon.A5.vaddhubs
12, // llvm.hexagon.A6.vcmpbeq.notany
56, // llvm.hexagon.A7.clip
56, // llvm.hexagon.A7.croundd.ri
12, // llvm.hexagon.A7.croundd.rr
56, // llvm.hexagon.A7.vclip
12, // llvm.hexagon.C2.all8
12, // llvm.hexagon.C2.and
12, // llvm.hexagon.C2.andn
12, // llvm.hexagon.C2.any8
12, // llvm.hexagon.C2.bitsclr
56, // llvm.hexagon.C2.bitsclri
12, // llvm.hexagon.C2.bitsset
12, // llvm.hexagon.C2.cmpeq
56, // llvm.hexagon.C2.cmpeqi
12, // llvm.hexagon.C2.cmpeqp
56, // llvm.hexagon.C2.cmpgei
56, // llvm.hexagon.C2.cmpgeui
12, // llvm.hexagon.C2.cmpgt
56, // llvm.hexagon.C2.cmpgti
12, // llvm.hexagon.C2.cmpgtp
12, // llvm.hexagon.C2.cmpgtu
56, // llvm.hexagon.C2.cmpgtui
12, // llvm.hexagon.C2.cmpgtup
12, // llvm.hexagon.C2.cmplt
12, // llvm.hexagon.C2.cmpltu
12, // llvm.hexagon.C2.mask
12, // llvm.hexagon.C2.mux
80, // llvm.hexagon.C2.muxii
72, // llvm.hexagon.C2.muxir
56, // llvm.hexagon.C2.muxri
12, // llvm.hexagon.C2.not
12, // llvm.hexagon.C2.or
12, // llvm.hexagon.C2.orn
12, // llvm.hexagon.C2.pxfer.map
12, // llvm.hexagon.C2.tfrpr
12, // llvm.hexagon.C2.tfrrp
12, // llvm.hexagon.C2.vitpack
12, // llvm.hexagon.C2.vmux
12, // llvm.hexagon.C2.xor
12, // llvm.hexagon.C4.and.and
12, // llvm.hexagon.C4.and.andn
12, // llvm.hexagon.C4.and.or
12, // llvm.hexagon.C4.and.orn
12, // llvm.hexagon.C4.cmplte
56, // llvm.hexagon.C4.cmpltei
12, // llvm.hexagon.C4.cmplteu
56, // llvm.hexagon.C4.cmplteui
12, // llvm.hexagon.C4.cmpneq
56, // llvm.hexagon.C4.cmpneqi
12, // llvm.hexagon.C4.fastcorner9
12, // llvm.hexagon.C4.fastcorner9.not
12, // llvm.hexagon.C4.nbitsclr
56, // llvm.hexagon.C4.nbitsclri
12, // llvm.hexagon.C4.nbitsset
12, // llvm.hexagon.C4.or.and
12, // llvm.hexagon.C4.or.andn
12, // llvm.hexagon.C4.or.or
12, // llvm.hexagon.C4.or.orn
12, // llvm.hexagon.F2.conv.d2df
12, // llvm.hexagon.F2.conv.d2sf
12, // llvm.hexagon.F2.conv.df2d
12, // llvm.hexagon.F2.conv.df2d.chop
12, // llvm.hexagon.F2.conv.df2sf
12, // llvm.hexagon.F2.conv.df2ud
12, // llvm.hexagon.F2.conv.df2ud.chop
12, // llvm.hexagon.F2.conv.df2uw
12, // llvm.hexagon.F2.conv.df2uw.chop
12, // llvm.hexagon.F2.conv.df2w
12, // llvm.hexagon.F2.conv.df2w.chop
12, // llvm.hexagon.F2.conv.sf2d
12, // llvm.hexagon.F2.conv.sf2d.chop
12, // llvm.hexagon.F2.conv.sf2df
12, // llvm.hexagon.F2.conv.sf2ud
12, // llvm.hexagon.F2.conv.sf2ud.chop
12, // llvm.hexagon.F2.conv.sf2uw
12, // llvm.hexagon.F2.conv.sf2uw.chop
12, // llvm.hexagon.F2.conv.sf2w
12, // llvm.hexagon.F2.conv.sf2w.chop
12, // llvm.hexagon.F2.conv.ud2df
12, // llvm.hexagon.F2.conv.ud2sf
12, // llvm.hexagon.F2.conv.uw2df
12, // llvm.hexagon.F2.conv.uw2sf
12, // llvm.hexagon.F2.conv.w2df
12, // llvm.hexagon.F2.conv.w2sf
180, // llvm.hexagon.F2.dfadd
181, // llvm.hexagon.F2.dfclass
180, // llvm.hexagon.F2.dfcmpeq
180, // llvm.hexagon.F2.dfcmpge
180, // llvm.hexagon.F2.dfcmpgt
180, // llvm.hexagon.F2.dfcmpuo
182, // llvm.hexagon.F2.dfimm.n
182, // llvm.hexagon.F2.dfimm.p
180, // llvm.hexagon.F2.dfmax
180, // llvm.hexagon.F2.dfmin
180, // llvm.hexagon.F2.dfmpyfix
180, // llvm.hexagon.F2.dfmpyhh
180, // llvm.hexagon.F2.dfmpylh
180, // llvm.hexagon.F2.dfmpyll
180, // llvm.hexagon.F2.dfsub
180, // llvm.hexagon.F2.sfadd
181, // llvm.hexagon.F2.sfclass
180, // llvm.hexagon.F2.sfcmpeq
180, // llvm.hexagon.F2.sfcmpge
180, // llvm.hexagon.F2.sfcmpgt
180, // llvm.hexagon.F2.sfcmpuo
180, // llvm.hexagon.F2.sffixupd
180, // llvm.hexagon.F2.sffixupn
180, // llvm.hexagon.F2.sffixupr
180, // llvm.hexagon.F2.sffma
180, // llvm.hexagon.F2.sffma.lib
180, // llvm.hexagon.F2.sffma.sc
180, // llvm.hexagon.F2.sffms
180, // llvm.hexagon.F2.sffms.lib
182, // llvm.hexagon.F2.sfimm.n
182, // llvm.hexagon.F2.sfimm.p
180, // llvm.hexagon.F2.sfmax
180, // llvm.hexagon.F2.sfmin
180, // llvm.hexagon.F2.sfmpy
180, // llvm.hexagon.F2.sfsub
21, // llvm.hexagon.L2.loadrb.pbr
67, // llvm.hexagon.L2.loadrb.pci
66, // llvm.hexagon.L2.loadrb.pcr
21, // llvm.hexagon.L2.loadrd.pbr
67, // llvm.hexagon.L2.loadrd.pci
66, // llvm.hexagon.L2.loadrd.pcr
21, // llvm.hexagon.L2.loadrh.pbr
67, // llvm.hexagon.L2.loadrh.pci
66, // llvm.hexagon.L2.loadrh.pcr
21, // llvm.hexagon.L2.loadri.pbr
67, // llvm.hexagon.L2.loadri.pci
66, // llvm.hexagon.L2.loadri.pcr
21, // llvm.hexagon.L2.loadrub.pbr
67, // llvm.hexagon.L2.loadrub.pci
66, // llvm.hexagon.L2.loadrub.pcr
21, // llvm.hexagon.L2.loadruh.pbr
67, // llvm.hexagon.L2.loadruh.pci
66, // llvm.hexagon.L2.loadruh.pcr
30, // llvm.hexagon.L2.loadw.locked
30, // llvm.hexagon.L4.loadd.locked
12, // llvm.hexagon.M2.acci
72, // llvm.hexagon.M2.accii
12, // llvm.hexagon.M2.cmaci.s0
12, // llvm.hexagon.M2.cmacr.s0
12, // llvm.hexagon.M2.cmacs.s0
12, // llvm.hexagon.M2.cmacs.s1
12, // llvm.hexagon.M2.cmacsc.s0
12, // llvm.hexagon.M2.cmacsc.s1
12, // llvm.hexagon.M2.cmpyi.s0
12, // llvm.hexagon.M2.cmpyr.s0
12, // llvm.hexagon.M2.cmpyrs.s0
12, // llvm.hexagon.M2.cmpyrs.s1
12, // llvm.hexagon.M2.cmpyrsc.s0
12, // llvm.hexagon.M2.cmpyrsc.s1
12, // llvm.hexagon.M2.cmpys.s0
12, // llvm.hexagon.M2.cmpys.s1
12, // llvm.hexagon.M2.cmpysc.s0
12, // llvm.hexagon.M2.cmpysc.s1
12, // llvm.hexagon.M2.cnacs.s0
12, // llvm.hexagon.M2.cnacs.s1
12, // llvm.hexagon.M2.cnacsc.s0
12, // llvm.hexagon.M2.cnacsc.s1
12, // llvm.hexagon.M2.dpmpyss.acc.s0
12, // llvm.hexagon.M2.dpmpyss.nac.s0
12, // llvm.hexagon.M2.dpmpyss.rnd.s0
12, // llvm.hexagon.M2.dpmpyss.s0
12, // llvm.hexagon.M2.dpmpyuu.acc.s0
12, // llvm.hexagon.M2.dpmpyuu.nac.s0
12, // llvm.hexagon.M2.dpmpyuu.s0
12, // llvm.hexagon.M2.hmmpyh.rs1
12, // llvm.hexagon.M2.hmmpyh.s1
12, // llvm.hexagon.M2.hmmpyl.rs1
12, // llvm.hexagon.M2.hmmpyl.s1
12, // llvm.hexagon.M2.maci
72, // llvm.hexagon.M2.macsin
72, // llvm.hexagon.M2.macsip
12, // llvm.hexagon.M2.mmachs.rs0
12, // llvm.hexagon.M2.mmachs.rs1
12, // llvm.hexagon.M2.mmachs.s0
12, // llvm.hexagon.M2.mmachs.s1
12, // llvm.hexagon.M2.mmacls.rs0
12, // llvm.hexagon.M2.mmacls.rs1
12, // llvm.hexagon.M2.mmacls.s0
12, // llvm.hexagon.M2.mmacls.s1
12, // llvm.hexagon.M2.mmacuhs.rs0
12, // llvm.hexagon.M2.mmacuhs.rs1
12, // llvm.hexagon.M2.mmacuhs.s0
12, // llvm.hexagon.M2.mmacuhs.s1
12, // llvm.hexagon.M2.mmaculs.rs0
12, // llvm.hexagon.M2.mmaculs.rs1
12, // llvm.hexagon.M2.mmaculs.s0
12, // llvm.hexagon.M2.mmaculs.s1
12, // llvm.hexagon.M2.mmpyh.rs0
12, // llvm.hexagon.M2.mmpyh.rs1
12, // llvm.hexagon.M2.mmpyh.s0
12, // llvm.hexagon.M2.mmpyh.s1
12, // llvm.hexagon.M2.mmpyl.rs0
12, // llvm.hexagon.M2.mmpyl.rs1
12, // llvm.hexagon.M2.mmpyl.s0
12, // llvm.hexagon.M2.mmpyl.s1
12, // llvm.hexagon.M2.mmpyuh.rs0
12, // llvm.hexagon.M2.mmpyuh.rs1
12, // llvm.hexagon.M2.mmpyuh.s0
12, // llvm.hexagon.M2.mmpyuh.s1
12, // llvm.hexagon.M2.mmpyul.rs0
12, // llvm.hexagon.M2.mmpyul.rs1
12, // llvm.hexagon.M2.mmpyul.s0
12, // llvm.hexagon.M2.mmpyul.s1
12, // llvm.hexagon.M2.mnaci
12, // llvm.hexagon.M2.mpy.acc.hh.s0
12, // llvm.hexagon.M2.mpy.acc.hh.s1
12, // llvm.hexagon.M2.mpy.acc.hl.s0
12, // llvm.hexagon.M2.mpy.acc.hl.s1
12, // llvm.hexagon.M2.mpy.acc.lh.s0
12, // llvm.hexagon.M2.mpy.acc.lh.s1
12, // llvm.hexagon.M2.mpy.acc.ll.s0
12, // llvm.hexagon.M2.mpy.acc.ll.s1
12, // llvm.hexagon.M2.mpy.acc.sat.hh.s0
12, // llvm.hexagon.M2.mpy.acc.sat.hh.s1
12, // llvm.hexagon.M2.mpy.acc.sat.hl.s0
12, // llvm.hexagon.M2.mpy.acc.sat.hl.s1
12, // llvm.hexagon.M2.mpy.acc.sat.lh.s0
12, // llvm.hexagon.M2.mpy.acc.sat.lh.s1
12, // llvm.hexagon.M2.mpy.acc.sat.ll.s0
12, // llvm.hexagon.M2.mpy.acc.sat.ll.s1
12, // llvm.hexagon.M2.mpy.hh.s0
12, // llvm.hexagon.M2.mpy.hh.s1
12, // llvm.hexagon.M2.mpy.hl.s0
12, // llvm.hexagon.M2.mpy.hl.s1
12, // llvm.hexagon.M2.mpy.lh.s0
12, // llvm.hexagon.M2.mpy.lh.s1
12, // llvm.hexagon.M2.mpy.ll.s0
12, // llvm.hexagon.M2.mpy.ll.s1
12, // llvm.hexagon.M2.mpy.nac.hh.s0
12, // llvm.hexagon.M2.mpy.nac.hh.s1
12, // llvm.hexagon.M2.mpy.nac.hl.s0
12, // llvm.hexagon.M2.mpy.nac.hl.s1
12, // llvm.hexagon.M2.mpy.nac.lh.s0
12, // llvm.hexagon.M2.mpy.nac.lh.s1
12, // llvm.hexagon.M2.mpy.nac.ll.s0
12, // llvm.hexagon.M2.mpy.nac.ll.s1
12, // llvm.hexagon.M2.mpy.nac.sat.hh.s0
12, // llvm.hexagon.M2.mpy.nac.sat.hh.s1
12, // llvm.hexagon.M2.mpy.nac.sat.hl.s0
12, // llvm.hexagon.M2.mpy.nac.sat.hl.s1
12, // llvm.hexagon.M2.mpy.nac.sat.lh.s0
12, // llvm.hexagon.M2.mpy.nac.sat.lh.s1
12, // llvm.hexagon.M2.mpy.nac.sat.ll.s0
12, // llvm.hexagon.M2.mpy.nac.sat.ll.s1
12, // llvm.hexagon.M2.mpy.rnd.hh.s0
12, // llvm.hexagon.M2.mpy.rnd.hh.s1
12, // llvm.hexagon.M2.mpy.rnd.hl.s0
12, // llvm.hexagon.M2.mpy.rnd.hl.s1
12, // llvm.hexagon.M2.mpy.rnd.lh.s0
12, // llvm.hexagon.M2.mpy.rnd.lh.s1
12, // llvm.hexagon.M2.mpy.rnd.ll.s0
12, // llvm.hexagon.M2.mpy.rnd.ll.s1
12, // llvm.hexagon.M2.mpy.sat.hh.s0
12, // llvm.hexagon.M2.mpy.sat.hh.s1
12, // llvm.hexagon.M2.mpy.sat.hl.s0
12, // llvm.hexagon.M2.mpy.sat.hl.s1
12, // llvm.hexagon.M2.mpy.sat.lh.s0
12, // llvm.hexagon.M2.mpy.sat.lh.s1
12, // llvm.hexagon.M2.mpy.sat.ll.s0
12, // llvm.hexagon.M2.mpy.sat.ll.s1
12, // llvm.hexagon.M2.mpy.sat.rnd.hh.s0
12, // llvm.hexagon.M2.mpy.sat.rnd.hh.s1
12, // llvm.hexagon.M2.mpy.sat.rnd.hl.s0
12, // llvm.hexagon.M2.mpy.sat.rnd.hl.s1
12, // llvm.hexagon.M2.mpy.sat.rnd.lh.s0
12, // llvm.hexagon.M2.mpy.sat.rnd.lh.s1
12, // llvm.hexagon.M2.mpy.sat.rnd.ll.s0
12, // llvm.hexagon.M2.mpy.sat.rnd.ll.s1
12, // llvm.hexagon.M2.mpy.up
12, // llvm.hexagon.M2.mpy.up.s1
12, // llvm.hexagon.M2.mpy.up.s1.sat
12, // llvm.hexagon.M2.mpyd.acc.hh.s0
12, // llvm.hexagon.M2.mpyd.acc.hh.s1
12, // llvm.hexagon.M2.mpyd.acc.hl.s0
12, // llvm.hexagon.M2.mpyd.acc.hl.s1
12, // llvm.hexagon.M2.mpyd.acc.lh.s0
12, // llvm.hexagon.M2.mpyd.acc.lh.s1
12, // llvm.hexagon.M2.mpyd.acc.ll.s0
12, // llvm.hexagon.M2.mpyd.acc.ll.s1
12, // llvm.hexagon.M2.mpyd.hh.s0
12, // llvm.hexagon.M2.mpyd.hh.s1
12, // llvm.hexagon.M2.mpyd.hl.s0
12, // llvm.hexagon.M2.mpyd.hl.s1
12, // llvm.hexagon.M2.mpyd.lh.s0
12, // llvm.hexagon.M2.mpyd.lh.s1
12, // llvm.hexagon.M2.mpyd.ll.s0
12, // llvm.hexagon.M2.mpyd.ll.s1
12, // llvm.hexagon.M2.mpyd.nac.hh.s0
12, // llvm.hexagon.M2.mpyd.nac.hh.s1
12, // llvm.hexagon.M2.mpyd.nac.hl.s0
12, // llvm.hexagon.M2.mpyd.nac.hl.s1
12, // llvm.hexagon.M2.mpyd.nac.lh.s0
12, // llvm.hexagon.M2.mpyd.nac.lh.s1
12, // llvm.hexagon.M2.mpyd.nac.ll.s0
12, // llvm.hexagon.M2.mpyd.nac.ll.s1
12, // llvm.hexagon.M2.mpyd.rnd.hh.s0
12, // llvm.hexagon.M2.mpyd.rnd.hh.s1
12, // llvm.hexagon.M2.mpyd.rnd.hl.s0
12, // llvm.hexagon.M2.mpyd.rnd.hl.s1
12, // llvm.hexagon.M2.mpyd.rnd.lh.s0
12, // llvm.hexagon.M2.mpyd.rnd.lh.s1
12, // llvm.hexagon.M2.mpyd.rnd.ll.s0
12, // llvm.hexagon.M2.mpyd.rnd.ll.s1
12, // llvm.hexagon.M2.mpyi
56, // llvm.hexagon.M2.mpysmi
12, // llvm.hexagon.M2.mpysu.up
12, // llvm.hexagon.M2.mpyu.acc.hh.s0
12, // llvm.hexagon.M2.mpyu.acc.hh.s1
12, // llvm.hexagon.M2.mpyu.acc.hl.s0
12, // llvm.hexagon.M2.mpyu.acc.hl.s1
12, // llvm.hexagon.M2.mpyu.acc.lh.s0
12, // llvm.hexagon.M2.mpyu.acc.lh.s1
12, // llvm.hexagon.M2.mpyu.acc.ll.s0
12, // llvm.hexagon.M2.mpyu.acc.ll.s1
12, // llvm.hexagon.M2.mpyu.hh.s0
12, // llvm.hexagon.M2.mpyu.hh.s1
12, // llvm.hexagon.M2.mpyu.hl.s0
12, // llvm.hexagon.M2.mpyu.hl.s1
12, // llvm.hexagon.M2.mpyu.lh.s0
12, // llvm.hexagon.M2.mpyu.lh.s1
12, // llvm.hexagon.M2.mpyu.ll.s0
12, // llvm.hexagon.M2.mpyu.ll.s1
12, // llvm.hexagon.M2.mpyu.nac.hh.s0
12, // llvm.hexagon.M2.mpyu.nac.hh.s1
12, // llvm.hexagon.M2.mpyu.nac.hl.s0
12, // llvm.hexagon.M2.mpyu.nac.hl.s1
12, // llvm.hexagon.M2.mpyu.nac.lh.s0
12, // llvm.hexagon.M2.mpyu.nac.lh.s1
12, // llvm.hexagon.M2.mpyu.nac.ll.s0
12, // llvm.hexagon.M2.mpyu.nac.ll.s1
12, // llvm.hexagon.M2.mpyu.up
12, // llvm.hexagon.M2.mpyud.acc.hh.s0
12, // llvm.hexagon.M2.mpyud.acc.hh.s1
12, // llvm.hexagon.M2.mpyud.acc.hl.s0
12, // llvm.hexagon.M2.mpyud.acc.hl.s1
12, // llvm.hexagon.M2.mpyud.acc.lh.s0
12, // llvm.hexagon.M2.mpyud.acc.lh.s1
12, // llvm.hexagon.M2.mpyud.acc.ll.s0
12, // llvm.hexagon.M2.mpyud.acc.ll.s1
12, // llvm.hexagon.M2.mpyud.hh.s0
12, // llvm.hexagon.M2.mpyud.hh.s1
12, // llvm.hexagon.M2.mpyud.hl.s0
12, // llvm.hexagon.M2.mpyud.hl.s1
12, // llvm.hexagon.M2.mpyud.lh.s0
12, // llvm.hexagon.M2.mpyud.lh.s1
12, // llvm.hexagon.M2.mpyud.ll.s0
12, // llvm.hexagon.M2.mpyud.ll.s1
12, // llvm.hexagon.M2.mpyud.nac.hh.s0
12, // llvm.hexagon.M2.mpyud.nac.hh.s1
12, // llvm.hexagon.M2.mpyud.nac.hl.s0
12, // llvm.hexagon.M2.mpyud.nac.hl.s1
12, // llvm.hexagon.M2.mpyud.nac.lh.s0
12, // llvm.hexagon.M2.mpyud.nac.lh.s1
12, // llvm.hexagon.M2.mpyud.nac.ll.s0
12, // llvm.hexagon.M2.mpyud.nac.ll.s1
12, // llvm.hexagon.M2.mpyui
12, // llvm.hexagon.M2.nacci
72, // llvm.hexagon.M2.naccii
12, // llvm.hexagon.M2.subacc
12, // llvm.hexagon.M2.vabsdiffh
12, // llvm.hexagon.M2.vabsdiffw
12, // llvm.hexagon.M2.vcmac.s0.sat.i
12, // llvm.hexagon.M2.vcmac.s0.sat.r
12, // llvm.hexagon.M2.vcmpy.s0.sat.i
12, // llvm.hexagon.M2.vcmpy.s0.sat.r
12, // llvm.hexagon.M2.vcmpy.s1.sat.i
12, // llvm.hexagon.M2.vcmpy.s1.sat.r
12, // llvm.hexagon.M2.vdmacs.s0
12, // llvm.hexagon.M2.vdmacs.s1
12, // llvm.hexagon.M2.vdmpyrs.s0
12, // llvm.hexagon.M2.vdmpyrs.s1
12, // llvm.hexagon.M2.vdmpys.s0
12, // llvm.hexagon.M2.vdmpys.s1
12, // llvm.hexagon.M2.vmac2
12, // llvm.hexagon.M2.vmac2es
12, // llvm.hexagon.M2.vmac2es.s0
12, // llvm.hexagon.M2.vmac2es.s1
12, // llvm.hexagon.M2.vmac2s.s0
12, // llvm.hexagon.M2.vmac2s.s1
12, // llvm.hexagon.M2.vmac2su.s0
12, // llvm.hexagon.M2.vmac2su.s1
12, // llvm.hexagon.M2.vmpy2es.s0
12, // llvm.hexagon.M2.vmpy2es.s1
12, // llvm.hexagon.M2.vmpy2s.s0
12, // llvm.hexagon.M2.vmpy2s.s0pack
12, // llvm.hexagon.M2.vmpy2s.s1
12, // llvm.hexagon.M2.vmpy2s.s1pack
12, // llvm.hexagon.M2.vmpy2su.s0
12, // llvm.hexagon.M2.vmpy2su.s1
12, // llvm.hexagon.M2.vraddh
12, // llvm.hexagon.M2.vradduh
12, // llvm.hexagon.M2.vrcmaci.s0
12, // llvm.hexagon.M2.vrcmaci.s0c
12, // llvm.hexagon.M2.vrcmacr.s0
12, // llvm.hexagon.M2.vrcmacr.s0c
12, // llvm.hexagon.M2.vrcmpyi.s0
12, // llvm.hexagon.M2.vrcmpyi.s0c
12, // llvm.hexagon.M2.vrcmpyr.s0
12, // llvm.hexagon.M2.vrcmpyr.s0c
12, // llvm.hexagon.M2.vrcmpys.acc.s1
12, // llvm.hexagon.M2.vrcmpys.s1
12, // llvm.hexagon.M2.vrcmpys.s1rp
12, // llvm.hexagon.M2.vrmac.s0
12, // llvm.hexagon.M2.vrmpy.s0
12, // llvm.hexagon.M2.xor.xacc
12, // llvm.hexagon.M4.and.and
12, // llvm.hexagon.M4.and.andn
12, // llvm.hexagon.M4.and.or
12, // llvm.hexagon.M4.and.xor
12, // llvm.hexagon.M4.cmpyi.wh
12, // llvm.hexagon.M4.cmpyi.whc
12, // llvm.hexagon.M4.cmpyr.wh
12, // llvm.hexagon.M4.cmpyr.whc
12, // llvm.hexagon.M4.mac.up.s1.sat
169, // llvm.hexagon.M4.mpyri.addi
72, // llvm.hexagon.M4.mpyri.addr
56, // llvm.hexagon.M4.mpyri.addr.u2
75, // llvm.hexagon.M4.mpyrr.addi
12, // llvm.hexagon.M4.mpyrr.addr
12, // llvm.hexagon.M4.nac.up.s1.sat
12, // llvm.hexagon.M4.or.and
12, // llvm.hexagon.M4.or.andn
12, // llvm.hexagon.M4.or.or
12, // llvm.hexagon.M4.or.xor
12, // llvm.hexagon.M4.pmpyw
12, // llvm.hexagon.M4.pmpyw.acc
12, // llvm.hexagon.M4.vpmpyh
12, // llvm.hexagon.M4.vpmpyh.acc
12, // llvm.hexagon.M4.vrmpyeh.acc.s0
12, // llvm.hexagon.M4.vrmpyeh.acc.s1
12, // llvm.hexagon.M4.vrmpyeh.s0
12, // llvm.hexagon.M4.vrmpyeh.s1
12, // llvm.hexagon.M4.vrmpyoh.acc.s0
12, // llvm.hexagon.M4.vrmpyoh.acc.s1
12, // llvm.hexagon.M4.vrmpyoh.s0
12, // llvm.hexagon.M4.vrmpyoh.s1
12, // llvm.hexagon.M4.xor.and
12, // llvm.hexagon.M4.xor.andn
12, // llvm.hexagon.M4.xor.or
12, // llvm.hexagon.M4.xor.xacc
12, // llvm.hexagon.M5.vdmacbsu
12, // llvm.hexagon.M5.vdmpybsu
12, // llvm.hexagon.M5.vmacbsu
12, // llvm.hexagon.M5.vmacbuu
12, // llvm.hexagon.M5.vmpybsu
12, // llvm.hexagon.M5.vmpybuu
12, // llvm.hexagon.M5.vrmacbsu
12, // llvm.hexagon.M5.vrmacbuu
12, // llvm.hexagon.M5.vrmpybsu
12, // llvm.hexagon.M5.vrmpybuu
12, // llvm.hexagon.M6.vabsdiffb
12, // llvm.hexagon.M6.vabsdiffub
12, // llvm.hexagon.M7.dcmpyiw
12, // llvm.hexagon.M7.dcmpyiw.acc
12, // llvm.hexagon.M7.dcmpyiwc
12, // llvm.hexagon.M7.dcmpyiwc.acc
12, // llvm.hexagon.M7.dcmpyrw
12, // llvm.hexagon.M7.dcmpyrw.acc
12, // llvm.hexagon.M7.dcmpyrwc
12, // llvm.hexagon.M7.dcmpyrwc.acc
12, // llvm.hexagon.M7.vdmpy
12, // llvm.hexagon.M7.vdmpy.acc
12, // llvm.hexagon.M7.wcmpyiw
12, // llvm.hexagon.M7.wcmpyiw.rnd
12, // llvm.hexagon.M7.wcmpyiwc
12, // llvm.hexagon.M7.wcmpyiwc.rnd
12, // llvm.hexagon.M7.wcmpyrw
12, // llvm.hexagon.M7.wcmpyrw.rnd
12, // llvm.hexagon.M7.wcmpyrwc
12, // llvm.hexagon.M7.wcmpyrwc.rnd
72, // llvm.hexagon.S2.addasl.rrri
56, // llvm.hexagon.S2.asl.i.p
72, // llvm.hexagon.S2.asl.i.p.acc
72, // llvm.hexagon.S2.asl.i.p.and
72, // llvm.hexagon.S2.asl.i.p.nac
72, // llvm.hexagon.S2.asl.i.p.or
72, // llvm.hexagon.S2.asl.i.p.xacc
56, // llvm.hexagon.S2.asl.i.r
72, // llvm.hexagon.S2.asl.i.r.acc
72, // llvm.hexagon.S2.asl.i.r.and
72, // llvm.hexagon.S2.asl.i.r.nac
72, // llvm.hexagon.S2.asl.i.r.or
56, // llvm.hexagon.S2.asl.i.r.sat
72, // llvm.hexagon.S2.asl.i.r.xacc
56, // llvm.hexagon.S2.asl.i.vh
56, // llvm.hexagon.S2.asl.i.vw
12, // llvm.hexagon.S2.asl.r.p
12, // llvm.hexagon.S2.asl.r.p.acc
12, // llvm.hexagon.S2.asl.r.p.and
12, // llvm.hexagon.S2.asl.r.p.nac
12, // llvm.hexagon.S2.asl.r.p.or
12, // llvm.hexagon.S2.asl.r.p.xor
12, // llvm.hexagon.S2.asl.r.r
12, // llvm.hexagon.S2.asl.r.r.acc
12, // llvm.hexagon.S2.asl.r.r.and
12, // llvm.hexagon.S2.asl.r.r.nac
12, // llvm.hexagon.S2.asl.r.r.or
12, // llvm.hexagon.S2.asl.r.r.sat
12, // llvm.hexagon.S2.asl.r.vh
12, // llvm.hexagon.S2.asl.r.vw
56, // llvm.hexagon.S2.asr.i.p
72, // llvm.hexagon.S2.asr.i.p.acc
72, // llvm.hexagon.S2.asr.i.p.and
72, // llvm.hexagon.S2.asr.i.p.nac
72, // llvm.hexagon.S2.asr.i.p.or
56, // llvm.hexagon.S2.asr.i.p.rnd
56, // llvm.hexagon.S2.asr.i.p.rnd.goodsyntax
56, // llvm.hexagon.S2.asr.i.r
72, // llvm.hexagon.S2.asr.i.r.acc
72, // llvm.hexagon.S2.asr.i.r.and
72, // llvm.hexagon.S2.asr.i.r.nac
72, // llvm.hexagon.S2.asr.i.r.or
56, // llvm.hexagon.S2.asr.i.r.rnd
56, // llvm.hexagon.S2.asr.i.r.rnd.goodsyntax
56, // llvm.hexagon.S2.asr.i.svw.trun
56, // llvm.hexagon.S2.asr.i.vh
56, // llvm.hexagon.S2.asr.i.vw
12, // llvm.hexagon.S2.asr.r.p
12, // llvm.hexagon.S2.asr.r.p.acc
12, // llvm.hexagon.S2.asr.r.p.and
12, // llvm.hexagon.S2.asr.r.p.nac
12, // llvm.hexagon.S2.asr.r.p.or
12, // llvm.hexagon.S2.asr.r.p.xor
12, // llvm.hexagon.S2.asr.r.r
12, // llvm.hexagon.S2.asr.r.r.acc
12, // llvm.hexagon.S2.asr.r.r.and
12, // llvm.hexagon.S2.asr.r.r.nac
12, // llvm.hexagon.S2.asr.r.r.or
12, // llvm.hexagon.S2.asr.r.r.sat
12, // llvm.hexagon.S2.asr.r.svw.trun
12, // llvm.hexagon.S2.asr.r.vh
12, // llvm.hexagon.S2.asr.r.vw
12, // llvm.hexagon.S2.brev
12, // llvm.hexagon.S2.brevp
12, // llvm.hexagon.S2.cl0
12, // llvm.hexagon.S2.cl0p
12, // llvm.hexagon.S2.cl1
12, // llvm.hexagon.S2.cl1p
12, // llvm.hexagon.S2.clb
12, // llvm.hexagon.S2.clbnorm
12, // llvm.hexagon.S2.clbp
56, // llvm.hexagon.S2.clrbit.i
12, // llvm.hexagon.S2.clrbit.r
12, // llvm.hexagon.S2.ct0
12, // llvm.hexagon.S2.ct0p
12, // llvm.hexagon.S2.ct1
12, // llvm.hexagon.S2.ct1p
12, // llvm.hexagon.S2.deinterleave
80, // llvm.hexagon.S2.extractu
12, // llvm.hexagon.S2.extractu.rp
80, // llvm.hexagon.S2.extractup
12, // llvm.hexagon.S2.extractup.rp
183, // llvm.hexagon.S2.insert
12, // llvm.hexagon.S2.insert.rp
183, // llvm.hexagon.S2.insertp
12, // llvm.hexagon.S2.insertp.rp
12, // llvm.hexagon.S2.interleave
12, // llvm.hexagon.S2.lfsp
12, // llvm.hexagon.S2.lsl.r.p
12, // llvm.hexagon.S2.lsl.r.p.acc
12, // llvm.hexagon.S2.lsl.r.p.and
12, // llvm.hexagon.S2.lsl.r.p.nac
12, // llvm.hexagon.S2.lsl.r.p.or
12, // llvm.hexagon.S2.lsl.r.p.xor
12, // llvm.hexagon.S2.lsl.r.r
12, // llvm.hexagon.S2.lsl.r.r.acc
12, // llvm.hexagon.S2.lsl.r.r.and
12, // llvm.hexagon.S2.lsl.r.r.nac
12, // llvm.hexagon.S2.lsl.r.r.or
12, // llvm.hexagon.S2.lsl.r.vh
12, // llvm.hexagon.S2.lsl.r.vw
56, // llvm.hexagon.S2.lsr.i.p
72, // llvm.hexagon.S2.lsr.i.p.acc
72, // llvm.hexagon.S2.lsr.i.p.and
72, // llvm.hexagon.S2.lsr.i.p.nac
72, // llvm.hexagon.S2.lsr.i.p.or
72, // llvm.hexagon.S2.lsr.i.p.xacc
56, // llvm.hexagon.S2.lsr.i.r
72, // llvm.hexagon.S2.lsr.i.r.acc
72, // llvm.hexagon.S2.lsr.i.r.and
72, // llvm.hexagon.S2.lsr.i.r.nac
72, // llvm.hexagon.S2.lsr.i.r.or
72, // llvm.hexagon.S2.lsr.i.r.xacc
56, // llvm.hexagon.S2.lsr.i.vh
56, // llvm.hexagon.S2.lsr.i.vw
12, // llvm.hexagon.S2.lsr.r.p
12, // llvm.hexagon.S2.lsr.r.p.acc
12, // llvm.hexagon.S2.lsr.r.p.and
12, // llvm.hexagon.S2.lsr.r.p.nac
12, // llvm.hexagon.S2.lsr.r.p.or
12, // llvm.hexagon.S2.lsr.r.p.xor
12, // llvm.hexagon.S2.lsr.r.r
12, // llvm.hexagon.S2.lsr.r.r.acc
12, // llvm.hexagon.S2.lsr.r.r.and
12, // llvm.hexagon.S2.lsr.r.r.nac
12, // llvm.hexagon.S2.lsr.r.r.or
12, // llvm.hexagon.S2.lsr.r.vh
12, // llvm.hexagon.S2.lsr.r.vw
168, // llvm.hexagon.S2.mask
12, // llvm.hexagon.S2.packhl
12, // llvm.hexagon.S2.parityp
56, // llvm.hexagon.S2.setbit.i
12, // llvm.hexagon.S2.setbit.r
12, // llvm.hexagon.S2.shuffeb
12, // llvm.hexagon.S2.shuffeh
12, // llvm.hexagon.S2.shuffob
12, // llvm.hexagon.S2.shuffoh
71, // llvm.hexagon.S2.storerb.pbr
68, // llvm.hexagon.S2.storerb.pci
67, // llvm.hexagon.S2.storerb.pcr
71, // llvm.hexagon.S2.storerd.pbr
68, // llvm.hexagon.S2.storerd.pci
67, // llvm.hexagon.S2.storerd.pcr
71, // llvm.hexagon.S2.storerf.pbr
68, // llvm.hexagon.S2.storerf.pci
67, // llvm.hexagon.S2.storerf.pcr
71, // llvm.hexagon.S2.storerh.pbr
68, // llvm.hexagon.S2.storerh.pci
67, // llvm.hexagon.S2.storerh.pcr
71, // llvm.hexagon.S2.storeri.pbr
68, // llvm.hexagon.S2.storeri.pci
67, // llvm.hexagon.S2.storeri.pcr
30, // llvm.hexagon.S2.storew.locked
12, // llvm.hexagon.S2.svsathb
12, // llvm.hexagon.S2.svsathub
183, // llvm.hexagon.S2.tableidxb.goodsyntax
183, // llvm.hexagon.S2.tableidxd.goodsyntax
183, // llvm.hexagon.S2.tableidxh.goodsyntax
183, // llvm.hexagon.S2.tableidxw.goodsyntax
56, // llvm.hexagon.S2.togglebit.i
12, // llvm.hexagon.S2.togglebit.r
56, // llvm.hexagon.S2.tstbit.i
12, // llvm.hexagon.S2.tstbit.r
72, // llvm.hexagon.S2.valignib
12, // llvm.hexagon.S2.valignrb
12, // llvm.hexagon.S2.vcnegh
12, // llvm.hexagon.S2.vcrotate
12, // llvm.hexagon.S2.vrcnegh
12, // llvm.hexagon.S2.vrndpackwh
12, // llvm.hexagon.S2.vrndpackwhs
12, // llvm.hexagon.S2.vsathb
12, // llvm.hexagon.S2.vsathb.nopack
12, // llvm.hexagon.S2.vsathub
12, // llvm.hexagon.S2.vsathub.nopack
12, // llvm.hexagon.S2.vsatwh
12, // llvm.hexagon.S2.vsatwh.nopack
12, // llvm.hexagon.S2.vsatwuh
12, // llvm.hexagon.S2.vsatwuh.nopack
12, // llvm.hexagon.S2.vsplatrb
12, // llvm.hexagon.S2.vsplatrh
72, // llvm.hexagon.S2.vspliceib
12, // llvm.hexagon.S2.vsplicerb
12, // llvm.hexagon.S2.vsxtbh
12, // llvm.hexagon.S2.vsxthw
12, // llvm.hexagon.S2.vtrunehb
12, // llvm.hexagon.S2.vtrunewh
12, // llvm.hexagon.S2.vtrunohb
12, // llvm.hexagon.S2.vtrunowh
12, // llvm.hexagon.S2.vzxtbh
12, // llvm.hexagon.S2.vzxthw
72, // llvm.hexagon.S4.addaddi
169, // llvm.hexagon.S4.addi.asl.ri
169, // llvm.hexagon.S4.addi.lsr.ri
169, // llvm.hexagon.S4.andi.asl.ri
169, // llvm.hexagon.S4.andi.lsr.ri
56, // llvm.hexagon.S4.clbaddi
56, // llvm.hexagon.S4.clbpaddi
12, // llvm.hexagon.S4.clbpnorm
80, // llvm.hexagon.S4.extract
12, // llvm.hexagon.S4.extract.rp
80, // llvm.hexagon.S4.extractp
12, // llvm.hexagon.S4.extractp.rp
75, // llvm.hexagon.S4.lsli
56, // llvm.hexagon.S4.ntstbit.i
12, // llvm.hexagon.S4.ntstbit.r
72, // llvm.hexagon.S4.or.andi
72, // llvm.hexagon.S4.or.andix
72, // llvm.hexagon.S4.or.ori
169, // llvm.hexagon.S4.ori.asl.ri
169, // llvm.hexagon.S4.ori.lsr.ri
12, // llvm.hexagon.S4.parity
30, // llvm.hexagon.S4.stored.locked
56, // llvm.hexagon.S4.subaddi
169, // llvm.hexagon.S4.subi.asl.ri
169, // llvm.hexagon.S4.subi.lsr.ri
72, // llvm.hexagon.S4.vrcrotate
73, // llvm.hexagon.S4.vrcrotate.acc
12, // llvm.hexagon.S4.vxaddsubh
12, // llvm.hexagon.S4.vxaddsubhr
12, // llvm.hexagon.S4.vxaddsubw
12, // llvm.hexagon.S4.vxsubaddh
12, // llvm.hexagon.S4.vxsubaddhr
12, // llvm.hexagon.S4.vxsubaddw
56, // llvm.hexagon.S5.asrhub.rnd.sat.goodsyntax
56, // llvm.hexagon.S5.asrhub.sat
12, // llvm.hexagon.S5.popcountp
56, // llvm.hexagon.S5.vasrhrnd.goodsyntax
56, // llvm.hexagon.S6.rol.i.p
72, // llvm.hexagon.S6.rol.i.p.acc
72, // llvm.hexagon.S6.rol.i.p.and
72, // llvm.hexagon.S6.rol.i.p.nac
72, // llvm.hexagon.S6.rol.i.p.or
72, // llvm.hexagon.S6.rol.i.p.xacc
56, // llvm.hexagon.S6.rol.i.r
72, // llvm.hexagon.S6.rol.i.r.acc
72, // llvm.hexagon.S6.rol.i.r.and
72, // llvm.hexagon.S6.rol.i.r.nac
72, // llvm.hexagon.S6.rol.i.r.or
72, // llvm.hexagon.S6.rol.i.r.xacc
12, // llvm.hexagon.S6.vsplatrbp
12, // llvm.hexagon.S6.vtrunehb.ppp
12, // llvm.hexagon.S6.vtrunohb.ppp
12, // llvm.hexagon.V6.extractw
12, // llvm.hexagon.V6.extractw.128B
12, // llvm.hexagon.V6.hi
12, // llvm.hexagon.V6.hi.128B
12, // llvm.hexagon.V6.lo
12, // llvm.hexagon.V6.lo.128B
12, // llvm.hexagon.V6.lvsplatb
12, // llvm.hexagon.V6.lvsplatb.128B
12, // llvm.hexagon.V6.lvsplath
12, // llvm.hexagon.V6.lvsplath.128B
12, // llvm.hexagon.V6.lvsplatw
12, // llvm.hexagon.V6.lvsplatw.128B
12, // llvm.hexagon.V6.pred.and
12, // llvm.hexagon.V6.pred.and.128B
12, // llvm.hexagon.V6.pred.and.n
12, // llvm.hexagon.V6.pred.and.n.128B
12, // llvm.hexagon.V6.pred.not
12, // llvm.hexagon.V6.pred.not.128B
12, // llvm.hexagon.V6.pred.or
12, // llvm.hexagon.V6.pred.or.128B
12, // llvm.hexagon.V6.pred.or.n
12, // llvm.hexagon.V6.pred.or.n.128B
12, // llvm.hexagon.V6.pred.scalar2
12, // llvm.hexagon.V6.pred.scalar2.128B
12, // llvm.hexagon.V6.pred.scalar2v2
12, // llvm.hexagon.V6.pred.scalar2v2.128B
12, // llvm.hexagon.V6.pred.typecast
12, // llvm.hexagon.V6.pred.typecast.128B
12, // llvm.hexagon.V6.pred.xor
12, // llvm.hexagon.V6.pred.xor.128B
12, // llvm.hexagon.V6.shuffeqh
12, // llvm.hexagon.V6.shuffeqh.128B
12, // llvm.hexagon.V6.shuffeqw
12, // llvm.hexagon.V6.shuffeqw.128B
71, // llvm.hexagon.V6.vS32b.nqpred.ai
71, // llvm.hexagon.V6.vS32b.nqpred.ai.128B
71, // llvm.hexagon.V6.vS32b.nt.nqpred.ai
71, // llvm.hexagon.V6.vS32b.nt.nqpred.ai.128B
71, // llvm.hexagon.V6.vS32b.nt.qpred.ai
71, // llvm.hexagon.V6.vS32b.nt.qpred.ai.128B
71, // llvm.hexagon.V6.vS32b.qpred.ai
71, // llvm.hexagon.V6.vS32b.qpred.ai.128B
12, // llvm.hexagon.V6.vabsb
12, // llvm.hexagon.V6.vabsb.128B
12, // llvm.hexagon.V6.vabsb.sat
12, // llvm.hexagon.V6.vabsb.sat.128B
12, // llvm.hexagon.V6.vabsdiffh
12, // llvm.hexagon.V6.vabsdiffh.128B
12, // llvm.hexagon.V6.vabsdiffub
12, // llvm.hexagon.V6.vabsdiffub.128B
12, // llvm.hexagon.V6.vabsdiffuh
12, // llvm.hexagon.V6.vabsdiffuh.128B
12, // llvm.hexagon.V6.vabsdiffw
12, // llvm.hexagon.V6.vabsdiffw.128B
12, // llvm.hexagon.V6.vabsh
12, // llvm.hexagon.V6.vabsh.128B
12, // llvm.hexagon.V6.vabsh.sat
12, // llvm.hexagon.V6.vabsh.sat.128B
12, // llvm.hexagon.V6.vabsw
12, // llvm.hexagon.V6.vabsw.128B
12, // llvm.hexagon.V6.vabsw.sat
12, // llvm.hexagon.V6.vabsw.sat.128B
12, // llvm.hexagon.V6.vaddb
12, // llvm.hexagon.V6.vaddb.128B
12, // llvm.hexagon.V6.vaddb.dv
12, // llvm.hexagon.V6.vaddb.dv.128B
12, // llvm.hexagon.V6.vaddbnq
12, // llvm.hexagon.V6.vaddbnq.128B
12, // llvm.hexagon.V6.vaddbq
12, // llvm.hexagon.V6.vaddbq.128B
12, // llvm.hexagon.V6.vaddbsat
12, // llvm.hexagon.V6.vaddbsat.128B
12, // llvm.hexagon.V6.vaddbsat.dv
12, // llvm.hexagon.V6.vaddbsat.dv.128B
12, // llvm.hexagon.V6.vaddcarry
12, // llvm.hexagon.V6.vaddcarry.128B
12, // llvm.hexagon.V6.vaddcarrysat
12, // llvm.hexagon.V6.vaddcarrysat.128B
12, // llvm.hexagon.V6.vaddclbh
12, // llvm.hexagon.V6.vaddclbh.128B
12, // llvm.hexagon.V6.vaddclbw
12, // llvm.hexagon.V6.vaddclbw.128B
12, // llvm.hexagon.V6.vaddh
12, // llvm.hexagon.V6.vaddh.128B
12, // llvm.hexagon.V6.vaddh.dv
12, // llvm.hexagon.V6.vaddh.dv.128B
12, // llvm.hexagon.V6.vaddhnq
12, // llvm.hexagon.V6.vaddhnq.128B
12, // llvm.hexagon.V6.vaddhq
12, // llvm.hexagon.V6.vaddhq.128B
12, // llvm.hexagon.V6.vaddhsat
12, // llvm.hexagon.V6.vaddhsat.128B
12, // llvm.hexagon.V6.vaddhsat.dv
12, // llvm.hexagon.V6.vaddhsat.dv.128B
12, // llvm.hexagon.V6.vaddhw
12, // llvm.hexagon.V6.vaddhw.128B
12, // llvm.hexagon.V6.vaddhw.acc
12, // llvm.hexagon.V6.vaddhw.acc.128B
12, // llvm.hexagon.V6.vaddubh
12, // llvm.hexagon.V6.vaddubh.128B
12, // llvm.hexagon.V6.vaddubh.acc
12, // llvm.hexagon.V6.vaddubh.acc.128B
12, // llvm.hexagon.V6.vaddubsat
12, // llvm.hexagon.V6.vaddubsat.128B
12, // llvm.hexagon.V6.vaddubsat.dv
12, // llvm.hexagon.V6.vaddubsat.dv.128B
12, // llvm.hexagon.V6.vaddububb.sat
12, // llvm.hexagon.V6.vaddububb.sat.128B
12, // llvm.hexagon.V6.vadduhsat
12, // llvm.hexagon.V6.vadduhsat.128B
12, // llvm.hexagon.V6.vadduhsat.dv
12, // llvm.hexagon.V6.vadduhsat.dv.128B
12, // llvm.hexagon.V6.vadduhw
12, // llvm.hexagon.V6.vadduhw.128B
12, // llvm.hexagon.V6.vadduhw.acc
12, // llvm.hexagon.V6.vadduhw.acc.128B
12, // llvm.hexagon.V6.vadduwsat
12, // llvm.hexagon.V6.vadduwsat.128B
12, // llvm.hexagon.V6.vadduwsat.dv
12, // llvm.hexagon.V6.vadduwsat.dv.128B
12, // llvm.hexagon.V6.vaddw
12, // llvm.hexagon.V6.vaddw.128B
12, // llvm.hexagon.V6.vaddw.dv
12, // llvm.hexagon.V6.vaddw.dv.128B
12, // llvm.hexagon.V6.vaddwnq
12, // llvm.hexagon.V6.vaddwnq.128B
12, // llvm.hexagon.V6.vaddwq
12, // llvm.hexagon.V6.vaddwq.128B
12, // llvm.hexagon.V6.vaddwsat
12, // llvm.hexagon.V6.vaddwsat.128B
12, // llvm.hexagon.V6.vaddwsat.dv
12, // llvm.hexagon.V6.vaddwsat.dv.128B
12, // llvm.hexagon.V6.valignb
12, // llvm.hexagon.V6.valignb.128B
72, // llvm.hexagon.V6.valignbi
72, // llvm.hexagon.V6.valignbi.128B
12, // llvm.hexagon.V6.vand
12, // llvm.hexagon.V6.vand.128B
12, // llvm.hexagon.V6.vandnqrt
12, // llvm.hexagon.V6.vandnqrt.128B
12, // llvm.hexagon.V6.vandnqrt.acc
12, // llvm.hexagon.V6.vandnqrt.acc.128B
12, // llvm.hexagon.V6.vandqrt
12, // llvm.hexagon.V6.vandqrt.128B
12, // llvm.hexagon.V6.vandqrt.acc
12, // llvm.hexagon.V6.vandqrt.acc.128B
12, // llvm.hexagon.V6.vandvnqv
12, // llvm.hexagon.V6.vandvnqv.128B
12, // llvm.hexagon.V6.vandvqv
12, // llvm.hexagon.V6.vandvqv.128B
12, // llvm.hexagon.V6.vandvrt
12, // llvm.hexagon.V6.vandvrt.128B
12, // llvm.hexagon.V6.vandvrt.acc
12, // llvm.hexagon.V6.vandvrt.acc.128B
12, // llvm.hexagon.V6.vaslh
12, // llvm.hexagon.V6.vaslh.128B
12, // llvm.hexagon.V6.vaslh.acc
12, // llvm.hexagon.V6.vaslh.acc.128B
12, // llvm.hexagon.V6.vaslhv
12, // llvm.hexagon.V6.vaslhv.128B
12, // llvm.hexagon.V6.vaslw
12, // llvm.hexagon.V6.vaslw.128B
12, // llvm.hexagon.V6.vaslw.acc
12, // llvm.hexagon.V6.vaslw.acc.128B
12, // llvm.hexagon.V6.vaslwv
12, // llvm.hexagon.V6.vaslwv.128B
12, // llvm.hexagon.V6.vasr.into
12, // llvm.hexagon.V6.vasr.into.128B
12, // llvm.hexagon.V6.vasrh
12, // llvm.hexagon.V6.vasrh.128B
12, // llvm.hexagon.V6.vasrh.acc
12, // llvm.hexagon.V6.vasrh.acc.128B
12, // llvm.hexagon.V6.vasrhbrndsat
12, // llvm.hexagon.V6.vasrhbrndsat.128B
12, // llvm.hexagon.V6.vasrhbsat
12, // llvm.hexagon.V6.vasrhbsat.128B
12, // llvm.hexagon.V6.vasrhubrndsat
12, // llvm.hexagon.V6.vasrhubrndsat.128B
12, // llvm.hexagon.V6.vasrhubsat
12, // llvm.hexagon.V6.vasrhubsat.128B
12, // llvm.hexagon.V6.vasrhv
12, // llvm.hexagon.V6.vasrhv.128B
12, // llvm.hexagon.V6.vasruhubrndsat
12, // llvm.hexagon.V6.vasruhubrndsat.128B
12, // llvm.hexagon.V6.vasruhubsat
12, // llvm.hexagon.V6.vasruhubsat.128B
12, // llvm.hexagon.V6.vasruwuhrndsat
12, // llvm.hexagon.V6.vasruwuhrndsat.128B
12, // llvm.hexagon.V6.vasruwuhsat
12, // llvm.hexagon.V6.vasruwuhsat.128B
12, // llvm.hexagon.V6.vasrw
12, // llvm.hexagon.V6.vasrw.128B
12, // llvm.hexagon.V6.vasrw.acc
12, // llvm.hexagon.V6.vasrw.acc.128B
12, // llvm.hexagon.V6.vasrwh
12, // llvm.hexagon.V6.vasrwh.128B
12, // llvm.hexagon.V6.vasrwhrndsat
12, // llvm.hexagon.V6.vasrwhrndsat.128B
12, // llvm.hexagon.V6.vasrwhsat
12, // llvm.hexagon.V6.vasrwhsat.128B
12, // llvm.hexagon.V6.vasrwuhrndsat
12, // llvm.hexagon.V6.vasrwuhrndsat.128B
12, // llvm.hexagon.V6.vasrwuhsat
12, // llvm.hexagon.V6.vasrwuhsat.128B
12, // llvm.hexagon.V6.vasrwv
12, // llvm.hexagon.V6.vasrwv.128B
12, // llvm.hexagon.V6.vassign
12, // llvm.hexagon.V6.vassign.128B
12, // llvm.hexagon.V6.vassignp
12, // llvm.hexagon.V6.vassignp.128B
12, // llvm.hexagon.V6.vavgb
12, // llvm.hexagon.V6.vavgb.128B
12, // llvm.hexagon.V6.vavgbrnd
12, // llvm.hexagon.V6.vavgbrnd.128B
12, // llvm.hexagon.V6.vavgh
12, // llvm.hexagon.V6.vavgh.128B
12, // llvm.hexagon.V6.vavghrnd
12, // llvm.hexagon.V6.vavghrnd.128B
12, // llvm.hexagon.V6.vavgub
12, // llvm.hexagon.V6.vavgub.128B
12, // llvm.hexagon.V6.vavgubrnd
12, // llvm.hexagon.V6.vavgubrnd.128B
12, // llvm.hexagon.V6.vavguh
12, // llvm.hexagon.V6.vavguh.128B
12, // llvm.hexagon.V6.vavguhrnd
12, // llvm.hexagon.V6.vavguhrnd.128B
12, // llvm.hexagon.V6.vavguw
12, // llvm.hexagon.V6.vavguw.128B
12, // llvm.hexagon.V6.vavguwrnd
12, // llvm.hexagon.V6.vavguwrnd.128B
12, // llvm.hexagon.V6.vavgw
12, // llvm.hexagon.V6.vavgw.128B
12, // llvm.hexagon.V6.vavgwrnd
12, // llvm.hexagon.V6.vavgwrnd.128B
12, // llvm.hexagon.V6.vcl0h
12, // llvm.hexagon.V6.vcl0h.128B
12, // llvm.hexagon.V6.vcl0w
12, // llvm.hexagon.V6.vcl0w.128B
12, // llvm.hexagon.V6.vcombine
12, // llvm.hexagon.V6.vcombine.128B
12, // llvm.hexagon.V6.vd0
12, // llvm.hexagon.V6.vd0.128B
12, // llvm.hexagon.V6.vdd0
12, // llvm.hexagon.V6.vdd0.128B
12, // llvm.hexagon.V6.vdealb
12, // llvm.hexagon.V6.vdealb.128B
12, // llvm.hexagon.V6.vdealb4w
12, // llvm.hexagon.V6.vdealb4w.128B
12, // llvm.hexagon.V6.vdealh
12, // llvm.hexagon.V6.vdealh.128B
12, // llvm.hexagon.V6.vdealvdd
12, // llvm.hexagon.V6.vdealvdd.128B
12, // llvm.hexagon.V6.vdelta
12, // llvm.hexagon.V6.vdelta.128B
12, // llvm.hexagon.V6.vdmpybus
12, // llvm.hexagon.V6.vdmpybus.128B
12, // llvm.hexagon.V6.vdmpybus.acc
12, // llvm.hexagon.V6.vdmpybus.acc.128B
12, // llvm.hexagon.V6.vdmpybus.dv
12, // llvm.hexagon.V6.vdmpybus.dv.128B
12, // llvm.hexagon.V6.vdmpybus.dv.acc
12, // llvm.hexagon.V6.vdmpybus.dv.acc.128B
12, // llvm.hexagon.V6.vdmpyhb
12, // llvm.hexagon.V6.vdmpyhb.128B
12, // llvm.hexagon.V6.vdmpyhb.acc
12, // llvm.hexagon.V6.vdmpyhb.acc.128B
12, // llvm.hexagon.V6.vdmpyhb.dv
12, // llvm.hexagon.V6.vdmpyhb.dv.128B
12, // llvm.hexagon.V6.vdmpyhb.dv.acc
12, // llvm.hexagon.V6.vdmpyhb.dv.acc.128B
12, // llvm.hexagon.V6.vdmpyhisat
12, // llvm.hexagon.V6.vdmpyhisat.128B
12, // llvm.hexagon.V6.vdmpyhisat.acc
12, // llvm.hexagon.V6.vdmpyhisat.acc.128B
12, // llvm.hexagon.V6.vdmpyhsat
12, // llvm.hexagon.V6.vdmpyhsat.128B
12, // llvm.hexagon.V6.vdmpyhsat.acc
12, // llvm.hexagon.V6.vdmpyhsat.acc.128B
12, // llvm.hexagon.V6.vdmpyhsuisat
12, // llvm.hexagon.V6.vdmpyhsuisat.128B
12, // llvm.hexagon.V6.vdmpyhsuisat.acc
12, // llvm.hexagon.V6.vdmpyhsuisat.acc.128B
12, // llvm.hexagon.V6.vdmpyhsusat
12, // llvm.hexagon.V6.vdmpyhsusat.128B
12, // llvm.hexagon.V6.vdmpyhsusat.acc
12, // llvm.hexagon.V6.vdmpyhsusat.acc.128B
12, // llvm.hexagon.V6.vdmpyhvsat
12, // llvm.hexagon.V6.vdmpyhvsat.128B
12, // llvm.hexagon.V6.vdmpyhvsat.acc
12, // llvm.hexagon.V6.vdmpyhvsat.acc.128B
12, // llvm.hexagon.V6.vdsaduh
12, // llvm.hexagon.V6.vdsaduh.128B
12, // llvm.hexagon.V6.vdsaduh.acc
12, // llvm.hexagon.V6.vdsaduh.acc.128B
12, // llvm.hexagon.V6.veqb
12, // llvm.hexagon.V6.veqb.128B
12, // llvm.hexagon.V6.veqb.and
12, // llvm.hexagon.V6.veqb.and.128B
12, // llvm.hexagon.V6.veqb.or
12, // llvm.hexagon.V6.veqb.or.128B
12, // llvm.hexagon.V6.veqb.xor
12, // llvm.hexagon.V6.veqb.xor.128B
12, // llvm.hexagon.V6.veqh
12, // llvm.hexagon.V6.veqh.128B
12, // llvm.hexagon.V6.veqh.and
12, // llvm.hexagon.V6.veqh.and.128B
12, // llvm.hexagon.V6.veqh.or
12, // llvm.hexagon.V6.veqh.or.128B
12, // llvm.hexagon.V6.veqh.xor
12, // llvm.hexagon.V6.veqh.xor.128B
12, // llvm.hexagon.V6.veqw
12, // llvm.hexagon.V6.veqw.128B
12, // llvm.hexagon.V6.veqw.and
12, // llvm.hexagon.V6.veqw.and.128B
12, // llvm.hexagon.V6.veqw.or
12, // llvm.hexagon.V6.veqw.or.128B
12, // llvm.hexagon.V6.veqw.xor
12, // llvm.hexagon.V6.veqw.xor.128B
179, // llvm.hexagon.V6.vgathermh
179, // llvm.hexagon.V6.vgathermh.128B
179, // llvm.hexagon.V6.vgathermhq
179, // llvm.hexagon.V6.vgathermhq.128B
179, // llvm.hexagon.V6.vgathermhw
179, // llvm.hexagon.V6.vgathermhw.128B
179, // llvm.hexagon.V6.vgathermhwq
179, // llvm.hexagon.V6.vgathermhwq.128B
179, // llvm.hexagon.V6.vgathermw
179, // llvm.hexagon.V6.vgathermw.128B
179, // llvm.hexagon.V6.vgathermwq
179, // llvm.hexagon.V6.vgathermwq.128B
12, // llvm.hexagon.V6.vgtb
12, // llvm.hexagon.V6.vgtb.128B
12, // llvm.hexagon.V6.vgtb.and
12, // llvm.hexagon.V6.vgtb.and.128B
12, // llvm.hexagon.V6.vgtb.or
12, // llvm.hexagon.V6.vgtb.or.128B
12, // llvm.hexagon.V6.vgtb.xor
12, // llvm.hexagon.V6.vgtb.xor.128B
12, // llvm.hexagon.V6.vgth
12, // llvm.hexagon.V6.vgth.128B
12, // llvm.hexagon.V6.vgth.and
12, // llvm.hexagon.V6.vgth.and.128B
12, // llvm.hexagon.V6.vgth.or
12, // llvm.hexagon.V6.vgth.or.128B
12, // llvm.hexagon.V6.vgth.xor
12, // llvm.hexagon.V6.vgth.xor.128B
12, // llvm.hexagon.V6.vgtub
12, // llvm.hexagon.V6.vgtub.128B
12, // llvm.hexagon.V6.vgtub.and
12, // llvm.hexagon.V6.vgtub.and.128B
12, // llvm.hexagon.V6.vgtub.or
12, // llvm.hexagon.V6.vgtub.or.128B
12, // llvm.hexagon.V6.vgtub.xor
12, // llvm.hexagon.V6.vgtub.xor.128B
12, // llvm.hexagon.V6.vgtuh
12, // llvm.hexagon.V6.vgtuh.128B
12, // llvm.hexagon.V6.vgtuh.and
12, // llvm.hexagon.V6.vgtuh.and.128B
12, // llvm.hexagon.V6.vgtuh.or
12, // llvm.hexagon.V6.vgtuh.or.128B
12, // llvm.hexagon.V6.vgtuh.xor
12, // llvm.hexagon.V6.vgtuh.xor.128B
12, // llvm.hexagon.V6.vgtuw
12, // llvm.hexagon.V6.vgtuw.128B
12, // llvm.hexagon.V6.vgtuw.and
12, // llvm.hexagon.V6.vgtuw.and.128B
12, // llvm.hexagon.V6.vgtuw.or
12, // llvm.hexagon.V6.vgtuw.or.128B
12, // llvm.hexagon.V6.vgtuw.xor
12, // llvm.hexagon.V6.vgtuw.xor.128B
12, // llvm.hexagon.V6.vgtw
12, // llvm.hexagon.V6.vgtw.128B
12, // llvm.hexagon.V6.vgtw.and
12, // llvm.hexagon.V6.vgtw.and.128B
12, // llvm.hexagon.V6.vgtw.or
12, // llvm.hexagon.V6.vgtw.or.128B
12, // llvm.hexagon.V6.vgtw.xor
12, // llvm.hexagon.V6.vgtw.xor.128B
12, // llvm.hexagon.V6.vinsertwr
12, // llvm.hexagon.V6.vinsertwr.128B
12, // llvm.hexagon.V6.vlalignb
12, // llvm.hexagon.V6.vlalignb.128B
72, // llvm.hexagon.V6.vlalignbi
72, // llvm.hexagon.V6.vlalignbi.128B
12, // llvm.hexagon.V6.vlsrb
12, // llvm.hexagon.V6.vlsrb.128B
12, // llvm.hexagon.V6.vlsrh
12, // llvm.hexagon.V6.vlsrh.128B
12, // llvm.hexagon.V6.vlsrhv
12, // llvm.hexagon.V6.vlsrhv.128B
12, // llvm.hexagon.V6.vlsrw
12, // llvm.hexagon.V6.vlsrw.128B
12, // llvm.hexagon.V6.vlsrwv
12, // llvm.hexagon.V6.vlsrwv.128B
12, // llvm.hexagon.V6.vlut4
12, // llvm.hexagon.V6.vlut4.128B
12, // llvm.hexagon.V6.vlutvvb
12, // llvm.hexagon.V6.vlutvvb.128B
12, // llvm.hexagon.V6.vlutvvb.nm
12, // llvm.hexagon.V6.vlutvvb.nm.128B
12, // llvm.hexagon.V6.vlutvvb.oracc
12, // llvm.hexagon.V6.vlutvvb.oracc.128B
73, // llvm.hexagon.V6.vlutvvb.oracci
73, // llvm.hexagon.V6.vlutvvb.oracci.128B
72, // llvm.hexagon.V6.vlutvvbi
72, // llvm.hexagon.V6.vlutvvbi.128B
12, // llvm.hexagon.V6.vlutvwh
12, // llvm.hexagon.V6.vlutvwh.128B
12, // llvm.hexagon.V6.vlutvwh.nm
12, // llvm.hexagon.V6.vlutvwh.nm.128B
12, // llvm.hexagon.V6.vlutvwh.oracc
12, // llvm.hexagon.V6.vlutvwh.oracc.128B
73, // llvm.hexagon.V6.vlutvwh.oracci
73, // llvm.hexagon.V6.vlutvwh.oracci.128B
72, // llvm.hexagon.V6.vlutvwhi
72, // llvm.hexagon.V6.vlutvwhi.128B
71, // llvm.hexagon.V6.vmaskedstorenq
71, // llvm.hexagon.V6.vmaskedstorenq.128B
71, // llvm.hexagon.V6.vmaskedstorentnq
71, // llvm.hexagon.V6.vmaskedstorentnq.128B
71, // llvm.hexagon.V6.vmaskedstorentq
71, // llvm.hexagon.V6.vmaskedstorentq.128B
71, // llvm.hexagon.V6.vmaskedstoreq
71, // llvm.hexagon.V6.vmaskedstoreq.128B
12, // llvm.hexagon.V6.vmaxb
12, // llvm.hexagon.V6.vmaxb.128B
12, // llvm.hexagon.V6.vmaxh
12, // llvm.hexagon.V6.vmaxh.128B
12, // llvm.hexagon.V6.vmaxub
12, // llvm.hexagon.V6.vmaxub.128B
12, // llvm.hexagon.V6.vmaxuh
12, // llvm.hexagon.V6.vmaxuh.128B
12, // llvm.hexagon.V6.vmaxw
12, // llvm.hexagon.V6.vmaxw.128B
12, // llvm.hexagon.V6.vminb
12, // llvm.hexagon.V6.vminb.128B
12, // llvm.hexagon.V6.vminh
12, // llvm.hexagon.V6.vminh.128B
12, // llvm.hexagon.V6.vminub
12, // llvm.hexagon.V6.vminub.128B
12, // llvm.hexagon.V6.vminuh
12, // llvm.hexagon.V6.vminuh.128B
12, // llvm.hexagon.V6.vminw
12, // llvm.hexagon.V6.vminw.128B
12, // llvm.hexagon.V6.vmpabus
12, // llvm.hexagon.V6.vmpabus.128B
12, // llvm.hexagon.V6.vmpabus.acc
12, // llvm.hexagon.V6.vmpabus.acc.128B
12, // llvm.hexagon.V6.vmpabusv
12, // llvm.hexagon.V6.vmpabusv.128B
12, // llvm.hexagon.V6.vmpabuu
12, // llvm.hexagon.V6.vmpabuu.128B
12, // llvm.hexagon.V6.vmpabuu.acc
12, // llvm.hexagon.V6.vmpabuu.acc.128B
12, // llvm.hexagon.V6.vmpabuuv
12, // llvm.hexagon.V6.vmpabuuv.128B
12, // llvm.hexagon.V6.vmpahb
12, // llvm.hexagon.V6.vmpahb.128B
12, // llvm.hexagon.V6.vmpahb.acc
12, // llvm.hexagon.V6.vmpahb.acc.128B
12, // llvm.hexagon.V6.vmpahhsat
12, // llvm.hexagon.V6.vmpahhsat.128B
12, // llvm.hexagon.V6.vmpauhb
12, // llvm.hexagon.V6.vmpauhb.128B
12, // llvm.hexagon.V6.vmpauhb.acc
12, // llvm.hexagon.V6.vmpauhb.acc.128B
12, // llvm.hexagon.V6.vmpauhuhsat
12, // llvm.hexagon.V6.vmpauhuhsat.128B
12, // llvm.hexagon.V6.vmpsuhuhsat
12, // llvm.hexagon.V6.vmpsuhuhsat.128B
12, // llvm.hexagon.V6.vmpybus
12, // llvm.hexagon.V6.vmpybus.128B
12, // llvm.hexagon.V6.vmpybus.acc
12, // llvm.hexagon.V6.vmpybus.acc.128B
12, // llvm.hexagon.V6.vmpybusv
12, // llvm.hexagon.V6.vmpybusv.128B
12, // llvm.hexagon.V6.vmpybusv.acc
12, // llvm.hexagon.V6.vmpybusv.acc.128B
12, // llvm.hexagon.V6.vmpybv
12, // llvm.hexagon.V6.vmpybv.128B
12, // llvm.hexagon.V6.vmpybv.acc
12, // llvm.hexagon.V6.vmpybv.acc.128B
12, // llvm.hexagon.V6.vmpyewuh
12, // llvm.hexagon.V6.vmpyewuh.128B
12, // llvm.hexagon.V6.vmpyewuh.64
12, // llvm.hexagon.V6.vmpyewuh.64.128B
12, // llvm.hexagon.V6.vmpyh
12, // llvm.hexagon.V6.vmpyh.128B
12, // llvm.hexagon.V6.vmpyh.acc
12, // llvm.hexagon.V6.vmpyh.acc.128B
12, // llvm.hexagon.V6.vmpyhsat.acc
12, // llvm.hexagon.V6.vmpyhsat.acc.128B
12, // llvm.hexagon.V6.vmpyhsrs
12, // llvm.hexagon.V6.vmpyhsrs.128B
12, // llvm.hexagon.V6.vmpyhss
12, // llvm.hexagon.V6.vmpyhss.128B
12, // llvm.hexagon.V6.vmpyhus
12, // llvm.hexagon.V6.vmpyhus.128B
12, // llvm.hexagon.V6.vmpyhus.acc
12, // llvm.hexagon.V6.vmpyhus.acc.128B
12, // llvm.hexagon.V6.vmpyhv
12, // llvm.hexagon.V6.vmpyhv.128B
12, // llvm.hexagon.V6.vmpyhv.acc
12, // llvm.hexagon.V6.vmpyhv.acc.128B
12, // llvm.hexagon.V6.vmpyhvsrs
12, // llvm.hexagon.V6.vmpyhvsrs.128B
12, // llvm.hexagon.V6.vmpyieoh
12, // llvm.hexagon.V6.vmpyieoh.128B
12, // llvm.hexagon.V6.vmpyiewh.acc
12, // llvm.hexagon.V6.vmpyiewh.acc.128B
12, // llvm.hexagon.V6.vmpyiewuh
12, // llvm.hexagon.V6.vmpyiewuh.128B
12, // llvm.hexagon.V6.vmpyiewuh.acc
12, // llvm.hexagon.V6.vmpyiewuh.acc.128B
12, // llvm.hexagon.V6.vmpyih
12, // llvm.hexagon.V6.vmpyih.128B
12, // llvm.hexagon.V6.vmpyih.acc
12, // llvm.hexagon.V6.vmpyih.acc.128B
12, // llvm.hexagon.V6.vmpyihb
12, // llvm.hexagon.V6.vmpyihb.128B
12, // llvm.hexagon.V6.vmpyihb.acc
12, // llvm.hexagon.V6.vmpyihb.acc.128B
12, // llvm.hexagon.V6.vmpyiowh
12, // llvm.hexagon.V6.vmpyiowh.128B
12, // llvm.hexagon.V6.vmpyiwb
12, // llvm.hexagon.V6.vmpyiwb.128B
12, // llvm.hexagon.V6.vmpyiwb.acc
12, // llvm.hexagon.V6.vmpyiwb.acc.128B
12, // llvm.hexagon.V6.vmpyiwh
12, // llvm.hexagon.V6.vmpyiwh.128B
12, // llvm.hexagon.V6.vmpyiwh.acc
12, // llvm.hexagon.V6.vmpyiwh.acc.128B
12, // llvm.hexagon.V6.vmpyiwub
12, // llvm.hexagon.V6.vmpyiwub.128B
12, // llvm.hexagon.V6.vmpyiwub.acc
12, // llvm.hexagon.V6.vmpyiwub.acc.128B
12, // llvm.hexagon.V6.vmpyowh
12, // llvm.hexagon.V6.vmpyowh.128B
12, // llvm.hexagon.V6.vmpyowh.64.acc
12, // llvm.hexagon.V6.vmpyowh.64.acc.128B
12, // llvm.hexagon.V6.vmpyowh.rnd
12, // llvm.hexagon.V6.vmpyowh.rnd.128B
12, // llvm.hexagon.V6.vmpyowh.rnd.sacc
12, // llvm.hexagon.V6.vmpyowh.rnd.sacc.128B
12, // llvm.hexagon.V6.vmpyowh.sacc
12, // llvm.hexagon.V6.vmpyowh.sacc.128B
12, // llvm.hexagon.V6.vmpyub
12, // llvm.hexagon.V6.vmpyub.128B
12, // llvm.hexagon.V6.vmpyub.acc
12, // llvm.hexagon.V6.vmpyub.acc.128B
12, // llvm.hexagon.V6.vmpyubv
12, // llvm.hexagon.V6.vmpyubv.128B
12, // llvm.hexagon.V6.vmpyubv.acc
12, // llvm.hexagon.V6.vmpyubv.acc.128B
12, // llvm.hexagon.V6.vmpyuh
12, // llvm.hexagon.V6.vmpyuh.128B
12, // llvm.hexagon.V6.vmpyuh.acc
12, // llvm.hexagon.V6.vmpyuh.acc.128B
12, // llvm.hexagon.V6.vmpyuhe
12, // llvm.hexagon.V6.vmpyuhe.128B
12, // llvm.hexagon.V6.vmpyuhe.acc
12, // llvm.hexagon.V6.vmpyuhe.acc.128B
12, // llvm.hexagon.V6.vmpyuhv
12, // llvm.hexagon.V6.vmpyuhv.128B
12, // llvm.hexagon.V6.vmpyuhv.acc
12, // llvm.hexagon.V6.vmpyuhv.acc.128B
12, // llvm.hexagon.V6.vmux
12, // llvm.hexagon.V6.vmux.128B
12, // llvm.hexagon.V6.vnavgb
12, // llvm.hexagon.V6.vnavgb.128B
12, // llvm.hexagon.V6.vnavgh
12, // llvm.hexagon.V6.vnavgh.128B
12, // llvm.hexagon.V6.vnavgub
12, // llvm.hexagon.V6.vnavgub.128B
12, // llvm.hexagon.V6.vnavgw
12, // llvm.hexagon.V6.vnavgw.128B
12, // llvm.hexagon.V6.vnormamth
12, // llvm.hexagon.V6.vnormamth.128B
12, // llvm.hexagon.V6.vnormamtw
12, // llvm.hexagon.V6.vnormamtw.128B
12, // llvm.hexagon.V6.vnot
12, // llvm.hexagon.V6.vnot.128B
12, // llvm.hexagon.V6.vor
12, // llvm.hexagon.V6.vor.128B
12, // llvm.hexagon.V6.vpackeb
12, // llvm.hexagon.V6.vpackeb.128B
12, // llvm.hexagon.V6.vpackeh
12, // llvm.hexagon.V6.vpackeh.128B
12, // llvm.hexagon.V6.vpackhb.sat
12, // llvm.hexagon.V6.vpackhb.sat.128B
12, // llvm.hexagon.V6.vpackhub.sat
12, // llvm.hexagon.V6.vpackhub.sat.128B
12, // llvm.hexagon.V6.vpackob
12, // llvm.hexagon.V6.vpackob.128B
12, // llvm.hexagon.V6.vpackoh
12, // llvm.hexagon.V6.vpackoh.128B
12, // llvm.hexagon.V6.vpackwh.sat
12, // llvm.hexagon.V6.vpackwh.sat.128B
12, // llvm.hexagon.V6.vpackwuh.sat
12, // llvm.hexagon.V6.vpackwuh.sat.128B
12, // llvm.hexagon.V6.vpopcounth
12, // llvm.hexagon.V6.vpopcounth.128B
12, // llvm.hexagon.V6.vprefixqb
12, // llvm.hexagon.V6.vprefixqb.128B
12, // llvm.hexagon.V6.vprefixqh
12, // llvm.hexagon.V6.vprefixqh.128B
12, // llvm.hexagon.V6.vprefixqw
12, // llvm.hexagon.V6.vprefixqw.128B
12, // llvm.hexagon.V6.vrdelta
12, // llvm.hexagon.V6.vrdelta.128B
12, // llvm.hexagon.V6.vrmpybub.rtt
12, // llvm.hexagon.V6.vrmpybub.rtt.128B
12, // llvm.hexagon.V6.vrmpybub.rtt.acc
12, // llvm.hexagon.V6.vrmpybub.rtt.acc.128B
12, // llvm.hexagon.V6.vrmpybus
12, // llvm.hexagon.V6.vrmpybus.128B
12, // llvm.hexagon.V6.vrmpybus.acc
12, // llvm.hexagon.V6.vrmpybus.acc.128B
72, // llvm.hexagon.V6.vrmpybusi
72, // llvm.hexagon.V6.vrmpybusi.128B
73, // llvm.hexagon.V6.vrmpybusi.acc
73, // llvm.hexagon.V6.vrmpybusi.acc.128B
12, // llvm.hexagon.V6.vrmpybusv
12, // llvm.hexagon.V6.vrmpybusv.128B
12, // llvm.hexagon.V6.vrmpybusv.acc
12, // llvm.hexagon.V6.vrmpybusv.acc.128B
12, // llvm.hexagon.V6.vrmpybv
12, // llvm.hexagon.V6.vrmpybv.128B
12, // llvm.hexagon.V6.vrmpybv.acc
12, // llvm.hexagon.V6.vrmpybv.acc.128B
12, // llvm.hexagon.V6.vrmpyub
12, // llvm.hexagon.V6.vrmpyub.128B
12, // llvm.hexagon.V6.vrmpyub.acc
12, // llvm.hexagon.V6.vrmpyub.acc.128B
12, // llvm.hexagon.V6.vrmpyub.rtt
12, // llvm.hexagon.V6.vrmpyub.rtt.128B
12, // llvm.hexagon.V6.vrmpyub.rtt.acc
12, // llvm.hexagon.V6.vrmpyub.rtt.acc.128B
72, // llvm.hexagon.V6.vrmpyubi
72, // llvm.hexagon.V6.vrmpyubi.128B
73, // llvm.hexagon.V6.vrmpyubi.acc
73, // llvm.hexagon.V6.vrmpyubi.acc.128B
12, // llvm.hexagon.V6.vrmpyubv
12, // llvm.hexagon.V6.vrmpyubv.128B
12, // llvm.hexagon.V6.vrmpyubv.acc
12, // llvm.hexagon.V6.vrmpyubv.acc.128B
12, // llvm.hexagon.V6.vror
12, // llvm.hexagon.V6.vror.128B
12, // llvm.hexagon.V6.vrotr
12, // llvm.hexagon.V6.vrotr.128B
12, // llvm.hexagon.V6.vroundhb
12, // llvm.hexagon.V6.vroundhb.128B
12, // llvm.hexagon.V6.vroundhub
12, // llvm.hexagon.V6.vroundhub.128B
12, // llvm.hexagon.V6.vrounduhub
12, // llvm.hexagon.V6.vrounduhub.128B
12, // llvm.hexagon.V6.vrounduwuh
12, // llvm.hexagon.V6.vrounduwuh.128B
12, // llvm.hexagon.V6.vroundwh
12, // llvm.hexagon.V6.vroundwh.128B
12, // llvm.hexagon.V6.vroundwuh
12, // llvm.hexagon.V6.vroundwuh.128B
72, // llvm.hexagon.V6.vrsadubi
72, // llvm.hexagon.V6.vrsadubi.128B
73, // llvm.hexagon.V6.vrsadubi.acc
73, // llvm.hexagon.V6.vrsadubi.acc.128B
12, // llvm.hexagon.V6.vsatdw
12, // llvm.hexagon.V6.vsatdw.128B
12, // llvm.hexagon.V6.vsathub
12, // llvm.hexagon.V6.vsathub.128B
12, // llvm.hexagon.V6.vsatuwuh
12, // llvm.hexagon.V6.vsatuwuh.128B
12, // llvm.hexagon.V6.vsatwh
12, // llvm.hexagon.V6.vsatwh.128B
12, // llvm.hexagon.V6.vsb
12, // llvm.hexagon.V6.vsb.128B
71, // llvm.hexagon.V6.vscattermh
71, // llvm.hexagon.V6.vscattermh.128B
71, // llvm.hexagon.V6.vscattermh.add
71, // llvm.hexagon.V6.vscattermh.add.128B
71, // llvm.hexagon.V6.vscattermhq
71, // llvm.hexagon.V6.vscattermhq.128B
71, // llvm.hexagon.V6.vscattermhw
71, // llvm.hexagon.V6.vscattermhw.128B
71, // llvm.hexagon.V6.vscattermhw.add
71, // llvm.hexagon.V6.vscattermhw.add.128B
71, // llvm.hexagon.V6.vscattermhwq
71, // llvm.hexagon.V6.vscattermhwq.128B
71, // llvm.hexagon.V6.vscattermw
71, // llvm.hexagon.V6.vscattermw.128B
71, // llvm.hexagon.V6.vscattermw.add
71, // llvm.hexagon.V6.vscattermw.add.128B
71, // llvm.hexagon.V6.vscattermwq
71, // llvm.hexagon.V6.vscattermwq.128B
12, // llvm.hexagon.V6.vsh
12, // llvm.hexagon.V6.vsh.128B
12, // llvm.hexagon.V6.vshufeh
12, // llvm.hexagon.V6.vshufeh.128B
12, // llvm.hexagon.V6.vshuffb
12, // llvm.hexagon.V6.vshuffb.128B
12, // llvm.hexagon.V6.vshuffeb
12, // llvm.hexagon.V6.vshuffeb.128B
12, // llvm.hexagon.V6.vshuffh
12, // llvm.hexagon.V6.vshuffh.128B
12, // llvm.hexagon.V6.vshuffob
12, // llvm.hexagon.V6.vshuffob.128B
12, // llvm.hexagon.V6.vshuffvdd
12, // llvm.hexagon.V6.vshuffvdd.128B
12, // llvm.hexagon.V6.vshufoeb
12, // llvm.hexagon.V6.vshufoeb.128B
12, // llvm.hexagon.V6.vshufoeh
12, // llvm.hexagon.V6.vshufoeh.128B
12, // llvm.hexagon.V6.vshufoh
12, // llvm.hexagon.V6.vshufoh.128B
12, // llvm.hexagon.V6.vsubb
12, // llvm.hexagon.V6.vsubb.128B
12, // llvm.hexagon.V6.vsubb.dv
12, // llvm.hexagon.V6.vsubb.dv.128B
12, // llvm.hexagon.V6.vsubbnq
12, // llvm.hexagon.V6.vsubbnq.128B
12, // llvm.hexagon.V6.vsubbq
12, // llvm.hexagon.V6.vsubbq.128B
12, // llvm.hexagon.V6.vsubbsat
12, // llvm.hexagon.V6.vsubbsat.128B
12, // llvm.hexagon.V6.vsubbsat.dv
12, // llvm.hexagon.V6.vsubbsat.dv.128B
12, // llvm.hexagon.V6.vsubcarry
12, // llvm.hexagon.V6.vsubcarry.128B
12, // llvm.hexagon.V6.vsubh
12, // llvm.hexagon.V6.vsubh.128B
12, // llvm.hexagon.V6.vsubh.dv
12, // llvm.hexagon.V6.vsubh.dv.128B
12, // llvm.hexagon.V6.vsubhnq
12, // llvm.hexagon.V6.vsubhnq.128B
12, // llvm.hexagon.V6.vsubhq
12, // llvm.hexagon.V6.vsubhq.128B
12, // llvm.hexagon.V6.vsubhsat
12, // llvm.hexagon.V6.vsubhsat.128B
12, // llvm.hexagon.V6.vsubhsat.dv
12, // llvm.hexagon.V6.vsubhsat.dv.128B
12, // llvm.hexagon.V6.vsubhw
12, // llvm.hexagon.V6.vsubhw.128B
12, // llvm.hexagon.V6.vsububh
12, // llvm.hexagon.V6.vsububh.128B
12, // llvm.hexagon.V6.vsububsat
12, // llvm.hexagon.V6.vsububsat.128B
12, // llvm.hexagon.V6.vsububsat.dv
12, // llvm.hexagon.V6.vsububsat.dv.128B
12, // llvm.hexagon.V6.vsubububb.sat
12, // llvm.hexagon.V6.vsubububb.sat.128B
12, // llvm.hexagon.V6.vsubuhsat
12, // llvm.hexagon.V6.vsubuhsat.128B
12, // llvm.hexagon.V6.vsubuhsat.dv
12, // llvm.hexagon.V6.vsubuhsat.dv.128B
12, // llvm.hexagon.V6.vsubuhw
12, // llvm.hexagon.V6.vsubuhw.128B
12, // llvm.hexagon.V6.vsubuwsat
12, // llvm.hexagon.V6.vsubuwsat.128B
12, // llvm.hexagon.V6.vsubuwsat.dv
12, // llvm.hexagon.V6.vsubuwsat.dv.128B
12, // llvm.hexagon.V6.vsubw
12, // llvm.hexagon.V6.vsubw.128B
12, // llvm.hexagon.V6.vsubw.dv
12, // llvm.hexagon.V6.vsubw.dv.128B
12, // llvm.hexagon.V6.vsubwnq
12, // llvm.hexagon.V6.vsubwnq.128B
12, // llvm.hexagon.V6.vsubwq
12, // llvm.hexagon.V6.vsubwq.128B
12, // llvm.hexagon.V6.vsubwsat
12, // llvm.hexagon.V6.vsubwsat.128B
12, // llvm.hexagon.V6.vsubwsat.dv
12, // llvm.hexagon.V6.vsubwsat.dv.128B
12, // llvm.hexagon.V6.vswap
12, // llvm.hexagon.V6.vswap.128B
12, // llvm.hexagon.V6.vtmpyb
12, // llvm.hexagon.V6.vtmpyb.128B
12, // llvm.hexagon.V6.vtmpyb.acc
12, // llvm.hexagon.V6.vtmpyb.acc.128B
12, // llvm.hexagon.V6.vtmpybus
12, // llvm.hexagon.V6.vtmpybus.128B
12, // llvm.hexagon.V6.vtmpybus.acc
12, // llvm.hexagon.V6.vtmpybus.acc.128B
12, // llvm.hexagon.V6.vtmpyhb
12, // llvm.hexagon.V6.vtmpyhb.128B
12, // llvm.hexagon.V6.vtmpyhb.acc
12, // llvm.hexagon.V6.vtmpyhb.acc.128B
12, // llvm.hexagon.V6.vunpackb
12, // llvm.hexagon.V6.vunpackb.128B
12, // llvm.hexagon.V6.vunpackh
12, // llvm.hexagon.V6.vunpackh.128B
12, // llvm.hexagon.V6.vunpackob
12, // llvm.hexagon.V6.vunpackob.128B
12, // llvm.hexagon.V6.vunpackoh
12, // llvm.hexagon.V6.vunpackoh.128B
12, // llvm.hexagon.V6.vunpackub
12, // llvm.hexagon.V6.vunpackub.128B
12, // llvm.hexagon.V6.vunpackuh
12, // llvm.hexagon.V6.vunpackuh.128B
12, // llvm.hexagon.V6.vxor
12, // llvm.hexagon.V6.vxor.128B
12, // llvm.hexagon.V6.vzb
12, // llvm.hexagon.V6.vzb.128B
12, // llvm.hexagon.V6.vzh
12, // llvm.hexagon.V6.vzh.128B
7, // llvm.hexagon.Y2.dccleana
7, // llvm.hexagon.Y2.dccleaninva
7, // llvm.hexagon.Y2.dcfetch
7, // llvm.hexagon.Y2.dcinva
7, // llvm.hexagon.Y2.dczeroa
7, // llvm.hexagon.Y4.l2fetch
7, // llvm.hexagon.Y5.l2fetch
184, // llvm.hexagon.circ.ldb
184, // llvm.hexagon.circ.ldd
184, // llvm.hexagon.circ.ldh
184, // llvm.hexagon.circ.ldub
184, // llvm.hexagon.circ.lduh
184, // llvm.hexagon.circ.ldw
185, // llvm.hexagon.circ.stb
185, // llvm.hexagon.circ.std
185, // llvm.hexagon.circ.sth
185, // llvm.hexagon.circ.sthhi
185, // llvm.hexagon.circ.stw
7, // llvm.hexagon.prefetch
186, // llvm.hexagon.vmemcpy
187, // llvm.hexagon.vmemset
7, // llvm.mips.absq.s.ph
7, // llvm.mips.absq.s.qb
7, // llvm.mips.absq.s.w
12, // llvm.mips.add.a.b
12, // llvm.mips.add.a.d
12, // llvm.mips.add.a.h
12, // llvm.mips.add.a.w
12, // llvm.mips.addq.ph
12, // llvm.mips.addq.s.ph
7, // llvm.mips.addq.s.w
12, // llvm.mips.addqh.ph
12, // llvm.mips.addqh.r.ph
12, // llvm.mips.addqh.r.w
12, // llvm.mips.addqh.w
12, // llvm.mips.adds.a.b
12, // llvm.mips.adds.a.d
12, // llvm.mips.adds.a.h
12, // llvm.mips.adds.a.w
12, // llvm.mips.adds.s.b
12, // llvm.mips.adds.s.d
12, // llvm.mips.adds.s.h
12, // llvm.mips.adds.s.w
12, // llvm.mips.adds.u.b
12, // llvm.mips.adds.u.d
12, // llvm.mips.adds.u.h
12, // llvm.mips.adds.u.w
7, // llvm.mips.addsc
7, // llvm.mips.addu.ph
12, // llvm.mips.addu.qb
7, // llvm.mips.addu.s.ph
12, // llvm.mips.addu.s.qb
12, // llvm.mips.adduh.qb
12, // llvm.mips.adduh.r.qb
12, // llvm.mips.addv.b
12, // llvm.mips.addv.d
12, // llvm.mips.addv.h
12, // llvm.mips.addv.w
56, // llvm.mips.addvi.b
56, // llvm.mips.addvi.d
56, // llvm.mips.addvi.h
56, // llvm.mips.addvi.w
7, // llvm.mips.addwc
12, // llvm.mips.and.v
56, // llvm.mips.andi.b
72, // llvm.mips.append
12, // llvm.mips.asub.s.b
12, // llvm.mips.asub.s.d
12, // llvm.mips.asub.s.h
12, // llvm.mips.asub.s.w
12, // llvm.mips.asub.u.b
12, // llvm.mips.asub.u.d
12, // llvm.mips.asub.u.h
12, // llvm.mips.asub.u.w
12, // llvm.mips.ave.s.b
12, // llvm.mips.ave.s.d
12, // llvm.mips.ave.s.h
12, // llvm.mips.ave.s.w
12, // llvm.mips.ave.u.b
12, // llvm.mips.ave.u.d
12, // llvm.mips.ave.u.h
12, // llvm.mips.ave.u.w
12, // llvm.mips.aver.s.b
12, // llvm.mips.aver.s.d
12, // llvm.mips.aver.s.h
12, // llvm.mips.aver.s.w
12, // llvm.mips.aver.u.b
12, // llvm.mips.aver.u.d
12, // llvm.mips.aver.u.h
12, // llvm.mips.aver.u.w
72, // llvm.mips.balign
12, // llvm.mips.bclr.b
12, // llvm.mips.bclr.d
12, // llvm.mips.bclr.h
12, // llvm.mips.bclr.w
56, // llvm.mips.bclri.b
56, // llvm.mips.bclri.d
56, // llvm.mips.bclri.h
56, // llvm.mips.bclri.w
12, // llvm.mips.binsl.b
12, // llvm.mips.binsl.d
12, // llvm.mips.binsl.h
12, // llvm.mips.binsl.w
72, // llvm.mips.binsli.b
72, // llvm.mips.binsli.d
72, // llvm.mips.binsli.h
72, // llvm.mips.binsli.w
12, // llvm.mips.binsr.b
12, // llvm.mips.binsr.d
12, // llvm.mips.binsr.h
12, // llvm.mips.binsr.w
72, // llvm.mips.binsri.b
72, // llvm.mips.binsri.d
72, // llvm.mips.binsri.h
72, // llvm.mips.binsri.w
12, // llvm.mips.bitrev
12, // llvm.mips.bmnz.v
72, // llvm.mips.bmnzi.b
12, // llvm.mips.bmz.v
72, // llvm.mips.bmzi.b
12, // llvm.mips.bneg.b
12, // llvm.mips.bneg.d
12, // llvm.mips.bneg.h
12, // llvm.mips.bneg.w
56, // llvm.mips.bnegi.b
56, // llvm.mips.bnegi.d
56, // llvm.mips.bnegi.h
56, // llvm.mips.bnegi.w
12, // llvm.mips.bnz.b
12, // llvm.mips.bnz.d
12, // llvm.mips.bnz.h
12, // llvm.mips.bnz.v
12, // llvm.mips.bnz.w
21, // llvm.mips.bposge32
12, // llvm.mips.bsel.v
72, // llvm.mips.bseli.b
12, // llvm.mips.bset.b
12, // llvm.mips.bset.d
12, // llvm.mips.bset.h
12, // llvm.mips.bset.w
56, // llvm.mips.bseti.b
56, // llvm.mips.bseti.d
56, // llvm.mips.bseti.h
56, // llvm.mips.bseti.w
12, // llvm.mips.bz.b
12, // llvm.mips.bz.d
12, // llvm.mips.bz.h
12, // llvm.mips.bz.v
12, // llvm.mips.bz.w
12, // llvm.mips.ceq.b
12, // llvm.mips.ceq.d
12, // llvm.mips.ceq.h
12, // llvm.mips.ceq.w
56, // llvm.mips.ceqi.b
56, // llvm.mips.ceqi.d
56, // llvm.mips.ceqi.h
56, // llvm.mips.ceqi.w
84, // llvm.mips.cfcmsa
12, // llvm.mips.cle.s.b
12, // llvm.mips.cle.s.d
12, // llvm.mips.cle.s.h
12, // llvm.mips.cle.s.w
12, // llvm.mips.cle.u.b
12, // llvm.mips.cle.u.d
12, // llvm.mips.cle.u.h
12, // llvm.mips.cle.u.w
56, // llvm.mips.clei.s.b
56, // llvm.mips.clei.s.d
56, // llvm.mips.clei.s.h
56, // llvm.mips.clei.s.w
56, // llvm.mips.clei.u.b
56, // llvm.mips.clei.u.d
56, // llvm.mips.clei.u.h
56, // llvm.mips.clei.u.w
12, // llvm.mips.clt.s.b
12, // llvm.mips.clt.s.d
12, // llvm.mips.clt.s.h
12, // llvm.mips.clt.s.w
12, // llvm.mips.clt.u.b
12, // llvm.mips.clt.u.d
12, // llvm.mips.clt.u.h
12, // llvm.mips.clt.u.w
56, // llvm.mips.clti.s.b
56, // llvm.mips.clti.s.d
56, // llvm.mips.clti.s.h
56, // llvm.mips.clti.s.w
56, // llvm.mips.clti.u.b
56, // llvm.mips.clti.u.d
56, // llvm.mips.clti.u.h
56, // llvm.mips.clti.u.w
7, // llvm.mips.cmp.eq.ph
7, // llvm.mips.cmp.le.ph
7, // llvm.mips.cmp.lt.ph
7, // llvm.mips.cmpgdu.eq.qb
7, // llvm.mips.cmpgdu.le.qb
7, // llvm.mips.cmpgdu.lt.qb
7, // llvm.mips.cmpgu.eq.qb
7, // llvm.mips.cmpgu.le.qb
7, // llvm.mips.cmpgu.lt.qb
7, // llvm.mips.cmpu.eq.qb
7, // llvm.mips.cmpu.le.qb
7, // llvm.mips.cmpu.lt.qb
12, // llvm.mips.copy.s.b
12, // llvm.mips.copy.s.d
12, // llvm.mips.copy.s.h
12, // llvm.mips.copy.s.w
12, // llvm.mips.copy.u.b
12, // llvm.mips.copy.u.d
12, // llvm.mips.copy.u.h
12, // llvm.mips.copy.u.w
84, // llvm.mips.ctcmsa
12, // llvm.mips.div.s.b
12, // llvm.mips.div.s.d
12, // llvm.mips.div.s.h
12, // llvm.mips.div.s.w
12, // llvm.mips.div.u.b
12, // llvm.mips.div.u.d
12, // llvm.mips.div.u.h
12, // llvm.mips.div.u.w
12, // llvm.mips.dlsa
12, // llvm.mips.dotp.s.d
12, // llvm.mips.dotp.s.h
12, // llvm.mips.dotp.s.w
12, // llvm.mips.dotp.u.d
12, // llvm.mips.dotp.u.h
12, // llvm.mips.dotp.u.w
12, // llvm.mips.dpa.w.ph
12, // llvm.mips.dpadd.s.d
12, // llvm.mips.dpadd.s.h
12, // llvm.mips.dpadd.s.w
12, // llvm.mips.dpadd.u.d
12, // llvm.mips.dpadd.u.h
12, // llvm.mips.dpadd.u.w
7, // llvm.mips.dpaq.s.w.ph
7, // llvm.mips.dpaq.sa.l.w
7, // llvm.mips.dpaqx.s.w.ph
7, // llvm.mips.dpaqx.sa.w.ph
12, // llvm.mips.dpau.h.qbl
12, // llvm.mips.dpau.h.qbr
12, // llvm.mips.dpax.w.ph
12, // llvm.mips.dps.w.ph
7, // llvm.mips.dpsq.s.w.ph
7, // llvm.mips.dpsq.sa.l.w
7, // llvm.mips.dpsqx.s.w.ph
7, // llvm.mips.dpsqx.sa.w.ph
12, // llvm.mips.dpsu.h.qbl
12, // llvm.mips.dpsu.h.qbr
12, // llvm.mips.dpsub.s.d
12, // llvm.mips.dpsub.s.h
12, // llvm.mips.dpsub.s.w
12, // llvm.mips.dpsub.u.d
12, // llvm.mips.dpsub.u.h
12, // llvm.mips.dpsub.u.w
12, // llvm.mips.dpsx.w.ph
7, // llvm.mips.extp
7, // llvm.mips.extpdp
7, // llvm.mips.extr.r.w
7, // llvm.mips.extr.rs.w
7, // llvm.mips.extr.s.h
7, // llvm.mips.extr.w
12, // llvm.mips.fadd.d
12, // llvm.mips.fadd.w
12, // llvm.mips.fcaf.d
12, // llvm.mips.fcaf.w
12, // llvm.mips.fceq.d
12, // llvm.mips.fceq.w
12, // llvm.mips.fclass.d
12, // llvm.mips.fclass.w
12, // llvm.mips.fcle.d
12, // llvm.mips.fcle.w
12, // llvm.mips.fclt.d
12, // llvm.mips.fclt.w
12, // llvm.mips.fcne.d
12, // llvm.mips.fcne.w
12, // llvm.mips.fcor.d
12, // llvm.mips.fcor.w
12, // llvm.mips.fcueq.d
12, // llvm.mips.fcueq.w
12, // llvm.mips.fcule.d
12, // llvm.mips.fcule.w
12, // llvm.mips.fcult.d
12, // llvm.mips.fcult.w
12, // llvm.mips.fcun.d
12, // llvm.mips.fcun.w
12, // llvm.mips.fcune.d
12, // llvm.mips.fcune.w
12, // llvm.mips.fdiv.d
12, // llvm.mips.fdiv.w
12, // llvm.mips.fexdo.h
12, // llvm.mips.fexdo.w
12, // llvm.mips.fexp2.d
12, // llvm.mips.fexp2.w
12, // llvm.mips.fexupl.d
12, // llvm.mips.fexupl.w
12, // llvm.mips.fexupr.d
12, // llvm.mips.fexupr.w
12, // llvm.mips.ffint.s.d
12, // llvm.mips.ffint.s.w
12, // llvm.mips.ffint.u.d
12, // llvm.mips.ffint.u.w
12, // llvm.mips.ffql.d
12, // llvm.mips.ffql.w
12, // llvm.mips.ffqr.d
12, // llvm.mips.ffqr.w
12, // llvm.mips.fill.b
12, // llvm.mips.fill.d
12, // llvm.mips.fill.h
12, // llvm.mips.fill.w
12, // llvm.mips.flog2.d
12, // llvm.mips.flog2.w
12, // llvm.mips.fmadd.d
12, // llvm.mips.fmadd.w
12, // llvm.mips.fmax.a.d
12, // llvm.mips.fmax.a.w
12, // llvm.mips.fmax.d
12, // llvm.mips.fmax.w
12, // llvm.mips.fmin.a.d
12, // llvm.mips.fmin.a.w
12, // llvm.mips.fmin.d
12, // llvm.mips.fmin.w
12, // llvm.mips.fmsub.d
12, // llvm.mips.fmsub.w
12, // llvm.mips.fmul.d
12, // llvm.mips.fmul.w
12, // llvm.mips.frcp.d
12, // llvm.mips.frcp.w
12, // llvm.mips.frint.d
12, // llvm.mips.frint.w
12, // llvm.mips.frsqrt.d
12, // llvm.mips.frsqrt.w
12, // llvm.mips.fsaf.d
12, // llvm.mips.fsaf.w
12, // llvm.mips.fseq.d
12, // llvm.mips.fseq.w
12, // llvm.mips.fsle.d
12, // llvm.mips.fsle.w
12, // llvm.mips.fslt.d
12, // llvm.mips.fslt.w
12, // llvm.mips.fsne.d
12, // llvm.mips.fsne.w
12, // llvm.mips.fsor.d
12, // llvm.mips.fsor.w
12, // llvm.mips.fsqrt.d
12, // llvm.mips.fsqrt.w
12, // llvm.mips.fsub.d
12, // llvm.mips.fsub.w
12, // llvm.mips.fsueq.d
12, // llvm.mips.fsueq.w
12, // llvm.mips.fsule.d
12, // llvm.mips.fsule.w
12, // llvm.mips.fsult.d
12, // llvm.mips.fsult.w
12, // llvm.mips.fsun.d
12, // llvm.mips.fsun.w
12, // llvm.mips.fsune.d
12, // llvm.mips.fsune.w
12, // llvm.mips.ftint.s.d
12, // llvm.mips.ftint.s.w
12, // llvm.mips.ftint.u.d
12, // llvm.mips.ftint.u.w
12, // llvm.mips.ftq.h
12, // llvm.mips.ftq.w
12, // llvm.mips.ftrunc.s.d
12, // llvm.mips.ftrunc.s.w
12, // llvm.mips.ftrunc.u.d
12, // llvm.mips.ftrunc.u.w
12, // llvm.mips.hadd.s.d
12, // llvm.mips.hadd.s.h
12, // llvm.mips.hadd.s.w
12, // llvm.mips.hadd.u.d
12, // llvm.mips.hadd.u.h
12, // llvm.mips.hadd.u.w
12, // llvm.mips.hsub.s.d
12, // llvm.mips.hsub.s.h
12, // llvm.mips.hsub.s.w
12, // llvm.mips.hsub.u.d
12, // llvm.mips.hsub.u.h
12, // llvm.mips.hsub.u.w
12, // llvm.mips.ilvev.b
12, // llvm.mips.ilvev.d
12, // llvm.mips.ilvev.h
12, // llvm.mips.ilvev.w
12, // llvm.mips.ilvl.b
12, // llvm.mips.ilvl.d
12, // llvm.mips.ilvl.h
12, // llvm.mips.ilvl.w
12, // llvm.mips.ilvod.b
12, // llvm.mips.ilvod.d
12, // llvm.mips.ilvod.h
12, // llvm.mips.ilvod.w
12, // llvm.mips.ilvr.b
12, // llvm.mips.ilvr.d
12, // llvm.mips.ilvr.h
12, // llvm.mips.ilvr.w
12, // llvm.mips.insert.b
12, // llvm.mips.insert.d
12, // llvm.mips.insert.h
12, // llvm.mips.insert.w
21, // llvm.mips.insv
56, // llvm.mips.insve.b
56, // llvm.mips.insve.d
56, // llvm.mips.insve.h
56, // llvm.mips.insve.w
3, // llvm.mips.lbux
3, // llvm.mips.ld.b
3, // llvm.mips.ld.d
3, // llvm.mips.ld.h
3, // llvm.mips.ld.w
75, // llvm.mips.ldi.b
75, // llvm.mips.ldi.d
75, // llvm.mips.ldi.h
75, // llvm.mips.ldi.w
3, // llvm.mips.ldr.d
3, // llvm.mips.ldr.w
3, // llvm.mips.lhx
12, // llvm.mips.lsa
3, // llvm.mips.lwx
12, // llvm.mips.madd
12, // llvm.mips.madd.q.h
12, // llvm.mips.madd.q.w
12, // llvm.mips.maddr.q.h
12, // llvm.mips.maddr.q.w
12, // llvm.mips.maddu
12, // llvm.mips.maddv.b
12, // llvm.mips.maddv.d
12, // llvm.mips.maddv.h
12, // llvm.mips.maddv.w
7, // llvm.mips.maq.s.w.phl
7, // llvm.mips.maq.s.w.phr
7, // llvm.mips.maq.sa.w.phl
7, // llvm.mips.maq.sa.w.phr
12, // llvm.mips.max.a.b
12, // llvm.mips.max.a.d
12, // llvm.mips.max.a.h
12, // llvm.mips.max.a.w
12, // llvm.mips.max.s.b
12, // llvm.mips.max.s.d
12, // llvm.mips.max.s.h
12, // llvm.mips.max.s.w
12, // llvm.mips.max.u.b
12, // llvm.mips.max.u.d
12, // llvm.mips.max.u.h
12, // llvm.mips.max.u.w
56, // llvm.mips.maxi.s.b
56, // llvm.mips.maxi.s.d
56, // llvm.mips.maxi.s.h
56, // llvm.mips.maxi.s.w
56, // llvm.mips.maxi.u.b
56, // llvm.mips.maxi.u.d
56, // llvm.mips.maxi.u.h
56, // llvm.mips.maxi.u.w
12, // llvm.mips.min.a.b
12, // llvm.mips.min.a.d
12, // llvm.mips.min.a.h
12, // llvm.mips.min.a.w
12, // llvm.mips.min.s.b
12, // llvm.mips.min.s.d
12, // llvm.mips.min.s.h
12, // llvm.mips.min.s.w
12, // llvm.mips.min.u.b
12, // llvm.mips.min.u.d
12, // llvm.mips.min.u.h
12, // llvm.mips.min.u.w
56, // llvm.mips.mini.s.b
56, // llvm.mips.mini.s.d
56, // llvm.mips.mini.s.h
56, // llvm.mips.mini.s.w
56, // llvm.mips.mini.u.b
56, // llvm.mips.mini.u.d
56, // llvm.mips.mini.u.h
56, // llvm.mips.mini.u.w
12, // llvm.mips.mod.s.b
12, // llvm.mips.mod.s.d
12, // llvm.mips.mod.s.h
12, // llvm.mips.mod.s.w
12, // llvm.mips.mod.u.b
12, // llvm.mips.mod.u.d
12, // llvm.mips.mod.u.h
12, // llvm.mips.mod.u.w
12, // llvm.mips.modsub
12, // llvm.mips.move.v
12, // llvm.mips.msub
12, // llvm.mips.msub.q.h
12, // llvm.mips.msub.q.w
12, // llvm.mips.msubr.q.h
12, // llvm.mips.msubr.q.w
12, // llvm.mips.msubu
12, // llvm.mips.msubv.b
12, // llvm.mips.msubv.d
12, // llvm.mips.msubv.h
12, // llvm.mips.msubv.w
7, // llvm.mips.mthlip
7, // llvm.mips.mul.ph
12, // llvm.mips.mul.q.h
12, // llvm.mips.mul.q.w
7, // llvm.mips.mul.s.ph
7, // llvm.mips.muleq.s.w.phl
7, // llvm.mips.muleq.s.w.phr
7, // llvm.mips.muleu.s.ph.qbl
7, // llvm.mips.muleu.s.ph.qbr
7, // llvm.mips.mulq.rs.ph
7, // llvm.mips.mulq.rs.w
7, // llvm.mips.mulq.s.ph
7, // llvm.mips.mulq.s.w
12, // llvm.mips.mulr.q.h
12, // llvm.mips.mulr.q.w
12, // llvm.mips.mulsa.w.ph
7, // llvm.mips.mulsaq.s.w.ph
12, // llvm.mips.mult
12, // llvm.mips.multu
12, // llvm.mips.mulv.b
12, // llvm.mips.mulv.d
12, // llvm.mips.mulv.h
12, // llvm.mips.mulv.w
12, // llvm.mips.nloc.b
12, // llvm.mips.nloc.d
12, // llvm.mips.nloc.h
12, // llvm.mips.nloc.w
12, // llvm.mips.nlzc.b
12, // llvm.mips.nlzc.d
12, // llvm.mips.nlzc.h
12, // llvm.mips.nlzc.w
12, // llvm.mips.nor.v
56, // llvm.mips.nori.b
12, // llvm.mips.or.v
56, // llvm.mips.ori.b
12, // llvm.mips.packrl.ph
12, // llvm.mips.pckev.b
12, // llvm.mips.pckev.d
12, // llvm.mips.pckev.h
12, // llvm.mips.pckev.w
12, // llvm.mips.pckod.b
12, // llvm.mips.pckod.d
12, // llvm.mips.pckod.h
12, // llvm.mips.pckod.w
12, // llvm.mips.pcnt.b
12, // llvm.mips.pcnt.d
12, // llvm.mips.pcnt.h
12, // llvm.mips.pcnt.w
21, // llvm.mips.pick.ph
21, // llvm.mips.pick.qb
12, // llvm.mips.preceq.w.phl
12, // llvm.mips.preceq.w.phr
12, // llvm.mips.precequ.ph.qbl
12, // llvm.mips.precequ.ph.qbla
12, // llvm.mips.precequ.ph.qbr
12, // llvm.mips.precequ.ph.qbra
12, // llvm.mips.preceu.ph.qbl
12, // llvm.mips.preceu.ph.qbla
12, // llvm.mips.preceu.ph.qbr
12, // llvm.mips.preceu.ph.qbra
7, // llvm.mips.precr.qb.ph
72, // llvm.mips.precr.sra.ph.w
72, // llvm.mips.precr.sra.r.ph.w
12, // llvm.mips.precrq.ph.w
12, // llvm.mips.precrq.qb.ph
7, // llvm.mips.precrq.rs.ph.w
7, // llvm.mips.precrqu.s.qb.ph
72, // llvm.mips.prepend
12, // llvm.mips.raddu.w.qb
188, // llvm.mips.rddsp
12, // llvm.mips.repl.ph
12, // llvm.mips.repl.qb
56, // llvm.mips.sat.s.b
56, // llvm.mips.sat.s.d
56, // llvm.mips.sat.s.h
56, // llvm.mips.sat.s.w
56, // llvm.mips.sat.u.b
56, // llvm.mips.sat.u.d
56, // llvm.mips.sat.u.h
56, // llvm.mips.sat.u.w
56, // llvm.mips.shf.b
56, // llvm.mips.shf.h
56, // llvm.mips.shf.w
12, // llvm.mips.shilo
7, // llvm.mips.shll.ph
7, // llvm.mips.shll.qb
7, // llvm.mips.shll.s.ph
7, // llvm.mips.shll.s.w
12, // llvm.mips.shra.ph
12, // llvm.mips.shra.qb
12, // llvm.mips.shra.r.ph
12, // llvm.mips.shra.r.qb
12, // llvm.mips.shra.r.w
12, // llvm.mips.shrl.ph
12, // llvm.mips.shrl.qb
12, // llvm.mips.sld.b
12, // llvm.mips.sld.d
12, // llvm.mips.sld.h
12, // llvm.mips.sld.w
72, // llvm.mips.sldi.b
72, // llvm.mips.sldi.d
72, // llvm.mips.sldi.h
72, // llvm.mips.sldi.w
12, // llvm.mips.sll.b
12, // llvm.mips.sll.d
12, // llvm.mips.sll.h
12, // llvm.mips.sll.w
56, // llvm.mips.slli.b
56, // llvm.mips.slli.d
56, // llvm.mips.slli.h
56, // llvm.mips.slli.w
12, // llvm.mips.splat.b
12, // llvm.mips.splat.d
12, // llvm.mips.splat.h
12, // llvm.mips.splat.w
56, // llvm.mips.splati.b
56, // llvm.mips.splati.d
56, // llvm.mips.splati.h
56, // llvm.mips.splati.w
12, // llvm.mips.sra.b
12, // llvm.mips.sra.d
12, // llvm.mips.sra.h
12, // llvm.mips.sra.w
56, // llvm.mips.srai.b
56, // llvm.mips.srai.d
56, // llvm.mips.srai.h
56, // llvm.mips.srai.w
12, // llvm.mips.srar.b
12, // llvm.mips.srar.d
12, // llvm.mips.srar.h
12, // llvm.mips.srar.w
56, // llvm.mips.srari.b
56, // llvm.mips.srari.d
56, // llvm.mips.srari.h
56, // llvm.mips.srari.w
12, // llvm.mips.srl.b
12, // llvm.mips.srl.d
12, // llvm.mips.srl.h
12, // llvm.mips.srl.w
56, // llvm.mips.srli.b
56, // llvm.mips.srli.d
56, // llvm.mips.srli.h
56, // llvm.mips.srli.w
12, // llvm.mips.srlr.b
12, // llvm.mips.srlr.d
12, // llvm.mips.srlr.h
12, // llvm.mips.srlr.w
56, // llvm.mips.srlri.b
56, // llvm.mips.srlri.d
56, // llvm.mips.srlri.h
56, // llvm.mips.srlri.w
179, // llvm.mips.st.b
179, // llvm.mips.st.d
179, // llvm.mips.st.h
179, // llvm.mips.st.w
179, // llvm.mips.str.d
179, // llvm.mips.str.w
12, // llvm.mips.subq.ph
12, // llvm.mips.subq.s.ph
7, // llvm.mips.subq.s.w
12, // llvm.mips.subqh.ph
12, // llvm.mips.subqh.r.ph
12, // llvm.mips.subqh.r.w
12, // llvm.mips.subqh.w
12, // llvm.mips.subs.s.b
12, // llvm.mips.subs.s.d
12, // llvm.mips.subs.s.h
12, // llvm.mips.subs.s.w
12, // llvm.mips.subs.u.b
12, // llvm.mips.subs.u.d
12, // llvm.mips.subs.u.h
12, // llvm.mips.subs.u.w
12, // llvm.mips.subsus.u.b
12, // llvm.mips.subsus.u.d
12, // llvm.mips.subsus.u.h
12, // llvm.mips.subsus.u.w
12, // llvm.mips.subsuu.s.b
12, // llvm.mips.subsuu.s.d
12, // llvm.mips.subsuu.s.h
12, // llvm.mips.subsuu.s.w
7, // llvm.mips.subu.ph
12, // llvm.mips.subu.qb
7, // llvm.mips.subu.s.ph
12, // llvm.mips.subu.s.qb
12, // llvm.mips.subuh.qb
12, // llvm.mips.subuh.r.qb
12, // llvm.mips.subv.b
12, // llvm.mips.subv.d
12, // llvm.mips.subv.h
12, // llvm.mips.subv.w
56, // llvm.mips.subvi.b
56, // llvm.mips.subvi.d
56, // llvm.mips.subvi.h
56, // llvm.mips.subvi.w
12, // llvm.mips.vshf.b
12, // llvm.mips.vshf.d
12, // llvm.mips.vshf.h
12, // llvm.mips.vshf.w
189, // llvm.mips.wrdsp
12, // llvm.mips.xor.v
56, // llvm.mips.xori.b
12, // llvm.nvvm.add.rm.d
12, // llvm.nvvm.add.rm.f
12, // llvm.nvvm.add.rm.ftz.f
12, // llvm.nvvm.add.rn.d
12, // llvm.nvvm.add.rn.f
12, // llvm.nvvm.add.rn.ftz.f
12, // llvm.nvvm.add.rp.d
12, // llvm.nvvm.add.rp.f
12, // llvm.nvvm.add.rp.ftz.f
12, // llvm.nvvm.add.rz.d
12, // llvm.nvvm.add.rz.f
12, // llvm.nvvm.add.rz.ftz.f
30, // llvm.nvvm.atomic.add.gen.f.cta
30, // llvm.nvvm.atomic.add.gen.f.sys
30, // llvm.nvvm.atomic.add.gen.i.cta
30, // llvm.nvvm.atomic.add.gen.i.sys
30, // llvm.nvvm.atomic.and.gen.i.cta
30, // llvm.nvvm.atomic.and.gen.i.sys
30, // llvm.nvvm.atomic.cas.gen.i.cta
30, // llvm.nvvm.atomic.cas.gen.i.sys
30, // llvm.nvvm.atomic.dec.gen.i.cta
30, // llvm.nvvm.atomic.dec.gen.i.sys
30, // llvm.nvvm.atomic.exch.gen.i.cta
30, // llvm.nvvm.atomic.exch.gen.i.sys
30, // llvm.nvvm.atomic.inc.gen.i.cta
30, // llvm.nvvm.atomic.inc.gen.i.sys
30, // llvm.nvvm.atomic.load.dec.32
30, // llvm.nvvm.atomic.load.inc.32
30, // llvm.nvvm.atomic.max.gen.i.cta
30, // llvm.nvvm.atomic.max.gen.i.sys
30, // llvm.nvvm.atomic.min.gen.i.cta
30, // llvm.nvvm.atomic.min.gen.i.sys
30, // llvm.nvvm.atomic.or.gen.i.cta
30, // llvm.nvvm.atomic.or.gen.i.sys
30, // llvm.nvvm.atomic.xor.gen.i.cta
30, // llvm.nvvm.atomic.xor.gen.i.sys
165, // llvm.nvvm.bar.sync
165, // llvm.nvvm.bar.warp.sync
165, // llvm.nvvm.barrier
165, // llvm.nvvm.barrier.n
165, // llvm.nvvm.barrier.sync
165, // llvm.nvvm.barrier.sync.cnt
165, // llvm.nvvm.barrier0
165, // llvm.nvvm.barrier0.and
165, // llvm.nvvm.barrier0.or
165, // llvm.nvvm.barrier0.popc
12, // llvm.nvvm.bitcast.d2ll
12, // llvm.nvvm.bitcast.f2i
12, // llvm.nvvm.bitcast.i2f
12, // llvm.nvvm.bitcast.ll2d
12, // llvm.nvvm.ceil.d
12, // llvm.nvvm.ceil.f
12, // llvm.nvvm.ceil.ftz.f
7, // llvm.nvvm.compiler.error
7, // llvm.nvvm.compiler.warn
12, // llvm.nvvm.cos.approx.f
12, // llvm.nvvm.cos.approx.ftz.f
12, // llvm.nvvm.d2f.rm
12, // llvm.nvvm.d2f.rm.ftz
12, // llvm.nvvm.d2f.rn
12, // llvm.nvvm.d2f.rn.ftz
12, // llvm.nvvm.d2f.rp
12, // llvm.nvvm.d2f.rp.ftz
12, // llvm.nvvm.d2f.rz
12, // llvm.nvvm.d2f.rz.ftz
12, // llvm.nvvm.d2i.hi
12, // llvm.nvvm.d2i.lo
12, // llvm.nvvm.d2i.rm
12, // llvm.nvvm.d2i.rn
12, // llvm.nvvm.d2i.rp
12, // llvm.nvvm.d2i.rz
12, // llvm.nvvm.d2ll.rm
12, // llvm.nvvm.d2ll.rn
12, // llvm.nvvm.d2ll.rp
12, // llvm.nvvm.d2ll.rz
12, // llvm.nvvm.d2ui.rm
12, // llvm.nvvm.d2ui.rn
12, // llvm.nvvm.d2ui.rp
12, // llvm.nvvm.d2ui.rz
12, // llvm.nvvm.d2ull.rm
12, // llvm.nvvm.d2ull.rn
12, // llvm.nvvm.d2ull.rp
12, // llvm.nvvm.d2ull.rz
12, // llvm.nvvm.div.approx.f
12, // llvm.nvvm.div.approx.ftz.f
12, // llvm.nvvm.div.rm.d
12, // llvm.nvvm.div.rm.f
12, // llvm.nvvm.div.rm.ftz.f
12, // llvm.nvvm.div.rn.d
12, // llvm.nvvm.div.rn.f
12, // llvm.nvvm.div.rn.ftz.f
12, // llvm.nvvm.div.rp.d
12, // llvm.nvvm.div.rp.f
12, // llvm.nvvm.div.rp.ftz.f
12, // llvm.nvvm.div.rz.d
12, // llvm.nvvm.div.rz.f
12, // llvm.nvvm.div.rz.ftz.f
12, // llvm.nvvm.ex2.approx.d
12, // llvm.nvvm.ex2.approx.f
12, // llvm.nvvm.ex2.approx.ftz.f
12, // llvm.nvvm.f2h.rn
12, // llvm.nvvm.f2h.rn.ftz
12, // llvm.nvvm.f2i.rm
12, // llvm.nvvm.f2i.rm.ftz
12, // llvm.nvvm.f2i.rn
12, // llvm.nvvm.f2i.rn.ftz
12, // llvm.nvvm.f2i.rp
12, // llvm.nvvm.f2i.rp.ftz
12, // llvm.nvvm.f2i.rz
12, // llvm.nvvm.f2i.rz.ftz
12, // llvm.nvvm.f2ll.rm
12, // llvm.nvvm.f2ll.rm.ftz
12, // llvm.nvvm.f2ll.rn
12, // llvm.nvvm.f2ll.rn.ftz
12, // llvm.nvvm.f2ll.rp
12, // llvm.nvvm.f2ll.rp.ftz
12, // llvm.nvvm.f2ll.rz
12, // llvm.nvvm.f2ll.rz.ftz
12, // llvm.nvvm.f2ui.rm
12, // llvm.nvvm.f2ui.rm.ftz
12, // llvm.nvvm.f2ui.rn
12, // llvm.nvvm.f2ui.rn.ftz
12, // llvm.nvvm.f2ui.rp
12, // llvm.nvvm.f2ui.rp.ftz
12, // llvm.nvvm.f2ui.rz
12, // llvm.nvvm.f2ui.rz.ftz
12, // llvm.nvvm.f2ull.rm
12, // llvm.nvvm.f2ull.rm.ftz
12, // llvm.nvvm.f2ull.rn
12, // llvm.nvvm.f2ull.rn.ftz
12, // llvm.nvvm.f2ull.rp
12, // llvm.nvvm.f2ull.rp.ftz
12, // llvm.nvvm.f2ull.rz
12, // llvm.nvvm.f2ull.rz.ftz
12, // llvm.nvvm.fabs.d
12, // llvm.nvvm.fabs.f
12, // llvm.nvvm.fabs.ftz.f
12, // llvm.nvvm.floor.d
12, // llvm.nvvm.floor.f
12, // llvm.nvvm.floor.ftz.f
12, // llvm.nvvm.fma.rm.d
12, // llvm.nvvm.fma.rm.f
12, // llvm.nvvm.fma.rm.ftz.f
12, // llvm.nvvm.fma.rn.d
12, // llvm.nvvm.fma.rn.f
12, // llvm.nvvm.fma.rn.ftz.f
12, // llvm.nvvm.fma.rp.d
12, // llvm.nvvm.fma.rp.f
12, // llvm.nvvm.fma.rp.ftz.f
12, // llvm.nvvm.fma.rz.d
12, // llvm.nvvm.fma.rz.f
12, // llvm.nvvm.fma.rz.ftz.f
12, // llvm.nvvm.fmax.d
12, // llvm.nvvm.fmax.f
12, // llvm.nvvm.fmax.ftz.f
12, // llvm.nvvm.fmin.d
12, // llvm.nvvm.fmin.f
12, // llvm.nvvm.fmin.ftz.f
12, // llvm.nvvm.fns
12, // llvm.nvvm.i2d.rm
12, // llvm.nvvm.i2d.rn
12, // llvm.nvvm.i2d.rp
12, // llvm.nvvm.i2d.rz
12, // llvm.nvvm.i2f.rm
12, // llvm.nvvm.i2f.rn
12, // llvm.nvvm.i2f.rp
12, // llvm.nvvm.i2f.rz
12, // llvm.nvvm.isspacep.const
12, // llvm.nvvm.isspacep.global
12, // llvm.nvvm.isspacep.local
12, // llvm.nvvm.isspacep.shared
12, // llvm.nvvm.istypep.sampler
12, // llvm.nvvm.istypep.surface
12, // llvm.nvvm.istypep.texture
190, // llvm.nvvm.ldg.global.f
190, // llvm.nvvm.ldg.global.i
190, // llvm.nvvm.ldg.global.p
190, // llvm.nvvm.ldu.global.f
190, // llvm.nvvm.ldu.global.i
190, // llvm.nvvm.ldu.global.p
12, // llvm.nvvm.lg2.approx.d
12, // llvm.nvvm.lg2.approx.f
12, // llvm.nvvm.lg2.approx.ftz.f
12, // llvm.nvvm.ll2d.rm
12, // llvm.nvvm.ll2d.rn
12, // llvm.nvvm.ll2d.rp
12, // llvm.nvvm.ll2d.rz
12, // llvm.nvvm.ll2f.rm
12, // llvm.nvvm.ll2f.rn
12, // llvm.nvvm.ll2f.rp
12, // llvm.nvvm.ll2f.rz
12, // llvm.nvvm.lohi.i2d
191, // llvm.nvvm.match.all.sync.i32p
191, // llvm.nvvm.match.all.sync.i64p
191, // llvm.nvvm.match.any.sync.i32
191, // llvm.nvvm.match.any.sync.i64
7, // llvm.nvvm.membar.cta
7, // llvm.nvvm.membar.gl
7, // llvm.nvvm.membar.sys
12, // llvm.nvvm.mma.m8n8k4.col.col.f16.f16
12, // llvm.nvvm.mma.m8n8k4.col.col.f32.f16
12, // llvm.nvvm.mma.m8n8k4.col.col.f32.f32
12, // llvm.nvvm.mma.m8n8k4.col.row.f16.f16
12, // llvm.nvvm.mma.m8n8k4.col.row.f32.f16
12, // llvm.nvvm.mma.m8n8k4.col.row.f32.f32
12, // llvm.nvvm.mma.m8n8k4.row.col.f16.f16
12, // llvm.nvvm.mma.m8n8k4.row.col.f32.f16
12, // llvm.nvvm.mma.m8n8k4.row.col.f32.f32
12, // llvm.nvvm.mma.m8n8k4.row.row.f16.f16
12, // llvm.nvvm.mma.m8n8k4.row.row.f32.f16
12, // llvm.nvvm.mma.m8n8k4.row.row.f32.f32
12, // llvm.nvvm.move.double
12, // llvm.nvvm.move.float
12, // llvm.nvvm.move.i16
12, // llvm.nvvm.move.i32
12, // llvm.nvvm.move.i64
16, // llvm.nvvm.move.ptr
12, // llvm.nvvm.mul.rm.d
12, // llvm.nvvm.mul.rm.f
12, // llvm.nvvm.mul.rm.ftz.f
12, // llvm.nvvm.mul.rn.d
12, // llvm.nvvm.mul.rn.f
12, // llvm.nvvm.mul.rn.ftz.f
12, // llvm.nvvm.mul.rp.d
12, // llvm.nvvm.mul.rp.f
12, // llvm.nvvm.mul.rp.ftz.f
12, // llvm.nvvm.mul.rz.d
12, // llvm.nvvm.mul.rz.f
12, // llvm.nvvm.mul.rz.ftz.f
12, // llvm.nvvm.mul24.i
12, // llvm.nvvm.mul24.ui
12, // llvm.nvvm.mulhi.i
12, // llvm.nvvm.mulhi.ll
12, // llvm.nvvm.mulhi.ui
12, // llvm.nvvm.mulhi.ull
12, // llvm.nvvm.prmt
12, // llvm.nvvm.ptr.constant.to.gen
12, // llvm.nvvm.ptr.gen.to.constant
12, // llvm.nvvm.ptr.gen.to.global
12, // llvm.nvvm.ptr.gen.to.local
12, // llvm.nvvm.ptr.gen.to.param
12, // llvm.nvvm.ptr.gen.to.shared
12, // llvm.nvvm.ptr.global.to.gen
12, // llvm.nvvm.ptr.local.to.gen
12, // llvm.nvvm.ptr.shared.to.gen
12, // llvm.nvvm.rcp.approx.ftz.d
12, // llvm.nvvm.rcp.rm.d
12, // llvm.nvvm.rcp.rm.f
12, // llvm.nvvm.rcp.rm.ftz.f
12, // llvm.nvvm.rcp.rn.d
12, // llvm.nvvm.rcp.rn.f
12, // llvm.nvvm.rcp.rn.ftz.f
12, // llvm.nvvm.rcp.rp.d
12, // llvm.nvvm.rcp.rp.f
12, // llvm.nvvm.rcp.rp.ftz.f
12, // llvm.nvvm.rcp.rz.d
12, // llvm.nvvm.rcp.rz.f
12, // llvm.nvvm.rcp.rz.ftz.f
192, // llvm.nvvm.read.ptx.sreg.clock
192, // llvm.nvvm.read.ptx.sreg.clock64
12, // llvm.nvvm.read.ptx.sreg.ctaid.w
12, // llvm.nvvm.read.ptx.sreg.ctaid.x
12, // llvm.nvvm.read.ptx.sreg.ctaid.y
12, // llvm.nvvm.read.ptx.sreg.ctaid.z
12, // llvm.nvvm.read.ptx.sreg.envreg0
12, // llvm.nvvm.read.ptx.sreg.envreg1
12, // llvm.nvvm.read.ptx.sreg.envreg10
12, // llvm.nvvm.read.ptx.sreg.envreg11
12, // llvm.nvvm.read.ptx.sreg.envreg12
12, // llvm.nvvm.read.ptx.sreg.envreg13
12, // llvm.nvvm.read.ptx.sreg.envreg14
12, // llvm.nvvm.read.ptx.sreg.envreg15
12, // llvm.nvvm.read.ptx.sreg.envreg16
12, // llvm.nvvm.read.ptx.sreg.envreg17
12, // llvm.nvvm.read.ptx.sreg.envreg18
12, // llvm.nvvm.read.ptx.sreg.envreg19
12, // llvm.nvvm.read.ptx.sreg.envreg2
12, // llvm.nvvm.read.ptx.sreg.envreg20
12, // llvm.nvvm.read.ptx.sreg.envreg21
12, // llvm.nvvm.read.ptx.sreg.envreg22
12, // llvm.nvvm.read.ptx.sreg.envreg23
12, // llvm.nvvm.read.ptx.sreg.envreg24
12, // llvm.nvvm.read.ptx.sreg.envreg25
12, // llvm.nvvm.read.ptx.sreg.envreg26
12, // llvm.nvvm.read.ptx.sreg.envreg27
12, // llvm.nvvm.read.ptx.sreg.envreg28
12, // llvm.nvvm.read.ptx.sreg.envreg29
12, // llvm.nvvm.read.ptx.sreg.envreg3
12, // llvm.nvvm.read.ptx.sreg.envreg30
12, // llvm.nvvm.read.ptx.sreg.envreg31
12, // llvm.nvvm.read.ptx.sreg.envreg4
12, // llvm.nvvm.read.ptx.sreg.envreg5
12, // llvm.nvvm.read.ptx.sreg.envreg6
12, // llvm.nvvm.read.ptx.sreg.envreg7
12, // llvm.nvvm.read.ptx.sreg.envreg8
12, // llvm.nvvm.read.ptx.sreg.envreg9
12, // llvm.nvvm.read.ptx.sreg.gridid
12, // llvm.nvvm.read.ptx.sreg.laneid
12, // llvm.nvvm.read.ptx.sreg.lanemask.eq
12, // llvm.nvvm.read.ptx.sreg.lanemask.ge
12, // llvm.nvvm.read.ptx.sreg.lanemask.gt
12, // llvm.nvvm.read.ptx.sreg.lanemask.le
12, // llvm.nvvm.read.ptx.sreg.lanemask.lt
12, // llvm.nvvm.read.ptx.sreg.nctaid.w
12, // llvm.nvvm.read.ptx.sreg.nctaid.x
12, // llvm.nvvm.read.ptx.sreg.nctaid.y
12, // llvm.nvvm.read.ptx.sreg.nctaid.z
12, // llvm.nvvm.read.ptx.sreg.nsmid
12, // llvm.nvvm.read.ptx.sreg.ntid.w
12, // llvm.nvvm.read.ptx.sreg.ntid.x
12, // llvm.nvvm.read.ptx.sreg.ntid.y
12, // llvm.nvvm.read.ptx.sreg.ntid.z
12, // llvm.nvvm.read.ptx.sreg.nwarpid
192, // llvm.nvvm.read.ptx.sreg.pm0
192, // llvm.nvvm.read.ptx.sreg.pm1
192, // llvm.nvvm.read.ptx.sreg.pm2
192, // llvm.nvvm.read.ptx.sreg.pm3
12, // llvm.nvvm.read.ptx.sreg.smid
12, // llvm.nvvm.read.ptx.sreg.tid.w
12, // llvm.nvvm.read.ptx.sreg.tid.x
12, // llvm.nvvm.read.ptx.sreg.tid.y
12, // llvm.nvvm.read.ptx.sreg.tid.z
12, // llvm.nvvm.read.ptx.sreg.warpid
12, // llvm.nvvm.read.ptx.sreg.warpsize
12, // llvm.nvvm.reflect
12, // llvm.nvvm.rotate.b32
12, // llvm.nvvm.rotate.b64
12, // llvm.nvvm.rotate.right.b64
12, // llvm.nvvm.round.d
12, // llvm.nvvm.round.f
12, // llvm.nvvm.round.ftz.f
12, // llvm.nvvm.rsqrt.approx.d
12, // llvm.nvvm.rsqrt.approx.f
12, // llvm.nvvm.rsqrt.approx.ftz.f
12, // llvm.nvvm.sad.i
12, // llvm.nvvm.sad.ui
12, // llvm.nvvm.saturate.d
12, // llvm.nvvm.saturate.f
12, // llvm.nvvm.saturate.ftz.f
191, // llvm.nvvm.shfl.bfly.f32
191, // llvm.nvvm.shfl.bfly.f32p
191, // llvm.nvvm.shfl.bfly.i32
191, // llvm.nvvm.shfl.bfly.i32p
191, // llvm.nvvm.shfl.down.f32
191, // llvm.nvvm.shfl.down.f32p
191, // llvm.nvvm.shfl.down.i32
191, // llvm.nvvm.shfl.down.i32p
191, // llvm.nvvm.shfl.idx.f32
191, // llvm.nvvm.shfl.idx.f32p
191, // llvm.nvvm.shfl.idx.i32
191, // llvm.nvvm.shfl.idx.i32p
191, // llvm.nvvm.shfl.sync.bfly.f32
191, // llvm.nvvm.shfl.sync.bfly.f32p
191, // llvm.nvvm.shfl.sync.bfly.i32
191, // llvm.nvvm.shfl.sync.bfly.i32p
191, // llvm.nvvm.shfl.sync.down.f32
191, // llvm.nvvm.shfl.sync.down.f32p
191, // llvm.nvvm.shfl.sync.down.i32
191, // llvm.nvvm.shfl.sync.down.i32p
191, // llvm.nvvm.shfl.sync.idx.f32
191, // llvm.nvvm.shfl.sync.idx.f32p
191, // llvm.nvvm.shfl.sync.idx.i32
191, // llvm.nvvm.shfl.sync.idx.i32p
191, // llvm.nvvm.shfl.sync.up.f32
191, // llvm.nvvm.shfl.sync.up.f32p
191, // llvm.nvvm.shfl.sync.up.i32
191, // llvm.nvvm.shfl.sync.up.i32p
191, // llvm.nvvm.shfl.up.f32
191, // llvm.nvvm.shfl.up.f32p
191, // llvm.nvvm.shfl.up.i32
191, // llvm.nvvm.shfl.up.i32p
12, // llvm.nvvm.sin.approx.f
12, // llvm.nvvm.sin.approx.ftz.f
12, // llvm.nvvm.sqrt.approx.f
12, // llvm.nvvm.sqrt.approx.ftz.f
12, // llvm.nvvm.sqrt.f
12, // llvm.nvvm.sqrt.rm.d
12, // llvm.nvvm.sqrt.rm.f
12, // llvm.nvvm.sqrt.rm.ftz.f
12, // llvm.nvvm.sqrt.rn.d
12, // llvm.nvvm.sqrt.rn.f
12, // llvm.nvvm.sqrt.rn.ftz.f
12, // llvm.nvvm.sqrt.rp.d
12, // llvm.nvvm.sqrt.rp.f
12, // llvm.nvvm.sqrt.rp.ftz.f
12, // llvm.nvvm.sqrt.rz.d
12, // llvm.nvvm.sqrt.rz.f
12, // llvm.nvvm.sqrt.rz.ftz.f
7, // llvm.nvvm.suld.1d.array.i16.clamp
7, // llvm.nvvm.suld.1d.array.i16.trap
7, // llvm.nvvm.suld.1d.array.i16.zero
7, // llvm.nvvm.suld.1d.array.i32.clamp
7, // llvm.nvvm.suld.1d.array.i32.trap
7, // llvm.nvvm.suld.1d.array.i32.zero
7, // llvm.nvvm.suld.1d.array.i64.clamp
7, // llvm.nvvm.suld.1d.array.i64.trap
7, // llvm.nvvm.suld.1d.array.i64.zero
7, // llvm.nvvm.suld.1d.array.i8.clamp
7, // llvm.nvvm.suld.1d.array.i8.trap
7, // llvm.nvvm.suld.1d.array.i8.zero
7, // llvm.nvvm.suld.1d.array.v2i16.clamp
7, // llvm.nvvm.suld.1d.array.v2i16.trap
7, // llvm.nvvm.suld.1d.array.v2i16.zero
7, // llvm.nvvm.suld.1d.array.v2i32.clamp
7, // llvm.nvvm.suld.1d.array.v2i32.trap
7, // llvm.nvvm.suld.1d.array.v2i32.zero
7, // llvm.nvvm.suld.1d.array.v2i64.clamp
7, // llvm.nvvm.suld.1d.array.v2i64.trap
7, // llvm.nvvm.suld.1d.array.v2i64.zero
7, // llvm.nvvm.suld.1d.array.v2i8.clamp
7, // llvm.nvvm.suld.1d.array.v2i8.trap
7, // llvm.nvvm.suld.1d.array.v2i8.zero
7, // llvm.nvvm.suld.1d.array.v4i16.clamp
7, // llvm.nvvm.suld.1d.array.v4i16.trap
7, // llvm.nvvm.suld.1d.array.v4i16.zero
7, // llvm.nvvm.suld.1d.array.v4i32.clamp
7, // llvm.nvvm.suld.1d.array.v4i32.trap
7, // llvm.nvvm.suld.1d.array.v4i32.zero
7, // llvm.nvvm.suld.1d.array.v4i8.clamp
7, // llvm.nvvm.suld.1d.array.v4i8.trap
7, // llvm.nvvm.suld.1d.array.v4i8.zero
7, // llvm.nvvm.suld.1d.i16.clamp
7, // llvm.nvvm.suld.1d.i16.trap
7, // llvm.nvvm.suld.1d.i16.zero
7, // llvm.nvvm.suld.1d.i32.clamp
7, // llvm.nvvm.suld.1d.i32.trap
7, // llvm.nvvm.suld.1d.i32.zero
7, // llvm.nvvm.suld.1d.i64.clamp
7, // llvm.nvvm.suld.1d.i64.trap
7, // llvm.nvvm.suld.1d.i64.zero
7, // llvm.nvvm.suld.1d.i8.clamp
7, // llvm.nvvm.suld.1d.i8.trap
7, // llvm.nvvm.suld.1d.i8.zero
7, // llvm.nvvm.suld.1d.v2i16.clamp
7, // llvm.nvvm.suld.1d.v2i16.trap
7, // llvm.nvvm.suld.1d.v2i16.zero
7, // llvm.nvvm.suld.1d.v2i32.clamp
7, // llvm.nvvm.suld.1d.v2i32.trap
7, // llvm.nvvm.suld.1d.v2i32.zero
7, // llvm.nvvm.suld.1d.v2i64.clamp
7, // llvm.nvvm.suld.1d.v2i64.trap
7, // llvm.nvvm.suld.1d.v2i64.zero
7, // llvm.nvvm.suld.1d.v2i8.clamp
7, // llvm.nvvm.suld.1d.v2i8.trap
7, // llvm.nvvm.suld.1d.v2i8.zero
7, // llvm.nvvm.suld.1d.v4i16.clamp
7, // llvm.nvvm.suld.1d.v4i16.trap
7, // llvm.nvvm.suld.1d.v4i16.zero
7, // llvm.nvvm.suld.1d.v4i32.clamp
7, // llvm.nvvm.suld.1d.v4i32.trap
7, // llvm.nvvm.suld.1d.v4i32.zero
7, // llvm.nvvm.suld.1d.v4i8.clamp
7, // llvm.nvvm.suld.1d.v4i8.trap
7, // llvm.nvvm.suld.1d.v4i8.zero
7, // llvm.nvvm.suld.2d.array.i16.clamp
7, // llvm.nvvm.suld.2d.array.i16.trap
7, // llvm.nvvm.suld.2d.array.i16.zero
7, // llvm.nvvm.suld.2d.array.i32.clamp
7, // llvm.nvvm.suld.2d.array.i32.trap
7, // llvm.nvvm.suld.2d.array.i32.zero
7, // llvm.nvvm.suld.2d.array.i64.clamp
7, // llvm.nvvm.suld.2d.array.i64.trap
7, // llvm.nvvm.suld.2d.array.i64.zero
7, // llvm.nvvm.suld.2d.array.i8.clamp
7, // llvm.nvvm.suld.2d.array.i8.trap
7, // llvm.nvvm.suld.2d.array.i8.zero
7, // llvm.nvvm.suld.2d.array.v2i16.clamp
7, // llvm.nvvm.suld.2d.array.v2i16.trap
7, // llvm.nvvm.suld.2d.array.v2i16.zero
7, // llvm.nvvm.suld.2d.array.v2i32.clamp
7, // llvm.nvvm.suld.2d.array.v2i32.trap
7, // llvm.nvvm.suld.2d.array.v2i32.zero
7, // llvm.nvvm.suld.2d.array.v2i64.clamp
7, // llvm.nvvm.suld.2d.array.v2i64.trap
7, // llvm.nvvm.suld.2d.array.v2i64.zero
7, // llvm.nvvm.suld.2d.array.v2i8.clamp
7, // llvm.nvvm.suld.2d.array.v2i8.trap
7, // llvm.nvvm.suld.2d.array.v2i8.zero
7, // llvm.nvvm.suld.2d.array.v4i16.clamp
7, // llvm.nvvm.suld.2d.array.v4i16.trap
7, // llvm.nvvm.suld.2d.array.v4i16.zero
7, // llvm.nvvm.suld.2d.array.v4i32.clamp
7, // llvm.nvvm.suld.2d.array.v4i32.trap
7, // llvm.nvvm.suld.2d.array.v4i32.zero
7, // llvm.nvvm.suld.2d.array.v4i8.clamp
7, // llvm.nvvm.suld.2d.array.v4i8.trap
7, // llvm.nvvm.suld.2d.array.v4i8.zero
7, // llvm.nvvm.suld.2d.i16.clamp
7, // llvm.nvvm.suld.2d.i16.trap
7, // llvm.nvvm.suld.2d.i16.zero
7, // llvm.nvvm.suld.2d.i32.clamp
7, // llvm.nvvm.suld.2d.i32.trap
7, // llvm.nvvm.suld.2d.i32.zero
7, // llvm.nvvm.suld.2d.i64.clamp
7, // llvm.nvvm.suld.2d.i64.trap
7, // llvm.nvvm.suld.2d.i64.zero
7, // llvm.nvvm.suld.2d.i8.clamp
7, // llvm.nvvm.suld.2d.i8.trap
7, // llvm.nvvm.suld.2d.i8.zero
7, // llvm.nvvm.suld.2d.v2i16.clamp
7, // llvm.nvvm.suld.2d.v2i16.trap
7, // llvm.nvvm.suld.2d.v2i16.zero
7, // llvm.nvvm.suld.2d.v2i32.clamp
7, // llvm.nvvm.suld.2d.v2i32.trap
7, // llvm.nvvm.suld.2d.v2i32.zero
7, // llvm.nvvm.suld.2d.v2i64.clamp
7, // llvm.nvvm.suld.2d.v2i64.trap
7, // llvm.nvvm.suld.2d.v2i64.zero
7, // llvm.nvvm.suld.2d.v2i8.clamp
7, // llvm.nvvm.suld.2d.v2i8.trap
7, // llvm.nvvm.suld.2d.v2i8.zero
7, // llvm.nvvm.suld.2d.v4i16.clamp
7, // llvm.nvvm.suld.2d.v4i16.trap
7, // llvm.nvvm.suld.2d.v4i16.zero
7, // llvm.nvvm.suld.2d.v4i32.clamp
7, // llvm.nvvm.suld.2d.v4i32.trap
7, // llvm.nvvm.suld.2d.v4i32.zero
7, // llvm.nvvm.suld.2d.v4i8.clamp
7, // llvm.nvvm.suld.2d.v4i8.trap
7, // llvm.nvvm.suld.2d.v4i8.zero
7, // llvm.nvvm.suld.3d.i16.clamp
7, // llvm.nvvm.suld.3d.i16.trap
7, // llvm.nvvm.suld.3d.i16.zero
7, // llvm.nvvm.suld.3d.i32.clamp
7, // llvm.nvvm.suld.3d.i32.trap
7, // llvm.nvvm.suld.3d.i32.zero
7, // llvm.nvvm.suld.3d.i64.clamp
7, // llvm.nvvm.suld.3d.i64.trap
7, // llvm.nvvm.suld.3d.i64.zero
7, // llvm.nvvm.suld.3d.i8.clamp
7, // llvm.nvvm.suld.3d.i8.trap
7, // llvm.nvvm.suld.3d.i8.zero
7, // llvm.nvvm.suld.3d.v2i16.clamp
7, // llvm.nvvm.suld.3d.v2i16.trap
7, // llvm.nvvm.suld.3d.v2i16.zero
7, // llvm.nvvm.suld.3d.v2i32.clamp
7, // llvm.nvvm.suld.3d.v2i32.trap
7, // llvm.nvvm.suld.3d.v2i32.zero
7, // llvm.nvvm.suld.3d.v2i64.clamp
7, // llvm.nvvm.suld.3d.v2i64.trap
7, // llvm.nvvm.suld.3d.v2i64.zero
7, // llvm.nvvm.suld.3d.v2i8.clamp
7, // llvm.nvvm.suld.3d.v2i8.trap
7, // llvm.nvvm.suld.3d.v2i8.zero
7, // llvm.nvvm.suld.3d.v4i16.clamp
7, // llvm.nvvm.suld.3d.v4i16.trap
7, // llvm.nvvm.suld.3d.v4i16.zero
7, // llvm.nvvm.suld.3d.v4i32.clamp
7, // llvm.nvvm.suld.3d.v4i32.trap
7, // llvm.nvvm.suld.3d.v4i32.zero
7, // llvm.nvvm.suld.3d.v4i8.clamp
7, // llvm.nvvm.suld.3d.v4i8.trap
7, // llvm.nvvm.suld.3d.v4i8.zero
12, // llvm.nvvm.suq.array.size
12, // llvm.nvvm.suq.channel.data.type
12, // llvm.nvvm.suq.channel.order
12, // llvm.nvvm.suq.depth
12, // llvm.nvvm.suq.height
12, // llvm.nvvm.suq.width
7, // llvm.nvvm.sust.b.1d.array.i16.clamp
7, // llvm.nvvm.sust.b.1d.array.i16.trap
7, // llvm.nvvm.sust.b.1d.array.i16.zero
7, // llvm.nvvm.sust.b.1d.array.i32.clamp
7, // llvm.nvvm.sust.b.1d.array.i32.trap
7, // llvm.nvvm.sust.b.1d.array.i32.zero
7, // llvm.nvvm.sust.b.1d.array.i64.clamp
7, // llvm.nvvm.sust.b.1d.array.i64.trap
7, // llvm.nvvm.sust.b.1d.array.i64.zero
7, // llvm.nvvm.sust.b.1d.array.i8.clamp
7, // llvm.nvvm.sust.b.1d.array.i8.trap
7, // llvm.nvvm.sust.b.1d.array.i8.zero
7, // llvm.nvvm.sust.b.1d.array.v2i16.clamp
7, // llvm.nvvm.sust.b.1d.array.v2i16.trap
7, // llvm.nvvm.sust.b.1d.array.v2i16.zero
7, // llvm.nvvm.sust.b.1d.array.v2i32.clamp
7, // llvm.nvvm.sust.b.1d.array.v2i32.trap
7, // llvm.nvvm.sust.b.1d.array.v2i32.zero
7, // llvm.nvvm.sust.b.1d.array.v2i64.clamp
7, // llvm.nvvm.sust.b.1d.array.v2i64.trap
7, // llvm.nvvm.sust.b.1d.array.v2i64.zero
7, // llvm.nvvm.sust.b.1d.array.v2i8.clamp
7, // llvm.nvvm.sust.b.1d.array.v2i8.trap
7, // llvm.nvvm.sust.b.1d.array.v2i8.zero
7, // llvm.nvvm.sust.b.1d.array.v4i16.clamp
7, // llvm.nvvm.sust.b.1d.array.v4i16.trap
7, // llvm.nvvm.sust.b.1d.array.v4i16.zero
7, // llvm.nvvm.sust.b.1d.array.v4i32.clamp
7, // llvm.nvvm.sust.b.1d.array.v4i32.trap
7, // llvm.nvvm.sust.b.1d.array.v4i32.zero
7, // llvm.nvvm.sust.b.1d.array.v4i8.clamp
7, // llvm.nvvm.sust.b.1d.array.v4i8.trap
7, // llvm.nvvm.sust.b.1d.array.v4i8.zero
7, // llvm.nvvm.sust.b.1d.i16.clamp
7, // llvm.nvvm.sust.b.1d.i16.trap
7, // llvm.nvvm.sust.b.1d.i16.zero
7, // llvm.nvvm.sust.b.1d.i32.clamp
7, // llvm.nvvm.sust.b.1d.i32.trap
7, // llvm.nvvm.sust.b.1d.i32.zero
7, // llvm.nvvm.sust.b.1d.i64.clamp
7, // llvm.nvvm.sust.b.1d.i64.trap
7, // llvm.nvvm.sust.b.1d.i64.zero
7, // llvm.nvvm.sust.b.1d.i8.clamp
7, // llvm.nvvm.sust.b.1d.i8.trap
7, // llvm.nvvm.sust.b.1d.i8.zero
7, // llvm.nvvm.sust.b.1d.v2i16.clamp
7, // llvm.nvvm.sust.b.1d.v2i16.trap
7, // llvm.nvvm.sust.b.1d.v2i16.zero
7, // llvm.nvvm.sust.b.1d.v2i32.clamp
7, // llvm.nvvm.sust.b.1d.v2i32.trap
7, // llvm.nvvm.sust.b.1d.v2i32.zero
7, // llvm.nvvm.sust.b.1d.v2i64.clamp
7, // llvm.nvvm.sust.b.1d.v2i64.trap
7, // llvm.nvvm.sust.b.1d.v2i64.zero
7, // llvm.nvvm.sust.b.1d.v2i8.clamp
7, // llvm.nvvm.sust.b.1d.v2i8.trap
7, // llvm.nvvm.sust.b.1d.v2i8.zero
7, // llvm.nvvm.sust.b.1d.v4i16.clamp
7, // llvm.nvvm.sust.b.1d.v4i16.trap
7, // llvm.nvvm.sust.b.1d.v4i16.zero
7, // llvm.nvvm.sust.b.1d.v4i32.clamp
7, // llvm.nvvm.sust.b.1d.v4i32.trap
7, // llvm.nvvm.sust.b.1d.v4i32.zero
7, // llvm.nvvm.sust.b.1d.v4i8.clamp
7, // llvm.nvvm.sust.b.1d.v4i8.trap
7, // llvm.nvvm.sust.b.1d.v4i8.zero
7, // llvm.nvvm.sust.b.2d.array.i16.clamp
7, // llvm.nvvm.sust.b.2d.array.i16.trap
7, // llvm.nvvm.sust.b.2d.array.i16.zero
7, // llvm.nvvm.sust.b.2d.array.i32.clamp
7, // llvm.nvvm.sust.b.2d.array.i32.trap
7, // llvm.nvvm.sust.b.2d.array.i32.zero
7, // llvm.nvvm.sust.b.2d.array.i64.clamp
7, // llvm.nvvm.sust.b.2d.array.i64.trap
7, // llvm.nvvm.sust.b.2d.array.i64.zero
7, // llvm.nvvm.sust.b.2d.array.i8.clamp
7, // llvm.nvvm.sust.b.2d.array.i8.trap
7, // llvm.nvvm.sust.b.2d.array.i8.zero
7, // llvm.nvvm.sust.b.2d.array.v2i16.clamp
7, // llvm.nvvm.sust.b.2d.array.v2i16.trap
7, // llvm.nvvm.sust.b.2d.array.v2i16.zero
7, // llvm.nvvm.sust.b.2d.array.v2i32.clamp
7, // llvm.nvvm.sust.b.2d.array.v2i32.trap
7, // llvm.nvvm.sust.b.2d.array.v2i32.zero
7, // llvm.nvvm.sust.b.2d.array.v2i64.clamp
7, // llvm.nvvm.sust.b.2d.array.v2i64.trap
7, // llvm.nvvm.sust.b.2d.array.v2i64.zero
7, // llvm.nvvm.sust.b.2d.array.v2i8.clamp
7, // llvm.nvvm.sust.b.2d.array.v2i8.trap
7, // llvm.nvvm.sust.b.2d.array.v2i8.zero
7, // llvm.nvvm.sust.b.2d.array.v4i16.clamp
7, // llvm.nvvm.sust.b.2d.array.v4i16.trap
7, // llvm.nvvm.sust.b.2d.array.v4i16.zero
7, // llvm.nvvm.sust.b.2d.array.v4i32.clamp
7, // llvm.nvvm.sust.b.2d.array.v4i32.trap
7, // llvm.nvvm.sust.b.2d.array.v4i32.zero
7, // llvm.nvvm.sust.b.2d.array.v4i8.clamp
7, // llvm.nvvm.sust.b.2d.array.v4i8.trap
7, // llvm.nvvm.sust.b.2d.array.v4i8.zero
7, // llvm.nvvm.sust.b.2d.i16.clamp
7, // llvm.nvvm.sust.b.2d.i16.trap
7, // llvm.nvvm.sust.b.2d.i16.zero
7, // llvm.nvvm.sust.b.2d.i32.clamp
7, // llvm.nvvm.sust.b.2d.i32.trap
7, // llvm.nvvm.sust.b.2d.i32.zero
7, // llvm.nvvm.sust.b.2d.i64.clamp
7, // llvm.nvvm.sust.b.2d.i64.trap
7, // llvm.nvvm.sust.b.2d.i64.zero
7, // llvm.nvvm.sust.b.2d.i8.clamp
7, // llvm.nvvm.sust.b.2d.i8.trap
7, // llvm.nvvm.sust.b.2d.i8.zero
7, // llvm.nvvm.sust.b.2d.v2i16.clamp
7, // llvm.nvvm.sust.b.2d.v2i16.trap
7, // llvm.nvvm.sust.b.2d.v2i16.zero
7, // llvm.nvvm.sust.b.2d.v2i32.clamp
7, // llvm.nvvm.sust.b.2d.v2i32.trap
7, // llvm.nvvm.sust.b.2d.v2i32.zero
7, // llvm.nvvm.sust.b.2d.v2i64.clamp
7, // llvm.nvvm.sust.b.2d.v2i64.trap
7, // llvm.nvvm.sust.b.2d.v2i64.zero
7, // llvm.nvvm.sust.b.2d.v2i8.clamp
7, // llvm.nvvm.sust.b.2d.v2i8.trap
7, // llvm.nvvm.sust.b.2d.v2i8.zero
7, // llvm.nvvm.sust.b.2d.v4i16.clamp
7, // llvm.nvvm.sust.b.2d.v4i16.trap
7, // llvm.nvvm.sust.b.2d.v4i16.zero
7, // llvm.nvvm.sust.b.2d.v4i32.clamp
7, // llvm.nvvm.sust.b.2d.v4i32.trap
7, // llvm.nvvm.sust.b.2d.v4i32.zero
7, // llvm.nvvm.sust.b.2d.v4i8.clamp
7, // llvm.nvvm.sust.b.2d.v4i8.trap
7, // llvm.nvvm.sust.b.2d.v4i8.zero
7, // llvm.nvvm.sust.b.3d.i16.clamp
7, // llvm.nvvm.sust.b.3d.i16.trap
7, // llvm.nvvm.sust.b.3d.i16.zero
7, // llvm.nvvm.sust.b.3d.i32.clamp
7, // llvm.nvvm.sust.b.3d.i32.trap
7, // llvm.nvvm.sust.b.3d.i32.zero
7, // llvm.nvvm.sust.b.3d.i64.clamp
7, // llvm.nvvm.sust.b.3d.i64.trap
7, // llvm.nvvm.sust.b.3d.i64.zero
7, // llvm.nvvm.sust.b.3d.i8.clamp
7, // llvm.nvvm.sust.b.3d.i8.trap
7, // llvm.nvvm.sust.b.3d.i8.zero
7, // llvm.nvvm.sust.b.3d.v2i16.clamp
7, // llvm.nvvm.sust.b.3d.v2i16.trap
7, // llvm.nvvm.sust.b.3d.v2i16.zero
7, // llvm.nvvm.sust.b.3d.v2i32.clamp
7, // llvm.nvvm.sust.b.3d.v2i32.trap
7, // llvm.nvvm.sust.b.3d.v2i32.zero
7, // llvm.nvvm.sust.b.3d.v2i64.clamp
7, // llvm.nvvm.sust.b.3d.v2i64.trap
7, // llvm.nvvm.sust.b.3d.v2i64.zero
7, // llvm.nvvm.sust.b.3d.v2i8.clamp
7, // llvm.nvvm.sust.b.3d.v2i8.trap
7, // llvm.nvvm.sust.b.3d.v2i8.zero
7, // llvm.nvvm.sust.b.3d.v4i16.clamp
7, // llvm.nvvm.sust.b.3d.v4i16.trap
7, // llvm.nvvm.sust.b.3d.v4i16.zero
7, // llvm.nvvm.sust.b.3d.v4i32.clamp
7, // llvm.nvvm.sust.b.3d.v4i32.trap
7, // llvm.nvvm.sust.b.3d.v4i32.zero
7, // llvm.nvvm.sust.b.3d.v4i8.clamp
7, // llvm.nvvm.sust.b.3d.v4i8.trap
7, // llvm.nvvm.sust.b.3d.v4i8.zero
7, // llvm.nvvm.sust.p.1d.array.i16.trap
7, // llvm.nvvm.sust.p.1d.array.i32.trap
7, // llvm.nvvm.sust.p.1d.array.i8.trap
7, // llvm.nvvm.sust.p.1d.array.v2i16.trap
7, // llvm.nvvm.sust.p.1d.array.v2i32.trap
7, // llvm.nvvm.sust.p.1d.array.v2i8.trap
7, // llvm.nvvm.sust.p.1d.array.v4i16.trap
7, // llvm.nvvm.sust.p.1d.array.v4i32.trap
7, // llvm.nvvm.sust.p.1d.array.v4i8.trap
7, // llvm.nvvm.sust.p.1d.i16.trap
7, // llvm.nvvm.sust.p.1d.i32.trap
7, // llvm.nvvm.sust.p.1d.i8.trap
7, // llvm.nvvm.sust.p.1d.v2i16.trap
7, // llvm.nvvm.sust.p.1d.v2i32.trap
7, // llvm.nvvm.sust.p.1d.v2i8.trap
7, // llvm.nvvm.sust.p.1d.v4i16.trap
7, // llvm.nvvm.sust.p.1d.v4i32.trap
7, // llvm.nvvm.sust.p.1d.v4i8.trap
7, // llvm.nvvm.sust.p.2d.array.i16.trap
7, // llvm.nvvm.sust.p.2d.array.i32.trap
7, // llvm.nvvm.sust.p.2d.array.i8.trap
7, // llvm.nvvm.sust.p.2d.array.v2i16.trap
7, // llvm.nvvm.sust.p.2d.array.v2i32.trap
7, // llvm.nvvm.sust.p.2d.array.v2i8.trap
7, // llvm.nvvm.sust.p.2d.array.v4i16.trap
7, // llvm.nvvm.sust.p.2d.array.v4i32.trap
7, // llvm.nvvm.sust.p.2d.array.v4i8.trap
7, // llvm.nvvm.sust.p.2d.i16.trap
7, // llvm.nvvm.sust.p.2d.i32.trap
7, // llvm.nvvm.sust.p.2d.i8.trap
7, // llvm.nvvm.sust.p.2d.v2i16.trap
7, // llvm.nvvm.sust.p.2d.v2i32.trap
7, // llvm.nvvm.sust.p.2d.v2i8.trap
7, // llvm.nvvm.sust.p.2d.v4i16.trap
7, // llvm.nvvm.sust.p.2d.v4i32.trap
7, // llvm.nvvm.sust.p.2d.v4i8.trap
7, // llvm.nvvm.sust.p.3d.i16.trap
7, // llvm.nvvm.sust.p.3d.i32.trap
7, // llvm.nvvm.sust.p.3d.i8.trap
7, // llvm.nvvm.sust.p.3d.v2i16.trap
7, // llvm.nvvm.sust.p.3d.v2i32.trap
7, // llvm.nvvm.sust.p.3d.v2i8.trap
7, // llvm.nvvm.sust.p.3d.v4i16.trap
7, // llvm.nvvm.sust.p.3d.v4i32.trap
7, // llvm.nvvm.sust.p.3d.v4i8.trap
12, // llvm.nvvm.swap.lo.hi.b64
7, // llvm.nvvm.tex.1d.array.grad.v4f32.f32
7, // llvm.nvvm.tex.1d.array.grad.v4s32.f32
7, // llvm.nvvm.tex.1d.array.grad.v4u32.f32
7, // llvm.nvvm.tex.1d.array.level.v4f32.f32
7, // llvm.nvvm.tex.1d.array.level.v4s32.f32
7, // llvm.nvvm.tex.1d.array.level.v4u32.f32
7, // llvm.nvvm.tex.1d.array.v4f32.f32
7, // llvm.nvvm.tex.1d.array.v4f32.s32
7, // llvm.nvvm.tex.1d.array.v4s32.f32
7, // llvm.nvvm.tex.1d.array.v4s32.s32
7, // llvm.nvvm.tex.1d.array.v4u32.f32
7, // llvm.nvvm.tex.1d.array.v4u32.s32
7, // llvm.nvvm.tex.1d.grad.v4f32.f32
7, // llvm.nvvm.tex.1d.grad.v4s32.f32
7, // llvm.nvvm.tex.1d.grad.v4u32.f32
7, // llvm.nvvm.tex.1d.level.v4f32.f32
7, // llvm.nvvm.tex.1d.level.v4s32.f32
7, // llvm.nvvm.tex.1d.level.v4u32.f32
7, // llvm.nvvm.tex.1d.v4f32.f32
7, // llvm.nvvm.tex.1d.v4f32.s32
7, // llvm.nvvm.tex.1d.v4s32.f32
7, // llvm.nvvm.tex.1d.v4s32.s32
7, // llvm.nvvm.tex.1d.v4u32.f32
7, // llvm.nvvm.tex.1d.v4u32.s32
7, // llvm.nvvm.tex.2d.array.grad.v4f32.f32
7, // llvm.nvvm.tex.2d.array.grad.v4s32.f32
7, // llvm.nvvm.tex.2d.array.grad.v4u32.f32
7, // llvm.nvvm.tex.2d.array.level.v4f32.f32
7, // llvm.nvvm.tex.2d.array.level.v4s32.f32
7, // llvm.nvvm.tex.2d.array.level.v4u32.f32
7, // llvm.nvvm.tex.2d.array.v4f32.f32
7, // llvm.nvvm.tex.2d.array.v4f32.s32
7, // llvm.nvvm.tex.2d.array.v4s32.f32
7, // llvm.nvvm.tex.2d.array.v4s32.s32
7, // llvm.nvvm.tex.2d.array.v4u32.f32
7, // llvm.nvvm.tex.2d.array.v4u32.s32
7, // llvm.nvvm.tex.2d.grad.v4f32.f32
7, // llvm.nvvm.tex.2d.grad.v4s32.f32
7, // llvm.nvvm.tex.2d.grad.v4u32.f32
7, // llvm.nvvm.tex.2d.level.v4f32.f32
7, // llvm.nvvm.tex.2d.level.v4s32.f32
7, // llvm.nvvm.tex.2d.level.v4u32.f32
7, // llvm.nvvm.tex.2d.v4f32.f32
7, // llvm.nvvm.tex.2d.v4f32.s32
7, // llvm.nvvm.tex.2d.v4s32.f32
7, // llvm.nvvm.tex.2d.v4s32.s32
7, // llvm.nvvm.tex.2d.v4u32.f32
7, // llvm.nvvm.tex.2d.v4u32.s32
7, // llvm.nvvm.tex.3d.grad.v4f32.f32
7, // llvm.nvvm.tex.3d.grad.v4s32.f32
7, // llvm.nvvm.tex.3d.grad.v4u32.f32
7, // llvm.nvvm.tex.3d.level.v4f32.f32
7, // llvm.nvvm.tex.3d.level.v4s32.f32
7, // llvm.nvvm.tex.3d.level.v4u32.f32
7, // llvm.nvvm.tex.3d.v4f32.f32
7, // llvm.nvvm.tex.3d.v4f32.s32
7, // llvm.nvvm.tex.3d.v4s32.f32
7, // llvm.nvvm.tex.3d.v4s32.s32
7, // llvm.nvvm.tex.3d.v4u32.f32
7, // llvm.nvvm.tex.3d.v4u32.s32
7, // llvm.nvvm.tex.cube.array.level.v4f32.f32
7, // llvm.nvvm.tex.cube.array.level.v4s32.f32
7, // llvm.nvvm.tex.cube.array.level.v4u32.f32
7, // llvm.nvvm.tex.cube.array.v4f32.f32
7, // llvm.nvvm.tex.cube.array.v4s32.f32
7, // llvm.nvvm.tex.cube.array.v4u32.f32
7, // llvm.nvvm.tex.cube.level.v4f32.f32
7, // llvm.nvvm.tex.cube.level.v4s32.f32
7, // llvm.nvvm.tex.cube.level.v4u32.f32
7, // llvm.nvvm.tex.cube.v4f32.f32
7, // llvm.nvvm.tex.cube.v4s32.f32
7, // llvm.nvvm.tex.cube.v4u32.f32
7, // llvm.nvvm.tex.unified.1d.array.grad.v4f32.f32
7, // llvm.nvvm.tex.unified.1d.array.grad.v4s32.f32
7, // llvm.nvvm.tex.unified.1d.array.grad.v4u32.f32
7, // llvm.nvvm.tex.unified.1d.array.level.v4f32.f32
7, // llvm.nvvm.tex.unified.1d.array.level.v4s32.f32
7, // llvm.nvvm.tex.unified.1d.array.level.v4u32.f32
7, // llvm.nvvm.tex.unified.1d.array.v4f32.f32
7, // llvm.nvvm.tex.unified.1d.array.v4f32.s32
7, // llvm.nvvm.tex.unified.1d.array.v4s32.f32
7, // llvm.nvvm.tex.unified.1d.array.v4s32.s32
7, // llvm.nvvm.tex.unified.1d.array.v4u32.f32
7, // llvm.nvvm.tex.unified.1d.array.v4u32.s32
7, // llvm.nvvm.tex.unified.1d.grad.v4f32.f32
7, // llvm.nvvm.tex.unified.1d.grad.v4s32.f32
7, // llvm.nvvm.tex.unified.1d.grad.v4u32.f32
7, // llvm.nvvm.tex.unified.1d.level.v4f32.f32
7, // llvm.nvvm.tex.unified.1d.level.v4s32.f32
7, // llvm.nvvm.tex.unified.1d.level.v4u32.f32
7, // llvm.nvvm.tex.unified.1d.v4f32.f32
7, // llvm.nvvm.tex.unified.1d.v4f32.s32
7, // llvm.nvvm.tex.unified.1d.v4s32.f32
7, // llvm.nvvm.tex.unified.1d.v4s32.s32
7, // llvm.nvvm.tex.unified.1d.v4u32.f32
7, // llvm.nvvm.tex.unified.1d.v4u32.s32
7, // llvm.nvvm.tex.unified.2d.array.grad.v4f32.f32
7, // llvm.nvvm.tex.unified.2d.array.grad.v4s32.f32
7, // llvm.nvvm.tex.unified.2d.array.grad.v4u32.f32
7, // llvm.nvvm.tex.unified.2d.array.level.v4f32.f32
7, // llvm.nvvm.tex.unified.2d.array.level.v4s32.f32
7, // llvm.nvvm.tex.unified.2d.array.level.v4u32.f32
7, // llvm.nvvm.tex.unified.2d.array.v4f32.f32
7, // llvm.nvvm.tex.unified.2d.array.v4f32.s32
7, // llvm.nvvm.tex.unified.2d.array.v4s32.f32
7, // llvm.nvvm.tex.unified.2d.array.v4s32.s32
7, // llvm.nvvm.tex.unified.2d.array.v4u32.f32
7, // llvm.nvvm.tex.unified.2d.array.v4u32.s32
7, // llvm.nvvm.tex.unified.2d.grad.v4f32.f32
7, // llvm.nvvm.tex.unified.2d.grad.v4s32.f32
7, // llvm.nvvm.tex.unified.2d.grad.v4u32.f32
7, // llvm.nvvm.tex.unified.2d.level.v4f32.f32
7, // llvm.nvvm.tex.unified.2d.level.v4s32.f32
7, // llvm.nvvm.tex.unified.2d.level.v4u32.f32
7, // llvm.nvvm.tex.unified.2d.v4f32.f32
7, // llvm.nvvm.tex.unified.2d.v4f32.s32
7, // llvm.nvvm.tex.unified.2d.v4s32.f32
7, // llvm.nvvm.tex.unified.2d.v4s32.s32
7, // llvm.nvvm.tex.unified.2d.v4u32.f32
7, // llvm.nvvm.tex.unified.2d.v4u32.s32
7, // llvm.nvvm.tex.unified.3d.grad.v4f32.f32
7, // llvm.nvvm.tex.unified.3d.grad.v4s32.f32
7, // llvm.nvvm.tex.unified.3d.grad.v4u32.f32
7, // llvm.nvvm.tex.unified.3d.level.v4f32.f32
7, // llvm.nvvm.tex.unified.3d.level.v4s32.f32
7, // llvm.nvvm.tex.unified.3d.level.v4u32.f32
7, // llvm.nvvm.tex.unified.3d.v4f32.f32
7, // llvm.nvvm.tex.unified.3d.v4f32.s32
7, // llvm.nvvm.tex.unified.3d.v4s32.f32
7, // llvm.nvvm.tex.unified.3d.v4s32.s32
7, // llvm.nvvm.tex.unified.3d.v4u32.f32
7, // llvm.nvvm.tex.unified.3d.v4u32.s32
7, // llvm.nvvm.tex.unified.cube.array.level.v4f32.f32
7, // llvm.nvvm.tex.unified.cube.array.level.v4s32.f32
7, // llvm.nvvm.tex.unified.cube.array.level.v4u32.f32
7, // llvm.nvvm.tex.unified.cube.array.v4f32.f32
7, // llvm.nvvm.tex.unified.cube.array.v4s32.f32
7, // llvm.nvvm.tex.unified.cube.array.v4u32.f32
7, // llvm.nvvm.tex.unified.cube.level.v4f32.f32
7, // llvm.nvvm.tex.unified.cube.level.v4s32.f32
7, // llvm.nvvm.tex.unified.cube.level.v4u32.f32
7, // llvm.nvvm.tex.unified.cube.v4f32.f32
7, // llvm.nvvm.tex.unified.cube.v4s32.f32
7, // llvm.nvvm.tex.unified.cube.v4u32.f32
12, // llvm.nvvm.texsurf.handle
12, // llvm.nvvm.texsurf.handle.internal
7, // llvm.nvvm.tld4.a.2d.v4f32.f32
7, // llvm.nvvm.tld4.a.2d.v4s32.f32
7, // llvm.nvvm.tld4.a.2d.v4u32.f32
7, // llvm.nvvm.tld4.b.2d.v4f32.f32
7, // llvm.nvvm.tld4.b.2d.v4s32.f32
7, // llvm.nvvm.tld4.b.2d.v4u32.f32
7, // llvm.nvvm.tld4.g.2d.v4f32.f32
7, // llvm.nvvm.tld4.g.2d.v4s32.f32
7, // llvm.nvvm.tld4.g.2d.v4u32.f32
7, // llvm.nvvm.tld4.r.2d.v4f32.f32
7, // llvm.nvvm.tld4.r.2d.v4s32.f32
7, // llvm.nvvm.tld4.r.2d.v4u32.f32
7, // llvm.nvvm.tld4.unified.a.2d.v4f32.f32
7, // llvm.nvvm.tld4.unified.a.2d.v4s32.f32
7, // llvm.nvvm.tld4.unified.a.2d.v4u32.f32
7, // llvm.nvvm.tld4.unified.b.2d.v4f32.f32
7, // llvm.nvvm.tld4.unified.b.2d.v4s32.f32
7, // llvm.nvvm.tld4.unified.b.2d.v4u32.f32
7, // llvm.nvvm.tld4.unified.g.2d.v4f32.f32
7, // llvm.nvvm.tld4.unified.g.2d.v4s32.f32
7, // llvm.nvvm.tld4.unified.g.2d.v4u32.f32
7, // llvm.nvvm.tld4.unified.r.2d.v4f32.f32
7, // llvm.nvvm.tld4.unified.r.2d.v4s32.f32
7, // llvm.nvvm.tld4.unified.r.2d.v4u32.f32
12, // llvm.nvvm.trunc.d
12, // llvm.nvvm.trunc.f
12, // llvm.nvvm.trunc.ftz.f
12, // llvm.nvvm.txq.array.size
12, // llvm.nvvm.txq.channel.data.type
12, // llvm.nvvm.txq.channel.order
12, // llvm.nvvm.txq.depth
12, // llvm.nvvm.txq.height
12, // llvm.nvvm.txq.num.mipmap.levels
12, // llvm.nvvm.txq.num.samples
12, // llvm.nvvm.txq.width
12, // llvm.nvvm.ui2d.rm
12, // llvm.nvvm.ui2d.rn
12, // llvm.nvvm.ui2d.rp
12, // llvm.nvvm.ui2d.rz
12, // llvm.nvvm.ui2f.rm
12, // llvm.nvvm.ui2f.rn
12, // llvm.nvvm.ui2f.rp
12, // llvm.nvvm.ui2f.rz
12, // llvm.nvvm.ull2d.rm
12, // llvm.nvvm.ull2d.rn
12, // llvm.nvvm.ull2d.rp
12, // llvm.nvvm.ull2d.rz
12, // llvm.nvvm.ull2f.rm
12, // llvm.nvvm.ull2f.rn
12, // llvm.nvvm.ull2f.rp
12, // llvm.nvvm.ull2f.rz
191, // llvm.nvvm.vote.all
191, // llvm.nvvm.vote.all.sync
191, // llvm.nvvm.vote.any
191, // llvm.nvvm.vote.any.sync
191, // llvm.nvvm.vote.ballot
191, // llvm.nvvm.vote.ballot.sync
191, // llvm.nvvm.vote.uni
191, // llvm.nvvm.vote.uni.sync
17, // llvm.nvvm.wmma.m16n16k16.load.a.col.f16
17, // llvm.nvvm.wmma.m16n16k16.load.a.col.s8
17, // llvm.nvvm.wmma.m16n16k16.load.a.col.stride.f16
17, // llvm.nvvm.wmma.m16n16k16.load.a.col.stride.s8
17, // llvm.nvvm.wmma.m16n16k16.load.a.col.stride.u8
17, // llvm.nvvm.wmma.m16n16k16.load.a.col.u8
17, // llvm.nvvm.wmma.m16n16k16.load.a.row.f16
17, // llvm.nvvm.wmma.m16n16k16.load.a.row.s8
17, // llvm.nvvm.wmma.m16n16k16.load.a.row.stride.f16
17, // llvm.nvvm.wmma.m16n16k16.load.a.row.stride.s8
17, // llvm.nvvm.wmma.m16n16k16.load.a.row.stride.u8
17, // llvm.nvvm.wmma.m16n16k16.load.a.row.u8
17, // llvm.nvvm.wmma.m16n16k16.load.b.col.f16
17, // llvm.nvvm.wmma.m16n16k16.load.b.col.s8
17, // llvm.nvvm.wmma.m16n16k16.load.b.col.stride.f16
17, // llvm.nvvm.wmma.m16n16k16.load.b.col.stride.s8
17, // llvm.nvvm.wmma.m16n16k16.load.b.col.stride.u8
17, // llvm.nvvm.wmma.m16n16k16.load.b.col.u8
17, // llvm.nvvm.wmma.m16n16k16.load.b.row.f16
17, // llvm.nvvm.wmma.m16n16k16.load.b.row.s8
17, // llvm.nvvm.wmma.m16n16k16.load.b.row.stride.f16
17, // llvm.nvvm.wmma.m16n16k16.load.b.row.stride.s8
17, // llvm.nvvm.wmma.m16n16k16.load.b.row.stride.u8
17, // llvm.nvvm.wmma.m16n16k16.load.b.row.u8
17, // llvm.nvvm.wmma.m16n16k16.load.c.col.f16
17, // llvm.nvvm.wmma.m16n16k16.load.c.col.f32
17, // llvm.nvvm.wmma.m16n16k16.load.c.col.s32
17, // llvm.nvvm.wmma.m16n16k16.load.c.col.stride.f16
17, // llvm.nvvm.wmma.m16n16k16.load.c.col.stride.f32
17, // llvm.nvvm.wmma.m16n16k16.load.c.col.stride.s32
17, // llvm.nvvm.wmma.m16n16k16.load.c.row.f16
17, // llvm.nvvm.wmma.m16n16k16.load.c.row.f32
17, // llvm.nvvm.wmma.m16n16k16.load.c.row.s32
17, // llvm.nvvm.wmma.m16n16k16.load.c.row.stride.f16
17, // llvm.nvvm.wmma.m16n16k16.load.c.row.stride.f32
17, // llvm.nvvm.wmma.m16n16k16.load.c.row.stride.s32
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f16.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.f32.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.s8
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.s8.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.u8
12, // llvm.nvvm.wmma.m16n16k16.mma.col.col.u8.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f16.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.f32.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.s8
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.s8.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.u8
12, // llvm.nvvm.wmma.m16n16k16.mma.col.row.u8.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f16.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.f32.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.s8
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.s8.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.u8
12, // llvm.nvvm.wmma.m16n16k16.mma.row.col.u8.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f16.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f16
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f16.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f32
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.f32.f32.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.s8
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.s8.satfinite
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.u8
12, // llvm.nvvm.wmma.m16n16k16.mma.row.row.u8.satfinite
70, // llvm.nvvm.wmma.m16n16k16.store.d.col.f16
70, // llvm.nvvm.wmma.m16n16k16.store.d.col.f32
70, // llvm.nvvm.wmma.m16n16k16.store.d.col.s32
70, // llvm.nvvm.wmma.m16n16k16.store.d.col.stride.f16
70, // llvm.nvvm.wmma.m16n16k16.store.d.col.stride.f32
70, // llvm.nvvm.wmma.m16n16k16.store.d.col.stride.s32
70, // llvm.nvvm.wmma.m16n16k16.store.d.row.f16
70, // llvm.nvvm.wmma.m16n16k16.store.d.row.f32
70, // llvm.nvvm.wmma.m16n16k16.store.d.row.s32
70, // llvm.nvvm.wmma.m16n16k16.store.d.row.stride.f16
70, // llvm.nvvm.wmma.m16n16k16.store.d.row.stride.f32
70, // llvm.nvvm.wmma.m16n16k16.store.d.row.stride.s32
17, // llvm.nvvm.wmma.m32n8k16.load.a.col.f16
17, // llvm.nvvm.wmma.m32n8k16.load.a.col.s8
17, // llvm.nvvm.wmma.m32n8k16.load.a.col.stride.f16
17, // llvm.nvvm.wmma.m32n8k16.load.a.col.stride.s8
17, // llvm.nvvm.wmma.m32n8k16.load.a.col.stride.u8
17, // llvm.nvvm.wmma.m32n8k16.load.a.col.u8
17, // llvm.nvvm.wmma.m32n8k16.load.a.row.f16
17, // llvm.nvvm.wmma.m32n8k16.load.a.row.s8
17, // llvm.nvvm.wmma.m32n8k16.load.a.row.stride.f16
17, // llvm.nvvm.wmma.m32n8k16.load.a.row.stride.s8
17, // llvm.nvvm.wmma.m32n8k16.load.a.row.stride.u8
17, // llvm.nvvm.wmma.m32n8k16.load.a.row.u8
17, // llvm.nvvm.wmma.m32n8k16.load.b.col.f16
17, // llvm.nvvm.wmma.m32n8k16.load.b.col.s8
17, // llvm.nvvm.wmma.m32n8k16.load.b.col.stride.f16
17, // llvm.nvvm.wmma.m32n8k16.load.b.col.stride.s8
17, // llvm.nvvm.wmma.m32n8k16.load.b.col.stride.u8
17, // llvm.nvvm.wmma.m32n8k16.load.b.col.u8
17, // llvm.nvvm.wmma.m32n8k16.load.b.row.f16
17, // llvm.nvvm.wmma.m32n8k16.load.b.row.s8
17, // llvm.nvvm.wmma.m32n8k16.load.b.row.stride.f16
17, // llvm.nvvm.wmma.m32n8k16.load.b.row.stride.s8
17, // llvm.nvvm.wmma.m32n8k16.load.b.row.stride.u8
17, // llvm.nvvm.wmma.m32n8k16.load.b.row.u8
17, // llvm.nvvm.wmma.m32n8k16.load.c.col.f16
17, // llvm.nvvm.wmma.m32n8k16.load.c.col.f32
17, // llvm.nvvm.wmma.m32n8k16.load.c.col.s32
17, // llvm.nvvm.wmma.m32n8k16.load.c.col.stride.f16
17, // llvm.nvvm.wmma.m32n8k16.load.c.col.stride.f32
17, // llvm.nvvm.wmma.m32n8k16.load.c.col.stride.s32
17, // llvm.nvvm.wmma.m32n8k16.load.c.row.f16
17, // llvm.nvvm.wmma.m32n8k16.load.c.row.f32
17, // llvm.nvvm.wmma.m32n8k16.load.c.row.s32
17, // llvm.nvvm.wmma.m32n8k16.load.c.row.stride.f16
17, // llvm.nvvm.wmma.m32n8k16.load.c.row.stride.f32
17, // llvm.nvvm.wmma.m32n8k16.load.c.row.stride.s32
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f16.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.f32.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.s8
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.s8.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.u8
12, // llvm.nvvm.wmma.m32n8k16.mma.col.col.u8.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f16.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.f32.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.s8
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.s8.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.u8
12, // llvm.nvvm.wmma.m32n8k16.mma.col.row.u8.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f16.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.f32.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.s8
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.s8.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.u8
12, // llvm.nvvm.wmma.m32n8k16.mma.row.col.u8.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f16.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f16
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f16.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f32
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.f32.f32.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.s8
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.s8.satfinite
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.u8
12, // llvm.nvvm.wmma.m32n8k16.mma.row.row.u8.satfinite
70, // llvm.nvvm.wmma.m32n8k16.store.d.col.f16
70, // llvm.nvvm.wmma.m32n8k16.store.d.col.f32
70, // llvm.nvvm.wmma.m32n8k16.store.d.col.s32
70, // llvm.nvvm.wmma.m32n8k16.store.d.col.stride.f16
70, // llvm.nvvm.wmma.m32n8k16.store.d.col.stride.f32
70, // llvm.nvvm.wmma.m32n8k16.store.d.col.stride.s32
70, // llvm.nvvm.wmma.m32n8k16.store.d.row.f16
70, // llvm.nvvm.wmma.m32n8k16.store.d.row.f32
70, // llvm.nvvm.wmma.m32n8k16.store.d.row.s32
70, // llvm.nvvm.wmma.m32n8k16.store.d.row.stride.f16
70, // llvm.nvvm.wmma.m32n8k16.store.d.row.stride.f32
70, // llvm.nvvm.wmma.m32n8k16.store.d.row.stride.s32
17, // llvm.nvvm.wmma.m8n32k16.load.a.col.f16
17, // llvm.nvvm.wmma.m8n32k16.load.a.col.s8
17, // llvm.nvvm.wmma.m8n32k16.load.a.col.stride.f16
17, // llvm.nvvm.wmma.m8n32k16.load.a.col.stride.s8
17, // llvm.nvvm.wmma.m8n32k16.load.a.col.stride.u8
17, // llvm.nvvm.wmma.m8n32k16.load.a.col.u8
17, // llvm.nvvm.wmma.m8n32k16.load.a.row.f16
17, // llvm.nvvm.wmma.m8n32k16.load.a.row.s8
17, // llvm.nvvm.wmma.m8n32k16.load.a.row.stride.f16
17, // llvm.nvvm.wmma.m8n32k16.load.a.row.stride.s8
17, // llvm.nvvm.wmma.m8n32k16.load.a.row.stride.u8
17, // llvm.nvvm.wmma.m8n32k16.load.a.row.u8
17, // llvm.nvvm.wmma.m8n32k16.load.b.col.f16
17, // llvm.nvvm.wmma.m8n32k16.load.b.col.s8
17, // llvm.nvvm.wmma.m8n32k16.load.b.col.stride.f16
17, // llvm.nvvm.wmma.m8n32k16.load.b.col.stride.s8
17, // llvm.nvvm.wmma.m8n32k16.load.b.col.stride.u8
17, // llvm.nvvm.wmma.m8n32k16.load.b.col.u8
17, // llvm.nvvm.wmma.m8n32k16.load.b.row.f16
17, // llvm.nvvm.wmma.m8n32k16.load.b.row.s8
17, // llvm.nvvm.wmma.m8n32k16.load.b.row.stride.f16
17, // llvm.nvvm.wmma.m8n32k16.load.b.row.stride.s8
17, // llvm.nvvm.wmma.m8n32k16.load.b.row.stride.u8
17, // llvm.nvvm.wmma.m8n32k16.load.b.row.u8
17, // llvm.nvvm.wmma.m8n32k16.load.c.col.f16
17, // llvm.nvvm.wmma.m8n32k16.load.c.col.f32
17, // llvm.nvvm.wmma.m8n32k16.load.c.col.s32
17, // llvm.nvvm.wmma.m8n32k16.load.c.col.stride.f16
17, // llvm.nvvm.wmma.m8n32k16.load.c.col.stride.f32
17, // llvm.nvvm.wmma.m8n32k16.load.c.col.stride.s32
17, // llvm.nvvm.wmma.m8n32k16.load.c.row.f16
17, // llvm.nvvm.wmma.m8n32k16.load.c.row.f32
17, // llvm.nvvm.wmma.m8n32k16.load.c.row.s32
17, // llvm.nvvm.wmma.m8n32k16.load.c.row.stride.f16
17, // llvm.nvvm.wmma.m8n32k16.load.c.row.stride.f32
17, // llvm.nvvm.wmma.m8n32k16.load.c.row.stride.s32
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f16.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.f32.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.s8
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.s8.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.u8
12, // llvm.nvvm.wmma.m8n32k16.mma.col.col.u8.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f16.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.f32.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.s8
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.s8.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.u8
12, // llvm.nvvm.wmma.m8n32k16.mma.col.row.u8.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f16.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.f32.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.s8
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.s8.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.u8
12, // llvm.nvvm.wmma.m8n32k16.mma.row.col.u8.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f16.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f16
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f16.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f32
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.f32.f32.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.s8
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.s8.satfinite
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.u8
12, // llvm.nvvm.wmma.m8n32k16.mma.row.row.u8.satfinite
70, // llvm.nvvm.wmma.m8n32k16.store.d.col.f16
70, // llvm.nvvm.wmma.m8n32k16.store.d.col.f32
70, // llvm.nvvm.wmma.m8n32k16.store.d.col.s32
70, // llvm.nvvm.wmma.m8n32k16.store.d.col.stride.f16
70, // llvm.nvvm.wmma.m8n32k16.store.d.col.stride.f32
70, // llvm.nvvm.wmma.m8n32k16.store.d.col.stride.s32
70, // llvm.nvvm.wmma.m8n32k16.store.d.row.f16
70, // llvm.nvvm.wmma.m8n32k16.store.d.row.f32
70, // llvm.nvvm.wmma.m8n32k16.store.d.row.s32
70, // llvm.nvvm.wmma.m8n32k16.store.d.row.stride.f16
70, // llvm.nvvm.wmma.m8n32k16.store.d.row.stride.f32
70, // llvm.nvvm.wmma.m8n32k16.store.d.row.stride.s32
17, // llvm.nvvm.wmma.m8n8k128.load.a.row.b1
17, // llvm.nvvm.wmma.m8n8k128.load.a.row.stride.b1
17, // llvm.nvvm.wmma.m8n8k128.load.b.col.b1
17, // llvm.nvvm.wmma.m8n8k128.load.b.col.stride.b1
17, // llvm.nvvm.wmma.m8n8k128.load.c.col.s32
17, // llvm.nvvm.wmma.m8n8k128.load.c.col.stride.s32
17, // llvm.nvvm.wmma.m8n8k128.load.c.row.s32
17, // llvm.nvvm.wmma.m8n8k128.load.c.row.stride.s32
12, // llvm.nvvm.wmma.m8n8k128.mma.row.col.b1
70, // llvm.nvvm.wmma.m8n8k128.store.d.col.s32
70, // llvm.nvvm.wmma.m8n8k128.store.d.col.stride.s32
70, // llvm.nvvm.wmma.m8n8k128.store.d.row.s32
70, // llvm.nvvm.wmma.m8n8k128.store.d.row.stride.s32
17, // llvm.nvvm.wmma.m8n8k32.load.a.row.s4
17, // llvm.nvvm.wmma.m8n8k32.load.a.row.stride.s4
17, // llvm.nvvm.wmma.m8n8k32.load.a.row.stride.u4
17, // llvm.nvvm.wmma.m8n8k32.load.a.row.u4
17, // llvm.nvvm.wmma.m8n8k32.load.b.col.s4
17, // llvm.nvvm.wmma.m8n8k32.load.b.col.stride.s4
17, // llvm.nvvm.wmma.m8n8k32.load.b.col.stride.u4
17, // llvm.nvvm.wmma.m8n8k32.load.b.col.u4
17, // llvm.nvvm.wmma.m8n8k32.load.c.col.s32
17, // llvm.nvvm.wmma.m8n8k32.load.c.col.stride.s32
17, // llvm.nvvm.wmma.m8n8k32.load.c.row.s32
17, // llvm.nvvm.wmma.m8n8k32.load.c.row.stride.s32
12, // llvm.nvvm.wmma.m8n8k32.mma.row.col.s4
12, // llvm.nvvm.wmma.m8n8k32.mma.row.col.s4.satfinite
12, // llvm.nvvm.wmma.m8n8k32.mma.row.col.u4
12, // llvm.nvvm.wmma.m8n8k32.mma.row.col.u4.satfinite
70, // llvm.nvvm.wmma.m8n8k32.store.d.col.s32
70, // llvm.nvvm.wmma.m8n8k32.store.d.col.stride.s32
70, // llvm.nvvm.wmma.m8n8k32.store.d.row.s32
70, // llvm.nvvm.wmma.m8n8k32.store.d.row.stride.s32
12, // llvm.ppc.addf128.round.to.odd
12, // llvm.ppc.altivec.crypto.vcipher
12, // llvm.ppc.altivec.crypto.vcipherlast
12, // llvm.ppc.altivec.crypto.vncipher
12, // llvm.ppc.altivec.crypto.vncipherlast
12, // llvm.ppc.altivec.crypto.vpermxor
12, // llvm.ppc.altivec.crypto.vpmsumb
12, // llvm.ppc.altivec.crypto.vpmsumd
12, // llvm.ppc.altivec.crypto.vpmsumh
12, // llvm.ppc.altivec.crypto.vpmsumw
12, // llvm.ppc.altivec.crypto.vsbox
80, // llvm.ppc.altivec.crypto.vshasigmad
80, // llvm.ppc.altivec.crypto.vshasigmaw
7, // llvm.ppc.altivec.dss
7, // llvm.ppc.altivec.dssall
7, // llvm.ppc.altivec.dst
7, // llvm.ppc.altivec.dstst
7, // llvm.ppc.altivec.dststt
7, // llvm.ppc.altivec.dstt
3, // llvm.ppc.altivec.lvebx
3, // llvm.ppc.altivec.lvehx
3, // llvm.ppc.altivec.lvewx
12, // llvm.ppc.altivec.lvsl
12, // llvm.ppc.altivec.lvsr
3, // llvm.ppc.altivec.lvx
3, // llvm.ppc.altivec.lvxl
65, // llvm.ppc.altivec.mfvscr
65, // llvm.ppc.altivec.mtvscr
12, // llvm.ppc.altivec.mtvsrbm
12, // llvm.ppc.altivec.mtvsrdm
12, // llvm.ppc.altivec.mtvsrhm
12, // llvm.ppc.altivec.mtvsrqm
12, // llvm.ppc.altivec.mtvsrwm
81, // llvm.ppc.altivec.stvebx
81, // llvm.ppc.altivec.stvehx
81, // llvm.ppc.altivec.stvewx
81, // llvm.ppc.altivec.stvx
81, // llvm.ppc.altivec.stvxl
12, // llvm.ppc.altivec.vabsdub
12, // llvm.ppc.altivec.vabsduh
12, // llvm.ppc.altivec.vabsduw
12, // llvm.ppc.altivec.vaddcuq
12, // llvm.ppc.altivec.vaddcuw
12, // llvm.ppc.altivec.vaddecuq
12, // llvm.ppc.altivec.vaddeuqm
12, // llvm.ppc.altivec.vaddsbs
12, // llvm.ppc.altivec.vaddshs
12, // llvm.ppc.altivec.vaddsws
12, // llvm.ppc.altivec.vaddubs
12, // llvm.ppc.altivec.vadduhs
12, // llvm.ppc.altivec.vadduws
12, // llvm.ppc.altivec.vavgsb
12, // llvm.ppc.altivec.vavgsh
12, // llvm.ppc.altivec.vavgsw
12, // llvm.ppc.altivec.vavgub
12, // llvm.ppc.altivec.vavguh
12, // llvm.ppc.altivec.vavguw
12, // llvm.ppc.altivec.vbpermq
56, // llvm.ppc.altivec.vcfsx
12, // llvm.ppc.altivec.vcfuged
56, // llvm.ppc.altivec.vcfux
12, // llvm.ppc.altivec.vclrlb
12, // llvm.ppc.altivec.vclrrb
12, // llvm.ppc.altivec.vclzdm
12, // llvm.ppc.altivec.vclzlsbb
12, // llvm.ppc.altivec.vcmpbfp
12, // llvm.ppc.altivec.vcmpbfp.p
12, // llvm.ppc.altivec.vcmpeqfp
12, // llvm.ppc.altivec.vcmpeqfp.p
12, // llvm.ppc.altivec.vcmpequb
12, // llvm.ppc.altivec.vcmpequb.p
12, // llvm.ppc.altivec.vcmpequd
12, // llvm.ppc.altivec.vcmpequd.p
12, // llvm.ppc.altivec.vcmpequh
12, // llvm.ppc.altivec.vcmpequh.p
12, // llvm.ppc.altivec.vcmpequq
12, // llvm.ppc.altivec.vcmpequq.p
12, // llvm.ppc.altivec.vcmpequw
12, // llvm.ppc.altivec.vcmpequw.p
12, // llvm.ppc.altivec.vcmpgefp
12, // llvm.ppc.altivec.vcmpgefp.p
12, // llvm.ppc.altivec.vcmpgtfp
12, // llvm.ppc.altivec.vcmpgtfp.p
12, // llvm.ppc.altivec.vcmpgtsb
12, // llvm.ppc.altivec.vcmpgtsb.p
12, // llvm.ppc.altivec.vcmpgtsd
12, // llvm.ppc.altivec.vcmpgtsd.p
12, // llvm.ppc.altivec.vcmpgtsh
12, // llvm.ppc.altivec.vcmpgtsh.p
12, // llvm.ppc.altivec.vcmpgtsq
12, // llvm.ppc.altivec.vcmpgtsq.p
12, // llvm.ppc.altivec.vcmpgtsw
12, // llvm.ppc.altivec.vcmpgtsw.p
12, // llvm.ppc.altivec.vcmpgtub
12, // llvm.ppc.altivec.vcmpgtub.p
12, // llvm.ppc.altivec.vcmpgtud
12, // llvm.ppc.altivec.vcmpgtud.p
12, // llvm.ppc.altivec.vcmpgtuh
12, // llvm.ppc.altivec.vcmpgtuh.p
12, // llvm.ppc.altivec.vcmpgtuq
12, // llvm.ppc.altivec.vcmpgtuq.p
12, // llvm.ppc.altivec.vcmpgtuw
12, // llvm.ppc.altivec.vcmpgtuw.p
12, // llvm.ppc.altivec.vcmpneb
12, // llvm.ppc.altivec.vcmpneb.p
12, // llvm.ppc.altivec.vcmpneh
12, // llvm.ppc.altivec.vcmpneh.p
12, // llvm.ppc.altivec.vcmpnew
12, // llvm.ppc.altivec.vcmpnew.p
12, // llvm.ppc.altivec.vcmpnezb
12, // llvm.ppc.altivec.vcmpnezb.p
12, // llvm.ppc.altivec.vcmpnezh
12, // llvm.ppc.altivec.vcmpnezh.p
12, // llvm.ppc.altivec.vcmpnezw
12, // llvm.ppc.altivec.vcmpnezw.p
56, // llvm.ppc.altivec.vcntmbb
56, // llvm.ppc.altivec.vcntmbd
56, // llvm.ppc.altivec.vcntmbh
56, // llvm.ppc.altivec.vcntmbw
56, // llvm.ppc.altivec.vctsxs
56, // llvm.ppc.altivec.vctuxs
12, // llvm.ppc.altivec.vctzdm
12, // llvm.ppc.altivec.vctzlsbb
12, // llvm.ppc.altivec.vdivesd
12, // llvm.ppc.altivec.vdivesq
12, // llvm.ppc.altivec.vdivesw
12, // llvm.ppc.altivec.vdiveud
12, // llvm.ppc.altivec.vdiveuq
12, // llvm.ppc.altivec.vdiveuw
12, // llvm.ppc.altivec.vexpandbm
12, // llvm.ppc.altivec.vexpanddm
12, // llvm.ppc.altivec.vexpandhm
12, // llvm.ppc.altivec.vexpandqm
12, // llvm.ppc.altivec.vexpandwm
12, // llvm.ppc.altivec.vexptefp
12, // llvm.ppc.altivec.vextddvlx
12, // llvm.ppc.altivec.vextddvrx
12, // llvm.ppc.altivec.vextdubvlx
12, // llvm.ppc.altivec.vextdubvrx
12, // llvm.ppc.altivec.vextduhvlx
12, // llvm.ppc.altivec.vextduhvrx
12, // llvm.ppc.altivec.vextduwvlx
12, // llvm.ppc.altivec.vextduwvrx
12, // llvm.ppc.altivec.vextractbm
12, // llvm.ppc.altivec.vextractdm
12, // llvm.ppc.altivec.vextracthm
12, // llvm.ppc.altivec.vextractqm
12, // llvm.ppc.altivec.vextractwm
12, // llvm.ppc.altivec.vextsb2d
12, // llvm.ppc.altivec.vextsb2w
12, // llvm.ppc.altivec.vextsd2q
12, // llvm.ppc.altivec.vextsh2d
12, // llvm.ppc.altivec.vextsh2w
12, // llvm.ppc.altivec.vextsw2d
12, // llvm.ppc.altivec.vgbbd
56, // llvm.ppc.altivec.vgnb
12, // llvm.ppc.altivec.vinsblx
12, // llvm.ppc.altivec.vinsbrx
12, // llvm.ppc.altivec.vinsbvlx
12, // llvm.ppc.altivec.vinsbvrx
72, // llvm.ppc.altivec.vinsd
12, // llvm.ppc.altivec.vinsdlx
12, // llvm.ppc.altivec.vinsdrx
12, // llvm.ppc.altivec.vinshlx
12, // llvm.ppc.altivec.vinshrx
12, // llvm.ppc.altivec.vinshvlx
12, // llvm.ppc.altivec.vinshvrx
72, // llvm.ppc.altivec.vinsw
12, // llvm.ppc.altivec.vinswlx
12, // llvm.ppc.altivec.vinswrx
12, // llvm.ppc.altivec.vinswvlx
12, // llvm.ppc.altivec.vinswvrx
12, // llvm.ppc.altivec.vlogefp
12, // llvm.ppc.altivec.vmaddfp
12, // llvm.ppc.altivec.vmaxfp
12, // llvm.ppc.altivec.vmaxsb
12, // llvm.ppc.altivec.vmaxsd
12, // llvm.ppc.altivec.vmaxsh
12, // llvm.ppc.altivec.vmaxsw
12, // llvm.ppc.altivec.vmaxub
12, // llvm.ppc.altivec.vmaxud
12, // llvm.ppc.altivec.vmaxuh
12, // llvm.ppc.altivec.vmaxuw
65, // llvm.ppc.altivec.vmhaddshs
65, // llvm.ppc.altivec.vmhraddshs
12, // llvm.ppc.altivec.vminfp
12, // llvm.ppc.altivec.vminsb
12, // llvm.ppc.altivec.vminsd
12, // llvm.ppc.altivec.vminsh
12, // llvm.ppc.altivec.vminsw
12, // llvm.ppc.altivec.vminub
12, // llvm.ppc.altivec.vminud
12, // llvm.ppc.altivec.vminuh
12, // llvm.ppc.altivec.vminuw
12, // llvm.ppc.altivec.vmladduhm
12, // llvm.ppc.altivec.vmsumcud
12, // llvm.ppc.altivec.vmsummbm
12, // llvm.ppc.altivec.vmsumshm
65, // llvm.ppc.altivec.vmsumshs
12, // llvm.ppc.altivec.vmsumubm
12, // llvm.ppc.altivec.vmsumudm
12, // llvm.ppc.altivec.vmsumuhm
65, // llvm.ppc.altivec.vmsumuhs
12, // llvm.ppc.altivec.vmulesb
12, // llvm.ppc.altivec.vmulesd
12, // llvm.ppc.altivec.vmulesh
12, // llvm.ppc.altivec.vmulesw
12, // llvm.ppc.altivec.vmuleub
12, // llvm.ppc.altivec.vmuleud
12, // llvm.ppc.altivec.vmuleuh
12, // llvm.ppc.altivec.vmuleuw
12, // llvm.ppc.altivec.vmulhsd
12, // llvm.ppc.altivec.vmulhsw
12, // llvm.ppc.altivec.vmulhud
12, // llvm.ppc.altivec.vmulhuw
12, // llvm.ppc.altivec.vmulosb
12, // llvm.ppc.altivec.vmulosd
12, // llvm.ppc.altivec.vmulosh
12, // llvm.ppc.altivec.vmulosw
12, // llvm.ppc.altivec.vmuloub
12, // llvm.ppc.altivec.vmuloud
12, // llvm.ppc.altivec.vmulouh
12, // llvm.ppc.altivec.vmulouw
12, // llvm.ppc.altivec.vnmsubfp
12, // llvm.ppc.altivec.vpdepd
12, // llvm.ppc.altivec.vperm
12, // llvm.ppc.altivec.vpextd
12, // llvm.ppc.altivec.vpkpx
65, // llvm.ppc.altivec.vpksdss
65, // llvm.ppc.altivec.vpksdus
65, // llvm.ppc.altivec.vpkshss
65, // llvm.ppc.altivec.vpkshus
65, // llvm.ppc.altivec.vpkswss
65, // llvm.ppc.altivec.vpkswus
65, // llvm.ppc.altivec.vpkudus
65, // llvm.ppc.altivec.vpkuhus
65, // llvm.ppc.altivec.vpkuwus
12, // llvm.ppc.altivec.vprtybd
12, // llvm.ppc.altivec.vprtybq
12, // llvm.ppc.altivec.vprtybw
12, // llvm.ppc.altivec.vrefp
12, // llvm.ppc.altivec.vrfim
12, // llvm.ppc.altivec.vrfin
12, // llvm.ppc.altivec.vrfip
12, // llvm.ppc.altivec.vrfiz
12, // llvm.ppc.altivec.vrlb
12, // llvm.ppc.altivec.vrld
12, // llvm.ppc.altivec.vrldmi
12, // llvm.ppc.altivec.vrldnm
12, // llvm.ppc.altivec.vrlh
12, // llvm.ppc.altivec.vrlqmi
12, // llvm.ppc.altivec.vrlqnm
12, // llvm.ppc.altivec.vrlw
12, // llvm.ppc.altivec.vrlwmi
12, // llvm.ppc.altivec.vrlwnm
12, // llvm.ppc.altivec.vrsqrtefp
12, // llvm.ppc.altivec.vsel
12, // llvm.ppc.altivec.vsl
12, // llvm.ppc.altivec.vslb
72, // llvm.ppc.altivec.vsldbi
12, // llvm.ppc.altivec.vslh
12, // llvm.ppc.altivec.vslo
12, // llvm.ppc.altivec.vslv
12, // llvm.ppc.altivec.vslw
12, // llvm.ppc.altivec.vsr
12, // llvm.ppc.altivec.vsrab
12, // llvm.ppc.altivec.vsrah
12, // llvm.ppc.altivec.vsraw
12, // llvm.ppc.altivec.vsrb
72, // llvm.ppc.altivec.vsrdbi
12, // llvm.ppc.altivec.vsrh
12, // llvm.ppc.altivec.vsro
12, // llvm.ppc.altivec.vsrv
12, // llvm.ppc.altivec.vsrw
12, // llvm.ppc.altivec.vstribl
12, // llvm.ppc.altivec.vstribl.p
12, // llvm.ppc.altivec.vstribr
12, // llvm.ppc.altivec.vstribr.p
12, // llvm.ppc.altivec.vstrihl
12, // llvm.ppc.altivec.vstrihl.p
12, // llvm.ppc.altivec.vstrihr
12, // llvm.ppc.altivec.vstrihr.p
12, // llvm.ppc.altivec.vsubcuq
12, // llvm.ppc.altivec.vsubcuw
12, // llvm.ppc.altivec.vsubecuq
12, // llvm.ppc.altivec.vsubeuqm
12, // llvm.ppc.altivec.vsubsbs
12, // llvm.ppc.altivec.vsubshs
12, // llvm.ppc.altivec.vsubsws
12, // llvm.ppc.altivec.vsububs
12, // llvm.ppc.altivec.vsubuhs
12, // llvm.ppc.altivec.vsubuws
65, // llvm.ppc.altivec.vsum2sws
65, // llvm.ppc.altivec.vsum4sbs
65, // llvm.ppc.altivec.vsum4shs
65, // llvm.ppc.altivec.vsum4ubs
65, // llvm.ppc.altivec.vsumsws
12, // llvm.ppc.altivec.vupkhpx
12, // llvm.ppc.altivec.vupkhsb
12, // llvm.ppc.altivec.vupkhsh
12, // llvm.ppc.altivec.vupkhsw
12, // llvm.ppc.altivec.vupklpx
12, // llvm.ppc.altivec.vupklsb
12, // llvm.ppc.altivec.vupklsh
12, // llvm.ppc.altivec.vupklsw
12, // llvm.ppc.bpermd
7, // llvm.ppc.cfence
12, // llvm.ppc.cfuged
12, // llvm.ppc.cntlzdm
12, // llvm.ppc.cnttzdm
12, // llvm.ppc.darn
12, // llvm.ppc.darn32
12, // llvm.ppc.darnraw
7, // llvm.ppc.dcba
179, // llvm.ppc.dcbf
179, // llvm.ppc.dcbfl
179, // llvm.ppc.dcbflp
179, // llvm.ppc.dcbfps
7, // llvm.ppc.dcbi
7, // llvm.ppc.dcbst
179, // llvm.ppc.dcbstps
30, // llvm.ppc.dcbt
193, // llvm.ppc.dcbt.with.hint
30, // llvm.ppc.dcbtst
193, // llvm.ppc.dcbtst.with.hint
7, // llvm.ppc.dcbz
7, // llvm.ppc.dcbzl
12, // llvm.ppc.divde
12, // llvm.ppc.divdeu
12, // llvm.ppc.divf128.round.to.odd
12, // llvm.ppc.divwe
12, // llvm.ppc.divweu
7, // llvm.ppc.eieio
12, // llvm.ppc.fmaf128.round.to.odd
7, // llvm.ppc.get.texasr
7, // llvm.ppc.get.texasru
7, // llvm.ppc.get.tfhar
7, // llvm.ppc.get.tfiar
7, // llvm.ppc.isync
7, // llvm.ppc.lwsync
12, // llvm.ppc.mma.assemble.acc
12, // llvm.ppc.mma.disassemble.acc
12, // llvm.ppc.mma.pmxvbf16ger2
12, // llvm.ppc.mma.pmxvbf16ger2nn
12, // llvm.ppc.mma.pmxvbf16ger2np
12, // llvm.ppc.mma.pmxvbf16ger2pn
12, // llvm.ppc.mma.pmxvbf16ger2pp
12, // llvm.ppc.mma.pmxvf16ger2
12, // llvm.ppc.mma.pmxvf16ger2nn
12, // llvm.ppc.mma.pmxvf16ger2np
12, // llvm.ppc.mma.pmxvf16ger2pn
12, // llvm.ppc.mma.pmxvf16ger2pp
12, // llvm.ppc.mma.pmxvf32ger
12, // llvm.ppc.mma.pmxvf32gernn
12, // llvm.ppc.mma.pmxvf32gernp
12, // llvm.ppc.mma.pmxvf32gerpn
12, // llvm.ppc.mma.pmxvf32gerpp
12, // llvm.ppc.mma.pmxvf64ger
12, // llvm.ppc.mma.pmxvf64gernn
12, // llvm.ppc.mma.pmxvf64gernp
12, // llvm.ppc.mma.pmxvf64gerpn
12, // llvm.ppc.mma.pmxvf64gerpp
12, // llvm.ppc.mma.pmxvi16ger2
12, // llvm.ppc.mma.pmxvi16ger2pp
12, // llvm.ppc.mma.pmxvi16ger2s
12, // llvm.ppc.mma.pmxvi16ger2spp
12, // llvm.ppc.mma.pmxvi4ger8
12, // llvm.ppc.mma.pmxvi4ger8pp
12, // llvm.ppc.mma.pmxvi8ger4
12, // llvm.ppc.mma.pmxvi8ger4pp
12, // llvm.ppc.mma.pmxvi8ger4spp
12, // llvm.ppc.mma.xvbf16ger2
12, // llvm.ppc.mma.xvbf16ger2nn
12, // llvm.ppc.mma.xvbf16ger2np
12, // llvm.ppc.mma.xvbf16ger2pn
12, // llvm.ppc.mma.xvbf16ger2pp
12, // llvm.ppc.mma.xvf16ger2
12, // llvm.ppc.mma.xvf16ger2nn
12, // llvm.ppc.mma.xvf16ger2np
12, // llvm.ppc.mma.xvf16ger2pn
12, // llvm.ppc.mma.xvf16ger2pp
12, // llvm.ppc.mma.xvf32ger
12, // llvm.ppc.mma.xvf32gernn
12, // llvm.ppc.mma.xvf32gernp
12, // llvm.ppc.mma.xvf32gerpn
12, // llvm.ppc.mma.xvf32gerpp
12, // llvm.ppc.mma.xvf64ger
12, // llvm.ppc.mma.xvf64gernn
12, // llvm.ppc.mma.xvf64gernp
12, // llvm.ppc.mma.xvf64gerpn
12, // llvm.ppc.mma.xvf64gerpp
12, // llvm.ppc.mma.xvi16ger2
12, // llvm.ppc.mma.xvi16ger2pp
12, // llvm.ppc.mma.xvi16ger2s
12, // llvm.ppc.mma.xvi16ger2spp
12, // llvm.ppc.mma.xvi4ger8
12, // llvm.ppc.mma.xvi4ger8pp
12, // llvm.ppc.mma.xvi8ger4
12, // llvm.ppc.mma.xvi8ger4pp
12, // llvm.ppc.mma.xvi8ger4spp
12, // llvm.ppc.mma.xxmfacc
12, // llvm.ppc.mma.xxmtacc
12, // llvm.ppc.mma.xxsetaccz
12, // llvm.ppc.mulf128.round.to.odd
12, // llvm.ppc.pdepd
12, // llvm.ppc.pextd
12, // llvm.ppc.popcntb
12, // llvm.ppc.readflm
12, // llvm.ppc.scalar.extract.expq
12, // llvm.ppc.scalar.insert.exp.qp
7, // llvm.ppc.set.texasr
7, // llvm.ppc.set.texasru
7, // llvm.ppc.set.tfhar
7, // llvm.ppc.set.tfiar
7, // llvm.ppc.setflm
7, // llvm.ppc.setrnd
12, // llvm.ppc.sqrtf128.round.to.odd
12, // llvm.ppc.subf128.round.to.odd
7, // llvm.ppc.sync
7, // llvm.ppc.tabort
7, // llvm.ppc.tabortdc
7, // llvm.ppc.tabortdci
7, // llvm.ppc.tabortwc
7, // llvm.ppc.tabortwci
84, // llvm.ppc.tbegin
7, // llvm.ppc.tcheck
84, // llvm.ppc.tend
7, // llvm.ppc.tendall
7, // llvm.ppc.trechkpt
7, // llvm.ppc.treclaim
7, // llvm.ppc.tresume
12, // llvm.ppc.truncf128.round.to.odd
7, // llvm.ppc.tsr
7, // llvm.ppc.tsuspend
7, // llvm.ppc.ttest
12, // llvm.ppc.vsx.assemble.pair
12, // llvm.ppc.vsx.disassemble.pair
3, // llvm.ppc.vsx.lxvd2x
3, // llvm.ppc.vsx.lxvd2x.be
3, // llvm.ppc.vsx.lxvl
3, // llvm.ppc.vsx.lxvll
3, // llvm.ppc.vsx.lxvp
3, // llvm.ppc.vsx.lxvw4x
3, // llvm.ppc.vsx.lxvw4x.be
81, // llvm.ppc.vsx.stxvd2x
81, // llvm.ppc.vsx.stxvd2x.be
81, // llvm.ppc.vsx.stxvl
81, // llvm.ppc.vsx.stxvll
81, // llvm.ppc.vsx.stxvp
81, // llvm.ppc.vsx.stxvw4x
81, // llvm.ppc.vsx.stxvw4x.be
12, // llvm.ppc.vsx.xsmaxdp
12, // llvm.ppc.vsx.xsmindp
12, // llvm.ppc.vsx.xvcmpeqdp
12, // llvm.ppc.vsx.xvcmpeqdp.p
12, // llvm.ppc.vsx.xvcmpeqsp
12, // llvm.ppc.vsx.xvcmpeqsp.p
12, // llvm.ppc.vsx.xvcmpgedp
12, // llvm.ppc.vsx.xvcmpgedp.p
12, // llvm.ppc.vsx.xvcmpgesp
12, // llvm.ppc.vsx.xvcmpgesp.p
12, // llvm.ppc.vsx.xvcmpgtdp
12, // llvm.ppc.vsx.xvcmpgtdp.p
12, // llvm.ppc.vsx.xvcmpgtsp
12, // llvm.ppc.vsx.xvcmpgtsp.p
12, // llvm.ppc.vsx.xvcvbf16spn
12, // llvm.ppc.vsx.xvcvdpsp
12, // llvm.ppc.vsx.xvcvdpsxws
12, // llvm.ppc.vsx.xvcvdpuxws
12, // llvm.ppc.vsx.xvcvhpsp
12, // llvm.ppc.vsx.xvcvspbf16
12, // llvm.ppc.vsx.xvcvspdp
12, // llvm.ppc.vsx.xvcvsphp
12, // llvm.ppc.vsx.xvcvsxdsp
12, // llvm.ppc.vsx.xvcvsxwdp
12, // llvm.ppc.vsx.xvcvuxdsp
12, // llvm.ppc.vsx.xvcvuxwdp
12, // llvm.ppc.vsx.xvdivdp
12, // llvm.ppc.vsx.xvdivsp
12, // llvm.ppc.vsx.xviexpdp
12, // llvm.ppc.vsx.xviexpsp
12, // llvm.ppc.vsx.xvmaxdp
12, // llvm.ppc.vsx.xvmaxsp
12, // llvm.ppc.vsx.xvmindp
12, // llvm.ppc.vsx.xvminsp
12, // llvm.ppc.vsx.xvrdpip
12, // llvm.ppc.vsx.xvredp
12, // llvm.ppc.vsx.xvresp
12, // llvm.ppc.vsx.xvrspip
12, // llvm.ppc.vsx.xvrsqrtedp
12, // llvm.ppc.vsx.xvrsqrtesp
12, // llvm.ppc.vsx.xvtdivdp
12, // llvm.ppc.vsx.xvtdivsp
12, // llvm.ppc.vsx.xvtlsbb
12, // llvm.ppc.vsx.xvtsqrtdp
12, // llvm.ppc.vsx.xvtsqrtsp
56, // llvm.ppc.vsx.xvtstdcdp
56, // llvm.ppc.vsx.xvtstdcsp
12, // llvm.ppc.vsx.xvxexpdp
12, // llvm.ppc.vsx.xvxexpsp
12, // llvm.ppc.vsx.xvxsigdp
12, // llvm.ppc.vsx.xvxsigsp
12, // llvm.ppc.vsx.xxblendvb
12, // llvm.ppc.vsx.xxblendvd
12, // llvm.ppc.vsx.xxblendvh
12, // llvm.ppc.vsx.xxblendvw
73, // llvm.ppc.vsx.xxeval
12, // llvm.ppc.vsx.xxextractuw
12, // llvm.ppc.vsx.xxgenpcvbm
12, // llvm.ppc.vsx.xxgenpcvdm
12, // llvm.ppc.vsx.xxgenpcvhm
12, // llvm.ppc.vsx.xxgenpcvwm
12, // llvm.ppc.vsx.xxinsertw
12, // llvm.ppc.vsx.xxleqv
73, // llvm.ppc.vsx.xxpermx
85, // llvm.r600.cube
145, // llvm.r600.ddx
145, // llvm.r600.ddy
85, // llvm.r600.dot4
101, // llvm.r600.group.barrier
85, // llvm.r600.implicitarg.ptr
156, // llvm.r600.kill
156, // llvm.r600.rat.store.typed
85, // llvm.r600.read.global.size.x
85, // llvm.r600.read.global.size.y
85, // llvm.r600.read.global.size.z
85, // llvm.r600.read.local.size.x
85, // llvm.r600.read.local.size.y
85, // llvm.r600.read.local.size.z
85, // llvm.r600.read.ngroups.x
85, // llvm.r600.read.ngroups.y
85, // llvm.r600.read.ngroups.z
85, // llvm.r600.read.tgid.x
85, // llvm.r600.read.tgid.y
85, // llvm.r600.read.tgid.z
85, // llvm.r600.read.tidig.x
85, // llvm.r600.read.tidig.y
85, // llvm.r600.read.tidig.z
85, // llvm.r600.recipsqrt.clamped
85, // llvm.r600.recipsqrt.ieee
156, // llvm.r600.store.stream.output
156, // llvm.r600.store.swizzle
145, // llvm.r600.tex
145, // llvm.r600.texc
145, // llvm.r600.txb
145, // llvm.r600.txbc
145, // llvm.r600.txf
145, // llvm.r600.txl
145, // llvm.r600.txlc
145, // llvm.r600.txq
194, // llvm.riscv.masked.atomicrmw.add.i32
194, // llvm.riscv.masked.atomicrmw.add.i64
195, // llvm.riscv.masked.atomicrmw.max.i32
195, // llvm.riscv.masked.atomicrmw.max.i64
195, // llvm.riscv.masked.atomicrmw.min.i32
195, // llvm.riscv.masked.atomicrmw.min.i64
194, // llvm.riscv.masked.atomicrmw.nand.i32
194, // llvm.riscv.masked.atomicrmw.nand.i64
194, // llvm.riscv.masked.atomicrmw.sub.i32
194, // llvm.riscv.masked.atomicrmw.sub.i64
194, // llvm.riscv.masked.atomicrmw.umax.i32
194, // llvm.riscv.masked.atomicrmw.umax.i64
194, // llvm.riscv.masked.atomicrmw.umin.i32
194, // llvm.riscv.masked.atomicrmw.umin.i64
194, // llvm.riscv.masked.atomicrmw.xchg.i32
194, // llvm.riscv.masked.atomicrmw.xchg.i64
195, // llvm.riscv.masked.cmpxchg.i32
195, // llvm.riscv.masked.cmpxchg.i64
65, // llvm.riscv.vaadd
65, // llvm.riscv.vaadd.mask
65, // llvm.riscv.vaaddu
65, // llvm.riscv.vaaddu.mask
12, // llvm.riscv.vadc
12, // llvm.riscv.vadd
12, // llvm.riscv.vadd.mask
12, // llvm.riscv.vand
12, // llvm.riscv.vand.mask
65, // llvm.riscv.vasub
65, // llvm.riscv.vasub.mask
65, // llvm.riscv.vasubu
65, // llvm.riscv.vasubu.mask
12, // llvm.riscv.vcompress.mask
12, // llvm.riscv.vdiv
12, // llvm.riscv.vdiv.mask
12, // llvm.riscv.vdivu
12, // llvm.riscv.vdivu.mask
12, // llvm.riscv.vfadd
12, // llvm.riscv.vfadd.mask
12, // llvm.riscv.vfcvt.f.x.v
12, // llvm.riscv.vfcvt.f.x.v.mask
12, // llvm.riscv.vfcvt.f.xu.v
12, // llvm.riscv.vfcvt.f.xu.v.mask
12, // llvm.riscv.vfcvt.rtz.x.f.v
12, // llvm.riscv.vfcvt.rtz.x.f.v.mask
12, // llvm.riscv.vfcvt.rtz.xu.f.v
12, // llvm.riscv.vfcvt.rtz.xu.f.v.mask
12, // llvm.riscv.vfcvt.x.f.v
12, // llvm.riscv.vfcvt.x.f.v.mask
12, // llvm.riscv.vfcvt.xu.f.v
12, // llvm.riscv.vfcvt.xu.f.v.mask
12, // llvm.riscv.vfdiv
12, // llvm.riscv.vfdiv.mask
12, // llvm.riscv.vfirst
12, // llvm.riscv.vfirst.mask
12, // llvm.riscv.vfmacc
12, // llvm.riscv.vfmacc.mask
12, // llvm.riscv.vfmadd
12, // llvm.riscv.vfmadd.mask
12, // llvm.riscv.vfmax
12, // llvm.riscv.vfmax.mask
12, // llvm.riscv.vfmerge
12, // llvm.riscv.vfmin
12, // llvm.riscv.vfmin.mask
12, // llvm.riscv.vfmsac
12, // llvm.riscv.vfmsac.mask
12, // llvm.riscv.vfmsub
12, // llvm.riscv.vfmsub.mask
12, // llvm.riscv.vfmul
12, // llvm.riscv.vfmul.mask
12, // llvm.riscv.vfmv.f.s
12, // llvm.riscv.vfmv.s.f
12, // llvm.riscv.vfmv.v.f
12, // llvm.riscv.vfncvt.f.f.w
12, // llvm.riscv.vfncvt.f.f.w.mask
12, // llvm.riscv.vfncvt.f.x.w
12, // llvm.riscv.vfncvt.f.x.w.mask
12, // llvm.riscv.vfncvt.f.xu.w
12, // llvm.riscv.vfncvt.f.xu.w.mask
12, // llvm.riscv.vfncvt.rod.f.f.w
12, // llvm.riscv.vfncvt.rod.f.f.w.mask
12, // llvm.riscv.vfncvt.rtz.x.f.w
12, // llvm.riscv.vfncvt.rtz.x.f.w.mask
12, // llvm.riscv.vfncvt.rtz.xu.f.w
12, // llvm.riscv.vfncvt.rtz.xu.f.w.mask
12, // llvm.riscv.vfncvt.x.f.w
12, // llvm.riscv.vfncvt.x.f.w.mask
12, // llvm.riscv.vfncvt.xu.f.w
12, // llvm.riscv.vfncvt.xu.f.w.mask
12, // llvm.riscv.vfnmacc
12, // llvm.riscv.vfnmacc.mask
12, // llvm.riscv.vfnmadd
12, // llvm.riscv.vfnmadd.mask
12, // llvm.riscv.vfnmsac
12, // llvm.riscv.vfnmsac.mask
12, // llvm.riscv.vfnmsub
12, // llvm.riscv.vfnmsub.mask
12, // llvm.riscv.vfrdiv
12, // llvm.riscv.vfrdiv.mask
12, // llvm.riscv.vfredmax
12, // llvm.riscv.vfredmax.mask
12, // llvm.riscv.vfredmin
12, // llvm.riscv.vfredmin.mask
12, // llvm.riscv.vfredosum
12, // llvm.riscv.vfredosum.mask
12, // llvm.riscv.vfredsum
12, // llvm.riscv.vfredsum.mask
12, // llvm.riscv.vfrsub
12, // llvm.riscv.vfrsub.mask
12, // llvm.riscv.vfsgnj
12, // llvm.riscv.vfsgnj.mask
12, // llvm.riscv.vfsgnjn
12, // llvm.riscv.vfsgnjn.mask
12, // llvm.riscv.vfsgnjx
12, // llvm.riscv.vfsgnjx.mask
12, // llvm.riscv.vfslide1down
12, // llvm.riscv.vfslide1down.mask
12, // llvm.riscv.vfslide1up
12, // llvm.riscv.vfslide1up.mask
12, // llvm.riscv.vfsqrt
12, // llvm.riscv.vfsqrt.mask
12, // llvm.riscv.vfsub
12, // llvm.riscv.vfsub.mask
12, // llvm.riscv.vfwadd
12, // llvm.riscv.vfwadd.mask
12, // llvm.riscv.vfwadd.w
12, // llvm.riscv.vfwadd.w.mask
12, // llvm.riscv.vfwcvt.f.f.v
12, // llvm.riscv.vfwcvt.f.f.v.mask
12, // llvm.riscv.vfwcvt.f.x.v
12, // llvm.riscv.vfwcvt.f.x.v.mask
12, // llvm.riscv.vfwcvt.f.xu.v
12, // llvm.riscv.vfwcvt.f.xu.v.mask
12, // llvm.riscv.vfwcvt.rtz.x.f.v
12, // llvm.riscv.vfwcvt.rtz.x.f.v.mask
12, // llvm.riscv.vfwcvt.rtz.xu.f.v
12, // llvm.riscv.vfwcvt.rtz.xu.f.v.mask
12, // llvm.riscv.vfwcvt.x.f.v
12, // llvm.riscv.vfwcvt.x.f.v.mask
12, // llvm.riscv.vfwcvt.xu.f.v
12, // llvm.riscv.vfwcvt.xu.f.v.mask
12, // llvm.riscv.vfwmacc
12, // llvm.riscv.vfwmacc.mask
12, // llvm.riscv.vfwmsac
12, // llvm.riscv.vfwmsac.mask
12, // llvm.riscv.vfwmul
12, // llvm.riscv.vfwmul.mask
12, // llvm.riscv.vfwnmacc
12, // llvm.riscv.vfwnmacc.mask
12, // llvm.riscv.vfwnmsac
12, // llvm.riscv.vfwnmsac.mask
12, // llvm.riscv.vfwredosum
12, // llvm.riscv.vfwredosum.mask
12, // llvm.riscv.vfwredsum
12, // llvm.riscv.vfwredsum.mask
12, // llvm.riscv.vfwsub
12, // llvm.riscv.vfwsub.mask
12, // llvm.riscv.vfwsub.w
12, // llvm.riscv.vfwsub.w.mask
12, // llvm.riscv.vid
12, // llvm.riscv.vid.mask
12, // llvm.riscv.viota
12, // llvm.riscv.viota.mask
196, // llvm.riscv.vle
197, // llvm.riscv.vle.mask
196, // llvm.riscv.vleff
197, // llvm.riscv.vleff.mask
196, // llvm.riscv.vlse
197, // llvm.riscv.vlse.mask
196, // llvm.riscv.vlxe
197, // llvm.riscv.vlxe.mask
12, // llvm.riscv.vmacc
12, // llvm.riscv.vmacc.mask
12, // llvm.riscv.vmadc
12, // llvm.riscv.vmadc.carry.in
12, // llvm.riscv.vmadd
12, // llvm.riscv.vmadd.mask
12, // llvm.riscv.vmand
12, // llvm.riscv.vmandnot
12, // llvm.riscv.vmax
12, // llvm.riscv.vmax.mask
12, // llvm.riscv.vmaxu
12, // llvm.riscv.vmaxu.mask
12, // llvm.riscv.vmclr
12, // llvm.riscv.vmerge
12, // llvm.riscv.vmfeq
12, // llvm.riscv.vmfeq.mask
12, // llvm.riscv.vmfge
12, // llvm.riscv.vmfge.mask
12, // llvm.riscv.vmfgt
12, // llvm.riscv.vmfgt.mask
12, // llvm.riscv.vmfle
12, // llvm.riscv.vmfle.mask
12, // llvm.riscv.vmflt
12, // llvm.riscv.vmflt.mask
12, // llvm.riscv.vmfne
12, // llvm.riscv.vmfne.mask
12, // llvm.riscv.vmin
12, // llvm.riscv.vmin.mask
12, // llvm.riscv.vminu
12, // llvm.riscv.vminu.mask
12, // llvm.riscv.vmnand
12, // llvm.riscv.vmnor
12, // llvm.riscv.vmor
12, // llvm.riscv.vmornot
12, // llvm.riscv.vmsbc
12, // llvm.riscv.vmsbc.borrow.in
12, // llvm.riscv.vmsbf
12, // llvm.riscv.vmsbf.mask
12, // llvm.riscv.vmseq
12, // llvm.riscv.vmseq.mask
12, // llvm.riscv.vmset
12, // llvm.riscv.vmsgt
12, // llvm.riscv.vmsgt.mask
12, // llvm.riscv.vmsgtu
12, // llvm.riscv.vmsgtu.mask
12, // llvm.riscv.vmsif
12, // llvm.riscv.vmsif.mask
12, // llvm.riscv.vmsle
12, // llvm.riscv.vmsle.mask
12, // llvm.riscv.vmsleu
12, // llvm.riscv.vmsleu.mask
12, // llvm.riscv.vmslt
12, // llvm.riscv.vmslt.mask
12, // llvm.riscv.vmsltu
12, // llvm.riscv.vmsltu.mask
12, // llvm.riscv.vmsne
12, // llvm.riscv.vmsne.mask
12, // llvm.riscv.vmsof
12, // llvm.riscv.vmsof.mask
12, // llvm.riscv.vmul
12, // llvm.riscv.vmul.mask
12, // llvm.riscv.vmulh
12, // llvm.riscv.vmulh.mask
12, // llvm.riscv.vmulhsu
12, // llvm.riscv.vmulhsu.mask
12, // llvm.riscv.vmulhu
12, // llvm.riscv.vmulhu.mask
12, // llvm.riscv.vmv.s.x
12, // llvm.riscv.vmv.v.v
12, // llvm.riscv.vmv.v.x
12, // llvm.riscv.vmv.x.s
12, // llvm.riscv.vmxnor
12, // llvm.riscv.vmxor
65, // llvm.riscv.vnclip
65, // llvm.riscv.vnclip.mask
65, // llvm.riscv.vnclipu
65, // llvm.riscv.vnclipu.mask
12, // llvm.riscv.vnmsac
12, // llvm.riscv.vnmsac.mask
12, // llvm.riscv.vnmsub
12, // llvm.riscv.vnmsub.mask
12, // llvm.riscv.vnsra
12, // llvm.riscv.vnsra.mask
12, // llvm.riscv.vnsrl
12, // llvm.riscv.vnsrl.mask
12, // llvm.riscv.vor
12, // llvm.riscv.vor.mask
12, // llvm.riscv.vpopc
12, // llvm.riscv.vpopc.mask
12, // llvm.riscv.vredand
12, // llvm.riscv.vredand.mask
12, // llvm.riscv.vredmax
12, // llvm.riscv.vredmax.mask
12, // llvm.riscv.vredmaxu
12, // llvm.riscv.vredmaxu.mask
12, // llvm.riscv.vredmin
12, // llvm.riscv.vredmin.mask
12, // llvm.riscv.vredminu
12, // llvm.riscv.vredminu.mask
12, // llvm.riscv.vredor
12, // llvm.riscv.vredor.mask
12, // llvm.riscv.vredsum
12, // llvm.riscv.vredsum.mask
12, // llvm.riscv.vredxor
12, // llvm.riscv.vredxor.mask
12, // llvm.riscv.vrem
12, // llvm.riscv.vrem.mask
12, // llvm.riscv.vremu
12, // llvm.riscv.vremu.mask
12, // llvm.riscv.vrgather
12, // llvm.riscv.vrgather.mask
12, // llvm.riscv.vrsub
12, // llvm.riscv.vrsub.mask
65, // llvm.riscv.vsadd
65, // llvm.riscv.vsadd.mask
65, // llvm.riscv.vsaddu
65, // llvm.riscv.vsaddu.mask
12, // llvm.riscv.vsbc
198, // llvm.riscv.vse
198, // llvm.riscv.vse.mask
199, // llvm.riscv.vsetvli
200, // llvm.riscv.vsetvlimax
12, // llvm.riscv.vsext
12, // llvm.riscv.vsext.mask
12, // llvm.riscv.vslide1down
12, // llvm.riscv.vslide1down.mask
12, // llvm.riscv.vslide1up
12, // llvm.riscv.vslide1up.mask
12, // llvm.riscv.vslidedown
12, // llvm.riscv.vslidedown.mask
12, // llvm.riscv.vslideup
12, // llvm.riscv.vslideup.mask
12, // llvm.riscv.vsll
12, // llvm.riscv.vsll.mask
65, // llvm.riscv.vsmul
65, // llvm.riscv.vsmul.mask
12, // llvm.riscv.vsra
12, // llvm.riscv.vsra.mask
12, // llvm.riscv.vsrl
12, // llvm.riscv.vsrl.mask
198, // llvm.riscv.vsse
198, // llvm.riscv.vsse.mask
65, // llvm.riscv.vssra
65, // llvm.riscv.vssra.mask
65, // llvm.riscv.vssrl
65, // llvm.riscv.vssrl.mask
65, // llvm.riscv.vssub
65, // llvm.riscv.vssub.mask
65, // llvm.riscv.vssubu
65, // llvm.riscv.vssubu.mask
12, // llvm.riscv.vsub
12, // llvm.riscv.vsub.mask
198, // llvm.riscv.vsuxe
198, // llvm.riscv.vsuxe.mask
198, // llvm.riscv.vsxe
198, // llvm.riscv.vsxe.mask
12, // llvm.riscv.vwadd
12, // llvm.riscv.vwadd.mask
12, // llvm.riscv.vwadd.w
12, // llvm.riscv.vwadd.w.mask
12, // llvm.riscv.vwaddu
12, // llvm.riscv.vwaddu.mask
12, // llvm.riscv.vwaddu.w
12, // llvm.riscv.vwaddu.w.mask
12, // llvm.riscv.vwmacc
12, // llvm.riscv.vwmacc.mask
12, // llvm.riscv.vwmaccsu
12, // llvm.riscv.vwmaccsu.mask
12, // llvm.riscv.vwmaccu
12, // llvm.riscv.vwmaccu.mask
12, // llvm.riscv.vwmaccus
12, // llvm.riscv.vwmaccus.mask
12, // llvm.riscv.vwmul
12, // llvm.riscv.vwmul.mask
12, // llvm.riscv.vwmulsu
12, // llvm.riscv.vwmulsu.mask
12, // llvm.riscv.vwmulu
12, // llvm.riscv.vwmulu.mask
12, // llvm.riscv.vwredsum
12, // llvm.riscv.vwredsum.mask
12, // llvm.riscv.vwredsumu
12, // llvm.riscv.vwredsumu.mask
12, // llvm.riscv.vwsub
12, // llvm.riscv.vwsub.mask
12, // llvm.riscv.vwsub.w
12, // llvm.riscv.vwsub.w.mask
12, // llvm.riscv.vwsubu
12, // llvm.riscv.vwsubu.mask
12, // llvm.riscv.vwsubu.w
12, // llvm.riscv.vwsubu.w.mask
12, // llvm.riscv.vxor
12, // llvm.riscv.vxor.mask
12, // llvm.riscv.vzext
12, // llvm.riscv.vzext.mask
7, // llvm.s390.efpc
12, // llvm.s390.etnd
56, // llvm.s390.lcbb
81, // llvm.s390.ntstg
7, // llvm.s390.ppa.txassist
7, // llvm.s390.sfpc
201, // llvm.s390.tabort
202, // llvm.s390.tbegin
202, // llvm.s390.tbegin.nofloat
202, // llvm.s390.tbeginc
12, // llvm.s390.tdc
7, // llvm.s390.tend
12, // llvm.s390.vaccb
12, // llvm.s390.vacccq
12, // llvm.s390.vaccf
12, // llvm.s390.vaccg
12, // llvm.s390.vacch
12, // llvm.s390.vaccq
12, // llvm.s390.vacq
12, // llvm.s390.vaq
12, // llvm.s390.vavgb
12, // llvm.s390.vavgf
12, // llvm.s390.vavgg
12, // llvm.s390.vavgh
12, // llvm.s390.vavglb
12, // llvm.s390.vavglf
12, // llvm.s390.vavglg
12, // llvm.s390.vavglh
12, // llvm.s390.vbperm
12, // llvm.s390.vceqbs
12, // llvm.s390.vceqfs
12, // llvm.s390.vceqgs
12, // llvm.s390.vceqhs
12, // llvm.s390.vchbs
12, // llvm.s390.vchfs
12, // llvm.s390.vchgs
12, // llvm.s390.vchhs
12, // llvm.s390.vchlbs
12, // llvm.s390.vchlfs
12, // llvm.s390.vchlgs
12, // llvm.s390.vchlhs
12, // llvm.s390.vcksm
73, // llvm.s390.verimb
73, // llvm.s390.verimf
73, // llvm.s390.verimg
73, // llvm.s390.verimh
12, // llvm.s390.verllb
12, // llvm.s390.verllf
12, // llvm.s390.verllg
12, // llvm.s390.verllh
12, // llvm.s390.verllvb
12, // llvm.s390.verllvf
12, // llvm.s390.verllvg
12, // llvm.s390.verllvh
72, // llvm.s390.vfaeb
72, // llvm.s390.vfaebs
72, // llvm.s390.vfaef
72, // llvm.s390.vfaefs
72, // llvm.s390.vfaeh
72, // llvm.s390.vfaehs
72, // llvm.s390.vfaezb
72, // llvm.s390.vfaezbs
72, // llvm.s390.vfaezf
72, // llvm.s390.vfaezfs
72, // llvm.s390.vfaezh
72, // llvm.s390.vfaezhs
12, // llvm.s390.vfcedbs
12, // llvm.s390.vfcesbs
12, // llvm.s390.vfchdbs
12, // llvm.s390.vfchedbs
12, // llvm.s390.vfchesbs
12, // llvm.s390.vfchsbs
12, // llvm.s390.vfeeb
12, // llvm.s390.vfeebs
12, // llvm.s390.vfeef
12, // llvm.s390.vfeefs
12, // llvm.s390.vfeeh
12, // llvm.s390.vfeehs
12, // llvm.s390.vfeezb
12, // llvm.s390.vfeezbs
12, // llvm.s390.vfeezf
12, // llvm.s390.vfeezfs
12, // llvm.s390.vfeezh
12, // llvm.s390.vfeezhs
12, // llvm.s390.vfeneb
12, // llvm.s390.vfenebs
12, // llvm.s390.vfenef
12, // llvm.s390.vfenefs
12, // llvm.s390.vfeneh
12, // llvm.s390.vfenehs
12, // llvm.s390.vfenezb
12, // llvm.s390.vfenezbs
12, // llvm.s390.vfenezf
12, // llvm.s390.vfenezfs
12, // llvm.s390.vfenezh
12, // llvm.s390.vfenezhs
80, // llvm.s390.vfidb
80, // llvm.s390.vfisb
72, // llvm.s390.vfmaxdb
72, // llvm.s390.vfmaxsb
72, // llvm.s390.vfmindb
72, // llvm.s390.vfminsb
56, // llvm.s390.vftcidb
56, // llvm.s390.vftcisb
12, // llvm.s390.vgfmab
12, // llvm.s390.vgfmaf
12, // llvm.s390.vgfmag
12, // llvm.s390.vgfmah
12, // llvm.s390.vgfmb
12, // llvm.s390.vgfmf
12, // llvm.s390.vgfmg
12, // llvm.s390.vgfmh
12, // llvm.s390.vistrb
12, // llvm.s390.vistrbs
12, // llvm.s390.vistrf
12, // llvm.s390.vistrfs
12, // llvm.s390.vistrh
12, // llvm.s390.vistrhs
82, // llvm.s390.vlbb
3, // llvm.s390.vll
3, // llvm.s390.vlrl
12, // llvm.s390.vmaeb
12, // llvm.s390.vmaef
12, // llvm.s390.vmaeh
12, // llvm.s390.vmahb
12, // llvm.s390.vmahf
12, // llvm.s390.vmahh
12, // llvm.s390.vmaleb
12, // llvm.s390.vmalef
12, // llvm.s390.vmaleh
12, // llvm.s390.vmalhb
12, // llvm.s390.vmalhf
12, // llvm.s390.vmalhh
12, // llvm.s390.vmalob
12, // llvm.s390.vmalof
12, // llvm.s390.vmaloh
12, // llvm.s390.vmaob
12, // llvm.s390.vmaof
12, // llvm.s390.vmaoh
12, // llvm.s390.vmeb
12, // llvm.s390.vmef
12, // llvm.s390.vmeh
12, // llvm.s390.vmhb
12, // llvm.s390.vmhf
12, // llvm.s390.vmhh
12, // llvm.s390.vmleb
12, // llvm.s390.vmlef
12, // llvm.s390.vmleh
12, // llvm.s390.vmlhb
12, // llvm.s390.vmlhf
12, // llvm.s390.vmlhh
12, // llvm.s390.vmlob
12, // llvm.s390.vmlof
12, // llvm.s390.vmloh
12, // llvm.s390.vmob
12, // llvm.s390.vmof
12, // llvm.s390.vmoh
73, // llvm.s390.vmslg
72, // llvm.s390.vpdi
12, // llvm.s390.vperm
12, // llvm.s390.vpklsf
12, // llvm.s390.vpklsfs
12, // llvm.s390.vpklsg
12, // llvm.s390.vpklsgs
12, // llvm.s390.vpklsh
12, // llvm.s390.vpklshs
12, // llvm.s390.vpksf
12, // llvm.s390.vpksfs
12, // llvm.s390.vpksg
12, // llvm.s390.vpksgs
12, // llvm.s390.vpksh
12, // llvm.s390.vpkshs
12, // llvm.s390.vsbcbiq
12, // llvm.s390.vsbiq
12, // llvm.s390.vscbib
12, // llvm.s390.vscbif
12, // llvm.s390.vscbig
12, // llvm.s390.vscbih
12, // llvm.s390.vscbiq
12, // llvm.s390.vsl
12, // llvm.s390.vslb
72, // llvm.s390.vsld
72, // llvm.s390.vsldb
12, // llvm.s390.vsq
12, // llvm.s390.vsra
12, // llvm.s390.vsrab
72, // llvm.s390.vsrd
12, // llvm.s390.vsrl
12, // llvm.s390.vsrlb
81, // llvm.s390.vstl
73, // llvm.s390.vstrcb
73, // llvm.s390.vstrcbs
73, // llvm.s390.vstrcf
73, // llvm.s390.vstrcfs
73, // llvm.s390.vstrch
73, // llvm.s390.vstrchs
73, // llvm.s390.vstrczb
73, // llvm.s390.vstrczbs
73, // llvm.s390.vstrczf
73, // llvm.s390.vstrczfs
73, // llvm.s390.vstrczh
73, // llvm.s390.vstrczhs
81, // llvm.s390.vstrl
12, // llvm.s390.vstrsb
12, // llvm.s390.vstrsf
12, // llvm.s390.vstrsh
12, // llvm.s390.vstrszb
12, // llvm.s390.vstrszf
12, // llvm.s390.vstrszh
12, // llvm.s390.vsumb
12, // llvm.s390.vsumgf
12, // llvm.s390.vsumgh
12, // llvm.s390.vsumh
12, // llvm.s390.vsumqf
12, // llvm.s390.vsumqg
12, // llvm.s390.vtm
12, // llvm.s390.vuphb
12, // llvm.s390.vuphf
12, // llvm.s390.vuphh
12, // llvm.s390.vuplb
12, // llvm.s390.vuplf
12, // llvm.s390.vuplhb
12, // llvm.s390.vuplhf
12, // llvm.s390.vuplhh
12, // llvm.s390.vuplhw
12, // llvm.s390.vupllb
12, // llvm.s390.vupllf
12, // llvm.s390.vupllh
12, // llvm.ve.vl.andm.MMM
12, // llvm.ve.vl.andm.mmm
12, // llvm.ve.vl.eqvm.MMM
12, // llvm.ve.vl.eqvm.mmm
12, // llvm.ve.vl.lsv.vvss
12, // llvm.ve.vl.lvm.MMss
12, // llvm.ve.vl.lvm.mmss
12, // llvm.ve.vl.lvsd.svs
12, // llvm.ve.vl.lvsl.svs
12, // llvm.ve.vl.lvss.svs
12, // llvm.ve.vl.lzvm.sml
12, // llvm.ve.vl.negm.MM
12, // llvm.ve.vl.negm.mm
12, // llvm.ve.vl.nndm.MMM
12, // llvm.ve.vl.nndm.mmm
12, // llvm.ve.vl.orm.MMM
12, // llvm.ve.vl.orm.mmm
12, // llvm.ve.vl.pcvm.sml
203, // llvm.ve.vl.pfchv.ssl
203, // llvm.ve.vl.pfchvnc.ssl
12, // llvm.ve.vl.pvadds.vsvMvl
12, // llvm.ve.vl.pvadds.vsvl
12, // llvm.ve.vl.pvadds.vsvvl
12, // llvm.ve.vl.pvadds.vvvMvl
12, // llvm.ve.vl.pvadds.vvvl
12, // llvm.ve.vl.pvadds.vvvvl
12, // llvm.ve.vl.pvaddu.vsvMvl
12, // llvm.ve.vl.pvaddu.vsvl
12, // llvm.ve.vl.pvaddu.vsvvl
12, // llvm.ve.vl.pvaddu.vvvMvl
12, // llvm.ve.vl.pvaddu.vvvl
12, // llvm.ve.vl.pvaddu.vvvvl
12, // llvm.ve.vl.pvand.vsvMvl
12, // llvm.ve.vl.pvand.vsvl
12, // llvm.ve.vl.pvand.vsvvl
12, // llvm.ve.vl.pvand.vvvMvl
12, // llvm.ve.vl.pvand.vvvl
12, // llvm.ve.vl.pvand.vvvvl
12, // llvm.ve.vl.pvbrd.vsMvl
12, // llvm.ve.vl.pvbrd.vsl
12, // llvm.ve.vl.pvbrd.vsvl
12, // llvm.ve.vl.pvcmps.vsvMvl
12, // llvm.ve.vl.pvcmps.vsvl
12, // llvm.ve.vl.pvcmps.vsvvl
12, // llvm.ve.vl.pvcmps.vvvMvl
12, // llvm.ve.vl.pvcmps.vvvl
12, // llvm.ve.vl.pvcmps.vvvvl
12, // llvm.ve.vl.pvcmpu.vsvMvl
12, // llvm.ve.vl.pvcmpu.vsvl
12, // llvm.ve.vl.pvcmpu.vsvvl
12, // llvm.ve.vl.pvcmpu.vvvMvl
12, // llvm.ve.vl.pvcmpu.vvvl
12, // llvm.ve.vl.pvcmpu.vvvvl
12, // llvm.ve.vl.pvcvtsw.vvl
12, // llvm.ve.vl.pvcvtsw.vvvl
12, // llvm.ve.vl.pvcvtws.vvMvl
12, // llvm.ve.vl.pvcvtws.vvl
12, // llvm.ve.vl.pvcvtws.vvvl
12, // llvm.ve.vl.pvcvtwsrz.vvMvl
12, // llvm.ve.vl.pvcvtwsrz.vvl
12, // llvm.ve.vl.pvcvtwsrz.vvvl
12, // llvm.ve.vl.pveqv.vsvMvl
12, // llvm.ve.vl.pveqv.vsvl
12, // llvm.ve.vl.pveqv.vsvvl
12, // llvm.ve.vl.pveqv.vvvMvl
12, // llvm.ve.vl.pveqv.vvvl
12, // llvm.ve.vl.pveqv.vvvvl
12, // llvm.ve.vl.pvfadd.vsvMvl
12, // llvm.ve.vl.pvfadd.vsvl
12, // llvm.ve.vl.pvfadd.vsvvl
12, // llvm.ve.vl.pvfadd.vvvMvl
12, // llvm.ve.vl.pvfadd.vvvl
12, // llvm.ve.vl.pvfadd.vvvvl
12, // llvm.ve.vl.pvfcmp.vsvMvl
12, // llvm.ve.vl.pvfcmp.vsvl
12, // llvm.ve.vl.pvfcmp.vsvvl
12, // llvm.ve.vl.pvfcmp.vvvMvl
12, // llvm.ve.vl.pvfcmp.vvvl
12, // llvm.ve.vl.pvfcmp.vvvvl
12, // llvm.ve.vl.pvfmad.vsvvMvl
12, // llvm.ve.vl.pvfmad.vsvvl
12, // llvm.ve.vl.pvfmad.vsvvvl
12, // llvm.ve.vl.pvfmad.vvsvMvl
12, // llvm.ve.vl.pvfmad.vvsvl
12, // llvm.ve.vl.pvfmad.vvsvvl
12, // llvm.ve.vl.pvfmad.vvvvMvl
12, // llvm.ve.vl.pvfmad.vvvvl
12, // llvm.ve.vl.pvfmad.vvvvvl
12, // llvm.ve.vl.pvfmax.vsvMvl
12, // llvm.ve.vl.pvfmax.vsvl
12, // llvm.ve.vl.pvfmax.vsvvl
12, // llvm.ve.vl.pvfmax.vvvMvl
12, // llvm.ve.vl.pvfmax.vvvl
12, // llvm.ve.vl.pvfmax.vvvvl
12, // llvm.ve.vl.pvfmin.vsvMvl
12, // llvm.ve.vl.pvfmin.vsvl
12, // llvm.ve.vl.pvfmin.vsvvl
12, // llvm.ve.vl.pvfmin.vvvMvl
12, // llvm.ve.vl.pvfmin.vvvl
12, // llvm.ve.vl.pvfmin.vvvvl
12, // llvm.ve.vl.pvfmkaf.Ml
12, // llvm.ve.vl.pvfmkat.Ml
12, // llvm.ve.vl.pvfmkseq.MvMl
12, // llvm.ve.vl.pvfmkseq.Mvl
12, // llvm.ve.vl.pvfmkseqnan.MvMl
12, // llvm.ve.vl.pvfmkseqnan.Mvl
12, // llvm.ve.vl.pvfmksge.MvMl
12, // llvm.ve.vl.pvfmksge.Mvl
12, // llvm.ve.vl.pvfmksgenan.MvMl
12, // llvm.ve.vl.pvfmksgenan.Mvl
12, // llvm.ve.vl.pvfmksgt.MvMl
12, // llvm.ve.vl.pvfmksgt.Mvl
12, // llvm.ve.vl.pvfmksgtnan.MvMl
12, // llvm.ve.vl.pvfmksgtnan.Mvl
12, // llvm.ve.vl.pvfmksle.MvMl
12, // llvm.ve.vl.pvfmksle.Mvl
12, // llvm.ve.vl.pvfmkslenan.MvMl
12, // llvm.ve.vl.pvfmkslenan.Mvl
12, // llvm.ve.vl.pvfmksloeq.mvl
12, // llvm.ve.vl.pvfmksloeq.mvml
12, // llvm.ve.vl.pvfmksloeqnan.mvl
12, // llvm.ve.vl.pvfmksloeqnan.mvml
12, // llvm.ve.vl.pvfmksloge.mvl
12, // llvm.ve.vl.pvfmksloge.mvml
12, // llvm.ve.vl.pvfmkslogenan.mvl
12, // llvm.ve.vl.pvfmkslogenan.mvml
12, // llvm.ve.vl.pvfmkslogt.mvl
12, // llvm.ve.vl.pvfmkslogt.mvml
12, // llvm.ve.vl.pvfmkslogtnan.mvl
12, // llvm.ve.vl.pvfmkslogtnan.mvml
12, // llvm.ve.vl.pvfmkslole.mvl
12, // llvm.ve.vl.pvfmkslole.mvml
12, // llvm.ve.vl.pvfmkslolenan.mvl
12, // llvm.ve.vl.pvfmkslolenan.mvml
12, // llvm.ve.vl.pvfmkslolt.mvl
12, // llvm.ve.vl.pvfmkslolt.mvml
12, // llvm.ve.vl.pvfmksloltnan.mvl
12, // llvm.ve.vl.pvfmksloltnan.mvml
12, // llvm.ve.vl.pvfmkslonan.mvl
12, // llvm.ve.vl.pvfmkslonan.mvml
12, // llvm.ve.vl.pvfmkslone.mvl
12, // llvm.ve.vl.pvfmkslone.mvml
12, // llvm.ve.vl.pvfmkslonenan.mvl
12, // llvm.ve.vl.pvfmkslonenan.mvml
12, // llvm.ve.vl.pvfmkslonum.mvl
12, // llvm.ve.vl.pvfmkslonum.mvml
12, // llvm.ve.vl.pvfmkslt.MvMl
12, // llvm.ve.vl.pvfmkslt.Mvl
12, // llvm.ve.vl.pvfmksltnan.MvMl
12, // llvm.ve.vl.pvfmksltnan.Mvl
12, // llvm.ve.vl.pvfmksnan.MvMl
12, // llvm.ve.vl.pvfmksnan.Mvl
12, // llvm.ve.vl.pvfmksne.MvMl
12, // llvm.ve.vl.pvfmksne.Mvl
12, // llvm.ve.vl.pvfmksnenan.MvMl
12, // llvm.ve.vl.pvfmksnenan.Mvl
12, // llvm.ve.vl.pvfmksnum.MvMl
12, // llvm.ve.vl.pvfmksnum.Mvl
12, // llvm.ve.vl.pvfmksupeq.mvl
12, // llvm.ve.vl.pvfmksupeq.mvml
12, // llvm.ve.vl.pvfmksupeqnan.mvl
12, // llvm.ve.vl.pvfmksupeqnan.mvml
12, // llvm.ve.vl.pvfmksupge.mvl
12, // llvm.ve.vl.pvfmksupge.mvml
12, // llvm.ve.vl.pvfmksupgenan.mvl
12, // llvm.ve.vl.pvfmksupgenan.mvml
12, // llvm.ve.vl.pvfmksupgt.mvl
12, // llvm.ve.vl.pvfmksupgt.mvml
12, // llvm.ve.vl.pvfmksupgtnan.mvl
12, // llvm.ve.vl.pvfmksupgtnan.mvml
12, // llvm.ve.vl.pvfmksuple.mvl
12, // llvm.ve.vl.pvfmksuple.mvml
12, // llvm.ve.vl.pvfmksuplenan.mvl
12, // llvm.ve.vl.pvfmksuplenan.mvml
12, // llvm.ve.vl.pvfmksuplt.mvl
12, // llvm.ve.vl.pvfmksuplt.mvml
12, // llvm.ve.vl.pvfmksupltnan.mvl
12, // llvm.ve.vl.pvfmksupltnan.mvml
12, // llvm.ve.vl.pvfmksupnan.mvl
12, // llvm.ve.vl.pvfmksupnan.mvml
12, // llvm.ve.vl.pvfmksupne.mvl
12, // llvm.ve.vl.pvfmksupne.mvml
12, // llvm.ve.vl.pvfmksupnenan.mvl
12, // llvm.ve.vl.pvfmksupnenan.mvml
12, // llvm.ve.vl.pvfmksupnum.mvl
12, // llvm.ve.vl.pvfmksupnum.mvml
12, // llvm.ve.vl.pvfmkweq.MvMl
12, // llvm.ve.vl.pvfmkweq.Mvl
12, // llvm.ve.vl.pvfmkweqnan.MvMl
12, // llvm.ve.vl.pvfmkweqnan.Mvl
12, // llvm.ve.vl.pvfmkwge.MvMl
12, // llvm.ve.vl.pvfmkwge.Mvl
12, // llvm.ve.vl.pvfmkwgenan.MvMl
12, // llvm.ve.vl.pvfmkwgenan.Mvl
12, // llvm.ve.vl.pvfmkwgt.MvMl
12, // llvm.ve.vl.pvfmkwgt.Mvl
12, // llvm.ve.vl.pvfmkwgtnan.MvMl
12, // llvm.ve.vl.pvfmkwgtnan.Mvl
12, // llvm.ve.vl.pvfmkwle.MvMl
12, // llvm.ve.vl.pvfmkwle.Mvl
12, // llvm.ve.vl.pvfmkwlenan.MvMl
12, // llvm.ve.vl.pvfmkwlenan.Mvl
12, // llvm.ve.vl.pvfmkwloeq.mvl
12, // llvm.ve.vl.pvfmkwloeq.mvml
12, // llvm.ve.vl.pvfmkwloeqnan.mvl
12, // llvm.ve.vl.pvfmkwloeqnan.mvml
12, // llvm.ve.vl.pvfmkwloge.mvl
12, // llvm.ve.vl.pvfmkwloge.mvml
12, // llvm.ve.vl.pvfmkwlogenan.mvl
12, // llvm.ve.vl.pvfmkwlogenan.mvml
12, // llvm.ve.vl.pvfmkwlogt.mvl
12, // llvm.ve.vl.pvfmkwlogt.mvml
12, // llvm.ve.vl.pvfmkwlogtnan.mvl
12, // llvm.ve.vl.pvfmkwlogtnan.mvml
12, // llvm.ve.vl.pvfmkwlole.mvl
12, // llvm.ve.vl.pvfmkwlole.mvml
12, // llvm.ve.vl.pvfmkwlolenan.mvl
12, // llvm.ve.vl.pvfmkwlolenan.mvml
12, // llvm.ve.vl.pvfmkwlolt.mvl
12, // llvm.ve.vl.pvfmkwlolt.mvml
12, // llvm.ve.vl.pvfmkwloltnan.mvl
12, // llvm.ve.vl.pvfmkwloltnan.mvml
12, // llvm.ve.vl.pvfmkwlonan.mvl
12, // llvm.ve.vl.pvfmkwlonan.mvml
12, // llvm.ve.vl.pvfmkwlone.mvl
12, // llvm.ve.vl.pvfmkwlone.mvml
12, // llvm.ve.vl.pvfmkwlonenan.mvl
12, // llvm.ve.vl.pvfmkwlonenan.mvml
12, // llvm.ve.vl.pvfmkwlonum.mvl
12, // llvm.ve.vl.pvfmkwlonum.mvml
12, // llvm.ve.vl.pvfmkwlt.MvMl
12, // llvm.ve.vl.pvfmkwlt.Mvl
12, // llvm.ve.vl.pvfmkwltnan.MvMl
12, // llvm.ve.vl.pvfmkwltnan.Mvl
12, // llvm.ve.vl.pvfmkwnan.MvMl
12, // llvm.ve.vl.pvfmkwnan.Mvl
12, // llvm.ve.vl.pvfmkwne.MvMl
12, // llvm.ve.vl.pvfmkwne.Mvl
12, // llvm.ve.vl.pvfmkwnenan.MvMl
12, // llvm.ve.vl.pvfmkwnenan.Mvl
12, // llvm.ve.vl.pvfmkwnum.MvMl
12, // llvm.ve.vl.pvfmkwnum.Mvl
12, // llvm.ve.vl.pvfmkwupeq.mvl
12, // llvm.ve.vl.pvfmkwupeq.mvml
12, // llvm.ve.vl.pvfmkwupeqnan.mvl
12, // llvm.ve.vl.pvfmkwupeqnan.mvml
12, // llvm.ve.vl.pvfmkwupge.mvl
12, // llvm.ve.vl.pvfmkwupge.mvml
12, // llvm.ve.vl.pvfmkwupgenan.mvl
12, // llvm.ve.vl.pvfmkwupgenan.mvml
12, // llvm.ve.vl.pvfmkwupgt.mvl
12, // llvm.ve.vl.pvfmkwupgt.mvml
12, // llvm.ve.vl.pvfmkwupgtnan.mvl
12, // llvm.ve.vl.pvfmkwupgtnan.mvml
12, // llvm.ve.vl.pvfmkwuple.mvl
12, // llvm.ve.vl.pvfmkwuple.mvml
12, // llvm.ve.vl.pvfmkwuplenan.mvl
12, // llvm.ve.vl.pvfmkwuplenan.mvml
12, // llvm.ve.vl.pvfmkwuplt.mvl
12, // llvm.ve.vl.pvfmkwuplt.mvml
12, // llvm.ve.vl.pvfmkwupltnan.mvl
12, // llvm.ve.vl.pvfmkwupltnan.mvml
12, // llvm.ve.vl.pvfmkwupnan.mvl
12, // llvm.ve.vl.pvfmkwupnan.mvml
12, // llvm.ve.vl.pvfmkwupne.mvl
12, // llvm.ve.vl.pvfmkwupne.mvml
12, // llvm.ve.vl.pvfmkwupnenan.mvl
12, // llvm.ve.vl.pvfmkwupnenan.mvml
12, // llvm.ve.vl.pvfmkwupnum.mvl
12, // llvm.ve.vl.pvfmkwupnum.mvml
12, // llvm.ve.vl.pvfmsb.vsvvMvl
12, // llvm.ve.vl.pvfmsb.vsvvl
12, // llvm.ve.vl.pvfmsb.vsvvvl
12, // llvm.ve.vl.pvfmsb.vvsvMvl
12, // llvm.ve.vl.pvfmsb.vvsvl
12, // llvm.ve.vl.pvfmsb.vvsvvl
12, // llvm.ve.vl.pvfmsb.vvvvMvl
12, // llvm.ve.vl.pvfmsb.vvvvl
12, // llvm.ve.vl.pvfmsb.vvvvvl
12, // llvm.ve.vl.pvfmul.vsvMvl
12, // llvm.ve.vl.pvfmul.vsvl
12, // llvm.ve.vl.pvfmul.vsvvl
12, // llvm.ve.vl.pvfmul.vvvMvl
12, // llvm.ve.vl.pvfmul.vvvl
12, // llvm.ve.vl.pvfmul.vvvvl
12, // llvm.ve.vl.pvfnmad.vsvvMvl
12, // llvm.ve.vl.pvfnmad.vsvvl
12, // llvm.ve.vl.pvfnmad.vsvvvl
12, // llvm.ve.vl.pvfnmad.vvsvMvl
12, // llvm.ve.vl.pvfnmad.vvsvl
12, // llvm.ve.vl.pvfnmad.vvsvvl
12, // llvm.ve.vl.pvfnmad.vvvvMvl
12, // llvm.ve.vl.pvfnmad.vvvvl
12, // llvm.ve.vl.pvfnmad.vvvvvl
12, // llvm.ve.vl.pvfnmsb.vsvvMvl
12, // llvm.ve.vl.pvfnmsb.vsvvl
12, // llvm.ve.vl.pvfnmsb.vsvvvl
12, // llvm.ve.vl.pvfnmsb.vvsvMvl
12, // llvm.ve.vl.pvfnmsb.vvsvl
12, // llvm.ve.vl.pvfnmsb.vvsvvl
12, // llvm.ve.vl.pvfnmsb.vvvvMvl
12, // llvm.ve.vl.pvfnmsb.vvvvl
12, // llvm.ve.vl.pvfnmsb.vvvvvl
12, // llvm.ve.vl.pvfsub.vsvMvl
12, // llvm.ve.vl.pvfsub.vsvl
12, // llvm.ve.vl.pvfsub.vsvvl
12, // llvm.ve.vl.pvfsub.vvvMvl
12, // llvm.ve.vl.pvfsub.vvvl
12, // llvm.ve.vl.pvfsub.vvvvl
12, // llvm.ve.vl.pvmaxs.vsvMvl
12, // llvm.ve.vl.pvmaxs.vsvl
12, // llvm.ve.vl.pvmaxs.vsvvl
12, // llvm.ve.vl.pvmaxs.vvvMvl
12, // llvm.ve.vl.pvmaxs.vvvl
12, // llvm.ve.vl.pvmaxs.vvvvl
12, // llvm.ve.vl.pvmins.vsvMvl
12, // llvm.ve.vl.pvmins.vsvl
12, // llvm.ve.vl.pvmins.vsvvl
12, // llvm.ve.vl.pvmins.vvvMvl
12, // llvm.ve.vl.pvmins.vvvl
12, // llvm.ve.vl.pvmins.vvvvl
12, // llvm.ve.vl.pvor.vsvMvl
12, // llvm.ve.vl.pvor.vsvl
12, // llvm.ve.vl.pvor.vsvvl
12, // llvm.ve.vl.pvor.vvvMvl
12, // llvm.ve.vl.pvor.vvvl
12, // llvm.ve.vl.pvor.vvvvl
12, // llvm.ve.vl.pvrcp.vvl
12, // llvm.ve.vl.pvrcp.vvvl
12, // llvm.ve.vl.pvrsqrt.vvl
12, // llvm.ve.vl.pvrsqrt.vvvl
12, // llvm.ve.vl.pvrsqrtnex.vvl
12, // llvm.ve.vl.pvrsqrtnex.vvvl
12, // llvm.ve.vl.pvseq.vl
12, // llvm.ve.vl.pvseq.vvl
12, // llvm.ve.vl.pvseqlo.vl
12, // llvm.ve.vl.pvseqlo.vvl
12, // llvm.ve.vl.pvsequp.vl
12, // llvm.ve.vl.pvsequp.vvl
12, // llvm.ve.vl.pvsla.vvsMvl
12, // llvm.ve.vl.pvsla.vvsl
12, // llvm.ve.vl.pvsla.vvsvl
12, // llvm.ve.vl.pvsla.vvvMvl
12, // llvm.ve.vl.pvsla.vvvl
12, // llvm.ve.vl.pvsla.vvvvl
12, // llvm.ve.vl.pvsll.vvsMvl
12, // llvm.ve.vl.pvsll.vvsl
12, // llvm.ve.vl.pvsll.vvsvl
12, // llvm.ve.vl.pvsll.vvvMvl
12, // llvm.ve.vl.pvsll.vvvl
12, // llvm.ve.vl.pvsll.vvvvl
12, // llvm.ve.vl.pvsra.vvsMvl
12, // llvm.ve.vl.pvsra.vvsl
12, // llvm.ve.vl.pvsra.vvsvl
12, // llvm.ve.vl.pvsra.vvvMvl
12, // llvm.ve.vl.pvsra.vvvl
12, // llvm.ve.vl.pvsra.vvvvl
12, // llvm.ve.vl.pvsrl.vvsMvl
12, // llvm.ve.vl.pvsrl.vvsl
12, // llvm.ve.vl.pvsrl.vvsvl
12, // llvm.ve.vl.pvsrl.vvvMvl
12, // llvm.ve.vl.pvsrl.vvvl
12, // llvm.ve.vl.pvsrl.vvvvl
12, // llvm.ve.vl.pvsubs.vsvMvl
12, // llvm.ve.vl.pvsubs.vsvl
12, // llvm.ve.vl.pvsubs.vsvvl
12, // llvm.ve.vl.pvsubs.vvvMvl
12, // llvm.ve.vl.pvsubs.vvvl
12, // llvm.ve.vl.pvsubs.vvvvl
12, // llvm.ve.vl.pvsubu.vsvMvl
12, // llvm.ve.vl.pvsubu.vsvl
12, // llvm.ve.vl.pvsubu.vsvvl
12, // llvm.ve.vl.pvsubu.vvvMvl
12, // llvm.ve.vl.pvsubu.vvvl
12, // llvm.ve.vl.pvsubu.vvvvl
12, // llvm.ve.vl.pvxor.vsvMvl
12, // llvm.ve.vl.pvxor.vsvl
12, // llvm.ve.vl.pvxor.vsvvl
12, // llvm.ve.vl.pvxor.vvvMvl
12, // llvm.ve.vl.pvxor.vvvl
12, // llvm.ve.vl.pvxor.vvvvl
12, // llvm.ve.vl.svm.sMs
12, // llvm.ve.vl.svm.sms
58, // llvm.ve.vl.svob
12, // llvm.ve.vl.tovm.sml
12, // llvm.ve.vl.vaddsl.vsvl
12, // llvm.ve.vl.vaddsl.vsvmvl
12, // llvm.ve.vl.vaddsl.vsvvl
12, // llvm.ve.vl.vaddsl.vvvl
12, // llvm.ve.vl.vaddsl.vvvmvl
12, // llvm.ve.vl.vaddsl.vvvvl
12, // llvm.ve.vl.vaddswsx.vsvl
12, // llvm.ve.vl.vaddswsx.vsvmvl
12, // llvm.ve.vl.vaddswsx.vsvvl
12, // llvm.ve.vl.vaddswsx.vvvl
12, // llvm.ve.vl.vaddswsx.vvvmvl
12, // llvm.ve.vl.vaddswsx.vvvvl
12, // llvm.ve.vl.vaddswzx.vsvl
12, // llvm.ve.vl.vaddswzx.vsvmvl
12, // llvm.ve.vl.vaddswzx.vsvvl
12, // llvm.ve.vl.vaddswzx.vvvl
12, // llvm.ve.vl.vaddswzx.vvvmvl
12, // llvm.ve.vl.vaddswzx.vvvvl
12, // llvm.ve.vl.vaddul.vsvl
12, // llvm.ve.vl.vaddul.vsvmvl
12, // llvm.ve.vl.vaddul.vsvvl
12, // llvm.ve.vl.vaddul.vvvl
12, // llvm.ve.vl.vaddul.vvvmvl
12, // llvm.ve.vl.vaddul.vvvvl
12, // llvm.ve.vl.vadduw.vsvl
12, // llvm.ve.vl.vadduw.vsvmvl
12, // llvm.ve.vl.vadduw.vsvvl
12, // llvm.ve.vl.vadduw.vvvl
12, // llvm.ve.vl.vadduw.vvvmvl
12, // llvm.ve.vl.vadduw.vvvvl
12, // llvm.ve.vl.vand.vsvl
12, // llvm.ve.vl.vand.vsvmvl
12, // llvm.ve.vl.vand.vsvvl
12, // llvm.ve.vl.vand.vvvl
12, // llvm.ve.vl.vand.vvvmvl
12, // llvm.ve.vl.vand.vvvvl
12, // llvm.ve.vl.vbrdd.vsl
12, // llvm.ve.vl.vbrdd.vsmvl
12, // llvm.ve.vl.vbrdd.vsvl
12, // llvm.ve.vl.vbrdl.vsl
12, // llvm.ve.vl.vbrdl.vsmvl
12, // llvm.ve.vl.vbrdl.vsvl
12, // llvm.ve.vl.vbrds.vsl
12, // llvm.ve.vl.vbrds.vsmvl
12, // llvm.ve.vl.vbrds.vsvl
12, // llvm.ve.vl.vbrdw.vsl
12, // llvm.ve.vl.vbrdw.vsmvl
12, // llvm.ve.vl.vbrdw.vsvl
12, // llvm.ve.vl.vcmpsl.vsvl
12, // llvm.ve.vl.vcmpsl.vsvmvl
12, // llvm.ve.vl.vcmpsl.vsvvl
12, // llvm.ve.vl.vcmpsl.vvvl
12, // llvm.ve.vl.vcmpsl.vvvmvl
12, // llvm.ve.vl.vcmpsl.vvvvl
12, // llvm.ve.vl.vcmpswsx.vsvl
12, // llvm.ve.vl.vcmpswsx.vsvmvl
12, // llvm.ve.vl.vcmpswsx.vsvvl
12, // llvm.ve.vl.vcmpswsx.vvvl
12, // llvm.ve.vl.vcmpswsx.vvvmvl
12, // llvm.ve.vl.vcmpswsx.vvvvl
12, // llvm.ve.vl.vcmpswzx.vsvl
12, // llvm.ve.vl.vcmpswzx.vsvmvl
12, // llvm.ve.vl.vcmpswzx.vsvvl
12, // llvm.ve.vl.vcmpswzx.vvvl
12, // llvm.ve.vl.vcmpswzx.vvvmvl
12, // llvm.ve.vl.vcmpswzx.vvvvl
12, // llvm.ve.vl.vcmpul.vsvl
12, // llvm.ve.vl.vcmpul.vsvmvl
12, // llvm.ve.vl.vcmpul.vsvvl
12, // llvm.ve.vl.vcmpul.vvvl
12, // llvm.ve.vl.vcmpul.vvvmvl
12, // llvm.ve.vl.vcmpul.vvvvl
12, // llvm.ve.vl.vcmpuw.vsvl
12, // llvm.ve.vl.vcmpuw.vsvmvl
12, // llvm.ve.vl.vcmpuw.vsvvl
12, // llvm.ve.vl.vcmpuw.vvvl
12, // llvm.ve.vl.vcmpuw.vvvmvl
12, // llvm.ve.vl.vcmpuw.vvvvl
12, // llvm.ve.vl.vcp.vvmvl
12, // llvm.ve.vl.vcvtdl.vvl
12, // llvm.ve.vl.vcvtdl.vvvl
12, // llvm.ve.vl.vcvtds.vvl
12, // llvm.ve.vl.vcvtds.vvvl
12, // llvm.ve.vl.vcvtdw.vvl
12, // llvm.ve.vl.vcvtdw.vvvl
12, // llvm.ve.vl.vcvtld.vvl
12, // llvm.ve.vl.vcvtld.vvmvl
12, // llvm.ve.vl.vcvtld.vvvl
12, // llvm.ve.vl.vcvtldrz.vvl
12, // llvm.ve.vl.vcvtldrz.vvmvl
12, // llvm.ve.vl.vcvtldrz.vvvl
12, // llvm.ve.vl.vcvtsd.vvl
12, // llvm.ve.vl.vcvtsd.vvvl
12, // llvm.ve.vl.vcvtsw.vvl
12, // llvm.ve.vl.vcvtsw.vvvl
12, // llvm.ve.vl.vcvtwdsx.vvl
12, // llvm.ve.vl.vcvtwdsx.vvmvl
12, // llvm.ve.vl.vcvtwdsx.vvvl
12, // llvm.ve.vl.vcvtwdsxrz.vvl
12, // llvm.ve.vl.vcvtwdsxrz.vvmvl
12, // llvm.ve.vl.vcvtwdsxrz.vvvl
12, // llvm.ve.vl.vcvtwdzx.vvl
12, // llvm.ve.vl.vcvtwdzx.vvmvl
12, // llvm.ve.vl.vcvtwdzx.vvvl
12, // llvm.ve.vl.vcvtwdzxrz.vvl
12, // llvm.ve.vl.vcvtwdzxrz.vvmvl
12, // llvm.ve.vl.vcvtwdzxrz.vvvl
12, // llvm.ve.vl.vcvtwssx.vvl
12, // llvm.ve.vl.vcvtwssx.vvmvl
12, // llvm.ve.vl.vcvtwssx.vvvl
12, // llvm.ve.vl.vcvtwssxrz.vvl
12, // llvm.ve.vl.vcvtwssxrz.vvmvl
12, // llvm.ve.vl.vcvtwssxrz.vvvl
12, // llvm.ve.vl.vcvtwszx.vvl
12, // llvm.ve.vl.vcvtwszx.vvmvl
12, // llvm.ve.vl.vcvtwszx.vvvl
12, // llvm.ve.vl.vcvtwszxrz.vvl
12, // llvm.ve.vl.vcvtwszxrz.vvmvl
12, // llvm.ve.vl.vcvtwszxrz.vvvl
12, // llvm.ve.vl.vdivsl.vsvl
12, // llvm.ve.vl.vdivsl.vsvmvl
12, // llvm.ve.vl.vdivsl.vsvvl
12, // llvm.ve.vl.vdivsl.vvsl
12, // llvm.ve.vl.vdivsl.vvsmvl
12, // llvm.ve.vl.vdivsl.vvsvl
12, // llvm.ve.vl.vdivsl.vvvl
12, // llvm.ve.vl.vdivsl.vvvmvl
12, // llvm.ve.vl.vdivsl.vvvvl
12, // llvm.ve.vl.vdivswsx.vsvl
12, // llvm.ve.vl.vdivswsx.vsvmvl
12, // llvm.ve.vl.vdivswsx.vsvvl
12, // llvm.ve.vl.vdivswsx.vvsl
12, // llvm.ve.vl.vdivswsx.vvsmvl
12, // llvm.ve.vl.vdivswsx.vvsvl
12, // llvm.ve.vl.vdivswsx.vvvl
12, // llvm.ve.vl.vdivswsx.vvvmvl
12, // llvm.ve.vl.vdivswsx.vvvvl
12, // llvm.ve.vl.vdivswzx.vsvl
12, // llvm.ve.vl.vdivswzx.vsvmvl
12, // llvm.ve.vl.vdivswzx.vsvvl
12, // llvm.ve.vl.vdivswzx.vvsl
12, // llvm.ve.vl.vdivswzx.vvsmvl
12, // llvm.ve.vl.vdivswzx.vvsvl
12, // llvm.ve.vl.vdivswzx.vvvl
12, // llvm.ve.vl.vdivswzx.vvvmvl
12, // llvm.ve.vl.vdivswzx.vvvvl
12, // llvm.ve.vl.vdivul.vsvl
12, // llvm.ve.vl.vdivul.vsvmvl
12, // llvm.ve.vl.vdivul.vsvvl
12, // llvm.ve.vl.vdivul.vvsl
12, // llvm.ve.vl.vdivul.vvsmvl
12, // llvm.ve.vl.vdivul.vvsvl
12, // llvm.ve.vl.vdivul.vvvl
12, // llvm.ve.vl.vdivul.vvvmvl
12, // llvm.ve.vl.vdivul.vvvvl
12, // llvm.ve.vl.vdivuw.vsvl
12, // llvm.ve.vl.vdivuw.vsvmvl
12, // llvm.ve.vl.vdivuw.vsvvl
12, // llvm.ve.vl.vdivuw.vvsl
12, // llvm.ve.vl.vdivuw.vvsmvl
12, // llvm.ve.vl.vdivuw.vvsvl
12, // llvm.ve.vl.vdivuw.vvvl
12, // llvm.ve.vl.vdivuw.vvvmvl
12, // llvm.ve.vl.vdivuw.vvvvl
12, // llvm.ve.vl.veqv.vsvl
12, // llvm.ve.vl.veqv.vsvmvl
12, // llvm.ve.vl.veqv.vsvvl
12, // llvm.ve.vl.veqv.vvvl
12, // llvm.ve.vl.veqv.vvvmvl
12, // llvm.ve.vl.veqv.vvvvl
12, // llvm.ve.vl.vex.vvmvl
12, // llvm.ve.vl.vfaddd.vsvl
12, // llvm.ve.vl.vfaddd.vsvmvl
12, // llvm.ve.vl.vfaddd.vsvvl
12, // llvm.ve.vl.vfaddd.vvvl
12, // llvm.ve.vl.vfaddd.vvvmvl
12, // llvm.ve.vl.vfaddd.vvvvl
12, // llvm.ve.vl.vfadds.vsvl
12, // llvm.ve.vl.vfadds.vsvmvl
12, // llvm.ve.vl.vfadds.vsvvl
12, // llvm.ve.vl.vfadds.vvvl
12, // llvm.ve.vl.vfadds.vvvmvl
12, // llvm.ve.vl.vfadds.vvvvl
12, // llvm.ve.vl.vfcmpd.vsvl
12, // llvm.ve.vl.vfcmpd.vsvmvl
12, // llvm.ve.vl.vfcmpd.vsvvl
12, // llvm.ve.vl.vfcmpd.vvvl
12, // llvm.ve.vl.vfcmpd.vvvmvl
12, // llvm.ve.vl.vfcmpd.vvvvl
12, // llvm.ve.vl.vfcmps.vsvl
12, // llvm.ve.vl.vfcmps.vsvmvl
12, // llvm.ve.vl.vfcmps.vsvvl
12, // llvm.ve.vl.vfcmps.vvvl
12, // llvm.ve.vl.vfcmps.vvvmvl
12, // llvm.ve.vl.vfcmps.vvvvl
12, // llvm.ve.vl.vfdivd.vsvl
12, // llvm.ve.vl.vfdivd.vsvmvl
12, // llvm.ve.vl.vfdivd.vsvvl
12, // llvm.ve.vl.vfdivd.vvvl
12, // llvm.ve.vl.vfdivd.vvvmvl
12, // llvm.ve.vl.vfdivd.vvvvl
12, // llvm.ve.vl.vfdivs.vsvl
12, // llvm.ve.vl.vfdivs.vsvmvl
12, // llvm.ve.vl.vfdivs.vsvvl
12, // llvm.ve.vl.vfdivs.vvvl
12, // llvm.ve.vl.vfdivs.vvvmvl
12, // llvm.ve.vl.vfdivs.vvvvl
12, // llvm.ve.vl.vfmadd.vsvvl
12, // llvm.ve.vl.vfmadd.vsvvmvl
12, // llvm.ve.vl.vfmadd.vsvvvl
12, // llvm.ve.vl.vfmadd.vvsvl
12, // llvm.ve.vl.vfmadd.vvsvmvl
12, // llvm.ve.vl.vfmadd.vvsvvl
12, // llvm.ve.vl.vfmadd.vvvvl
12, // llvm.ve.vl.vfmadd.vvvvmvl
12, // llvm.ve.vl.vfmadd.vvvvvl
12, // llvm.ve.vl.vfmads.vsvvl
12, // llvm.ve.vl.vfmads.vsvvmvl
12, // llvm.ve.vl.vfmads.vsvvvl
12, // llvm.ve.vl.vfmads.vvsvl
12, // llvm.ve.vl.vfmads.vvsvmvl
12, // llvm.ve.vl.vfmads.vvsvvl
12, // llvm.ve.vl.vfmads.vvvvl
12, // llvm.ve.vl.vfmads.vvvvmvl
12, // llvm.ve.vl.vfmads.vvvvvl
12, // llvm.ve.vl.vfmaxd.vsvl
12, // llvm.ve.vl.vfmaxd.vsvmvl
12, // llvm.ve.vl.vfmaxd.vsvvl
12, // llvm.ve.vl.vfmaxd.vvvl
12, // llvm.ve.vl.vfmaxd.vvvmvl
12, // llvm.ve.vl.vfmaxd.vvvvl
12, // llvm.ve.vl.vfmaxs.vsvl
12, // llvm.ve.vl.vfmaxs.vsvmvl
12, // llvm.ve.vl.vfmaxs.vsvvl
12, // llvm.ve.vl.vfmaxs.vvvl
12, // llvm.ve.vl.vfmaxs.vvvmvl
12, // llvm.ve.vl.vfmaxs.vvvvl
12, // llvm.ve.vl.vfmind.vsvl
12, // llvm.ve.vl.vfmind.vsvmvl
12, // llvm.ve.vl.vfmind.vsvvl
12, // llvm.ve.vl.vfmind.vvvl
12, // llvm.ve.vl.vfmind.vvvmvl
12, // llvm.ve.vl.vfmind.vvvvl
12, // llvm.ve.vl.vfmins.vsvl
12, // llvm.ve.vl.vfmins.vsvmvl
12, // llvm.ve.vl.vfmins.vsvvl
12, // llvm.ve.vl.vfmins.vvvl
12, // llvm.ve.vl.vfmins.vvvmvl
12, // llvm.ve.vl.vfmins.vvvvl
12, // llvm.ve.vl.vfmkdeq.mvl
12, // llvm.ve.vl.vfmkdeq.mvml
12, // llvm.ve.vl.vfmkdeqnan.mvl
12, // llvm.ve.vl.vfmkdeqnan.mvml
12, // llvm.ve.vl.vfmkdge.mvl
12, // llvm.ve.vl.vfmkdge.mvml
12, // llvm.ve.vl.vfmkdgenan.mvl
12, // llvm.ve.vl.vfmkdgenan.mvml
12, // llvm.ve.vl.vfmkdgt.mvl
12, // llvm.ve.vl.vfmkdgt.mvml
12, // llvm.ve.vl.vfmkdgtnan.mvl
12, // llvm.ve.vl.vfmkdgtnan.mvml
12, // llvm.ve.vl.vfmkdle.mvl
12, // llvm.ve.vl.vfmkdle.mvml
12, // llvm.ve.vl.vfmkdlenan.mvl
12, // llvm.ve.vl.vfmkdlenan.mvml
12, // llvm.ve.vl.vfmkdlt.mvl
12, // llvm.ve.vl.vfmkdlt.mvml
12, // llvm.ve.vl.vfmkdltnan.mvl
12, // llvm.ve.vl.vfmkdltnan.mvml
12, // llvm.ve.vl.vfmkdnan.mvl
12, // llvm.ve.vl.vfmkdnan.mvml
12, // llvm.ve.vl.vfmkdne.mvl
12, // llvm.ve.vl.vfmkdne.mvml
12, // llvm.ve.vl.vfmkdnenan.mvl
12, // llvm.ve.vl.vfmkdnenan.mvml
12, // llvm.ve.vl.vfmkdnum.mvl
12, // llvm.ve.vl.vfmkdnum.mvml
12, // llvm.ve.vl.vfmklaf.ml
12, // llvm.ve.vl.vfmklat.ml
12, // llvm.ve.vl.vfmkleq.mvl
12, // llvm.ve.vl.vfmkleq.mvml
12, // llvm.ve.vl.vfmkleqnan.mvl
12, // llvm.ve.vl.vfmkleqnan.mvml
12, // llvm.ve.vl.vfmklge.mvl
12, // llvm.ve.vl.vfmklge.mvml
12, // llvm.ve.vl.vfmklgenan.mvl
12, // llvm.ve.vl.vfmklgenan.mvml
12, // llvm.ve.vl.vfmklgt.mvl
12, // llvm.ve.vl.vfmklgt.mvml
12, // llvm.ve.vl.vfmklgtnan.mvl
12, // llvm.ve.vl.vfmklgtnan.mvml
12, // llvm.ve.vl.vfmklle.mvl
12, // llvm.ve.vl.vfmklle.mvml
12, // llvm.ve.vl.vfmkllenan.mvl
12, // llvm.ve.vl.vfmkllenan.mvml
12, // llvm.ve.vl.vfmkllt.mvl
12, // llvm.ve.vl.vfmkllt.mvml
12, // llvm.ve.vl.vfmklltnan.mvl
12, // llvm.ve.vl.vfmklltnan.mvml
12, // llvm.ve.vl.vfmklnan.mvl
12, // llvm.ve.vl.vfmklnan.mvml
12, // llvm.ve.vl.vfmklne.mvl
12, // llvm.ve.vl.vfmklne.mvml
12, // llvm.ve.vl.vfmklnenan.mvl
12, // llvm.ve.vl.vfmklnenan.mvml
12, // llvm.ve.vl.vfmklnum.mvl
12, // llvm.ve.vl.vfmklnum.mvml
12, // llvm.ve.vl.vfmkseq.mvl
12, // llvm.ve.vl.vfmkseq.mvml
12, // llvm.ve.vl.vfmkseqnan.mvl
12, // llvm.ve.vl.vfmkseqnan.mvml
12, // llvm.ve.vl.vfmksge.mvl
12, // llvm.ve.vl.vfmksge.mvml
12, // llvm.ve.vl.vfmksgenan.mvl
12, // llvm.ve.vl.vfmksgenan.mvml
12, // llvm.ve.vl.vfmksgt.mvl
12, // llvm.ve.vl.vfmksgt.mvml
12, // llvm.ve.vl.vfmksgtnan.mvl
12, // llvm.ve.vl.vfmksgtnan.mvml
12, // llvm.ve.vl.vfmksle.mvl
12, // llvm.ve.vl.vfmksle.mvml
12, // llvm.ve.vl.vfmkslenan.mvl
12, // llvm.ve.vl.vfmkslenan.mvml
12, // llvm.ve.vl.vfmkslt.mvl
12, // llvm.ve.vl.vfmkslt.mvml
12, // llvm.ve.vl.vfmksltnan.mvl
12, // llvm.ve.vl.vfmksltnan.mvml
12, // llvm.ve.vl.vfmksnan.mvl
12, // llvm.ve.vl.vfmksnan.mvml
12, // llvm.ve.vl.vfmksne.mvl
12, // llvm.ve.vl.vfmksne.mvml
12, // llvm.ve.vl.vfmksnenan.mvl
12, // llvm.ve.vl.vfmksnenan.mvml
12, // llvm.ve.vl.vfmksnum.mvl
12, // llvm.ve.vl.vfmksnum.mvml
12, // llvm.ve.vl.vfmkweq.mvl
12, // llvm.ve.vl.vfmkweq.mvml
12, // llvm.ve.vl.vfmkweqnan.mvl
12, // llvm.ve.vl.vfmkweqnan.mvml
12, // llvm.ve.vl.vfmkwge.mvl
12, // llvm.ve.vl.vfmkwge.mvml
12, // llvm.ve.vl.vfmkwgenan.mvl
12, // llvm.ve.vl.vfmkwgenan.mvml
12, // llvm.ve.vl.vfmkwgt.mvl
12, // llvm.ve.vl.vfmkwgt.mvml
12, // llvm.ve.vl.vfmkwgtnan.mvl
12, // llvm.ve.vl.vfmkwgtnan.mvml
12, // llvm.ve.vl.vfmkwle.mvl
12, // llvm.ve.vl.vfmkwle.mvml
12, // llvm.ve.vl.vfmkwlenan.mvl
12, // llvm.ve.vl.vfmkwlenan.mvml
12, // llvm.ve.vl.vfmkwlt.mvl
12, // llvm.ve.vl.vfmkwlt.mvml
12, // llvm.ve.vl.vfmkwltnan.mvl
12, // llvm.ve.vl.vfmkwltnan.mvml
12, // llvm.ve.vl.vfmkwnan.mvl
12, // llvm.ve.vl.vfmkwnan.mvml
12, // llvm.ve.vl.vfmkwne.mvl
12, // llvm.ve.vl.vfmkwne.mvml
12, // llvm.ve.vl.vfmkwnenan.mvl
12, // llvm.ve.vl.vfmkwnenan.mvml
12, // llvm.ve.vl.vfmkwnum.mvl
12, // llvm.ve.vl.vfmkwnum.mvml
12, // llvm.ve.vl.vfmsbd.vsvvl
12, // llvm.ve.vl.vfmsbd.vsvvmvl
12, // llvm.ve.vl.vfmsbd.vsvvvl
12, // llvm.ve.vl.vfmsbd.vvsvl
12, // llvm.ve.vl.vfmsbd.vvsvmvl
12, // llvm.ve.vl.vfmsbd.vvsvvl
12, // llvm.ve.vl.vfmsbd.vvvvl
12, // llvm.ve.vl.vfmsbd.vvvvmvl
12, // llvm.ve.vl.vfmsbd.vvvvvl
12, // llvm.ve.vl.vfmsbs.vsvvl
12, // llvm.ve.vl.vfmsbs.vsvvmvl
12, // llvm.ve.vl.vfmsbs.vsvvvl
12, // llvm.ve.vl.vfmsbs.vvsvl
12, // llvm.ve.vl.vfmsbs.vvsvmvl
12, // llvm.ve.vl.vfmsbs.vvsvvl
12, // llvm.ve.vl.vfmsbs.vvvvl
12, // llvm.ve.vl.vfmsbs.vvvvmvl
12, // llvm.ve.vl.vfmsbs.vvvvvl
12, // llvm.ve.vl.vfmuld.vsvl
12, // llvm.ve.vl.vfmuld.vsvmvl
12, // llvm.ve.vl.vfmuld.vsvvl
12, // llvm.ve.vl.vfmuld.vvvl
12, // llvm.ve.vl.vfmuld.vvvmvl
12, // llvm.ve.vl.vfmuld.vvvvl
12, // llvm.ve.vl.vfmuls.vsvl
12, // llvm.ve.vl.vfmuls.vsvmvl
12, // llvm.ve.vl.vfmuls.vsvvl
12, // llvm.ve.vl.vfmuls.vvvl
12, // llvm.ve.vl.vfmuls.vvvmvl
12, // llvm.ve.vl.vfmuls.vvvvl
12, // llvm.ve.vl.vfnmadd.vsvvl
12, // llvm.ve.vl.vfnmadd.vsvvmvl
12, // llvm.ve.vl.vfnmadd.vsvvvl
12, // llvm.ve.vl.vfnmadd.vvsvl
12, // llvm.ve.vl.vfnmadd.vvsvmvl
12, // llvm.ve.vl.vfnmadd.vvsvvl
12, // llvm.ve.vl.vfnmadd.vvvvl
12, // llvm.ve.vl.vfnmadd.vvvvmvl
12, // llvm.ve.vl.vfnmadd.vvvvvl
12, // llvm.ve.vl.vfnmads.vsvvl
12, // llvm.ve.vl.vfnmads.vsvvmvl
12, // llvm.ve.vl.vfnmads.vsvvvl
12, // llvm.ve.vl.vfnmads.vvsvl
12, // llvm.ve.vl.vfnmads.vvsvmvl
12, // llvm.ve.vl.vfnmads.vvsvvl
12, // llvm.ve.vl.vfnmads.vvvvl
12, // llvm.ve.vl.vfnmads.vvvvmvl
12, // llvm.ve.vl.vfnmads.vvvvvl
12, // llvm.ve.vl.vfnmsbd.vsvvl
12, // llvm.ve.vl.vfnmsbd.vsvvmvl
12, // llvm.ve.vl.vfnmsbd.vsvvvl
12, // llvm.ve.vl.vfnmsbd.vvsvl
12, // llvm.ve.vl.vfnmsbd.vvsvmvl
12, // llvm.ve.vl.vfnmsbd.vvsvvl
12, // llvm.ve.vl.vfnmsbd.vvvvl
12, // llvm.ve.vl.vfnmsbd.vvvvmvl
12, // llvm.ve.vl.vfnmsbd.vvvvvl
12, // llvm.ve.vl.vfnmsbs.vsvvl
12, // llvm.ve.vl.vfnmsbs.vsvvmvl
12, // llvm.ve.vl.vfnmsbs.vsvvvl
12, // llvm.ve.vl.vfnmsbs.vvsvl
12, // llvm.ve.vl.vfnmsbs.vvsvmvl
12, // llvm.ve.vl.vfnmsbs.vvsvvl
12, // llvm.ve.vl.vfnmsbs.vvvvl
12, // llvm.ve.vl.vfnmsbs.vvvvmvl
12, // llvm.ve.vl.vfnmsbs.vvvvvl
12, // llvm.ve.vl.vfrmaxdfst.vvl
12, // llvm.ve.vl.vfrmaxdfst.vvvl
12, // llvm.ve.vl.vfrmaxdlst.vvl
12, // llvm.ve.vl.vfrmaxdlst.vvvl
12, // llvm.ve.vl.vfrmaxsfst.vvl
12, // llvm.ve.vl.vfrmaxsfst.vvvl
12, // llvm.ve.vl.vfrmaxslst.vvl
12, // llvm.ve.vl.vfrmaxslst.vvvl
12, // llvm.ve.vl.vfrmindfst.vvl
12, // llvm.ve.vl.vfrmindfst.vvvl
12, // llvm.ve.vl.vfrmindlst.vvl
12, // llvm.ve.vl.vfrmindlst.vvvl
12, // llvm.ve.vl.vfrminsfst.vvl
12, // llvm.ve.vl.vfrminsfst.vvvl
12, // llvm.ve.vl.vfrminslst.vvl
12, // llvm.ve.vl.vfrminslst.vvvl
12, // llvm.ve.vl.vfsqrtd.vvl
12, // llvm.ve.vl.vfsqrtd.vvvl
12, // llvm.ve.vl.vfsqrts.vvl
12, // llvm.ve.vl.vfsqrts.vvvl
12, // llvm.ve.vl.vfsubd.vsvl
12, // llvm.ve.vl.vfsubd.vsvmvl
12, // llvm.ve.vl.vfsubd.vsvvl
12, // llvm.ve.vl.vfsubd.vvvl
12, // llvm.ve.vl.vfsubd.vvvmvl
12, // llvm.ve.vl.vfsubd.vvvvl
12, // llvm.ve.vl.vfsubs.vsvl
12, // llvm.ve.vl.vfsubs.vsvmvl
12, // llvm.ve.vl.vfsubs.vsvvl
12, // llvm.ve.vl.vfsubs.vvvl
12, // llvm.ve.vl.vfsubs.vvvmvl
12, // llvm.ve.vl.vfsubs.vvvvl
12, // llvm.ve.vl.vfsumd.vvl
12, // llvm.ve.vl.vfsumd.vvml
12, // llvm.ve.vl.vfsums.vvl
12, // llvm.ve.vl.vfsums.vvml
21, // llvm.ve.vl.vgt.vvssl
21, // llvm.ve.vl.vgt.vvssml
21, // llvm.ve.vl.vgt.vvssmvl
21, // llvm.ve.vl.vgt.vvssvl
21, // llvm.ve.vl.vgtlsx.vvssl
21, // llvm.ve.vl.vgtlsx.vvssml
21, // llvm.ve.vl.vgtlsx.vvssmvl
21, // llvm.ve.vl.vgtlsx.vvssvl
21, // llvm.ve.vl.vgtlsxnc.vvssl
21, // llvm.ve.vl.vgtlsxnc.vvssml
21, // llvm.ve.vl.vgtlsxnc.vvssmvl
21, // llvm.ve.vl.vgtlsxnc.vvssvl
21, // llvm.ve.vl.vgtlzx.vvssl
21, // llvm.ve.vl.vgtlzx.vvssml
21, // llvm.ve.vl.vgtlzx.vvssmvl
21, // llvm.ve.vl.vgtlzx.vvssvl
21, // llvm.ve.vl.vgtlzxnc.vvssl
21, // llvm.ve.vl.vgtlzxnc.vvssml
21, // llvm.ve.vl.vgtlzxnc.vvssmvl
21, // llvm.ve.vl.vgtlzxnc.vvssvl
21, // llvm.ve.vl.vgtnc.vvssl
21, // llvm.ve.vl.vgtnc.vvssml
21, // llvm.ve.vl.vgtnc.vvssmvl
21, // llvm.ve.vl.vgtnc.vvssvl
21, // llvm.ve.vl.vgtu.vvssl
21, // llvm.ve.vl.vgtu.vvssml
21, // llvm.ve.vl.vgtu.vvssmvl
21, // llvm.ve.vl.vgtu.vvssvl
21, // llvm.ve.vl.vgtunc.vvssl
21, // llvm.ve.vl.vgtunc.vvssml
21, // llvm.ve.vl.vgtunc.vvssmvl
21, // llvm.ve.vl.vgtunc.vvssvl
21, // llvm.ve.vl.vld.vssl
21, // llvm.ve.vl.vld.vssvl
21, // llvm.ve.vl.vld2d.vssl
21, // llvm.ve.vl.vld2d.vssvl
21, // llvm.ve.vl.vld2dnc.vssl
21, // llvm.ve.vl.vld2dnc.vssvl
21, // llvm.ve.vl.vldl2dsx.vssl
21, // llvm.ve.vl.vldl2dsx.vssvl
21, // llvm.ve.vl.vldl2dsxnc.vssl
21, // llvm.ve.vl.vldl2dsxnc.vssvl
21, // llvm.ve.vl.vldl2dzx.vssl
21, // llvm.ve.vl.vldl2dzx.vssvl
21, // llvm.ve.vl.vldl2dzxnc.vssl
21, // llvm.ve.vl.vldl2dzxnc.vssvl
21, // llvm.ve.vl.vldlsx.vssl
21, // llvm.ve.vl.vldlsx.vssvl
21, // llvm.ve.vl.vldlsxnc.vssl
21, // llvm.ve.vl.vldlsxnc.vssvl
21, // llvm.ve.vl.vldlzx.vssl
21, // llvm.ve.vl.vldlzx.vssvl
21, // llvm.ve.vl.vldlzxnc.vssl
21, // llvm.ve.vl.vldlzxnc.vssvl
21, // llvm.ve.vl.vldnc.vssl
21, // llvm.ve.vl.vldnc.vssvl
21, // llvm.ve.vl.vldu.vssl
21, // llvm.ve.vl.vldu.vssvl
21, // llvm.ve.vl.vldu2d.vssl
21, // llvm.ve.vl.vldu2d.vssvl
21, // llvm.ve.vl.vldu2dnc.vssl
21, // llvm.ve.vl.vldu2dnc.vssvl
21, // llvm.ve.vl.vldunc.vssl
21, // llvm.ve.vl.vldunc.vssvl
12, // llvm.ve.vl.vmaxsl.vsvl
12, // llvm.ve.vl.vmaxsl.vsvmvl
12, // llvm.ve.vl.vmaxsl.vsvvl
12, // llvm.ve.vl.vmaxsl.vvvl
12, // llvm.ve.vl.vmaxsl.vvvmvl
12, // llvm.ve.vl.vmaxsl.vvvvl
12, // llvm.ve.vl.vmaxswsx.vsvl
12, // llvm.ve.vl.vmaxswsx.vsvmvl
12, // llvm.ve.vl.vmaxswsx.vsvvl
12, // llvm.ve.vl.vmaxswsx.vvvl
12, // llvm.ve.vl.vmaxswsx.vvvmvl
12, // llvm.ve.vl.vmaxswsx.vvvvl
12, // llvm.ve.vl.vmaxswzx.vsvl
12, // llvm.ve.vl.vmaxswzx.vsvmvl
12, // llvm.ve.vl.vmaxswzx.vsvvl
12, // llvm.ve.vl.vmaxswzx.vvvl
12, // llvm.ve.vl.vmaxswzx.vvvmvl
12, // llvm.ve.vl.vmaxswzx.vvvvl
12, // llvm.ve.vl.vminsl.vsvl
12, // llvm.ve.vl.vminsl.vsvmvl
12, // llvm.ve.vl.vminsl.vsvvl
12, // llvm.ve.vl.vminsl.vvvl
12, // llvm.ve.vl.vminsl.vvvmvl
12, // llvm.ve.vl.vminsl.vvvvl
12, // llvm.ve.vl.vminswsx.vsvl
12, // llvm.ve.vl.vminswsx.vsvmvl
12, // llvm.ve.vl.vminswsx.vsvvl
12, // llvm.ve.vl.vminswsx.vvvl
12, // llvm.ve.vl.vminswsx.vvvmvl
12, // llvm.ve.vl.vminswsx.vvvvl
12, // llvm.ve.vl.vminswzx.vsvl
12, // llvm.ve.vl.vminswzx.vsvmvl
12, // llvm.ve.vl.vminswzx.vsvvl
12, // llvm.ve.vl.vminswzx.vvvl
12, // llvm.ve.vl.vminswzx.vvvmvl
12, // llvm.ve.vl.vminswzx.vvvvl
12, // llvm.ve.vl.vmrg.vsvml
12, // llvm.ve.vl.vmrg.vsvmvl
12, // llvm.ve.vl.vmrg.vvvml
12, // llvm.ve.vl.vmrg.vvvmvl
12, // llvm.ve.vl.vmrgw.vsvMl
12, // llvm.ve.vl.vmrgw.vsvMvl
12, // llvm.ve.vl.vmrgw.vvvMl
12, // llvm.ve.vl.vmrgw.vvvMvl
12, // llvm.ve.vl.vmulsl.vsvl
12, // llvm.ve.vl.vmulsl.vsvmvl
12, // llvm.ve.vl.vmulsl.vsvvl
12, // llvm.ve.vl.vmulsl.vvvl
12, // llvm.ve.vl.vmulsl.vvvmvl
12, // llvm.ve.vl.vmulsl.vvvvl
12, // llvm.ve.vl.vmulslw.vsvl
12, // llvm.ve.vl.vmulslw.vsvvl
12, // llvm.ve.vl.vmulslw.vvvl
12, // llvm.ve.vl.vmulslw.vvvvl
12, // llvm.ve.vl.vmulswsx.vsvl
12, // llvm.ve.vl.vmulswsx.vsvmvl
12, // llvm.ve.vl.vmulswsx.vsvvl
12, // llvm.ve.vl.vmulswsx.vvvl
12, // llvm.ve.vl.vmulswsx.vvvmvl
12, // llvm.ve.vl.vmulswsx.vvvvl
12, // llvm.ve.vl.vmulswzx.vsvl
12, // llvm.ve.vl.vmulswzx.vsvmvl
12, // llvm.ve.vl.vmulswzx.vsvvl
12, // llvm.ve.vl.vmulswzx.vvvl
12, // llvm.ve.vl.vmulswzx.vvvmvl
12, // llvm.ve.vl.vmulswzx.vvvvl
12, // llvm.ve.vl.vmulul.vsvl
12, // llvm.ve.vl.vmulul.vsvmvl
12, // llvm.ve.vl.vmulul.vsvvl
12, // llvm.ve.vl.vmulul.vvvl
12, // llvm.ve.vl.vmulul.vvvmvl
12, // llvm.ve.vl.vmulul.vvvvl
12, // llvm.ve.vl.vmuluw.vsvl
12, // llvm.ve.vl.vmuluw.vsvmvl
12, // llvm.ve.vl.vmuluw.vsvvl
12, // llvm.ve.vl.vmuluw.vvvl
12, // llvm.ve.vl.vmuluw.vvvmvl
12, // llvm.ve.vl.vmuluw.vvvvl
12, // llvm.ve.vl.vmv.vsvl
12, // llvm.ve.vl.vmv.vsvmvl
12, // llvm.ve.vl.vmv.vsvvl
12, // llvm.ve.vl.vor.vsvl
12, // llvm.ve.vl.vor.vsvmvl
12, // llvm.ve.vl.vor.vsvvl
12, // llvm.ve.vl.vor.vvvl
12, // llvm.ve.vl.vor.vvvmvl
12, // llvm.ve.vl.vor.vvvvl
12, // llvm.ve.vl.vrand.vvl
12, // llvm.ve.vl.vrand.vvml
12, // llvm.ve.vl.vrcpd.vvl
12, // llvm.ve.vl.vrcpd.vvvl
12, // llvm.ve.vl.vrcps.vvl
12, // llvm.ve.vl.vrcps.vvvl
12, // llvm.ve.vl.vrmaxslfst.vvl
12, // llvm.ve.vl.vrmaxslfst.vvvl
12, // llvm.ve.vl.vrmaxsllst.vvl
12, // llvm.ve.vl.vrmaxsllst.vvvl
12, // llvm.ve.vl.vrmaxswfstsx.vvl
12, // llvm.ve.vl.vrmaxswfstsx.vvvl
12, // llvm.ve.vl.vrmaxswfstzx.vvl
12, // llvm.ve.vl.vrmaxswfstzx.vvvl
12, // llvm.ve.vl.vrmaxswlstsx.vvl
12, // llvm.ve.vl.vrmaxswlstsx.vvvl
12, // llvm.ve.vl.vrmaxswlstzx.vvl
12, // llvm.ve.vl.vrmaxswlstzx.vvvl
12, // llvm.ve.vl.vrminslfst.vvl
12, // llvm.ve.vl.vrminslfst.vvvl
12, // llvm.ve.vl.vrminsllst.vvl
12, // llvm.ve.vl.vrminsllst.vvvl
12, // llvm.ve.vl.vrminswfstsx.vvl
12, // llvm.ve.vl.vrminswfstsx.vvvl
12, // llvm.ve.vl.vrminswfstzx.vvl
12, // llvm.ve.vl.vrminswfstzx.vvvl
12, // llvm.ve.vl.vrminswlstsx.vvl
12, // llvm.ve.vl.vrminswlstsx.vvvl
12, // llvm.ve.vl.vrminswlstzx.vvl
12, // llvm.ve.vl.vrminswlstzx.vvvl
12, // llvm.ve.vl.vror.vvl
12, // llvm.ve.vl.vror.vvml
12, // llvm.ve.vl.vrsqrtd.vvl
12, // llvm.ve.vl.vrsqrtd.vvvl
12, // llvm.ve.vl.vrsqrtdnex.vvl
12, // llvm.ve.vl.vrsqrtdnex.vvvl
12, // llvm.ve.vl.vrsqrts.vvl
12, // llvm.ve.vl.vrsqrts.vvvl
12, // llvm.ve.vl.vrsqrtsnex.vvl
12, // llvm.ve.vl.vrsqrtsnex.vvvl
12, // llvm.ve.vl.vrxor.vvl
12, // llvm.ve.vl.vrxor.vvml
71, // llvm.ve.vl.vsc.vvssl
71, // llvm.ve.vl.vsc.vvssml
71, // llvm.ve.vl.vscl.vvssl
71, // llvm.ve.vl.vscl.vvssml
71, // llvm.ve.vl.vsclnc.vvssl
71, // llvm.ve.vl.vsclnc.vvssml
71, // llvm.ve.vl.vsclncot.vvssl
71, // llvm.ve.vl.vsclncot.vvssml
71, // llvm.ve.vl.vsclot.vvssl
71, // llvm.ve.vl.vsclot.vvssml
71, // llvm.ve.vl.vscnc.vvssl
71, // llvm.ve.vl.vscnc.vvssml
71, // llvm.ve.vl.vscncot.vvssl
71, // llvm.ve.vl.vscncot.vvssml
71, // llvm.ve.vl.vscot.vvssl
71, // llvm.ve.vl.vscot.vvssml
71, // llvm.ve.vl.vscu.vvssl
71, // llvm.ve.vl.vscu.vvssml
71, // llvm.ve.vl.vscunc.vvssl
71, // llvm.ve.vl.vscunc.vvssml
71, // llvm.ve.vl.vscuncot.vvssl
71, // llvm.ve.vl.vscuncot.vvssml
71, // llvm.ve.vl.vscuot.vvssl
71, // llvm.ve.vl.vscuot.vvssml
12, // llvm.ve.vl.vseq.vl
12, // llvm.ve.vl.vseq.vvl
12, // llvm.ve.vl.vsfa.vvssl
12, // llvm.ve.vl.vsfa.vvssmvl
12, // llvm.ve.vl.vsfa.vvssvl
12, // llvm.ve.vl.vshf.vvvsl
12, // llvm.ve.vl.vshf.vvvsvl
12, // llvm.ve.vl.vslal.vvsl
12, // llvm.ve.vl.vslal.vvsmvl
12, // llvm.ve.vl.vslal.vvsvl
12, // llvm.ve.vl.vslal.vvvl
12, // llvm.ve.vl.vslal.vvvmvl
12, // llvm.ve.vl.vslal.vvvvl
12, // llvm.ve.vl.vslawsx.vvsl
12, // llvm.ve.vl.vslawsx.vvsmvl
12, // llvm.ve.vl.vslawsx.vvsvl
12, // llvm.ve.vl.vslawsx.vvvl
12, // llvm.ve.vl.vslawsx.vvvmvl
12, // llvm.ve.vl.vslawsx.vvvvl
12, // llvm.ve.vl.vslawzx.vvsl
12, // llvm.ve.vl.vslawzx.vvsmvl
12, // llvm.ve.vl.vslawzx.vvsvl
12, // llvm.ve.vl.vslawzx.vvvl
12, // llvm.ve.vl.vslawzx.vvvmvl
12, // llvm.ve.vl.vslawzx.vvvvl
12, // llvm.ve.vl.vsll.vvsl
12, // llvm.ve.vl.vsll.vvsmvl
12, // llvm.ve.vl.vsll.vvsvl
12, // llvm.ve.vl.vsll.vvvl
12, // llvm.ve.vl.vsll.vvvmvl
12, // llvm.ve.vl.vsll.vvvvl
12, // llvm.ve.vl.vsral.vvsl
12, // llvm.ve.vl.vsral.vvsmvl
12, // llvm.ve.vl.vsral.vvsvl
12, // llvm.ve.vl.vsral.vvvl
12, // llvm.ve.vl.vsral.vvvmvl
12, // llvm.ve.vl.vsral.vvvvl
12, // llvm.ve.vl.vsrawsx.vvsl
12, // llvm.ve.vl.vsrawsx.vvsmvl
12, // llvm.ve.vl.vsrawsx.vvsvl
12, // llvm.ve.vl.vsrawsx.vvvl
12, // llvm.ve.vl.vsrawsx.vvvmvl
12, // llvm.ve.vl.vsrawsx.vvvvl
12, // llvm.ve.vl.vsrawzx.vvsl
12, // llvm.ve.vl.vsrawzx.vvsmvl
12, // llvm.ve.vl.vsrawzx.vvsvl
12, // llvm.ve.vl.vsrawzx.vvvl
12, // llvm.ve.vl.vsrawzx.vvvmvl
12, // llvm.ve.vl.vsrawzx.vvvvl
12, // llvm.ve.vl.vsrl.vvsl
12, // llvm.ve.vl.vsrl.vvsmvl
12, // llvm.ve.vl.vsrl.vvsvl
12, // llvm.ve.vl.vsrl.vvvl
12, // llvm.ve.vl.vsrl.vvvmvl
12, // llvm.ve.vl.vsrl.vvvvl
71, // llvm.ve.vl.vst.vssl
71, // llvm.ve.vl.vst.vssml
71, // llvm.ve.vl.vst2d.vssl
71, // llvm.ve.vl.vst2d.vssml
71, // llvm.ve.vl.vst2dnc.vssl
71, // llvm.ve.vl.vst2dnc.vssml
71, // llvm.ve.vl.vst2dncot.vssl
71, // llvm.ve.vl.vst2dncot.vssml
71, // llvm.ve.vl.vst2dot.vssl
71, // llvm.ve.vl.vst2dot.vssml
71, // llvm.ve.vl.vstl.vssl
71, // llvm.ve.vl.vstl.vssml
71, // llvm.ve.vl.vstl2d.vssl
71, // llvm.ve.vl.vstl2d.vssml
71, // llvm.ve.vl.vstl2dnc.vssl
71, // llvm.ve.vl.vstl2dnc.vssml
71, // llvm.ve.vl.vstl2dncot.vssl
71, // llvm.ve.vl.vstl2dncot.vssml
71, // llvm.ve.vl.vstl2dot.vssl
71, // llvm.ve.vl.vstl2dot.vssml
71, // llvm.ve.vl.vstlnc.vssl
71, // llvm.ve.vl.vstlnc.vssml
71, // llvm.ve.vl.vstlncot.vssl
71, // llvm.ve.vl.vstlncot.vssml
71, // llvm.ve.vl.vstlot.vssl
71, // llvm.ve.vl.vstlot.vssml
71, // llvm.ve.vl.vstnc.vssl
71, // llvm.ve.vl.vstnc.vssml
71, // llvm.ve.vl.vstncot.vssl
71, // llvm.ve.vl.vstncot.vssml
71, // llvm.ve.vl.vstot.vssl
71, // llvm.ve.vl.vstot.vssml
71, // llvm.ve.vl.vstu.vssl
71, // llvm.ve.vl.vstu.vssml
71, // llvm.ve.vl.vstu2d.vssl
71, // llvm.ve.vl.vstu2d.vssml
71, // llvm.ve.vl.vstu2dnc.vssl
71, // llvm.ve.vl.vstu2dnc.vssml
71, // llvm.ve.vl.vstu2dncot.vssl
71, // llvm.ve.vl.vstu2dncot.vssml
71, // llvm.ve.vl.vstu2dot.vssl
71, // llvm.ve.vl.vstu2dot.vssml
71, // llvm.ve.vl.vstunc.vssl
71, // llvm.ve.vl.vstunc.vssml
71, // llvm.ve.vl.vstuncot.vssl
71, // llvm.ve.vl.vstuncot.vssml
71, // llvm.ve.vl.vstuot.vssl
71, // llvm.ve.vl.vstuot.vssml
12, // llvm.ve.vl.vsubsl.vsvl
12, // llvm.ve.vl.vsubsl.vsvmvl
12, // llvm.ve.vl.vsubsl.vsvvl
12, // llvm.ve.vl.vsubsl.vvvl
12, // llvm.ve.vl.vsubsl.vvvmvl
12, // llvm.ve.vl.vsubsl.vvvvl
12, // llvm.ve.vl.vsubswsx.vsvl
12, // llvm.ve.vl.vsubswsx.vsvmvl
12, // llvm.ve.vl.vsubswsx.vsvvl
12, // llvm.ve.vl.vsubswsx.vvvl
12, // llvm.ve.vl.vsubswsx.vvvmvl
12, // llvm.ve.vl.vsubswsx.vvvvl
12, // llvm.ve.vl.vsubswzx.vsvl
12, // llvm.ve.vl.vsubswzx.vsvmvl
12, // llvm.ve.vl.vsubswzx.vsvvl
12, // llvm.ve.vl.vsubswzx.vvvl
12, // llvm.ve.vl.vsubswzx.vvvmvl
12, // llvm.ve.vl.vsubswzx.vvvvl
12, // llvm.ve.vl.vsubul.vsvl
12, // llvm.ve.vl.vsubul.vsvmvl
12, // llvm.ve.vl.vsubul.vsvvl
12, // llvm.ve.vl.vsubul.vvvl
12, // llvm.ve.vl.vsubul.vvvmvl
12, // llvm.ve.vl.vsubul.vvvvl
12, // llvm.ve.vl.vsubuw.vsvl
12, // llvm.ve.vl.vsubuw.vsvmvl
12, // llvm.ve.vl.vsubuw.vsvvl
12, // llvm.ve.vl.vsubuw.vvvl
12, // llvm.ve.vl.vsubuw.vvvmvl
12, // llvm.ve.vl.vsubuw.vvvvl
12, // llvm.ve.vl.vsuml.vvl
12, // llvm.ve.vl.vsuml.vvml
12, // llvm.ve.vl.vsumwsx.vvl
12, // llvm.ve.vl.vsumwsx.vvml
12, // llvm.ve.vl.vsumwzx.vvl
12, // llvm.ve.vl.vsumwzx.vvml
12, // llvm.ve.vl.vxor.vsvl
12, // llvm.ve.vl.vxor.vsvmvl
12, // llvm.ve.vl.vxor.vsvvl
12, // llvm.ve.vl.vxor.vvvl
12, // llvm.ve.vl.vxor.vvvmvl
12, // llvm.ve.vl.vxor.vvvvl
12, // llvm.ve.vl.xorm.MMM
12, // llvm.ve.vl.xorm.mmm
204, // llvm.wasm.alltrue
204, // llvm.wasm.anytrue
204, // llvm.wasm.avgr.unsigned
204, // llvm.wasm.bitmask
204, // llvm.wasm.bitselect
204, // llvm.wasm.ceil
204, // llvm.wasm.dot
204, // llvm.wasm.eq
204, // llvm.wasm.extadd.pairwise.signed
204, // llvm.wasm.extadd.pairwise.unsigned
204, // llvm.wasm.extmul.high.signed
204, // llvm.wasm.extmul.high.unsigned
204, // llvm.wasm.extmul.low.signed
204, // llvm.wasm.extmul.low.unsigned
58, // llvm.wasm.extract.exception
204, // llvm.wasm.floor
58, // llvm.wasm.get.ehselector
58, // llvm.wasm.get.exception
56, // llvm.wasm.landingpad.index
3, // llvm.wasm.load16.lane
3, // llvm.wasm.load32.lane
3, // llvm.wasm.load32.zero
3, // llvm.wasm.load64.lane
3, // llvm.wasm.load64.zero
3, // llvm.wasm.load8.lane
12, // llvm.wasm.lsda
205, // llvm.wasm.memory.atomic.notify
206, // llvm.wasm.memory.atomic.wait32
206, // llvm.wasm.memory.atomic.wait64
7, // llvm.wasm.memory.grow
21, // llvm.wasm.memory.size
204, // llvm.wasm.narrow.signed
204, // llvm.wasm.narrow.unsigned
204, // llvm.wasm.nearest
204, // llvm.wasm.pmax
204, // llvm.wasm.pmin
204, // llvm.wasm.popcnt
207, // llvm.wasm.prefetch.nt
207, // llvm.wasm.prefetch.t
204, // llvm.wasm.q15mulr.saturate.signed
204, // llvm.wasm.qfma
204, // llvm.wasm.qfms
208, // llvm.wasm.rethrow.in.catch
204, // llvm.wasm.shuffle
204, // llvm.wasm.signselect
81, // llvm.wasm.store16.lane
81, // llvm.wasm.store32.lane
81, // llvm.wasm.store64.lane
81, // llvm.wasm.store8.lane
204, // llvm.wasm.sub.saturate.signed
204, // llvm.wasm.sub.saturate.unsigned
204, // llvm.wasm.swizzle
209, // llvm.wasm.throw
204, // llvm.wasm.tls.align
21, // llvm.wasm.tls.base
204, // llvm.wasm.tls.size
204, // llvm.wasm.trunc
204, // llvm.wasm.trunc.saturate.signed
204, // llvm.wasm.trunc.saturate.unsigned
12, // llvm.wasm.trunc.signed
12, // llvm.wasm.trunc.unsigned
204, // llvm.wasm.widen.high.signed
204, // llvm.wasm.widen.high.unsigned
204, // llvm.wasm.widen.low.signed
204, // llvm.wasm.widen.low.unsigned
12, // llvm.x86.3dnow.pavgusb
12, // llvm.x86.3dnow.pf2id
12, // llvm.x86.3dnow.pfacc
12, // llvm.x86.3dnow.pfadd
12, // llvm.x86.3dnow.pfcmpeq
12, // llvm.x86.3dnow.pfcmpge
12, // llvm.x86.3dnow.pfcmpgt
12, // llvm.x86.3dnow.pfmax
12, // llvm.x86.3dnow.pfmin
12, // llvm.x86.3dnow.pfmul
12, // llvm.x86.3dnow.pfrcp
12, // llvm.x86.3dnow.pfrcpit1
12, // llvm.x86.3dnow.pfrcpit2
12, // llvm.x86.3dnow.pfrsqit1
12, // llvm.x86.3dnow.pfrsqrt
12, // llvm.x86.3dnow.pfsub
12, // llvm.x86.3dnow.pfsubr
12, // llvm.x86.3dnow.pi2fd
12, // llvm.x86.3dnow.pmulhrw
12, // llvm.x86.3dnowa.pf2iw
12, // llvm.x86.3dnowa.pfnacc
12, // llvm.x86.3dnowa.pfpnacc
12, // llvm.x86.3dnowa.pi2fw
12, // llvm.x86.3dnowa.pswapd
12, // llvm.x86.addcarry.32
12, // llvm.x86.addcarry.64
7, // llvm.x86.aesdec128kl
7, // llvm.x86.aesdec256kl
7, // llvm.x86.aesdecwide128kl
7, // llvm.x86.aesdecwide256kl
7, // llvm.x86.aesenc128kl
7, // llvm.x86.aesenc256kl
7, // llvm.x86.aesencwide128kl
7, // llvm.x86.aesencwide256kl
12, // llvm.x86.aesni.aesdec
12, // llvm.x86.aesni.aesdec.256
12, // llvm.x86.aesni.aesdec.512
12, // llvm.x86.aesni.aesdeclast
12, // llvm.x86.aesni.aesdeclast.256
12, // llvm.x86.aesni.aesdeclast.512
12, // llvm.x86.aesni.aesenc
12, // llvm.x86.aesni.aesenc.256
12, // llvm.x86.aesni.aesenc.512
12, // llvm.x86.aesni.aesenclast
12, // llvm.x86.aesni.aesenclast.256
12, // llvm.x86.aesni.aesenclast.512
12, // llvm.x86.aesni.aesimc
56, // llvm.x86.aesni.aeskeygenassist
12, // llvm.x86.avx.addsub.pd.256
12, // llvm.x86.avx.addsub.ps.256
12, // llvm.x86.avx.blendv.pd.256
12, // llvm.x86.avx.blendv.ps.256
72, // llvm.x86.avx.cmp.pd.256
72, // llvm.x86.avx.cmp.ps.256
12, // llvm.x86.avx.cvt.pd2.ps.256
12, // llvm.x86.avx.cvt.pd2dq.256
12, // llvm.x86.avx.cvt.ps2dq.256
12, // llvm.x86.avx.cvtt.pd2dq.256
12, // llvm.x86.avx.cvtt.ps2dq.256
72, // llvm.x86.avx.dp.ps.256
12, // llvm.x86.avx.hadd.pd.256
12, // llvm.x86.avx.hadd.ps.256
12, // llvm.x86.avx.hsub.pd.256
12, // llvm.x86.avx.hsub.ps.256
21, // llvm.x86.avx.ldu.dq.256
3, // llvm.x86.avx.maskload.pd
3, // llvm.x86.avx.maskload.pd.256
3, // llvm.x86.avx.maskload.ps
3, // llvm.x86.avx.maskload.ps.256
179, // llvm.x86.avx.maskstore.pd
179, // llvm.x86.avx.maskstore.pd.256
179, // llvm.x86.avx.maskstore.ps
179, // llvm.x86.avx.maskstore.ps.256
12, // llvm.x86.avx.max.pd.256
12, // llvm.x86.avx.max.ps.256
12, // llvm.x86.avx.min.pd.256
12, // llvm.x86.avx.min.ps.256
12, // llvm.x86.avx.movmsk.pd.256
12, // llvm.x86.avx.movmsk.ps.256
12, // llvm.x86.avx.ptestc.256
12, // llvm.x86.avx.ptestnzc.256
12, // llvm.x86.avx.ptestz.256
12, // llvm.x86.avx.rcp.ps.256
56, // llvm.x86.avx.round.pd.256
56, // llvm.x86.avx.round.ps.256
12, // llvm.x86.avx.rsqrt.ps.256
12, // llvm.x86.avx.vpermilvar.pd
12, // llvm.x86.avx.vpermilvar.pd.256
12, // llvm.x86.avx.vpermilvar.ps
12, // llvm.x86.avx.vpermilvar.ps.256
12, // llvm.x86.avx.vtestc.pd
12, // llvm.x86.avx.vtestc.pd.256
12, // llvm.x86.avx.vtestc.ps
12, // llvm.x86.avx.vtestc.ps.256
12, // llvm.x86.avx.vtestnzc.pd
12, // llvm.x86.avx.vtestnzc.pd.256
12, // llvm.x86.avx.vtestnzc.ps
12, // llvm.x86.avx.vtestnzc.ps.256
12, // llvm.x86.avx.vtestz.pd
12, // llvm.x86.avx.vtestz.pd.256
12, // llvm.x86.avx.vtestz.ps
12, // llvm.x86.avx.vtestz.ps.256
65, // llvm.x86.avx.vzeroall
65, // llvm.x86.avx.vzeroupper
210, // llvm.x86.avx2.gather.d.d
210, // llvm.x86.avx2.gather.d.d.256
210, // llvm.x86.avx2.gather.d.pd
210, // llvm.x86.avx2.gather.d.pd.256
210, // llvm.x86.avx2.gather.d.ps
210, // llvm.x86.avx2.gather.d.ps.256
210, // llvm.x86.avx2.gather.d.q
210, // llvm.x86.avx2.gather.d.q.256
210, // llvm.x86.avx2.gather.q.d
210, // llvm.x86.avx2.gather.q.d.256
210, // llvm.x86.avx2.gather.q.pd
210, // llvm.x86.avx2.gather.q.pd.256
210, // llvm.x86.avx2.gather.q.ps
210, // llvm.x86.avx2.gather.q.ps.256
210, // llvm.x86.avx2.gather.q.q
210, // llvm.x86.avx2.gather.q.q.256
3, // llvm.x86.avx2.maskload.d
3, // llvm.x86.avx2.maskload.d.256
3, // llvm.x86.avx2.maskload.q
3, // llvm.x86.avx2.maskload.q.256
179, // llvm.x86.avx2.maskstore.d
179, // llvm.x86.avx2.maskstore.d.256
179, // llvm.x86.avx2.maskstore.q
179, // llvm.x86.avx2.maskstore.q.256
72, // llvm.x86.avx2.mpsadbw
12, // llvm.x86.avx2.packssdw
12, // llvm.x86.avx2.packsswb
12, // llvm.x86.avx2.packusdw
12, // llvm.x86.avx2.packuswb
12, // llvm.x86.avx2.pavg.b
12, // llvm.x86.avx2.pavg.w
12, // llvm.x86.avx2.pblendvb
12, // llvm.x86.avx2.permd
12, // llvm.x86.avx2.permps
12, // llvm.x86.avx2.phadd.d
12, // llvm.x86.avx2.phadd.sw
12, // llvm.x86.avx2.phadd.w
12, // llvm.x86.avx2.phsub.d
12, // llvm.x86.avx2.phsub.sw
12, // llvm.x86.avx2.phsub.w
12, // llvm.x86.avx2.pmadd.ub.sw
12, // llvm.x86.avx2.pmadd.wd
12, // llvm.x86.avx2.pmovmskb
12, // llvm.x86.avx2.pmul.hr.sw
12, // llvm.x86.avx2.pmulh.w
12, // llvm.x86.avx2.pmulhu.w
12, // llvm.x86.avx2.psad.bw
12, // llvm.x86.avx2.pshuf.b
12, // llvm.x86.avx2.psign.b
12, // llvm.x86.avx2.psign.d
12, // llvm.x86.avx2.psign.w
12, // llvm.x86.avx2.psll.d
12, // llvm.x86.avx2.psll.q
12, // llvm.x86.avx2.psll.w
12, // llvm.x86.avx2.pslli.d
12, // llvm.x86.avx2.pslli.q
12, // llvm.x86.avx2.pslli.w
12, // llvm.x86.avx2.psllv.d
12, // llvm.x86.avx2.psllv.d.256
12, // llvm.x86.avx2.psllv.q
12, // llvm.x86.avx2.psllv.q.256
12, // llvm.x86.avx2.psra.d
12, // llvm.x86.avx2.psra.w
12, // llvm.x86.avx2.psrai.d
12, // llvm.x86.avx2.psrai.w
12, // llvm.x86.avx2.psrav.d
12, // llvm.x86.avx2.psrav.d.256
12, // llvm.x86.avx2.psrl.d
12, // llvm.x86.avx2.psrl.q
12, // llvm.x86.avx2.psrl.w
12, // llvm.x86.avx2.psrli.d
12, // llvm.x86.avx2.psrli.q
12, // llvm.x86.avx2.psrli.w
12, // llvm.x86.avx2.psrlv.d
12, // llvm.x86.avx2.psrlv.d.256
12, // llvm.x86.avx2.psrlv.q
12, // llvm.x86.avx2.psrlv.q.256
72, // llvm.x86.avx512.add.pd.512
72, // llvm.x86.avx512.add.ps.512
12, // llvm.x86.avx512.broadcastmb.128
12, // llvm.x86.avx512.broadcastmb.256
12, // llvm.x86.avx512.broadcastmb.512
12, // llvm.x86.avx512.broadcastmw.128
12, // llvm.x86.avx512.broadcastmw.256
12, // llvm.x86.avx512.broadcastmw.512
12, // llvm.x86.avx512.conflict.d.128
12, // llvm.x86.avx512.conflict.d.256
12, // llvm.x86.avx512.conflict.d.512
12, // llvm.x86.avx512.conflict.q.128
12, // llvm.x86.avx512.conflict.q.256
12, // llvm.x86.avx512.conflict.q.512
72, // llvm.x86.avx512.cvtsi2sd64
72, // llvm.x86.avx512.cvtsi2ss32
72, // llvm.x86.avx512.cvtsi2ss64
56, // llvm.x86.avx512.cvttsd2si
56, // llvm.x86.avx512.cvttsd2si64
56, // llvm.x86.avx512.cvttsd2usi
56, // llvm.x86.avx512.cvttsd2usi64
56, // llvm.x86.avx512.cvttss2si
56, // llvm.x86.avx512.cvttss2si64
56, // llvm.x86.avx512.cvttss2usi
56, // llvm.x86.avx512.cvttss2usi64
72, // llvm.x86.avx512.cvtusi2ss
72, // llvm.x86.avx512.cvtusi642sd
72, // llvm.x86.avx512.cvtusi642ss
72, // llvm.x86.avx512.dbpsadbw.128
72, // llvm.x86.avx512.dbpsadbw.256
72, // llvm.x86.avx512.dbpsadbw.512
72, // llvm.x86.avx512.div.pd.512
72, // llvm.x86.avx512.div.ps.512
73, // llvm.x86.avx512.exp2.pd
73, // llvm.x86.avx512.exp2.ps
56, // llvm.x86.avx512.fpclass.pd.128
56, // llvm.x86.avx512.fpclass.pd.256
56, // llvm.x86.avx512.fpclass.pd.512
56, // llvm.x86.avx512.fpclass.ps.128
56, // llvm.x86.avx512.fpclass.ps.256
56, // llvm.x86.avx512.fpclass.ps.512
210, // llvm.x86.avx512.gather.dpd.512
210, // llvm.x86.avx512.gather.dpi.512
210, // llvm.x86.avx512.gather.dpq.512
210, // llvm.x86.avx512.gather.dps.512
210, // llvm.x86.avx512.gather.qpd.512
210, // llvm.x86.avx512.gather.qpi.512
210, // llvm.x86.avx512.gather.qpq.512
210, // llvm.x86.avx512.gather.qps.512
210, // llvm.x86.avx512.gather3div2.df
210, // llvm.x86.avx512.gather3div2.di
210, // llvm.x86.avx512.gather3div4.df
210, // llvm.x86.avx512.gather3div4.di
210, // llvm.x86.avx512.gather3div4.sf
210, // llvm.x86.avx512.gather3div4.si
210, // llvm.x86.avx512.gather3div8.sf
210, // llvm.x86.avx512.gather3div8.si
210, // llvm.x86.avx512.gather3siv2.df
210, // llvm.x86.avx512.gather3siv2.di
210, // llvm.x86.avx512.gather3siv4.df
210, // llvm.x86.avx512.gather3siv4.di
210, // llvm.x86.avx512.gather3siv4.sf
210, // llvm.x86.avx512.gather3siv4.si
210, // llvm.x86.avx512.gather3siv8.sf
210, // llvm.x86.avx512.gather3siv8.si
211, // llvm.x86.avx512.gatherpf.dpd.512
211, // llvm.x86.avx512.gatherpf.dps.512
211, // llvm.x86.avx512.gatherpf.qpd.512
211, // llvm.x86.avx512.gatherpf.qps.512
12, // llvm.x86.avx512.kadd.b
12, // llvm.x86.avx512.kadd.d
12, // llvm.x86.avx512.kadd.q
12, // llvm.x86.avx512.kadd.w
12, // llvm.x86.avx512.ktestc.b
12, // llvm.x86.avx512.ktestc.d
12, // llvm.x86.avx512.ktestc.q
12, // llvm.x86.avx512.ktestc.w
12, // llvm.x86.avx512.ktestz.b
12, // llvm.x86.avx512.ktestz.d
12, // llvm.x86.avx512.ktestz.q
12, // llvm.x86.avx512.ktestz.w
76, // llvm.x86.avx512.mask.add.sd.round
76, // llvm.x86.avx512.mask.add.ss.round
72, // llvm.x86.avx512.mask.cmp.pd.128
72, // llvm.x86.avx512.mask.cmp.pd.256
212, // llvm.x86.avx512.mask.cmp.pd.512
72, // llvm.x86.avx512.mask.cmp.ps.128
72, // llvm.x86.avx512.mask.cmp.ps.256
212, // llvm.x86.avx512.mask.cmp.ps.512
212, // llvm.x86.avx512.mask.cmp.sd
212, // llvm.x86.avx512.mask.cmp.ss
12, // llvm.x86.avx512.mask.compress
12, // llvm.x86.avx512.mask.cvtpd2dq.128
73, // llvm.x86.avx512.mask.cvtpd2dq.512
12, // llvm.x86.avx512.mask.cvtpd2ps
73, // llvm.x86.avx512.mask.cvtpd2ps.512
12, // llvm.x86.avx512.mask.cvtpd2qq.128
12, // llvm.x86.avx512.mask.cvtpd2qq.256
73, // llvm.x86.avx512.mask.cvtpd2qq.512
12, // llvm.x86.avx512.mask.cvtpd2udq.128
12, // llvm.x86.avx512.mask.cvtpd2udq.256
73, // llvm.x86.avx512.mask.cvtpd2udq.512
12, // llvm.x86.avx512.mask.cvtpd2uqq.128
12, // llvm.x86.avx512.mask.cvtpd2uqq.256
73, // llvm.x86.avx512.mask.cvtpd2uqq.512
12, // llvm.x86.avx512.mask.cvtps2dq.128
12, // llvm.x86.avx512.mask.cvtps2dq.256
73, // llvm.x86.avx512.mask.cvtps2dq.512
73, // llvm.x86.avx512.mask.cvtps2pd.512
12, // llvm.x86.avx512.mask.cvtps2qq.128
12, // llvm.x86.avx512.mask.cvtps2qq.256
73, // llvm.x86.avx512.mask.cvtps2qq.512
12, // llvm.x86.avx512.mask.cvtps2udq.128
12, // llvm.x86.avx512.mask.cvtps2udq.256
73, // llvm.x86.avx512.mask.cvtps2udq.512
12, // llvm.x86.avx512.mask.cvtps2uqq.128
12, // llvm.x86.avx512.mask.cvtps2uqq.256
73, // llvm.x86.avx512.mask.cvtps2uqq.512
12, // llvm.x86.avx512.mask.cvtqq2ps.128
76, // llvm.x86.avx512.mask.cvtsd2ss.round
76, // llvm.x86.avx512.mask.cvtss2sd.round
12, // llvm.x86.avx512.mask.cvttpd2dq.128
73, // llvm.x86.avx512.mask.cvttpd2dq.512
12, // llvm.x86.avx512.mask.cvttpd2qq.128
12, // llvm.x86.avx512.mask.cvttpd2qq.256
73, // llvm.x86.avx512.mask.cvttpd2qq.512
12, // llvm.x86.avx512.mask.cvttpd2udq.128
12, // llvm.x86.avx512.mask.cvttpd2udq.256
73, // llvm.x86.avx512.mask.cvttpd2udq.512
12, // llvm.x86.avx512.mask.cvttpd2uqq.128
12, // llvm.x86.avx512.mask.cvttpd2uqq.256
73, // llvm.x86.avx512.mask.cvttpd2uqq.512
73, // llvm.x86.avx512.mask.cvttps2dq.512
12, // llvm.x86.avx512.mask.cvttps2qq.128
12, // llvm.x86.avx512.mask.cvttps2qq.256
73, // llvm.x86.avx512.mask.cvttps2qq.512
12, // llvm.x86.avx512.mask.cvttps2udq.128
12, // llvm.x86.avx512.mask.cvttps2udq.256
73, // llvm.x86.avx512.mask.cvttps2udq.512
12, // llvm.x86.avx512.mask.cvttps2uqq.128
12, // llvm.x86.avx512.mask.cvttps2uqq.256
73, // llvm.x86.avx512.mask.cvttps2uqq.512
12, // llvm.x86.avx512.mask.cvtuqq2ps.128
76, // llvm.x86.avx512.mask.div.sd.round
76, // llvm.x86.avx512.mask.div.ss.round
12, // llvm.x86.avx512.mask.expand
73, // llvm.x86.avx512.mask.fixupimm.pd.128
73, // llvm.x86.avx512.mask.fixupimm.pd.256
213, // llvm.x86.avx512.mask.fixupimm.pd.512
73, // llvm.x86.avx512.mask.fixupimm.ps.128
73, // llvm.x86.avx512.mask.fixupimm.ps.256
213, // llvm.x86.avx512.mask.fixupimm.ps.512
213, // llvm.x86.avx512.mask.fixupimm.sd
213, // llvm.x86.avx512.mask.fixupimm.ss
56, // llvm.x86.avx512.mask.fpclass.sd
56, // llvm.x86.avx512.mask.fpclass.ss
210, // llvm.x86.avx512.mask.gather.dpd.512
210, // llvm.x86.avx512.mask.gather.dpi.512
210, // llvm.x86.avx512.mask.gather.dpq.512
210, // llvm.x86.avx512.mask.gather.dps.512
210, // llvm.x86.avx512.mask.gather.qpd.512
210, // llvm.x86.avx512.mask.gather.qpi.512
210, // llvm.x86.avx512.mask.gather.qpq.512
210, // llvm.x86.avx512.mask.gather.qps.512
210, // llvm.x86.avx512.mask.gather3div2.df
210, // llvm.x86.avx512.mask.gather3div2.di
210, // llvm.x86.avx512.mask.gather3div4.df
210, // llvm.x86.avx512.mask.gather3div4.di
210, // llvm.x86.avx512.mask.gather3div4.sf
210, // llvm.x86.avx512.mask.gather3div4.si
210, // llvm.x86.avx512.mask.gather3div8.sf
210, // llvm.x86.avx512.mask.gather3div8.si
210, // llvm.x86.avx512.mask.gather3siv2.df
210, // llvm.x86.avx512.mask.gather3siv2.di
210, // llvm.x86.avx512.mask.gather3siv4.df
210, // llvm.x86.avx512.mask.gather3siv4.di
210, // llvm.x86.avx512.mask.gather3siv4.sf
210, // llvm.x86.avx512.mask.gather3siv4.si
210, // llvm.x86.avx512.mask.gather3siv8.sf
210, // llvm.x86.avx512.mask.gather3siv8.si
12, // llvm.x86.avx512.mask.getexp.pd.128
12, // llvm.x86.avx512.mask.getexp.pd.256
73, // llvm.x86.avx512.mask.getexp.pd.512
12, // llvm.x86.avx512.mask.getexp.ps.128
12, // llvm.x86.avx512.mask.getexp.ps.256
73, // llvm.x86.avx512.mask.getexp.ps.512
76, // llvm.x86.avx512.mask.getexp.sd
76, // llvm.x86.avx512.mask.getexp.ss
56, // llvm.x86.avx512.mask.getmant.pd.128
56, // llvm.x86.avx512.mask.getmant.pd.256
214, // llvm.x86.avx512.mask.getmant.pd.512
56, // llvm.x86.avx512.mask.getmant.ps.128
56, // llvm.x86.avx512.mask.getmant.ps.256
214, // llvm.x86.avx512.mask.getmant.ps.512
215, // llvm.x86.avx512.mask.getmant.sd
215, // llvm.x86.avx512.mask.getmant.ss
76, // llvm.x86.avx512.mask.max.sd.round
76, // llvm.x86.avx512.mask.max.ss.round
76, // llvm.x86.avx512.mask.min.sd.round
76, // llvm.x86.avx512.mask.min.ss.round
76, // llvm.x86.avx512.mask.mul.sd.round
76, // llvm.x86.avx512.mask.mul.ss.round
12, // llvm.x86.avx512.mask.pmov.db.128
12, // llvm.x86.avx512.mask.pmov.db.256
12, // llvm.x86.avx512.mask.pmov.db.512
179, // llvm.x86.avx512.mask.pmov.db.mem.128
179, // llvm.x86.avx512.mask.pmov.db.mem.256
179, // llvm.x86.avx512.mask.pmov.db.mem.512
12, // llvm.x86.avx512.mask.pmov.dw.128
12, // llvm.x86.avx512.mask.pmov.dw.256
12, // llvm.x86.avx512.mask.pmov.dw.512
179, // llvm.x86.avx512.mask.pmov.dw.mem.128
179, // llvm.x86.avx512.mask.pmov.dw.mem.256
179, // llvm.x86.avx512.mask.pmov.dw.mem.512
12, // llvm.x86.avx512.mask.pmov.qb.128
12, // llvm.x86.avx512.mask.pmov.qb.256
12, // llvm.x86.avx512.mask.pmov.qb.512
179, // llvm.x86.avx512.mask.pmov.qb.mem.128
179, // llvm.x86.avx512.mask.pmov.qb.mem.256
179, // llvm.x86.avx512.mask.pmov.qb.mem.512
12, // llvm.x86.avx512.mask.pmov.qd.128
179, // llvm.x86.avx512.mask.pmov.qd.mem.128
179, // llvm.x86.avx512.mask.pmov.qd.mem.256
179, // llvm.x86.avx512.mask.pmov.qd.mem.512
12, // llvm.x86.avx512.mask.pmov.qw.128
12, // llvm.x86.avx512.mask.pmov.qw.256
12, // llvm.x86.avx512.mask.pmov.qw.512
179, // llvm.x86.avx512.mask.pmov.qw.mem.128
179, // llvm.x86.avx512.mask.pmov.qw.mem.256
179, // llvm.x86.avx512.mask.pmov.qw.mem.512
12, // llvm.x86.avx512.mask.pmov.wb.128
179, // llvm.x86.avx512.mask.pmov.wb.mem.128
179, // llvm.x86.avx512.mask.pmov.wb.mem.256
179, // llvm.x86.avx512.mask.pmov.wb.mem.512
12, // llvm.x86.avx512.mask.pmovs.db.128
12, // llvm.x86.avx512.mask.pmovs.db.256
12, // llvm.x86.avx512.mask.pmovs.db.512
179, // llvm.x86.avx512.mask.pmovs.db.mem.128
179, // llvm.x86.avx512.mask.pmovs.db.mem.256
179, // llvm.x86.avx512.mask.pmovs.db.mem.512
12, // llvm.x86.avx512.mask.pmovs.dw.128
12, // llvm.x86.avx512.mask.pmovs.dw.256
12, // llvm.x86.avx512.mask.pmovs.dw.512
179, // llvm.x86.avx512.mask.pmovs.dw.mem.128
179, // llvm.x86.avx512.mask.pmovs.dw.mem.256
179, // llvm.x86.avx512.mask.pmovs.dw.mem.512
12, // llvm.x86.avx512.mask.pmovs.qb.128
12, // llvm.x86.avx512.mask.pmovs.qb.256
12, // llvm.x86.avx512.mask.pmovs.qb.512
179, // llvm.x86.avx512.mask.pmovs.qb.mem.128
179, // llvm.x86.avx512.mask.pmovs.qb.mem.256
179, // llvm.x86.avx512.mask.pmovs.qb.mem.512
12, // llvm.x86.avx512.mask.pmovs.qd.128
12, // llvm.x86.avx512.mask.pmovs.qd.256
12, // llvm.x86.avx512.mask.pmovs.qd.512
179, // llvm.x86.avx512.mask.pmovs.qd.mem.128
179, // llvm.x86.avx512.mask.pmovs.qd.mem.256
179, // llvm.x86.avx512.mask.pmovs.qd.mem.512
12, // llvm.x86.avx512.mask.pmovs.qw.128
12, // llvm.x86.avx512.mask.pmovs.qw.256
12, // llvm.x86.avx512.mask.pmovs.qw.512
179, // llvm.x86.avx512.mask.pmovs.qw.mem.128
179, // llvm.x86.avx512.mask.pmovs.qw.mem.256
179, // llvm.x86.avx512.mask.pmovs.qw.mem.512
12, // llvm.x86.avx512.mask.pmovs.wb.128
12, // llvm.x86.avx512.mask.pmovs.wb.256
12, // llvm.x86.avx512.mask.pmovs.wb.512
179, // llvm.x86.avx512.mask.pmovs.wb.mem.128
179, // llvm.x86.avx512.mask.pmovs.wb.mem.256
179, // llvm.x86.avx512.mask.pmovs.wb.mem.512
12, // llvm.x86.avx512.mask.pmovus.db.128
12, // llvm.x86.avx512.mask.pmovus.db.256
12, // llvm.x86.avx512.mask.pmovus.db.512
179, // llvm.x86.avx512.mask.pmovus.db.mem.128
179, // llvm.x86.avx512.mask.pmovus.db.mem.256
179, // llvm.x86.avx512.mask.pmovus.db.mem.512
12, // llvm.x86.avx512.mask.pmovus.dw.128
12, // llvm.x86.avx512.mask.pmovus.dw.256
12, // llvm.x86.avx512.mask.pmovus.dw.512
179, // llvm.x86.avx512.mask.pmovus.dw.mem.128
179, // llvm.x86.avx512.mask.pmovus.dw.mem.256
179, // llvm.x86.avx512.mask.pmovus.dw.mem.512
12, // llvm.x86.avx512.mask.pmovus.qb.128
12, // llvm.x86.avx512.mask.pmovus.qb.256
12, // llvm.x86.avx512.mask.pmovus.qb.512
179, // llvm.x86.avx512.mask.pmovus.qb.mem.128
179, // llvm.x86.avx512.mask.pmovus.qb.mem.256
179, // llvm.x86.avx512.mask.pmovus.qb.mem.512
12, // llvm.x86.avx512.mask.pmovus.qd.128
12, // llvm.x86.avx512.mask.pmovus.qd.256
12, // llvm.x86.avx512.mask.pmovus.qd.512
179, // llvm.x86.avx512.mask.pmovus.qd.mem.128
179, // llvm.x86.avx512.mask.pmovus.qd.mem.256
179, // llvm.x86.avx512.mask.pmovus.qd.mem.512
12, // llvm.x86.avx512.mask.pmovus.qw.128
12, // llvm.x86.avx512.mask.pmovus.qw.256
12, // llvm.x86.avx512.mask.pmovus.qw.512
179, // llvm.x86.avx512.mask.pmovus.qw.mem.128
179, // llvm.x86.avx512.mask.pmovus.qw.mem.256
179, // llvm.x86.avx512.mask.pmovus.qw.mem.512
12, // llvm.x86.avx512.mask.pmovus.wb.128
12, // llvm.x86.avx512.mask.pmovus.wb.256
12, // llvm.x86.avx512.mask.pmovus.wb.512
179, // llvm.x86.avx512.mask.pmovus.wb.mem.128
179, // llvm.x86.avx512.mask.pmovus.wb.mem.256
179, // llvm.x86.avx512.mask.pmovus.wb.mem.512
72, // llvm.x86.avx512.mask.range.pd.128
72, // llvm.x86.avx512.mask.range.pd.256
215, // llvm.x86.avx512.mask.range.pd.512
72, // llvm.x86.avx512.mask.range.ps.128
72, // llvm.x86.avx512.mask.range.ps.256
215, // llvm.x86.avx512.mask.range.ps.512
216, // llvm.x86.avx512.mask.range.sd
216, // llvm.x86.avx512.mask.range.ss
56, // llvm.x86.avx512.mask.reduce.pd.128
56, // llvm.x86.avx512.mask.reduce.pd.256
214, // llvm.x86.avx512.mask.reduce.pd.512
56, // llvm.x86.avx512.mask.reduce.ps.128
56, // llvm.x86.avx512.mask.reduce.ps.256
214, // llvm.x86.avx512.mask.reduce.ps.512
216, // llvm.x86.avx512.mask.reduce.sd
216, // llvm.x86.avx512.mask.reduce.ss
56, // llvm.x86.avx512.mask.rndscale.pd.128
56, // llvm.x86.avx512.mask.rndscale.pd.256
214, // llvm.x86.avx512.mask.rndscale.pd.512
56, // llvm.x86.avx512.mask.rndscale.ps.128
56, // llvm.x86.avx512.mask.rndscale.ps.256
214, // llvm.x86.avx512.mask.rndscale.ps.512
216, // llvm.x86.avx512.mask.rndscale.sd
216, // llvm.x86.avx512.mask.rndscale.ss
12, // llvm.x86.avx512.mask.scalef.pd.128
12, // llvm.x86.avx512.mask.scalef.pd.256
76, // llvm.x86.avx512.mask.scalef.pd.512
12, // llvm.x86.avx512.mask.scalef.ps.128
12, // llvm.x86.avx512.mask.scalef.ps.256
76, // llvm.x86.avx512.mask.scalef.ps.512
76, // llvm.x86.avx512.mask.scalef.sd
76, // llvm.x86.avx512.mask.scalef.ss
90, // llvm.x86.avx512.mask.scatter.dpd.512
90, // llvm.x86.avx512.mask.scatter.dpi.512
90, // llvm.x86.avx512.mask.scatter.dpq.512
90, // llvm.x86.avx512.mask.scatter.dps.512
90, // llvm.x86.avx512.mask.scatter.qpd.512
90, // llvm.x86.avx512.mask.scatter.qpi.512
90, // llvm.x86.avx512.mask.scatter.qpq.512
90, // llvm.x86.avx512.mask.scatter.qps.512
90, // llvm.x86.avx512.mask.scatterdiv2.df
90, // llvm.x86.avx512.mask.scatterdiv2.di
90, // llvm.x86.avx512.mask.scatterdiv4.df
90, // llvm.x86.avx512.mask.scatterdiv4.di
90, // llvm.x86.avx512.mask.scatterdiv4.sf
90, // llvm.x86.avx512.mask.scatterdiv4.si
90, // llvm.x86.avx512.mask.scatterdiv8.sf
90, // llvm.x86.avx512.mask.scatterdiv8.si
90, // llvm.x86.avx512.mask.scattersiv2.df
90, // llvm.x86.avx512.mask.scattersiv2.di
90, // llvm.x86.avx512.mask.scattersiv4.df
90, // llvm.x86.avx512.mask.scattersiv4.di
90, // llvm.x86.avx512.mask.scattersiv4.sf
90, // llvm.x86.avx512.mask.scattersiv4.si
90, // llvm.x86.avx512.mask.scattersiv8.sf
90, // llvm.x86.avx512.mask.scattersiv8.si
76, // llvm.x86.avx512.mask.sqrt.sd
76, // llvm.x86.avx512.mask.sqrt.ss
76, // llvm.x86.avx512.mask.sub.sd.round
76, // llvm.x86.avx512.mask.sub.ss.round
73, // llvm.x86.avx512.mask.vcvtph2ps.512
56, // llvm.x86.avx512.mask.vcvtps2ph.128
56, // llvm.x86.avx512.mask.vcvtps2ph.256
56, // llvm.x86.avx512.mask.vcvtps2ph.512
73, // llvm.x86.avx512.maskz.fixupimm.pd.128
73, // llvm.x86.avx512.maskz.fixupimm.pd.256
213, // llvm.x86.avx512.maskz.fixupimm.pd.512
73, // llvm.x86.avx512.maskz.fixupimm.ps.128
73, // llvm.x86.avx512.maskz.fixupimm.ps.256
213, // llvm.x86.avx512.maskz.fixupimm.ps.512
213, // llvm.x86.avx512.maskz.fixupimm.sd
213, // llvm.x86.avx512.maskz.fixupimm.ss
72, // llvm.x86.avx512.max.pd.512
72, // llvm.x86.avx512.max.ps.512
72, // llvm.x86.avx512.min.pd.512
72, // llvm.x86.avx512.min.ps.512
72, // llvm.x86.avx512.mul.pd.512
72, // llvm.x86.avx512.mul.ps.512
12, // llvm.x86.avx512.packssdw.512
12, // llvm.x86.avx512.packsswb.512
12, // llvm.x86.avx512.packusdw.512
12, // llvm.x86.avx512.packuswb.512
12, // llvm.x86.avx512.pavg.b.512
12, // llvm.x86.avx512.pavg.w.512
12, // llvm.x86.avx512.permvar.df.256
12, // llvm.x86.avx512.permvar.df.512
12, // llvm.x86.avx512.permvar.di.256
12, // llvm.x86.avx512.permvar.di.512
12, // llvm.x86.avx512.permvar.hi.128
12, // llvm.x86.avx512.permvar.hi.256
12, // llvm.x86.avx512.permvar.hi.512
12, // llvm.x86.avx512.permvar.qi.128
12, // llvm.x86.avx512.permvar.qi.256
12, // llvm.x86.avx512.permvar.qi.512
12, // llvm.x86.avx512.permvar.sf.512
12, // llvm.x86.avx512.permvar.si.512
12, // llvm.x86.avx512.pmaddubs.w.512
12, // llvm.x86.avx512.pmaddw.d.512
12, // llvm.x86.avx512.pmul.hr.sw.512
12, // llvm.x86.avx512.pmulh.w.512
12, // llvm.x86.avx512.pmulhu.w.512
12, // llvm.x86.avx512.pmultishift.qb.128
12, // llvm.x86.avx512.pmultishift.qb.256
12, // llvm.x86.avx512.pmultishift.qb.512
12, // llvm.x86.avx512.psad.bw.512
12, // llvm.x86.avx512.pshuf.b.512
12, // llvm.x86.avx512.psll.d.512
12, // llvm.x86.avx512.psll.q.512
12, // llvm.x86.avx512.psll.w.512
12, // llvm.x86.avx512.pslli.d.512
12, // llvm.x86.avx512.pslli.q.512
12, // llvm.x86.avx512.pslli.w.512
12, // llvm.x86.avx512.psllv.d.512
12, // llvm.x86.avx512.psllv.q.512
12, // llvm.x86.avx512.psllv.w.128
12, // llvm.x86.avx512.psllv.w.256
12, // llvm.x86.avx512.psllv.w.512
12, // llvm.x86.avx512.psra.d.512
12, // llvm.x86.avx512.psra.q.128
12, // llvm.x86.avx512.psra.q.256
12, // llvm.x86.avx512.psra.q.512
12, // llvm.x86.avx512.psra.w.512
12, // llvm.x86.avx512.psrai.d.512
12, // llvm.x86.avx512.psrai.q.128
12, // llvm.x86.avx512.psrai.q.256
12, // llvm.x86.avx512.psrai.q.512
12, // llvm.x86.avx512.psrai.w.512
12, // llvm.x86.avx512.psrav.d.512
12, // llvm.x86.avx512.psrav.q.128
12, // llvm.x86.avx512.psrav.q.256
12, // llvm.x86.avx512.psrav.q.512
12, // llvm.x86.avx512.psrav.w.128
12, // llvm.x86.avx512.psrav.w.256
12, // llvm.x86.avx512.psrav.w.512
12, // llvm.x86.avx512.psrl.d.512
12, // llvm.x86.avx512.psrl.q.512
12, // llvm.x86.avx512.psrl.w.512
12, // llvm.x86.avx512.psrli.d.512
12, // llvm.x86.avx512.psrli.q.512
12, // llvm.x86.avx512.psrli.w.512
12, // llvm.x86.avx512.psrlv.d.512
12, // llvm.x86.avx512.psrlv.q.512
12, // llvm.x86.avx512.psrlv.w.128
12, // llvm.x86.avx512.psrlv.w.256
12, // llvm.x86.avx512.psrlv.w.512
73, // llvm.x86.avx512.pternlog.d.128
73, // llvm.x86.avx512.pternlog.d.256
73, // llvm.x86.avx512.pternlog.d.512
73, // llvm.x86.avx512.pternlog.q.128
73, // llvm.x86.avx512.pternlog.q.256
73, // llvm.x86.avx512.pternlog.q.512
12, // llvm.x86.avx512.rcp14.pd.128
12, // llvm.x86.avx512.rcp14.pd.256
12, // llvm.x86.avx512.rcp14.pd.512
12, // llvm.x86.avx512.rcp14.ps.128
12, // llvm.x86.avx512.rcp14.ps.256
12, // llvm.x86.avx512.rcp14.ps.512
12, // llvm.x86.avx512.rcp14.sd
12, // llvm.x86.avx512.rcp14.ss
73, // llvm.x86.avx512.rcp28.pd
73, // llvm.x86.avx512.rcp28.ps
76, // llvm.x86.avx512.rcp28.sd
76, // llvm.x86.avx512.rcp28.ss
12, // llvm.x86.avx512.rsqrt14.pd.128
12, // llvm.x86.avx512.rsqrt14.pd.256
12, // llvm.x86.avx512.rsqrt14.pd.512
12, // llvm.x86.avx512.rsqrt14.ps.128
12, // llvm.x86.avx512.rsqrt14.ps.256
12, // llvm.x86.avx512.rsqrt14.ps.512
12, // llvm.x86.avx512.rsqrt14.sd
12, // llvm.x86.avx512.rsqrt14.ss
73, // llvm.x86.avx512.rsqrt28.pd
73, // llvm.x86.avx512.rsqrt28.ps
76, // llvm.x86.avx512.rsqrt28.sd
76, // llvm.x86.avx512.rsqrt28.ss
90, // llvm.x86.avx512.scatter.dpd.512
90, // llvm.x86.avx512.scatter.dpi.512
90, // llvm.x86.avx512.scatter.dpq.512
90, // llvm.x86.avx512.scatter.dps.512
90, // llvm.x86.avx512.scatter.qpd.512
90, // llvm.x86.avx512.scatter.qpi.512
90, // llvm.x86.avx512.scatter.qpq.512
90, // llvm.x86.avx512.scatter.qps.512
90, // llvm.x86.avx512.scatterdiv2.df
90, // llvm.x86.avx512.scatterdiv2.di
90, // llvm.x86.avx512.scatterdiv4.df
90, // llvm.x86.avx512.scatterdiv4.di
90, // llvm.x86.avx512.scatterdiv4.sf
90, // llvm.x86.avx512.scatterdiv4.si
90, // llvm.x86.avx512.scatterdiv8.sf
90, // llvm.x86.avx512.scatterdiv8.si
211, // llvm.x86.avx512.scatterpf.dpd.512
211, // llvm.x86.avx512.scatterpf.dps.512
211, // llvm.x86.avx512.scatterpf.qpd.512
211, // llvm.x86.avx512.scatterpf.qps.512
90, // llvm.x86.avx512.scattersiv2.df
90, // llvm.x86.avx512.scattersiv2.di
90, // llvm.x86.avx512.scattersiv4.df
90, // llvm.x86.avx512.scattersiv4.di
90, // llvm.x86.avx512.scattersiv4.sf
90, // llvm.x86.avx512.scattersiv4.si
90, // llvm.x86.avx512.scattersiv8.sf
90, // llvm.x86.avx512.scattersiv8.si
56, // llvm.x86.avx512.sitofp.round
56, // llvm.x86.avx512.sqrt.pd.512
56, // llvm.x86.avx512.sqrt.ps.512
72, // llvm.x86.avx512.sub.pd.512
72, // llvm.x86.avx512.sub.ps.512
56, // llvm.x86.avx512.uitofp.round
183, // llvm.x86.avx512.vcomi.sd
183, // llvm.x86.avx512.vcomi.ss
56, // llvm.x86.avx512.vcvtsd2si32
56, // llvm.x86.avx512.vcvtsd2si64
56, // llvm.x86.avx512.vcvtsd2usi32
56, // llvm.x86.avx512.vcvtsd2usi64
56, // llvm.x86.avx512.vcvtss2si32
56, // llvm.x86.avx512.vcvtss2si64
56, // llvm.x86.avx512.vcvtss2usi32
56, // llvm.x86.avx512.vcvtss2usi64
73, // llvm.x86.avx512.vfmadd.f32
73, // llvm.x86.avx512.vfmadd.f64
73, // llvm.x86.avx512.vfmadd.pd.512
73, // llvm.x86.avx512.vfmadd.ps.512
73, // llvm.x86.avx512.vfmaddsub.pd.512
73, // llvm.x86.avx512.vfmaddsub.ps.512
12, // llvm.x86.avx512.vp2intersect.d.128
12, // llvm.x86.avx512.vp2intersect.d.256
12, // llvm.x86.avx512.vp2intersect.d.512
12, // llvm.x86.avx512.vp2intersect.q.128
12, // llvm.x86.avx512.vp2intersect.q.256
12, // llvm.x86.avx512.vp2intersect.q.512
12, // llvm.x86.avx512.vpdpbusd.128
12, // llvm.x86.avx512.vpdpbusd.256
12, // llvm.x86.avx512.vpdpbusd.512
12, // llvm.x86.avx512.vpdpbusds.128
12, // llvm.x86.avx512.vpdpbusds.256
12, // llvm.x86.avx512.vpdpbusds.512
12, // llvm.x86.avx512.vpdpwssd.128
12, // llvm.x86.avx512.vpdpwssd.256
12, // llvm.x86.avx512.vpdpwssd.512
12, // llvm.x86.avx512.vpdpwssds.128
12, // llvm.x86.avx512.vpdpwssds.256
12, // llvm.x86.avx512.vpdpwssds.512
12, // llvm.x86.avx512.vpermi2var.d.128
12, // llvm.x86.avx512.vpermi2var.d.256
12, // llvm.x86.avx512.vpermi2var.d.512
12, // llvm.x86.avx512.vpermi2var.hi.128
12, // llvm.x86.avx512.vpermi2var.hi.256
12, // llvm.x86.avx512.vpermi2var.hi.512
12, // llvm.x86.avx512.vpermi2var.pd.128
12, // llvm.x86.avx512.vpermi2var.pd.256
12, // llvm.x86.avx512.vpermi2var.pd.512
12, // llvm.x86.avx512.vpermi2var.ps.128
12, // llvm.x86.avx512.vpermi2var.ps.256
12, // llvm.x86.avx512.vpermi2var.ps.512
12, // llvm.x86.avx512.vpermi2var.q.128
12, // llvm.x86.avx512.vpermi2var.q.256
12, // llvm.x86.avx512.vpermi2var.q.512
12, // llvm.x86.avx512.vpermi2var.qi.128
12, // llvm.x86.avx512.vpermi2var.qi.256
12, // llvm.x86.avx512.vpermi2var.qi.512
12, // llvm.x86.avx512.vpermilvar.pd.512
12, // llvm.x86.avx512.vpermilvar.ps.512
12, // llvm.x86.avx512.vpmadd52h.uq.128
12, // llvm.x86.avx512.vpmadd52h.uq.256
12, // llvm.x86.avx512.vpmadd52h.uq.512
12, // llvm.x86.avx512.vpmadd52l.uq.128
12, // llvm.x86.avx512.vpmadd52l.uq.256
12, // llvm.x86.avx512.vpmadd52l.uq.512
12, // llvm.x86.avx512.vpshufbitqmb.128
12, // llvm.x86.avx512.vpshufbitqmb.256
12, // llvm.x86.avx512.vpshufbitqmb.512
12, // llvm.x86.avx512bf16.cvtne2ps2bf16.128
12, // llvm.x86.avx512bf16.cvtne2ps2bf16.256
12, // llvm.x86.avx512bf16.cvtne2ps2bf16.512
12, // llvm.x86.avx512bf16.cvtneps2bf16.256
12, // llvm.x86.avx512bf16.cvtneps2bf16.512
12, // llvm.x86.avx512bf16.dpbf16ps.128
12, // llvm.x86.avx512bf16.dpbf16ps.256
12, // llvm.x86.avx512bf16.dpbf16ps.512
12, // llvm.x86.avx512bf16.mask.cvtneps2bf16.128
12, // llvm.x86.bmi.bextr.32
12, // llvm.x86.bmi.bextr.64
12, // llvm.x86.bmi.bzhi.32
12, // llvm.x86.bmi.bzhi.64
12, // llvm.x86.bmi.pdep.32
12, // llvm.x86.bmi.pdep.64
12, // llvm.x86.bmi.pext.32
12, // llvm.x86.bmi.pext.64
7, // llvm.x86.cldemote
7, // llvm.x86.clflushopt
7, // llvm.x86.clrssbsy
7, // llvm.x86.clui
7, // llvm.x86.clwb
7, // llvm.x86.clzero
7, // llvm.x86.directstore32
7, // llvm.x86.directstore64
7, // llvm.x86.encodekey128
7, // llvm.x86.encodekey256
7, // llvm.x86.enqcmd
7, // llvm.x86.enqcmds
7, // llvm.x86.flags.read.u32
7, // llvm.x86.flags.read.u64
7, // llvm.x86.flags.write.u32
7, // llvm.x86.flags.write.u64
12, // llvm.x86.fma.vfmaddsub.pd
12, // llvm.x86.fma.vfmaddsub.pd.256
12, // llvm.x86.fma.vfmaddsub.ps
12, // llvm.x86.fma.vfmaddsub.ps.256
7, // llvm.x86.fxrstor
7, // llvm.x86.fxrstor64
7, // llvm.x86.fxsave
7, // llvm.x86.fxsave64
7, // llvm.x86.incsspd
7, // llvm.x86.incsspq
84, // llvm.x86.int
7, // llvm.x86.invpcid
7, // llvm.x86.ldtilecfg
7, // llvm.x86.llwpcb
7, // llvm.x86.loadiwkey
217, // llvm.x86.lwpins32
217, // llvm.x86.lwpins64
217, // llvm.x86.lwpval32
217, // llvm.x86.lwpval64
7, // llvm.x86.mmx.emms
7, // llvm.x86.mmx.femms
7, // llvm.x86.mmx.maskmovq
7, // llvm.x86.mmx.movnt.dq
12, // llvm.x86.mmx.packssdw
12, // llvm.x86.mmx.packsswb
12, // llvm.x86.mmx.packuswb
12, // llvm.x86.mmx.padd.b
12, // llvm.x86.mmx.padd.d
12, // llvm.x86.mmx.padd.q
12, // llvm.x86.mmx.padd.w
12, // llvm.x86.mmx.padds.b
12, // llvm.x86.mmx.padds.w
12, // llvm.x86.mmx.paddus.b
12, // llvm.x86.mmx.paddus.w
72, // llvm.x86.mmx.palignr.b
12, // llvm.x86.mmx.pand
12, // llvm.x86.mmx.pandn
12, // llvm.x86.mmx.pavg.b
12, // llvm.x86.mmx.pavg.w
12, // llvm.x86.mmx.pcmpeq.b
12, // llvm.x86.mmx.pcmpeq.d
12, // llvm.x86.mmx.pcmpeq.w
12, // llvm.x86.mmx.pcmpgt.b
12, // llvm.x86.mmx.pcmpgt.d
12, // llvm.x86.mmx.pcmpgt.w
56, // llvm.x86.mmx.pextr.w
72, // llvm.x86.mmx.pinsr.w
12, // llvm.x86.mmx.pmadd.wd
12, // llvm.x86.mmx.pmaxs.w
12, // llvm.x86.mmx.pmaxu.b
12, // llvm.x86.mmx.pmins.w
12, // llvm.x86.mmx.pminu.b
12, // llvm.x86.mmx.pmovmskb
12, // llvm.x86.mmx.pmulh.w
12, // llvm.x86.mmx.pmulhu.w
12, // llvm.x86.mmx.pmull.w
12, // llvm.x86.mmx.pmulu.dq
12, // llvm.x86.mmx.por
12, // llvm.x86.mmx.psad.bw
12, // llvm.x86.mmx.psll.d
12, // llvm.x86.mmx.psll.q
12, // llvm.x86.mmx.psll.w
12, // llvm.x86.mmx.pslli.d
12, // llvm.x86.mmx.pslli.q
12, // llvm.x86.mmx.pslli.w
12, // llvm.x86.mmx.psra.d
12, // llvm.x86.mmx.psra.w
12, // llvm.x86.mmx.psrai.d
12, // llvm.x86.mmx.psrai.w
12, // llvm.x86.mmx.psrl.d
12, // llvm.x86.mmx.psrl.q
12, // llvm.x86.mmx.psrl.w
12, // llvm.x86.mmx.psrli.d
12, // llvm.x86.mmx.psrli.q
12, // llvm.x86.mmx.psrli.w
12, // llvm.x86.mmx.psub.b
12, // llvm.x86.mmx.psub.d
12, // llvm.x86.mmx.psub.q
12, // llvm.x86.mmx.psub.w
12, // llvm.x86.mmx.psubs.b
12, // llvm.x86.mmx.psubs.w
12, // llvm.x86.mmx.psubus.b
12, // llvm.x86.mmx.psubus.w
12, // llvm.x86.mmx.punpckhbw
12, // llvm.x86.mmx.punpckhdq
12, // llvm.x86.mmx.punpckhwd
12, // llvm.x86.mmx.punpcklbw
12, // llvm.x86.mmx.punpckldq
12, // llvm.x86.mmx.punpcklwd
12, // llvm.x86.mmx.pxor
7, // llvm.x86.monitorx
7, // llvm.x86.movdir64b
7, // llvm.x86.mwaitx
72, // llvm.x86.pclmulqdq
72, // llvm.x86.pclmulqdq.256
72, // llvm.x86.pclmulqdq.512
7, // llvm.x86.ptwrite32
7, // llvm.x86.ptwrite64
7, // llvm.x86.rdfsbase.32
7, // llvm.x86.rdfsbase.64
7, // llvm.x86.rdgsbase.32
7, // llvm.x86.rdgsbase.64
7, // llvm.x86.rdpid
7, // llvm.x86.rdpkru
7, // llvm.x86.rdpmc
7, // llvm.x86.rdrand.16
7, // llvm.x86.rdrand.32
7, // llvm.x86.rdrand.64
7, // llvm.x86.rdseed.16
7, // llvm.x86.rdseed.32
7, // llvm.x86.rdseed.64
7, // llvm.x86.rdsspd
7, // llvm.x86.rdsspq
7, // llvm.x86.rdtsc
7, // llvm.x86.rdtscp
7, // llvm.x86.rstorssp
7, // llvm.x86.saveprevssp
7, // llvm.x86.seh.ehguard
7, // llvm.x86.seh.ehregnode
12, // llvm.x86.seh.lsda
7, // llvm.x86.senduipi
7, // llvm.x86.serialize
7, // llvm.x86.setssbsy
12, // llvm.x86.sha1msg1
12, // llvm.x86.sha1msg2
12, // llvm.x86.sha1nexte
72, // llvm.x86.sha1rnds4
12, // llvm.x86.sha256msg1
12, // llvm.x86.sha256msg2
12, // llvm.x86.sha256rnds2
7, // llvm.x86.slwpcb
72, // llvm.x86.sse.cmp.ps
72, // llvm.x86.sse.cmp.ss
12, // llvm.x86.sse.comieq.ss
12, // llvm.x86.sse.comige.ss
12, // llvm.x86.sse.comigt.ss
12, // llvm.x86.sse.comile.ss
12, // llvm.x86.sse.comilt.ss
12, // llvm.x86.sse.comineq.ss
12, // llvm.x86.sse.cvtpd2pi
12, // llvm.x86.sse.cvtpi2pd
12, // llvm.x86.sse.cvtpi2ps
12, // llvm.x86.sse.cvtps2pi
12, // llvm.x86.sse.cvtss2si
12, // llvm.x86.sse.cvtss2si64
12, // llvm.x86.sse.cvttpd2pi
12, // llvm.x86.sse.cvttps2pi
12, // llvm.x86.sse.cvttss2si
12, // llvm.x86.sse.cvttss2si64
218, // llvm.x86.sse.ldmxcsr
12, // llvm.x86.sse.max.ps
12, // llvm.x86.sse.max.ss
12, // llvm.x86.sse.min.ps
12, // llvm.x86.sse.min.ss
12, // llvm.x86.sse.movmsk.ps
56, // llvm.x86.sse.pshuf.w
12, // llvm.x86.sse.rcp.ps
12, // llvm.x86.sse.rcp.ss
12, // llvm.x86.sse.rsqrt.ps
12, // llvm.x86.sse.rsqrt.ss
7, // llvm.x86.sse.sfence
219, // llvm.x86.sse.stmxcsr
12, // llvm.x86.sse.ucomieq.ss
12, // llvm.x86.sse.ucomige.ss
12, // llvm.x86.sse.ucomigt.ss
12, // llvm.x86.sse.ucomile.ss
12, // llvm.x86.sse.ucomilt.ss
12, // llvm.x86.sse.ucomineq.ss
7, // llvm.x86.sse2.clflush
72, // llvm.x86.sse2.cmp.pd
72, // llvm.x86.sse2.cmp.sd
12, // llvm.x86.sse2.comieq.sd
12, // llvm.x86.sse2.comige.sd
12, // llvm.x86.sse2.comigt.sd
12, // llvm.x86.sse2.comile.sd
12, // llvm.x86.sse2.comilt.sd
12, // llvm.x86.sse2.comineq.sd
12, // llvm.x86.sse2.cvtpd2dq
12, // llvm.x86.sse2.cvtpd2ps
12, // llvm.x86.sse2.cvtps2dq
12, // llvm.x86.sse2.cvtsd2si
12, // llvm.x86.sse2.cvtsd2si64
12, // llvm.x86.sse2.cvtsd2ss
12, // llvm.x86.sse2.cvttpd2dq
12, // llvm.x86.sse2.cvttps2dq
12, // llvm.x86.sse2.cvttsd2si
12, // llvm.x86.sse2.cvttsd2si64
7, // llvm.x86.sse2.lfence
7, // llvm.x86.sse2.maskmov.dqu
12, // llvm.x86.sse2.max.pd
12, // llvm.x86.sse2.max.sd
7, // llvm.x86.sse2.mfence
12, // llvm.x86.sse2.min.pd
12, // llvm.x86.sse2.min.sd
12, // llvm.x86.sse2.movmsk.pd
12, // llvm.x86.sse2.packssdw.128
12, // llvm.x86.sse2.packsswb.128
12, // llvm.x86.sse2.packuswb.128
7, // llvm.x86.sse2.pause
12, // llvm.x86.sse2.pavg.b
12, // llvm.x86.sse2.pavg.w
12, // llvm.x86.sse2.pmadd.wd
12, // llvm.x86.sse2.pmovmskb.128
12, // llvm.x86.sse2.pmulh.w
12, // llvm.x86.sse2.pmulhu.w
12, // llvm.x86.sse2.psad.bw
12, // llvm.x86.sse2.psll.d
12, // llvm.x86.sse2.psll.q
12, // llvm.x86.sse2.psll.w
12, // llvm.x86.sse2.pslli.d
12, // llvm.x86.sse2.pslli.q
12, // llvm.x86.sse2.pslli.w
12, // llvm.x86.sse2.psra.d
12, // llvm.x86.sse2.psra.w
12, // llvm.x86.sse2.psrai.d
12, // llvm.x86.sse2.psrai.w
12, // llvm.x86.sse2.psrl.d
12, // llvm.x86.sse2.psrl.q
12, // llvm.x86.sse2.psrl.w
12, // llvm.x86.sse2.psrli.d
12, // llvm.x86.sse2.psrli.q
12, // llvm.x86.sse2.psrli.w
12, // llvm.x86.sse2.ucomieq.sd
12, // llvm.x86.sse2.ucomige.sd
12, // llvm.x86.sse2.ucomigt.sd
12, // llvm.x86.sse2.ucomile.sd
12, // llvm.x86.sse2.ucomilt.sd
12, // llvm.x86.sse2.ucomineq.sd
12, // llvm.x86.sse3.addsub.pd
12, // llvm.x86.sse3.addsub.ps
12, // llvm.x86.sse3.hadd.pd
12, // llvm.x86.sse3.hadd.ps
12, // llvm.x86.sse3.hsub.pd
12, // llvm.x86.sse3.hsub.ps
21, // llvm.x86.sse3.ldu.dq
7, // llvm.x86.sse3.monitor
7, // llvm.x86.sse3.mwait
12, // llvm.x86.sse41.blendvpd
12, // llvm.x86.sse41.blendvps
72, // llvm.x86.sse41.dppd
72, // llvm.x86.sse41.dpps
72, // llvm.x86.sse41.insertps
72, // llvm.x86.sse41.mpsadbw
12, // llvm.x86.sse41.packusdw
12, // llvm.x86.sse41.pblendvb
12, // llvm.x86.sse41.phminposuw
12, // llvm.x86.sse41.ptestc
12, // llvm.x86.sse41.ptestnzc
12, // llvm.x86.sse41.ptestz
56, // llvm.x86.sse41.round.pd
56, // llvm.x86.sse41.round.ps
72, // llvm.x86.sse41.round.sd
72, // llvm.x86.sse41.round.ss
12, // llvm.x86.sse42.crc32.32.16
12, // llvm.x86.sse42.crc32.32.32
12, // llvm.x86.sse42.crc32.32.8
12, // llvm.x86.sse42.crc32.64.64
76, // llvm.x86.sse42.pcmpestri128
76, // llvm.x86.sse42.pcmpestria128
76, // llvm.x86.sse42.pcmpestric128
76, // llvm.x86.sse42.pcmpestrio128
76, // llvm.x86.sse42.pcmpestris128
76, // llvm.x86.sse42.pcmpestriz128
76, // llvm.x86.sse42.pcmpestrm128
72, // llvm.x86.sse42.pcmpistri128
72, // llvm.x86.sse42.pcmpistria128
72, // llvm.x86.sse42.pcmpistric128
72, // llvm.x86.sse42.pcmpistrio128
72, // llvm.x86.sse42.pcmpistris128
72, // llvm.x86.sse42.pcmpistriz128
72, // llvm.x86.sse42.pcmpistrm128
12, // llvm.x86.sse4a.extrq
80, // llvm.x86.sse4a.extrqi
12, // llvm.x86.sse4a.insertq
183, // llvm.x86.sse4a.insertqi
12, // llvm.x86.ssse3.pabs.b
12, // llvm.x86.ssse3.pabs.d
12, // llvm.x86.ssse3.pabs.w
12, // llvm.x86.ssse3.phadd.d
12, // llvm.x86.ssse3.phadd.d.128
12, // llvm.x86.ssse3.phadd.sw
12, // llvm.x86.ssse3.phadd.sw.128
12, // llvm.x86.ssse3.phadd.w
12, // llvm.x86.ssse3.phadd.w.128
12, // llvm.x86.ssse3.phsub.d
12, // llvm.x86.ssse3.phsub.d.128
12, // llvm.x86.ssse3.phsub.sw
12, // llvm.x86.ssse3.phsub.sw.128
12, // llvm.x86.ssse3.phsub.w
12, // llvm.x86.ssse3.phsub.w.128
12, // llvm.x86.ssse3.pmadd.ub.sw
12, // llvm.x86.ssse3.pmadd.ub.sw.128
12, // llvm.x86.ssse3.pmul.hr.sw
12, // llvm.x86.ssse3.pmul.hr.sw.128
12, // llvm.x86.ssse3.pshuf.b
12, // llvm.x86.ssse3.pshuf.b.128
12, // llvm.x86.ssse3.psign.b
12, // llvm.x86.ssse3.psign.b.128
12, // llvm.x86.ssse3.psign.d
12, // llvm.x86.ssse3.psign.d.128
12, // llvm.x86.ssse3.psign.w
12, // llvm.x86.ssse3.psign.w.128
7, // llvm.x86.sttilecfg
7, // llvm.x86.stui
12, // llvm.x86.subborrow.32
12, // llvm.x86.subborrow.64
56, // llvm.x86.tbm.bextri.u32
56, // llvm.x86.tbm.bextri.u64
178, // llvm.x86.tdpbf16ps
178, // llvm.x86.tdpbssd
7, // llvm.x86.tdpbssd.internal
178, // llvm.x86.tdpbsud
178, // llvm.x86.tdpbusd
178, // llvm.x86.tdpbuud
7, // llvm.x86.testui
84, // llvm.x86.tileloadd64
7, // llvm.x86.tileloadd64.internal
84, // llvm.x86.tileloaddt164
7, // llvm.x86.tilerelease
84, // llvm.x86.tilestored64
7, // llvm.x86.tilestored64.internal
84, // llvm.x86.tilezero
7, // llvm.x86.tilezero.internal
7, // llvm.x86.tpause
7, // llvm.x86.umonitor
7, // llvm.x86.umwait
56, // llvm.x86.vcvtps2ph.128
56, // llvm.x86.vcvtps2ph.256
72, // llvm.x86.vgf2p8affineinvqb.128
72, // llvm.x86.vgf2p8affineinvqb.256
72, // llvm.x86.vgf2p8affineinvqb.512
72, // llvm.x86.vgf2p8affineqb.128
72, // llvm.x86.vgf2p8affineqb.256
72, // llvm.x86.vgf2p8affineqb.512
12, // llvm.x86.vgf2p8mulb.128
12, // llvm.x86.vgf2p8mulb.256
12, // llvm.x86.vgf2p8mulb.512
7, // llvm.x86.wbinvd
7, // llvm.x86.wbnoinvd
7, // llvm.x86.wrfsbase.32
7, // llvm.x86.wrfsbase.64
7, // llvm.x86.wrgsbase.32
7, // llvm.x86.wrgsbase.64
7, // llvm.x86.wrpkru
7, // llvm.x86.wrssd
7, // llvm.x86.wrssq
7, // llvm.x86.wrussd
7, // llvm.x86.wrussq
84, // llvm.x86.xabort
7, // llvm.x86.xbegin
7, // llvm.x86.xend
7, // llvm.x86.xgetbv
12, // llvm.x86.xop.vfrcz.pd
12, // llvm.x86.xop.vfrcz.pd.256
12, // llvm.x86.xop.vfrcz.ps
12, // llvm.x86.xop.vfrcz.ps.256
12, // llvm.x86.xop.vfrcz.sd
12, // llvm.x86.xop.vfrcz.ss
73, // llvm.x86.xop.vpermil2pd
73, // llvm.x86.xop.vpermil2pd.256
73, // llvm.x86.xop.vpermil2ps
73, // llvm.x86.xop.vpermil2ps.256
12, // llvm.x86.xop.vphaddbd
12, // llvm.x86.xop.vphaddbq
12, // llvm.x86.xop.vphaddbw
12, // llvm.x86.xop.vphadddq
12, // llvm.x86.xop.vphaddubd
12, // llvm.x86.xop.vphaddubq
12, // llvm.x86.xop.vphaddubw
12, // llvm.x86.xop.vphaddudq
12, // llvm.x86.xop.vphadduwd
12, // llvm.x86.xop.vphadduwq
12, // llvm.x86.xop.vphaddwd
12, // llvm.x86.xop.vphaddwq
12, // llvm.x86.xop.vphsubbw
12, // llvm.x86.xop.vphsubdq
12, // llvm.x86.xop.vphsubwd
12, // llvm.x86.xop.vpmacsdd
12, // llvm.x86.xop.vpmacsdqh
12, // llvm.x86.xop.vpmacsdql
12, // llvm.x86.xop.vpmacssdd
12, // llvm.x86.xop.vpmacssdqh
12, // llvm.x86.xop.vpmacssdql
12, // llvm.x86.xop.vpmacsswd
12, // llvm.x86.xop.vpmacssww
12, // llvm.x86.xop.vpmacswd
12, // llvm.x86.xop.vpmacsww
12, // llvm.x86.xop.vpmadcsswd
12, // llvm.x86.xop.vpmadcswd
12, // llvm.x86.xop.vpperm
12, // llvm.x86.xop.vpshab
12, // llvm.x86.xop.vpshad
12, // llvm.x86.xop.vpshaq
12, // llvm.x86.xop.vpshaw
12, // llvm.x86.xop.vpshlb
12, // llvm.x86.xop.vpshld
12, // llvm.x86.xop.vpshlq
12, // llvm.x86.xop.vpshlw
7, // llvm.x86.xresldtrk
7, // llvm.x86.xrstor
7, // llvm.x86.xrstor64
7, // llvm.x86.xrstors
7, // llvm.x86.xrstors64
7, // llvm.x86.xsave
7, // llvm.x86.xsave64
7, // llvm.x86.xsavec
7, // llvm.x86.xsavec64
7, // llvm.x86.xsaveopt
7, // llvm.x86.xsaveopt64
7, // llvm.x86.xsaves
7, // llvm.x86.xsaves64
7, // llvm.x86.xsetbv
7, // llvm.x86.xsusldtrk
7, // llvm.x86.xtest
12, // llvm.xcore.bitrev
7, // llvm.xcore.checkevent
220, // llvm.xcore.chkct
7, // llvm.xcore.clre
220, // llvm.xcore.clrpt
7, // llvm.xcore.clrsr
12, // llvm.xcore.crc32
12, // llvm.xcore.crc8
220, // llvm.xcore.edu
220, // llvm.xcore.eeu
220, // llvm.xcore.endin
220, // llvm.xcore.freer
7, // llvm.xcore.geted
7, // llvm.xcore.getet
12, // llvm.xcore.getid
7, // llvm.xcore.getps
7, // llvm.xcore.getr
220, // llvm.xcore.getst
220, // llvm.xcore.getts
220, // llvm.xcore.in
220, // llvm.xcore.inct
220, // llvm.xcore.initcp
220, // llvm.xcore.initdp
220, // llvm.xcore.initlr
220, // llvm.xcore.initpc
220, // llvm.xcore.initsp
220, // llvm.xcore.inshr
220, // llvm.xcore.int
220, // llvm.xcore.mjoin
220, // llvm.xcore.msync
220, // llvm.xcore.out
220, // llvm.xcore.outct
220, // llvm.xcore.outshr
220, // llvm.xcore.outt
220, // llvm.xcore.peek
220, // llvm.xcore.setc
221, // llvm.xcore.setclk
220, // llvm.xcore.setd
220, // llvm.xcore.setev
7, // llvm.xcore.setps
220, // llvm.xcore.setpsc
220, // llvm.xcore.setpt
221, // llvm.xcore.setrdy
7, // llvm.xcore.setsr
220, // llvm.xcore.settw
220, // llvm.xcore.setv
12, // llvm.xcore.sext
7, // llvm.xcore.ssync
220, // llvm.xcore.syncr
220, // llvm.xcore.testct
220, // llvm.xcore.testwct
21, // llvm.xcore.waitevent
12, // llvm.xcore.zext
};
AttributeList AS[9];
unsigned NumAttrs = 0;
if (id != 0) {
switch(IntrinsicsToAttributesMap[id - 1]) {
default: llvm_unreachable("Invalid attribute number");
case 7: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 220: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 221: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 84: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 174: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 178: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 177: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[4] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[5] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 6;
break;
}
case 173: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[4] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[5] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[6] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 7;
break;
}
case 175: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[4] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[5] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 6;
break;
}
case 176: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 9: {
const Attribute::AttrKind AttrParam2[]= {Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 189: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 217: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 211: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 90: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 203: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::InaccessibleMemOrArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 78: {
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::InaccessibleMemOrArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 79: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::InaccessibleMemOrArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 179: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 30: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 11: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 187: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 186: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 193: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 194: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 195: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 28: {
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::NoCapture};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 66: {
const Attribute::AttrKind AttrParam3[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 77: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 67: {
const Attribute::AttrKind AttrParam4[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 184: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 68: {
const Attribute::AttrKind AttrParam5[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 69: {
const Attribute::AttrKind AttrParam6[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 192: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 29: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::InaccessibleMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 71: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 63: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 198: {
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 64: {
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 185: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 81: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 70: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 21: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 196: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 188: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 197: {
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 83: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 20: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 210: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 3: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 190: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 17: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 13: {
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 14: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ReadNone};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 82: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 12: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 16: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 15: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ReadNone};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ReadNone};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 75: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 168: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 169: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 170: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 171: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 172: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 56: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 80: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 57: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 214: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 72: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 183: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 212: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 215: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 73: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 74: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 213: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 76: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 216: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 58: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 206: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::InaccessibleMemOrArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 218: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::ArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 205: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::InaccessibleMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 219: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 65: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 157: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 200: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 199: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 204: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::Speculatable,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 165: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::Convergent};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 137: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::Convergent};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 138: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::Convergent};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 191: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::Convergent,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 156: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 99: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[4] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[5] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[6] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[7] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 8;
break;
}
case 108: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 88: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 109: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 89: {
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 110: {
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 158: {
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 111: {
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 112: {
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 207: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::InaccessibleMemOrArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 107: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 47: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 86: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 55: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 133: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 134: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 135: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 136: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 150: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 92: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 160: {
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 162: {
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 164: {
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind AttrParam10[]= {Attribute::ImmArg};
AS[4] = AttributeList::get(C, 10, AttrParam10);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly};
AS[5] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 6;
break;
}
case 51: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 104: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly,Attribute::InaccessibleMemOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 103: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::WriteOnly,Attribute::InaccessibleMemOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 123: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 124: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 127: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 125: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 113: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 126: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 114: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 115: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind AttrParam10[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 10, AttrParam10);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 116: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind AttrParam10[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 10, AttrParam10);
const Attribute::AttrKind AttrParam11[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 11, AttrParam11);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 117: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam10[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 10, AttrParam10);
const Attribute::AttrKind AttrParam11[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 11, AttrParam11);
const Attribute::AttrKind AttrParam12[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 12, AttrParam12);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 118: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam11[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 11, AttrParam11);
const Attribute::AttrKind AttrParam12[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 12, AttrParam12);
const Attribute::AttrKind AttrParam13[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 13, AttrParam13);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 128: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam12[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 12, AttrParam12);
const Attribute::AttrKind AttrParam13[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 13, AttrParam13);
const Attribute::AttrKind AttrParam14[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 14, AttrParam14);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 130: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam13[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 13, AttrParam13);
const Attribute::AttrKind AttrParam14[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 14, AttrParam14);
const Attribute::AttrKind AttrParam15[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 15, AttrParam15);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 129: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam14[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 14, AttrParam14);
const Attribute::AttrKind AttrParam15[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 15, AttrParam15);
const Attribute::AttrKind AttrParam16[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 16, AttrParam16);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 131: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam15[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 15, AttrParam15);
const Attribute::AttrKind AttrParam16[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 16, AttrParam16);
const Attribute::AttrKind AttrParam17[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 17, AttrParam17);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 132: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam16[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 16, AttrParam16);
const Attribute::AttrKind AttrParam17[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 17, AttrParam17);
const Attribute::AttrKind AttrParam18[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 18, AttrParam18);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 149: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 91: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 159: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 161: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 163: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[4] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly};
AS[5] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 6;
break;
}
case 154: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadOnly,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 145: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 122: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadNone};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 119: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadNone};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 120: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadNone};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 121: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam7[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 7, AttrParam7);
const Attribute::AttrKind AttrParam8[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 8, AttrParam8);
const Attribute::AttrKind AttrParam9[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 9, AttrParam9);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadNone};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 152: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 93: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 153: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 155: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadOnly,Attribute::InaccessibleMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 85: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 94: {
const Attribute::AttrKind AttrParam0[]= {Attribute::Alignment};
const uint64_t AttrValParam0[]= {4};
AS[0] = AttributeList::get(C, 0, AttrParam0, AttrValParam0);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 144: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 139: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 140: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 141: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 95: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 142: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 143: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 106: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 101: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 96: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 97: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 98: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::WriteOnly,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 87: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 100: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 147: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 105: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 166: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 146: {
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 148: {
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 151: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 167: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::WillReturn,Attribute::Convergent,Attribute::Speculatable,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 4: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 5: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoUndef};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 53: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::InaccessibleMemOrArgMemOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 48: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::NoAlias,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::NoAlias,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 46: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::NoAlias,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::NoAlias,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 49: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 32: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 31: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::NoCapture};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 19: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 40: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::WriteOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 36: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 50: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 43: {
const Attribute::AttrKind AttrParam2[]= {Attribute::NoCapture,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind AttrParam6[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 6, AttrParam6);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 41: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::WriteOnly,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 37: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 38: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 34: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 42: {
const Attribute::AttrKind AttrParam1[]= {Attribute::NoCapture};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[4] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 5;
break;
}
case 39: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadOnly,Attribute::ArgMemOnly};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 2: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 60: {
const Attribute::AttrKind AttrParam1[]= {Attribute::Returned};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 27: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 24: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 54: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 25: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 26: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Speculatable,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 6: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 1: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 45: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[2] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 3;
break;
}
case 52: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 59: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 44: {
const Attribute::AttrKind AttrParam3[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 3, AttrParam3);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 5, AttrParam5);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Speculatable,Attribute::ReadNone};
AS[3] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 4;
break;
}
case 33: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::Convergent,Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 18: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoReturn};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 61: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoReturn,Attribute::Cold};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 62: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoReturn,Attribute::Cold};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 102: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoReturn,Attribute::Cold};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 202: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoDuplicate,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 35: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::NoDuplicate};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 8: {
const Attribute::AttrKind Atts[] = {Attribute::NoUnwind,Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn,Attribute::NoDuplicate,Attribute::InaccessibleMemOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 10: {
return AttributeList();
}
case 22: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[1] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind AttrParam4[]= {Attribute::ImmArg};
AS[2] = AttributeList::get(C, 4, AttrParam4);
const Attribute::AttrKind AttrParam5[]= {Attribute::ImmArg};
AS[3] = AttributeList::get(C, 5, AttrParam5);
NumAttrs = 4;
break;
}
case 180: {
const Attribute::AttrKind Atts[] = {Attribute::ReadNone};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 182: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 181: {
const Attribute::AttrKind AttrParam2[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 2, AttrParam2);
const Attribute::AttrKind Atts[] = {Attribute::ReadNone};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 23: {
const Attribute::AttrKind Atts[] = {Attribute::NoSync,Attribute::NoFree,Attribute::WillReturn};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 208: {
const Attribute::AttrKind Atts[] = {Attribute::NoReturn};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
case 209: {
const Attribute::AttrKind AttrParam1[]= {Attribute::ImmArg};
AS[0] = AttributeList::get(C, 1, AttrParam1);
const Attribute::AttrKind Atts[] = {Attribute::NoReturn};
AS[1] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 2;
break;
}
case 201: {
const Attribute::AttrKind Atts[] = {Attribute::NoReturn,Attribute::WriteOnly};
AS[0] = AttributeList::get(C, AttributeList::FunctionIndex, Atts);
NumAttrs = 1;
break;
}
}
}
return AttributeList::get(C, makeArrayRef(AS, NumAttrs));
}
#endif // GET_INTRINSIC_ATTRIBUTES
// Get the LLVM intrinsic that corresponds to a builtin.
// This is used by the C front-end. The builtin name is passed
// in as BuiltinName, and a target prefix (e.g. 'ppc') is passed
// in as TargetPrefix. The result is assigned to 'IntrinsicID'.
#ifdef GET_LLVM_INTRINSIC_FOR_GCC_BUILTIN
Intrinsic::ID Intrinsic::getIntrinsicForGCCBuiltin(const char *TargetPrefixStr, StringRef BuiltinNameStr) {
static const char BuiltinNames[] = {
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd', 'j', 'u', 's',
't', '_', 't', 'r', 'a', 'm', 'p', 'o', 'l', 'i', 'n', 'e', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'e', 'b', 'u', 'g', 't', 'r',
'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'u', 'n',
'w', 'i', 'n', 'd', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'n', 'i', 't', '_', 't', 'r', 'a', 'm', 'p',
'o', 'l', 'i', 'n', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'o', 'b', 'j', 'e', 'c', 't', '_', 's', 'i', 'z', 'e', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 't', 'a', 'c', 'k', '_', 'r',
'e', 's', 't', 'o', 'r', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', 't', 'a', 'c', 'k', '_', 's', 'a', 'v', 'e', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'h', 'r', 'e', 'a', 'd', '_',
'p', 'o', 'i', 'n', 't', 'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 'd', 'm', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'd', 's', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'i', 's',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'v', 'e',
'_', 's', 'v', 'a', 'e', 's', 'd', '_', 'u', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', 'v', 'e', '_', 's', 'v', 'a', 'e', 's',
'e', '_', 'u', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', 'v', 'e', '_', 's', 'v', 'a', 'e', 's', 'i', 'm', 'c', '_', 'u', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'v', 'e', '_',
's', 'v', 'a', 'e', 's', 'm', 'c', '_', 'u', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', 'v', 'e', '_', 's', 'v', 'r', 'a', 'x',
'1', '_', 'u', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', 'v', 'e', '_', 's', 'v', 'r', 'd', 'f', 'f', 'r', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'v', 'e', '_', 's', 'v', 'r',
'd', 'f', 'f', 'r', '_', 'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', 'v', 'e', '_', 's', 'v', 's', 'e', 't', 'f', 'f', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'v', 'e', '_', 's',
'v', 's', 'm', '4', 'e', '_', 'u', '3', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 's', 'v', 'e', '_', 's', 'v', 's', 'm', '4', 'e',
'k', 'e', 'y', '_', 'u', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', 'v', 'e', '_', 's', 'v', 'w', 'r', 'f', 'f', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 't',
'c', 'a', 'n', 'c', 'e', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'r', 'm', '_', 't', 'c', 'o', 'm', 'm', 'i', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 't', 's',
't', 'a', 'r', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'r', 'm', '_', 't', 't', 'e', 's', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'a', 'l', 'i',
'g', 'n', 'b', 'y', 't', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'b', 'u', 'f', 'f', 'e', 'r',
'_', 'w', 'b', 'i', 'n', 'v', 'l', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'b', 'u', 'f', 'f',
'e', 'r', '_', 'w', 'b', 'i', 'n', 'v', 'l', '1', '_', 's', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 'b', 'u', 'f', 'f', 'e', 'r', '_', 'w', 'b', 'i', 'n', 'v', 'l', '1',
'_', 'v', 'o', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'm', 'd', 'g', 'c', 'n', '_', 'c', 'u', 'b', 'e', 'i', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 'c', 'u', 'b', 'e', 'm', 'a', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'c', 'u', 'b', 'e', 's',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd',
'g', 'c', 'n', '_', 'c', 'u', 'b', 'e', 't', 'c', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'c', 'v',
't', '_', 'p', 'k', '_', 'i', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'c', 'v', 't', '_',
'p', 'k', '_', 'u', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'c', 'v', 't', '_', 'p', 'k',
'_', 'u', '8', '_', 'f', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'c', 'v', 't', '_', 'p',
'k', 'n', 'o', 'r', 'm', '_', 'i', '1', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'c', 'v', 't',
'_', 'p', 'k', 'n', 'o', 'r', 'm', '_', 'u', '1', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'c',
'v', 't', '_', 'p', 'k', 'r', 't', 'z', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 'i', 's', 'p',
'a', 't', 'c', 'h', '_', 'i', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_', 'b', 'p',
'e', 'r', 'm', 'u', 't', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_', 'g', 'w', 's',
'_', 'b', 'a', 'r', 'r', 'i', 'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_', 'g',
'w', 's', '_', 'i', 'n', 'i', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_', 'g', 'w',
's', '_', 's', 'e', 'm', 'a', '_', 'b', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_',
'g', 'w', 's', '_', 's', 'e', 'm', 'a', '_', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's',
'_', 'g', 'w', 's', '_', 's', 'e', 'm', 'a', '_', 'r', 'e', 'l', 'e', 'a',
's', 'e', '_', 'a', 'l', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_', 'g', 'w', 's',
'_', 's', 'e', 'm', 'a', '_', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_', 'p', 'e',
'r', 'm', 'u', 't', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'd', 's', '_', 's', 'w', 'i', 'z',
'z', 'l', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'm', 'd', 'g', 'c', 'n', '_', 'e', 'n', 'd', 'p', 'g', 'm', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'f', 'd', 'o', 't', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'f', 'm', 'e', 'd', '3', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 'f', 'm', 'u', 'l', '_', 'l', 'e', 'g', 'a', 'c', 'y', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'g', 'r', 'o', 'u', 'p', 's', 't', 'a', 't', 'i', 'c', 's', 'i', 'z', 'e',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g',
'c', 'n', '_', 'i', 'm', 'p', 'l', 'i', 'c', 'i', 't', '_', 'b', 'u', 'f',
'f', 'e', 'r', '_', 'p', 't', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'i', 'm', 'p', 'l', 'i',
'c', 'i', 't', 'a', 'r', 'g', '_', 'p', 't', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'i', 'n',
't', 'e', 'r', 'p', '_', 'm', 'o', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'i', 'n', 't', 'e',
'r', 'p', '_', 'p', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'i', 'n', 't', 'e', 'r', 'p', '_',
'p', '1', '_', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'i', 'n', 't', 'e', 'r', 'p',
'_', 'p', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'm', 'd', 'g', 'c', 'n', '_', 'i', 'n', 't', 'e', 'r', 'p', '_', 'p', '2',
'_', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'm', 'd', 'g', 'c', 'n', '_', 'i', 's', '_', 'p', 'r', 'i', 'v', 'a',
't', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm',
'd', 'g', 'c', 'n', '_', 'i', 's', '_', 's', 'h', 'a', 'r', 'e', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c',
'n', '_', 'k', 'e', 'r', 'n', 'a', 'r', 'g', '_', 's', 'e', 'g', 'm', 'e',
'n', 't', '_', 'p', 't', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'l', 'e', 'r', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 'm', 'b', 'c', 'n', 't', '_', 'h', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'b', 'c',
'n', 't', '_', 'l', 'o', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3',
'2', '_', '1', '6', 'x', '1', '6', 'x', '1', '6', 'f', '1', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 'm', 'f', 'm', 'a', '_', 'f', '3', '2', '_', '1', '6', 'x', '1', '6',
'x', '1', 'f', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3',
'2', '_', '1', '6', 'x', '1', '6', 'x', '2', 'b', 'f', '1', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 'm', 'f', 'm', 'a', '_', 'f', '3', '2', '_', '1', '6', 'x', '1', '6',
'x', '4', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3',
'2', '_', '1', '6', 'x', '1', '6', 'x', '4', 'f', '3', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'm', 'f', 'm', 'a', '_', 'f', '3', '2', '_', '1', '6', 'x', '1', '6', 'x',
'8', 'b', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3',
'2', '_', '3', '2', 'x', '3', '2', 'x', '1', 'f', '3', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'm', 'f', 'm', 'a', '_', 'f', '3', '2', '_', '3', '2', 'x', '3', '2', 'x',
'2', 'b', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3',
'2', '_', '3', '2', 'x', '3', '2', 'x', '2', 'f', '3', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'm', 'f', 'm', 'a', '_', 'f', '3', '2', '_', '3', '2', 'x', '3', '2', 'x',
'4', 'b', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3',
'2', '_', '3', '2', 'x', '3', '2', 'x', '4', 'f', '1', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'm', 'f', 'm', 'a', '_', 'f', '3', '2', '_', '3', '2', 'x', '3', '2', 'x',
'8', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3', '2',
'_', '4', 'x', '4', 'x', '1', 'f', '3', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm',
'a', '_', 'f', '3', '2', '_', '4', 'x', '4', 'x', '2', 'b', 'f', '1', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g',
'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'f', '3', '2', '_', '4', 'x', '4',
'x', '4', 'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'i', '3',
'2', '_', '1', '6', 'x', '1', '6', 'x', '1', '6', 'i', '8', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'm', 'f', 'm', 'a', '_', 'i', '3', '2', '_', '1', '6', 'x', '1', '6', 'x',
'4', 'i', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'i', '3', '2', '_',
'3', '2', 'x', '3', '2', 'x', '4', 'i', '8', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'f', 'm',
'a', '_', 'i', '3', '2', '_', '3', '2', 'x', '3', '2', 'x', '8', 'i', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g',
'c', 'n', '_', 'm', 'f', 'm', 'a', '_', 'i', '3', '2', '_', '4', 'x', '4',
'x', '4', 'i', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'q', 's', 'a', 'd', '_', 'p', 'k',
'_', 'u', '1', '6', '_', 'u', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 'q', 's', 'a', 'd',
'_', 'u', '3', '2', '_', 'u', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'm', 's', 'a', 'd', '_',
'u', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm',
'd', 'g', 'c', 'n', '_', 'p', 'e', 'r', 'm', 'l', 'a', 'n', 'e', '1', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g',
'c', 'n', '_', 'p', 'e', 'r', 'm', 'l', 'a', 'n', 'e', 'x', '1', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c',
'n', '_', 'q', 's', 'a', 'd', '_', 'p', 'k', '_', 'u', '1', '6', '_', 'u',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd',
'g', 'c', 'n', '_', 'q', 'u', 'e', 'u', 'e', '_', 'p', 't', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 'r', 'c', 'p', '_', 'l', 'e', 'g', 'a', 'c', 'y', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'r',
'e', 'a', 'd', 'f', 'i', 'r', 's', 't', 'l', 'a', 'n', 'e', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'r', 'e', 'a', 'd', 'l', 'a', 'n', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'r', 's', 'q', '_',
'l', 'e', 'g', 'a', 'c', 'y', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'b', 'a', 'r', 'r',
'i', 'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'd', 'c', 'a', 'c', 'h', 'e', '_',
'i', 'n', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'd', 'c', 'a', 'c', 'h', 'e', '_',
'i', 'n', 'v', '_', 'v', 'o', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'd', 'c', 'a',
'c', 'h', 'e', '_', 'w', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'd', 'c', 'a', 'c',
'h', 'e', '_', 'w', 'b', '_', 'v', 'o', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'd',
'e', 'c', 'p', 'e', 'r', 'f', 'l', 'e', 'v', 'e', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's',
'_', 'g', 'e', 't', '_', 'w', 'a', 'v', 'e', 'i', 'd', '_', 'i', 'n', '_',
'w', 'o', 'r', 'k', 'g', 'r', 'o', 'u', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'g',
'e', 't', 'p', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'g', 'e', 't', 'r', 'e', 'g',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g',
'c', 'n', '_', 's', '_', 'i', 'n', 'c', 'p', 'e', 'r', 'f', 'l', 'e', 'v',
'e', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm',
'd', 'g', 'c', 'n', '_', 's', '_', 'm', 'e', 'm', 'r', 'e', 'a', 'l', 't',
'i', 'm', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'm', 'e', 'm', 't', 'i', 'm', 'e',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g',
'c', 'n', '_', 's', '_', 's', 'e', 'n', 'd', 'm', 's', 'g', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
's', '_', 's', 'e', 'n', 'd', 'm', 's', 'g', 'h', 'a', 'l', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 's', '_', 's', 'e', 't', 'r', 'e', 'g', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 's',
'l', 'e', 'e', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'm', 'd', 'g', 'c', 'n', '_', 's', '_', 'w', 'a', 'i', 't', 'c', 'n',
't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd',
'g', 'c', 'n', '_', 's', 'a', 'd', '_', 'h', 'i', '_', 'u', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n',
'_', 's', 'a', 'd', '_', 'u', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', 'a', 'd', '_',
'u', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm',
'd', 'g', 'c', 'n', '_', 's', 'd', 'o', 't', '2', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 's', 'd',
'o', 't', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'm', 'd', 'g', 'c', 'n', '_', 's', 'd', 'o', 't', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'u',
'd', 'o', 't', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'm', 'd', 'g', 'c', 'n', '_', 'u', 'd', 'o', 't', '4', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'u', 'd', 'o', 't', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'w', 'a', 'v', 'e', '_', 'b', 'a',
'r', 'r', 'i', 'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'w', 'a', 'v', 'e', 'f', 'r', 'o',
'n', 't', 's', 'i', 'z', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'w', 'o', 'r', 'k', 'g', 'r',
'o', 'u', 'p', '_', 'i', 'd', '_', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'w', 'o', 'r', 'k',
'g', 'r', 'o', 'u', 'p', '_', 'i', 'd', '_', 'y', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_', 'w', 'o',
'r', 'k', 'g', 'r', 'o', 'u', 'p', '_', 'i', 'd', '_', 'z', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'm', 'd', 'g', 'c', 'n', '_',
'w', 'r', 'i', 't', 'e', 'l', 'a', 'n', 'e', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'c', 'd', 'p', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'c', 'd', 'p',
'2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 'c', 'm', 's', 'e', '_', 'T', 'T', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'c', 'm', 's', 'e', '_', 'T', 'T',
'A', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 'c', 'm', 's', 'e', '_', 'T', 'T', 'A', 'T', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'c', 'm', 's', 'e', '_',
'T', 'T', 'T', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'r', 'm', '_', 'g', 'e', 't', '_', 'f', 'p', 's', 'c', 'r', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'l', 'd', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_',
'l', 'd', 'c', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'r', 'm', '_', 'l', 'd', 'c', '2', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'l', 'd', 'c', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'm', 'c',
'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 'm', 'c', 'r', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 'm', 'r', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'm', 'r', 'c', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'q', 'a', 'd',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 'q', 'a', 'd', 'd', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 'q', 'a', 'd', 'd', '8', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'q', 'a', 's',
'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 'q', 's', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 'q', 's', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'q', 's', 'u', 'b', '1', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_',
'q', 's', 'u', 'b', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 's', 'a', 'd', 'd', '1', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'a', 'd', 'd',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 's', 'a', 's', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 's', 'e', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'e', 't', '_', 'f', 'p', 's',
'c', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r',
'm', '_', 's', 'h', 'a', 'd', 'd', '1', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'h', 'a', 'd', 'd', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_',
's', 'h', 'a', 's', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 's', 'h', 's', 'a', 'x', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'h', 's', 'u', 'b',
'1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r',
'm', '_', 's', 'h', 's', 'u', 'b', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'l', 'a', 'b', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's',
'm', 'l', 'a', 'b', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 's', 'm', 'l', 'a', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'l', 'a', 'd',
'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 's', 'm', 'l', 'a', 'l', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'l', 'a', 'l', 'd', 'x', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's',
'm', 'l', 'a', 't', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 's', 'm', 'l', 'a', 't', 't', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'l', 'a',
'w', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r',
'm', '_', 's', 'm', 'l', 'a', 'w', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'l', 's', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm',
'l', 's', 'd', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'r', 'm', '_', 's', 'm', 'l', 's', 'l', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'l', 's', 'l',
'd', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r',
'm', '_', 's', 'm', 'u', 'a', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'u', 'a', 'd', 'x', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm',
'u', 'l', 'b', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'r', 'm', '_', 's', 'm', 'u', 'l', 'b', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'u', 'l', 't',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 's', 'm', 'u', 'l', 't', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'u', 'l', 'w', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm',
'u', 'l', 'w', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'r', 'm', '_', 's', 'm', 'u', 's', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'm', 'u', 's', 'd', 'x',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_',
's', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'r', 'm', '_', 's', 's', 'a', 't', '1', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 's', 'a', 'x', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's',
's', 'u', 'b', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 's', 's', 'u', 'b', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 't', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 't',
'c', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r',
'm', '_', 's', 't', 'c', '2', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 's', 't', 'c', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 's', 'x', 't', 'a',
'b', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'r', 'm', '_', 's', 'x', 't', 'b', '1', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'a', 'd', 'd', '1', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_',
'u', 'a', 'd', 'd', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'r', 'm', '_', 'u', 'a', 's', 'x', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'h', 'a', 'd', 'd', '1',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 'u', 'h', 'a', 'd', 'd', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'h', 'a', 's', 'x', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'h', 's',
'a', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r',
'm', '_', 'u', 'h', 's', 'u', 'b', '1', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'h', 's', 'u', 'b', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_',
'u', 'q', 'a', 'd', 'd', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'q', 'a', 'd', 'd', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'q',
'a', 's', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'r', 'm', '_', 'u', 'q', 's', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'q', 's', 'u', 'b', '1', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_',
'u', 'q', 's', 'u', 'b', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'r', 'm', '_', 'u', 's', 'a', 'd', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 's', 'a', 'd',
'a', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r',
'm', '_', 'u', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'r', 'm', '_', 'u', 's', 'a', 't', '1', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 's', 'a',
'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm',
'_', 'u', 's', 'u', 'b', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 's', 'u', 'b', '8', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'r', 'm', '_', 'u', 'x', 't',
'a', 'b', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'r', 'm', '_', 'u', 'x', 't', 'b', '1', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'b', 'p', 'f', '_', 'b', 't', 'f', '_', 't',
'y', 'p', 'e', '_', 'i', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'b', 'p', 'f', '_', 'l', 'o', 'a', 'd', '_', 'b', 'y', 't', 'e',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'b', 'p', 'f', '_',
'l', 'o', 'a', 'd', '_', 'h', 'a', 'l', 'f', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'b', 'p', 'f', '_', 'l', 'o', 'a', 'd', '_', 'w',
'o', 'r', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'b',
'p', 'f', '_', 'p', 'a', 's', 's', 't', 'h', 'r', 'o', 'u', 'g', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'b', 'p', 'f', '_', 'p',
'r', 'e', 's', 'e', 'r', 'v', 'e', '_', 'e', 'n', 'u', 'm', '_', 'v', 'a',
'l', 'u', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'b',
'p', 'f', '_', 'p', 'r', 'e', 's', 'e', 'r', 'v', 'e', '_', 'f', 'i', 'e',
'l', 'd', '_', 'i', 'n', 'f', 'o', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'b', 'p', 'f', '_', 'p', 'r', 'e', 's', 'e', 'r', 'v', 'e',
'_', 't', 'y', 'p', 'e', '_', 'i', 'n', 'f', 'o', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'b', 'p', 'f', '_', 'p', 's', 'e', 'u', 'd',
'o', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'b', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'a', 'b', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a',
'b', 's', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd', 'h', '_', 'h', '1', '6',
'_', 'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd', 'h', '_',
'h', '1', '6', '_', 'h', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd',
'd', 'h', '_', 'h', '1', '6', '_', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2',
'_', 'a', 'd', 'd', 'h', '_', 'h', '1', '6', '_', 'l', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 'a', 'd', 'd', 'h', '_', 'h', '1', '6', '_', 's', 'a',
't', '_', 'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd', 'h',
'_', 'h', '1', '6', '_', 's', 'a', 't', '_', 'h', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'a', 'd', 'd', 'h', '_', 'h', '1', '6', '_', 's', 'a', 't',
'_', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd', 'h', '_',
'h', '1', '6', '_', 's', 'a', 't', '_', 'l', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'a', 'd', 'd', 'h', '_', 'l', '1', '6', '_', 'h', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'a', 'd', 'd', 'h', '_', 'l', '1', '6', '_', 'l',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd', 'h', '_', 'l', '1',
'6', '_', 's', 'a', 't', '_', 'h', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'a', 'd', 'd', 'h', '_', 'l', '1', '6', '_', 's', 'a', 't', '_', 'l', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'a', 'd', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a',
'd', 'd', 'p', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd',
'd', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'd', 'd', 's',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 'n', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'a', 'n', 'd', 'i', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'a', 'n', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'a', 's', 'l', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'a', 's', 'r', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'c', 'o', 'm', 'b', 'i', 'n', 'e', '_', 'h', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'c', 'o', 'm', 'b', 'i', 'n', 'e', '_', 'h', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'c', 'o', 'm', 'b', 'i', 'n', 'e', '_',
'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'c', 'o', 'm', 'b', 'i', 'n',
'e', '_', 'l', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'c', 'o', 'm', 'b',
'i', 'n', 'e', 'i', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'c', 'o', 'm',
'b', 'i', 'n', 'e', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'm', 'a', 'x',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'm', 'a', 'x', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'm', 'a', 'x', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'm',
'a', 'x', 'u', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'm', 'i', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 'm', 'i', 'n', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'm', 'i', 'n', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'm', 'i',
'n', 'u', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'n', 'e', 'g', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'n', 'e', 'g', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2',
'_', 'n', 'e', 'g', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'n',
'o', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'n', 'o', 't', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'o',
'r', 'i', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'o', 'r', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'r', 'o', 'u', 'n', 'd', 's', 'a', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
's', 'a', 't', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'a', 't', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 's', 'a', 't', 'u', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 's', 'a', 't', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2',
'_', 's', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b', 'h',
'_', 'h', '1', '6', '_', 'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's',
'u', 'b', 'h', '_', 'h', '1', '6', '_', 'h', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 's', 'u', 'b', 'h', '_', 'h', '1', '6', '_', 'l', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 's', 'u', 'b', 'h', '_', 'h', '1', '6', '_', 'l',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b', 'h', '_', 'h', '1',
'6', '_', 's', 'a', 't', '_', 'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
's', 'u', 'b', 'h', '_', 'h', '1', '6', '_', 's', 'a', 't', '_', 'h', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b', 'h', '_', 'h', '1', '6',
'_', 's', 'a', 't', '_', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's',
'u', 'b', 'h', '_', 'h', '1', '6', '_', 's', 'a', 't', '_', 'l', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b', 'h', '_', 'l', '1', '6', '_',
'h', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b', 'h', '_', 'l',
'1', '6', '_', 'l', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b',
'h', '_', 'l', '1', '6', '_', 's', 'a', 't', '_', 'h', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 's', 'u', 'b', 'h', '_', 'l', '1', '6', '_', 's', 'a',
't', '_', 'l', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 's', 'u', 'b', 'r', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 's', 'u', 'b', 's', 'a', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 's', 'v', 'a', 'd', 'd', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
's', 'v', 'a', 'd', 'd', 'h', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's',
'v', 'a', 'd', 'd', 'u', 'h', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's',
'v', 'a', 'v', 'g', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'v', 'a',
'v', 'g', 'h', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'v', 'n', 'a',
'v', 'g', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'v', 's', 'u', 'b',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'v', 's', 'u', 'b', 'h', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 's', 'v', 's', 'u', 'b', 'u', 'h', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 's', 'w', 'i', 'z', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 's', 'x', 't', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's',
'x', 't', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 's', 'x', 't', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 't', 'f', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2',
'_', 't', 'f', 'r', 'i', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 't', 'f',
'r', 'i', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 't', 'f', 'r', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 't', 'f', 'r', 'p', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 't', 'f', 'r', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'v', 'a', 'b', 's', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'b',
's', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'b',
's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'b', 's', 'w', 's',
'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'd', 'd', 'b', '_',
'm', 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'd', 'd', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'd', 'd', 'h', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'v', 'a', 'd', 'd', 'u', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'v', 'a', 'd', 'd', 'u', 'b', 's', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'v', 'a', 'd', 'd', 'u', 'h', 's', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2',
'_', 'v', 'a', 'd', 'd', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a',
'd', 'd', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'v', 'g',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'v', 'g', 'h', 'c', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'v', 'g', 'h', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'v', 'a', 'v', 'g', 'u', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'v', 'a', 'v', 'g', 'u', 'b', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'v', 'a', 'v', 'g', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'v', 'a', 'v', 'g', 'u', 'h', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v',
'a', 'v', 'g', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'v',
'g', 'u', 'w', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'v', 'g',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'v', 'g', 'w', 'c', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'a', 'v', 'g', 'w', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'v', 'c', 'm', 'p', 'b', 'e', 'q', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 'v', 'c', 'm', 'p', 'b', 'g', 't', 'u', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 'v', 'c', 'm', 'p', 'h', 'e', 'q', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'v', 'c', 'm', 'p', 'h', 'g', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'v', 'c', 'm', 'p', 'h', 'g', 't', 'u', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'v', 'c', 'm', 'p', 'w', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2',
'_', 'v', 'c', 'm', 'p', 'w', 'g', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'v', 'c', 'm', 'p', 'w', 'g', 't', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'v', 'c', 'o', 'n', 'j', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'm', 'a',
'x', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'm', 'a', 'x', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 'v', 'm', 'a', 'x', 'u', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 'v', 'm', 'a', 'x', 'u', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'v', 'm', 'a', 'x', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'v', 'm', 'a', 'x', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'm', 'i',
'n', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'm', 'i', 'n', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 'v', 'm', 'i', 'n', 'u', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 'v', 'm', 'i', 'n', 'u', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'v', 'm', 'i', 'n', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_',
'v', 'm', 'i', 'n', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'n', 'a',
'v', 'g', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'n', 'a', 'v', 'g',
'h', 'c', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'n', 'a', 'v', 'g',
'h', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'n', 'a', 'v', 'g', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'n', 'a', 'v', 'g', 'w', 'c', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'n', 'a', 'v', 'g', 'w', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 'v', 'r', 'a', 'd', 'd', 'u', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '2', '_', 'v', 'r', 'a', 'd', 'd', 'u', 'b', '_', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'r', 's', 'a', 'd', 'u', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'v', 'r', 's', 'a', 'd', 'u', 'b', '_',
'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 's', 'u', 'b', 'b',
'_', 'm', 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 's', 'u', 'b',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v', 's', 'u', 'b', 'h', 's', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '2', '_', 'v', 's', 'u', 'b', 'u', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '2', '_', 'v', 's', 'u', 'b', 'u', 'b', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'v', 's', 'u', 'b', 'u', 'h', 's', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'2', '_', 'v', 's', 'u', 'b', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'v',
's', 'u', 'b', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'x', 'o', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '2', '_', 'x', 'o', 'r', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '2', '_', 'z', 'x', 't', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '2', '_', 'z',
'x', 't', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'a', 'n', 'd', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '4', '_', 'a', 'n', 'd', 'n', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '4', '_', 'b', 'i', 't', 's', 'p', 'l', 'i', 't', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '4', '_', 'b', 'i', 't', 's', 'p', 'l', 'i', 't', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '4', '_', 'b', 'o', 'u', 'n', 'd', 's', 'c', 'h', 'e', 'c', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'm', 'p', 'b', 'e', 'q', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'A', '4', '_', 'c', 'm', 'p', 'b', 'e', 'q', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '4', '_', 'c', 'm', 'p', 'b', 'g', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'4', '_', 'c', 'm', 'p', 'b', 'g', 't', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4',
'_', 'c', 'm', 'p', 'b', 'g', 't', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_',
'c', 'm', 'p', 'b', 'g', 't', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_',
'c', 'm', 'p', 'h', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'm',
'p', 'h', 'e', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'm', 'p',
'h', 'g', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'm', 'p', 'h', 'g',
't', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'm', 'p', 'h', 'g', 't',
'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'm', 'p', 'h', 'g', 't', 'u',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'o', 'm', 'b', 'i', 'n', 'e',
'i', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'o', 'm', 'b', 'i', 'n',
'e', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'r', 'o', 'u', 'n',
'd', '_', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'c', 'r', 'o', 'u',
'n', 'd', '_', 'r', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'm', 'o', 'd',
'w', 'r', 'a', 'p', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'o', 'r', 'n',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '4', '_', 'o', 'r', 'n', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '4', '_', 'r', 'c', 'm', 'p', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4',
'_', 'r', 'c', 'm', 'p', 'e', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_',
'r', 'c', 'm', 'p', 'n', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'r',
'c', 'm', 'p', 'n', 'e', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'r',
'o', 'u', 'n', 'd', '_', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'r',
'o', 'u', 'n', 'd', '_', 'r', 'i', '_', 's', 'a', 't', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '4', '_', 'r', 'o', 'u', 'n', 'd', '_', 'r', 'r', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '4', '_', 'r', 'o', 'u', 'n', 'd', '_', 'r', 'r', '_', 's', 'a', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '4', '_', 't', 'l', 'b', 'm', 'a', 't', 'c', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'b', 'e', 'q', '_',
'a', 'n', 'y', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'b',
'e', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'b',
'g', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'b', 'g',
't', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'b', 'g',
't', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'h',
'e', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'h',
'g', 't', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p', 'h',
'g', 't', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p',
'w', 'e', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p',
'w', 'g', 't', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'c', 'm', 'p',
'w', 'g', 't', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'r', 'm',
'a', 'x', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'r', 'm', 'a', 'x',
'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'r', 'm', 'a', 'x', 'u',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'A', '4', '_', 'v', 'r', 'm', 'a', 'x', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '4', '_', 'v', 'r', 'm', 'i', 'n', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '4', '_', 'v', 'r', 'm', 'i', 'n', 'u', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'A', '4', '_', 'v', 'r', 'm', 'i', 'n', 'u', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'4', '_', 'v', 'r', 'm', 'i', 'n', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '5', '_',
'v', 'a', 'd', 'd', 'h', 'u', 'b', 's', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A', '6', '_',
'v', 'c', 'm', 'p', 'b', 'e', 'q', '_', 'n', 'o', 't', 'a', 'n', 'y', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '7', '_', 'c', 'l', 'i', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'A',
'7', '_', 'c', 'r', 'o', 'u', 'n', 'd', 'd', '_', 'r', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'A', '7', '_', 'c', 'r', 'o', 'u', 'n', 'd', 'd', '_', 'r', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'A', '7', '_', 'v', 'c', 'l', 'i', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'C', '2', '_', 'a', 'l', 'l', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'a',
'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'a', 'n', 'd', 'n', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'C', '2', '_', 'a', 'n', 'y', '8', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2',
'_', 'b', 'i', 't', 's', 'c', 'l', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_',
'b', 'i', 't', 's', 'c', 'l', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_',
'b', 'i', 't', 's', 's', 'e', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c',
'm', 'p', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'e',
'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'e', 'q', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'g', 'e', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'g', 'e', 'u', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'C', '2', '_', 'c', 'm', 'p', 'g', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2',
'_', 'c', 'm', 'p', 'g', 't', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c',
'm', 'p', 'g', 't', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c', 'm', 'p',
'g', 't', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'g', 't',
'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'g', 't', 'u',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'l', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'C', '2', '_', 'c', 'm', 'p', 'l', 't', 'u', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'C', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'm',
'u', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'm', 'u', 'x', 'i', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'C', '2', '_', 'm', 'u', 'x', 'i', 'r', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'C', '2', '_', 'm', 'u', 'x', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_',
'n', 'o', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'o', 'r', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'C', '2', '_', 'o', 'r', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'p',
'x', 'f', 'e', 'r', '_', 'm', 'a', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_',
't', 'f', 'r', 'p', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 't', 'f', 'r',
'r', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'v', 'i', 't', 'p', 'a', 'c',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'C', '2', '_', 'v', 'm', 'u', 'x', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'C', '2', '_', 'x', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'a',
'n', 'd', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'a', 'n',
'd', '_', 'a', 'n', 'd', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'a', 'n',
'd', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'a', 'n', 'd', '_',
'o', 'r', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'c', 'm', 'p', 'l', 't',
'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'c', 'm', 'p', 'l', 't', 'e', 'i',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'C', '4', '_', 'c', 'm', 'p', 'l', 't', 'e', 'u', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'C', '4', '_', 'c', 'm', 'p', 'l', 't', 'e', 'u', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'C', '4', '_', 'c', 'm', 'p', 'n', 'e', 'q', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'C', '4', '_', 'c', 'm', 'p', 'n', 'e', 'q', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'C', '4', '_', 'f', 'a', 's', 't', 'c', 'o', 'r', 'n', 'e', 'r', '9', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'C', '4', '_', 'f', 'a', 's', 't', 'c', 'o', 'r', 'n', 'e',
'r', '9', '_', 'n', 'o', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'n', 'b',
'i', 't', 's', 'c', 'l', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'n', 'b',
'i', 't', 's', 'c', 'l', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'n',
'b', 'i', 't', 's', 's', 'e', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'o',
'r', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'o', 'r', '_',
'a', 'n', 'd', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'o', 'r', '_', 'o',
'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'C', '4', '_', 'o', 'r', '_', 'o', 'r', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'd', '2', 'd', 'f',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'd', '2', 's',
'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'd', 'f',
'2', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'd',
'f', '2', 'd', '_', 'c', 'h', 'o', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_',
'c', 'o', 'n', 'v', '_', 'd', 'f', '2', 's', 'f', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F',
'2', '_', 'c', 'o', 'n', 'v', '_', 'd', 'f', '2', 'u', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'd', 'f', '2', 'u', 'd', '_',
'c', 'h', 'o', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v',
'_', 'd', 'f', '2', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o',
'n', 'v', '_', 'd', 'f', '2', 'u', 'w', '_', 'c', 'h', 'o', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'd', 'f', '2', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'd', 'f', '2', 'w',
'_', 'c', 'h', 'o', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n',
'v', '_', 's', 'f', '2', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o',
'n', 'v', '_', 's', 'f', '2', 'd', '_', 'c', 'h', 'o', 'p', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 's', 'f', '2', 'd', 'f', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 's', 'f', '2', 'u',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 's', 'f',
'2', 'u', 'd', '_', 'c', 'h', 'o', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_',
'c', 'o', 'n', 'v', '_', 's', 'f', '2', 'u', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F',
'2', '_', 'c', 'o', 'n', 'v', '_', 's', 'f', '2', 'u', 'w', '_', 'c', 'h',
'o', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 's',
'f', '2', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_',
's', 'f', '2', 'w', '_', 'c', 'h', 'o', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2',
'_', 'c', 'o', 'n', 'v', '_', 'u', 'd', '2', 'd', 'f', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'u', 'd', '2', 's', 'f', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'u', 'w', '2', 'd', 'f',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'u', 'w', '2',
's', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_', 'w',
'2', 'd', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'c', 'o', 'n', 'v', '_',
'w', '2', 's', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'a', 'd',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'c', 'l', 'a', 's', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'c', 'm', 'p', 'e', 'q', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'c', 'm', 'p', 'g', 'e', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'F', '2', '_', 'd', 'f', 'c', 'm', 'p', 'g', 't', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'F', '2', '_', 'd', 'f', 'c', 'm', 'p', 'u', 'o', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'F', '2', '_', 'd', 'f', 'i', 'm', 'm', '_', 'n', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F',
'2', '_', 'd', 'f', 'i', 'm', 'm', '_', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2',
'_', 'd', 'f', 'm', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f',
'm', 'i', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'm', 'p', 'y',
'f', 'i', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'm', 'p', 'y',
'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'm', 'p', 'y', 'l',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 'm', 'p', 'y', 'l', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'F', '2', '_', 'd', 'f', 's', 'u', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'F', '2', '_', 's', 'f', 'a', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2',
'_', 's', 'f', 'c', 'l', 'a', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_',
's', 'f', 'c', 'm', 'p', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's',
'f', 'c', 'm', 'p', 'g', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f',
'c', 'm', 'p', 'g', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'c',
'm', 'p', 'u', 'o', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'i',
'x', 'u', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'i',
'x', 'u', 'p', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'i',
'x', 'u', 'p', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'm',
'a', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'm', 'a', '_', 'l',
'i', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'm', 'a', '_',
's', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'm', 's', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'F', '2', '_', 's', 'f', 'f', 'm', 's', '_', 'l', 'i', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 'i', 'm', 'm', '_', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'F', '2', '_', 's', 'f', 'i', 'm', 'm', '_', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'F', '2', '_', 's', 'f', 'm', 'a', 'x', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F',
'2', '_', 's', 'f', 'm', 'i', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's',
'f', 'm', 'p', 'y', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'F', '2', '_', 's', 'f', 's', 'u',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'L', '2', '_', 'l', 'o', 'a', 'd', 'w', '_', 'l',
'o', 'c', 'k', 'e', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'L', '4', '_', 'l', 'o', 'a',
'd', 'd', '_', 'l', 'o', 'c', 'k', 'e', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'a', 'c', 'c', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'a', 'c', 'c',
'i', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'a', 'c', 'i', '_',
's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'a', 'c', 'r', '_',
's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'a', 'c', 's', '_',
's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'a', 'c', 's', '_',
's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'a', 'c', 's', 'c',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'a', 'c', 's',
'c', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'p', 'y',
'i', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'p', 'y',
'r', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'p', 'y',
'r', 's', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm', 'p',
'y', 'r', 's', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'c', 'm',
'p', 'y', 'r', 's', 'c', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'c', 'm', 'p', 'y', 'r', 's', 'c', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'c', 'm', 'p', 'y', 's', '_', 's', '0', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'c', 'm', 'p', 'y', 's', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'c', 'm', 'p', 'y', 's', 'c', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'c', 'm', 'p', 'y', 's', 'c', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'c', 'n', 'a', 'c', 's', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'c', 'n', 'a', 'c', 's', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'c', 'n', 'a', 'c', 's', 'c', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'c', 'n', 'a', 'c', 's', 'c', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'd', 'p', 'm', 'p', 'y', 's', 's', '_', 'a',
'c', 'c', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'd', 'p', 'm',
'p', 'y', 's', 's', '_', 'n', 'a', 'c', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'd', 'p', 'm', 'p', 'y', 's', 's', '_', 'r', 'n', 'd', '_',
's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'd', 'p', 'm', 'p', 'y', 's',
's', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'd', 'p', 'm', 'p',
'y', 'u', 'u', '_', 'a', 'c', 'c', '_', 's', '0', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'd', 'p', 'm', 'p', 'y', 'u', 'u', '_', 'n', 'a', 'c', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'd', 'p', 'm', 'p', 'y', 'u', 'u',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'h', 'm', 'm', 'p', 'y',
'h', '_', 'r', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'h', 'm', 'm',
'p', 'y', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'h', 'm',
'm', 'p', 'y', 'l', '_', 'r', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'h', 'm', 'm', 'p', 'y', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'a', 'c', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'a', 'c',
's', 'i', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'a', 'c', 's', 'i',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'a', 'c', 'h', 's', '_',
'r', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'a', 'c', 'h',
's', '_', 'r', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'a',
'c', 'h', 's', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm',
'a', 'c', 'h', 's', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'm', 'a', 'c', 'l', 's', '_', 'r', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'm', 'a', 'c', 'l', 's', '_', 'r', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'm', 'a', 'c', 'l', 's', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'm', 'a', 'c', 'l', 's', '_', 's', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'm', 'a', 'c', 'u', 'h', 's', '_', 'r', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'a', 'c', 'u', 'h', 's',
'_', 'r', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'a', 'c',
'u', 'h', 's', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm',
'a', 'c', 'u', 'h', 's', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'm', 'a', 'c', 'u', 'l', 's', '_', 'r', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'm', 'a', 'c', 'u', 'l', 's', '_', 'r', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'a', 'c', 'u', 'l', 's', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'a', 'c', 'u', 'l', 's',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p', 'y', 'h',
'_', 'r', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p', 'y',
'h', '_', 'r', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p',
'y', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p',
'y', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p',
'y', 'l', '_', 'r', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm',
'p', 'y', 'l', '_', 'r', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'm', 'p', 'y', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'm', 'p', 'y', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'm', 'p', 'y', 'u', 'h', '_', 'r', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'm', 'p', 'y', 'u', 'h', '_', 'r', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'm', 'p', 'y', 'u', 'h', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'm', 'p', 'y', 'u', 'h', '_', 's', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'm', 'p', 'y', 'u', 'l', '_', 'r', 's', '0',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p', 'y', 'u', 'l', '_', 'r',
's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p', 'y', 'u', 'l',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'm', 'p', 'y', 'u',
'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'n', 'a', 'c',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c',
'_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', '_', 'a', 'c', 'c', '_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c', '_', 'h', 'l', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c',
'_', 'h', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', '_', 'a', 'c', 'c', '_', 'l', 'h', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c', '_', 'l', 'h', '_', 's',
'1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c',
'_', 'l', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', '_', 'a', 'c', 'c', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c', '_', 's', 'a', 't', '_',
'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'_', 'a', 'c', 'c', '_', 's', 'a', 't', '_', 'h', 'h', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c', '_', 's',
'a', 't', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 'a', 'c', 'c', '_', 's', 'a', 't', '_', 'h', 'l', '_',
's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c',
'c', '_', 's', 'a', 't', '_', 'l', 'h', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c', '_', 's', 'a', 't', '_',
'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'_', 'a', 'c', 'c', '_', 's', 'a', 't', '_', 'l', 'l', '_', 's', '0', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'a', 'c', 'c', '_', 's',
'a', 't', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', '_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', '_', 'l', 'h', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'l', 'h', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'l', 'l', '_', 's', '0',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'l', 'l', '_', 's',
'1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c',
'_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', '_', 'n', 'a', 'c', '_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c', '_', 'h', 'l', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c',
'_', 'h', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', '_', 'n', 'a', 'c', '_', 'l', 'h', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c', '_', 'l', 'h', '_', 's',
'1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c',
'_', 'l', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', '_', 'n', 'a', 'c', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c', '_', 's', 'a', 't', '_',
'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'_', 'n', 'a', 'c', '_', 's', 'a', 't', '_', 'h', 'h', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c', '_', 's',
'a', 't', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 'n', 'a', 'c', '_', 's', 'a', 't', '_', 'h', 'l', '_',
's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a',
'c', '_', 's', 'a', 't', '_', 'l', 'h', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c', '_', 's', 'a', 't', '_',
'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'_', 'n', 'a', 'c', '_', 's', 'a', 't', '_', 'l', 'l', '_', 's', '0', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'n', 'a', 'c', '_', 's',
'a', 't', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 'r', 'n', 'd', '_', 'h', 'h', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'r', 'n', 'd', '_', 'h', 'h',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'r',
'n', 'd', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 'r', 'n', 'd', '_', 'h', 'l', '_', 's', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'r', 'n', 'd', '_', 'l', 'h',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'r',
'n', 'd', '_', 'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 'r', 'n', 'd', '_', 'l', 'l', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 'r', 'n', 'd', '_', 'l', 'l',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's',
'a', 't', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 's', 'a', 't', '_', 'h', 'h', '_', 's', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's', 'a', 't', '_', 'h', 'l',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's',
'a', 't', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 's', 'a', 't', '_', 'l', 'h', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's', 'a', 't', '_', 'l', 'h',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's',
'a', 't', '_', 'l', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 's', 'a', 't', '_', 'l', 'l', '_', 's', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's', 'a', 't', '_', 'r', 'n',
'd', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'p', 'y', '_', 's', 'a', 't', '_', 'r', 'n', 'd', '_', 'h', 'h', '_', 's',
'1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's', 'a', 't',
'_', 'r', 'n', 'd', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', '_', 's', 'a', 't', '_', 'r', 'n', 'd', '_', 'h',
'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_',
's', 'a', 't', '_', 'r', 'n', 'd', '_', 'l', 'h', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's', 'a', 't', '_', 'r', 'n',
'd', '_', 'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'p', 'y', '_', 's', 'a', 't', '_', 'r', 'n', 'd', '_', 'l', 'l', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', '_', 's', 'a', 't',
'_', 'r', 'n', 'd', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', '_', 'u', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', '_', 'u', 'p', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', '_', 'u', 'p', '_', 's', '1', '_', 's', 'a', 't', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'a', 'c', 'c', '_',
'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'd', '_', 'a', 'c', 'c', '_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'a', 'c', 'c', '_', 'h', 'l', '_',
's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'a',
'c', 'c', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', 'd', '_', 'a', 'c', 'c', '_', 'l', 'h', '_', 's', '0', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'a', 'c', 'c', '_',
'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'd', '_', 'a', 'c', 'c', '_', 'l', 'l', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'a', 'c', 'c', '_', 'l', 'l', '_',
's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'h',
'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd',
'_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'd', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', 'd', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', 'd', '_', 'l', 'h', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'l', 'h', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'l', 'l', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'l', 'l',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_',
'n', 'a', 'c', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', 'd', '_', 'n', 'a', 'c', '_', 'h', 'h', '_', 's', '1',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'n', 'a', 'c',
'_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'd', '_', 'n', 'a', 'c', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'n', 'a', 'c', '_', 'l', 'h',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_',
'n', 'a', 'c', '_', 'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', 'd', '_', 'n', 'a', 'c', '_', 'l', 'l', '_', 's', '0',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'n', 'a', 'c',
'_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'd', '_', 'r', 'n', 'd', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'r', 'n', 'd', '_', 'h', 'h',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_',
'r', 'n', 'd', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', 'd', '_', 'r', 'n', 'd', '_', 'h', 'l', '_', 's', '1',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'r', 'n', 'd',
'_', 'l', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'd', '_', 'r', 'n', 'd', '_', 'l', 'h', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_', 'r', 'n', 'd', '_', 'l', 'l',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'd', '_',
'r', 'n', 'd', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
's', 'm', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 's', 'u',
'_', 'u', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_',
'a', 'c', 'c', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', 'u', '_', 'a', 'c', 'c', '_', 'h', 'h', '_', 's', '1',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'a', 'c', 'c',
'_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'u', '_', 'a', 'c', 'c', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'a', 'c', 'c', '_', 'l', 'h',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_',
'a', 'c', 'c', '_', 'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', 'u', '_', 'a', 'c', 'c', '_', 'l', 'l', '_', 's', '0',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'a', 'c', 'c',
'_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'u', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', 'u', '_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', 'u', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'h', 'l', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'l', 'h', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'l', 'h',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_',
'l', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'u', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'p', 'y', 'u', '_', 'n', 'a', 'c', '_', 'h', 'h', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'n', 'a', 'c', '_', 'h',
'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u',
'_', 'n', 'a', 'c', '_', 'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', 'u', '_', 'n', 'a', 'c', '_', 'h', 'l', '_', 's',
'1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'n', 'a',
'c', '_', 'l', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'p', 'y', 'u', '_', 'n', 'a', 'c', '_', 'l', 'h', '_', 's', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', '_', 'n', 'a', 'c', '_', 'l',
'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u',
'_', 'n', 'a', 'c', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', 'u', '_', 'u', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'm', 'p', 'y', 'u', 'd', '_', 'a', 'c', 'c', '_', 'h', 'h', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'a',
'c', 'c', '_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', 'u', 'd', '_', 'a', 'c', 'c', '_', 'h', 'l', '_', 's', '0',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'a', 'c',
'c', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm',
'p', 'y', 'u', 'd', '_', 'a', 'c', 'c', '_', 'l', 'h', '_', 's', '0', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'a', 'c', 'c',
'_', 'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'u', 'd', '_', 'a', 'c', 'c', '_', 'l', 'l', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'a', 'c', 'c', '_',
'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'u', 'd', '_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', 'u', 'd', '_', 'h', 'h', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'h', 'l', '_', 's', '0', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'h', 'l', '_',
's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_',
'l', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'u', 'd', '_', 'l', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'm', 'p', 'y', 'u', 'd', '_', 'l', 'l', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'l', 'l', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'n', 'a', 'c',
'_', 'h', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p',
'y', 'u', 'd', '_', 'n', 'a', 'c', '_', 'h', 'h', '_', 's', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'n', 'a', 'c', '_',
'h', 'l', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y',
'u', 'd', '_', 'n', 'a', 'c', '_', 'h', 'l', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'n', 'a', 'c', '_', 'l',
'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u',
'd', '_', 'n', 'a', 'c', '_', 'l', 'h', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'm', 'p', 'y', 'u', 'd', '_', 'n', 'a', 'c', '_', 'l', 'l',
'_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'm', 'p', 'y', 'u', 'd',
'_', 'n', 'a', 'c', '_', 'l', 'l', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'm', 'p', 'y', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'n',
'a', 'c', 'c', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'n', 'a', 'c', 'c',
'i', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 's', 'u', 'b', 'a', 'c', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'a', 'b', 's', 'd', 'i', 'f', 'f',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'a', 'b', 's', 'd', 'i', 'f',
'f', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'c', 'm', 'a', 'c', '_',
's', '0', '_', 's', 'a', 't', '_', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'v', 'c', 'm', 'a', 'c', '_', 's', '0', '_', 's', 'a', 't', '_', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'v', 'c', 'm', 'p', 'y', '_', 's', '0', '_',
's', 'a', 't', '_', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'c', 'm',
'p', 'y', '_', 's', '0', '_', 's', 'a', 't', '_', 'r', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'v', 'c', 'm', 'p', 'y', '_', 's', '1', '_', 's', 'a', 't',
'_', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'c', 'm', 'p', 'y', '_',
's', '1', '_', 's', 'a', 't', '_', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'v', 'd', 'm', 'a', 'c', 's', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'v', 'd', 'm', 'a', 'c', 's', '_', 's', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'v', 'd', 'm', 'p', 'y', 'r', 's', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'v', 'd', 'm', 'p', 'y', 'r', 's', '_', 's', '1', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'v', 'd', 'm', 'p', 'y', 's', '_', 's', '0',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'd', 'm', 'p', 'y', 's', '_', 's',
'1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'a', 'c', '2', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '2', '_', 'v', 'm', 'a', 'c', '2', 'e', 's', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'v', 'm', 'a', 'c', '2', 'e', 's', '_', 's', '0', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'a', 'c', '2', 'e', 's', '_', 's',
'1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'a', 'c', '2', 's', '_',
's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'a', 'c', '2', 's',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'a', 'c', '2',
's', 'u', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'a',
'c', '2', 's', 'u', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v',
'm', 'p', 'y', '2', 'e', 's', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'v', 'm', 'p', 'y', '2', 'e', 's', '_', 's', '1', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'v', 'm', 'p', 'y', '2', 's', '_', 's', '0', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'v', 'm', 'p', 'y', '2', 's', '_', 's', '0', 'p', 'a',
'c', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'p', 'y', '2', 's',
'_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'm', 'p', 'y', '2',
's', '_', 's', '1', 'p', 'a', 'c', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_',
'v', 'm', 'p', 'y', '2', 's', 'u', '_', 's', '0', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'v', 'm', 'p', 'y', '2', 's', 'u', '_', 's', '1', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '2', '_', 'v', 'r', 'a', 'd', 'd', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'2', '_', 'v', 'r', 'a', 'd', 'd', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'v', 'r', 'c', 'm', 'a', 'c', 'i', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'v', 'r', 'c', 'm', 'a', 'c', 'i', '_', 's', '0', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'v', 'r', 'c', 'm', 'a', 'c', 'r', '_', 's',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'r', 'c', 'm', 'a', 'c', 'r',
'_', 's', '0', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'r', 'c', 'm',
'p', 'y', 'i', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'r',
'c', 'm', 'p', 'y', 'i', '_', 's', '0', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2',
'_', 'v', 'r', 'c', 'm', 'p', 'y', 'r', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'v', 'r', 'c', 'm', 'p', 'y', 'r', '_', 's', '0', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '2', '_', 'v', 'r', 'c', 'm', 'p', 'y', 's', '_', 'a',
'c', 'c', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v', 'r', 'c',
'm', 'p', 'y', 's', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '2', '_', 'v',
'r', 'c', 'm', 'p', 'y', 's', '_', 's', '1', 'r', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'v', 'r', 'm', 'a', 'c', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'v', 'r', 'm', 'p', 'y', '_', 's', '0', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '2', '_', 'x', 'o', 'r', '_', 'x', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '4', '_', 'a', 'n', 'd', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'4', '_', 'a', 'n', 'd', '_', 'a', 'n', 'd', 'n', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'4', '_', 'a', 'n', 'd', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_',
'a', 'n', 'd', '_', 'x', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'c',
'm', 'p', 'y', 'i', '_', 'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'c',
'm', 'p', 'y', 'i', '_', 'w', 'h', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_',
'c', 'm', 'p', 'y', 'r', '_', 'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_',
'c', 'm', 'p', 'y', 'r', '_', 'w', 'h', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4',
'_', 'm', 'a', 'c', '_', 'u', 'p', '_', 's', '1', '_', 's', 'a', 't', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '4', '_', 'm', 'p', 'y', 'r', 'i', '_', 'a', 'd', 'd',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'm', 'p', 'y', 'r', 'i', '_', 'a',
'd', 'd', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'm', 'p', 'y', 'r', 'i',
'_', 'a', 'd', 'd', 'r', '_', 'u', '2', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_',
'm', 'p', 'y', 'r', 'r', '_', 'a', 'd', 'd', 'i', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'4', '_', 'm', 'p', 'y', 'r', 'r', '_', 'a', 'd', 'd', 'r', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'M', '4', '_', 'n', 'a', 'c', '_', 'u', 'p', '_', 's', '1', '_', 's',
'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'o', 'r', '_', 'a', 'n', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '4', '_', 'o', 'r', '_', 'a', 'n', 'd', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '4', '_', 'o', 'r', '_', 'o', 'r', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '4', '_', 'o', 'r', '_', 'x', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4',
'_', 'p', 'm', 'p', 'y', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'p', 'm',
'p', 'y', 'w', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'v',
'p', 'm', 'p', 'y', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'v', 'p', 'm',
'p', 'y', 'h', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'v',
'r', 'm', 'p', 'y', 'e', 'h', '_', 'a', 'c', 'c', '_', 's', '0', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '4', '_', 'v', 'r', 'm', 'p', 'y', 'e', 'h', '_', 'a', 'c',
'c', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'v', 'r', 'm', 'p',
'y', 'e', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'v', 'r',
'm', 'p', 'y', 'e', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_',
'v', 'r', 'm', 'p', 'y', 'o', 'h', '_', 'a', 'c', 'c', '_', 's', '0', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '4', '_', 'v', 'r', 'm', 'p', 'y', 'o', 'h', '_', 'a',
'c', 'c', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'v', 'r', 'm',
'p', 'y', 'o', 'h', '_', 's', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'v',
'r', 'm', 'p', 'y', 'o', 'h', '_', 's', '1', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4',
'_', 'x', 'o', 'r', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_',
'x', 'o', 'r', '_', 'a', 'n', 'd', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_',
'x', 'o', 'r', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '4', '_', 'x', 'o',
'r', '_', 'x', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'd',
'm', 'a', 'c', 'b', 's', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'd',
'm', 'p', 'y', 'b', 's', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'm',
'a', 'c', 'b', 's', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'm', 'a',
'c', 'b', 'u', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'm', 'p', 'y',
'b', 's', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'm', 'p', 'y', 'b',
'u', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'r', 'm', 'a', 'c', 'b',
's', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'r', 'm', 'a', 'c', 'b',
'u', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'r', 'm', 'p', 'y', 'b',
's', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '5', '_', 'v', 'r', 'm', 'p', 'y', 'b',
'u', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '6', '_', 'v', 'a', 'b', 's', 'd', 'i',
'f', 'f', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '6', '_', 'v', 'a', 'b', 's', 'd',
'i', 'f', 'f', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'd', 'c', 'm',
'p', 'y', 'i', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'd', 'c', 'm', 'p',
'y', 'i', 'w', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'd',
'c', 'm', 'p', 'y', 'i', 'w', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'd',
'c', 'm', 'p', 'y', 'i', 'w', 'c', '_', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'M', '7', '_', 'd', 'c', 'm', 'p', 'y', 'r', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M',
'7', '_', 'd', 'c', 'm', 'p', 'y', 'r', 'w', '_', 'a', 'c', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '7', '_', 'd', 'c', 'm', 'p', 'y', 'r', 'w', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'M', '7', '_', 'd', 'c', 'm', 'p', 'y', 'r', 'w', 'c', '_', 'a',
'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'v', 'd', 'm', 'p', 'y', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '7', '_', 'v', 'd', 'm', 'p', 'y', '_', 'a', 'c', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'M', '7', '_', 'w', 'c', 'm', 'p', 'y', 'i', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'M', '7', '_', 'w', 'c', 'm', 'p', 'y', 'i', 'w', '_', 'r',
'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'w', 'c', 'm', 'p', 'y', 'i',
'w', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'w', 'c', 'm', 'p', 'y', 'i',
'w', 'c', '_', 'r', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'w', 'c',
'm', 'p', 'y', 'r', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_', 'w', 'c', 'm',
'p', 'y', 'r', 'w', '_', 'r', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_',
'w', 'c', 'm', 'p', 'y', 'r', 'w', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'M', '7', '_',
'w', 'c', 'm', 'p', 'y', 'r', 'w', 'c', '_', 'r', 'n', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 'd', 'd', 'a', 's', 'l', '_', 'r', 'r', 'r', 'i',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'p', '_', 'a',
'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_',
'p', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l',
'_', 'i', '_', 'p', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'a', 's', 'l', '_', 'i', '_', 'p', '_', 'o', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'a', 's', 'l', '_', 'i', '_', 'p', '_', 'x', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'r', '_', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'r',
'_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_',
'i', '_', 'r', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a',
's', 'l', '_', 'i', '_', 'r', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'a', 's', 'l', '_', 'i', '_', 'r', '_', 's', 'a', 't', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'r', '_', 'x', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'v',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'i', '_', 'v',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'p', '_',
'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'r',
'_', 'p', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's',
'l', '_', 'r', '_', 'p', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'a', 's', 'l', '_', 'r', '_', 'p', '_', 'o', 'r', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'p', '_', 'x', 'o', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'r', '_', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'r',
'_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'l', '_',
'r', '_', 'r', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a',
's', 'l', '_', 'r', '_', 'r', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'a', 's', 'l', '_', 'r', '_', 'r', '_', 's', 'a', 't', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'v', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'l', '_', 'r', '_', 'v', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'r', '_', 'i', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'a', 's', 'r', '_', 'i', '_', 'p', '_', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'i', '_', 'p', '_', 'a',
'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'i', '_',
'p', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r',
'_', 'i', '_', 'p', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a',
's', 'r', '_', 'i', '_', 'p', '_', 'r', 'n', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'a', 's', 'r', '_', 'i', '_', 'p', '_', 'r', 'n', 'd', '_', 'g',
'o', 'o', 'd', 's', 'y', 'n', 't', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'a', 's', 'r', '_', 'i', '_', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'a', 's', 'r', '_', 'i', '_', 'r', '_', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'a', 's', 'r', '_', 'i', '_', 'r', '_', 'a', 'n', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'i', '_', 'r', '_', 'n',
'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'i', '_',
'r', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_',
'i', '_', 'r', '_', 'r', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a',
's', 'r', '_', 'i', '_', 'r', '_', 'r', 'n', 'd', '_', 'g', 'o', 'o', 'd',
's', 'y', 'n', 't', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's',
'r', '_', 'i', '_', 's', 'v', 'w', '_', 't', 'r', 'u', 'n', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'r', '_', 'i', '_', 'v', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'r', '_', 'i', '_', 'v', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'r', '_', 'r', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'a', 's', 'r', '_', 'r', '_', 'p', '_', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'r', '_', 'p', '_', 'a',
'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'r', '_',
'p', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r',
'_', 'r', '_', 'p', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a',
's', 'r', '_', 'r', '_', 'p', '_', 'x', 'o', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'a', 's', 'r', '_', 'r', '_', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'a', 's', 'r', '_', 'r', '_', 'r', '_', 'a', 'c', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'a', 's', 'r', '_', 'r', '_', 'r', '_', 'a', 'n', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'r', '_', 'r', '_',
'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'r',
'_', 'r', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r',
'_', 'r', '_', 'r', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'a', 's', 'r', '_', 'r', '_', 's', 'v', 'w', '_', 't', 'r', 'u', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'r', '_', 'v', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'a', 's', 'r', '_', 'r', '_', 'v', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'b', 'r', 'e', 'v', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'b', 'r', 'e', 'v', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'c',
'l', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'c', 'l', '0', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'c', 'l', '1', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'c', 'l', '1', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'c', 'l', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'c', 'l', 'b', 'n', 'o', 'r', 'm', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'c', 'l', 'b', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'c', 'l', 'r', 'b', 'i', 't', '_', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'c', 'l', 'r', 'b', 'i', 't', '_', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'c', 't', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'c', 't', '0', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'c', 't', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'c', 't', '1', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'd', 'e',
'i', 'n', 't', 'e', 'r', 'l', 'e', 'a', 'v', 'e', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'e', 'x', 't', 'r', 'a', 'c', 't', 'u', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'e', 'x', 't', 'r', 'a', 'c', 't', 'u', '_', 'r', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'e', 'x', 't', 'r', 'a', 'c', 't', 'u', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'e', 'x', 't', 'r', 'a', 'c', 't', 'u', 'p',
'_', 'r', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'i', 'n', 's', 'e', 'r',
't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'i', 'n', 's', 'e', 'r', 't', '_',
'r', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'i', 'n', 's', 'e', 'r', 't',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'i', 'n', 's', 'e', 'r', 't', 'p',
'_', 'r', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'i', 'n', 't', 'e', 'r',
'l', 'e', 'a', 'v', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 'f', 's',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'l', '_', 'r', '_', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'l', '_', 'r', '_', 'p', '_',
'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'l', '_', 'r',
'_', 'p', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's',
'l', '_', 'r', '_', 'p', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'l', 's', 'l', '_', 'r', '_', 'p', '_', 'o', 'r', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'l', 's', 'l', '_', 'r', '_', 'p', '_', 'x', 'o', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'l', 's', 'l', '_', 'r', '_', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'l', 's', 'l', '_', 'r', '_', 'r', '_', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'l', '_', 'r', '_', 'r',
'_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'l', '_',
'r', '_', 'r', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l',
's', 'l', '_', 'r', '_', 'r', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'l', 's', 'l', '_', 'r', '_', 'v', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'l', 's', 'l', '_', 'r', '_', 'v', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'l', 's', 'r', '_', 'i', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'l', 's', 'r', '_', 'i', '_', 'p', '_', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'l', 's', 'r', '_', 'i', '_', 'p', '_', 'a', 'n', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'i', '_', 'p', '_', 'n',
'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'i', '_',
'p', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_',
'i', '_', 'p', '_', 'x', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'l', 's', 'r', '_', 'i', '_', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l',
's', 'r', '_', 'i', '_', 'r', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'l', 's', 'r', '_', 'i', '_', 'r', '_', 'a', 'n', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'i', '_', 'r', '_', 'n', 'a',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'i', '_', 'r',
'_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'i',
'_', 'r', '_', 'x', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l',
's', 'r', '_', 'i', '_', 'v', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l',
's', 'r', '_', 'i', '_', 'v', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l',
's', 'r', '_', 'r', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's',
'r', '_', 'r', '_', 'p', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'l', 's', 'r', '_', 'r', '_', 'p', '_', 'a', 'n', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'l', 's', 'r', '_', 'r', '_', 'p', '_', 'n', 'a', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'r', '_', 'p', '_',
'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'r', '_',
'p', '_', 'x', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r',
'_', 'r', '_', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_',
'r', '_', 'r', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'l',
's', 'r', '_', 'r', '_', 'r', '_', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'l', 's', 'r', '_', 'r', '_', 'r', '_', 'n', 'a', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'r', '_', 'r', '_', 'o', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'r', '_', 'v', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'l', 's', 'r', '_', 'r', '_', 'v', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'p', 'a', 'c', 'k', 'h', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'p', 'a', 'r', 'i', 't', 'y', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
's', 'e', 't', 'b', 'i', 't', '_', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
's', 'e', 't', 'b', 'i', 't', '_', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
's', 'h', 'u', 'f', 'f', 'e', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 's',
'h', 'u', 'f', 'f', 'e', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 's', 'h',
'u', 'f', 'f', 'o', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 's', 'h', 'u',
'f', 'f', 'o', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'b', 'r', 'e', 'v', '_', 's', 't', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'b', 'r', 'e', 'v', '_', 's', 't', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'b', 'r', 'e', 'v', '_', 's', 't',
'h', 'h', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'b',
'r', 'e', 'v', '_', 's', 't', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'b', 'r', 'e', 'v', '_', 's', 't', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 's', 't', 'o', 'r', 'e', 'w', '_', 'l', 'o', 'c', 'k', 'e',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '2', '_', 's', 'v', 's', 'a', 't', 'h', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 's', 'v', 's', 'a', 't', 'h', 'u', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '2', '_', 't', 'a', 'b', 'l', 'e', 'i', 'd', 'x',
'b', '_', 'g', 'o', 'o', 'd', 's', 'y', 'n', 't', 'a', 'x', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 't', 'a', 'b', 'l', 'e', 'i', 'd', 'x', 'd', '_', 'g',
'o', 'o', 'd', 's', 'y', 'n', 't', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 't', 'a', 'b', 'l', 'e', 'i', 'd', 'x', 'h', '_', 'g', 'o', 'o', 'd',
's', 'y', 'n', 't', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 't', 'a',
'b', 'l', 'e', 'i', 'd', 'x', 'w', '_', 'g', 'o', 'o', 'd', 's', 'y', 'n',
't', 'a', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 't', 'o', 'g', 'g', 'l',
'e', 'b', 'i', 't', '_', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 't', 'o',
'g', 'g', 'l', 'e', 'b', 'i', 't', '_', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 't', 's', 't', 'b', 'i', 't', '_', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 't', 's', 't', 'b', 'i', 't', '_', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'v', 'a', 'l', 'i', 'g', 'n', 'i', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'v', 'a', 'l', 'i', 'g', 'n', 'r', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'v', 'c', 'n', 'e', 'g', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'v',
'c', 'r', 'o', 't', 'a', 't', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'v',
'r', 'c', 'n', 'e', 'g', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'v', 'r',
'n', 'd', 'p', 'a', 'c', 'k', 'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'v', 'r', 'n', 'd', 'p', 'a', 'c', 'k', 'w', 'h', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '2', '_', 'v', 's', 'a', 't', 'h', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2',
'_', 'v', 's', 'a', 't', 'h', 'b', '_', 'n', 'o', 'p', 'a', 'c', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'v', 's', 'a', 't', 'h', 'u', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'v', 's', 'a', 't', 'h', 'u', 'b', '_', 'n', 'o',
'p', 'a', 'c', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'v', 's', 'a', 't',
'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'v', 's', 'a', 't', 'w', 'h',
'_', 'n', 'o', 'p', 'a', 'c', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'v',
's', 'a', 't', 'w', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_', 'v', 's',
'a', 't', 'w', 'u', 'h', '_', 'n', 'o', 'p', 'a', 'c', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'v', 's', 'p', 'l', 'a', 't', 'r', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'v', 's', 'p', 'l', 'a', 't', 'r', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'v', 's', 'p', 'l', 'i', 'c', 'e', 'i', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '2', '_', 'v', 's', 'p', 'l', 'i', 'c', 'e', 'r', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '2', '_', 'v', 's', 'x', 't', 'b', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '2', '_', 'v', 's', 'x', 't', 'h', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'v', 't', 'r', 'u', 'n', 'e', 'h', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'v', 't', 'r', 'u', 'n', 'e', 'w', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'v', 't', 'r', 'u', 'n', 'o', 'h', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'v', 't', 'r', 'u', 'n', 'o', 'w', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'2', '_', 'v', 'z', 'x', 't', 'b', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '2', '_',
'v', 'z', 'x', 't', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'a', 'd',
'd', 'a', 'd', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'a', 'd', 'd',
'i', '_', 'a', 's', 'l', '_', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_',
'a', 'd', 'd', 'i', '_', 'l', 's', 'r', '_', 'r', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '4', '_', 'a', 'n', 'd', 'i', '_', 'a', 's', 'l', '_', 'r', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '4', '_', 'a', 'n', 'd', 'i', '_', 'l', 's', 'r', '_',
'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'c', 'l', 'b', 'a', 'd', 'd',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'c', 'l', 'b', 'p', 'a', 'd', 'd',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'c', 'l', 'b', 'p', 'n', 'o', 'r',
'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'e', 'x', 't', 'r', 'a', 'c', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '4', '_', 'e', 'x', 't', 'r', 'a', 'c', 't', '_',
'r', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'e', 'x', 't', 'r', 'a', 'c',
't', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'e', 'x', 't', 'r', 'a', 'c',
't', 'p', '_', 'r', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'l', 's', 'l',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'n', 't', 's', 't', 'b', 'i', 't',
'_', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'n', 't', 's', 't', 'b', 'i',
't', '_', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'o', 'r', '_', 'a', 'n',
'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'o', 'r', '_', 'a', 'n', 'd',
'i', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'o', 'r', '_', 'o', 'r', 'i',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '4', '_', 'o', 'r', 'i', '_', 'a', 's', 'l', '_',
'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'o', 'r', 'i', '_', 'l', 's',
'r', '_', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'p', 'a', 'r', 'i',
't', 'y', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 's', 't', 'o', 'r', 'e', 'd',
'_', 'l', 'o', 'c', 'k', 'e', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 's',
'u', 'b', 'a', 'd', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 's', 'u',
'b', 'i', '_', 'a', 's', 'l', '_', 'r', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4',
'_', 's', 'u', 'b', 'i', '_', 'l', 's', 'r', '_', 'r', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '4', '_', 'v', 'r', 'c', 'r', 'o', 't', 'a', 't', 'e', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '4', '_', 'v', 'r', 'c', 'r', 'o', 't', 'a', 't', 'e', '_',
'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'v', 'x', 'a', 'd', 'd',
's', 'u', 'b', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'v', 'x', 'a', 'd',
'd', 's', 'u', 'b', 'h', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'v', 'x',
'a', 'd', 'd', 's', 'u', 'b', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_', 'v',
'x', 's', 'u', 'b', 'a', 'd', 'd', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '4', '_',
'v', 'x', 's', 'u', 'b', 'a', 'd', 'd', 'h', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'4', '_', 'v', 'x', 's', 'u', 'b', 'a', 'd', 'd', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '5', '_', 'a', 's', 'r', 'h', 'u', 'b', '_', 'r', 'n', 'd', '_', 's',
'a', 't', '_', 'g', 'o', 'o', 'd', 's', 'y', 'n', 't', 'a', 'x', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '5', '_', 'a', 's', 'r', 'h', 'u', 'b', '_', 's', 'a', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '5', '_', 'p', 'o', 'p', 'c', 'o', 'u', 'n', 't',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '5', '_', 'v', 'a', 's', 'r', 'h', 'r', 'n',
'd', '_', 'g', 'o', 'o', 'd', 's', 'y', 'n', 't', 'a', 'x', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'S', '6', '_', 'r', 'o', 'l', '_', 'i', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '6', '_', 'r', 'o', 'l', '_', 'i', '_', 'p', '_', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'S', '6', '_', 'r', 'o', 'l', '_', 'i', '_', 'p', '_', 'a',
'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'S', '6', '_', 'r', 'o', 'l', '_', 'i', '_',
'p', '_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '6', '_', 'r', 'o', 'l',
'_', 'i', '_', 'p', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '6', '_', 'r',
'o', 'l', '_', 'i', '_', 'p', '_', 'x', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '6', '_', 'r', 'o', 'l', '_', 'i', '_', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'6', '_', 'r', 'o', 'l', '_', 'i', '_', 'r', '_', 'a', 'c', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'S', '6', '_', 'r', 'o', 'l', '_', 'i', '_', 'r', '_', 'a', 'n',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'S', '6', '_', 'r', 'o', 'l', '_', 'i', '_', 'r',
'_', 'n', 'a', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '6', '_', 'r', 'o', 'l', '_',
'i', '_', 'r', '_', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S', '6', '_', 'r', 'o',
'l', '_', 'i', '_', 'r', '_', 'x', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'S',
'6', '_', 'v', 's', 'p', 'l', 'a', 't', 'r', 'b', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'S', '6', '_', 'v', 't', 'r', 'u', 'n', 'e', 'h', 'b', '_', 'p', 'p', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'S', '6', '_', 'v', 't', 'r', 'u', 'n', 'o', 'h', 'b',
'_', 'p', 'p', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'e', 'x', 't', 'r',
'a', 'c', 't', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'e', 'x', 't', 'r',
'a', 'c', 't', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'h', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'h', 'i', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'l', 'o', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'l', 'o', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'l', 'v', 's', 'p', 'l', 'a', 't', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'l', 'v', 's', 'p', 'l', 'a', 't', 'b', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'l', 'v', 's', 'p', 'l', 'a', 't', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'l', 'v', 's', 'p', 'l', 'a', 't', 'h',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'l', 'v', 's',
'p', 'l', 'a', 't', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'l', 'v', 's',
'p', 'l', 'a', 't', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'b', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 'b', 's', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'b', 's', 'b', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'b', 's', 'b', '_', 's', 'a', 't', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's', 'd', 'i', 'f',
'f', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's', 'd', 'i',
'f', 'f', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 'b', 's', 'd', 'i', 'f', 'f', 'u', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'b', 's', 'd', 'i', 'f', 'f', 'u', 'b', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's', 'd', 'i',
'f', 'f', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's',
'd', 'i', 'f', 'f', 'u', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 'b', 's', 'd', 'i', 'f', 'f', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'b', 's', 'd', 'i', 'f', 'f', 'w', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's', 'h', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's', 'h', '_',
's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'b', 's', 'h',
'_', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'b', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
'b', 's', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 'b', 's', 'w', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'b', 's', 'w', '_', 's', 'a', 't', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'b', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'b', '_', 'd', 'v', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'b', '_', 'd', 'v', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd',
'b', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd',
'b', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'd', 'd', 'b', 's', 'a', 't', '_', 'd', 'v', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'b', 's', 'a', 't', '_', 'd', 'v',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd',
'd', 'c', 'l', 'b', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd',
'd', 'c', 'l', 'b', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'd', 'd', 'c', 'l', 'b', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'd', 'd', 'c', 'l', 'b', 'w', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'h', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'h', '_', 'd', 'v', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'h', '_', 'd', 'v', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd',
'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd',
'h', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'd', 'd', 'h', 's', 'a', 't', '_', 'd', 'v', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'h', 's', 'a', 't', '_', 'd', 'v',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd',
'd', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'h',
'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
'd', 'd', 'h', 'w', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 'd', 'd', 'h', 'w', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'b', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'b', 'h', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u',
'b', 'h', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
'd', 'd', 'u', 'b', 'h', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'b', 's', 'a', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'b', 's', 'a',
't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
'd', 'd', 'u', 'b', 's', 'a', 't', '_', 'd', 'v', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'd', 'd', 'u', 'b', 's', 'a', 't', '_', 'd', 'v', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd',
'u', 'b', 'u', 'b', 'b', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'd', 'd', 'u', 'b', 'u', 'b', 'b', '_', 's', 'a', 't', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd',
'u', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd',
'd', 'u', 'h', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'h', 's', 'a', 't', '_', 'd', 'v',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'h', 's', 'a',
't', '_', 'd', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'd', 'd', 'u', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 'd', 'd', 'u', 'h', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'h', 'w', '_', 'a', 'c', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'h', 'w', '_',
'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 'd', 'd', 'u', 'w', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'd', 'd', 'u', 'w', 's', 'a', 't', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'u', 'w', 's', 'a',
't', '_', 'd', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd',
'u', 'w', 's', 'a', 't', '_', 'd', 'v', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'd', 'd', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'w', '_', 'd', 'v', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'w', '_', 'd', 'v', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'w', 's',
'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'd', 'd', 'w', 's',
'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 'd', 'd', 'w', 's', 'a', 't', '_', 'd', 'v', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'd', 'd', 'w', 's', 'a', 't', '_', 'd', 'v', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'l', 'i', 'g',
'n', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'l', 'i', 'g', 'n',
'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
'l', 'i', 'g', 'n', 'b', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
'l', 'i', 'g', 'n', 'b', 'i', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 'n', 'd', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 's', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's',
'l', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 's', 'l', 'h', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 's', 'l', 'h', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'l', 'h', 'v', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 's', 'l', 'h', 'v', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'l', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 's', 'l', 'w', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'l', 'w', '_', 'a', 'c', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'l', 'w', '_', 'a', 'c',
'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
's', 'l', 'w', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'l',
'w', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 's', 'r', '_', 'i', 'n', 't', 'o', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 's', 'r', '_', 'i', 'n', 't', 'o', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 's', 'r', 'h', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'h', '_', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'h', '_', 'a', 'c', 'c',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's',
'r', 'h', 'b', 'r', 'n', 'd', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 's', 'r', 'h', 'b', 'r', 'n', 'd', 's', 'a', 't', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'h',
'b', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r',
'h', 'b', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 's', 'r', 'h', 'u', 'b', 'r', 'n', 'd', 's', 'a', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'h', 'u', 'b', 'r',
'n', 'd', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 's', 'r', 'h', 'u', 'b', 's', 'a', 't', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 's', 'r', 'h', 'u', 'b', 's', 'a', 't', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r',
'h', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'h', 'v',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's',
'r', 'u', 'h', 'u', 'b', 'r', 'n', 'd', 's', 'a', 't', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 's', 'r', 'u', 'h', 'u', 'b', 'r', 'n', 'd', 's',
'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 's', 'r', 'u', 'h', 'u', 'b', 's', 'a', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 's', 'r', 'u', 'h', 'u', 'b', 's', 'a', 't', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'u',
'w', 'u', 'h', 'r', 'n', 'd', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 's', 'r', 'u', 'w', 'u', 'h', 'r', 'n', 'd', 's', 'a', 't',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's',
'r', 'u', 'w', 'u', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 's', 'r', 'u', 'w', 'u', 'h', 's', 'a', 't', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', '_', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', '_', 'a',
'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 's', 'r', 'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's',
'r', 'w', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 's', 'r', 'w', 'h', 'r', 'n', 'd', 's', 'a', 't', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', 'h', 'r', 'n', 'd', 's', 'a',
't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a',
's', 'r', 'w', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 's', 'r', 'w', 'h', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', 'u', 'h', 'r', 'n', 'd',
's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w',
'u', 'h', 'r', 'n', 'd', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', 'u', 'h', 's', 'a', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's', 'r', 'w', 'u', 'h', 's',
'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 's', 'r', 'w', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 's',
'r', 'w', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 's', 's', 'i', 'g', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 's', 's', 'i', 'g', 'n', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 's', 's', 'i', 'g', 'n', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 's', 's', 'i', 'g', 'n', 'p', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'b', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'b', 'r', 'n', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'b', 'r', 'n', 'd',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v',
'g', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'h', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g',
'h', 'r', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g',
'h', 'r', 'n', 'd', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'a', 'v', 'g', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'a', 'v', 'g', 'u', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'v', 'g', 'u', 'b', 'r', 'n', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 'v', 'g', 'u', 'b', 'r', 'n', 'd', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'u', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'u', 'h', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'u',
'h', 'r', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g',
'u', 'h', 'r', 'n', 'd', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'a', 'v', 'g', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'a', 'v', 'g', 'u', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'a', 'v', 'g', 'u', 'w', 'r', 'n', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'u', 'w', 'r', 'n', 'd', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'w', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'w', 'r',
'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'a', 'v', 'g', 'w', 'r',
'n', 'd', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'c', 'l', '0', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'c', 'l', '0',
'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'c',
'l', '0', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'c', 'l', '0', 'w',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'c', 'o',
'm', 'b', 'i', 'n', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'c', 'o',
'm', 'b', 'i', 'n', 'e', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'd', '0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', '0',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'd',
'0', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'd', '0', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'e', 'a', 'l', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'e', 'a', 'l', 'b', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'e', 'a', 'l',
'b', '4', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'e', 'a', 'l',
'b', '4', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'd', 'e', 'a', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd',
'e', 'a', 'l', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'd', 'e', 'a', 'l', 'v', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'd', 'e', 'a', 'l', 'v', 'd', 'd', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'e', 'l', 't', 'a', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'd', 'e', 'l', 't', 'a', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'b', 'u', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'b', 'u', 's',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm',
'p', 'y', 'b', 'u', 's', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'd', 'm', 'p', 'y', 'b', 'u', 's', '_', 'a', 'c', 'c', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y',
'b', 'u', 's', '_', 'd', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd',
'm', 'p', 'y', 'b', 'u', 's', '_', 'd', 'v', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'b', 'u', 's', '_',
'd', 'v', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd',
'm', 'p', 'y', 'b', 'u', 's', '_', 'd', 'v', '_', 'a', 'c', 'c', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y',
'h', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h',
'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd',
'm', 'p', 'y', 'h', 'b', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'd', 'm', 'p', 'y', 'h', 'b', '_', 'a', 'c', 'c', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h',
'b', '_', 'd', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p',
'y', 'h', 'b', '_', 'd', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 'b', '_', 'd', 'v', '_', 'a',
'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h',
'b', '_', 'd', 'v', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 'i', 's', 'a', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 'i', 's',
'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'd', 'm', 'p', 'y', 'h', 'i', 's', 'a', 't', '_', 'a', 'c', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 'i', 's', 'a', 't',
'_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'd', 'm', 'p', 'y', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 's', 'a', 't', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 's',
'a', 't', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd',
'm', 'p', 'y', 'h', 's', 'a', 't', '_', 'a', 'c', 'c', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 's',
'u', 'i', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm',
'p', 'y', 'h', 's', 'u', 'i', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 's', 'u', 'i',
's', 'a', 't', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'd', 'm', 'p', 'y', 'h', 's', 'u', 'i', 's', 'a', 't', '_', 'a', 'c', 'c',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm',
'p', 'y', 'h', 's', 'u', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'd', 'm', 'p', 'y', 'h', 's', 'u', 's', 'a', 't', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 's',
'u', 's', 'a', 't', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'd', 'm', 'p', 'y', 'h', 's', 'u', 's', 'a', 't', '_', 'a', 'c', 'c',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm',
'p', 'y', 'h', 'v', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'd', 'm', 'p', 'y', 'h', 'v', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm', 'p', 'y', 'h', 'v', 's', 'a',
't', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 'm',
'p', 'y', 'h', 'v', 's', 'a', 't', '_', 'a', 'c', 'c', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 's', 'a', 'd', 'u', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 's', 'a', 'd', 'u', 'h', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'd', 's', 'a',
'd', 'u', 'h', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'd', 's', 'a', 'd', 'u', 'h', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'g', 'a', 't', 'h', 'e', 'r', 'm',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'g', 'a', 't', 'h', 'e', 'r',
'm', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'g', 'a', 't', 'h', 'e', 'r', 'm', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'g', 'a', 't', 'h', 'e', 'r', 'm', 'h', 'w', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'g', 'a', 't', 'h', 'e', 'r',
'm', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'g', 'a', 't', 'h', 'e',
'r', 'm', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'i', 'n', 's', 'e', 'r', 't', 'w', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'i', 'n', 's', 'e', 'r', 't', 'w', 'r', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'a', 'l', 'i', 'g', 'n', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'a', 'l', 'i', 'g', 'n', 'b',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'a',
'l', 'i', 'g', 'n', 'b', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l',
'a', 'l', 'i', 'g', 'n', 'b', 'i', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'l', 's', 'r', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'l', 's', 'r', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'l', 's', 'r', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'l', 's', 'r', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'l', 's', 'r', 'h', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'l', 's', 'r', 'h', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'l', 's', 'r', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'l', 's', 'r', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'l', 's', 'r', 'w', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'l', 's', 'r', 'w', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'l', 'u', 't', '4', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'l', 'u', 't', '4', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'l', 'u', 't', 'v', 'v', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'l', 'u', 't', 'v', 'v', 'b', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'v', 'b', '_', 'n', 'm',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'v', 'b', '_',
'n', 'm', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'l', 'u', 't', 'v', 'v', 'b', '_', 'o', 'r', 'a', 'c', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'v', 'b', '_', 'o', 'r', 'a',
'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'l', 'u', 't', 'v', 'v', 'b', '_', 'o', 'r', 'a', 'c', 'c', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'v', 'b', '_', 'o', 'r',
'a', 'c', 'c', 'i', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'l', 'u', 't', 'v', 'v', 'b', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'l', 'u', 't', 'v', 'v', 'b', 'i', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w', 'h', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w',
'h', '_', 'n', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't',
'v', 'w', 'h', '_', 'n', 'm', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w', 'h', '_', 'o', 'r', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w', 'h',
'_', 'o', 'r', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w', 'h', '_', 'o', 'r', 'a', 'c',
'c', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w',
'h', '_', 'o', 'r', 'a', 'c', 'c', 'i', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w', 'h', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'l', 'u', 't', 'v', 'w', 'h', 'i', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'b', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'h', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'u', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'u', 'b', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'u', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'u', 'h', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'a', 'x', 'w', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'b', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'h', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'u', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'u', 'b', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'u', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'u', 'h', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'i', 'n', 'w', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'b', 'u', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'b', 'u', 's', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a',
'b', 'u', 's', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'a', 'b', 'u', 's', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'b', 'u', 's', 'v',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'b', 'u', 's', 'v',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'a', 'b', 'u', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a',
'b', 'u', 'u', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'a', 'b', 'u', 'u', '_', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'a', 'b', 'u', 'u', '_', 'a', 'c', 'c', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a',
'b', 'u', 'u', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a',
'b', 'u', 'u', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 'a', 'h', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'a', 'h', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'a', 'h', 'b', '_', 'a', 'c', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'h', 'b', '_', 'a', 'c', 'c', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a',
'h', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'a', 'h', 'h', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'a', 'u', 'h', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'a', 'u', 'h', 'b', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'u', 'h', 'b', '_', 'a',
'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'u', 'h',
'b', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'a', 'u', 'h', 'u', 'h', 's', 'a', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'a', 'u', 'h', 'u', 'h', 's', 'a',
't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 's', 'u', 'h', 'u', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 's', 'u', 'h', 'u', 'h', 's', 'a', 't', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'b', 'u',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'b', 'u', 's',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'y', 'b', 'u', 's', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'b', 'u', 's', '_', 'a', 'c', 'c', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'b', 'u', 's',
'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'b', 'u', 's',
'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 'y', 'b', 'u', 's', 'v', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'y', 'b', 'u', 's', 'v', '_', 'a', 'c', 'c', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y',
'b', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'b', 'v',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'y', 'b', 'v', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'b', 'v', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'e', 'w', 'u', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'e', 'w', 'u', 'h', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y',
'e', 'w', 'u', 'h', '_', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'e', 'w', 'u', 'h', '_', '6', '4', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', '_', 'a', 'c', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', '_', 'a', 'c',
'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 'y', 'h', 's', 'a', 't', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'y', 'h', 's', 'a', 't', '_', 'a', 'c', 'c', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y',
'h', 's', 'r', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y',
'h', 's', 'r', 's', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 'y', 'h', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'h', 's', 's', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', 'u', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'y', 'h', 'u', 's', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', 'u', 's', '_',
'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h',
'u', 's', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'y', 'h', 'v', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 'y', 'h', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', 'v', '_', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'h', 'v', '_', 'a', 'c',
'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 'y', 'h', 'v', 's', 'r', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'h', 'v', 's', 'r', 's', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'e', 'o', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'e', 'o', 'h', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i',
'e', 'w', 'h', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'i', 'e', 'w', 'h', '_', 'a', 'c', 'c', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'e', 'w',
'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'e',
'w', 'u', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'i', 'e', 'w', 'u', 'h', '_', 'a', 'c', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'e', 'w', 'u', 'h', '_',
'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'i', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 'y', 'i', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 'y', 'i', 'h', '_', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'h', '_', 'a', 'c', 'c', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i',
'h', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'h',
'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 'y', 'i', 'h', 'b', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 'y', 'i', 'h', 'b', '_', 'a', 'c', 'c', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'o',
'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'o',
'w', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'i', 'w', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 'y', 'i', 'w', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'y', 'i', 'w', 'b', '_', 'a', 'c', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'w', 'b', '_', 'a', 'c',
'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm',
'p', 'y', 'i', 'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'y', 'i', 'w', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 'y', 'i', 'w', 'h', '_', 'a', 'c', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'w', 'h', '_', 'a', 'c', 'c',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'y', 'i', 'w', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'y', 'i', 'w', 'u', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'y', 'i', 'w', 'u', 'b', '_', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'i', 'w', 'u', 'b', '_',
'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'o', 'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'o', 'w', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'y', 'o', 'w', 'h', '_', '6', '4', '_', 'a',
'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'o', 'w',
'h', '_', '6', '4', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'o', 'w', 'h', '_', 'r', 'n',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'o', 'w', 'h',
'_', 'r', 'n', 'd', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'm', 'p', 'y', 'o', 'w', 'h', '_', 'r', 'n', 'd', '_', 's', 'a',
'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'o', 'w',
'h', '_', 'r', 'n', 'd', '_', 's', 'a', 'c', 'c', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'o', 'w', 'h', '_',
's', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y',
'o', 'w', 'h', '_', 's', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'b', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'b', '_', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'b', '_',
'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'u', 'b', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'u', 'b', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'b', 'v', '_', 'a', 'c', 'c', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'b', 'v', '_', 'a',
'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'y', 'u', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'u', 'h', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'm', 'p', 'y', 'u', 'h', '_', 'a', 'c', 'c', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'h',
'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'h', 'e',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p',
'y', 'u', 'h', 'e', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'm', 'p', 'y', 'u', 'h', 'e', '_', 'a', 'c', 'c', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'h', 'v',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y', 'u', 'h', 'v', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'm', 'p', 'y',
'u', 'h', 'v', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'm', 'p', 'y', 'u', 'h', 'v', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'a', 'v', 'g', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'n', 'a', 'v', 'g', 'b', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'a', 'v', 'g', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'a', 'v', 'g', 'h', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'a', 'v', 'g', 'u',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'a', 'v', 'g', 'u', 'b',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'a',
'v', 'g', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'a', 'v', 'g',
'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n',
'o', 'r', 'm', 'a', 'm', 't', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'n', 'o', 'r', 'm', 'a', 'm', 't', 'h', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'n', 'o', 'r', 'm', 'a', 'm', 't', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'o', 'r', 'm', 'a', 'm', 't', 'w',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'o',
't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'n', 'o', 't', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'o', 'r', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'o', 'r', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'e', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'e', 'b', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'e', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'e', 'h', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k',
'h', 'b', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p',
'a', 'c', 'k', 'h', 'b', '_', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'h', 'u', 'b', '_',
's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k',
'h', 'u', 'b', '_', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'o', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'o', 'b', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'o', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'o', 'h', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k',
'w', 'h', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p',
'a', 'c', 'k', 'w', 'h', '_', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k', 'w', 'u', 'h', '_',
's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'a', 'c', 'k',
'w', 'u', 'h', '_', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'p', 'o', 'p', 'c', 'o', 'u', 'n', 't', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'p', 'o', 'p', 'c', 'o', 'u', 'n', 't',
'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r',
'd', 'e', 'l', 't', 'a', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'd',
'e', 'l', 't', 'a', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 'b', '_', 'r', 't', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 'b', '_', 'r',
't', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'r', 'm', 'p', 'y', 'b', 'u', 'b', '_', 'r', 't', 't', '_', 'a', 'c', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 'b',
'_', 'r', 't', 't', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 's', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y',
'b', 'u', 's', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'r', 'm', 'p', 'y', 'b', 'u', 's', '_', 'a', 'c', 'c', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'u',
's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b',
'u', 's', 'i', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'r', 'm', 'p', 'y', 'b', 'u', 's', 'i', '_', 'a', 'c', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 's', 'i', '_',
'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'r', 'm', 'p', 'y', 'b', 'u', 's', 'v', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 's', 'v', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'u', 's',
'v', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm',
'p', 'y', 'b', 'u', 's', 'v', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'v', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'b', 'v', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y',
'b', 'v', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r',
'm', 'p', 'y', 'b', 'v', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u',
'b', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm',
'p', 'y', 'u', 'b', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b', '_', 'r', 't',
't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b',
'_', 'r', 't', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'r', 'm', 'p', 'y', 'u', 'b', '_', 'r', 't', 't', '_', 'a', 'c',
'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b',
'_', 'r', 't', 't', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b', 'i', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y',
'u', 'b', 'i', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'r', 'm', 'p', 'y', 'u', 'b', 'i', '_', 'a', 'c', 'c', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b',
'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b',
'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r',
'm', 'p', 'y', 'u', 'b', 'v', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'r', 'm', 'p', 'y', 'u', 'b', 'v', '_', 'a', 'c', 'c', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 'r', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 't', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'r', 'o', 't', 'r', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 'u', 'n', 'd', 'h', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 'u', 'n', 'd', 'h', 'b',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o',
'u', 'n', 'd', 'h', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r',
'o', 'u', 'n', 'd', 'h', 'u', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'r', 'o', 'u', 'n', 'd', 'u', 'h', 'u', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 'u', 'n', 'd', 'u', 'h', 'u',
'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r',
'o', 'u', 'n', 'd', 'u', 'w', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'r', 'o', 'u', 'n', 'd', 'u', 'w', 'u', 'h', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 'u', 'n', 'd', 'w', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o', 'u', 'n', 'd', 'w', 'h',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 'o',
'u', 'n', 'd', 'w', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r',
'o', 'u', 'n', 'd', 'w', 'u', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'r', 's', 'a', 'd', 'u', 'b', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 'r', 's', 'a', 'd', 'u', 'b', 'i', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r', 's', 'a', 'd', 'u',
'b', 'i', '_', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'r',
's', 'a', 'd', 'u', 'b', 'i', '_', 'a', 'c', 'c', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'a', 't', 'd', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 's', 'a', 't', 'd', 'w', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'a', 't', 'h', 'u', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'a', 't', 'h', 'u', 'b', '_',
'1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'a', 't',
'u', 'w', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'a', 't',
'u', 'w', 'u', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 's', 'a', 't', 'w', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
's', 'a', 't', 'w', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'b',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c',
'a', 't', 't', 'e', 'r', 'm', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
's', 'c', 'a', 't', 't', 'e', 'r', 'm', 'h', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c', 'a', 't', 't', 'e', 'r', 'm',
'h', '_', 'a', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c',
'a', 't', 't', 'e', 'r', 'm', 'h', '_', 'a', 'd', 'd', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c', 'a', 't', 't', 'e',
'r', 'm', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c', 'a',
't', 't', 'e', 'r', 'm', 'h', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 's', 'c', 'a', 't', 't', 'e', 'r', 'm', 'h', 'w',
'_', 'a', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c', 'a',
't', 't', 'e', 'r', 'm', 'h', 'w', '_', 'a', 'd', 'd', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c', 'a', 't', 't', 'e',
'r', 'm', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c', 'a', 't',
't', 'e', 'r', 'm', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'c', 'a', 't', 't', 'e', 'r', 'm', 'w', '_', 'a', 'd',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'c', 'a', 't', 't', 'e',
'r', 'm', 'w', '_', 'a', 'd', 'd', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 's', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
's', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
's', 'h', 'u', 'f', 'e', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's',
'h', 'u', 'f', 'e', 'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'h', 'u', 'f', 'f', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 's', 'h', 'u', 'f', 'f', 'b', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f', 'f', 'e', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f', 'f', 'e', 'b', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f',
'f', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f', 'f',
'h', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's',
'h', 'u', 'f', 'f', 'o', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's',
'h', 'u', 'f', 'f', 'o', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 's', 'h', 'u', 'f', 'f', 'v', 'd', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f', 'f', 'v', 'd', 'd', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f',
'o', 'e', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f',
'o', 'e', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 's', 'h', 'u', 'f', 'o', 'e', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 's', 'h', 'u', 'f', 'o', 'e', 'h', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f', 'o', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 's', 'h', 'u', 'f', 'o', 'h', '_', '1', '2', '8',
'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'b', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'b', '_', 'd', 'v',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'b', '_', 'd', 'v',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u',
'b', 'b', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u',
'b', 'b', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'u', 'b', 'b', 's', 'a', 't', '_', 'd', 'v', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'b', 's', 'a', 't', '_', 'd',
'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's',
'u', 'b', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'h',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u',
'b', 'h', '_', 'd', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u',
'b', 'h', '_', 'd', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'u', 'b', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'u', 'b', 'h', 's', 'a', 't', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'h', 's', 'a', 't',
'_', 'd', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'h',
's', 'a', 't', '_', 'd', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 's', 'u', 'b', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 's', 'u', 'b', 'h', 'w', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'b', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'b', 'h', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'b', 's', 'a',
't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'b', 's',
'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
's', 'u', 'b', 'u', 'b', 's', 'a', 't', '_', 'd', 'v', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'b', 's', 'a', 't', '_', 'd', 'v',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u',
'b', 'u', 'b', 'u', 'b', 'b', '_', 's', 'a', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'u', 'b', 'u', 'b', 'u', 'b', 'b', '_', 's', 'a', 't',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u',
'b', 'u', 'h', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's',
'u', 'b', 'u', 'h', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'h', 's', 'a', 't', '_', 'd',
'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'h', 's',
'a', 't', '_', 'd', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 's', 'u', 'b', 'u', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 's', 'u', 'b', 'u', 'h', 'w', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'w', 's', 'a', 't', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'u', 'w', 's', 'a', 't',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u',
'b', 'u', 'w', 's', 'a', 't', '_', 'd', 'v', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 's', 'u', 'b', 'u', 'w', 's', 'a', 't', '_', 'd', 'v', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'w', '_', '1', '2',
'8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'w', '_',
'd', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'w', '_',
'd', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
's', 'u', 'b', 'w', 's', 'a', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
's', 'u', 'b', 'w', 's', 'a', 't', '_', '1', '2', '8', 'B', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 's', 'u', 'b', 'w', 's', 'a', 't', '_', 'd', 'v',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 's', 'u', 'b', 'w', 's', 'a', 't',
'_', 'd', 'v', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 't', 'm', 'p', 'y', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 't',
'm', 'p', 'y', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 't', 'm', 'p', 'y', 'b', '_', 'a', 'c', 'c', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_',
'V', '6', '_', 'v', 't', 'm', 'p', 'y', 'b', '_', 'a', 'c', 'c', '_', '1',
'2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 't', 'm', 'p', 'y',
'b', 'u', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 't', 'm', 'p', 'y',
'b', 'u', 's', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 't', 'm', 'p', 'y', 'b', 'u', 's', '_', 'a', 'c', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 't', 'm', 'p', 'y', 'b', 'u', 's', '_', 'a', 'c',
'c', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 't',
'm', 'p', 'y', 'h', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 't', 'm',
'p', 'y', 'h', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 't', 'm', 'p', 'y', 'h', 'b', '_', 'a', 'c', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N',
'_', 'V', '6', '_', 'v', 't', 'm', 'p', 'y', 'h', 'b', '_', 'a', 'c', 'c',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'u', 'n',
'p', 'a', 'c', 'k', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'u', 'n',
'p', 'a', 'c', 'k', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'u', 'n', 'p', 'a', 'c', 'k', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'u', 'n', 'p', 'a', 'c', 'k', 'h', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'u', 'n', 'p', 'a', 'c', 'k', 'o',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X',
'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'u', 'n', 'p', 'a', 'c', 'k',
'o', 'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'u', 'n', 'p', 'a', 'c', 'k', 'o', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_',
'v', 'u', 'n', 'p', 'a', 'c', 'k', 'o', 'h', '_', '1', '2', '8', 'B', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'V', '6', '_', 'v', 'u', 'n', 'p', 'a', 'c', 'k', 'u', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'u', 'n', 'p', 'a', 'c', 'k', 'u',
'b', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'u',
'n', 'p', 'a', 'c', 'k', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v',
'u', 'n', 'p', 'a', 'c', 'k', 'u', 'h', '_', '1', '2', '8', 'B', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'V', '6', '_', 'v', 'x', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6',
'_', 'v', 'x', 'o', 'r', '_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V',
'6', '_', 'v', 'z', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'z', 'b',
'_', '1', '2', '8', 'B', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'H', 'E', 'X', 'A', 'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'z', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'V', '6', '_', 'v', 'z', 'h', '_', '1', '2', '8', 'B',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'Y', '2', '_', 'd', 'c', 'c', 'l', 'e', 'a', 'n', 'a',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'Y', '2', '_', 'd', 'c', 'c', 'l', 'e', 'a', 'n', 'i',
'n', 'v', 'a', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H',
'E', 'X', 'A', 'G', 'O', 'N', '_', 'Y', '2', '_', 'd', 'c', 'f', 'e', 't',
'c', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E',
'X', 'A', 'G', 'O', 'N', '_', 'Y', '2', '_', 'd', 'c', 'i', 'n', 'v', 'a',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'Y', '2', '_', 'd', 'c', 'z', 'e', 'r', 'o', 'a', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G',
'O', 'N', '_', 'Y', '4', '_', 'l', '2', 'f', 'e', 't', 'c', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A', 'G', 'O',
'N', '_', 'Y', '5', '_', 'l', '2', 'f', 'e', 't', 'c', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'c', 'i', 'r', 'c', '_', 'l', 'd',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'c', 'i', 'r',
'c', '_', 'l', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'c', 'i', 'r', 'c', '_', 'l', 'd', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'c', 'i', 'r', 'c', '_', 'l', 'd', 'u', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'c', 'i', 'r', 'c', '_',
'l', 'd', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'c', 'i', 'r', 'c', '_', 'l', 'd', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'c', 'i', 'r', 'c', '_', 's', 't', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'c', 'i', 'r', 'c', '_', 's', 't',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'c', 'i', 'r',
'c', '_', 's', 't', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'c', 'i', 'r', 'c', '_', 's', 't', 'h', 'h', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'c', 'i', 'r', 'c', '_', 's', 't', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'H', 'E', 'X', 'A',
'G', 'O', 'N', '_', 'p', 'r', 'e', 'f', 'e', 't', 'c', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'h', 'e', 'x', 'a', 'g', 'o', 'n',
'_', 'v', 'm', 'e', 'm', 'c', 'p', 'y', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'h', 'e', 'x', 'a', 'g', 'o', 'n', '_', 'v', 'm', 'e',
'm', 's', 'e', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'a', 'b', 's', 'q', '_', 's', '_', 'p', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'a', 'b', 's', 'q', '_', 's', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'b', 's', 'q', '_',
's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'a', 'd', 'd', '_', 'a', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', '_', 'a',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'a', 'd', 'd', '_', 'a', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', '_', 'a', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p',
's', '_', 'a', 'd', 'd', 'q', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'd', 'd', 'q', '_',
's', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'a', 'd', 'd', 'q', '_', 's', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a',
'd', 'd', 'q', 'h', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'd', 'd', 'q', 'h', '_', 'r',
'_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 'a', 'd', 'd', 'q', 'h', '_', 'r', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a',
'd', 'd', 'q', 'h', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 's', '_', 'a', '_', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a',
'd', 'd', 's', '_', 'a', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 's', '_', 'a', '_', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'a', 'd', 'd', 's', '_', 'a', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 's', '_', 's', '_',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'a', 'd', 'd', 's', '_', 's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 's', '_', 's',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'a', 'd', 'd', 's', '_', 's', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 's', '_',
'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'a', 'd', 'd', 's', '_', 'u', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 's',
'_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'a', 'd', 'd', 's', '_', 'u', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'd',
'd', 's', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 'a', 'd', 'd', 'u', '_', 'p', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'd', 'd',
'u', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'a', 'd', 'd', 'u', '_', 's', '_', 'p', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'a', 'd', 'd', 'u', '_', 's', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'd', 'd', 'u', 'h',
'_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 'a', 'd', 'd', 'u', 'h', '_', 'r', '_', 'q', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a',
'd', 'd', 'v', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'a', 'd', 'd', 'v', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 'v',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'a', 'd', 'd', 'v', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 'v', 'i', '_', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'a', 'd', 'd', 'v', 'i', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'd', 'd', 'v', 'i', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a',
'd', 'd', 'v', 'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'd', 'd', 'w', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'n', 'd',
'_', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'a', 'n', 'd', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'a', 'p', 'p', 'e', 'n', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'a', 's', 'u', 'b', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 's', 'u', 'b', '_', 's', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'a', 's', 'u', 'b', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 's', 'u', 'b', '_', 's',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'a', 's', 'u', 'b', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 's', 'u', 'b', '_',
'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'a', 's', 'u', 'b', '_', 'u', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 's', 'u', 'b',
'_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'a', 'v', 'e', '_', 's', '_', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', '_',
's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'a', 'v', 'e', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', '_', 's',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'a', 'v', 'e', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', '_', 'u', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'a', 'v', 'e', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', '_', 'u', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'a', 'v', 'e', 'r', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', 'r', '_', 's', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'a', 'v', 'e', 'r', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', 'r', '_', 's',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'a', 'v', 'e', 'r', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', 'r', '_',
'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'a', 'v', 'e', 'r', '_', 'u', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'a', 'v', 'e', 'r',
'_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'b', 'a', 'l', 'i', 'g', 'n', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'c', 'l', 'r',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'b', 'c', 'l', 'r', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'c', 'l', 'r', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b',
'c', 'l', 'r', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'b', 'c', 'l', 'r', 'i', '_', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'c', 'l',
'r', 'i', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'b', 'c', 'l', 'r', 'i', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'c', 'l', 'r',
'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'b', 'i', 'n', 's', 'l', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'l',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'b', 'i', 'n', 's', 'l', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'l', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'b', 'i', 'n', 's', 'l', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'l', 'i',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'b', 'i', 'n', 's', 'l', 'i', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'l',
'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'b', 'i', 'n', 's', 'r', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'r',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'b', 'i', 'n', 's', 'r', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'r', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'b', 'i', 'n', 's', 'r', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'r', 'i',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'b', 'i', 'n', 's', 'r', 'i', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'i', 'n', 's', 'r',
'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 'b', 'i', 't', 'r', 'e', 'v', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'm', 'n', 'z', '_',
'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'b', 'm', 'n', 'z', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'm', 'z', '_', 'v', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'm',
'z', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'b', 'n', 'e', 'g', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'n', 'e', 'g', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'b', 'n', 'e', 'g', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'n', 'e', 'g', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'n',
'e', 'g', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'b', 'n', 'e', 'g', 'i', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'n', 'e',
'g', 'i', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'b', 'n', 'e', 'g', 'i', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'n', 'z', '_',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'b', 'n', 'z', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'b', 'n', 'z', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'n', 'z', '_',
'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'b', 'n', 'z', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 'i', 'p', 's', '_', 'b', 'p', 'o', 's', 'g', 'e', '3', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'b', 's', 'e', 'l', '_', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'b', 's', 'e', 'l', 'i', '_', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 's',
'e', 't', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'b', 's', 'e', 't', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 's', 'e', 't', '_',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'b', 's', 'e', 't', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'b', 's', 'e', 't', 'i', '_', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b',
's', 'e', 't', 'i', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'b', 's', 'e', 't', 'i', '_', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 's',
'e', 't', 'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'b', 'z', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'z', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'b', 'z',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'b', 'z', '_', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'b', 'z', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'e', 'q', '_', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'c', 'e', 'q', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'c', 'e', 'q', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'e', 'q', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'c', 'e', 'q', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'c', 'e', 'q', 'i', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'e', 'q',
'i', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'c', 'e', 'q', 'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'f', 'c', 'm', 's', 'a',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'c', 'l', 'e', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 'e', '_', 's', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c',
'l', 'e', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'c', 'l', 'e', '_', 's', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l',
'e', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'c', 'l', 'e', '_', 'u', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 'e',
'_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'c', 'l', 'e', '_', 'u', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 'e', 'i',
'_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'c', 'l', 'e', 'i', '_', 's', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 'e',
'i', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'c', 'l', 'e', 'i', '_', 's', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l',
'e', 'i', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'c', 'l', 'e', 'i', '_', 'u', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c',
'l', 'e', 'i', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 'e', 'i', '_', 'u', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'c', 'l', 't', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 't', '_', 's', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c',
'l', 't', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'c', 'l', 't', '_', 's', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l',
't', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'c', 'l', 't', '_', 'u', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 't',
'_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'c', 'l', 't', '_', 'u', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 't', 'i',
'_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'c', 'l', 't', 'i', '_', 's', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 't',
'i', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'c', 'l', 't', 'i', '_', 's', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l',
't', 'i', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'c', 'l', 't', 'i', '_', 'u', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c',
'l', 't', 'i', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'l', 't', 'i', '_', 'u', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'c', 'm', 'p', '_', 'e', 'q', '_', 'p', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'c', 'm', 'p', '_',
'l', 'e', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 'i', 'p', 's', '_', 'c', 'm', 'p', '_', 'l', 't', '_', 'p', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'c', 'm', 'p', 'g', 'd', 'u', '_', 'e', 'q', '_', 'q', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'c',
'm', 'p', 'g', 'd', 'u', '_', 'l', 'e', '_', 'q', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'c', 'm', 'p',
'g', 'd', 'u', '_', 'l', 't', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'c', 'm', 'p', 'g', 'u',
'_', 'e', 'q', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 'i', 'p', 's', '_', 'c', 'm', 'p', 'g', 'u', '_', 'l', 'e',
'_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 'c', 'm', 'p', 'g', 'u', '_', 'l', 't', '_', 'q', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'c', 'm', 'p', 'u', '_', 'e', 'q', '_', 'q', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'c', 'm', 'p',
'u', '_', 'l', 'e', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'c', 'm', 'p', 'u', '_', 'l', 't',
'_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'c', 'o', 'p', 'y', '_', 's', '_', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'o', 'p', 'y',
'_', 's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'c', 'o', 'p', 'y', '_', 's', '_', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'o', 'p',
'y', '_', 's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'c', 'o', 'p', 'y', '_', 'u', '_', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c', 'o',
'p', 'y', '_', 'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'c', 'o', 'p', 'y', '_', 'u', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'c',
'o', 'p', 'y', '_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'c', 't', 'c', 'm', 's', 'a', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'i',
'v', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'd', 'i', 'v', '_', 's', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'i', 'v',
'_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'd', 'i', 'v', '_', 's', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'i', 'v', '_',
'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'd', 'i', 'v', '_', 'u', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'i', 'v', '_', 'u',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'd', 'i', 'v', '_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd', 'l', 's', 'a', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd',
'o', 't', 'p', '_', 's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'o', 't', 'p', '_', 's', '_', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'd', 'o', 't', 'p', '_', 's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'o', 't', 'p', '_', 'u', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'd', 'o', 't', 'p', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'o', 't', 'p', '_', 'u',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i',
'p', 's', '_', 'd', 'p', 'a', '_', 'w', '_', 'p', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'p', 'a', 'd',
'd', '_', 's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'd', 'p', 'a', 'd', 'd', '_', 's', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd',
'p', 'a', 'd', 'd', '_', 's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'p', 'a', 'd', 'd', '_', 'u',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'd', 'p', 'a', 'd', 'd', '_', 'u', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'p', 'a', 'd',
'd', '_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 'i', 'p', 's', '_', 'd', 'p', 'a', 'q', '_', 's', '_', 'w', '_',
'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i',
'p', 's', '_', 'd', 'p', 'a', 'q', '_', 's', 'a', '_', 'l', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'd', 'p', 'a', 'q', 'x', '_', 's', '_', 'w', '_', 'p', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd', 'p',
'a', 'q', 'x', '_', 's', 'a', '_', 'w', '_', 'p', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd', 'p', 'a',
'u', '_', 'h', '_', 'q', 'b', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd', 'p', 'a', 'u', '_', 'h', '_',
'q', 'b', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 'd', 'p', 'a', 'x', '_', 'w', '_', 'p', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd',
'p', 's', '_', 'w', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd', 'p', 's', 'q', '_', 's', '_',
'w', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'd', 'p', 's', 'q', '_', 's', 'a', '_', 'l', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p',
's', '_', 'd', 'p', 's', 'q', 'x', '_', 's', '_', 'w', '_', 'p', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'd', 'p', 's', 'q', 'x', '_', 's', 'a', '_', 'w', '_', 'p', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd',
'p', 's', 'u', '_', 'h', '_', 'q', 'b', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'd', 'p', 's', 'u', '_',
'h', '_', 'q', 'b', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'd', 'p', 's', 'u', 'b', '_', 's', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd',
'p', 's', 'u', 'b', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'p', 's', 'u', 'b', '_', 's',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'd', 'p', 's', 'u', 'b', '_', 'u', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'd', 'p', 's', 'u',
'b', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'd', 'p', 's', 'u', 'b', '_', 'u', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'd', 'p', 's', 'x', '_', 'w', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'e', 'x', 't', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'e', 'x', 't', 'p', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 'i', 'p', 's', '_', 'e', 'x', 't', 'r', '_', 'r', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'e', 'x', 't', 'r', '_', 'r', 's', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'e', 'x', 't', 'r',
'_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'e', 'x', 't', 'r', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'a', 'd', 'd',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 'a', 'd', 'd', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'a', 'f', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'c', 'a', 'f', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 'c', 'e', 'q', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'e', 'q',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 'c', 'l', 'a', 's', 's', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'l', 'a', 's',
's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 'c', 'l', 'e', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'l', 'e', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'f', 'c', 'l', 't', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'l', 't', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'n',
'e', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 'c', 'n', 'e', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'o', 'r', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'f', 'c', 'o', 'r', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'u', 'e', 'q', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c',
'u', 'e', 'q', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 'c', 'u', 'l', 'e', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'u',
'l', 'e', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 'c', 'u', 'l', 't', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'u', 'l',
't', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 'c', 'u', 'n', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'u', 'n', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'f', 'c', 'u', 'n', 'e', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'c', 'u', 'n', 'e', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'd', 'i', 'v', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 'd', 'i', 'v', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'e', 'x', 'd',
'o', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 'e', 'x', 'd', 'o', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'e', 'x', 'p', '2',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 'e', 'x', 'p', '2', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'e', 'x', 'u', 'p', 'l',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 'e', 'x', 'u', 'p', 'l', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'e', 'x', 'u', 'p',
'r', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 'e', 'x', 'u', 'p', 'r', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'f', 'i', 'n',
't', '_', 's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 'f', 'i', 'n', 't', '_', 's', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'f', 'i', 'n', 't', '_', 'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'f', 'i', 'n', 't', '_', 'u',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 'f', 'q', 'l', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'f', 'q', 'l', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'f', 'q', 'r', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 'f', 'q', 'r', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'i', 'l', 'l',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 'i', 'l', 'l', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'i', 'l', 'l', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'i', 'l', 'l', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 'l', 'o', 'g', '2', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'l', 'o',
'g', '2', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 'm', 'a', 'd', 'd', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'm', 'a', 'd',
'd', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 'm', 'a', 'x', '_', 'a', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'm', 'a', 'x',
'_', 'a', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 'm', 'a', 'x', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'm', 'a', 'x', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'f', 'm', 'i', 'n', '_', 'a', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'm', 'i', 'n', '_', 'a',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 'm', 'i', 'n', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'm', 'i', 'n', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'm', 's', 'u', 'b', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'f', 'm', 's', 'u', 'b', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'm',
'u', 'l', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 'm', 'u', 'l', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'r', 'c', 'p', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'f', 'r', 'c', 'p', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'f', 'r', 'i', 'n', 't', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'r', 'i', 'n', 't', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'f', 'r', 's', 'q', 'r', 't', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
'r', 's', 'q', 'r', 't', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'a', 'f', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's',
'a', 'f', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 's', 'e', 'q', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'e', 'q', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'f', 's', 'l', 'e', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'l', 'e', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's',
'l', 't', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 's', 'l', 't', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'n', 'e', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'f', 's', 'n', 'e', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'o', 'r', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's',
'o', 'r', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 's', 'q', 'r', 't', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'q', 'r',
't', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 's', 'u', 'b', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'u', 'b', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'f', 's', 'u', 'e', 'q', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'u', 'e', 'q', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
's', 'u', 'l', 'e', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'f', 's', 'u', 'l', 'e', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's',
'u', 'l', 't', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 's', 'u', 'l', 't', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'u',
'n', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'f', 's', 'u', 'n', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 's', 'u', 'n', 'e', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'f', 's', 'u', 'n', 'e', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 't', 'i', 'n', 't', '_', 's',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'f', 't', 'i', 'n', 't', '_', 's', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 't', 'i', 'n',
't', '_', 'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'f', 't', 'i', 'n', 't', '_', 'u', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
't', 'q', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 't', 'q', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 't', 'r', 'u', 'n', 'c',
'_', 's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'f', 't', 'r', 'u', 'n', 'c', '_', 's', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f',
't', 'r', 'u', 'n', 'c', '_', 'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'f', 't', 'r', 'u', 'n', 'c',
'_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'h', 'a', 'd', 'd', '_', 's', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'h', 'a', 'd',
'd', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'h', 'a', 'd', 'd', '_', 's', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'h', 'a',
'd', 'd', '_', 'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'h', 'a', 'd', 'd', '_', 'u', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'h',
'a', 'd', 'd', '_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'h', 's', 'u', 'b', '_', 's', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'h', 's', 'u', 'b', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'h', 's', 'u', 'b', '_', 's', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'h', 's', 'u', 'b', '_', 'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'h', 's', 'u', 'b', '_', 'u',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'h', 's', 'u', 'b', '_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'e', 'v',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'i', 'l', 'v', 'e', 'v', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'e', 'v', '_',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'i', 'l', 'v', 'e', 'v', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'l', '_', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i',
'l', 'v', 'l', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'l', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'l',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'i', 'l', 'v', 'o', 'd', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'o', 'd', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'i', 'l', 'v', 'o', 'd', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'o', 'd', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'i', 'l', 'v', 'r', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v', 'r', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'l', 'v',
'r', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'i', 'l', 'v', 'r', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'n', 's', 'e', 'r', 't',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'i', 'n', 's', 'e', 'r', 't', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'n', 's', 'e', 'r',
't', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'i', 'n', 's', 'e', 'r', 't', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'i', 'n', 's',
'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'i', 'n', 's', 'v', 'e', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'n', 's', 'v', 'e', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'i', 'n', 's', 'v', 'e', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'i', 'n', 's', 'v', 'e', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'l', 'b', 'u', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'l', 'd', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'l', 'd', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'l', 'd', '_',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'l', 'd', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'l', 'd', 'i', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'l', 'd', 'i', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'l', 'd', 'i', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'l', 'd', 'i', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'l', 'd', 'r', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'l', 'd', 'r', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 'i', 'p', 's', '_', 'l', 'h', 'x', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'l', 's', 'a', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'l',
'w', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i',
'p', 's', '_', 'm', 'a', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'd', 'd', '_', 'q', '_', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 'a', 'd', 'd', '_', 'q', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'd', 'd', 'r', '_', 'q',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'm', 'a', 'd', 'd', 'r', '_', 'q', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'a', 'd',
'd', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'm', 'a', 'd', 'd', 'v', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'd', 'd', 'v', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 'a', 'd', 'd', 'v', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'd', 'd', 'v', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'm', 'a', 'q', '_', 's', '_', 'w', '_', 'p', 'h', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'a',
'q', '_', 's', '_', 'w', '_', 'p', 'h', 'r', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'a', 'q', '_', 's',
'a', '_', 'w', '_', 'p', 'h', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'a', 'q', '_', 's', 'a', '_',
'w', '_', 'p', 'h', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'm', 'a', 'x', '_', 'a', '_', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x',
'_', 'a', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'm', 'a', 'x', '_', 'a', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', '_',
'a', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'm', 'a', 'x', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', '_', 's',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'm', 'a', 'x', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', '_', 's', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 'a', 'x', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', '_', 'u', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 'a', 'x', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', '_', 'u', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm',
'a', 'x', 'i', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', 'i', '_', 's', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 'a', 'x', 'i', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', 'i', '_', 's', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 'a', 'x', 'i', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', 'i', '_', 'u',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'm', 'a', 'x', 'i', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'a', 'x', 'i', '_',
'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'm', 'i', 'n', '_', 'a', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', '_', 'a',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'm', 'i', 'n', '_', 'a', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', '_', 'a', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 'i', 'n', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', '_', 's', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 'i', 'n', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', '_', 's', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm',
'i', 'n', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', '_', 'u', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i',
'n', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'm', 'i', 'n', '_', 'u', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n',
'i', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'm', 'i', 'n', 'i', '_', 's', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i',
'n', 'i', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', 'i', '_', 's', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm',
'i', 'n', 'i', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', 'i', '_', 'u', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 'i', 'n', 'i', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'i', 'n', 'i', '_', 'u', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 'o', 'd', '_', 's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'o', 'd', '_', 's', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 'o', 'd', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'o', 'd', '_', 's', '_', 'w', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm',
'o', 'd', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'm', 'o', 'd', '_', 'u', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'o',
'd', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'm', 'o', 'd', '_', 'u', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'o',
'd', 's', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'm', 'o', 'v', 'e', '_', 'v', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 's', 'u', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 's', 'u', 'b', '_', 'q', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 's', 'u', 'b', '_', 'q', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 's', 'u', 'b', 'r', '_', 'q', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 's', 'u', 'b', 'r',
'_', 'q', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'm', 's', 'u', 'b', 'u', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 's', 'u', 'b', 'v',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'm', 's', 'u', 'b', 'v', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 's', 'u', 'b', 'v', '_',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 's', 'u', 'b', 'v', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 't', 'h', 'l', 'i', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'm', 'u', 'l', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'u', 'l', '_', 'q', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm',
'u', 'l', '_', 'q', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'u', 'l', '_', 's', '_', 'p', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'm', 'u', 'l', 'e', 'q', '_', 's', '_', 'w', '_', 'p', 'h', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'm', 'u', 'l', 'e', 'q', '_', 's', '_', 'w', '_', 'p', 'h', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm',
'u', 'l', 'e', 'u', '_', 's', '_', 'p', 'h', '_', 'q', 'b', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm',
'u', 'l', 'e', 'u', '_', 's', '_', 'p', 'h', '_', 'q', 'b', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm',
'u', 'l', 'q', '_', 'r', 's', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'u', 'l', 'q', '_',
'r', 's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'm', 'u', 'l', 'q', '_', 's', '_', 'p', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'm', 'u', 'l', 'q', '_', 's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'u', 'l', 'r', '_', 'q', '_',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'm', 'u', 'l', 'r', '_', 'q', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'u', 'l', 's', 'a',
'_', 'w', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 'i', 'p', 's', '_', 'm', 'u', 'l', 's', 'a', 'q', '_', 's', '_',
'w', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'm', 'u', 'l', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'm', 'u', 'l', 't', 'u',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'm', 'u', 'l', 'v', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'm', 'u', 'l', 'v', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'm', 'u', 'l',
'v', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'm', 'u', 'l', 'v', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'n', 'l', 'o', 'c', '_', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'n', 'l', 'o', 'c', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'n', 'l', 'o', 'c', '_', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'n', 'l', 'o',
'c', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'n', 'l', 'z', 'c', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'n', 'l', 'z', 'c', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
'n', 'l', 'z', 'c', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'n', 'l', 'z', 'c', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'n', 'o', 'r',
'_', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'n', 'o', 'r', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'o', 'r', '_', 'v', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'o', 'r', 'i',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i',
'p', 's', '_', 'p', 'a', 'c', 'k', 'r', 'l', '_', 'p', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'p', 'c', 'k',
'e', 'v', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 'p', 'c', 'k', 'e', 'v', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'p', 'c', 'k', 'e',
'v', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'p', 'c', 'k', 'e', 'v', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'p', 'c', 'k', 'o', 'd',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 'p', 'c', 'k', 'o', 'd', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'p', 'c', 'k', 'o', 'd', '_',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 'p', 'c', 'k', 'o', 'd', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 'p', 'c', 'n', 't', '_', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'p',
'c', 'n', 't', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 'p', 'c', 'n', 't', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'p', 'c', 'n', 't',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i',
'p', 's', '_', 'p', 'i', 'c', 'k', '_', 'p', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p', 'i', 'c', 'k',
'_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 'p', 'r', 'e', 'c', 'e', 'q', '_', 'w', '_', 'p', 'h',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p',
's', '_', 'p', 'r', 'e', 'c', 'e', 'q', '_', 'w', '_', 'p', 'h', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'p', 'r', 'e', 'c', 'e', 'q', 'u', '_', 'p', 'h', '_', 'q', 'b', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'p', 'r', 'e', 'c', 'e', 'q', 'u', '_', 'p', 'h', '_', 'q', 'b', 'l', 'a',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'p', 'r', 'e', 'c', 'e', 'q', 'u', '_', 'p', 'h', '_', 'q', 'b', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'p', 'r', 'e', 'c', 'e', 'q', 'u', '_', 'p', 'h', '_', 'q', 'b', 'r',
'a', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p',
's', '_', 'p', 'r', 'e', 'c', 'e', 'u', '_', 'p', 'h', '_', 'q', 'b', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'p', 'r', 'e', 'c', 'e', 'u', '_', 'p', 'h', '_', 'q', 'b', 'l', 'a',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'p', 'r', 'e', 'c', 'e', 'u', '_', 'p', 'h', '_', 'q', 'b', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'p', 'r', 'e', 'c', 'e', 'u', '_', 'p', 'h', '_', 'q', 'b', 'r', 'a', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
'p', 'r', 'e', 'c', 'r', '_', 'q', 'b', '_', 'p', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p', 'r', 'e',
'c', 'r', '_', 's', 'r', 'a', '_', 'p', 'h', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p', 'r', 'e',
'c', 'r', '_', 's', 'r', 'a', '_', 'r', '_', 'p', 'h', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p',
'r', 'e', 'c', 'r', 'q', '_', 'p', 'h', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p', 'r', 'e', 'c',
'r', 'q', '_', 'q', 'b', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p', 'r', 'e', 'c', 'r', 'q',
'_', 'r', 's', '_', 'p', 'h', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p', 'r', 'e', 'c', 'r', 'q',
'u', '_', 's', '_', 'q', 'b', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'p', 'r', 'e', 'p', 'e',
'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i',
'p', 's', '_', 'r', 'a', 'd', 'd', 'u', '_', 'w', '_', 'q', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'r',
'd', 'd', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 'r', 'e', 'p', 'l', '_', 'p', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 'r', 'e',
'p', 'l', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 's', 'a', 't', '_', 's', '_', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'a', 't',
'_', 's', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 's', 'a', 't', '_', 's', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'a', 't', '_',
's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'a', 't', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'a', 't', '_', 'u',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'a', 't', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'a', 't', '_', 'u', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 's', 'h', 'f', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 's', 'h', 'f', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'h', 'f', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p',
's', '_', 's', 'h', 'i', 'l', 'o', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'h', 'l', 'l', '_', 'p', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 's', 'h', 'l', 'l', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'h', 'l', 'l', '_', 's',
'_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 's', 'h', 'l', 'l', '_', 's', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'h',
'r', 'a', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 'i', 'p', 's', '_', 's', 'h', 'r', 'a', '_', 'q', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's',
'h', 'r', 'a', '_', 'r', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'h', 'r', 'a', '_', 'r',
'_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 's', 'h', 'r', 'a', '_', 'r', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'h',
'r', 'l', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 'i', 'p', 's', '_', 's', 'h', 'r', 'l', '_', 'q', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l',
'd', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'l', 'd', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l', 'd', '_', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l',
'd', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'l', 'd', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l', 'd', 'i', '_', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
's', 'l', 'd', 'i', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 's', 'l', 'd', 'i', '_', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l', 'l',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'l', 'l', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l', 'l', '_', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l', 'l',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'l', 'l', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'l', 'l', 'i', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's',
'l', 'l', 'i', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 's', 'l', 'l', 'i', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'p', 'l', 'a',
't', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'p', 'l', 'a', 't', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'p', 'l', 'a', 't',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'p', 'l', 'a', 't', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'p', 'l', 'a', 't', 'i',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'p', 'l', 'a', 't', 'i', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'p', 'l', 'a', 't',
'i', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'p', 'l', 'a', 't', 'i', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', '_',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 's', 'r', 'a', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', '_', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 's', 'r', 'a', 'i', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', 'i', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r',
'a', 'i', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 's', 'r', 'a', 'i', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', 'r', '_',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 's', 'r', 'a', 'r', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', 'r', '_', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r',
'a', 'r', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 's', 'r', 'a', 'r', 'i', '_', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', 'r',
'i', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'r', 'a', 'r', 'i', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'a', 'r', 'i',
'_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'r', 'l', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'l', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'l',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'r', 'l', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'l', 'i', '_', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r',
'l', 'i', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 's', 'r', 'l', 'i', '_', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'l', 'i', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 's', 'r', 'l', 'r', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'l', 'r', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r',
'l', 'r', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 's', 'r', 'l', 'r', '_', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'l', 'r', 'i',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'r', 'l', 'r', 'i', '_', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'r', 'l', 'r', 'i', '_',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 's', 'r', 'l', 'r', 'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 't', '_', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 't', '_',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a',
'_', 's', 't', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 's', 't', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 't', 'r', '_', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's',
't', 'r', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 's', 'u', 'b', 'q', '_', 'p', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'u',
'b', 'q', '_', 's', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'u', 'b', 'q', '_', 's', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p',
's', '_', 's', 'u', 'b', 'q', 'h', '_', 'p', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'u', 'b', 'q',
'h', '_', 'r', '_', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 'i', 'p', 's', '_', 's', 'u', 'b', 'q', 'h', '_', 'r', '_',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p',
's', '_', 's', 'u', 'b', 'q', 'h', '_', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 's', '_', 's',
'_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'u', 'b', 's', '_', 's', '_', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 's', '_',
's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'u', 'b', 's', '_', 's', '_', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 's',
'_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 's', 'a', '_', 's', 'u', 'b', 's', '_', 'u', '_', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b',
's', '_', 'u', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 's', 'u', 'b', 's', '_', 'u', '_', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u',
'b', 's', 'u', 's', '_', 'u', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 's', 'u', 's', '_',
'u', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'u', 'b', 's', 'u', 's', '_', 'u', '_', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u',
'b', 's', 'u', 's', '_', 'u', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 's', 'u', 'u', '_',
's', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 's', 'u', 'b', 's', 'u', 'u', '_', 's', '_', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u',
'b', 's', 'u', 'u', '_', 's', '_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 's', 'u', 'u', '_',
's', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 's', 'u', 'b', 'u', '_', 'p', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'u', 'b',
'u', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'm', 'i', 'p', 's', '_', 's', 'u', 'b', 'u', '_', 's', '_', 'p', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_',
's', 'u', 'b', 'u', '_', 's', '_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's', '_', 's', 'u', 'b', 'u', 'h',
'_', 'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
'i', 'p', 's', '_', 's', 'u', 'b', 'u', 'h', '_', 'r', '_', 'q', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's',
'u', 'b', 'v', '_', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'm', 's', 'a', '_', 's', 'u', 'b', 'v', '_', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 'v',
'_', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's',
'a', '_', 's', 'u', 'b', 'v', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 'v', 'i', '_', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_',
's', 'u', 'b', 'v', 'i', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 's', 'a', '_', 's', 'u', 'b', 'v', 'i', '_', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 's',
'u', 'b', 'v', 'i', '_', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'v', 's', 'h', 'f', '_', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'v', 's', 'h',
'f', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm',
's', 'a', '_', 'v', 's', 'h', 'f', '_', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'v', 's', 'h', 'f', '_', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 'i', 'p', 's',
'_', 'w', 'r', 'd', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'm', 's', 'a', '_', 'x', 'o', 'r', '_', 'v', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'm', 's', 'a', '_', 'x', 'o', 'r', 'i',
'_', 'b', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'a', 'd', 'd', '_', 'r',
'm', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'a', 'd', 'd', '_',
'r', 'm', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'a', 'd', 'd',
'_', 'r', 'm', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'a', 'd', 'd', '_', 'r', 'n', '_', 'd', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'a', 'd', 'd', '_', 'r', 'n', '_', 'f', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'a', 'd', 'd', '_', 'r', 'n', '_', 'f', 't', 'z', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'a', 'd', 'd', '_', 'r', 'p',
'_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'a', 'd', 'd', '_', 'r',
'p', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'a', 'd', 'd', '_',
'r', 'p', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'a', 'd', 'd', '_', 'r', 'z', '_', 'd', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'a', 'd', 'd', '_', 'r', 'z', '_', 'f', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'a', 'd', 'd', '_', 'r', 'z', '_', 'f', 't', 'z', '_', 'f',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'a', 'r', '_', 's', 'y', 'n',
'c', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'a', 'r', '_', 'w', 'a',
'r', 'p', '_', 's', 'y', 'n', 'c', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'b', 'a', 'r', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'a', 'r', '_',
'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'a', 'r', 'r', 'i', 'e',
'r', '_', 's', 'y', 'n', 'c', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b',
'a', 'r', 'r', 'i', 'e', 'r', '_', 's', 'y', 'n', 'c', '_', 'c', 'n', 't',
'\000', '_', '_', 's', 'y', 'n', 'c', 't', 'h', 'r', 'e', 'a', 'd', 's', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'a', 'r', '0', '_', 'a', 'n', 'd',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'a', 'r', '0', '_', 'o', 'r',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'a', 'r', '0', '_', 'p', 'o',
'p', 'c', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'i', 't', 'c', 'a',
's', 't', '_', 'd', '2', 'l', 'l', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'b', 'i', 't', 'c', 'a', 's', 't', '_', 'f', '2', 'i', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'b', 'i', 't', 'c', 'a', 's', 't', '_', 'i', '2', 'f',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'b', 'i', 't', 'c', 'a', 's', 't',
'_', 'l', 'l', '2', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'c', 'e',
'i', 'l', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'c', 'e', 'i',
'l', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'c', 'e', 'i', 'l',
'_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'c',
'o', 's', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'f', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'c', 'o', 's', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_',
'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', '2',
'f', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', '2', 'f',
'_', 'r', 'm', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'f', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd',
'2', 'f', '_', 'r', 'n', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'd', '2', 'f', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'd', '2', 'f', '_', 'r', 'p', '_', 'f', 't', 'z', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'd', '2', 'f', '_', 'r', 'z', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'd', '2', 'f', '_', 'r', 'z', '_', 'f', 't', 'z', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'd', '2', 'i', '_', 'h', 'i', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'd', '2', 'i', '_', 'l', 'o', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'd', '2', 'i', '_', 'r', 'm', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'd', '2', 'i', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'd', '2', 'i', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'd', '2', 'i', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'l', 'l', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'l', 'l', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'l', 'l', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'l', 'l', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'u', 'i', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'u', 'i', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'u', 'i', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'u', 'i', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'd', '2', 'u', 'l', 'l', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'd', '2', 'u', 'l', 'l', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'd', '2', 'u', 'l', 'l', '_', 'r', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'd', '2', 'u', 'l', 'l', '_', 'r', 'z', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'a', 'p',
'p', 'r', 'o', 'x', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'd', 'i', 'v', '_', 'r', 'm', '_', 'd', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'r', 'm', '_', 'f', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'r', 'm', '_', 'f', 't', 'z',
'_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'r',
'n', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', 'i', 'v', '_',
'r', 'n', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', 'i', 'v',
'_', 'r', 'n', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'd', 'i', 'v', '_', 'r', 'p', '_', 'd', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'd', 'i', 'v', '_', 'r', 'p', '_', 'f', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'r', 'p', '_', 'f', 't', 'z', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'r', 'z',
'_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', 'i', 'v', '_', 'r',
'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'd', 'i', 'v', '_',
'r', 'z', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'e', 'x', '2', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'd', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'e', 'x', '2', '_', 'a', 'p', 'p', 'r', 'o',
'x', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'e', 'x', '2', '_',
'a', 'p', 'p', 'r', 'o', 'x', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'f', '2', 'h', '_', 'r', 'n', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'f', '2', 'h', '_', 'r', 'n', '_', 'f', 't', 'z', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'i', '_', 'r', 'm', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'i', '_', 'r', 'm', '_', 'f', 't',
'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'i', '_', 'r', 'n',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'i', '_', 'r', 'n', '_',
'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'i', '_',
'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'i', '_', 'r',
'p', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2',
'i', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'i',
'_', 'r', 'z', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'f', '2', 'l', 'l', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'f', '2', 'l', 'l', '_', 'r', 'm', '_', 'f', 't', 'z', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'f', '2', 'l', 'l', '_', 'r', 'n', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'f', '2', 'l', 'l', '_', 'r', 'n', '_', 'f', 't', 'z',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'l', 'l', '_', 'r', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'l', 'l', '_', 'r', 'p',
'_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'l',
'l', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'l',
'l', '_', 'r', 'z', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'f', '2', 'u', 'i', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'f', '2', 'u', 'i', '_', 'r', 'm', '_', 'f', 't', 'z', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'i', '_', 'r', 'n', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'i', '_', 'r', 'n', '_', 'f', 't',
'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'i', '_', 'r',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'i', '_', 'r',
'p', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2',
'u', 'i', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2',
'u', 'i', '_', 'r', 'z', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'f', '2', 'u', 'l', 'l', '_', 'r', 'm', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'f', '2', 'u', 'l', 'l', '_', 'r', 'm', '_', 'f', 't', 'z',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'l', 'l', '_', 'r',
'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'l', 'l', '_',
'r', 'n', '_', 'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f',
'2', 'u', 'l', 'l', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'f', '2', 'u', 'l', 'l', '_', 'r', 'p', '_', 'f', 't', 'z', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'l', 'l', '_', 'r', 'z', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'f', '2', 'u', 'l', 'l', '_', 'r', 'z', '_',
'f', 't', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'a', 'b', 's',
'_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'a', 'b', 's', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'a', 'b', 's', '_', 'f',
't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'l', 'o',
'o', 'r', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'l', 'o',
'o', 'r', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'l', 'o',
'o', 'r', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'f', 'm', 'a', '_', 'r', 'm', '_', 'd', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'f', 'm', 'a', '_', 'r', 'm', '_', 'f', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'f', 'm', 'a', '_', 'r', 'm', '_', 'f', 't', 'z', '_', 'f',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm', 'a', '_', 'r', 'n', '_',
'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm', 'a', '_', 'r', 'n',
'_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm', 'a', '_', 'r',
'n', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'f', 'm', 'a', '_', 'r', 'p', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'f', 'm', 'a', '_', 'r', 'p', '_', 'f', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'f', 'm', 'a', '_', 'r', 'p', '_', 'f', 't', 'z', '_', 'f', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm', 'a', '_', 'r', 'z', '_', 'd',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm', 'a', '_', 'r', 'z', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm', 'a', '_', 'r', 'z',
'_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f',
'm', 'a', 'x', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm',
'a', 'x', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm', 'a',
'x', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'f', 'm', 'i', 'n', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f',
'm', 'i', 'n', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'f', 'm',
'i', 'n', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'f', 'n', 's', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', '2', 'd',
'_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', '2', 'd', '_',
'r', 'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', '2', 'd', '_', 'r',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', '2', 'd', '_', 'r', 'z',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', '2', 'f', '_', 'r', 'm', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'i', '2', 'f', '_', 'r', 'n', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'i', '2', 'f', '_', 'r', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'i', '2', 'f', '_', 'r', 'z', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'i', 's', 's', 'p', 'a', 'c', 'e', 'p', '_', 'c', 'o',
'n', 's', 't', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', 's', 's', 'p',
'a', 'c', 'e', 'p', '_', 'g', 'l', 'o', 'b', 'a', 'l', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'i', 's', 's', 'p', 'a', 'c', 'e', 'p', '_', 'l', 'o',
'c', 'a', 'l', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', 's', 's', 'p',
'a', 'c', 'e', 'p', '_', 's', 'h', 'a', 'r', 'e', 'd', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'i', 's', 't', 'y', 'p', 'e', 'p', '_', 's', 'a', 'm',
'p', 'l', 'e', 'r', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'i', 's', 't',
'y', 'p', 'e', 'p', '_', 's', 'u', 'r', 'f', 'a', 'c', 'e', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'i', 's', 't', 'y', 'p', 'e', 'p', '_', 't', 'e',
'x', 't', 'u', 'r', 'e', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'l', 'g',
'2', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'd', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'l', 'g', '2', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'f',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'l', 'g', '2', '_', 'a', 'p', 'p',
'r', 'o', 'x', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'd', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'd', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'd', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'd', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'f', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'f', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'f', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'l', '2', 'f', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'l', 'o', 'h', 'i', '_', 'i', '2', 'd', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'm', 'a', 't', 'c', 'h', '_', 'a', 'n', 'y', '_', 's', 'y',
'n', 'c', '_', 'i', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm',
'a', 't', 'c', 'h', '_', 'a', 'n', 'y', '_', 's', 'y', 'n', 'c', '_', 'i',
'6', '4', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'e', 'm', 'b', 'a',
'r', '_', 'c', 't', 'a', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'e',
'm', 'b', 'a', 'r', '_', 'g', 'l', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'm', 'e', 'm', 'b', 'a', 'r', '_', 's', 'y', 's', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'm', 'u', 'l', '_', 'r', 'm', '_', 'd', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'm', 'u', 'l', '_', 'r', 'm', '_', 'f', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'm', 'u', 'l', '_', 'r', 'm', '_', 'f', 't', 'z',
'_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'u', 'l', '_', 'r',
'n', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'u', 'l', '_',
'r', 'n', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'u', 'l',
'_', 'r', 'n', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'm', 'u', 'l', '_', 'r', 'p', '_', 'd', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'm', 'u', 'l', '_', 'r', 'p', '_', 'f', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'm', 'u', 'l', '_', 'r', 'p', '_', 'f', 't', 'z', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'u', 'l', '_', 'r', 'z',
'_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'u', 'l', '_', 'r',
'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'm', 'u', 'l', '_',
'r', 'z', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'm', 'u', 'l', '2', '4', '_', 'i', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'm', 'u', 'l', '2', '4', '_', 'u', 'i', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'm', 'u', 'l', 'h', 'i', '_', 'i', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'm', 'u', 'l', 'h', 'i', '_', 'l', 'l', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'm', 'u', 'l', 'h', 'i', '_', 'u', 'i', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'm', 'u', 'l', 'h', 'i', '_', 'u', 'l', 'l', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'p', 'r', 'm', 't', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'c', 'p', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'f',
't', 'z', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'c', 'p',
'_', 'r', 'm', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'c',
'p', '_', 'r', 'm', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'c', 'p', '_', 'r', 'm', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'r', 'c', 'p', '_', 'r', 'n', '_', 'd', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'r', 'c', 'p', '_', 'r', 'n', '_', 'f', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'r', 'c', 'p', '_', 'r', 'n', '_', 'f', 't',
'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'c', 'p', '_',
'r', 'p', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'c', 'p',
'_', 'r', 'p', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'c',
'p', '_', 'r', 'p', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'c', 'p', '_', 'r', 'z', '_', 'd', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'r', 'c', 'p', '_', 'r', 'z', '_', 'f', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'r', 'c', 'p', '_', 'r', 'z', '_', 'f', 't', 'z',
'_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_',
'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'c', 'l', 'o', 'c', 'k', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x',
'_', 's', 'r', 'e', 'g', '_', 'c', 'l', 'o', 'c', 'k', '6', '4', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_',
's', 'r', 'e', 'g', '_', 'c', 't', 'a', 'i', 'd', '_', 'w', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's',
'r', 'e', 'g', '_', 'c', 't', 'a', 'i', 'd', '_', 'x', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r',
'e', 'g', '_', 'c', 't', 'a', 'i', 'd', '_', 'y', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 'c', 't', 'a', 'i', 'd', '_', 'z', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g',
'_', 'e', 'n', 'v', 'r', 'e', 'g', '0', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_',
'e', 'n', 'v', 'r', 'e', 'g', '1', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '0', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '1', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '3', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '4', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '5', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '6', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '7', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '8', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '1', '9', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e',
'n', 'v', 'r', 'e', 'g', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '0', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '1', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '3', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '4', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '5', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '6', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '7', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '8', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '2', '9', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r',
'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n',
'v', 'r', 'e', 'g', '3', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e',
'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v',
'r', 'e', 'g', '3', '0', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e',
'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v',
'r', 'e', 'g', '3', '1', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e',
'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v',
'r', 'e', 'g', '4', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a',
'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v', 'r',
'e', 'g', '5', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd',
'_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v', 'r', 'e',
'g', '6', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_',
'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v', 'r', 'e', 'g',
'7', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p',
't', 'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v', 'r', 'e', 'g', '8',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't',
'x', '_', 's', 'r', 'e', 'g', '_', 'e', 'n', 'v', 'r', 'e', 'g', '9', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x',
'_', 's', 'r', 'e', 'g', '_', 'g', 'r', 'i', 'd', 'i', 'd', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's',
'r', 'e', 'g', '_', 'l', 'a', 'n', 'e', 'i', 'd', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 'l', 'a', 'n', 'e', 'm', 'a', 's', 'k', '_', 'e', 'q', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_',
's', 'r', 'e', 'g', '_', 'l', 'a', 'n', 'e', 'm', 'a', 's', 'k', '_', 'g',
'e', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p',
't', 'x', '_', 's', 'r', 'e', 'g', '_', 'l', 'a', 'n', 'e', 'm', 'a', 's',
'k', '_', 'g', 't', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a',
'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'l', 'a', 'n', 'e',
'm', 'a', 's', 'k', '_', 'l', 'e', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'l',
'a', 'n', 'e', 'm', 'a', 's', 'k', '_', 'l', 't', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 'n', 'c', 't', 'a', 'i', 'd', '_', 'w', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 'n', 'c', 't', 'a', 'i', 'd', '_', 'x', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 'n', 'c', 't', 'a', 'i', 'd', '_', 'y', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 'n', 'c', 't', 'a', 'i', 'd', '_', 'z', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 'n', 's', 'm', 'i', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'n',
't', 'i', 'd', '_', 'w', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e',
'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'n', 't', 'i',
'd', '_', 'x', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd',
'_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'n', 't', 'i', 'd', '_',
'y', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p',
't', 'x', '_', 's', 'r', 'e', 'g', '_', 'n', 't', 'i', 'd', '_', 'z', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x',
'_', 's', 'r', 'e', 'g', '_', 'n', 'w', 'a', 'r', 'p', 'i', 'd', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_',
's', 'r', 'e', 'g', '_', 'p', 'm', '0', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_',
'p', 'm', '1', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd',
'_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'p', 'm', '2', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_',
's', 'r', 'e', 'g', '_', 'p', 'm', '3', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_',
's', 'm', 'i', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a',
'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 't', 'i', 'd', '_',
'w', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p',
't', 'x', '_', 's', 'r', 'e', 'g', '_', 't', 'i', 'd', '_', 'x', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_',
's', 'r', 'e', 'g', '_', 't', 'i', 'd', '_', 'y', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e',
'g', '_', 't', 'i', 'd', '_', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'r', 'e', 'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'w',
'a', 'r', 'p', 'i', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'e',
'a', 'd', '_', 'p', 't', 'x', '_', 's', 'r', 'e', 'g', '_', 'w', 'a', 'r',
'p', 's', 'i', 'z', 'e', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'o',
't', 'a', 't', 'e', '_', 'b', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'r', 'o', 't', 'a', 't', 'e', '_', 'b', '6', '4', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'r', 'o', 't', 'a', 't', 'e', '_', 'r', 'i', 'g', 'h',
't', '_', 'b', '6', '4', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'o',
'u', 'n', 'd', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'o',
'u', 'n', 'd', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 'o',
'u', 'n', 'd', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'r', 's', 'q', 'r', 't', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_',
'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'r', 's', 'q', 'r', 't', '_',
'a', 'p', 'p', 'r', 'o', 'x', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'r', 's', 'q', 'r', 't', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'f',
't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'a', 'd',
'_', 'i', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'a', 'd', '_', 'u',
'i', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'a', 't', 'u', 'r', 'a',
't', 'e', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'a', 't',
'u', 'r', 'a', 't', 'e', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'a', 't', 'u', 'r', 'a', 't', 'e', '_', 'f', 't', 'z', '_', 'f', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_', 'b', 'f', 'l',
'y', '_', 'f', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h',
'f', 'l', '_', 'b', 'f', 'l', 'y', '_', 'i', '3', '2', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_', 'd', 'o', 'w', 'n', '_', 'f',
'3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_',
'd', 'o', 'w', 'n', '_', 'i', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'h', 'f', 'l', '_', 'i', 'd', 'x', '_', 'f', '3', '2', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_', 'i', 'd', 'x', '_',
'i', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l',
'_', 's', 'y', 'n', 'c', '_', 'b', 'f', 'l', 'y', '_', 'f', '3', '2', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_', 's', 'y', 'n',
'c', '_', 'b', 'f', 'l', 'y', '_', 'i', '3', '2', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'h', 'f', 'l', '_', 's', 'y', 'n', 'c', '_', 'd', 'o',
'w', 'n', '_', 'f', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'h', 'f', 'l', '_', 's', 'y', 'n', 'c', '_', 'd', 'o', 'w', 'n', '_', 'i',
'3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_',
's', 'y', 'n', 'c', '_', 'i', 'd', 'x', '_', 'f', '3', '2', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_', 's', 'y', 'n', 'c', '_',
'i', 'd', 'x', '_', 'i', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'h', 'f', 'l', '_', 's', 'y', 'n', 'c', '_', 'u', 'p', '_', 'f', '3',
'2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_', 's',
'y', 'n', 'c', '_', 'u', 'p', '_', 'i', '3', '2', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'h', 'f', 'l', '_', 'u', 'p', '_', 'f', '3', '2', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'h', 'f', 'l', '_', 'u', 'p', '_',
'i', '3', '2', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'i', 'n', '_',
'a', 'p', 'p', 'r', 'o', 'x', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'i', 'n', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'f', 't', 'z',
'_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r', 't', '_',
'a', 'p', 'p', 'r', 'o', 'x', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'q', 'r', 't', '_', 'a', 'p', 'p', 'r', 'o', 'x', '_', 'f', 't',
'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r', 't',
'_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r', 't', '_',
'r', 'm', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r',
't', '_', 'r', 'm', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'q', 'r', 't', '_', 'r', 'm', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'q', 'r', 't', '_', 'r', 'n', '_', 'd', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r', 't', '_', 'r', 'n', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r', 't', '_', 'r',
'n', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'q', 'r', 't', '_', 'r', 'p', '_', 'd', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'q', 'r', 't', '_', 'r', 'p', '_', 'f', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'q', 'r', 't', '_', 'r', 'p', '_', 'f', 't', 'z',
'_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r', 't', '_',
'r', 'z', '_', 'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'q', 'r',
't', '_', 'r', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'q', 'r', 't', '_', 'r', 'z', '_', 'f', 't', 'z', '_', 'f', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 'q', '_', 'a', 'r', 'r', 'a', 'y', '_',
's', 'i', 'z', 'e', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 'q',
'_', 'c', 'h', 'a', 'n', 'n', 'e', 'l', '_', 'd', 'a', 't', 'a', '_', 't',
'y', 'p', 'e', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 'q', '_',
'c', 'h', 'a', 'n', 'n', 'e', 'l', '_', 'o', 'r', 'd', 'e', 'r', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 'q', '_', 'd', 'e', 'p', 't', 'h',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 'q', '_', 'h', 'e', 'i',
'g', 'h', 't', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 'q', '_',
'w', 'i', 'd', 't', 'h', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i',
'1', '6', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a',
'y', '_', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r',
'r', 'a', 'y', '_', 'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_',
'a', 'r', 'r', 'a', 'y', '_', 'i', '3', '2', '_', 'c', 'l', 'a', 'm', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '3', '2', '_', 't', 'r',
'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '3', '2', '_',
'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '6',
'4', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'i', '6', '4', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r',
'a', 'y', '_', 'i', '6', '4', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd',
'_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '8', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1',
'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '8', '_', 'z', 'e', 'r', 'o',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '1', '6', '_',
'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v',
'2', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r',
'a', 'y', '_', 'v', '2', 'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd',
'_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '3', '2', '_', 'c', 'l',
'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i',
'3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'v', '2', 'i', '3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '6', '4', '_', 'c', 'l', 'a', 'm',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '6', '4',
'_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v',
'2', 'i', '6', '4', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r',
'a', 'y', '_', 'v', '2', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd',
'_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '8', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '8', '_',
'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4',
'i', '1', '6', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r',
'a', 'y', '_', 'v', '4', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd',
'_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '1', '6', '_', 'z', 'e',
'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '3',
'2', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'v', '4', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '3', '2', '_', 'z', 'e', 'r', 'o',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '8', '_', 'c',
'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4',
'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'v', '4', 'i', '8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'i', '1',
'6', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'i', '1', '6', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '1', 'd', '_', 'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1',
'd', '_', 'i', '3', '2', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'i',
'3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'i', '3', '2', '_', 'z',
'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '1', 'd', '_', 'i', '6', '4', '_', 'c', 'l', 'a', 'm', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'1', 'd', '_', 'i', '6', '4', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'i',
'6', '4', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'i', '8', '_', 'c', 'l',
'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '1', 'd', '_', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd',
'_', 'i', '8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '2', 'i', '1',
'6', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '2', 'i', '1', '6',
'_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '2', 'i', '1', '6', '_', 'z',
'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '1', 'd', '_', 'v', '2', 'i', '3', '2', '_', 'c', 'l', 'a',
'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '1', 'd', '_', 'v', '2', 'i', '3', '2', '_', 't', 'r', 'a', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'1', 'd', '_', 'v', '2', 'i', '3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd',
'_', 'v', '2', 'i', '6', '4', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_',
'v', '2', 'i', '6', '4', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '2',
'i', '6', '4', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '2', 'i', '8',
'_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '2', 'i', '8', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '1', 'd', '_', 'v', '2', 'i', '8', '_', 'z', 'e', 'r', 'o',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'1', 'd', '_', 'v', '4', 'i', '1', '6', '_', 'c', 'l', 'a', 'm', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1',
'd', '_', 'v', '4', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_',
'v', '4', 'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '4',
'i', '3', '2', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '4', 'i',
'3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '4', 'i', '3', '2',
'_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '1', 'd', '_', 'v', '4', 'i', '8', '_', 'c', 'l',
'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '1', 'd', '_', 'v', '4', 'i', '8', '_', 't', 'r', 'a', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'1', 'd', '_', 'v', '4', 'i', '8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_',
'a', 'r', 'r', 'a', 'y', '_', 'i', '1', '6', '_', 'c', 'l', 'a', 'm', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '1', '6', '_', 't', 'r',
'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '1', '6', '_',
'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '3',
'2', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r',
'a', 'y', '_', 'i', '3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'i', '6', '4', '_', 'c', 'l', 'a', 'm', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '6', '4', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '6', '4', '_', 'z',
'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i', '8', '_',
'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'i',
'8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_',
'i', '8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'v', '2', 'i', '1', '6', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_',
'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '1', '6', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '1', '6',
'_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v',
'2', 'i', '3', '2', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r',
'r', 'a', 'y', '_', 'v', '2', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '3', '2', '_', 'z',
'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i',
'6', '4', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a',
'y', '_', 'v', '2', 'i', '6', '4', '_', 't', 'r', 'a', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_',
'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '6', '4', '_', 'z', 'e', 'r',
'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '8', '_',
'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v',
'2', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a',
'y', '_', 'v', '2', 'i', '8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '1', '6', '_', 'c', 'l', 'a', 'm',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '1', '6',
'_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v',
'4', 'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r',
'a', 'y', '_', 'v', '4', 'i', '3', '2', '_', 'c', 'l', 'a', 'm', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '3', '2', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i',
'3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'v', '4', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '8', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '8', '_', 'z', 'e',
'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '2', 'd', '_', 'i', '1', '6', '_', 'c', 'l', 'a', 'm', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'i', '1',
'6', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'i', '3', '2', '_', 'c', 'l',
'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '2', 'd', '_', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'i', '3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'i', '6',
'4', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'i', '6', '4', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '2', 'd', '_', 'i', '6', '4', '_', 'z', 'e', 'r', 'o', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'i', '8',
'_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '2', 'd', '_', 'i', '8', '_', 'z', 'e', 'r', 'o',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'2', 'd', '_', 'v', '2', 'i', '1', '6', '_', 'c', 'l', 'a', 'm', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'v', '2', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_',
'v', '2', 'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '2',
'i', '3', '2', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '2', 'i',
'3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '2', 'i', '3', '2',
'_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '2', 'i', '6', '4', '_', 'c',
'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '2', 'd', '_', 'v', '2', 'i', '6', '4', '_', 't', 'r',
'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '2', 'd', '_', 'v', '2', 'i', '6', '4', '_', 'z', 'e', 'r', 'o',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'2', 'd', '_', 'v', '2', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd',
'_', 'v', '2', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '2',
'i', '8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '4', 'i', '1', '6',
'_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '4', 'i', '1', '6', '_',
't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '2', 'd', '_', 'v', '4', 'i', '1', '6', '_', 'z', 'e',
'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '2', 'd', '_', 'v', '4', 'i', '3', '2', '_', 'c', 'l', 'a', 'm',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '2', 'd', '_', 'v', '4', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2',
'd', '_', 'v', '4', 'i', '3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_',
'v', '4', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '4',
'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '2', 'd', '_', 'v', '4', 'i', '8', '_',
'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '3', 'd', '_', 'i', '1', '6', '_', 'c', 'l', 'a', 'm',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '3', 'd', '_', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_',
'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'i', '3', '2', '_',
'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '3', 'd', '_', 'i', '3', '2', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '3', 'd', '_', 'i', '3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_',
'i', '6', '4', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'i', '6', '4',
'_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'b', '_', '3', 'd', '_', 'i', '6', '4', '_', 'z', 'e', 'r',
'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '3', 'd', '_', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_',
'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'i', '8', '_', 'z', 'e',
'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '3', 'd', '_', 'v', '2', 'i', '1', '6', '_', 'c', 'l', 'a', 'm',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '3', 'd', '_', 'v', '2', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3',
'd', '_', 'v', '2', 'i', '1', '6', '_', 'z', 'e', 'r', 'o', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_',
'v', '2', 'i', '3', '2', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v',
'2', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v', '2', 'i',
'3', '2', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v', '2', 'i', '6', '4',
'_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v', '2', 'i', '6', '4', '_',
't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '3', 'd', '_', 'v', '2', 'i', '6', '4', '_', 'z', 'e',
'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'b', '_', '3', 'd', '_', 'v', '2', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_',
'3', 'd', '_', 'v', '2', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_',
'v', '2', 'i', '8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v', '4', 'i',
'1', '6', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v', '4', 'i', '1',
'6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v', '4', 'i', '1', '6', '_',
'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'b', '_', '3', 'd', '_', 'v', '4', 'i', '3', '2', '_', 'c', 'l',
'a', 'm', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'b', '_', '3', 'd', '_', 'v', '4', 'i', '3', '2', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b',
'_', '3', 'd', '_', 'v', '4', 'i', '3', '2', '_', 'z', 'e', 'r', 'o', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3',
'd', '_', 'v', '4', 'i', '8', '_', 'c', 'l', 'a', 'm', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_',
'v', '4', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'b', '_', '3', 'd', '_', 'v', '4', 'i',
'8', '_', 'z', 'e', 'r', 'o', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_',
'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'a', 'r', 'r', 'a',
'y', '_', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'a', 'r',
'r', 'a', 'y', '_', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '1', '6', '_', 't', 'r', 'a', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_',
'1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '3', '2', '_',
't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'p', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2',
'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'v', '4', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '3', '2', '_', 't', 'r', 'a', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_',
'1', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '8', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'p', '_', '1', 'd', '_', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1',
'd', '_', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'i', '8',
'_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'p', '_', '1', 'd', '_', 'v', '2', 'i', '1', '6', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'p', '_', '1', 'd', '_', 'v', '2', 'i', '3', '2', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p',
'_', '1', 'd', '_', 'v', '2', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd',
'_', 'v', '4', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'v',
'4', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '1', 'd', '_', 'v', '4', 'i',
'8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_',
'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'a', 'r', 'r', 'a',
'y', '_', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'a', 'r',
'r', 'a', 'y', '_', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '1', '6', '_', 't', 'r', 'a', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_',
'2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2', 'i', '3', '2', '_',
't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'p', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '2',
'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'a', 'r', 'r', 'a', 'y',
'_', 'v', '4', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'a',
'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '3', '2', '_', 't', 'r', 'a', 'p',
'\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_',
'2', 'd', '_', 'a', 'r', 'r', 'a', 'y', '_', 'v', '4', 'i', '8', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'p', '_', '2', 'd', '_', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2',
'd', '_', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'i', '8',
'_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u',
's', 't', '_', 'p', '_', '2', 'd', '_', 'v', '2', 'i', '1', '6', '_', 't',
'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't',
'_', 'p', '_', '2', 'd', '_', 'v', '2', 'i', '3', '2', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p',
'_', '2', 'd', '_', 'v', '2', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd',
'_', 'v', '4', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'v',
'4', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '2', 'd', '_', 'v', '4', 'i',
'8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'p', '_', '3', 'd', '_', 'i', '1', '6', '_', 't', 'r',
'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_',
'p', '_', '3', 'd', '_', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '3', 'd',
'_', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 's', 'u', 's', 't', '_', 'p', '_', '3', 'd', '_', 'v', '2', 'i', '1',
'6', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's',
'u', 's', 't', '_', 'p', '_', '3', 'd', '_', 'v', '2', 'i', '3', '2', '_',
't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's',
't', '_', 'p', '_', '3', 'd', '_', 'v', '2', 'i', '8', '_', 't', 'r', 'a',
'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p',
'_', '3', 'd', '_', 'v', '4', 'i', '1', '6', '_', 't', 'r', 'a', 'p', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '3',
'd', '_', 'v', '4', 'i', '3', '2', '_', 't', 'r', 'a', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 's', 'u', 's', 't', '_', 'p', '_', '3', 'd', '_',
'v', '4', 'i', '8', '_', 't', 'r', 'a', 'p', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 's', 'w', 'a', 'p', '_', 'l', 'o', '_', 'h', 'i', '_', 'b', '6',
'4', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 't', 'r', 'u', 'n', 'c', '_',
'd', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 't', 'r', 'u', 'n', 'c', '_',
'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 't', 'r', 'u', 'n', 'c', '_',
'f', 't', 'z', '_', 'f', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 't', 'x',
'q', '_', 'a', 'r', 'r', 'a', 'y', '_', 's', 'i', 'z', 'e', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 't', 'x', 'q', '_', 'c', 'h', 'a', 'n', 'n', 'e',
'l', '_', 'd', 'a', 't', 'a', '_', 't', 'y', 'p', 'e', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 't', 'x', 'q', '_', 'c', 'h', 'a', 'n', 'n', 'e', 'l',
'_', 'o', 'r', 'd', 'e', 'r', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 't',
'x', 'q', '_', 'd', 'e', 'p', 't', 'h', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 't', 'x', 'q', '_', 'h', 'e', 'i', 'g', 'h', 't', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 't', 'x', 'q', '_', 'n', 'u', 'm', '_', 'm', 'i', 'p',
'm', 'a', 'p', '_', 'l', 'e', 'v', 'e', 'l', 's', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 't', 'x', 'q', '_', 'n', 'u', 'm', '_', 's', 'a', 'm', 'p',
'l', 'e', 's', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 't', 'x', 'q', '_',
'w', 'i', 'd', 't', 'h', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'd', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'd', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'd', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'd', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'f', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'f', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'f', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'i',
'2', 'f', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u', 'l',
'l', '2', 'd', '_', 'r', 'm', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'u',
'l', 'l', '2', 'd', '_', 'r', 'n', '\000', '_', '_', 'n', 'v', 'v', 'm', '_',
'u', 'l', 'l', '2', 'd', '_', 'r', 'p', '\000', '_', '_', 'n', 'v', 'v', 'm',
'_', 'u', 'l', 'l', '2', 'd', '_', 'r', 'z', '\000', '_', '_', 'n', 'v', 'v',
'm', '_', 'u', 'l', 'l', '2', 'f', '_', 'r', 'm', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'u', 'l', 'l', '2', 'f', '_', 'r', 'n', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'u', 'l', 'l', '2', 'f', '_', 'r', 'p', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'u', 'l', 'l', '2', 'f', '_', 'r', 'z', '\000', '_',
'_', 'n', 'v', 'v', 'm', '_', 'v', 'o', 't', 'e', '_', 'a', 'l', 'l', '\000',
'_', '_', 'n', 'v', 'v', 'm', '_', 'v', 'o', 't', 'e', '_', 'a', 'l', 'l',
'_', 's', 'y', 'n', 'c', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'v', 'o',
't', 'e', '_', 'a', 'n', 'y', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'v',
'o', 't', 'e', '_', 'a', 'n', 'y', '_', 's', 'y', 'n', 'c', '\000', '_', '_',
'n', 'v', 'v', 'm', '_', 'v', 'o', 't', 'e', '_', 'b', 'a', 'l', 'l', 'o',
't', '\000', '_', '_', 'n', 'v', 'v', 'm', '_', 'v', 'o', 't', 'e', '_', 'b',
'a', 'l', 'l', 'o', 't', '_', 's', 'y', 'n', 'c', '\000', '_', '_', 'n', 'v',
'v', 'm', '_', 'v', 'o', 't', 'e', '_', 'u', 'n', 'i', '\000', '_', '_', 'n',
'v', 'v', 'm', '_', 'v', 'o', 't', 'e', '_', 'u', 'n', 'i', '_', 's', 'y',
'n', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'd',
'd', 'f', '1', '2', '8', '_', 'r', 'o', 'u', 'n', 'd', '_', 't', 'o', '_',
'o', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'c', 'r', 'y', 'p', 't', 'o', '_', 'v',
'c', 'i', 'p', 'h', 'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'c', 'r', 'y', 'p', 't',
'o', '_', 'v', 'c', 'i', 'p', 'h', 'e', 'r', 'l', 'a', 's', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'c', 'r', 'y', 'p', 't', 'o', '_', 'v', 'n', 'c', 'i', 'p', 'h',
'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'c', 'r', 'y', 'p', 't', 'o', '_', 'v', 'n',
'c', 'i', 'p', 'h', 'e', 'r', 'l', 'a', 's', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'c',
'r', 'y', 'p', 't', 'o', '_', 'v', 'p', 'e', 'r', 'm', 'x', 'o', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'c', 'r', 'y', 'p', 't', 'o', '_', 'v', 'p', 'm', 's', 'u',
'm', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'c', 'r', 'y', 'p', 't', 'o', '_', 'v', 'p',
'm', 's', 'u', 'm', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'c', 'r', 'y', 'p', 't', 'o',
'_', 'v', 'p', 'm', 's', 'u', 'm', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'c', 'r', 'y',
'p', 't', 'o', '_', 'v', 'p', 'm', 's', 'u', 'm', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'c', 'r', 'y', 'p', 't', 'o', '_', 'v', 's', 'b', 'o', 'x', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'c', 'r', 'y', 'p', 't', 'o', '_', 'v', 's', 'h', 'a', 's', 'i', 'g',
'm', 'a', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'c', 'r', 'y', 'p', 't', 'o', '_', 'v',
's', 'h', 'a', 's', 'i', 'g', 'm', 'a', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'd', 's',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'd', 's', 's', 'a', 'l', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'd', 's', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'd', 's', 't', 's', 't', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'd', 's', 't', 's', 't', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'd', 's', 't', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'm', 'f', 'v', 's', 'c', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'm',
't', 'v', 's', 'c', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'm', 't', 'v', 's', 'r', 'b',
'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'm', 't', 'v', 's', 'r', 'd', 'm', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'm', 't', 'v', 's', 'r', 'h', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'm', 't', 'v',
's', 'r', 'q', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'm', 't', 'v', 's', 'r', 'w', 'm',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'a', 'b', 's', 'd', 'u', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'a', 'b', 's', 'd', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'b', 's',
'd', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'd', 'd', 'c', 'u', 'q', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'a', 'd', 'd', 'c', 'u', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'a', 'd', 'd', 'e', 'c', 'u', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'd', 'd',
'e', 'u', 'q', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'd', 'd', 's', 'b', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'a', 'd', 'd', 's', 'h', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'a', 'd', 'd', 's', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'd', 'd',
'u', 'b', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'd', 'd', 'u', 'h', 's', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'a', 'd', 'd', 'u', 'w', 's', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'a', 'v', 'g', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'v', 'g', 's', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'a', 'v', 'g', 's', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'a', 'v', 'g', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'a', 'v', 'g', 'u', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'a', 'v', 'g', 'u', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'b', 'p', 'e', 'r', 'm', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'f', 's', 'x',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'c', 'f', 'u', 'g', 'e', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'c', 'f', 'u', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'l', 'r', 'l', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'c', 'l', 'r', 'r', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'c', 'l', 'z', 'd', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'l', 'z', 'l', 's',
'b', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'b', 'f', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'c', 'm', 'p', 'b', 'f', 'p', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'c', 'm', 'p', 'e', 'q', 'f', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm',
'p', 'e', 'q', 'f', 'p', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p',
'e', 'q', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'e', 'q', 'u',
'b', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'e', 'q', 'u', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'e', 'q', 'u', 'd', '_', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'c', 'm', 'p', 'e', 'q', 'u', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'c', 'm', 'p', 'e', 'q', 'u', 'h', '_', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'c', 'm', 'p', 'e', 'q', 'u', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p',
'e', 'q', 'u', 'q', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'e',
'q', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'e', 'q', 'u', 'w',
'_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 'e', 'f', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 'e', 'f', 'p', '_', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 'f', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'c', 'm', 'p', 'g', 't', 'f', 'p', '_', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c',
'm', 'p', 'g', 't', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g',
't', 's', 'b', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't',
's', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 's', 'd', '_',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 's', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 's', 'h', '_', 'p', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'c', 'm', 'p', 'g', 't', 's', 'q', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c',
'm', 'p', 'g', 't', 's', 'q', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm',
'p', 'g', 't', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't',
's', 'w', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 'u',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 'u', 'b', '_', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 'u', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'c', 'm', 'p', 'g', 't', 'u', 'd', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'c', 'm', 'p', 'g', 't', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm',
'p', 'g', 't', 'u', 'h', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p',
'g', 't', 'u', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 'u',
'q', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 'u', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'g', 't', 'u', 'w', '_', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'c', 'm', 'p', 'n', 'e', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'c', 'm', 'p', 'n', 'e', 'b', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm',
'p', 'n', 'e', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'n', 'e', 'h',
'_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'n', 'e', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'c', 'm', 'p', 'n', 'e', 'w', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'c', 'm', 'p', 'n', 'e', 'z', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm',
'p', 'n', 'e', 'z', 'b', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p',
'n', 'e', 'z', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'n', 'e', 'z',
'h', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'n', 'e', 'z', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'c', 'm', 'p', 'n', 'e', 'z', 'w', '_', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'c', 'n', 't', 'm', 'b', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'c', 'n', 't', 'm', 'b', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'n', 't', 'm',
'b', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 'n', 't', 'm', 'b', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'c', 't', 's', 'x', 's', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 't',
'u', 'x', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'c', 't', 'z', 'd', 'm', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'c', 't', 'z', 'l', 's', 'b', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'd', 'i', 'v', 'e', 's', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'd', 'i', 'v', 'e',
's', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'd', 'i', 'v', 'e', 's', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'd', 'i', 'v', 'e', 'u', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'd',
'i', 'v', 'e', 'u', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'd', 'i', 'v', 'e', 'u',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 'p', 'a', 'n', 'd', 'b', 'm', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'e', 'x', 'p', 'a', 'n', 'd', 'd', 'm', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'e', 'x', 'p', 'a', 'n', 'd', 'h', 'm', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'e', 'x', 'p', 'a', 'n', 'd', 'q', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x',
'p', 'a', 'n', 'd', 'w', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 'p', 't',
'e', 'f', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 'd', 'd', 'v', 'l',
'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 'd', 'd', 'v', 'r', 'x', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'e', 'x', 't', 'd', 'u', 'b', 'v', 'l', 'x', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'e', 'x', 't', 'd', 'u', 'b', 'v', 'r', 'x', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'e', 'x', 't', 'd', 'u', 'h', 'v', 'l', 'x', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'e', 'x', 't', 'd', 'u', 'h', 'v', 'r', 'x', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'e', 'x', 't', 'd', 'u', 'w', 'v', 'l', 'x', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e',
'x', 't', 'd', 'u', 'w', 'v', 'r', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x',
't', 'r', 'a', 'c', 't', 'b', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't',
'r', 'a', 'c', 't', 'd', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 'r',
'a', 'c', 't', 'h', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 'r', 'a',
'c', 't', 'q', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 'r', 'a', 'c',
't', 'w', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 's', 'b', '2', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 's', 'b', '2', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'e', 'x', 't', 's', 'd', '2', 'q', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e',
'x', 't', 's', 'h', '2', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 's',
'h', '2', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'e', 'x', 't', 's', 'w', '2', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'g', 'b', 'b', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'g',
'n', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'i', 'n', 's', 'b', 'l', 'x', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'i', 'n', 's', 'b', 'r', 'x', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'i',
'n', 's', 'b', 'v', 'l', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'i', 'n', 's', 'b',
'v', 'r', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'i', 'n', 's', 'd', 'l', 'x', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'i', 'n', 's', 'd', 'r', 'x', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'i', 'n', 's', 'h', 'l', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'i', 'n', 's', 'h',
'r', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'i', 'n', 's', 'h', 'v', 'l', 'x', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'i', 'n', 's', 'h', 'v', 'r', 'x', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'i', 'n', 's', 'w', 'l', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'i', 'n', 's',
'w', 'r', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'i', 'n', 's', 'w', 'v', 'l', 'x',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'i', 'n', 's', 'w', 'v', 'r', 'x', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'l', 'o', 'g', 'e', 'f', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'a',
'd', 'd', 'f', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'a', 'x', 'f', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'm', 'a', 'x', 's', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm',
'a', 'x', 's', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'a', 'x', 's', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'm', 'a', 'x', 's', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm',
'a', 'x', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'a', 'x', 'u', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'm', 'a', 'x', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm',
'a', 'x', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'h', 'a', 'd', 'd', 's',
'h', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'h', 'r', 'a', 'd', 'd', 's', 'h',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'm', 'i', 'n', 'f', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'm', 'i', 'n', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'i', 'n', 's',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'm', 'i', 'n', 's', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'm', 'i', 'n', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'i', 'n', 'u',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'm', 'i', 'n', 'u', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'm', 'i', 'n', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'i', 'n', 'u',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'm', 'l', 'a', 'd', 'd', 'u', 'h', 'm', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'm', 's', 'u', 'm', 'c', 'u', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'm', 's', 'u', 'm', 'm', 'b', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 's',
'u', 'm', 's', 'h', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 's', 'u', 'm', 's',
'h', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 's', 'u', 'm', 'u', 'b', 'm', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'm', 's', 'u', 'm', 'u', 'd', 'm', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'm', 's', 'u', 'm', 'u', 'h', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 's',
'u', 'm', 'u', 'h', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'e', 's',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'e', 's', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'm', 'u', 'l', 'e', 's', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u',
'l', 'e', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'e', 'u', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'e', 'u', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'm', 'u', 'l', 'e', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l',
'e', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'h', 's', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'm', 'u', 'l', 'h', 's', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'm', 'u', 'l', 'h', 'u', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'h',
'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'o', 's', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'm', 'u', 'l', 'o', 's', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm',
'u', 'l', 'o', 's', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'o', 's',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'o', 'u', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'm', 'u', 'l', 'o', 'u', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u',
'l', 'o', 'u', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'm', 'u', 'l', 'o', 'u', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'n', 'm', 's', 'u', 'b', 'f', 'p', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'p', 'd', 'e', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p', 'e', 'r',
'm', '_', '4', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p', 'e', 'x', 't', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'p', 'k', 'p', 'x', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p',
'k', 's', 'd', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p', 'k', 's', 'd', 'u',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'p', 'k', 's', 'h', 's', 's', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'p', 'k', 's', 'h', 'u', 's', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p', 'k',
's', 'w', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p', 'k', 's', 'w', 'u', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'p', 'k', 'u', 'd', 'u', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 'p', 'k', 'u', 'h', 'u', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p', 'k', 'u',
'w', 'u', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'p', 'r', 't', 'y', 'b', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'p', 'r', 't', 'y', 'b', 'q', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'p', 'r', 't', 'y', 'b', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 'e', 'f', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'r', 'f', 'i', 'm', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r',
'f', 'i', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 'f', 'i', 'p', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'r', 'f', 'i', 'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 'l', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 'r', 'l', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 'l', 'd',
'm', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 'l', 'd', 'n', 'm', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'r', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 'l', 'q', 'm', 'i',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 'r', 'l', 'q', 'n', 'm', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
'r', 'l', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 'l', 'w', 'm', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'r', 'l', 'w', 'n', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'r', 's',
'q', 'r', 't', 'e', 'f', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'e', 'l', '_',
'4', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
's', 'l', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'l', 'd', 'b', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 's', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'l', 'o', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 's', 'l', 'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'l', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 's', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'r', 'a',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 's', 'r', 'a', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
's', 'r', 'a', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'r', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 's', 'r', 'd', 'b', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'r', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 's', 'r', 'o', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'r',
'v', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 's', 'r', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's',
't', 'r', 'i', 'b', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 't', 'r', 'i', 'b',
'l', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a',
'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 't', 'r', 'i', 'b', 'r', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v',
'e', 'c', '_', 'v', 's', 't', 'r', 'i', 'b', 'r', '_', 'p', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 's', 't', 'r', 'i', 'h', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 't',
'r', 'i', 'h', 'l', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 't', 'r', 'i',
'h', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 's', 't', 'r', 'i', 'h', 'r', '_', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 's', 'u', 'b', 'c', 'u', 'q', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 's', 'u', 'b', 'c', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'u', 'b',
'e', 'c', 'u', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'u', 'b', 'e', 'u', 'q',
'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 's', 'u', 'b', 's', 'b', 's', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 's', 'u', 'b', 's', 'h', 's', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'u',
'b', 's', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'u', 'b', 'u', 'b', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i',
'v', 'e', 'c', '_', 'v', 's', 'u', 'b', 'u', 'h', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_',
'v', 's', 'u', 'b', 'u', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'u', 'm',
'2', 's', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 's', 'u', 'm', '4', 's', 'b',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 's', 'u', 'm', '4', 's', 'h', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 's', 'u', 'm', '4', 'u', 'b', 's', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v',
's', 'u', 'm', 's', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'u', 'p', 'k', 'h',
'p', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l',
't', 'i', 'v', 'e', 'c', '_', 'v', 'u', 'p', 'k', 'h', 's', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e',
'c', '_', 'v', 'u', 'p', 'k', 'h', 's', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'u',
'p', 'k', 'h', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'u', 'p', 'k', 'l', 'p',
'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't',
'i', 'v', 'e', 'c', '_', 'v', 'u', 'p', 'k', 'l', 's', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c',
'_', 'v', 'u', 'p', 'k', 'l', 's', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'a', 'l', 't', 'i', 'v', 'e', 'c', '_', 'v', 'u', 'p',
'k', 'l', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'b', 'p', 'e', 'r', 'm', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'c', 'f', 'u', 'g', 'e', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'c', 'n', 't', 'l', 'z', 'd', 'm', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'c', 'n', 't', 't', 'z', 'd', 'm', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'a', 'r', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'a', 'r', 'n', '_',
'3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'a',
'r', 'n', '_', 'r', 'a', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'd', 'c', 'b', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'd', 'i', 'v', 'd', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'd', 'i', 'v', 'd', 'e', 'u', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'd', 'i', 'v', 'f', '1', '2', '8', '_', 'r', 'o',
'u', 'n', 'd', '_', 't', 'o', '_', 'o', 'd', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'd', 'i', 'v', 'w', 'e', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'd', 'i', 'v', 'w', 'e', 'u', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'f', 'm', 'a', 'f', '1', '2',
'8', '_', 'r', 'o', 'u', 'n', 'd', '_', 't', 'o', '_', 'o', 'd', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'g', 'e', 't', '_', 't',
'e', 'x', 'a', 's', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'g', 'e', 't', '_', 't', 'e', 'x', 'a', 's', 'r', 'u', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'g', 'e', 't', '_', 't', 'f', 'h',
'a', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'g', 'e',
't', '_', 't', 'f', 'i', 'a', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'm', 'u', 'l', 'f', '1', '2', '8', '_', 'r', 'o', 'u', 'n',
'd', '_', 't', 'o', '_', 'o', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'p', 'd', 'e', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'p', 'e', 'x', 't', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'r', 'e', 'a', 'd', 'f', 'l', 'm', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 's', 'c',
'a', 'l', 'a', 'r', '_', 'e', 'x', 't', 'r', 'a', 'c', 't', '_', 'e', 'x',
'p', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's',
'x', '_', 's', 'c', 'a', 'l', 'a', 'r', '_', 'i', 'n', 's', 'e', 'r', 't',
'_', 'e', 'x', 'p', '_', 'q', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', 'e', 't', '_', 't', 'e', 'x', 'a', 's', 'r', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'e', 't', '_', 't', 'e',
'x', 'a', 's', 'r', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', 'e', 't', '_', 't', 'f', 'h', 'a', 'r', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', 'e', 't', '_', 't', 'f', 'i', 'a', 'r',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'e', 't', 'f',
'l', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'e',
't', 'r', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', 'q', 'r', 't', 'f', '1', '2', '8', '_', 'r', 'o', 'u', 'n', 'd', '_',
't', 'o', '_', 'o', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', 'u', 'b', 'f', '1', '2', '8', '_', 'r', 'o', 'u', 'n', 'd',
'_', 't', 'o', '_', 'o', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 't', 'a', 'b', 'o', 'r', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 't', 'a', 'b', 'o', 'r', 't', 'd', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'a', 'b', 'o', 'r', 't',
'd', 'c', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't',
'a', 'b', 'o', 'r', 't', 'w', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 't', 'a', 'b', 'o', 'r', 't', 'w', 'c', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'b', 'e', 'g', 'i', 'n', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'c', 'h', 'e', 'c',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'e', 'n',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'e', 'n',
'd', 'a', 'l', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
't', 'r', 'e', 'c', 'h', 'k', 'p', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 't', 'r', 'e', 'c', 'l', 'a', 'i', 'm', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'r', 'e', 's', 'u', 'm', 'e',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'r', 'u', 'n',
'c', 'f', '1', '2', '8', '_', 'r', 'o', 'u', 'n', 'd', '_', 't', 'o', '_',
'o', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't',
's', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 's',
'u', 's', 'p', 'e', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 't', 't', 'e', 's', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 's', 'x', '_', 'x', 's', 'm', 'a', 'x', 'd', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x',
's', 'm', 'i', 'n', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm', 'p', 'e', 'q', 'd', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_',
'x', 'v', 'c', 'm', 'p', 'e', 'q', 'd', 'p', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm',
'p', 'e', 'q', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm', 'p', 'e', 'q', 's', 'p', '_',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x',
'_', 'x', 'v', 'c', 'm', 'p', 'g', 'e', 'd', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm', 'p',
'g', 'e', 'd', 'p', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm', 'p', 'g', 'e', 's', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_',
'x', 'v', 'c', 'm', 'p', 'g', 'e', 's', 'p', '_', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm',
'p', 'g', 't', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm', 'p', 'g', 't', 'd', 'p', '_',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x',
'_', 'x', 'v', 'c', 'm', 'p', 'g', 't', 's', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'm', 'p',
'g', 't', 's', 'p', '_', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'v', 'b', 'f', '1', '6', 's',
'p', 'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's',
'x', '_', 'x', 'v', 'c', 'v', 'd', 'p', 's', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'v', 'd',
'p', 's', 'x', 'w', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'v', 'd', 'p', 'u', 'x', 'w', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_',
'x', 'v', 'c', 'v', 'h', 'p', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'v', 's', 'p', 'b',
'f', '1', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
's', 'x', '_', 'x', 'v', 'c', 'v', 's', 'p', 'd', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'v',
's', 'p', 'h', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 's', 'x', '_', 'x', 'v', 'c', 'v', 's', 'x', 'd', 's', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v',
'c', 'v', 's', 'x', 'w', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'c', 'v', 'u', 'x', 'd', 's',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x',
'_', 'x', 'v', 'c', 'v', 'u', 'x', 'w', 'd', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'd', 'i', 'v',
'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's',
'x', '_', 'x', 'v', 'd', 'i', 'v', 's', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'i', 'e', 'x', 'p',
'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's',
'x', '_', 'x', 'v', 'i', 'e', 'x', 'p', 's', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'm', 'a', 'x',
'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's',
'x', '_', 'x', 'v', 'm', 'a', 'x', 's', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'm', 'i', 'n', 'd',
'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x',
'_', 'x', 'v', 'm', 'i', 'n', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'r', 'e', 'd', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x',
'v', 'r', 'e', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 's', 'x', '_', 'x', 'v', 'r', 's', 'q', 'r', 't', 'e', 'd', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_',
'x', 'v', 'r', 's', 'q', 'r', 't', 'e', 's', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 't', 'd', 'i',
'v', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
's', 'x', '_', 'x', 'v', 't', 'd', 'i', 'v', 's', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 't', 'l',
's', 'b', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
's', 'x', '_', 'x', 'v', 't', 's', 'q', 'r', 't', 'd', 'p', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 't',
's', 'q', 'r', 't', 's', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 's', 'x', '_', 'x', 'v', 't', 's', 't', 'd', 'c', 'd', 'p',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_',
'x', 'v', 't', 's', 't', 'd', 'c', 's', 'p', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'x', 'e', 'x', 'p',
'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's',
'x', '_', 'x', 'v', 'x', 'e', 'x', 'p', 's', 'p', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'v', 'x', 's', 'i',
'g', 'd', 'p', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
's', 'x', '_', 'x', 'v', 'x', 's', 'i', 'g', 's', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'x', 'b', 'l',
'e', 'n', 'd', 'v', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 's', 'x', '_', 'x', 'x', 'b', 'l', 'e', 'n', 'd', 'v', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x',
'x', 'b', 'l', 'e', 'n', 'd', 'v', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'x', 'b', 'l', 'e', 'n', 'd',
'v', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's',
'x', '_', 'x', 'x', 'e', 'v', 'a', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'x', 'e', 'x', 't', 'r', 'a',
'c', 't', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 's', 'x', '_', 'x', 'x', 'g', 'e', 'n', 'p', 'c', 'v', 'b', 'm', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x',
'x', 'g', 'e', 'n', 'p', 'c', 'v', 'd', 'm', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'x', 'g', 'e', 'n', 'p',
'c', 'v', 'h', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 's', 'x', '_', 'x', 'x', 'g', 'e', 'n', 'p', 'c', 'v', 'w', 'm', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x',
'x', 'i', 'n', 's', 'e', 'r', 't', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x', 'x', 'l', 'e', 'q', 'v', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 's', 'x', '_', 'x',
'x', 'p', 'e', 'r', 'm', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'r', '6', '0', '0', '_', 'g', 'r', 'o', 'u', 'p', '_', 'b', 'a',
'r', 'r', 'i', 'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'r', '6', '0', '0', '_', 'i', 'm', 'p', 'l', 'i', 'c', 'i', 't', 'a',
'r', 'g', '_', 'p', 't', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'r', '6', '0', '0', '_', 'r', 'a', 't', '_', 's', 't', 'o', 'r',
'e', '_', 't', 'y', 'p', 'e', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'r', '6', '0', '0', '_', 'r', 'e', 'a', 'd', '_', 'g', 'l',
'o', 'b', 'a', 'l', '_', 's', 'i', 'z', 'e', '_', 'x', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'r', '6', '0', '0', '_', 'r', 'e', 'a',
'd', '_', 'g', 'l', 'o', 'b', 'a', 'l', '_', 's', 'i', 'z', 'e', '_', 'y',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'r', '6', '0', '0',
'_', 'r', 'e', 'a', 'd', '_', 'g', 'l', 'o', 'b', 'a', 'l', '_', 's', 'i',
'z', 'e', '_', 'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'r', '6', '0', '0', '_', 'r', 'e', 'a', 'd', '_', 'n', 'g', 'r', 'o', 'u',
'p', 's', '_', 'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'r', '6', '0', '0', '_', 'r', 'e', 'a', 'd', '_', 'n', 'g', 'r', 'o', 'u',
'p', 's', '_', 'y', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'r', '6', '0', '0', '_', 'r', 'e', 'a', 'd', '_', 'n', 'g', 'r', 'o', 'u',
'p', 's', '_', 'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'r', '6', '0', '0', '_', 'r', 'e', 'a', 'd', '_', 't', 'g', 'i', 'd', '_',
'x', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'r', '6', '0',
'0', '_', 'r', 'e', 'a', 'd', '_', 't', 'g', 'i', 'd', '_', 'y', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'r', '6', '0', '0', '_', 'r',
'e', 'a', 'd', '_', 't', 'g', 'i', 'd', '_', 'z', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'e', 'f', 'p', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'x', '_', 'n',
'e', 's', 't', 'i', 'n', 'g', '_', 'd', 'e', 'p', 't', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'l', 'c',
'b', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 't', 'x',
'_', 'a', 's', 's', 'i', 's', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 's', 'f', 'p', 'c', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'a',
'c', 'c', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'a', 'c', 'c', 'c', 'q', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'a', 'c', 'c',
'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'a', 'c', 'c', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'a', 'c', 'c', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'a', 'c', 'c', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'a', 'c', 'q', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'a', 'q', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'a', 'v', 'g', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'a', 'v', 'g', 'f', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'a', 'v', 'g',
'g', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'a', 'v', 'g', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'a', 'v', 'g', 'l', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_',
'v', 'a', 'v', 'g', 'l', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', '3', '9', '0', '_', 'v', 'a', 'v', 'g', 'l', 'g', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'a', 'v', 'g', 'l', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', '3', '9', '0', '_', 'v', 'b', 'p', 'e', 'r', 'm', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'c',
'k', 's', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'e', 'r', 'i', 'm', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'e', 'r', 'i',
'm', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 'e', 'r', 'i', 'm', 'g', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'e', 'r', 'i', 'm',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'e', 'r', 'l', 'l', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'e', 'r', 'l', 'l', 'f',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0',
'_', 'v', 'e', 'r', 'l', 'l', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'e', 'r', 'l', 'l', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_',
'v', 'e', 'r', 'l', 'l', 'v', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'e', 'r', 'l', 'l', 'v', 'f',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0',
'_', 'v', 'e', 'r', 'l', 'l', 'v', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'e', 'r', 'l', 'l', 'v',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'f', 'a', 'e', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f', 'a', 'e', 'f', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'f', 'a', 'e', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'f', 'a', 'e', 'z', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f', 'a',
'e', 'z', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'f', 'a', 'e', 'z', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f', 'e', 'e',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'f', 'e', 'e', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f', 'e', 'e', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'f', 'e', 'e', 'z', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', '3', '9', '0', '_', 'v', 'f', 'e', 'e', 'z', 'f', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f',
'e', 'e', 'z', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'f', 'e', 'n', 'e', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f', 'e',
'n', 'e', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'f', 'e', 'n', 'e', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f', 'e', 'n',
'e', 'z', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'f', 'e', 'n', 'e', 'z', 'f', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'f', 'e',
'n', 'e', 'z', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'g', 'f', 'm', 'a', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'g', 'f',
'm', 'a', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'g', 'f', 'm', 'a', 'g', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'g', 'f', 'm',
'a', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 'g', 'f', 'm', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'g', 'f', 'm', 'f', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_',
'v', 'g', 'f', 'm', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', '3', '9', '0', '_', 'v', 'g', 'f', 'm', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'i', 's',
't', 'r', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'i', 's', 't', 'r', 'f', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'i', 's', 't',
'r', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 'l', 'b', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'l', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'l', 'r',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'm', 'a', 'e', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'a', 'e', 'f', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'm', 'a', 'e', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'm', 'a', 'h', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'a', 'h',
'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'm', 'a', 'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'a', 'l', 'e', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_',
'v', 'm', 'a', 'l', 'e', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'a', 'l', 'e', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'm', 'a', 'l', 'h', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', '3', '9', '0', '_', 'v', 'm', 'a', 'l', 'h', 'f', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm',
'a', 'l', 'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'm', 'a', 'l', 'o', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'a',
'l', 'o', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'm', 'a', 'l', 'o', 'h', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'a', 'o',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'm', 'a', 'o', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'a', 'o', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'm', 'e', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'm', 'e', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'e', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'm', 'h', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'm', 'h', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'h', 'h', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'm', 'l', 'e', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'm', 'l', 'e', 'f', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'l', 'e',
'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'm', 'l', 'h', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'l', 'h', 'f', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'm', 'l', 'h', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 'm', 'l', 'o', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'l', 'o',
'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'm', 'l', 'o', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 'o', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm',
'o', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 'm', 'o', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'm', 's', 'l', 'g', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'p', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 'p', 'e', 'r', 'm', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'p', 'k', 'l', 's',
'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 'p', 'k', 'l', 's', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'p', 'k', 'l', 's', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0',
'_', 'v', 'p', 'k', 's', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', '3', '9', '0', '_', 'v', 'p', 'k', 's', 'g', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'p',
'k', 's', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 's', 'b', 'c', 'b', 'i', 'q', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'b',
'i', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 's', 'c', 'b', 'i', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'c', 'b', 'i',
'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 's', 'c', 'b', 'i', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'c', 'b', 'i', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0',
'_', 'v', 's', 'c', 'b', 'i', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'l',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 's', 'l', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'l', 'd', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's',
'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9',
'0', '_', 'v', 's', 'r', 'a', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'r', 'a', 'b', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's',
'r', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 's', 'r', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'r', 'l', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
's', 't', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 's', 't', 'r', 'c', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 't', 'r',
'c', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 's', 't', 'r', 'c', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 't', 'r', 'c',
'z', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 's', 't', 'r', 'c', 'z', 'f', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 't', 'r',
'c', 'z', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's',
'3', '9', '0', '_', 'v', 's', 't', 'r', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'u', 'm', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0',
'_', 'v', 's', 'u', 'm', 'g', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's', 'u', 'm', 'g', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_',
'v', 's', 'u', 'm', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', '3', '9', '0', '_', 'v', 's', 'u', 'm', 'q', 'f', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 's',
'u', 'm', 'q', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
's', '3', '9', '0', '_', 'v', 't', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'u', 'p', 'h', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_',
'v', 'u', 'p', 'h', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', '3', '9', '0', '_', 'v', 'u', 'p', 'h', 'h', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'u', 'p',
'l', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3',
'9', '0', '_', 'v', 'u', 'p', 'l', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'u', 'p', 'l', 'h', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0',
'_', 'v', 'u', 'p', 'l', 'h', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 's', '3', '9', '0', '_', 'v', 'u', 'p', 'l', 'h', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_',
'v', 'u', 'p', 'l', 'h', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 's', '3', '9', '0', '_', 'v', 'u', 'p', 'l', 'l', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', '3', '9', '0', '_', 'v',
'u', 'p', 'l', 'l', 'f', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 's', '3', '9', '0', '_', 'v', 'u', 'p', 'l', 'l', 'h', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'a',
'n', 'd', 'm', '_', 'M', 'M', 'M', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'a', 'n', 'd', 'm', '_', 'm',
'm', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'e', 'q', 'v', 'm', '_', 'M', 'M', 'M', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'e',
'q', 'v', 'm', '_', 'm', 'm', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'l', 's', 'v', '_', 'v', 'v',
's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'l', 'v', 'm', '_', 'M', 'M', 's', 's', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'l',
'v', 'm', '_', 'm', 'm', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'l', 'v', 's', 'd', '_', 's',
'v', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'l', 'v', 's', 'l', '_', 's', 'v', 's', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'l',
'v', 's', 's', '_', 's', 'v', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'l', 'z', 'v', 'm', '_', 's',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'n', 'e', 'g', 'm', '_', 'M', 'M', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'n', 'e',
'g', 'm', '_', 'm', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'n', 'n', 'd', 'm', '_', 'M', 'M', 'M',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'n', 'n', 'd', 'm', '_', 'm', 'm', 'm', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'o', 'r', 'm',
'_', 'M', 'M', 'M', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'o', 'r', 'm', '_', 'm', 'm', 'm', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'c', 'v', 'm', '_', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'f', 'c', 'h', 'v',
'_', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'f', 'c', 'h', 'v', 'n', 'c', '_', 's',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'a', 'd', 'd', 's', '_', 'v', 's', 'v', 'M',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'a', 'd', 'd', 's', '_', 'v', 's', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'a', 'd', 'd', 's', '_', 'v', 's', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'a', 'd', 'd', 's', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'a', 'd', 'd', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'a', 'd', 'd', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'a', 'd', 'd', 'u', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'a', 'd', 'd', 'u', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'a', 'd',
'd', 'u', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'a', 'd', 'd',
'u', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'a', 'd', 'd',
'u', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'a', 'd', 'd', 'u', '_',
'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'a', 'n', 'd', '_', 'v', 's',
'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'a', 'n', 'd', '_', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'a', 'n', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'a', 'n', 'd', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'a', 'n', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'a',
'n', 'd', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'b', 'r', 'd',
'_', 'v', 's', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'b', 'r', 'd', '_', 'v',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'b', 'r', 'd', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'c', 'm', 'p', 's', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'c', 'm', 'p', 's', '_', 'v', 's', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'c', 'm', 'p', 's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'c', 'm', 'p', 's', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'c', 'm', 'p', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'c', 'm',
'p', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'c', 'm', 'p',
'u', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'c', 'm', 'p',
'u', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'c', 'm', 'p', 'u', '_',
'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'c', 'm', 'p', 'u', '_', 'v',
'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'c', 'm', 'p', 'u', '_', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'c', 'm', 'p', 'u', '_', 'v', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'c', 'v', 't', 's', 'w', '_', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'c', 'v', 't', 's', 'w', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'c', 'v', 't', 'w', 's', '_', 'v', 'v', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'c', 'v', 't', 'w', 's', '_', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'c', 'v', 't', 'w', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'c', 'v', 't', 'w', 's', 'r', 'z', '_', 'v', 'v', 'M', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'c', 'v', 't', 'w', 's', 'r', 'z', '_', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'c', 'v', 't', 'w', 's', 'r', 'z', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'e', 'q', 'v', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'e', 'q', 'v', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'e',
'q', 'v', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'e', 'q', 'v',
'_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'e', 'q', 'v', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'e', 'q', 'v', '_', 'v', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'a', 'd', 'd', '_', 'v', 's', 'v', 'M',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'a', 'd', 'd', '_', 'v', 's', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'a', 'd', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'c', 'm', 'p', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'c', 'm', 'p', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'c',
'm', 'p', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'c', 'm',
'p', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'c', 'm',
'p', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'c', 'm', 'p', '_',
'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_', 'v',
's', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_',
'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_', 'v',
's', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_', 'v',
'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_',
'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_', 'v',
'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_', 'v',
'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_',
'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'd', '_', 'v',
'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'x', '_', 'v',
's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'x', '_', 'v',
's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'x', '_', 'v', 's', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'x', '_', 'v', 'v', 'v', 'M',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'a', 'x', '_', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'a', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'i', 'n', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'i', 'n', '_', 'v', 's', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'i', 'n', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'i', 'n', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'i', 'n', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'i', 'n', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
'a', 'f', '_', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'a', 't', '_',
'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'e', 'q', '_', 'M', 'v',
'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'e', 'q', '_', 'M', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'e', 'q', 'n', 'a', 'n', '_',
'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'e', 'q', 'n',
'a', 'n', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'g',
'e', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'g',
'e', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'g', 'e',
'n', 'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
's', 'g', 'e', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 's', 'g', 't', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 's', 'g', 't', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'g', 't', 'n', 'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 's', 'g', 't', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'e', '_', 'M', 'v', 'M', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'e', '_', 'M', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 's', 'l', 'e', 'n', 'a', 'n', '_', 'M', 'v', 'M',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'e', 'n', 'a', 'n', '_',
'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'e', 'q',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'e',
'q', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l',
'o', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 's', 'l', 'o', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'g', 'e', '_', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'g', 'e', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'g', 'e',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's',
'l', 'o', 'g', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 's', 'l', 'o', 'g', 't', '_', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'g', 't', '_', 'm', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'g', 't', 'n', 'a', 'n',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'g',
't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'l', 'o', 'l', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 's', 'l', 'o', 'l', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 's', 'l', 'o', 'l', 'e', 'n', 'a', 'n', '_', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'l', 'e', 'n', 'a',
'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l',
'o', 'l', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's',
'l', 'o', 'l', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'l', 'o', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'l', 't', 'n', 'a', 'n', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'n', 'a',
'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o',
'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
's', 'l', 'o', 'n', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'l', 'o', 'n', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 's', 'l', 'o', 'n', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o', 'n', 'e', 'n', 'a', 'n',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'l', 'o',
'n', 'u', 'm', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's',
'l', 'o', 'n', 'u', 'm', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 's', 'l', 't', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 's', 'l', 't', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'l', 't', 'n', 'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 's', 'l', 't', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'a', 'n', '_', 'M', 'v', 'M', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'a', 'n', '_', 'M', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'e', '_', 'M', 'v', 'M', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'e', '_', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'e', 'n', 'a', 'n', '_', 'M', 'v',
'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'e', 'n', 'a', 'n',
'_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'u', 'm',
'_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'n', 'u',
'm', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p',
'e', 'q', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u',
'p', 'e', 'q', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
's', 'u', 'p', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 's', 'u', 'p', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'g', 'e', '_',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'g', 'e',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p',
'g', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'u', 'p', 'g', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'g', 't', '_', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'g', 't', '_', 'm', 'v',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'g', 't', 'n',
'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u',
'p', 'g', 't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 's', 'u', 'p', 'l', 'e', '_', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 's', 'u', 'p', 'l', 'e', '_', 'm', 'v', 'm', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'l', 'e', 'n', 'a', 'n', '_',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'l', 'e',
'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
's', 'u', 'p', 'l', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'u', 'p', 'l', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 's', 'u', 'p', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'l', 't', 'n', 'a', 'n',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's',
'u', 'p', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 's', 'u', 'p', 'n', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 's', 'u', 'p', 'n', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'n', 'e', 'n', 'a', 'n', '_', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's', 'u', 'p', 'n', 'e', 'n',
'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 's',
'u', 'p', 'n', 'u', 'm', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 's', 'u', 'p', 'n', 'u', 'm', '_', 'm', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 'w', 'e', 'q', '_', 'M', 'v', 'M', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 'w', 'e', 'q', '_', 'M', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 'w', 'e', 'q', 'n', 'a', 'n', '_', 'M', 'v', 'M', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 'w', 'e', 'q', 'n', 'a', 'n', '_', 'M', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'g', 'e', '_', 'M', 'v', 'M',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'g', 'e', '_', 'M', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'g', 'e', 'n', 'a', 'n', '_', 'M',
'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'g', 'e', 'n', 'a',
'n', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'g', 't',
'_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'g', 't',
'_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'g', 't', 'n',
'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w',
'g', 't', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 'w', 'l', 'e', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 'w', 'l', 'e', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
'w', 'l', 'e', 'n', 'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 'w', 'l', 'e', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'e', 'q', '_', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'e', 'q', '_', 'm', 'v', 'm',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'e', 'q', 'n', 'a',
'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o',
'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'l', 'o', 'g', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 'w', 'l', 'o', 'g', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'g', 'e', 'n', 'a', 'n', '_', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'g', 'e', 'n',
'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w',
'l', 'o', 'g', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
'w', 'l', 'o', 'g', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'l', 'o', 'g', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'g', 't', 'n', 'a', 'n', '_',
'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'l',
'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o',
'l', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w',
'l', 'o', 'l', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'f', 'm', 'k', 'w', 'l', 'o', 'l', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'l', 't', '_', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'l', 't', '_',
'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'l',
't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
'w', 'l', 'o', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'n', 'a', 'n', '_', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'n', 'a', 'n', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'n', 'e',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'n',
'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l',
'o', 'n', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'l', 'o', 'n', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'n', 'u', 'm', '_', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 'o', 'n', 'u', 'm',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 't',
'_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 't',
'_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'l', 't', 'n',
'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w',
'l', 't', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 'w', 'n', 'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'n', 'e', '_', 'M', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'n', 'e', '_', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 'w', 'n', 'e', 'n', 'a', 'n', '_', 'M', 'v', 'M', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 'w', 'n', 'e', 'n', 'a', 'n', '_', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 'm', 'k', 'w', 'n', 'u', 'm', '_', 'M', 'v', 'M', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'n', 'u', 'm', '_', 'M', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'e', 'q', '_', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'e', 'q', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'e', 'q',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w',
'u', 'p', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 'w', 'u', 'p', 'g', 'e', '_', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'g', 'e', '_', 'm', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'g', 'e', 'n', 'a', 'n',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'g',
'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 'w', 'u', 'p', 'g', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'u', 'p', 'g', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 'w', 'u', 'p', 'g', 't', 'n', 'a', 'n', '_', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'g', 't', 'n', 'a',
'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u',
'p', 'l', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w',
'u', 'p', 'l', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm',
'k', 'w', 'u', 'p', 'l', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'l', 'e', 'n', 'a', 'n', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'l', 't',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'l',
't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u',
'p', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'm', 'k', 'w', 'u', 'p', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'n', 'a', 'n', '_', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'n', 'a', 'n',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p',
'n', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u',
'p', 'n', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k',
'w', 'u', 'p', 'n', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'm', 'k', 'w', 'u', 'p', 'n', 'e', 'n', 'a', 'n', '_', 'm', 'v',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'n', 'u', 'm',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'k', 'w', 'u', 'p', 'n',
'u', 'm', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's', 'b',
'_', 'v', 's', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's',
'b', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's', 'b',
'_', 'v', 's', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's', 'b',
'_', 'v', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's',
'b', '_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's', 'b',
'_', 'v', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's', 'b',
'_', 'v', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's',
'b', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 's', 'b',
'_', 'v', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'u', 'l',
'_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'u', 'l',
'_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'u', 'l', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'u', 'l', '_', 'v', 'v',
'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'u', 'l', '_', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 'm', 'u', 'l', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 'a', 'd', '_', 'v', 's', 'v', 'v',
'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 'a', 'd', '_', 'v', 's',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 'a', 'd', '_', 'v', 's',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 'a', 'd', '_', 'v',
'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 'a', 'd',
'_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 'a', 'd',
'_', 'v', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 'a',
'd', '_', 'v', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n',
'm', 'a', 'd', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n',
'm', 'a', 'd', '_', 'v', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f',
'n', 'm', 's', 'b', '_', 'v', 's', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 's', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 'v', 's', 'v', 'M', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 'v', 's', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'p', 'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 'v', 'v', 'v',
'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 'n', 'm', 's', 'b', '_', 'v', 'v',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 's', 'u', 'b', '_', 'v', 's',
'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'f', 's', 'u', 'b', '_', 'v', 's',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'f', 's', 'u', 'b', '_', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 's', 'u', 'b', '_', 'v', 'v', 'v', 'M', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'f', 's', 'u', 'b', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'f', 's', 'u', 'b', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'm', 'a', 'x', 's', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'm', 'a', 'x', 's', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'm', 'a', 'x', 's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm',
'a', 'x', 's', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm',
'a', 'x', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm', 'a', 'x',
's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm', 'i', 'n', 's',
'_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm', 'i', 'n', 's',
'_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm', 'i', 'n', 's', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm', 'i', 'n', 's', '_', 'v', 'v',
'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'm', 'i', 'n', 's', '_', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'm', 'i', 'n', 's', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'o', 'r', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 'o', 'r', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'o',
'r', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'o', 'r', '_', 'v',
'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'o', 'r', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'o', 'r', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'r', 'c', 'p', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'r', 'c',
'p', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'r', 's', 'q', 'r', 't',
'_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'r', 's', 'q', 'r', 't', '_', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 'r', 's', 'q', 'r', 't', 'n', 'e', 'x',
'_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'r', 's', 'q', 'r', 't', 'n', 'e',
'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'e', 'q', '_', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 's', 'e', 'q', '_', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 's', 'e', 'q', 'l', 'o', '_', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'e',
'q', 'l', 'o', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'e', 'q', 'u',
'p', '_', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'e', 'q', 'u', 'p', '_', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 's', 'l', 'a', '_', 'v', 'v', 's', 'M', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 's', 'l', 'a', '_', 'v', 'v', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 's', 'l', 'a', '_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
's', 'l', 'a', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's',
'l', 'a', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'l', 'a', '_',
'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'l', 'l', '_', 'v', 'v',
's', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'l', 'l', '_', 'v', 'v', 's',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 's', 'l', 'l', '_', 'v', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 's', 'l', 'l', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 's', 'l', 'l', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's',
'l', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'r', 'a',
'_', 'v', 'v', 's', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'r', 'a', '_',
'v', 'v', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'r', 'a', '_', 'v', 'v', 's',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 's', 'r', 'a', '_', 'v', 'v', 'v', 'M', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 's', 'r', 'a', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 's', 'r', 'a', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
's', 'r', 'l', '_', 'v', 'v', 's', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's',
'r', 'l', '_', 'v', 'v', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'r', 'l', '_',
'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'r', 'l', '_', 'v', 'v',
'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'r', 'l', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 's', 'r', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 's', 'u', 'b', 's', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'p', 'v', 's', 'u', 'b', 's', '_', 'v', 's', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p',
'v', 's', 'u', 'b', 's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
's', 'u', 'b', 's', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
's', 'u', 'b', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'u',
'b', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'u', 'b',
'u', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'u', 'b',
'u', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'u', 'b', 'u', '_',
'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'u', 'b', 'u', '_', 'v',
'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'u', 'b', 'u', '_', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'p', 'v', 's', 'u', 'b', 'u', '_', 'v', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'p', 'v', 'x', 'o', 'r', '_', 'v', 's', 'v', 'M', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'p', 'v', 'x', 'o', 'r', '_', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'p', 'v', 'x', 'o', 'r', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v',
'x', 'o', 'r', '_', 'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'x',
'o', 'r', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'p', 'v', 'x', 'o', 'r', '_',
'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 's', 'v', 'm', '_', 's', 'M', 's', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 's', 'v', 'm', '_', 's', 'm', 's', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 's', 'v', 'o', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 't', 'o', 'v', 'm', '_', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd',
's', 'l', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'l',
'_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'l',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'l', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'l', '_', 'v', 'v',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'l', '_', 'v', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'w', 's', 'x', '_', 'v',
's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'w', 's', 'x', '_', 'v',
's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'w', 's', 'x',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'w', 's',
'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's', 'w', 's',
'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 's',
'w', 's', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd',
's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd',
's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a',
'd', 'd', 's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'a', 'd', 'd', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'a', 'd', 'd', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'a', 'd', 'd', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'a', 'd', 'd', 'u', 'l', '_', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'a', 'd', 'd', 'u', 'l', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'a', 'd', 'd', 'u', 'l', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'a', 'd', 'd', 'u', 'l', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd',
'd', 'u', 'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd',
'd', 'u', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd',
'u', 'w', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 'u', 'w',
'_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 'u', 'w',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 'u', 'w', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 'u', 'w', '_', 'v', 'v',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'd', 'd', 'u', 'w', '_', 'v', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'a', 'n', 'd', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'a', 'n', 'd', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'a', 'n', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'n', 'd',
'_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'a', 'n', 'd', '_', 'v', 'v', 'v',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'a', 'n', 'd', '_', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'b', 'r', 'd', 'd', '_', 'v', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'b',
'r', 'd', 'd', '_', 'v', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'b', 'r', 'd',
'd', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'b', 'r', 'd', 'l', '_', 'v',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'b', 'r', 'd', 'l', '_', 'v', 's', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'b', 'r', 'd', 'l', '_', 'v', 's', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'b', 'r', 'd', 's', '_', 'v', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'b', 'r', 'd', 's',
'_', 'v', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'b', 'r', 'd', 's', '_', 'v',
's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'b', 'r', 'd', 'w', '_', 'v', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'b', 'r', 'd', 'w', '_', 'v', 's', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'b', 'r', 'd', 'w', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p',
's', 'l', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'l',
'_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'l',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'l', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'l', '_', 'v', 'v',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'l', '_', 'v', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'w', 's', 'x', '_', 'v',
's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'w', 's', 'x', '_', 'v',
's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'w', 's', 'x',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'w', 's',
'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's', 'w', 's',
'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 's',
'w', 's', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p',
's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p',
's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c',
'm', 'p', 's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'c', 'm', 'p', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'c', 'm', 'p', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'c', 'm', 'p', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'c', 'm', 'p', 'u', 'l', '_', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'c', 'm', 'p', 'u', 'l', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'c', 'm', 'p', 'u', 'l', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'c', 'm', 'p', 'u', 'l', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm',
'p', 'u', 'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm',
'p', 'u', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p',
'u', 'w', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 'u', 'w',
'_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 'u', 'w',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 'u', 'w', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 'u', 'w', '_', 'v', 'v',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'm', 'p', 'u', 'w', '_', 'v', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'c', 'p', '_', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'c', 'v', 't', 'd', 'l', '_', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c',
'v', 't', 'd', 'l', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't',
'd', 's', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'd', 's', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'd', 'w', '_', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'c', 'v', 't', 'd', 'w', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'c', 'v', 't', 'l', 'd', '_', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c',
'v', 't', 'l', 'd', '_', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v',
't', 'l', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'l',
'd', 'r', 'z', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'l', 'd',
'r', 'z', '_', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'l',
'd', 'r', 'z', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 's',
'd', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 's', 'd', '_', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 's', 'w', '_', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'c', 'v', 't', 's', 'w', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'c', 'v', 't', 'w', 'd', 's', 'x', '_', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'c', 'v', 't', 'w', 'd', 's', 'x', '_', 'v', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'c', 'v', 't', 'w', 'd', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'c', 'v', 't', 'w', 'd', 's', 'x', 'r', 'z', '_', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'c', 'v', 't', 'w', 'd', 's', 'x', 'r', 'z', '_', 'v', 'v', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 'd', 's', 'x', 'r', 'z', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 'd', 'z', 'x', '_',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 'd', 'z', 'x', '_', 'v',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 'd', 'z', 'x', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 'd', 'z', 'x', 'r',
'z', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 'd', 'z', 'x',
'r', 'z', '_', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w',
'd', 'z', 'x', 'r', 'z', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v',
't', 'w', 's', 's', 'x', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't',
'w', 's', 's', 'x', '_', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v',
't', 'w', 's', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v',
't', 'w', 's', 's', 'x', 'r', 'z', '_', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c',
'v', 't', 'w', 's', 's', 'x', 'r', 'z', '_', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'c', 'v', 't', 'w', 's', 's', 'x', 'r', 'z', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 's', 'z', 'x', '_', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'c', 'v', 't', 'w', 's', 'z', 'x', '_', 'v', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 's', 'z', 'x', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 's', 'z', 'x', 'r', 'z', '_', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 's', 'z', 'x', 'r', 'z', '_',
'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'c', 'v', 't', 'w', 's', 'z', 'x',
'r', 'z', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'l',
'_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v',
's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v', 'v',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v', 'v', 's', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'd', 'i', 'v', 's', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_', 'v', 'v', 's',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_', 'v', 'v', 's',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_', 'v',
'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 's', 'x', '_',
'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 's',
'x', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w',
'z', 'x', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 's', 'w',
'z', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v',
's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i',
'v', 's', 'w', 'z', 'x', '_', 'v', 'v', 's', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i',
'v', 's', 'w', 'z', 'x', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'd', 'i', 'v', 's', 'w', 'z', 'x', '_', 'v', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'd', 'i', 'v', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'd', 'i', 'v', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'd', 'i', 'v', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'l', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'd', 'i', 'v', 'u', 'l', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'd', 'i', 'v', 'u', 'l', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'd', 'i', 'v', 'u', 'l', '_', 'v', 'v', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd',
'i', 'v', 'u', 'l', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd',
'i', 'v', 'u', 'l', '_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i',
'v', 'u', 'l', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u',
'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u',
'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'w',
'_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v',
's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v', 'v',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v', 'v', 's', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'd', 'i', 'v', 'u', 'w', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'e', 'q', 'v', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'e', 'q', 'v',
'_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'e', 'q', 'v', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'e', 'q', 'v', '_', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'e', 'q', 'v', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'e', 'q', 'v', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'e', 'x',
'_', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'a', 'd', 'd', 'd', '_',
'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'a', 'd', 'd', 'd', '_', 'v', 's',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'a', 'd', 'd', 'd', '_', 'v', 's',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'a', 'd', 'd', 'd', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'a', 'd', 'd', 'd', '_', 'v', 'v', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'a', 'd', 'd', 'd', '_', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'a', 'd', 'd', 's', '_', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'a', 'd', 'd', 's', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'a', 'd', 'd', 's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'a', 'd', 'd', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'a',
'd', 'd', 's', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'a',
'd', 'd', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'c', 'm',
'p', 'd', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 'd',
'_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 'd',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 'd', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 'd', '_', 'v', 'v',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 'd', '_', 'v', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 's', '_', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 's', '_', 'v', 's', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'c', 'm', 'p', 's', '_', 'v', 's', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'c', 'm', 'p', 's', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'c', 'm', 'p', 's', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'c', 'm', 'p', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'd', 'i', 'v', 'd', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd',
'i', 'v', 'd', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd',
'i', 'v', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd', 'i',
'v', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 'd',
'_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 'd',
'_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 's', '_',
'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 's', '_', 'v', 's',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 's', '_', 'v', 's',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 's', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 's', '_', 'v', 'v', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'd', 'i', 'v', 's', '_', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 's', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 's', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 'v', 's', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 'v', 's', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 's', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 's', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 's', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 'v', 's', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 'v', 's', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 'v', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'd', 's', '_', 'v', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'a', 'x', 'd', '_', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'a', 'x', 'd', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'a', 'x', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'm', 'a', 'x', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'a', 'x', 'd', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'a', 'x', 'd', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'a',
'x', 's', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'a', 'x', 's',
'_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'a', 'x', 's',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'a', 'x', 's', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'a', 'x', 's', '_', 'v', 'v',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'a', 'x', 's', '_', 'v', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'i', 'n', 'd', '_', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'm', 'i', 'n', 'd', '_', 'v', 's', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'm', 'i', 'n', 'd', '_', 'v', 's', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'm', 'i', 'n', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'i', 'n', 'd', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'i', 'n', 'd', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'm', 'i', 'n', 's', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'i', 'n', 's', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'i', 'n', 's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'i',
'n', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'i', 'n', 's',
'_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'i', 'n', 's',
'_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'e', 'q',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'e', 'q', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'e', 'q', 'n', 'a', 'n',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'e', 'q', 'n', 'a',
'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 'e',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 'e', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 'e', 'n', 'a', 'n',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 'e', 'n', 'a',
'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 't',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 't', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 't', 'n', 'a', 'n',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'g', 't', 'n', 'a',
'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 'e',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 'e', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 'e', 'n', 'a', 'n',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 'e', 'n', 'a',
'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 't',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 't', '_', 'm',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 't', 'n', 'a', 'n',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'l', 't', 'n', 'a',
'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'a',
'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'a', 'n',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'e', '_',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'e', '_', 'm', 'v',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'e', 'n', 'a', 'n', '_',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'e', 'n', 'a', 'n',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'u', 'm',
'_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'd', 'n', 'u', 'm', '_',
'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'l', 'a', 'f', '_', 'm',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'm', 'k', 'l', 'a', 't', '_', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'k', 'l', 'e', 'q', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'e', 'q', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 'l', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'k', 'l', 'g', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'g', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 'l', 'g', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'g', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'k', 'l', 'g', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'g', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 'l', 'g', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'g', 't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'k', 'l', 'l', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'l', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 'l', 'l', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'l', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'k', 'l', 'l', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'l', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 'l', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'k', 'l', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'm', 'k', 'l', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'm', 'k', 'l', 'n', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 'l', 'n', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
'l', 'n', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 'l', 'n', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'm', 'k', 'l', 'n', 'u', 'm', '_', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 'l', 'n', 'u', 'm', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 's', 'e', 'q', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'e', 'q', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's',
'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'e', 'q', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 's', 'g', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'g', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's',
'g', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'g', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 's', 'g', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'g', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's',
'g', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'g', 't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 's', 'l', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'l', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's',
'l', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'l', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 's', 'l', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'l', 't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's',
'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'l', 't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'k', 's', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 's', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 's', 'n', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's',
'n', 'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's', 'n',
'e', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 's',
'n', 'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm',
'k', 's', 'n', 'u', 'm', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
's', 'n', 'u', 'm', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
'w', 'e', 'q', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'e',
'q', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'e', 'q',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'e',
'q', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
'w', 'g', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'g',
'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'g', 'e',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'g',
'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
'w', 'g', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'g',
't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'g', 't',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'g',
't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
'w', 'l', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'l',
'e', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'l', 'e',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'l',
'e', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
'w', 'l', 't', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'l',
't', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'l', 't',
'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'l',
't', 'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k',
'w', 'n', 'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w',
'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w',
'n', 'e', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'n', 'e',
'_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'n', 'e', 'n',
'a', 'n', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'n', 'e',
'n', 'a', 'n', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w',
'n', 'u', 'm', '_', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'k', 'w', 'n',
'u', 'm', '_', 'm', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd', '_',
'v', 's', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd',
'_', 'v', 's', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd',
'_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd', '_',
'v', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd',
'_', 'v', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd',
'_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd', '_',
'v', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 'd',
'_', 'v', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's',
'_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's', '_',
'v', 's', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's',
'_', 'v', 's', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's',
'_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's', '_',
'v', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's',
'_', 'v', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's',
'_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's', '_',
'v', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 's', 'b', 's',
'_', 'v', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'u', 'l', 'd',
'_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'u', 'l', 'd', '_', 'v',
's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'u', 'l', 'd', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'm', 'u', 'l', 'd', '_', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 'm', 'u', 'l', 'd', '_', 'v', 'v', 'v', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 'm', 'u', 'l', 'd', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'm', 'u', 'l', 's', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'u', 'l', 's', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'm', 'u', 'l', 's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'm', 'u', 'l', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'u', 'l', 's', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'm', 'u', 'l', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n',
'm', 'a', 'd', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n',
'm', 'a', 'd', 'd', '_', 'v', 's', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'n', 'm', 'a', 'd', 'd', '_', 'v', 's', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'n', 'm', 'a', 'd', 'd', '_', 'v', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'n', 'm', 'a', 'd', 'd', '_', 'v', 'v', 's', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'n', 'm', 'a', 'd', 'd', '_', 'v', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd', 'd', '_', 'v', 'v', 'v', 'v',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd', 'd', '_', 'v', 'v',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd', 's', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd', 's', '_', 'v',
's', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd', 's',
'_', 'v', 's', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd',
's', '_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 'a', 'd',
's', '_', 'v', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm',
'a', 'd', 's', '_', 'v', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n',
'm', 'a', 'd', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n',
'm', 'a', 'd', 's', '_', 'v', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'n', 'm', 'a', 'd', 's', '_', 'v', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v', 's', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v', 's', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v', 'v', 's', 'v',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 'd', '_', 'v',
'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 'd',
'_', 'v', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b',
's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm', 's', 'b',
's', '_', 'v', 's', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n', 'm',
's', 'b', 's', '_', 'v', 's', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n',
'm', 's', 'b', 's', '_', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'n',
'm', 's', 'b', 's', '_', 'v', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'f', 'n', 'm', 's', 'b', 's', '_', 'v', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'n', 'm', 's', 'b', 's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'n', 'm', 's', 'b', 's', '_', 'v', 'v', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'f', 'n', 'm', 's', 'b', 's', '_', 'v', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'r', 'm', 'a', 'x', 'd', 'f', 's', 't', '_', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'a', 'x', 'd', 'f', 's', 't', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'a', 'x', 'd', 'l', 's',
't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'a', 'x', 'd', 'l',
's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'a', 'x',
's', 'f', 's', 't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'a',
'x', 's', 'f', 's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r',
'm', 'a', 'x', 's', 'l', 's', 't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
'r', 'm', 'a', 'x', 's', 'l', 's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 'r', 'm', 'i', 'n', 'd', 'f', 's', 't', '_', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 'r', 'm', 'i', 'n', 'd', 'f', 's', 't', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 'r', 'm', 'i', 'n', 'd', 'l', 's', 't', '_', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'i', 'n', 'd', 'l', 's', 't', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'i', 'n', 's', 'f', 's',
't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'i', 'n', 's', 'f',
's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'i', 'n',
's', 'l', 's', 't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 'r', 'm', 'i',
'n', 's', 'l', 's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's',
'q', 'r', 't', 'd', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'q', 'r',
't', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'q', 'r', 't',
's', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'q', 'r', 't', 's', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'b', 'd', '_', 'v', 's',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'b', 'd', '_', 'v', 's', 'v', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'b', 'd', '_', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'f', 's', 'u', 'b', 'd', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 's', 'u', 'b', 'd', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 's', 'u', 'b', 'd', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'f', 's', 'u', 'b', 's', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
's', 'u', 'b', 's', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f',
's', 'u', 'b', 's', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's',
'u', 'b', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'b',
's', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'b',
's', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'm', 'd',
'_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'm', 'd', '_', 'v', 'v',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'f', 's', 'u', 'm', 's', '_', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'f', 's', 'u', 'm', 's', '_', 'v', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'g', 't', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', '_', 'v',
'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', '_', 'v', 'v', 's', 's',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'g', 't', '_', 'v', 'v', 's', 's', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'g', 't', 'l', 's', 'x', '_', 'v', 'v', 's', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'g', 't', 'l', 's', 'x', '_', 'v', 'v', 's', 's', 'm', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'g', 't', 'l', 's', 'x', '_', 'v', 'v', 's', 's', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'g', 't', 'l', 's', 'x', '_', 'v', 'v', 's', 's', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'g', 't', 'l', 's', 'x', 'n', 'c', '_', 'v', 'v', 's', 's',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'g', 't', 'l', 's', 'x', 'n', 'c', '_', 'v', 'v', 's',
's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l', 's', 'x', 'n', 'c', '_', 'v',
'v', 's', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l', 's', 'x', 'n',
'c', '_', 'v', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l', 'z',
'x', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l', 'z', 'x',
'_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l', 'z', 'x',
'_', 'v', 'v', 's', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l', 'z',
'x', '_', 'v', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l', 'z',
'x', 'n', 'c', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'l',
'z', 'x', 'n', 'c', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g',
't', 'l', 'z', 'x', 'n', 'c', '_', 'v', 'v', 's', 's', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'g', 't', 'l', 'z', 'x', 'n', 'c', '_', 'v', 'v', 's', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'g', 't', 'n', 'c', '_', 'v', 'v', 's', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'g', 't', 'n', 'c', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'g', 't', 'n', 'c', '_', 'v', 'v', 's', 's', 'm', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'g', 't', 'n', 'c', '_', 'v', 'v', 's', 's', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'g', 't', 'u', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'u',
'_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'u', '_', 'v',
'v', 's', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'u', '_', 'v', 'v',
's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'u', 'n', 'c', '_', 'v', 'v',
's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'u', 'n', 'c', '_', 'v', 'v', 's',
's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'u', 'n', 'c', '_', 'v', 'v', 's',
's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'g', 't', 'u', 'n', 'c', '_', 'v', 'v',
's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', '_', 'v', 's', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'l', 'd', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd',
'2', 'd', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', '2', 'd', '_',
'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', '2', 'd', 'n', 'c', '_',
'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', '2', 'd', 'n', 'c', '_', 'v',
's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', 'l', '2', 'd', 's', 'x', '_',
'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', 'l', '2', 'd', 's', 'x', '_',
'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', 'l', '2', 'd', 's', 'x',
'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', 'l', '2', 'd',
's', 'x', 'n', 'c', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd',
'l', '2', 'd', 'z', 'x', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd',
'l', '2', 'd', 'z', 'x', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l',
'd', 'l', '2', 'd', 'z', 'x', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'l', 'd', 'l', '2', 'd', 'z', 'x', 'n', 'c', '_', 'v', 's', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'l', 'd', 'l', 's', 'x', '_', 'v', 's', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'l', 'd', 'l', 's', 'x', '_', 'v', 's', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'l', 'd', 'l', 's', 'x', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'l', 'd', 'l', 's', 'x', 'n', 'c', '_', 'v', 's', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'l', 'd', 'l', 'z', 'x', '_', 'v', 's', 's', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'l', 'd', 'l', 'z', 'x', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l',
'd', 'l', 'z', 'x', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l',
'd', 'l', 'z', 'x', 'n', 'c', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'l', 'd', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', 'n',
'c', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l', 'd', 'u', '_', 'v',
's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'l', 'd', 'u', '_', 'v', 's', 's', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'l', 'd', 'u', '2', 'd', '_', 'v', 's', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'l', 'd', 'u', '2', 'd', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'l', 'd', 'u', '2', 'd', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'l', 'd', 'u', '2', 'd', 'n', 'c', '_', 'v', 's', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'l', 'd', 'u', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'l',
'd', 'u', 'n', 'c', '_', 'v', 's', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a',
'x', 's', 'l', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's',
'l', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's',
'l', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'l',
'_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'l', '_', 'v',
'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'l', '_', 'v',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'w', 's', 'x', '_',
'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'w', 's', 'x', '_',
'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'w', 's',
'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'w',
's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x', 's', 'w',
's', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a', 'x',
's', 'w', 's', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a',
'x', 's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'a',
'x', 's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'm', 'a', 'x', 's', 'w', 'z', 'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'a', 'x', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'a', 'x', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'm', 'a', 'x', 's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'i', 'n', 's', 'l', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'm', 'i', 'n', 's', 'l', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'm', 'i', 'n', 's', 'l', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'i', 'n', 's', 'l', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm',
'i', 'n', 's', 'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm',
'i', 'n', 's', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'i',
'n', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'i',
'n', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'm', 'i', 'n', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'i', 'n', 's', 'w', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'i', 'n', 's', 'w', 's', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'm', 'i', 'n', 's', 'w', 's', 'x', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'i', 'n', 's', 'w', 'z', 'x', '_', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'i', 'n', 's', 'w', 'z', 'x', '_', 'v', 's', 'v',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'm', 'i', 'n', 's', 'w', 'z', 'x', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'i', 'n', 's', 'w', 'z', 'x', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'i', 'n', 's', 'w', 'z', 'x', '_',
'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'i', 'n', 's', 'w', 'z',
'x', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'r', 'g', '_', 'v',
's', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'r', 'g', '_', 'v', 's', 'v', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'm', 'r', 'g', '_', 'v', 'v', 'v', 'm', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'm', 'r', 'g', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'm', 'r', 'g', 'w', '_', 'v', 's', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'r',
'g', 'w', '_', 'v', 's', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'r', 'g',
'w', '_', 'v', 'v', 'v', 'M', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'r', 'g', 'w', '_',
'v', 'v', 'v', 'M', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'l', '_',
'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'l', '_', 'v', 's',
'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'l', '_', 'v', 's',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'l', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'l', '_', 'v', 'v', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'l', '_', 'v', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'm', 'u', 'l', 's', 'l', 'w', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'm', 'u', 'l', 's', 'l', 'w', '_', 'v', 's', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'm', 'u', 'l', 's', 'l', 'w', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'u', 'l', 's', 'l', 'w', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'u', 'l', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'u', 'l', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'm', 'u', 'l', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w', 's', 'x', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w', 's', 'x', '_', 'v', 'v', 'v',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w', 's', 'x', '_', 'v',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w', 'z', 'x', '_',
'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w', 'z', 'x', '_',
'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w', 'z',
'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w',
'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 's', 'w',
'z', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l',
's', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u',
'l', 'u', 'l', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u',
'l', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u',
'l', '_', 'v', 's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u', 'l',
'_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u', 'l', '_', 'v',
'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u', 'l', '_', 'v',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u', 'w', '_', 'v', 's',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u', 'w', '_', 'v', 's', 'v', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'm', 'u', 'l', 'u', 'w', '_', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'm', 'u', 'l', 'u', 'w', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'm', 'u', 'l', 'u', 'w', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'm', 'u', 'l', 'u', 'w', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'm', 'v', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'v', '_', 'v',
's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'm', 'v', '_', 'v', 's', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'o', 'r', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'o',
'r', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'o', 'r', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'o', 'r', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'o', 'r', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'o',
'r', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'a', 'n', 'd', '_',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'r', 'a', 'n', 'd', '_', 'v', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'r', 'c', 'p', 'd', '_', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r',
'c', 'p', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'c', 'p', 's',
'_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'c', 'p', 's', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's', 'l', 'f', 's', 't', '_', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's', 'l', 'f', 's', 't', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's', 'l', 'l', 's',
't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's', 'l', 'l',
's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's',
'w', 'f', 's', 't', 's', 'x', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm',
'a', 'x', 's', 'w', 'f', 's', 't', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'r', 'm', 'a', 'x', 's', 'w', 'f', 's', 't', 'z', 'x', '_', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's', 'w', 'f', 's', 't', 'z',
'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's', 'w',
'l', 's', 't', 's', 'x', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'a',
'x', 's', 'w', 'l', 's', 't', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'r', 'm', 'a', 'x', 's', 'w', 'l', 's', 't', 'z', 'x', '_', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 'r', 'm', 'a', 'x', 's', 'w', 'l', 's', 't', 'z', 'x',
'_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'i', 'n', 's', 'l', 'f',
's', 't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'i', 'n', 's', 'l',
'f', 's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'i', 'n',
's', 'l', 'l', 's', 't', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'i',
'n', 's', 'l', 'l', 's', 't', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r',
'm', 'i', 'n', 's', 'w', 'f', 's', 't', 's', 'x', '_', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'r', 'm', 'i', 'n', 's', 'w', 'f', 's', 't', 's', 'x', '_', 'v',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'i', 'n', 's', 'w', 'f', 's', 't',
'z', 'x', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'i', 'n', 's', 'w',
'f', 's', 't', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm',
'i', 'n', 's', 'w', 'l', 's', 't', 's', 'x', '_', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'r', 'm', 'i', 'n', 's', 'w', 'l', 's', 't', 's', 'x', '_', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 'r', 'm', 'i', 'n', 's', 'w', 'l', 's', 't', 'z',
'x', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'm', 'i', 'n', 's', 'w', 'l',
's', 't', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'o', 'r',
'_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 'r', 'o', 'r', '_', 'v', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'r', 's', 'q', 'r', 't', 'd', '_', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'r', 's', 'q', 'r', 't', 'd', '_', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'r', 's', 'q', 'r', 't', 'd', 'n', 'e', 'x', '_', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'r', 's', 'q', 'r', 't', 'd', 'n', 'e', 'x', '_', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'r', 's', 'q', 'r', 't', 's', '_', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'r', 's', 'q', 'r', 't', 's', '_', 'v', 'v', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'r', 's', 'q', 'r', 't', 's', 'n', 'e', 'x', '_', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 'r', 's', 'q', 'r', 't', 's', 'n', 'e', 'x', '_', 'v', 'v', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 'r', 'x', 'o', 'r', '_', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'r',
'x', 'o', 'r', '_', 'v', 'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', '_', 'v',
'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', '_', 'v', 'v', 's', 's', 'm',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'c', 'l', '_', 'v', 'v', 's', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'c', 'l', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'c', 'l', 'n', 'c', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c',
'l', 'n', 'c', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c',
'l', 'n', 'c', 'o', 't', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'c', 'l', 'n', 'c', 'o', 't', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'c', 'l', 'o', 't', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
's', 'c', 'l', 'o', 't', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
's', 'c', 'n', 'c', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c',
'n', 'c', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', 'n',
'c', 'o', 't', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', 'n',
'c', 'o', 't', '_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c',
'o', 't', '_', 'v', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', 'o', 't',
'_', 'v', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', 'u', '_', 'v',
'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', 'u', '_', 'v', 'v', 's', 's',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 'c', 'u', 'n', 'c', '_', 'v', 'v', 's', 's',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'c', 'u', 'n', 'c', '_', 'v', 'v', 's', 's', 'm',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'c', 'u', 'n', 'c', 'o', 't', '_', 'v', 'v', 's',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 'c', 'u', 'n', 'c', 'o', 't', '_', 'v', 'v',
's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'c', 'u', 'o', 't', '_', 'v', 'v',
's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 'c', 'u', 'o', 't', '_', 'v', 'v', 's',
's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 'e', 'q', '_', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
's', 'e', 'q', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'f', 'a', '_', 'v',
'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'f', 'a', '_', 'v', 'v', 's', 's',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 'f', 'a', '_', 'v', 'v', 's', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'h', 'f', '_', 'v', 'v', 'v', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'h', 'f', '_', 'v', 'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'l', 'a', 'l', '_', 'v', 'v', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'l', 'a', 'l',
'_', 'v', 'v', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'l', 'a', 'l', '_',
'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'l', 'a', 'l', '_', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 'l', 'a', 'l', '_', 'v', 'v', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'l', 'a', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 's', 'x', '_', 'v', 'v', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'l', 'a', 'w', 's', 'x', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 's', 'x', '_', 'v', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'l', 'a', 'w', 's', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 's', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 'z', 'x', '_', 'v', 'v', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'l', 'a', 'w', 'z', 'x', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 'z', 'x', '_', 'v', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'l', 'a', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'a', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'l', '_', 'v', 'v', 's', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'l',
'l', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'l', 'l', '_',
'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'l', 'l', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'l', 'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'l', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'r', 'a', 'l', '_', 'v', 'v', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'r', 'a', 'l',
'_', 'v', 'v', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'r', 'a', 'l', '_',
'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'r', 'a', 'l', '_', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 'r', 'a', 'l', '_', 'v', 'v', 'v', 'm', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'r', 'a', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 's', 'x', '_', 'v', 'v', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'r', 'a', 'w', 's', 'x', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 's', 'x', '_', 'v', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'r', 'a', 'w', 's', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 's', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 'z', 'x', '_', 'v', 'v', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'r', 'a', 'w', 'z', 'x', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 'z', 'x', '_', 'v', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'r', 'a', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'a', 'w', 'z', 'x', '_', 'v', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'l', '_', 'v', 'v', 's', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'r',
'l', '_', 'v', 'v', 's', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'r', 'l', '_',
'v', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'r', 'l', '_', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'r', 'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'r', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
't', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', '_', 'v', 's', 's',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 't', '2', 'd', '_', 'v', 's', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 't', '2', 'd', '_', 'v', 's', 's', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
's', 't', '2', 'd', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
't', '2', 'd', 'n', 'c', '_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
't', '2', 'd', 'n', 'c', 'o', 't', '_', 'v', 's', 's', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
's', 't', '2', 'd', 'n', 'c', 'o', 't', '_', 'v', 's', 's', 'm', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 't', '2', 'd', 'o', 't', '_', 'v', 's', 's', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 't', '2', 'd', 'o', 't', '_', 'v', 's', 's', 'm', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 't', 'l', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l',
'_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', '2', 'd', '_',
'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', '2', 'd', '_', 'v', 's',
's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', '2', 'd', 'n', 'c', '_', 'v',
's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', '2', 'd', 'n', 'c', '_', 'v',
's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', '2', 'd', 'n', 'c', 'o',
't', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', '2', 'd', 'n',
'c', 'o', 't', '_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l',
'2', 'd', 'o', 't', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l',
'2', 'd', 'o', 't', '_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't',
'l', 'n', 'c', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', 'n',
'c', '_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', 'n', 'c',
'o', 't', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', 'n', 'c',
'o', 't', '_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', 'o',
't', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'l', 'o', 't', '_',
'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'n', 'c', '_', 'v', 's',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 't', 'n', 'c', '_', 'v', 's', 's', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 's', 't', 'n', 'c', 'o', 't', '_', 'v', 's', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 't', 'n', 'c', 'o', 't', '_', 'v', 's', 's', 'm', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 't', 'o', 't', '_', 'v', 's', 's', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
't', 'o', 't', '_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u',
'_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', '_', 'v', 's', 's',
'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 't', 'u', '2', 'd', '_', 'v', 's', 's', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 's', 't', 'u', '2', 'd', '_', 'v', 's', 's', 'm', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 't', 'u', '2', 'd', 'n', 'c', '_', 'v', 's', 's', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 't', 'u', '2', 'd', 'n', 'c', '_', 'v', 's', 's', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 's', 't', 'u', '2', 'd', 'n', 'c', 'o', 't', '_', 'v', 's',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 't', 'u', '2', 'd', 'n', 'c', 'o', 't', '_',
'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', '2', 'd', 'o', 't',
'_', 'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', '2', 'd', 'o', 't',
'_', 'v', 's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', 'n', 'c', '_',
'v', 's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', 'n', 'c', '_', 'v', 's',
's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', 'n', 'c', 'o', 't', '_', 'v',
's', 's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', 'n', 'c', 'o', 't', '_', 'v',
's', 's', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 't', 'u', 'o', 't', '_', 'v', 's',
's', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 't', 'u', 'o', 't', '_', 'v', 's', 's', 'm',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'u', 'b', 's', 'l', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'u', 'b', 's', 'l', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'u', 'b', 's', 'l', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'u', 'b', 's', 'l', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'u', 'b', 's', 'l', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'u', 'b', 's', 'l', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u',
'b', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u',
'b', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
's', 'u', 'b', 's', 'w', 's', 'x', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'u', 'b', 's', 'w', 's', 'x', '_', 'v', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'u', 'b', 's', 'w', 's', 'x', '_', 'v', 'v', 'v', 'm', 'v', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 's', 'u', 'b', 's', 'w', 's', 'x', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'u', 'b', 's', 'w', 'z', 'x', '_', 'v', 's', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'u', 'b', 's', 'w', 'z', 'x', '_', 'v', 's', 'v',
'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 's', 'w', 'z', 'x', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 's', 'w', 'z', 'x', '_',
'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 's', 'w', 'z', 'x', '_',
'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 's', 'w', 'z',
'x', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 'u', 'l',
'_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 'u', 'l', '_', 'v',
's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 'u', 'l', '_', 'v',
's', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'b', 'u', 'l', '_', 'v', 'v',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 'u', 'b', 'u', 'l', '_', 'v', 'v', 'v', 'm',
'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e',
'_', 'v', 'l', '_', 'v', 's', 'u', 'b', 'u', 'l', '_', 'v', 'v', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'u', 'b', 'u', 'w', '_', 'v', 's', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'u', 'b', 'u', 'w', '_', 'v', 's', 'v', 'm', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 's', 'u', 'b', 'u', 'w', '_', 'v', 's', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'u', 'b', 'u', 'w', '_', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'u', 'b', 'u', 'w', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's',
'u', 'b', 'u', 'w', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u',
'm', 'l', '_', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'm', 'l', '_', 'v',
'v', 'm', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 's', 'u', 'm', 'w', 's', 'x', '_', 'v', 'v',
'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_',
'v', 'l', '_', 'v', 's', 'u', 'm', 'w', 's', 'x', '_', 'v', 'v', 'm', 'l',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v',
'l', '_', 'v', 's', 'u', 'm', 'w', 'z', 'x', '_', 'v', 'v', 'l', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_',
'v', 's', 'u', 'm', 'w', 'z', 'x', '_', 'v', 'v', 'm', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'x', 'o', 'r', '_', 'v', 's', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'x', 'o', 'r', '_',
'v', 's', 'v', 'm', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v', 'x', 'o', 'r', '_', 'v', 's',
'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v',
'e', '_', 'v', 'l', '_', 'v', 'x', 'o', 'r', '_', 'v', 'v', 'v', 'l', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l',
'_', 'v', 'x', 'o', 'r', '_', 'v', 'v', 'v', 'm', 'v', 'l', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'v',
'x', 'o', 'r', '_', 'v', 'v', 'v', 'v', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'v', 'e', '_', 'v', 'l', '_', 'x', 'o', 'r', 'm',
'_', 'M', 'M', 'M', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'v', 'e', '_', 'v', 'l', '_', 'x', 'o', 'r', 'm', '_', 'm', 'm', 'm', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'a', 'v', 'g', 'u', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', '2', 'i', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'f', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'f', 'a', 'd', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 'c', 'm',
'p', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'f', 'c', 'm', 'p', 'g', 'e', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 'c',
'm', 'p', 'g', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'f', 'm', 'a', 'x', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 'm', 'i',
'n', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'f', 'm', 'u', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 'r', 'c', 'p', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'f', 'r', 'c', 'p', 'i', 't', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 'r', 'c', 'p', 'i', 't',
'2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'f', 'r', 's', 'q', 'i', 't', '1', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 'r', 's',
'q', 'r', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'f', 's', 'u', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 's', 'u', 'b',
'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'i', '2', 'f', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l', 'h', 'r', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'f', '2', 'i', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'f', 'n', 'a', 'c', 'c', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'f', 'p', 'n', 'a', 'c', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'i', '2', 'f', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e',
's', 'd', 'e', 'c', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's', 'd', 'e', 'c', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'a', 'e', 's', 'd', 'e', 'c', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e',
's', 'd', 'e', 'c', 'l', 'a', 's', 't', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's',
'd', 'e', 'c', 'l', 'a', 's', 't', '2', '5', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's', 'd',
'e', 'c', 'l', 'a', 's', 't', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's', 'e', 'n',
'c', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'a', 'e', 's', 'e', 'n', 'c', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'a', 'e', 's', 'e', 'n', 'c', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's', 'e', 'n',
'c', 'l', 'a', 's', 't', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's', 'e', 'n', 'c',
'l', 'a', 's', 't', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's', 'e', 'n', 'c', 'l',
'a', 's', 't', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'a', 'e', 's', 'i', 'm', 'c', '1', '2',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'a', 'e', 's', 'k', 'e', 'y', 'g', 'e', 'n', 'a', 's', 's', 'i',
's', 't', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'a', 'd', 'd', 's', 'u', 'b', 'p', 'd', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'a', 'd', 'd', 's', 'u', 'b', 'p', 's', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'b', 'l', 'e', 'n', 'd', 'v', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'l', 'e',
'n', 'd', 'v', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd', '2',
'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd', '2', 'd', 'q', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 'p', 's', '2', 'd', 'q', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 't', 'p', 'd', '2', 'd', 'q', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v',
't', 't', 'p', 's', '2', 'd', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'p', 'p', 's',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'h', 'a', 'd', 'd', 'p', 'd', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'h',
'a', 'd', 'd', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'h', 's', 'u', 'b', 'p', 'd',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'h', 's', 'u', 'b', 'p', 's', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'l',
'd', 'd', 'q', 'u', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 'l', 'o', 'a',
'd', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'm', 'a', 's', 'k', 'l', 'o', 'a', 'd', 'p', 'd', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'm', 'a', 's', 'k', 'l', 'o', 'a', 'd', 'p', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm',
'a', 's', 'k', 'l', 'o', 'a', 'd', 'p', 's', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a',
's', 'k', 's', 't', 'o', 'r', 'e', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 's',
't', 'o', 'r', 'e', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 's',
't', 'o', 'r', 'e', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 's', 't', 'o', 'r',
'e', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 'x', 'p', 'd', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'm', 'a', 'x', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'i', 'n', 'p', 'd',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'm', 'i', 'n', 'p', 's', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'o',
'v', 'm', 's', 'k', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'o', 'v', 'm', 's',
'k', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 't', 'e', 's', 't', 'c', '2', '5',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 't', 'e', 's', 't', 'n', 'z', 'c', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
't', 'e', 's', 't', 'z', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', 'p', 's', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'r', 'o', 'u', 'n', 'd', 'p', 'd', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r',
'o', 'u', 'n', 'd', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's', 'q', 'r', 't',
'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', 'l', 'v', 'a',
'r', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', 'l', 'v', 'a', 'r', 'p',
'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', 'l', 'v', 'a', 'r',
'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', 'l', 'v', 'a', 'r', 'p', 's',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'v', 't', 'e', 's', 't', 'c', 'p', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 't',
'e', 's', 't', 'c', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 't', 'e', 's', 't',
'c', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'v', 't', 'e', 's', 't', 'c', 'p', 's', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 't', 'e', 's', 't', 'n', 'z', 'c', 'p', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 't', 'e',
's', 't', 'n', 'z', 'c', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 't', 'e', 's',
't', 'n', 'z', 'c', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 't', 'e', 's', 't', 'n', 'z', 'c',
'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 't', 'e', 's', 't', 'z', 'p', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 't', 'e', 's', 't', 'z', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 't', 'e',
's', 't', 'z', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 't', 'e', 's', 't', 'z', 'p', 's', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'z', 'e', 'r', 'o', 'a', 'l', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'z', 'e',
'r', 'o', 'u', 'p', 'p', 'e', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'd',
'_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'd', '_', 'd', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'g', 'a', 't', 'h', 'e', 'r', 'd', '_', 'p', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't',
'h', 'e', 'r', 'd', '_', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h',
'e', 'r', 'd', '_', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'd', '_',
'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'd', '_', 'q',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'g', 'a', 't', 'h', 'e', 'r', 'd', '_', 'q', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g',
'a', 't', 'h', 'e', 'r', 'q', '_', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r',
'q', '_', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'q', '_',
'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'q', '_', 'p', 'd', '2', '5',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'q', '_', 'p', 's', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a',
't', 'h', 'e', 'r', 'q', '_', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't',
'h', 'e', 'r', 'q', '_', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'q', '_',
'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 'l', 'o', 'a', 'd', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'm', 'a', 's', 'k', 'l', 'o', 'a', 'd', 'd', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a',
's', 'k', 'l', 'o', 'a', 'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 'l', 'o', 'a',
'd', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 's', 't', 'o', 'r', 'e',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'm', 'a', 's', 'k', 's', 't', 'o', 'r', 'e', 'd', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'm', 'a', 's', 'k', 's', 't', 'o', 'r', 'e', 'q', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 's',
'k', 's', 't', 'o', 'r', 'e', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'p', 's', 'a',
'd', 'b', 'w', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c', 'k', 's', 's', 'd', 'w',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'a', 'c', 'k', 's', 's', 'w', 'b', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'a', 'c', 'k', 'u', 's', 'd', 'w', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a',
'c', 'k', 'u', 's', 'w', 'b', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'v', 'g', 'b',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'a', 'v', 'g', 'w', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'b',
'l', 'e', 'n', 'd', 'v', 'b', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r', 'm', 'v',
'a', 'r', 's', 'i', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r', 'm', 'v', 'a', 'r',
's', 'f', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'h', 'a', 'd', 'd', 'd', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'h', 'a', 'd', 'd', 's', 'w', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h', 'a',
'd', 'd', 'w', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h', 's', 'u', 'b', 'd', '2', '5',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'h', 's', 'u', 'b', 's', 'w', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h',
's', 'u', 'b', 'w', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'a', 'd', 'd', 'u', 'b',
's', 'w', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'm', 'a', 'd', 'd', 'w', 'd', '2', '5',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'm', 'o', 'v', 'm', 's', 'k', 'b', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'u', 'l', 'h', 'r', 's', 'w', '2', '5', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l',
'h', 'w', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l', 'h', 'u', 'w', '2', '5',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 's', 'a', 'd', 'b', 'w', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'h',
'u', 'f', 'b', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'i', 'g', 'n', 'b', '2', '5',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 's', 'i', 'g', 'n', 'd', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'i',
'g', 'n', 'w', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'd', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 's', 'l', 'l', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'w',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'l', 'l', 'd', 'i', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
's', 'l', 'l', 'q', 'i', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'w', 'i',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'l', 'l', 'v', '4', 's', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'l', 'l', 'v', '8', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'v', '2', 'd', 'i',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 's', 'l', 'l', 'v', '4', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'd',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'r', 'a', 'w', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'a', 'd', 'i', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'w', 'i', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'a', 'v', '4', 's', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r',
'a', 'v', '8', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'd', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'r', 'l', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'w', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'l', 'd', 'i', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'l', 'q', 'i', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'w', 'i', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'l', 'v', '4', 's', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r',
'l', 'v', '8', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'v', '2', 'd', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'r', 'l', 'v', '4', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'd', 'd', 'p', 'd', '5',
'1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'a', 'd', 'd', 'p', 's', '5', '1', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'r', 'o',
'a', 'd', 'c', 'a', 's', 't', 'm', 'b', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'r', 'o',
'a', 'd', 'c', 'a', 's', 't', 'm', 'b', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'r', 'o',
'a', 'd', 'c', 'a', 's', 't', 'm', 'b', '5', '1', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'r', 'o',
'a', 'd', 'c', 'a', 's', 't', 'm', 'w', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'r', 'o',
'a', 'd', 'c', 'a', 's', 't', 'm', 'w', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'r', 'o',
'a', 'd', 'c', 'a', 's', 't', 'm', 'w', '5', '1', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'c',
'o', 'n', 'f', 'l', 'i', 'c', 't', 's', 'i', '_', '1', '2', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v',
'p', 'c', 'o', 'n', 'f', 'l', 'i', 'c', 't', 's', 'i', '_', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'c', 'o', 'n', 'f', 'l', 'i', 'c', 't', 's', 'i', '_', '5',
'1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'p', 'c', 'o', 'n', 'f', 'l', 'i', 'c', 't', 'd', 'i',
'_', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'c', 'o', 'n', 'f', 'l', 'i', 'c', 't',
'd', 'i', '_', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'c', 'o', 'n', 'f', 'l', 'i',
'c', 't', 'd', 'i', '_', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 's', 'i', '2',
's', 'd', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'c', 'v', 't', 's', 'i', '2', 's', 's', '3', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'c', 'v', 't', 's', 'i', '2', 's', 's', '6', '4', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v',
't', 't', 's', 'd', '2', 's', 'i', '3', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 't',
's', 'd', '2', 's', 'i', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 't', 's', 'd',
'2', 'u', 's', 'i', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 't', 's', 'd', '2',
'u', 's', 'i', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 't', 's', 's', '2', 's',
'i', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'v', 'c', 'v', 't', 't', 's', 's', '2', 's', 'i', '6',
'4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'c', 'v', 't', 't', 's', 's', '2', 'u', 's', 'i', '3', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'c', 'v', 't', 't', 's', 's', '2', 'u', 's', 'i', '6', '4', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 'u', 's', 'i', '2', 's', 's', '3', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't',
'u', 's', 'i', '2', 's', 'd', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'u', 's', 'i',
'2', 's', 's', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'd', 'b', 'p', 's', 'a', 'd', 'b', 'w', '1',
'2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'd', 'b', 'p', 's', 'a', 'd', 'b', 'w', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'd', 'b', 'p', 's', 'a', 'd', 'b', 'w', '5', '1', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'i', 'v',
'p', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'd', 'i', 'v', 'p', 's', '5', '1', '2', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'e', 'x', 'p', '2', 'p', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'e', 'x', 'p',
'2', 'p', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r',
'p', 'f', 'd', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'p', 'f', 'd',
'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'g', 'a', 't', 'h', 'e', 'r', 'p', 'f', 'q', 'p', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'g', 'a', 't', 'h', 'e', 'r', 'p', 'f', 'q', 'p', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'd', 'd',
's', 'd', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a',
'd', 'd', 's', 's', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'c', 'm', 'p', 's', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'm', 'p',
's', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd', '2', 'd',
'q', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd',
'2', 'd', 'q', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't',
'p', 'd', '2', 'p', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p',
'd', '2', 'p', 's', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v',
't', 'p', 'd', '2', 'q', 'q', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 'p', 'd', '2', 'q', 'q', '2', '5', '6', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'c', 'v', 't', 'p', 'd', '2', 'q', 'q', '5', '1', '2', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd', '2', 'u', 'd', 'q', '1', '2',
'8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd', '2', 'u', 'd',
'q', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd',
'2', 'u', 'd', 'q', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v',
't', 'p', 'd', '2', 'u', 'q', 'q', '1', '2', '8', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'c', 'v', 't', 'p', 'd', '2', 'u', 'q', 'q', '2', '5', '6', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd', '2', 'u', 'q', 'q', '5', '1',
'2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 's', '2', 'd', 'q',
'1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 's', '2',
'd', 'q', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p',
's', '2', 'd', 'q', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v',
't', 'p', 's', '2', 'p', 'd', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 'p', 's', '2', 'q', 'q', '1', '2', '8', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'c', 'v', 't', 'p', 's', '2', 'q', 'q', '2', '5', '6', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'c', 'v', 't', 'p', 's', '2', 'q', 'q', '5', '1', '2',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 's', '2', 'u', 'd', 'q',
'1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 's', '2',
'u', 'd', 'q', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't',
'p', 's', '2', 'u', 'd', 'q', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 'p', 's', '2', 'u', 'q', 'q', '1', '2', '8', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 'p', 's', '2', 'u', 'q', 'q', '2', '5', '6',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 's', '2', 'u', 'q', 'q',
'5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'q', 'q', '2',
'p', 's', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 's',
'd', '2', 's', 's', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'c', 'v', 't', 's', 's', '2', 's', 'd', '_', 'r', 'o', 'u', 'n', 'd',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 'd', '2', 'd', 'q',
'1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 'd',
'2', 'd', 'q', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't',
't', 'p', 'd', '2', 'q', 'q', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 't', 'p', 'd', '2', 'q', 'q', '2', '5', '6', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 't', 'p', 'd', '2', 'q', 'q', '5', '1', '2',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 'd', '2', 'u', 'd',
'q', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p',
'd', '2', 'u', 'd', 'q', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'v', 't', 't', 'p', 'd', '2', 'u', 'd', 'q', '5', '1', '2', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 't', 'p', 'd', '2', 'u', 'q', 'q', '1', '2',
'8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 'd', '2', 'u',
'q', 'q', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't',
'p', 'd', '2', 'u', 'q', 'q', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 't', 'p', 's', '2', 'd', 'q', '5', '1', '2', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 't', 'p', 's', '2', 'q', 'q', '1', '2', '8',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 's', '2', 'q', 'q',
'2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 's',
'2', 'q', 'q', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't',
't', 'p', 's', '2', 'u', 'd', 'q', '1', '2', '8', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'c', 'v', 't', 't', 'p', 's', '2', 'u', 'd', 'q', '2', '5', '6', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 's', '2', 'u', 'd', 'q',
'5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 's',
'2', 'u', 'q', 'q', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v',
't', 't', 'p', 's', '2', 'u', 'q', 'q', '2', '5', '6', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'c', 'v', 't', 't', 'p', 's', '2', 'u', 'q', 'q', '5', '1', '2',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'u', 'q', 'q', '2', 'p', 's',
'1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'i', 'v', 's', 'd', '_',
'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'i', 'v', 's',
's', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i',
'x', 'u', 'p', 'i', 'm', 'm', 'p', 'd', '1', '2', '8', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm', 'p', 'd', '2', '5', '6',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm', 'p',
'd', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x', 'u', 'p',
'i', 'm', 'm', 'p', 's', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f',
'i', 'x', 'u', 'p', 'i', 'm', 'm', 'p', 's', '2', '5', '6', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm', 'p', 's', '5', '1',
'2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm',
's', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm',
'm', 's', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'p', 'c', 'l', 'a', 's',
's', 's', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'p', 'c', 'l', 'a', 's',
's', 's', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e', 't', 'e', 'x', 'p',
'p', 'd', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e', 't', 'e',
'x', 'p', 'p', 'd', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e',
't', 'e', 'x', 'p', 'p', 'd', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'g', 'e', 't', 'e', 'x', 'p', 'p', 's', '1', '2', '8', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'g', 'e', 't', 'e', 'x', 'p', 'p', 's', '2', '5', '6', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'g', 'e', 't', 'e', 'x', 'p', 'p', 's', '5', '1', '2',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'g', 'e', 't', 'e', 'x', 'p', 's', 'd', '1',
'2', '8', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g',
'e', 't', 'e', 'x', 'p', 's', 's', '1', '2', '8', '_', 'r', 'o', 'u', 'n',
'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e', 't', 'm', 'a', 'n', 't', 'p',
'd', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e', 't', 'm', 'a',
'n', 't', 'p', 'd', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e',
't', 'm', 'a', 'n', 't', 'p', 'd', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'g', 'e', 't', 'm', 'a', 'n', 't', 'p', 's', '1', '2', '8', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'g', 'e', 't', 'm', 'a', 'n', 't', 'p', 's', '2', '5',
'6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e', 't', 'm', 'a', 'n', 't', 'p',
's', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'g', 'e', 't', 'm', 'a',
'n', 't', 's', 'd', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'g', 'e', 't', 'm', 'a', 'n', 't', 's', 's', '_', 'r', 'o', 'u', 'n',
'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 'x', 's', 'd', '_', 'r', 'o',
'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 'x', 's', 's', '_',
'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'i', 'n', 's',
'd', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'i',
'n', 's', 's', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'm', 'u', 'l', 's', 'd', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'm', 'u', 'l', 's', 's', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'd', 'b', '1', '2', '8', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'd', 'b', '2', '5', '6', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'd', 'b', '1', '2', '8', 'm', 'e',
'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'd', 'b', '2', '5',
'6', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'd',
'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'd', 'w', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'd', 'w', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'd', 'w', '1', '2', '8', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 'd', 'w', '2', '5', '6', 'm', 'e', 'm', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'd', 'w', '5', '1', '2', 'm', 'e',
'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q', 'b', '1', '2',
'8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q', 'b', '2', '5',
'6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q', 'b', '5', '1',
'2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q', 'b', '1', '2',
'8', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q',
'b', '2', '5', '6', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'q', 'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 'q', 'd', '1', '2', '8', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 'q', 'd', '1', '2', '8', 'm', 'e', 'm', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q', 'd', '2', '5', '6', 'm', 'e',
'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q', 'd', '5', '1',
'2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q',
'w', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q',
'w', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'q',
'w', '1', '2', '8', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'q', 'w', '2', '5', '6', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 'q', 'w', '5', '1', '2', 'm', 'e', 'm', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'w', 'b', '1', '2', '8', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'w', 'b', '1', '2', '8', 'm', 'e',
'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'w', 'b', '2', '5',
'6', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'w',
'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 's', 'd', 'b', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 's', 'd', 'b', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 's', 'd', 'b', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 's', 'd', 'b', '1', '2', '8', 'm', 'e', 'm', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'd', 'b', '2', '5', '6',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'd',
'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 's', 'd', 'w', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 's', 'd', 'w', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 's', 'd', 'w', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 's', 'd', 'w', '1', '2', '8', 'm', 'e', 'm', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'd', 'w', '2', '5', '6',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'd',
'w', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 's', 'q', 'b', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 's', 'q', 'b', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 's', 'q', 'b', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 's', 'q', 'b', '1', '2', '8', 'm', 'e', 'm', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'q', 'b', '2', '5', '6',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'q',
'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 's', 'q', 'd', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 's', 'q', 'd', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 's', 'q', 'd', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 's', 'q', 'd', '1', '2', '8', 'm', 'e', 'm', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'q', 'd', '2', '5', '6',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'q',
'd', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 's', 'q', 'w', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 's', 'q', 'w', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 's', 'q', 'w', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 's', 'q', 'w', '1', '2', '8', 'm', 'e', 'm', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'q', 'w', '2', '5', '6',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'q',
'w', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 's', 'w', 'b', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 's', 'w', 'b', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 's', 'w', 'b', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 's', 'w', 'b', '1', '2', '8', 'm', 'e', 'm', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'w', 'b', '2', '5', '6',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 's', 'w',
'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'u', 's', 'd', 'b', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 'u', 's', 'd', 'b', '2', '5', '6', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'd', 'b', '5', '1', '2', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'd', 'b', '1', '2', '8',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's',
'd', 'b', '2', '5', '6', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 'u', 's', 'd', 'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'd', 'w', '1', '2', '8',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'd', 'w', '2',
'5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'd',
'w', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u',
's', 'd', 'w', '1', '2', '8', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 'u', 's', 'd', 'w', '2', '5', '6', 'm', 'e', 'm', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'd', 'w', '5', '1',
'2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u',
's', 'q', 'b', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o',
'v', 'u', 's', 'q', 'b', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 'u', 's', 'q', 'b', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'b', '1', '2', '8', 'm', 'e', 'm',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'b', '2',
'5', '6', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v',
'u', 's', 'q', 'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'd', '1', '2', '8', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'd', '2', '5', '6', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'd', '5', '1',
'2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'd',
'1', '2', '8', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o',
'v', 'u', 's', 'q', 'd', '2', '5', '6', 'm', 'e', 'm', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'd', '5', '1', '2', 'm', 'e',
'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'w',
'1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's',
'q', 'w', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v',
'u', 's', 'q', 'w', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'u', 's', 'q', 'w', '1', '2', '8', 'm', 'e', 'm', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q', 'w', '2', '5', '6', 'm',
'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'q',
'w', '5', '1', '2', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'o', 'v', 'u', 's', 'w', 'b', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 'u', 's', 'w', 'b', '2', '5', '6', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'w', 'b', '5', '1', '2', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's', 'w', 'b', '1', '2', '8',
'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v', 'u', 's',
'w', 'b', '2', '5', '6', 'm', 'e', 'm', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'm', 'o', 'v', 'u', 's', 'w', 'b', '5', '1', '2', 'm', 'e', 'm', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 'a', 'n', 'g', 'e', 'p', 'd', '1', '2', '8', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'r', 'a', 'n', 'g', 'e', 'p', 'd', '2', '5', '6',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'r', 'a', 'n', 'g', 'e', 'p', 'd', '5', '1',
'2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'r', 'a', 'n', 'g', 'e', 'p', 's', '1',
'2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'a', 'n', 'g', 'e', 'p', 's',
'2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'a', 'n', 'g', 'e', 'p',
's', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'a', 'n', 'g', 'e',
's', 'd', '1', '2', '8', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'r', 'a', 'n', 'g', 'e', 's', 's', '1', '2', '8', '_', 'r', 'o',
'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'e', 'd', 'u', 'c', 'e',
'p', 'd', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'e', 'd', 'u',
'c', 'e', 'p', 'd', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'e',
'd', 'u', 'c', 'e', 'p', 'd', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'r', 'e', 'd', 'u', 'c', 'e', 'p', 's', '1', '2', '8', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'r', 'e', 'd', 'u', 'c', 'e', 'p', 's', '2', '5', '6', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 'e', 'd', 'u', 'c', 'e', 'p', 's', '5', '1', '2',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'r', 'e', 'd', 'u', 'c', 'e', 's', 'd', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'r', 'e', 'd', 'u', 'c', 'e', 's', 's', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 'n', 'd', 's', 'c', 'a', 'l', 'e', 'p', 'd', '_',
'1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'n', 'd', 's', 'c', 'a',
'l', 'e', 'p', 'd', '_', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r',
'n', 'd', 's', 'c', 'a', 'l', 'e', 'p', 'd', '_', 'm', 'a', 's', 'k', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'r', 'n', 'd', 's', 'c', 'a', 'l', 'e', 'p', 's', '_', '1', '2', '8', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'r', 'n', 'd', 's', 'c', 'a', 'l', 'e', 'p', 's',
'_', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'n', 'd', 's', 'c',
'a', 'l', 'e', 'p', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'n', 'd', 's',
'c', 'a', 'l', 'e', 's', 'd', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'r', 'n', 'd', 's', 'c', 'a', 'l', 'e', 's', 's', '_', 'r',
'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'c', 'a', 'l', 'e',
'f', 'p', 'd', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'c', 'a',
'l', 'e', 'f', 'p', 'd', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's',
'c', 'a', 'l', 'e', 'f', 'p', 'd', '5', '1', '2', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 's', 'c', 'a', 'l', 'e', 'f', 'p', 's', '1', '2', '8', '_', 'm', 'a',
's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 's', 'c', 'a', 'l', 'e', 'f', 'p', 's', '2', '5', '6', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 's', 'c', 'a', 'l', 'e', 'f', 'p', 's', '5', '1',
'2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 's', 'c', 'a', 'l', 'e', 'f', 's', 'd',
'_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'c', 'a',
'l', 'e', 'f', 's', 's', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 's', 'u', 'b', 's', 'd', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 's', 'u', 'b', 's', 's', '_', 'r', 'o', 'u', 'n', 'd',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 'p', 's', '2', 'p', 'h',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 'p', 's', '2', 'p', 'h',
'2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 'p', 's',
'2', 'p', 'h', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x',
'u', 'p', 'i', 'm', 'm', 'p', 'd', '1', '2', '8', '_', 'm', 'a', 's', 'k',
'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm', 'p', 'd', '2', '5', '6',
'_', 'm', 'a', 's', 'k', 'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm',
'p', 'd', '5', '1', '2', '_', 'm', 'a', 's', 'k', 'z', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x',
'u', 'p', 'i', 'm', 'm', 'p', 's', '1', '2', '8', '_', 'm', 'a', 's', 'k',
'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm', 'p', 's', '2', '5', '6',
'_', 'm', 'a', 's', 'k', 'z', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x', 'u', 'p', 'i', 'm', 'm',
'p', 's', '5', '1', '2', '_', 'm', 'a', 's', 'k', 'z', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'i', 'x',
'u', 'p', 'i', 'm', 'm', 's', 'd', '_', 'm', 'a', 's', 'k', 'z', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f',
'i', 'x', 'u', 'p', 'i', 'm', 'm', 's', 's', '_', 'm', 'a', 's', 'k', 'z',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'm', 'a', 'x', 'p', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 'x', 'p', 's',
'5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'm', 'i', 'n', 'p', 'd', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'i',
'n', 'p', 's', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'm', 'u', 'l', 'p', 'd', '5', '1', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'm', 'u', 'l', 'p', 's', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c', 'k', 's',
's', 'd', 'w', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c', 'k', 's', 's', 'w', 'b',
'5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'a', 'c', 'k', 'u', 's', 'd', 'w', '5', '1', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'a', 'c', 'k', 'u', 's', 'w', 'b', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a',
'v', 'g', 'b', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'v', 'g', 'w', '5', '1', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'e', 'r', 'm', 'v', 'a', 'r', 'd', 'f', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'e', 'r', 'm', 'v', 'a', 'r', 'd', 'f', '5', '1', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r',
'm', 'v', 'a', 'r', 'd', 'i', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r', 'm', 'v',
'a', 'r', 'd', 'i', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r', 'm', 'v', 'a', 'r',
'h', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r', 'm', 'v', 'a', 'r', 'h', 'i',
'2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'e', 'r', 'm', 'v', 'a', 'r', 'h', 'i', '5', '1',
'2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'e', 'r', 'm', 'v', 'a', 'r', 'q', 'i', '1', '2', '8', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'e', 'r', 'm', 'v', 'a', 'r', 'q', 'i', '2', '5', '6', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e',
'r', 'm', 'v', 'a', 'r', 'q', 'i', '5', '1', '2', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r', 'm',
'v', 'a', 'r', 's', 'f', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'r', 'm', 'v', 'a',
'r', 's', 'i', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'a', 'd', 'd', 'u', 'b', 's',
'w', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'm', 'a', 'd', 'd', 'w', 'd', '5', '1', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'u', 'l', 'h', 'r', 's', 'w', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm',
'u', 'l', 'h', 'w', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l', 'h', 'u', 'w',
'5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'v', 'p', 'm', 'u', 'l', 't', 'i', 's', 'h', 'i', 'f',
't', 'q', 'b', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'u', 'l', 't', 'i', 's',
'h', 'i', 'f', 't', 'q', 'b', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'u', 'l',
't', 'i', 's', 'h', 'i', 'f', 't', 'q', 'b', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'a', 'd', 'b', 'w', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'h', 'u', 'f', 'b', '5',
'1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'l', 'l', 'd', '5', '1', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l',
'l', 'q', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'w', '5', '1', '2', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'l', 'l', 'd', 'i', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'q',
'i', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'w', 'i', '5', '1', '2', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'l', 'l', 'v', '1', '6', 's', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'v',
'8', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'l', 'l', 'v', '8', 'h', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'l', 'l', 'v', '1', '6', 'h', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'v', '3', '2',
'h', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'a', 'd', '5', '1', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r',
'a', 'q', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'q', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'r', 'a', 'q', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'w', '5',
'1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'a', 'd', 'i', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'a', 'q', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'q', 'i', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'a', 'q', 'i', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'a', 'w', 'i', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'v', '1', '6',
's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'a', 'v', 'q', '1', '2', '8', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'a', 'v', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'v', '8', 'd',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 's', 'r', 'a', 'v', '8', 'h', 'i', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a',
'v', '1', '6', 'h', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'v', '3', '2', 'h', 'i',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 's', 'r', 'l', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'q',
'5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'r', 'l', 'w', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'l', 'd', 'i', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'q', 'i', '5',
'1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'l', 'w', 'i', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'l', 'v', '1', '6', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'v', '8', 'd',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 's', 'r', 'l', 'v', '8', 'h', 'i', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l',
'v', '1', '6', 'h', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'v', '3', '2', 'h', 'i',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 't', 'e', 'r', 'n', 'l', 'o', 'g', 'd', '1', '2', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
't', 'e', 'r', 'n', 'l', 'o', 'g', 'd', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 't', 'e',
'r', 'n', 'l', 'o', 'g', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 't', 'e', 'r', 'n',
'l', 'o', 'g', 'q', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 't', 'e', 'r', 'n', 'l', 'o',
'g', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 't', 'e', 'r', 'n', 'l', 'o', 'g', 'q',
'5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 'c', 'p', '1', '4', 'p', 'd', '1', '2', '8', '_',
'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'r', 'c', 'p', '1', '4', 'p', 'd', '2', '5', '6',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '1', '4', 'p', 'd', '5', '1',
'2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '1', '4', 'p', 's', '1',
'2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '1', '4', 'p', 's',
'2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '1', '4', 'p',
's', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '1', '4',
's', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '1', '4', 's', 's',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '2', '8', 'p', 'd', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 'c', 'p', '2', '8', 'p', 's', '_', 'm', 'a', 's',
'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'r', 'c', 'p', '2', '8', 's', 'd', '_', 'r', 'o', 'u', 'n', 'd',
'_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', '2', '8', 's', 's', '_', 'r',
'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's', 'q', 'r', 't',
'1', '4', 'p', 'd', '1', '2', '8', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's',
'q', 'r', 't', '1', '4', 'p', 'd', '2', '5', '6', '_', 'm', 'a', 's', 'k',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'r', 's', 'q', 'r', 't', '1', '4', 'p', 'd', '5', '1', '2', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 's', 'q', 'r', 't', '1', '4', 'p', 's', '1', '2',
'8', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'r', 's', 'q', 'r', 't', '1', '4', 'p',
's', '2', '5', '6', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's', 'q', 'r', 't',
'1', '4', 'p', 's', '5', '1', '2', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's',
'q', 'r', 't', '1', '4', 's', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's',
'q', 'r', 't', '1', '4', 's', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's',
'q', 'r', 't', '2', '8', 'p', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's',
'q', 'r', 't', '2', '8', 'p', 's', '_', 'm', 'a', 's', 'k', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's',
'q', 'r', 't', '2', '8', 's', 'd', '_', 'r', 'o', 'u', 'n', 'd', '_', 'm',
'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 's', 'q', 'r', 't', '2', '8', 's', 's', '_', 'r',
'o', 'u', 'n', 'd', '_', 'm', 'a', 's', 'k', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'c', 'a', 't', 't',
'e', 'r', 'p', 'f', 'd', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'c', 'a', 't', 't', 'e', 'r',
'p', 'f', 'd', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 's', 'c', 'a', 't', 't', 'e', 'r', 'p', 'f',
'q', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 's', 'c', 'a', 't', 't', 'e', 'r', 'p', 'f', 'q', 'p',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 's', 'u', 'b', 'p', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'u', 'b', 'p',
's', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'c', 'o', 'm', 'i', 's', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c',
'o', 'm', 'i', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 's', 'd', '2', 's', 'i',
'3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'c', 'v', 't', 's', 'd', '2', 's', 'i', '6', '4', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'c', 'v', 't', 's', 'd', '2', 'u', 's', 'i', '3', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c',
'v', 't', 's', 'd', '2', 'u', 's', 'i', '6', '4', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't',
's', 's', '2', 's', 'i', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 's', 's', '2',
's', 'i', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 's', 's', '2', 'u', 's', 'i',
'3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'c', 'v', 't', 's', 's', '2', 'u', 's', 'i', '6', '4',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'd', 'p', 'b', 'u', 's', 'd', '1', '2', '8', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p',
'd', 'p', 'b', 'u', 's', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'd', 'p', 'b',
'u', 's', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'd', 'p', 'b', 'u', 's', 'd',
's', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'd', 'p', 'b', 'u', 's', 'd', 's', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'p', 'd', 'p', 'b', 'u', 's', 'd', 's', '5', '1', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'd', 'p', 'w', 's', 's', 'd', '1', '2', '8', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p',
'd', 'p', 'w', 's', 's', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'd', 'p', 'w',
's', 's', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'd', 'p', 'w', 's', 's', 'd',
's', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'd', 'p', 'w', 's', 's', 'd', 's', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'p', 'd', 'p', 'w', 's', 's', 'd', 's', '5', '1', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r', 'd', '1', '2', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r', 'd', '2', '5', '6',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r', 'd', '5', '1', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r', 'h', 'i', '1', '2',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r', 'h', 'i', '2',
'5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r', 'h', 'i',
'5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r', 'p',
'd', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a', 'r',
'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v', 'a',
'r', 'p', 'd', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', '2', 'v',
'a', 'r', 'p', 's', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', '2',
'v', 'a', 'r', 'p', 's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i',
'2', 'v', 'a', 'r', 'p', 's', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm',
'i', '2', 'v', 'a', 'r', 'q', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm',
'i', '2', 'v', 'a', 'r', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm',
'i', '2', 'v', 'a', 'r', 'q', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm',
'i', '2', 'v', 'a', 'r', 'q', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r',
'm', 'i', '2', 'v', 'a', 'r', 'q', 'i', '2', '5', '6', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e',
'r', 'm', 'i', '2', 'v', 'a', 'r', 'q', 'i', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p',
'e', 'r', 'm', 'i', 'l', 'v', 'a', 'r', 'p', 'd', '5', '1', '2', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v',
'p', 'e', 'r', 'm', 'i', 'l', 'v', 'a', 'r', 'p', 's', '5', '1', '2', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'm', 'a', 'd', 'd', '5', '2', 'h', 'u', 'q', '1', '2', '8', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'm', 'a', 'd', 'd', '5', '2', 'h', 'u', 'q', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'm', 'a', 'd', 'd', '5', '2', 'h', 'u', 'q', '5', '1', '2', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'm', 'a', 'd', 'd', '5', '2', 'l', 'u', 'q', '1', '2', '8', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'm', 'a', 'd', 'd', '5', '2', 'l', 'u', 'q', '2', '5', '6', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'm', 'a', 'd', 'd', '5', '2', 'l', 'u', 'q', '5', '1', '2', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 'n', 'e', '2', 'p', 's', '2', 'b', 'f', '1', '6', '_', '1',
'2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 'n', 'e', '2', 'p', 's', '2', 'b', 'f', '1',
'6', '_', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'n', 'e', '2', 'p', 's', '2',
'b', 'f', '1', '6', '_', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'n', 'e', 'p',
's', '2', 'b', 'f', '1', '6', '_', '2', '5', '6', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'n',
'e', 'p', 's', '2', 'b', 'f', '1', '6', '_', '5', '1', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'p',
'b', 'f', '1', '6', 'p', 's', '_', '1', '2', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'p', 'b', 'f',
'1', '6', 'p', 's', '_', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'p', 'b', 'f', '1', '6',
'p', 's', '_', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'b', 'e', 'x', 't', 'r', '_', 'u', '3',
'2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'b', 'e', 'x', 't', 'r', '_', 'u', '6', '4', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'z', 'h',
'i', '_', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'b', 'z', 'h', 'i', '_', 'd', 'i', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'd',
'e', 'p', '_', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'd', 'e', 'p', '_', 'd', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'e', 'x', 't', '_', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'e', 'x', 't', '_', 'd', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'l', 'd', 'e', 'm', 'o', 't', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'l', 'f', 'l', 'u', 's',
'h', 'o', 'p', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'c', 'l', 'r', 's', 's', 'b', 's', 'y', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'l', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'c', 'l', 'w', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'l', 'z', 'e', 'r', 'o',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'd', 'i', 'r', 'e', 'c', 't', 's', 't', 'o', 'r', 'e', '_', 'u', '3',
'2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'd', 'i', 'r', 'e', 'c', 't', 's', 't', 'o', 'r', 'e', '_', 'u',
'6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'e', 'n', 'q', 'c', 'm', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'e', 'n', 'q', 'c', 'm',
'd', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'r', 'e', 'a', 'd', 'e', 'f', 'l', 'a', 'g', 's', '_', 'u',
'3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'r', 'e', 'a', 'd', 'e', 'f', 'l', 'a', 'g', 's', '_', 'u',
'6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'w', 'r', 'i', 't', 'e', 'e', 'f', 'l', 'a', 'g', 's', '_',
'u', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'w', 'r', 'i', 't', 'e', 'e', 'f', 'l', 'a', 'g', 's',
'_', 'u', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'f', 'm', 'a', 'd', 'd', 's', 'u', 'b', 'p',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'f', 'm', 'a', 'd', 'd', 's', 'u', 'b', 'p', 'd', '2', '5',
'6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'f', 'm', 'a', 'd', 'd', 's', 'u', 'b', 'p', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v',
'f', 'm', 'a', 'd', 'd', 's', 'u', 'b', 'p', 's', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f',
'x', 'r', 's', 't', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'f', 'x', 'r', 's', 't', 'o', 'r', '6',
'4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'f', 'x', 's', 'a', 'v', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'x', 's', 'a', 'v', 'e',
'6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'i', 'n', 'c', 's', 's', 'p', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'i', 'n', 'c', 's',
's', 'p', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'i', 'n', 'v', 'p', 'c', 'i', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 't', 'i', 'l',
'e', '_', 'l', 'o', 'a', 'd', 'c', 'o', 'n', 'f', 'i', 'g', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'l', 'l',
'w', 'p', 'c', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'l', 'o', 'a', 'd', 'i', 'w', 'k', 'e', 'y', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'l', 'w', 'p', 'i', 'n', 's', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'l', 'w', 'p', 'i', 'n', 's',
'6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'l', 'w', 'p', 'v', 'a', 'l', '3', '2', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'l', 'w', 'p',
'v', 'a', 'l', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'e', 'm', 'm', 's', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'f', 'e', 'm', 'm',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'm', 'a', 's', 'k', 'm', 'o', 'v', 'q', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'o', 'v', 'n',
't', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'a', 'c', 'k', 's', 's', 'd', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c',
'k', 's', 's', 'w', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c', 'k', 'u', 's', 'w', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'a', 'd', 'd', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'a', 'd', 'd', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'd',
'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'a', 'd', 'd', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'd', 'd', 's', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'a', 'd', 'd', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'd', 'd', 'u', 's', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'a', 'd', 'd', 'u', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'l', 'i', 'g', 'n',
'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'a', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'n', 'd', 'n', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a',
'v', 'g', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'a', 'v', 'g', 'w', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'e',
'q', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'c', 'm', 'p', 'e', 'q', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p',
'e', 'q', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'g', 't', 'b', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm',
'p', 'g', 't', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'g', 't', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'e',
'c', '_', 'e', 'x', 't', '_', 'v', '4', 'h', 'i', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'e', 'c', '_',
's', 'e', 't', '_', 'v', '4', 'h', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'a', 'd', 'd', 'w',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'm', 'a', 'x', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'a', 'x', 'u', 'b',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'i', 'n', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'i', 'n', 'u', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'o', 'v', 'm', 's', 'k', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l', 'h', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'u', 'l', 'h', 'u', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l', 'l', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'm', 'u', 'l', 'u', 'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'o', 'r', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'a', 'd', 'b', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l',
'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 's', 'l', 'l', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'd', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'l', 'l', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'w', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
's', 'r', 'a', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a',
'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'r', 'a', 'w', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 's', 'r', 'l', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'r', 'l', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'q', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r',
'l', 'w', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'u', 'b', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'u', 'b', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 's', 'u', 'b', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'u', 'b', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's',
'u', 'b', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 's', 'u', 'b', 's', 'w', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'u',
'b', 'u', 's', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 's', 'u', 'b', 'u', 's', 'w', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'u',
'n', 'p', 'c', 'k', 'h', 'b', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'u', 'n', 'p', 'c', 'k', 'h',
'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'u', 'n', 'p', 'c', 'k', 'h', 'w', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'u',
'n', 'p', 'c', 'k', 'l', 'b', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'u', 'n', 'p', 'c', 'k', 'l',
'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'u', 'n', 'p', 'c', 'k', 'l', 'w', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'x',
'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'm', 'o', 'n', 'i', 't', 'o', 'r', 'x', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'o', 'v',
'd', 'i', 'r', '6', '4', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'm', 'w', 'a', 'i', 't', 'x', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'c', 'l', 'm', 'u', 'l', 'q', 'd', 'q', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'l',
'm', 'u', 'l', 'q', 'd', 'q', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'l', 'm', 'u',
'l', 'q', 'd', 'q', '5', '1', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 't', 'w', 'r', 'i', 't', 'e',
'3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 't', 'w', 'r', 'i', 't', 'e', '6', '4', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'd',
'f', 's', 'b', 'a', 's', 'e', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'd', 'f', 's', 'b', 'a',
's', 'e', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'r', 'd', 'g', 's', 'b', 'a', 's', 'e', '3', '2',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'r', 'd', 'g', 's', 'b', 'a', 's', 'e', '6', '4', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'd', 'p',
'i', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'r', 'd', 'p', 'k', 'r', 'u', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'd', 'p', 'm', 'c',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'r', 'd', 's', 's', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'd', 's', 's', 'p', 'q', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'r', 'd', 't', 's', 'c', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'r', 's', 't', 'o', 'r', 's', 's', 'p', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
's', 'a', 'v', 'e', 'p', 'r', 'e', 'v', 's', 's', 'p', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'e', 'n',
'd', 'u', 'i', 'p', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 's', 'e', 'r', 'i', 'a', 'l', 'i', 'z', 'e',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 's', 'e', 't', 's', 's', 'b', 's', 'y', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'h', 'a', '1', 'm',
's', 'g', '1', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 's', 'h', 'a', '1', 'm', 's', 'g', '2', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'h',
'a', '1', 'n', 'e', 'x', 't', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'h', 'a', '1', 'r', 'n', 'd',
's', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 's', 'h', 'a', '2', '5', '6', 'm', 's', 'g', '1', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's',
'h', 'a', '2', '5', '6', 'm', 's', 'g', '2', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 's', 'h', 'a', '2', '5',
'6', 'r', 'n', 'd', 's', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 's', 'l', 'w', 'p', 'c', 'b', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'm', 'p', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'c', 'o', 'm', 'i', 'e', 'q', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'o', 'm',
'i', 'g', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'c', 'o', 'm', 'i', 'g', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'o', 'm', 'i',
'l', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'o', 'm', 'i', 'l', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'o', 'm', 'i', 'n',
'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 'p', 'd', '2', 'p', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't',
'p', 'i', '2', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'i', '2', 'p', 's', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 'p', 's', '2', 'p', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 's', 's', '2',
's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 's', 's', '2', 's', 'i', '6', '4', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'v', 't', 't', 'p', 'd', '2', 'p', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 's',
'2', 'p', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'c', 'v', 't', 't', 's', 's', '2', 's', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'v', 't', 't', 's', 's', '2', 's', 'i', '6', '4', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 'x', 'p',
's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'm', 'a', 'x', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'i', 'n', 'p', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm',
'i', 'n', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'm', 'o', 'v', 'm', 's', 'k', 'p', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
's', 'h', 'u', 'f', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p', 'p', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'c', 'p',
's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'r', 's', 'q', 'r', 't', 'p', 's', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 's', 'q', 'r',
't', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 's', 'f', 'e', 'n', 'c', 'e', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'u', 'c', 'o', 'm',
'i', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'u', 'c', 'o', 'm', 'i', 'g', 'e', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'u', 'c', 'o',
'm', 'i', 'g', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'u', 'c', 'o', 'm', 'i', 'l', 'e', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'u', 'c',
'o', 'm', 'i', 'l', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'u', 'c', 'o', 'm', 'i', 'n', 'e', 'q', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'l', 'f', 'l', 'u', 's', 'h', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'm', 'p', 's', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'o', 'm', 'i', 's', 'd', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'o', 'm', 'i', 's', 'd', 'g',
'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'c', 'o', 'm', 'i', 's', 'd', 'g', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'o', 'm', 'i',
's', 'd', 'l', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'c', 'o', 'm', 'i', 's', 'd', 'l', 't', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'o', 'm', 'i', 's', 'd', 'n', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 'p', 'd', '2',
'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'c', 'v', 't', 'p', 'd', '2', 'p', 's', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't',
'p', 's', '2', 'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 's', 'd', '2', 's', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 's', 'd', '2', 's', 'i', '6', '4', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 's',
'd', '2', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 'p', 'd', '2', 'd', 'q', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'v', 't', 't', 'p', 's', '2', 'd', 'q', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 's',
'd', '2', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'c', 'v', 't', 't', 's', 'd', '2', 's', 'i', '6',
'4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'l', 'f', 'e', 'n', 'c', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 's', 'k', 'm', 'o',
'v', 'd', 'q', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'm', 'a', 'x', 'p', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'a', 'x', 's',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'm', 'f', 'e', 'n', 'c', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'i', 'n', 'p', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'm', 'i', 'n', 's', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'm', 'o', 'v', 'm', 's', 'k', 'p', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'a', 'c', 'k', 's', 's', 'd', 'w', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c',
'k', 's', 's', 'w', 'b', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c', 'k', 'u', 's',
'w', 'b', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'a', 'u', 's', 'e', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'v',
'g', 'b', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'a', 'v', 'g', 'w', '1', '2', '8', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'm', 'a', 'd', 'd', 'w', 'd', '1', '2', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'o', 'v',
'm', 's', 'k', 'b', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l', 'h', 'w', '1',
'2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'm', 'u', 'l', 'h', 'u', 'w', '1', '2', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
's', 'a', 'd', 'b', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'd', '1',
'2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 's', 'l', 'l', 'q', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l',
'l', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l', 'd', 'i', '1', '2', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 's', 'l', 'l', 'q', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'l', 'l',
'w', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'd', '1', '2', '8', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'r', 'a', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'a', 'd', 'i',
'1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'r', 'a', 'w', 'i', '1', '2', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
's', 'r', 'l', 'd', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'q', '1', '2',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 's', 'r', 'l', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l',
'd', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'r', 'l', 'q', 'i', '1', '2', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 's', 'r', 'l', 'w', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'u', 'c', 'o', 'm',
'i', 's', 'd', 'e', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'u', 'c', 'o', 'm', 'i', 's', 'd', 'g', 'e',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'u', 'c', 'o', 'm', 'i', 's', 'd', 'g', 't', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'u', 'c', 'o', 'm',
'i', 's', 'd', 'l', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'u', 'c', 'o', 'm', 'i', 's', 'd', 'l', 't',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'u', 'c', 'o', 'm', 'i', 's', 'd', 'n', 'e', 'q', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'a', 'd', 'd',
's', 'u', 'b', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'a', 'd', 'd', 's', 'u', 'b', 'p', 's', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'h', 'a', 'd', 'd', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'h', 'a', 'd', 'd', 'p', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'h',
's', 'u', 'b', 'p', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'h', 's', 'u', 'b', 'p', 's', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'l', 'd',
'd', 'q', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'm', 'o', 'n', 'i', 't', 'o', 'r', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'w', 'a',
'i', 't', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'b', 'l', 'e', 'n', 'd', 'v', 'p', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'l', 'e',
'n', 'd', 'v', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'd', 'p', 'p', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'd', 'p', 'p', 's',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'i', 'n', 's', 'e', 'r', 't', 'p', 's', '1', '2', '8', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'm', 'p',
's', 'a', 'd', 'b', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'c', 'k', 'u', 's',
'd', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'b', 'l', 'e', 'n', 'd', 'v', 'b', '1',
'2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'h', 'm', 'i', 'n', 'p', 'o', 's', 'u', 'w', '1', '2',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 't', 'e', 's', 't', 'c', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 't', 'e',
's', 't', 'n', 'z', 'c', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 't', 'e', 's', 't', 'z',
'1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'r', 'o', 'u', 'n', 'd', 'p', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'o', 'u',
'n', 'd', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'r', 'o', 'u', 'n', 'd', 's', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'r', 'o',
'u', 'n', 'd', 's', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'c', 'r', 'c', '3', '2', 'h', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'c',
'r', 'c', '3', '2', 's', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'c', 'r', 'c', '3', '2', 'q', 'i', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'c', 'r', 'c', '3', '2', 'd', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'e', 's', 't',
'r', 'i', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'e', 's', 't', 'r', 'i',
'a', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'e', 's', 't', 'r', 'i', 'c',
'1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'e', 's', 't', 'r', 'i', 'o', '1',
'2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'c', 'm', 'p', 'e', 's', 't', 'r', 'i', 's', '1', '2',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'c', 'm', 'p', 'e', 's', 't', 'r', 'i', 'z', '1', '2', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'c', 'm', 'p', 'e', 's', 't', 'r', 'm', '1', '2', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'c', 'm', 'p', 'i', 's', 't', 'r', 'i', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm',
'p', 'i', 's', 't', 'r', 'i', 'a', '1', '2', '8', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p',
'i', 's', 't', 'r', 'i', 'c', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'i',
's', 't', 'r', 'i', 'o', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'i', 's',
't', 'r', 'i', 's', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'i', 's', 't',
'r', 'i', 'z', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'c', 'm', 'p', 'i', 's', 't', 'r',
'm', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'e', 'x', 't', 'r', 'q', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'e', 'x', 't', 'r',
'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'i', 'n', 's', 'e', 'r', 't', 'q', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'i', 'n', 's', 'e',
'r', 't', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'p', 'a', 'b', 's', 'b', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'a', 'b', 's',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'a', 'b', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h', 'a', 'd', 'd', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 'h', 'a', 'd', 'd', 'd', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h', 'a', 'd', 'd',
's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'h', 'a', 'd', 'd', 's', 'w', '1', '2', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'h', 'a', 'd', 'd', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 'h', 'a', 'd', 'd', 'w', '1', '2', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'p', 'h', 's', 'u', 'b', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h', 's', 'u', 'b', 'd', '1',
'2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'p', 'h', 's', 'u', 'b', 's', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h', 's', 'u',
'b', 's', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'p', 'h', 's', 'u', 'b', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
'h', 's', 'u', 'b', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'a', 'd', 'd', 'u',
'b', 's', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 'm', 'a', 'd', 'd', 'u', 'b', 's', 'w', '1', '2',
'8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 'm', 'u', 'l', 'h', 'r', 's', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 'm', 'u', 'l',
'h', 'r', 's', 'w', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'h', 'u', 'f', 'b', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'p', 's', 'h', 'u', 'f', 'b', '1', '2', '8', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'i', 'g', 'n',
'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'p', 's', 'i', 'g', 'n', 'b', '1', '2', '8', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p', 's', 'i',
'g', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'p', 's', 'i', 'g', 'n', 'd', '1', '2', '8', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'p',
's', 'i', 'g', 'n', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'p', 's', 'i', 'g', 'n', 'w', '1', '2', '8',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 't', 'i', 'l', 'e', '_', 's', 't', 'o', 'r', 'e', 'c', 'o', 'n', 'f',
'i', 'g', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 's', 't', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'b', 'e', 'x', 't', 'r', 'i', '_',
'u', '3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'b', 'e', 'x', 't', 'r', 'i', '_', 'u', '6', '4', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
't', 'd', 'p', 'b', 'f', '1', '6', 'p', 's', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 't', 'd', 'p', 'b', 's',
's', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 't', 'd', 'p', 'b', 's', 's', 'd', '_', 'i', 'n', 't', 'e',
'r', 'n', 'a', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 't', 'd', 'p', 'b', 's', 'u', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 't', 'd',
'p', 'b', 'u', 's', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 't', 'd', 'p', 'b', 'u', 'u', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 't',
'e', 's', 't', 'u', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 't', 'i', 'l', 'e', 'l', 'o', 'a', 'd', 'd',
'6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 't', 'i', 'l', 'e', 'l', 'o', 'a', 'd', 'd', '6', '4', '_',
'i', 'n', 't', 'e', 'r', 'n', 'a', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 't', 'i', 'l', 'e', 'l', 'o',
'a', 'd', 'd', 't', '1', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 't', 'i', 'l', 'e', 'r', 'e', 'l',
'e', 'a', 's', 'e', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 't', 'i', 'l', 'e', 's', 't', 'o', 'r', 'e', 'd',
'6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 't', 'i', 'l', 'e', 's', 't', 'o', 'r', 'e', 'd', '6', '4',
'_', 'i', 'n', 't', 'e', 'r', 'n', 'a', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 't', 'i', 'l', 'e', 'z',
'e', 'r', 'o', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 't', 'i', 'l', 'e', 'z', 'e', 'r', 'o', '_', 'i', 'n',
't', 'e', 'r', 'n', 'a', 'l', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 't', 'p', 'a', 'u', 's', 'e', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'u',
'm', 'o', 'n', 'i', 't', 'o', 'r', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'u', 'm', 'w', 'a', 'i', 't', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'c', 'v', 't', 'p', 's', '2', 'p', 'h', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'c', 'v', 't', 'p',
's', '2', 'p', 'h', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'g', 'f', '2', 'p', '8', 'a',
'f', 'f', 'i', 'n', 'e', 'i', 'n', 'v', 'q', 'b', '_', 'v', '1', '6', 'q',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'g', 'f', '2', 'p', '8', 'a', 'f', 'f', 'i', 'n', 'e', 'i',
'n', 'v', 'q', 'b', '_', 'v', '3', '2', 'q', 'i', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'g', 'f', '2',
'p', '8', 'a', 'f', 'f', 'i', 'n', 'e', 'i', 'n', 'v', 'q', 'b', '_', 'v',
'6', '4', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'g', 'f', '2', 'p', '8', 'a', 'f', 'f', 'i',
'n', 'e', 'q', 'b', '_', 'v', '1', '6', 'q', 'i', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'g', 'f', '2',
'p', '8', 'a', 'f', 'f', 'i', 'n', 'e', 'q', 'b', '_', 'v', '3', '2', 'q',
'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'g', 'f', '2', 'p', '8', 'a', 'f', 'f', 'i', 'n', 'e', 'q',
'b', '_', 'v', '6', '4', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'g', 'f', '2', 'p', '8', 'm',
'u', 'l', 'b', '_', 'v', '1', '6', 'q', 'i', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'g', 'f', '2', 'p',
'8', 'm', 'u', 'l', 'b', '_', 'v', '3', '2', 'q', 'i', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'g', 'f',
'2', 'p', '8', 'm', 'u', 'l', 'b', '_', 'v', '6', '4', 'q', 'i', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'w',
'b', 'i', 'n', 'v', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'w', 'b', 'n', 'o', 'i', 'n', 'v', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'w', 'r', 'f', 's', 'b', 'a', 's', 'e', '3', '2', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'w', 'r', 'f', 's',
'b', 'a', 's', 'e', '6', '4', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'w', 'r', 'g', 's', 'b', 'a', 's', 'e',
'3', '2', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'w', 'r', 'g', 's', 'b', 'a', 's', 'e', '6', '4', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'w',
'r', 'p', 'k', 'r', 'u', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'w', 'r', 's', 's', 'd', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'w', 'r', 's',
's', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'w', 'r', 'u', 's', 's', 'd', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'w', 'r', 'u', 's', 's',
'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'x', 'a', 'b', 'o', 'r', 't', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'x', 'b', 'e', 'g', 'i', 'n',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'x', 'e', 'n', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'f', 'r', 'c', 'z', 'p', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v',
'f', 'r', 'c', 'z', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'f', 'r', 'c', 'z',
'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'f', 'r', 'c', 'z', 'p', 's', '2', '5', '6', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v',
'f', 'r', 'c', 'z', 's', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'f', 'r', 'c', 'z', 's', 's', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'e', 'r', 'm', 'i', 'l', '2', 'p', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r',
'm', 'i', 'l', '2', 'p', 'd', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm',
'i', 'l', '2', 'p', 's', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'p', 'e', 'r', 'm', 'i', 'l', '2', 'p',
's', '2', '5', '6', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a', 'd', 'd', 'b', 'd', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v',
'p', 'h', 'a', 'd', 'd', 'b', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a', 'd', 'd', 'b',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'p', 'h', 'a', 'd', 'd', 'd', 'q', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a',
'd', 'd', 'u', 'b', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a', 'd', 'd', 'u', 'b', 'q',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'h', 'a', 'd', 'd', 'u', 'b', 'w', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a',
'd', 'd', 'u', 'd', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n',
'_', 'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a', 'd', 'd', 'u', 'w', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'h', 'a', 'd', 'd', 'u', 'w', 'q', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a',
'd', 'd', 'w', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'h', 'a', 'd', 'd', 'w', 'q', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v',
'p', 'h', 's', 'u', 'b', 'b', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'h', 's', 'u', 'b', 'd',
'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'p', 'h', 's', 'u', 'b', 'w', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'a',
'c', 's', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'a', 'c', 's', 'd', 'q', 'h', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 'm', 'a', 'c', 's', 'd', 'q', 'l', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'a', 'c',
's', 's', 'd', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'a', 'c', 's', 's', 'd', 'q', 'h',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'm', 'a', 'c', 's', 's', 'd', 'q', 'l', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'm',
'a', 'c', 's', 's', 'w', 'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'a', 'c', 's', 's', 'w',
'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'p', 'm', 'a', 'c', 's', 'w', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'a',
'c', 's', 'w', 'w', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_',
'i', 'a', '3', '2', '_', 'v', 'p', 'm', 'a', 'd', 'c', 's', 's', 'w', 'd',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 'm', 'a', 'd', 'c', 's', 'w', 'd', '\000', '_', '_', 'b', 'u',
'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 'p', 'e',
'r', 'm', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a',
'3', '2', '_', 'v', 'p', 's', 'h', 'a', 'b', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 's', 'h', 'a',
'd', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3',
'2', '_', 'v', 'p', 's', 'h', 'a', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 's', 'h', 'a', 'w',
'\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2',
'_', 'v', 'p', 's', 'h', 'l', 'b', '\000', '_', '_', 'b', 'u', 'i', 'l', 't',
'i', 'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 's', 'h', 'l', 'd', '\000',
'_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_',
'v', 'p', 's', 'h', 'l', 'q', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i',
'n', '_', 'i', 'a', '3', '2', '_', 'v', 'p', 's', 'h', 'l', 'w', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'x',
'r', 'e', 's', 'l', 'd', 't', 'r', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l',
't', 'i', 'n', '_', 'i', 'a', '3', '2', '_', 'x', 's', 'u', 's', 'l', 'd',
't', 'r', 'k', '\000', '_', '_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'i',
'a', '3', '2', '_', 'x', 't', 'e', 's', 't', '\000', '_', '_', 'b', 'u', 'i',
'l', 't', 'i', 'n', '_', 'b', 'i', 't', 'r', 'e', 'v', '\000', '_', '_', 'b',
'u', 'i', 'l', 't', 'i', 'n', '_', 'g', 'e', 't', 'i', 'd', '\000', '_', '_',
'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 'g', 'e', 't', 'p', 's', '\000', '_',
'_', 'b', 'u', 'i', 'l', 't', 'i', 'n', '_', 's', 'e', 't', 'p', 's', '\000',
};
struct BuiltinEntry {
Intrinsic::ID IntrinID;
unsigned StrTabOffset;
const char *getName() const {
return &BuiltinNames[StrTabOffset];
}
bool operator<(StringRef RHS) const {
return strncmp(getName(), RHS.data(), RHS.size()) < 0;
}
};
StringRef TargetPrefix(TargetPrefixStr);
/* Target Independent Builtins */ {
static const BuiltinEntry Names[] = {
{Intrinsic::adjust_trampoline, 0}, // __builtin_adjust_trampoline
{Intrinsic::debugtrap, 28}, // __builtin_debugtrap
{Intrinsic::init_trampoline, 70}, // __builtin_init_trampoline
{Intrinsic::objectsize, 96}, // __builtin_object_size
{Intrinsic::stackrestore, 118}, // __builtin_stack_restore
{Intrinsic::stacksave, 142}, // __builtin_stack_save
{Intrinsic::thread_pointer, 163}, // __builtin_thread_pointer
{Intrinsic::trap, 188}, // __builtin_trap
{Intrinsic::eh_unwind_init, 48}, // __builtin_unwind_init
};
auto I = std::lower_bound(std::begin(Names),
std::end(Names),
BuiltinNameStr);
if (I != std::end(Names) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "aarch64") {
static const BuiltinEntry aarch64Names[] = {
{Intrinsic::aarch64_dmb, 203}, // __builtin_arm_dmb
{Intrinsic::aarch64_dsb, 221}, // __builtin_arm_dsb
{Intrinsic::aarch64_isb, 239}, // __builtin_arm_isb
{Intrinsic::aarch64_tcancel, 525}, // __builtin_arm_tcancel
{Intrinsic::aarch64_tcommit, 547}, // __builtin_arm_tcommit
{Intrinsic::aarch64_tstart, 569}, // __builtin_arm_tstart
{Intrinsic::aarch64_ttest, 590}, // __builtin_arm_ttest
{Intrinsic::aarch64_sve_aesd, 257}, // __builtin_sve_svaesd_u8
{Intrinsic::aarch64_sve_aese, 281}, // __builtin_sve_svaese_u8
{Intrinsic::aarch64_sve_aesimc, 305}, // __builtin_sve_svaesimc_u8
{Intrinsic::aarch64_sve_aesmc, 331}, // __builtin_sve_svaesmc_u8
{Intrinsic::aarch64_sve_rax1, 356}, // __builtin_sve_svrax1_u64
{Intrinsic::aarch64_sve_rdffr, 381}, // __builtin_sve_svrdffr
{Intrinsic::aarch64_sve_rdffr_z, 403}, // __builtin_sve_svrdffr_z
{Intrinsic::aarch64_sve_setffr, 427}, // __builtin_sve_svsetffr
{Intrinsic::aarch64_sve_sm4e, 450}, // __builtin_sve_svsm4e_u32
{Intrinsic::aarch64_sve_sm4ekey, 475}, // __builtin_sve_svsm4ekey_u32
{Intrinsic::aarch64_sve_wrffr, 503}, // __builtin_sve_svwrffr
};
auto I = std::lower_bound(std::begin(aarch64Names),
std::end(aarch64Names),
BuiltinNameStr);
if (I != std::end(aarch64Names) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "amdgcn") {
static const BuiltinEntry amdgcnNames[] = {
{Intrinsic::amdgcn_alignbyte, 610}, // __builtin_amdgcn_alignbyte
{Intrinsic::amdgcn_buffer_wbinvl1, 637}, // __builtin_amdgcn_buffer_wbinvl1
{Intrinsic::amdgcn_buffer_wbinvl1_sc, 669}, // __builtin_amdgcn_buffer_wbinvl1_sc
{Intrinsic::amdgcn_buffer_wbinvl1_vol, 704}, // __builtin_amdgcn_buffer_wbinvl1_vol
{Intrinsic::amdgcn_cubeid, 740}, // __builtin_amdgcn_cubeid
{Intrinsic::amdgcn_cubema, 764}, // __builtin_amdgcn_cubema
{Intrinsic::amdgcn_cubesc, 788}, // __builtin_amdgcn_cubesc
{Intrinsic::amdgcn_cubetc, 812}, // __builtin_amdgcn_cubetc
{Intrinsic::amdgcn_cvt_pk_i16, 836}, // __builtin_amdgcn_cvt_pk_i16
{Intrinsic::amdgcn_cvt_pk_u16, 864}, // __builtin_amdgcn_cvt_pk_u16
{Intrinsic::amdgcn_cvt_pk_u8_f32, 892}, // __builtin_amdgcn_cvt_pk_u8_f32
{Intrinsic::amdgcn_cvt_pknorm_i16, 923}, // __builtin_amdgcn_cvt_pknorm_i16
{Intrinsic::amdgcn_cvt_pknorm_u16, 955}, // __builtin_amdgcn_cvt_pknorm_u16
{Intrinsic::amdgcn_cvt_pkrtz, 987}, // __builtin_amdgcn_cvt_pkrtz
{Intrinsic::amdgcn_dispatch_id, 1014}, // __builtin_amdgcn_dispatch_id
{Intrinsic::amdgcn_ds_bpermute, 1043}, // __builtin_amdgcn_ds_bpermute
{Intrinsic::amdgcn_ds_gws_barrier, 1072}, // __builtin_amdgcn_ds_gws_barrier
{Intrinsic::amdgcn_ds_gws_init, 1104}, // __builtin_amdgcn_ds_gws_init
{Intrinsic::amdgcn_ds_gws_sema_br, 1133}, // __builtin_amdgcn_ds_gws_sema_br
{Intrinsic::amdgcn_ds_gws_sema_p, 1165}, // __builtin_amdgcn_ds_gws_sema_p
{Intrinsic::amdgcn_ds_gws_sema_release_all, 1196}, // __builtin_amdgcn_ds_gws_sema_release_all
{Intrinsic::amdgcn_ds_gws_sema_v, 1237}, // __builtin_amdgcn_ds_gws_sema_v
{Intrinsic::amdgcn_ds_permute, 1268}, // __builtin_amdgcn_ds_permute
{Intrinsic::amdgcn_ds_swizzle, 1296}, // __builtin_amdgcn_ds_swizzle
{Intrinsic::amdgcn_endpgm, 1324}, // __builtin_amdgcn_endpgm
{Intrinsic::amdgcn_fdot2, 1348}, // __builtin_amdgcn_fdot2
{Intrinsic::amdgcn_fmed3, 1371}, // __builtin_amdgcn_fmed3
{Intrinsic::amdgcn_fmul_legacy, 1394}, // __builtin_amdgcn_fmul_legacy
{Intrinsic::amdgcn_groupstaticsize, 1423}, // __builtin_amdgcn_groupstaticsize
{Intrinsic::amdgcn_implicit_buffer_ptr, 1456}, // __builtin_amdgcn_implicit_buffer_ptr
{Intrinsic::amdgcn_implicitarg_ptr, 1493}, // __builtin_amdgcn_implicitarg_ptr
{Intrinsic::amdgcn_interp_mov, 1526}, // __builtin_amdgcn_interp_mov
{Intrinsic::amdgcn_interp_p1, 1554}, // __builtin_amdgcn_interp_p1
{Intrinsic::amdgcn_interp_p1_f16, 1581}, // __builtin_amdgcn_interp_p1_f16
{Intrinsic::amdgcn_interp_p2, 1612}, // __builtin_amdgcn_interp_p2
{Intrinsic::amdgcn_interp_p2_f16, 1639}, // __builtin_amdgcn_interp_p2_f16
{Intrinsic::amdgcn_is_private, 1670}, // __builtin_amdgcn_is_private
{Intrinsic::amdgcn_is_shared, 1698}, // __builtin_amdgcn_is_shared
{Intrinsic::amdgcn_kernarg_segment_ptr, 1725}, // __builtin_amdgcn_kernarg_segment_ptr
{Intrinsic::amdgcn_lerp, 1762}, // __builtin_amdgcn_lerp
{Intrinsic::amdgcn_mbcnt_hi, 1784}, // __builtin_amdgcn_mbcnt_hi
{Intrinsic::amdgcn_mbcnt_lo, 1810}, // __builtin_amdgcn_mbcnt_lo
{Intrinsic::amdgcn_mfma_f32_16x16x16f16, 1836}, // __builtin_amdgcn_mfma_f32_16x16x16f16
{Intrinsic::amdgcn_mfma_f32_16x16x1f32, 1874}, // __builtin_amdgcn_mfma_f32_16x16x1f32
{Intrinsic::amdgcn_mfma_f32_16x16x2bf16, 1911}, // __builtin_amdgcn_mfma_f32_16x16x2bf16
{Intrinsic::amdgcn_mfma_f32_16x16x4f16, 1949}, // __builtin_amdgcn_mfma_f32_16x16x4f16
{Intrinsic::amdgcn_mfma_f32_16x16x4f32, 1986}, // __builtin_amdgcn_mfma_f32_16x16x4f32
{Intrinsic::amdgcn_mfma_f32_16x16x8bf16, 2023}, // __builtin_amdgcn_mfma_f32_16x16x8bf16
{Intrinsic::amdgcn_mfma_f32_32x32x1f32, 2061}, // __builtin_amdgcn_mfma_f32_32x32x1f32
{Intrinsic::amdgcn_mfma_f32_32x32x2bf16, 2098}, // __builtin_amdgcn_mfma_f32_32x32x2bf16
{Intrinsic::amdgcn_mfma_f32_32x32x2f32, 2136}, // __builtin_amdgcn_mfma_f32_32x32x2f32
{Intrinsic::amdgcn_mfma_f32_32x32x4bf16, 2173}, // __builtin_amdgcn_mfma_f32_32x32x4bf16
{Intrinsic::amdgcn_mfma_f32_32x32x4f16, 2211}, // __builtin_amdgcn_mfma_f32_32x32x4f16
{Intrinsic::amdgcn_mfma_f32_32x32x8f16, 2248}, // __builtin_amdgcn_mfma_f32_32x32x8f16
{Intrinsic::amdgcn_mfma_f32_4x4x1f32, 2285}, // __builtin_amdgcn_mfma_f32_4x4x1f32
{Intrinsic::amdgcn_mfma_f32_4x4x2bf16, 2320}, // __builtin_amdgcn_mfma_f32_4x4x2bf16
{Intrinsic::amdgcn_mfma_f32_4x4x4f16, 2356}, // __builtin_amdgcn_mfma_f32_4x4x4f16
{Intrinsic::amdgcn_mfma_i32_16x16x16i8, 2391}, // __builtin_amdgcn_mfma_i32_16x16x16i8
{Intrinsic::amdgcn_mfma_i32_16x16x4i8, 2428}, // __builtin_amdgcn_mfma_i32_16x16x4i8
{Intrinsic::amdgcn_mfma_i32_32x32x4i8, 2464}, // __builtin_amdgcn_mfma_i32_32x32x4i8
{Intrinsic::amdgcn_mfma_i32_32x32x8i8, 2500}, // __builtin_amdgcn_mfma_i32_32x32x8i8
{Intrinsic::amdgcn_mfma_i32_4x4x4i8, 2536}, // __builtin_amdgcn_mfma_i32_4x4x4i8
{Intrinsic::amdgcn_mqsad_pk_u16_u8, 2570}, // __builtin_amdgcn_mqsad_pk_u16_u8
{Intrinsic::amdgcn_mqsad_u32_u8, 2603}, // __builtin_amdgcn_mqsad_u32_u8
{Intrinsic::amdgcn_msad_u8, 2633}, // __builtin_amdgcn_msad_u8
{Intrinsic::amdgcn_permlane16, 2658}, // __builtin_amdgcn_permlane16
{Intrinsic::amdgcn_permlanex16, 2686}, // __builtin_amdgcn_permlanex16
{Intrinsic::amdgcn_qsad_pk_u16_u8, 2715}, // __builtin_amdgcn_qsad_pk_u16_u8
{Intrinsic::amdgcn_queue_ptr, 2747}, // __builtin_amdgcn_queue_ptr
{Intrinsic::amdgcn_rcp_legacy, 2774}, // __builtin_amdgcn_rcp_legacy
{Intrinsic::amdgcn_readfirstlane, 2802}, // __builtin_amdgcn_readfirstlane
{Intrinsic::amdgcn_readlane, 2833}, // __builtin_amdgcn_readlane
{Intrinsic::amdgcn_rsq_legacy, 2859}, // __builtin_amdgcn_rsq_legacy
{Intrinsic::amdgcn_s_barrier, 2887}, // __builtin_amdgcn_s_barrier
{Intrinsic::amdgcn_s_dcache_inv, 2914}, // __builtin_amdgcn_s_dcache_inv
{Intrinsic::amdgcn_s_dcache_inv_vol, 2944}, // __builtin_amdgcn_s_dcache_inv_vol
{Intrinsic::amdgcn_s_dcache_wb, 2978}, // __builtin_amdgcn_s_dcache_wb
{Intrinsic::amdgcn_s_dcache_wb_vol, 3007}, // __builtin_amdgcn_s_dcache_wb_vol
{Intrinsic::amdgcn_s_decperflevel, 3040}, // __builtin_amdgcn_s_decperflevel
{Intrinsic::amdgcn_s_get_waveid_in_workgroup, 3072}, // __builtin_amdgcn_s_get_waveid_in_workgroup
{Intrinsic::amdgcn_s_getpc, 3115}, // __builtin_amdgcn_s_getpc
{Intrinsic::amdgcn_s_getreg, 3140}, // __builtin_amdgcn_s_getreg
{Intrinsic::amdgcn_s_incperflevel, 3166}, // __builtin_amdgcn_s_incperflevel
{Intrinsic::amdgcn_s_memrealtime, 3198}, // __builtin_amdgcn_s_memrealtime
{Intrinsic::amdgcn_s_memtime, 3229}, // __builtin_amdgcn_s_memtime
{Intrinsic::amdgcn_s_sendmsg, 3256}, // __builtin_amdgcn_s_sendmsg
{Intrinsic::amdgcn_s_sendmsghalt, 3283}, // __builtin_amdgcn_s_sendmsghalt
{Intrinsic::amdgcn_s_setreg, 3314}, // __builtin_amdgcn_s_setreg
{Intrinsic::amdgcn_s_sleep, 3340}, // __builtin_amdgcn_s_sleep
{Intrinsic::amdgcn_s_waitcnt, 3365}, // __builtin_amdgcn_s_waitcnt
{Intrinsic::amdgcn_sad_hi_u8, 3392}, // __builtin_amdgcn_sad_hi_u8
{Intrinsic::amdgcn_sad_u16, 3419}, // __builtin_amdgcn_sad_u16
{Intrinsic::amdgcn_sad_u8, 3444}, // __builtin_amdgcn_sad_u8
{Intrinsic::amdgcn_sdot2, 3468}, // __builtin_amdgcn_sdot2
{Intrinsic::amdgcn_sdot4, 3491}, // __builtin_amdgcn_sdot4
{Intrinsic::amdgcn_sdot8, 3514}, // __builtin_amdgcn_sdot8
{Intrinsic::amdgcn_udot2, 3537}, // __builtin_amdgcn_udot2
{Intrinsic::amdgcn_udot4, 3560}, // __builtin_amdgcn_udot4
{Intrinsic::amdgcn_udot8, 3583}, // __builtin_amdgcn_udot8
{Intrinsic::amdgcn_wave_barrier, 3606}, // __builtin_amdgcn_wave_barrier
{Intrinsic::amdgcn_wavefrontsize, 3636}, // __builtin_amdgcn_wavefrontsize
{Intrinsic::amdgcn_workgroup_id_x, 3667}, // __builtin_amdgcn_workgroup_id_x
{Intrinsic::amdgcn_workgroup_id_y, 3699}, // __builtin_amdgcn_workgroup_id_y
{Intrinsic::amdgcn_workgroup_id_z, 3731}, // __builtin_amdgcn_workgroup_id_z
{Intrinsic::amdgcn_writelane, 3763}, // __builtin_amdgcn_writelane
};
auto I = std::lower_bound(std::begin(amdgcnNames),
std::end(amdgcnNames),
BuiltinNameStr);
if (I != std::end(amdgcnNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "arm") {
static const BuiltinEntry armNames[] = {
{Intrinsic::arm_cdp, 3790}, // __builtin_arm_cdp
{Intrinsic::arm_cdp2, 3808}, // __builtin_arm_cdp2
{Intrinsic::arm_cmse_tt, 3827}, // __builtin_arm_cmse_TT
{Intrinsic::arm_cmse_tta, 3849}, // __builtin_arm_cmse_TTA
{Intrinsic::arm_cmse_ttat, 3872}, // __builtin_arm_cmse_TTAT
{Intrinsic::arm_cmse_ttt, 3896}, // __builtin_arm_cmse_TTT
{Intrinsic::arm_dmb, 203}, // __builtin_arm_dmb
{Intrinsic::arm_dsb, 221}, // __builtin_arm_dsb
{Intrinsic::arm_get_fpscr, 3919}, // __builtin_arm_get_fpscr
{Intrinsic::arm_isb, 239}, // __builtin_arm_isb
{Intrinsic::arm_ldc, 3943}, // __builtin_arm_ldc
{Intrinsic::arm_ldc2, 3961}, // __builtin_arm_ldc2
{Intrinsic::arm_ldc2l, 3980}, // __builtin_arm_ldc2l
{Intrinsic::arm_ldcl, 4000}, // __builtin_arm_ldcl
{Intrinsic::arm_mcr, 4019}, // __builtin_arm_mcr
{Intrinsic::arm_mcr2, 4037}, // __builtin_arm_mcr2
{Intrinsic::arm_mrc, 4056}, // __builtin_arm_mrc
{Intrinsic::arm_mrc2, 4074}, // __builtin_arm_mrc2
{Intrinsic::arm_qadd, 4093}, // __builtin_arm_qadd
{Intrinsic::arm_qadd16, 4112}, // __builtin_arm_qadd16
{Intrinsic::arm_qadd8, 4133}, // __builtin_arm_qadd8
{Intrinsic::arm_qasx, 4153}, // __builtin_arm_qasx
{Intrinsic::arm_qsax, 4172}, // __builtin_arm_qsax
{Intrinsic::arm_qsub, 4191}, // __builtin_arm_qsub
{Intrinsic::arm_qsub16, 4210}, // __builtin_arm_qsub16
{Intrinsic::arm_qsub8, 4231}, // __builtin_arm_qsub8
{Intrinsic::arm_sadd16, 4251}, // __builtin_arm_sadd16
{Intrinsic::arm_sadd8, 4272}, // __builtin_arm_sadd8
{Intrinsic::arm_sasx, 4292}, // __builtin_arm_sasx
{Intrinsic::arm_sel, 4311}, // __builtin_arm_sel
{Intrinsic::arm_set_fpscr, 4329}, // __builtin_arm_set_fpscr
{Intrinsic::arm_shadd16, 4353}, // __builtin_arm_shadd16
{Intrinsic::arm_shadd8, 4375}, // __builtin_arm_shadd8
{Intrinsic::arm_shasx, 4396}, // __builtin_arm_shasx
{Intrinsic::arm_shsax, 4416}, // __builtin_arm_shsax
{Intrinsic::arm_shsub16, 4436}, // __builtin_arm_shsub16
{Intrinsic::arm_shsub8, 4458}, // __builtin_arm_shsub8
{Intrinsic::arm_smlabb, 4479}, // __builtin_arm_smlabb
{Intrinsic::arm_smlabt, 4500}, // __builtin_arm_smlabt
{Intrinsic::arm_smlad, 4521}, // __builtin_arm_smlad
{Intrinsic::arm_smladx, 4541}, // __builtin_arm_smladx
{Intrinsic::arm_smlald, 4562}, // __builtin_arm_smlald
{Intrinsic::arm_smlaldx, 4583}, // __builtin_arm_smlaldx
{Intrinsic::arm_smlatb, 4605}, // __builtin_arm_smlatb
{Intrinsic::arm_smlatt, 4626}, // __builtin_arm_smlatt
{Intrinsic::arm_smlawb, 4647}, // __builtin_arm_smlawb
{Intrinsic::arm_smlawt, 4668}, // __builtin_arm_smlawt
{Intrinsic::arm_smlsd, 4689}, // __builtin_arm_smlsd
{Intrinsic::arm_smlsdx, 4709}, // __builtin_arm_smlsdx
{Intrinsic::arm_smlsld, 4730}, // __builtin_arm_smlsld
{Intrinsic::arm_smlsldx, 4751}, // __builtin_arm_smlsldx
{Intrinsic::arm_smuad, 4773}, // __builtin_arm_smuad
{Intrinsic::arm_smuadx, 4793}, // __builtin_arm_smuadx
{Intrinsic::arm_smulbb, 4814}, // __builtin_arm_smulbb
{Intrinsic::arm_smulbt, 4835}, // __builtin_arm_smulbt
{Intrinsic::arm_smultb, 4856}, // __builtin_arm_smultb
{Intrinsic::arm_smultt, 4877}, // __builtin_arm_smultt
{Intrinsic::arm_smulwb, 4898}, // __builtin_arm_smulwb
{Intrinsic::arm_smulwt, 4919}, // __builtin_arm_smulwt
{Intrinsic::arm_smusd, 4940}, // __builtin_arm_smusd
{Intrinsic::arm_smusdx, 4960}, // __builtin_arm_smusdx
{Intrinsic::arm_ssat, 4981}, // __builtin_arm_ssat
{Intrinsic::arm_ssat16, 5000}, // __builtin_arm_ssat16
{Intrinsic::arm_ssax, 5021}, // __builtin_arm_ssax
{Intrinsic::arm_ssub16, 5040}, // __builtin_arm_ssub16
{Intrinsic::arm_ssub8, 5061}, // __builtin_arm_ssub8
{Intrinsic::arm_stc, 5081}, // __builtin_arm_stc
{Intrinsic::arm_stc2, 5099}, // __builtin_arm_stc2
{Intrinsic::arm_stc2l, 5118}, // __builtin_arm_stc2l
{Intrinsic::arm_stcl, 5138}, // __builtin_arm_stcl
{Intrinsic::arm_sxtab16, 5157}, // __builtin_arm_sxtab16
{Intrinsic::arm_sxtb16, 5179}, // __builtin_arm_sxtb16
{Intrinsic::arm_uadd16, 5200}, // __builtin_arm_uadd16
{Intrinsic::arm_uadd8, 5221}, // __builtin_arm_uadd8
{Intrinsic::arm_uasx, 5241}, // __builtin_arm_uasx
{Intrinsic::arm_uhadd16, 5260}, // __builtin_arm_uhadd16
{Intrinsic::arm_uhadd8, 5282}, // __builtin_arm_uhadd8
{Intrinsic::arm_uhasx, 5303}, // __builtin_arm_uhasx
{Intrinsic::arm_uhsax, 5323}, // __builtin_arm_uhsax
{Intrinsic::arm_uhsub16, 5343}, // __builtin_arm_uhsub16
{Intrinsic::arm_uhsub8, 5365}, // __builtin_arm_uhsub8
{Intrinsic::arm_uqadd16, 5386}, // __builtin_arm_uqadd16
{Intrinsic::arm_uqadd8, 5408}, // __builtin_arm_uqadd8
{Intrinsic::arm_uqasx, 5429}, // __builtin_arm_uqasx
{Intrinsic::arm_uqsax, 5449}, // __builtin_arm_uqsax
{Intrinsic::arm_uqsub16, 5469}, // __builtin_arm_uqsub16
{Intrinsic::arm_uqsub8, 5491}, // __builtin_arm_uqsub8
{Intrinsic::arm_usad8, 5512}, // __builtin_arm_usad8
{Intrinsic::arm_usada8, 5532}, // __builtin_arm_usada8
{Intrinsic::arm_usat, 5553}, // __builtin_arm_usat
{Intrinsic::arm_usat16, 5572}, // __builtin_arm_usat16
{Intrinsic::arm_usax, 5593}, // __builtin_arm_usax
{Intrinsic::arm_usub16, 5612}, // __builtin_arm_usub16
{Intrinsic::arm_usub8, 5633}, // __builtin_arm_usub8
{Intrinsic::arm_uxtab16, 5653}, // __builtin_arm_uxtab16
{Intrinsic::arm_uxtb16, 5675}, // __builtin_arm_uxtb16
};
auto I = std::lower_bound(std::begin(armNames),
std::end(armNames),
BuiltinNameStr);
if (I != std::end(armNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "bpf") {
static const BuiltinEntry bpfNames[] = {
{Intrinsic::bpf_btf_type_id, 5696}, // __builtin_bpf_btf_type_id
{Intrinsic::bpf_load_byte, 5722}, // __builtin_bpf_load_byte
{Intrinsic::bpf_load_half, 5746}, // __builtin_bpf_load_half
{Intrinsic::bpf_load_word, 5770}, // __builtin_bpf_load_word
{Intrinsic::bpf_passthrough, 5794}, // __builtin_bpf_passthrough
{Intrinsic::bpf_preserve_enum_value, 5820}, // __builtin_bpf_preserve_enum_value
{Intrinsic::bpf_preserve_field_info, 5854}, // __builtin_bpf_preserve_field_info
{Intrinsic::bpf_preserve_type_info, 5888}, // __builtin_bpf_preserve_type_info
{Intrinsic::bpf_pseudo, 5921}, // __builtin_bpf_pseudo
};
auto I = std::lower_bound(std::begin(bpfNames),
std::end(bpfNames),
BuiltinNameStr);
if (I != std::end(bpfNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "hexagon") {
static const BuiltinEntry hexagonNames[] = {
{Intrinsic::hexagon_A2_abs, 5942}, // __builtin_HEXAGON_A2_abs
{Intrinsic::hexagon_A2_absp, 5967}, // __builtin_HEXAGON_A2_absp
{Intrinsic::hexagon_A2_abssat, 5993}, // __builtin_HEXAGON_A2_abssat
{Intrinsic::hexagon_A2_add, 6021}, // __builtin_HEXAGON_A2_add
{Intrinsic::hexagon_A2_addh_h16_hh, 6046}, // __builtin_HEXAGON_A2_addh_h16_hh
{Intrinsic::hexagon_A2_addh_h16_hl, 6079}, // __builtin_HEXAGON_A2_addh_h16_hl
{Intrinsic::hexagon_A2_addh_h16_lh, 6112}, // __builtin_HEXAGON_A2_addh_h16_lh
{Intrinsic::hexagon_A2_addh_h16_ll, 6145}, // __builtin_HEXAGON_A2_addh_h16_ll
{Intrinsic::hexagon_A2_addh_h16_sat_hh, 6178}, // __builtin_HEXAGON_A2_addh_h16_sat_hh
{Intrinsic::hexagon_A2_addh_h16_sat_hl, 6215}, // __builtin_HEXAGON_A2_addh_h16_sat_hl
{Intrinsic::hexagon_A2_addh_h16_sat_lh, 6252}, // __builtin_HEXAGON_A2_addh_h16_sat_lh
{Intrinsic::hexagon_A2_addh_h16_sat_ll, 6289}, // __builtin_HEXAGON_A2_addh_h16_sat_ll
{Intrinsic::hexagon_A2_addh_l16_hl, 6326}, // __builtin_HEXAGON_A2_addh_l16_hl
{Intrinsic::hexagon_A2_addh_l16_ll, 6359}, // __builtin_HEXAGON_A2_addh_l16_ll
{Intrinsic::hexagon_A2_addh_l16_sat_hl, 6392}, // __builtin_HEXAGON_A2_addh_l16_sat_hl
{Intrinsic::hexagon_A2_addh_l16_sat_ll, 6429}, // __builtin_HEXAGON_A2_addh_l16_sat_ll
{Intrinsic::hexagon_A2_addi, 6466}, // __builtin_HEXAGON_A2_addi
{Intrinsic::hexagon_A2_addp, 6492}, // __builtin_HEXAGON_A2_addp
{Intrinsic::hexagon_A2_addpsat, 6518}, // __builtin_HEXAGON_A2_addpsat
{Intrinsic::hexagon_A2_addsat, 6547}, // __builtin_HEXAGON_A2_addsat
{Intrinsic::hexagon_A2_addsp, 6575}, // __builtin_HEXAGON_A2_addsp
{Intrinsic::hexagon_A2_and, 6602}, // __builtin_HEXAGON_A2_and
{Intrinsic::hexagon_A2_andir, 6627}, // __builtin_HEXAGON_A2_andir
{Intrinsic::hexagon_A2_andp, 6654}, // __builtin_HEXAGON_A2_andp
{Intrinsic::hexagon_A2_aslh, 6680}, // __builtin_HEXAGON_A2_aslh
{Intrinsic::hexagon_A2_asrh, 6706}, // __builtin_HEXAGON_A2_asrh
{Intrinsic::hexagon_A2_combine_hh, 6732}, // __builtin_HEXAGON_A2_combine_hh
{Intrinsic::hexagon_A2_combine_hl, 6764}, // __builtin_HEXAGON_A2_combine_hl
{Intrinsic::hexagon_A2_combine_lh, 6796}, // __builtin_HEXAGON_A2_combine_lh
{Intrinsic::hexagon_A2_combine_ll, 6828}, // __builtin_HEXAGON_A2_combine_ll
{Intrinsic::hexagon_A2_combineii, 6860}, // __builtin_HEXAGON_A2_combineii
{Intrinsic::hexagon_A2_combinew, 6891}, // __builtin_HEXAGON_A2_combinew
{Intrinsic::hexagon_A2_max, 6921}, // __builtin_HEXAGON_A2_max
{Intrinsic::hexagon_A2_maxp, 6946}, // __builtin_HEXAGON_A2_maxp
{Intrinsic::hexagon_A2_maxu, 6972}, // __builtin_HEXAGON_A2_maxu
{Intrinsic::hexagon_A2_maxup, 6998}, // __builtin_HEXAGON_A2_maxup
{Intrinsic::hexagon_A2_min, 7025}, // __builtin_HEXAGON_A2_min
{Intrinsic::hexagon_A2_minp, 7050}, // __builtin_HEXAGON_A2_minp
{Intrinsic::hexagon_A2_minu, 7076}, // __builtin_HEXAGON_A2_minu
{Intrinsic::hexagon_A2_minup, 7102}, // __builtin_HEXAGON_A2_minup
{Intrinsic::hexagon_A2_neg, 7129}, // __builtin_HEXAGON_A2_neg
{Intrinsic::hexagon_A2_negp, 7154}, // __builtin_HEXAGON_A2_negp
{Intrinsic::hexagon_A2_negsat, 7180}, // __builtin_HEXAGON_A2_negsat
{Intrinsic::hexagon_A2_not, 7208}, // __builtin_HEXAGON_A2_not
{Intrinsic::hexagon_A2_notp, 7233}, // __builtin_HEXAGON_A2_notp
{Intrinsic::hexagon_A2_or, 7259}, // __builtin_HEXAGON_A2_or
{Intrinsic::hexagon_A2_orir, 7283}, // __builtin_HEXAGON_A2_orir
{Intrinsic::hexagon_A2_orp, 7309}, // __builtin_HEXAGON_A2_orp
{Intrinsic::hexagon_A2_roundsat, 7334}, // __builtin_HEXAGON_A2_roundsat
{Intrinsic::hexagon_A2_sat, 7364}, // __builtin_HEXAGON_A2_sat
{Intrinsic::hexagon_A2_satb, 7389}, // __builtin_HEXAGON_A2_satb
{Intrinsic::hexagon_A2_sath, 7415}, // __builtin_HEXAGON_A2_sath
{Intrinsic::hexagon_A2_satub, 7441}, // __builtin_HEXAGON_A2_satub
{Intrinsic::hexagon_A2_satuh, 7468}, // __builtin_HEXAGON_A2_satuh
{Intrinsic::hexagon_A2_sub, 7495}, // __builtin_HEXAGON_A2_sub
{Intrinsic::hexagon_A2_subh_h16_hh, 7520}, // __builtin_HEXAGON_A2_subh_h16_hh
{Intrinsic::hexagon_A2_subh_h16_hl, 7553}, // __builtin_HEXAGON_A2_subh_h16_hl
{Intrinsic::hexagon_A2_subh_h16_lh, 7586}, // __builtin_HEXAGON_A2_subh_h16_lh
{Intrinsic::hexagon_A2_subh_h16_ll, 7619}, // __builtin_HEXAGON_A2_subh_h16_ll
{Intrinsic::hexagon_A2_subh_h16_sat_hh, 7652}, // __builtin_HEXAGON_A2_subh_h16_sat_hh
{Intrinsic::hexagon_A2_subh_h16_sat_hl, 7689}, // __builtin_HEXAGON_A2_subh_h16_sat_hl
{Intrinsic::hexagon_A2_subh_h16_sat_lh, 7726}, // __builtin_HEXAGON_A2_subh_h16_sat_lh
{Intrinsic::hexagon_A2_subh_h16_sat_ll, 7763}, // __builtin_HEXAGON_A2_subh_h16_sat_ll
{Intrinsic::hexagon_A2_subh_l16_hl, 7800}, // __builtin_HEXAGON_A2_subh_l16_hl
{Intrinsic::hexagon_A2_subh_l16_ll, 7833}, // __builtin_HEXAGON_A2_subh_l16_ll
{Intrinsic::hexagon_A2_subh_l16_sat_hl, 7866}, // __builtin_HEXAGON_A2_subh_l16_sat_hl
{Intrinsic::hexagon_A2_subh_l16_sat_ll, 7903}, // __builtin_HEXAGON_A2_subh_l16_sat_ll
{Intrinsic::hexagon_A2_subp, 7940}, // __builtin_HEXAGON_A2_subp
{Intrinsic::hexagon_A2_subri, 7966}, // __builtin_HEXAGON_A2_subri
{Intrinsic::hexagon_A2_subsat, 7993}, // __builtin_HEXAGON_A2_subsat
{Intrinsic::hexagon_A2_svaddh, 8021}, // __builtin_HEXAGON_A2_svaddh
{Intrinsic::hexagon_A2_svaddhs, 8049}, // __builtin_HEXAGON_A2_svaddhs
{Intrinsic::hexagon_A2_svadduhs, 8078}, // __builtin_HEXAGON_A2_svadduhs
{Intrinsic::hexagon_A2_svavgh, 8108}, // __builtin_HEXAGON_A2_svavgh
{Intrinsic::hexagon_A2_svavghs, 8136}, // __builtin_HEXAGON_A2_svavghs
{Intrinsic::hexagon_A2_svnavgh, 8165}, // __builtin_HEXAGON_A2_svnavgh
{Intrinsic::hexagon_A2_svsubh, 8194}, // __builtin_HEXAGON_A2_svsubh
{Intrinsic::hexagon_A2_svsubhs, 8222}, // __builtin_HEXAGON_A2_svsubhs
{Intrinsic::hexagon_A2_svsubuhs, 8251}, // __builtin_HEXAGON_A2_svsubuhs
{Intrinsic::hexagon_A2_swiz, 8281}, // __builtin_HEXAGON_A2_swiz
{Intrinsic::hexagon_A2_sxtb, 8307}, // __builtin_HEXAGON_A2_sxtb
{Intrinsic::hexagon_A2_sxth, 8333}, // __builtin_HEXAGON_A2_sxth
{Intrinsic::hexagon_A2_sxtw, 8359}, // __builtin_HEXAGON_A2_sxtw
{Intrinsic::hexagon_A2_tfr, 8385}, // __builtin_HEXAGON_A2_tfr
{Intrinsic::hexagon_A2_tfrih, 8410}, // __builtin_HEXAGON_A2_tfrih
{Intrinsic::hexagon_A2_tfril, 8437}, // __builtin_HEXAGON_A2_tfril
{Intrinsic::hexagon_A2_tfrp, 8464}, // __builtin_HEXAGON_A2_tfrp
{Intrinsic::hexagon_A2_tfrpi, 8490}, // __builtin_HEXAGON_A2_tfrpi
{Intrinsic::hexagon_A2_tfrsi, 8517}, // __builtin_HEXAGON_A2_tfrsi
{Intrinsic::hexagon_A2_vabsh, 8544}, // __builtin_HEXAGON_A2_vabsh
{Intrinsic::hexagon_A2_vabshsat, 8571}, // __builtin_HEXAGON_A2_vabshsat
{Intrinsic::hexagon_A2_vabsw, 8601}, // __builtin_HEXAGON_A2_vabsw
{Intrinsic::hexagon_A2_vabswsat, 8628}, // __builtin_HEXAGON_A2_vabswsat
{Intrinsic::hexagon_A2_vaddb_map, 8658}, // __builtin_HEXAGON_A2_vaddb_map
{Intrinsic::hexagon_A2_vaddh, 8689}, // __builtin_HEXAGON_A2_vaddh
{Intrinsic::hexagon_A2_vaddhs, 8716}, // __builtin_HEXAGON_A2_vaddhs
{Intrinsic::hexagon_A2_vaddub, 8744}, // __builtin_HEXAGON_A2_vaddub
{Intrinsic::hexagon_A2_vaddubs, 8772}, // __builtin_HEXAGON_A2_vaddubs
{Intrinsic::hexagon_A2_vadduhs, 8801}, // __builtin_HEXAGON_A2_vadduhs
{Intrinsic::hexagon_A2_vaddw, 8830}, // __builtin_HEXAGON_A2_vaddw
{Intrinsic::hexagon_A2_vaddws, 8857}, // __builtin_HEXAGON_A2_vaddws
{Intrinsic::hexagon_A2_vavgh, 8885}, // __builtin_HEXAGON_A2_vavgh
{Intrinsic::hexagon_A2_vavghcr, 8912}, // __builtin_HEXAGON_A2_vavghcr
{Intrinsic::hexagon_A2_vavghr, 8941}, // __builtin_HEXAGON_A2_vavghr
{Intrinsic::hexagon_A2_vavgub, 8969}, // __builtin_HEXAGON_A2_vavgub
{Intrinsic::hexagon_A2_vavgubr, 8997}, // __builtin_HEXAGON_A2_vavgubr
{Intrinsic::hexagon_A2_vavguh, 9026}, // __builtin_HEXAGON_A2_vavguh
{Intrinsic::hexagon_A2_vavguhr, 9054}, // __builtin_HEXAGON_A2_vavguhr
{Intrinsic::hexagon_A2_vavguw, 9083}, // __builtin_HEXAGON_A2_vavguw
{Intrinsic::hexagon_A2_vavguwr, 9111}, // __builtin_HEXAGON_A2_vavguwr
{Intrinsic::hexagon_A2_vavgw, 9140}, // __builtin_HEXAGON_A2_vavgw
{Intrinsic::hexagon_A2_vavgwcr, 9167}, // __builtin_HEXAGON_A2_vavgwcr
{Intrinsic::hexagon_A2_vavgwr, 9196}, // __builtin_HEXAGON_A2_vavgwr
{Intrinsic::hexagon_A2_vcmpbeq, 9224}, // __builtin_HEXAGON_A2_vcmpbeq
{Intrinsic::hexagon_A2_vcmpbgtu, 9253}, // __builtin_HEXAGON_A2_vcmpbgtu
{Intrinsic::hexagon_A2_vcmpheq, 9283}, // __builtin_HEXAGON_A2_vcmpheq
{Intrinsic::hexagon_A2_vcmphgt, 9312}, // __builtin_HEXAGON_A2_vcmphgt
{Intrinsic::hexagon_A2_vcmphgtu, 9341}, // __builtin_HEXAGON_A2_vcmphgtu
{Intrinsic::hexagon_A2_vcmpweq, 9371}, // __builtin_HEXAGON_A2_vcmpweq
{Intrinsic::hexagon_A2_vcmpwgt, 9400}, // __builtin_HEXAGON_A2_vcmpwgt
{Intrinsic::hexagon_A2_vcmpwgtu, 9429}, // __builtin_HEXAGON_A2_vcmpwgtu
{Intrinsic::hexagon_A2_vconj, 9459}, // __builtin_HEXAGON_A2_vconj
{Intrinsic::hexagon_A2_vmaxb, 9486}, // __builtin_HEXAGON_A2_vmaxb
{Intrinsic::hexagon_A2_vmaxh, 9513}, // __builtin_HEXAGON_A2_vmaxh
{Intrinsic::hexagon_A2_vmaxub, 9540}, // __builtin_HEXAGON_A2_vmaxub
{Intrinsic::hexagon_A2_vmaxuh, 9568}, // __builtin_HEXAGON_A2_vmaxuh
{Intrinsic::hexagon_A2_vmaxuw, 9596}, // __builtin_HEXAGON_A2_vmaxuw
{Intrinsic::hexagon_A2_vmaxw, 9624}, // __builtin_HEXAGON_A2_vmaxw
{Intrinsic::hexagon_A2_vminb, 9651}, // __builtin_HEXAGON_A2_vminb
{Intrinsic::hexagon_A2_vminh, 9678}, // __builtin_HEXAGON_A2_vminh
{Intrinsic::hexagon_A2_vminub, 9705}, // __builtin_HEXAGON_A2_vminub
{Intrinsic::hexagon_A2_vminuh, 9733}, // __builtin_HEXAGON_A2_vminuh
{Intrinsic::hexagon_A2_vminuw, 9761}, // __builtin_HEXAGON_A2_vminuw
{Intrinsic::hexagon_A2_vminw, 9789}, // __builtin_HEXAGON_A2_vminw
{Intrinsic::hexagon_A2_vnavgh, 9816}, // __builtin_HEXAGON_A2_vnavgh
{Intrinsic::hexagon_A2_vnavghcr, 9844}, // __builtin_HEXAGON_A2_vnavghcr
{Intrinsic::hexagon_A2_vnavghr, 9874}, // __builtin_HEXAGON_A2_vnavghr
{Intrinsic::hexagon_A2_vnavgw, 9903}, // __builtin_HEXAGON_A2_vnavgw
{Intrinsic::hexagon_A2_vnavgwcr, 9931}, // __builtin_HEXAGON_A2_vnavgwcr
{Intrinsic::hexagon_A2_vnavgwr, 9961}, // __builtin_HEXAGON_A2_vnavgwr
{Intrinsic::hexagon_A2_vraddub, 9990}, // __builtin_HEXAGON_A2_vraddub
{Intrinsic::hexagon_A2_vraddub_acc, 10019}, // __builtin_HEXAGON_A2_vraddub_acc
{Intrinsic::hexagon_A2_vrsadub, 10052}, // __builtin_HEXAGON_A2_vrsadub
{Intrinsic::hexagon_A2_vrsadub_acc, 10081}, // __builtin_HEXAGON_A2_vrsadub_acc
{Intrinsic::hexagon_A2_vsubb_map, 10114}, // __builtin_HEXAGON_A2_vsubb_map
{Intrinsic::hexagon_A2_vsubh, 10145}, // __builtin_HEXAGON_A2_vsubh
{Intrinsic::hexagon_A2_vsubhs, 10172}, // __builtin_HEXAGON_A2_vsubhs
{Intrinsic::hexagon_A2_vsubub, 10200}, // __builtin_HEXAGON_A2_vsubub
{Intrinsic::hexagon_A2_vsububs, 10228}, // __builtin_HEXAGON_A2_vsububs
{Intrinsic::hexagon_A2_vsubuhs, 10257}, // __builtin_HEXAGON_A2_vsubuhs
{Intrinsic::hexagon_A2_vsubw, 10286}, // __builtin_HEXAGON_A2_vsubw
{Intrinsic::hexagon_A2_vsubws, 10313}, // __builtin_HEXAGON_A2_vsubws
{Intrinsic::hexagon_A2_xor, 10341}, // __builtin_HEXAGON_A2_xor
{Intrinsic::hexagon_A2_xorp, 10366}, // __builtin_HEXAGON_A2_xorp
{Intrinsic::hexagon_A2_zxtb, 10392}, // __builtin_HEXAGON_A2_zxtb
{Intrinsic::hexagon_A2_zxth, 10418}, // __builtin_HEXAGON_A2_zxth
{Intrinsic::hexagon_A4_andn, 10444}, // __builtin_HEXAGON_A4_andn
{Intrinsic::hexagon_A4_andnp, 10470}, // __builtin_HEXAGON_A4_andnp
{Intrinsic::hexagon_A4_bitsplit, 10497}, // __builtin_HEXAGON_A4_bitsplit
{Intrinsic::hexagon_A4_bitspliti, 10527}, // __builtin_HEXAGON_A4_bitspliti
{Intrinsic::hexagon_A4_boundscheck, 10558}, // __builtin_HEXAGON_A4_boundscheck
{Intrinsic::hexagon_A4_cmpbeq, 10591}, // __builtin_HEXAGON_A4_cmpbeq
{Intrinsic::hexagon_A4_cmpbeqi, 10619}, // __builtin_HEXAGON_A4_cmpbeqi
{Intrinsic::hexagon_A4_cmpbgt, 10648}, // __builtin_HEXAGON_A4_cmpbgt
{Intrinsic::hexagon_A4_cmpbgti, 10676}, // __builtin_HEXAGON_A4_cmpbgti
{Intrinsic::hexagon_A4_cmpbgtu, 10705}, // __builtin_HEXAGON_A4_cmpbgtu
{Intrinsic::hexagon_A4_cmpbgtui, 10734}, // __builtin_HEXAGON_A4_cmpbgtui
{Intrinsic::hexagon_A4_cmpheq, 10764}, // __builtin_HEXAGON_A4_cmpheq
{Intrinsic::hexagon_A4_cmpheqi, 10792}, // __builtin_HEXAGON_A4_cmpheqi
{Intrinsic::hexagon_A4_cmphgt, 10821}, // __builtin_HEXAGON_A4_cmphgt
{Intrinsic::hexagon_A4_cmphgti, 10849}, // __builtin_HEXAGON_A4_cmphgti
{Intrinsic::hexagon_A4_cmphgtu, 10878}, // __builtin_HEXAGON_A4_cmphgtu
{Intrinsic::hexagon_A4_cmphgtui, 10907}, // __builtin_HEXAGON_A4_cmphgtui
{Intrinsic::hexagon_A4_combineir, 10937}, // __builtin_HEXAGON_A4_combineir
{Intrinsic::hexagon_A4_combineri, 10968}, // __builtin_HEXAGON_A4_combineri
{Intrinsic::hexagon_A4_cround_ri, 10999}, // __builtin_HEXAGON_A4_cround_ri
{Intrinsic::hexagon_A4_cround_rr, 11030}, // __builtin_HEXAGON_A4_cround_rr
{Intrinsic::hexagon_A4_modwrapu, 11061}, // __builtin_HEXAGON_A4_modwrapu
{Intrinsic::hexagon_A4_orn, 11091}, // __builtin_HEXAGON_A4_orn
{Intrinsic::hexagon_A4_ornp, 11116}, // __builtin_HEXAGON_A4_ornp
{Intrinsic::hexagon_A4_rcmpeq, 11142}, // __builtin_HEXAGON_A4_rcmpeq
{Intrinsic::hexagon_A4_rcmpeqi, 11170}, // __builtin_HEXAGON_A4_rcmpeqi
{Intrinsic::hexagon_A4_rcmpneq, 11199}, // __builtin_HEXAGON_A4_rcmpneq
{Intrinsic::hexagon_A4_rcmpneqi, 11228}, // __builtin_HEXAGON_A4_rcmpneqi
{Intrinsic::hexagon_A4_round_ri, 11258}, // __builtin_HEXAGON_A4_round_ri
{Intrinsic::hexagon_A4_round_ri_sat, 11288}, // __builtin_HEXAGON_A4_round_ri_sat
{Intrinsic::hexagon_A4_round_rr, 11322}, // __builtin_HEXAGON_A4_round_rr
{Intrinsic::hexagon_A4_round_rr_sat, 11352}, // __builtin_HEXAGON_A4_round_rr_sat
{Intrinsic::hexagon_A4_tlbmatch, 11386}, // __builtin_HEXAGON_A4_tlbmatch
{Intrinsic::hexagon_A4_vcmpbeq_any, 11416}, // __builtin_HEXAGON_A4_vcmpbeq_any
{Intrinsic::hexagon_A4_vcmpbeqi, 11449}, // __builtin_HEXAGON_A4_vcmpbeqi
{Intrinsic::hexagon_A4_vcmpbgt, 11479}, // __builtin_HEXAGON_A4_vcmpbgt
{Intrinsic::hexagon_A4_vcmpbgti, 11508}, // __builtin_HEXAGON_A4_vcmpbgti
{Intrinsic::hexagon_A4_vcmpbgtui, 11538}, // __builtin_HEXAGON_A4_vcmpbgtui
{Intrinsic::hexagon_A4_vcmpheqi, 11569}, // __builtin_HEXAGON_A4_vcmpheqi
{Intrinsic::hexagon_A4_vcmphgti, 11599}, // __builtin_HEXAGON_A4_vcmphgti
{Intrinsic::hexagon_A4_vcmphgtui, 11629}, // __builtin_HEXAGON_A4_vcmphgtui
{Intrinsic::hexagon_A4_vcmpweqi, 11660}, // __builtin_HEXAGON_A4_vcmpweqi
{Intrinsic::hexagon_A4_vcmpwgti, 11690}, // __builtin_HEXAGON_A4_vcmpwgti
{Intrinsic::hexagon_A4_vcmpwgtui, 11720}, // __builtin_HEXAGON_A4_vcmpwgtui
{Intrinsic::hexagon_A4_vrmaxh, 11751}, // __builtin_HEXAGON_A4_vrmaxh
{Intrinsic::hexagon_A4_vrmaxuh, 11779}, // __builtin_HEXAGON_A4_vrmaxuh
{Intrinsic::hexagon_A4_vrmaxuw, 11808}, // __builtin_HEXAGON_A4_vrmaxuw
{Intrinsic::hexagon_A4_vrmaxw, 11837}, // __builtin_HEXAGON_A4_vrmaxw
{Intrinsic::hexagon_A4_vrminh, 11865}, // __builtin_HEXAGON_A4_vrminh
{Intrinsic::hexagon_A4_vrminuh, 11893}, // __builtin_HEXAGON_A4_vrminuh
{Intrinsic::hexagon_A4_vrminuw, 11922}, // __builtin_HEXAGON_A4_vrminuw
{Intrinsic::hexagon_A4_vrminw, 11951}, // __builtin_HEXAGON_A4_vrminw
{Intrinsic::hexagon_A5_vaddhubs, 11979}, // __builtin_HEXAGON_A5_vaddhubs
{Intrinsic::hexagon_A6_vcmpbeq_notany, 12009}, // __builtin_HEXAGON_A6_vcmpbeq_notany
{Intrinsic::hexagon_A7_clip, 12045}, // __builtin_HEXAGON_A7_clip
{Intrinsic::hexagon_A7_croundd_ri, 12071}, // __builtin_HEXAGON_A7_croundd_ri
{Intrinsic::hexagon_A7_croundd_rr, 12103}, // __builtin_HEXAGON_A7_croundd_rr
{Intrinsic::hexagon_A7_vclip, 12135}, // __builtin_HEXAGON_A7_vclip
{Intrinsic::hexagon_C2_all8, 12162}, // __builtin_HEXAGON_C2_all8
{Intrinsic::hexagon_C2_and, 12188}, // __builtin_HEXAGON_C2_and
{Intrinsic::hexagon_C2_andn, 12213}, // __builtin_HEXAGON_C2_andn
{Intrinsic::hexagon_C2_any8, 12239}, // __builtin_HEXAGON_C2_any8
{Intrinsic::hexagon_C2_bitsclr, 12265}, // __builtin_HEXAGON_C2_bitsclr
{Intrinsic::hexagon_C2_bitsclri, 12294}, // __builtin_HEXAGON_C2_bitsclri
{Intrinsic::hexagon_C2_bitsset, 12324}, // __builtin_HEXAGON_C2_bitsset
{Intrinsic::hexagon_C2_cmpeq, 12353}, // __builtin_HEXAGON_C2_cmpeq
{Intrinsic::hexagon_C2_cmpeqi, 12380}, // __builtin_HEXAGON_C2_cmpeqi
{Intrinsic::hexagon_C2_cmpeqp, 12408}, // __builtin_HEXAGON_C2_cmpeqp
{Intrinsic::hexagon_C2_cmpgei, 12436}, // __builtin_HEXAGON_C2_cmpgei
{Intrinsic::hexagon_C2_cmpgeui, 12464}, // __builtin_HEXAGON_C2_cmpgeui
{Intrinsic::hexagon_C2_cmpgt, 12493}, // __builtin_HEXAGON_C2_cmpgt
{Intrinsic::hexagon_C2_cmpgti, 12520}, // __builtin_HEXAGON_C2_cmpgti
{Intrinsic::hexagon_C2_cmpgtp, 12548}, // __builtin_HEXAGON_C2_cmpgtp
{Intrinsic::hexagon_C2_cmpgtu, 12576}, // __builtin_HEXAGON_C2_cmpgtu
{Intrinsic::hexagon_C2_cmpgtui, 12604}, // __builtin_HEXAGON_C2_cmpgtui
{Intrinsic::hexagon_C2_cmpgtup, 12633}, // __builtin_HEXAGON_C2_cmpgtup
{Intrinsic::hexagon_C2_cmplt, 12662}, // __builtin_HEXAGON_C2_cmplt
{Intrinsic::hexagon_C2_cmpltu, 12689}, // __builtin_HEXAGON_C2_cmpltu
{Intrinsic::hexagon_C2_mask, 12717}, // __builtin_HEXAGON_C2_mask
{Intrinsic::hexagon_C2_mux, 12743}, // __builtin_HEXAGON_C2_mux
{Intrinsic::hexagon_C2_muxii, 12768}, // __builtin_HEXAGON_C2_muxii
{Intrinsic::hexagon_C2_muxir, 12795}, // __builtin_HEXAGON_C2_muxir
{Intrinsic::hexagon_C2_muxri, 12822}, // __builtin_HEXAGON_C2_muxri
{Intrinsic::hexagon_C2_not, 12849}, // __builtin_HEXAGON_C2_not
{Intrinsic::hexagon_C2_or, 12874}, // __builtin_HEXAGON_C2_or
{Intrinsic::hexagon_C2_orn, 12898}, // __builtin_HEXAGON_C2_orn
{Intrinsic::hexagon_C2_pxfer_map, 12923}, // __builtin_HEXAGON_C2_pxfer_map
{Intrinsic::hexagon_C2_tfrpr, 12954}, // __builtin_HEXAGON_C2_tfrpr
{Intrinsic::hexagon_C2_tfrrp, 12981}, // __builtin_HEXAGON_C2_tfrrp
{Intrinsic::hexagon_C2_vitpack, 13008}, // __builtin_HEXAGON_C2_vitpack
{Intrinsic::hexagon_C2_vmux, 13037}, // __builtin_HEXAGON_C2_vmux
{Intrinsic::hexagon_C2_xor, 13063}, // __builtin_HEXAGON_C2_xor
{Intrinsic::hexagon_C4_and_and, 13088}, // __builtin_HEXAGON_C4_and_and
{Intrinsic::hexagon_C4_and_andn, 13117}, // __builtin_HEXAGON_C4_and_andn
{Intrinsic::hexagon_C4_and_or, 13147}, // __builtin_HEXAGON_C4_and_or
{Intrinsic::hexagon_C4_and_orn, 13175}, // __builtin_HEXAGON_C4_and_orn
{Intrinsic::hexagon_C4_cmplte, 13204}, // __builtin_HEXAGON_C4_cmplte
{Intrinsic::hexagon_C4_cmpltei, 13232}, // __builtin_HEXAGON_C4_cmpltei
{Intrinsic::hexagon_C4_cmplteu, 13261}, // __builtin_HEXAGON_C4_cmplteu
{Intrinsic::hexagon_C4_cmplteui, 13290}, // __builtin_HEXAGON_C4_cmplteui
{Intrinsic::hexagon_C4_cmpneq, 13320}, // __builtin_HEXAGON_C4_cmpneq
{Intrinsic::hexagon_C4_cmpneqi, 13348}, // __builtin_HEXAGON_C4_cmpneqi
{Intrinsic::hexagon_C4_fastcorner9, 13377}, // __builtin_HEXAGON_C4_fastcorner9
{Intrinsic::hexagon_C4_fastcorner9_not, 13410}, // __builtin_HEXAGON_C4_fastcorner9_not
{Intrinsic::hexagon_C4_nbitsclr, 13447}, // __builtin_HEXAGON_C4_nbitsclr
{Intrinsic::hexagon_C4_nbitsclri, 13477}, // __builtin_HEXAGON_C4_nbitsclri
{Intrinsic::hexagon_C4_nbitsset, 13508}, // __builtin_HEXAGON_C4_nbitsset
{Intrinsic::hexagon_C4_or_and, 13538}, // __builtin_HEXAGON_C4_or_and
{Intrinsic::hexagon_C4_or_andn, 13566}, // __builtin_HEXAGON_C4_or_andn
{Intrinsic::hexagon_C4_or_or, 13595}, // __builtin_HEXAGON_C4_or_or
{Intrinsic::hexagon_C4_or_orn, 13622}, // __builtin_HEXAGON_C4_or_orn
{Intrinsic::hexagon_F2_conv_d2df, 13650}, // __builtin_HEXAGON_F2_conv_d2df
{Intrinsic::hexagon_F2_conv_d2sf, 13681}, // __builtin_HEXAGON_F2_conv_d2sf
{Intrinsic::hexagon_F2_conv_df2d, 13712}, // __builtin_HEXAGON_F2_conv_df2d
{Intrinsic::hexagon_F2_conv_df2d_chop, 13743}, // __builtin_HEXAGON_F2_conv_df2d_chop
{Intrinsic::hexagon_F2_conv_df2sf, 13779}, // __builtin_HEXAGON_F2_conv_df2sf
{Intrinsic::hexagon_F2_conv_df2ud, 13811}, // __builtin_HEXAGON_F2_conv_df2ud
{Intrinsic::hexagon_F2_conv_df2ud_chop, 13843}, // __builtin_HEXAGON_F2_conv_df2ud_chop
{Intrinsic::hexagon_F2_conv_df2uw, 13880}, // __builtin_HEXAGON_F2_conv_df2uw
{Intrinsic::hexagon_F2_conv_df2uw_chop, 13912}, // __builtin_HEXAGON_F2_conv_df2uw_chop
{Intrinsic::hexagon_F2_conv_df2w, 13949}, // __builtin_HEXAGON_F2_conv_df2w
{Intrinsic::hexagon_F2_conv_df2w_chop, 13980}, // __builtin_HEXAGON_F2_conv_df2w_chop
{Intrinsic::hexagon_F2_conv_sf2d, 14016}, // __builtin_HEXAGON_F2_conv_sf2d
{Intrinsic::hexagon_F2_conv_sf2d_chop, 14047}, // __builtin_HEXAGON_F2_conv_sf2d_chop
{Intrinsic::hexagon_F2_conv_sf2df, 14083}, // __builtin_HEXAGON_F2_conv_sf2df
{Intrinsic::hexagon_F2_conv_sf2ud, 14115}, // __builtin_HEXAGON_F2_conv_sf2ud
{Intrinsic::hexagon_F2_conv_sf2ud_chop, 14147}, // __builtin_HEXAGON_F2_conv_sf2ud_chop
{Intrinsic::hexagon_F2_conv_sf2uw, 14184}, // __builtin_HEXAGON_F2_conv_sf2uw
{Intrinsic::hexagon_F2_conv_sf2uw_chop, 14216}, // __builtin_HEXAGON_F2_conv_sf2uw_chop
{Intrinsic::hexagon_F2_conv_sf2w, 14253}, // __builtin_HEXAGON_F2_conv_sf2w
{Intrinsic::hexagon_F2_conv_sf2w_chop, 14284}, // __builtin_HEXAGON_F2_conv_sf2w_chop
{Intrinsic::hexagon_F2_conv_ud2df, 14320}, // __builtin_HEXAGON_F2_conv_ud2df
{Intrinsic::hexagon_F2_conv_ud2sf, 14352}, // __builtin_HEXAGON_F2_conv_ud2sf
{Intrinsic::hexagon_F2_conv_uw2df, 14384}, // __builtin_HEXAGON_F2_conv_uw2df
{Intrinsic::hexagon_F2_conv_uw2sf, 14416}, // __builtin_HEXAGON_F2_conv_uw2sf
{Intrinsic::hexagon_F2_conv_w2df, 14448}, // __builtin_HEXAGON_F2_conv_w2df
{Intrinsic::hexagon_F2_conv_w2sf, 14479}, // __builtin_HEXAGON_F2_conv_w2sf
{Intrinsic::hexagon_F2_dfadd, 14510}, // __builtin_HEXAGON_F2_dfadd
{Intrinsic::hexagon_F2_dfclass, 14537}, // __builtin_HEXAGON_F2_dfclass
{Intrinsic::hexagon_F2_dfcmpeq, 14566}, // __builtin_HEXAGON_F2_dfcmpeq
{Intrinsic::hexagon_F2_dfcmpge, 14595}, // __builtin_HEXAGON_F2_dfcmpge
{Intrinsic::hexagon_F2_dfcmpgt, 14624}, // __builtin_HEXAGON_F2_dfcmpgt
{Intrinsic::hexagon_F2_dfcmpuo, 14653}, // __builtin_HEXAGON_F2_dfcmpuo
{Intrinsic::hexagon_F2_dfimm_n, 14682}, // __builtin_HEXAGON_F2_dfimm_n
{Intrinsic::hexagon_F2_dfimm_p, 14711}, // __builtin_HEXAGON_F2_dfimm_p
{Intrinsic::hexagon_F2_dfmax, 14740}, // __builtin_HEXAGON_F2_dfmax
{Intrinsic::hexagon_F2_dfmin, 14767}, // __builtin_HEXAGON_F2_dfmin
{Intrinsic::hexagon_F2_dfmpyfix, 14794}, // __builtin_HEXAGON_F2_dfmpyfix
{Intrinsic::hexagon_F2_dfmpyhh, 14824}, // __builtin_HEXAGON_F2_dfmpyhh
{Intrinsic::hexagon_F2_dfmpylh, 14853}, // __builtin_HEXAGON_F2_dfmpylh
{Intrinsic::hexagon_F2_dfmpyll, 14882}, // __builtin_HEXAGON_F2_dfmpyll
{Intrinsic::hexagon_F2_dfsub, 14911}, // __builtin_HEXAGON_F2_dfsub
{Intrinsic::hexagon_F2_sfadd, 14938}, // __builtin_HEXAGON_F2_sfadd
{Intrinsic::hexagon_F2_sfclass, 14965}, // __builtin_HEXAGON_F2_sfclass
{Intrinsic::hexagon_F2_sfcmpeq, 14994}, // __builtin_HEXAGON_F2_sfcmpeq
{Intrinsic::hexagon_F2_sfcmpge, 15023}, // __builtin_HEXAGON_F2_sfcmpge
{Intrinsic::hexagon_F2_sfcmpgt, 15052}, // __builtin_HEXAGON_F2_sfcmpgt
{Intrinsic::hexagon_F2_sfcmpuo, 15081}, // __builtin_HEXAGON_F2_sfcmpuo
{Intrinsic::hexagon_F2_sffixupd, 15110}, // __builtin_HEXAGON_F2_sffixupd
{Intrinsic::hexagon_F2_sffixupn, 15140}, // __builtin_HEXAGON_F2_sffixupn
{Intrinsic::hexagon_F2_sffixupr, 15170}, // __builtin_HEXAGON_F2_sffixupr
{Intrinsic::hexagon_F2_sffma, 15200}, // __builtin_HEXAGON_F2_sffma
{Intrinsic::hexagon_F2_sffma_lib, 15227}, // __builtin_HEXAGON_F2_sffma_lib
{Intrinsic::hexagon_F2_sffma_sc, 15258}, // __builtin_HEXAGON_F2_sffma_sc
{Intrinsic::hexagon_F2_sffms, 15288}, // __builtin_HEXAGON_F2_sffms
{Intrinsic::hexagon_F2_sffms_lib, 15315}, // __builtin_HEXAGON_F2_sffms_lib
{Intrinsic::hexagon_F2_sfimm_n, 15346}, // __builtin_HEXAGON_F2_sfimm_n
{Intrinsic::hexagon_F2_sfimm_p, 15375}, // __builtin_HEXAGON_F2_sfimm_p
{Intrinsic::hexagon_F2_sfmax, 15404}, // __builtin_HEXAGON_F2_sfmax
{Intrinsic::hexagon_F2_sfmin, 15431}, // __builtin_HEXAGON_F2_sfmin
{Intrinsic::hexagon_F2_sfmpy, 15458}, // __builtin_HEXAGON_F2_sfmpy
{Intrinsic::hexagon_F2_sfsub, 15485}, // __builtin_HEXAGON_F2_sfsub
{Intrinsic::hexagon_L2_loadw_locked, 15512}, // __builtin_HEXAGON_L2_loadw_locked
{Intrinsic::hexagon_L4_loadd_locked, 15546}, // __builtin_HEXAGON_L4_loadd_locked
{Intrinsic::hexagon_M2_acci, 15580}, // __builtin_HEXAGON_M2_acci
{Intrinsic::hexagon_M2_accii, 15606}, // __builtin_HEXAGON_M2_accii
{Intrinsic::hexagon_M2_cmaci_s0, 15633}, // __builtin_HEXAGON_M2_cmaci_s0
{Intrinsic::hexagon_M2_cmacr_s0, 15663}, // __builtin_HEXAGON_M2_cmacr_s0
{Intrinsic::hexagon_M2_cmacs_s0, 15693}, // __builtin_HEXAGON_M2_cmacs_s0
{Intrinsic::hexagon_M2_cmacs_s1, 15723}, // __builtin_HEXAGON_M2_cmacs_s1
{Intrinsic::hexagon_M2_cmacsc_s0, 15753}, // __builtin_HEXAGON_M2_cmacsc_s0
{Intrinsic::hexagon_M2_cmacsc_s1, 15784}, // __builtin_HEXAGON_M2_cmacsc_s1
{Intrinsic::hexagon_M2_cmpyi_s0, 15815}, // __builtin_HEXAGON_M2_cmpyi_s0
{Intrinsic::hexagon_M2_cmpyr_s0, 15845}, // __builtin_HEXAGON_M2_cmpyr_s0
{Intrinsic::hexagon_M2_cmpyrs_s0, 15875}, // __builtin_HEXAGON_M2_cmpyrs_s0
{Intrinsic::hexagon_M2_cmpyrs_s1, 15906}, // __builtin_HEXAGON_M2_cmpyrs_s1
{Intrinsic::hexagon_M2_cmpyrsc_s0, 15937}, // __builtin_HEXAGON_M2_cmpyrsc_s0
{Intrinsic::hexagon_M2_cmpyrsc_s1, 15969}, // __builtin_HEXAGON_M2_cmpyrsc_s1
{Intrinsic::hexagon_M2_cmpys_s0, 16001}, // __builtin_HEXAGON_M2_cmpys_s0
{Intrinsic::hexagon_M2_cmpys_s1, 16031}, // __builtin_HEXAGON_M2_cmpys_s1
{Intrinsic::hexagon_M2_cmpysc_s0, 16061}, // __builtin_HEXAGON_M2_cmpysc_s0
{Intrinsic::hexagon_M2_cmpysc_s1, 16092}, // __builtin_HEXAGON_M2_cmpysc_s1
{Intrinsic::hexagon_M2_cnacs_s0, 16123}, // __builtin_HEXAGON_M2_cnacs_s0
{Intrinsic::hexagon_M2_cnacs_s1, 16153}, // __builtin_HEXAGON_M2_cnacs_s1
{Intrinsic::hexagon_M2_cnacsc_s0, 16183}, // __builtin_HEXAGON_M2_cnacsc_s0
{Intrinsic::hexagon_M2_cnacsc_s1, 16214}, // __builtin_HEXAGON_M2_cnacsc_s1
{Intrinsic::hexagon_M2_dpmpyss_acc_s0, 16245}, // __builtin_HEXAGON_M2_dpmpyss_acc_s0
{Intrinsic::hexagon_M2_dpmpyss_nac_s0, 16281}, // __builtin_HEXAGON_M2_dpmpyss_nac_s0
{Intrinsic::hexagon_M2_dpmpyss_rnd_s0, 16317}, // __builtin_HEXAGON_M2_dpmpyss_rnd_s0
{Intrinsic::hexagon_M2_dpmpyss_s0, 16353}, // __builtin_HEXAGON_M2_dpmpyss_s0
{Intrinsic::hexagon_M2_dpmpyuu_acc_s0, 16385}, // __builtin_HEXAGON_M2_dpmpyuu_acc_s0
{Intrinsic::hexagon_M2_dpmpyuu_nac_s0, 16421}, // __builtin_HEXAGON_M2_dpmpyuu_nac_s0
{Intrinsic::hexagon_M2_dpmpyuu_s0, 16457}, // __builtin_HEXAGON_M2_dpmpyuu_s0
{Intrinsic::hexagon_M2_hmmpyh_rs1, 16489}, // __builtin_HEXAGON_M2_hmmpyh_rs1
{Intrinsic::hexagon_M2_hmmpyh_s1, 16521}, // __builtin_HEXAGON_M2_hmmpyh_s1
{Intrinsic::hexagon_M2_hmmpyl_rs1, 16552}, // __builtin_HEXAGON_M2_hmmpyl_rs1
{Intrinsic::hexagon_M2_hmmpyl_s1, 16584}, // __builtin_HEXAGON_M2_hmmpyl_s1
{Intrinsic::hexagon_M2_maci, 16615}, // __builtin_HEXAGON_M2_maci
{Intrinsic::hexagon_M2_macsin, 16641}, // __builtin_HEXAGON_M2_macsin
{Intrinsic::hexagon_M2_macsip, 16669}, // __builtin_HEXAGON_M2_macsip
{Intrinsic::hexagon_M2_mmachs_rs0, 16697}, // __builtin_HEXAGON_M2_mmachs_rs0
{Intrinsic::hexagon_M2_mmachs_rs1, 16729}, // __builtin_HEXAGON_M2_mmachs_rs1
{Intrinsic::hexagon_M2_mmachs_s0, 16761}, // __builtin_HEXAGON_M2_mmachs_s0
{Intrinsic::hexagon_M2_mmachs_s1, 16792}, // __builtin_HEXAGON_M2_mmachs_s1
{Intrinsic::hexagon_M2_mmacls_rs0, 16823}, // __builtin_HEXAGON_M2_mmacls_rs0
{Intrinsic::hexagon_M2_mmacls_rs1, 16855}, // __builtin_HEXAGON_M2_mmacls_rs1
{Intrinsic::hexagon_M2_mmacls_s0, 16887}, // __builtin_HEXAGON_M2_mmacls_s0
{Intrinsic::hexagon_M2_mmacls_s1, 16918}, // __builtin_HEXAGON_M2_mmacls_s1
{Intrinsic::hexagon_M2_mmacuhs_rs0, 16949}, // __builtin_HEXAGON_M2_mmacuhs_rs0
{Intrinsic::hexagon_M2_mmacuhs_rs1, 16982}, // __builtin_HEXAGON_M2_mmacuhs_rs1
{Intrinsic::hexagon_M2_mmacuhs_s0, 17015}, // __builtin_HEXAGON_M2_mmacuhs_s0
{Intrinsic::hexagon_M2_mmacuhs_s1, 17047}, // __builtin_HEXAGON_M2_mmacuhs_s1
{Intrinsic::hexagon_M2_mmaculs_rs0, 17079}, // __builtin_HEXAGON_M2_mmaculs_rs0
{Intrinsic::hexagon_M2_mmaculs_rs1, 17112}, // __builtin_HEXAGON_M2_mmaculs_rs1
{Intrinsic::hexagon_M2_mmaculs_s0, 17145}, // __builtin_HEXAGON_M2_mmaculs_s0
{Intrinsic::hexagon_M2_mmaculs_s1, 17177}, // __builtin_HEXAGON_M2_mmaculs_s1
{Intrinsic::hexagon_M2_mmpyh_rs0, 17209}, // __builtin_HEXAGON_M2_mmpyh_rs0
{Intrinsic::hexagon_M2_mmpyh_rs1, 17240}, // __builtin_HEXAGON_M2_mmpyh_rs1
{Intrinsic::hexagon_M2_mmpyh_s0, 17271}, // __builtin_HEXAGON_M2_mmpyh_s0
{Intrinsic::hexagon_M2_mmpyh_s1, 17301}, // __builtin_HEXAGON_M2_mmpyh_s1
{Intrinsic::hexagon_M2_mmpyl_rs0, 17331}, // __builtin_HEXAGON_M2_mmpyl_rs0
{Intrinsic::hexagon_M2_mmpyl_rs1, 17362}, // __builtin_HEXAGON_M2_mmpyl_rs1
{Intrinsic::hexagon_M2_mmpyl_s0, 17393}, // __builtin_HEXAGON_M2_mmpyl_s0
{Intrinsic::hexagon_M2_mmpyl_s1, 17423}, // __builtin_HEXAGON_M2_mmpyl_s1
{Intrinsic::hexagon_M2_mmpyuh_rs0, 17453}, // __builtin_HEXAGON_M2_mmpyuh_rs0
{Intrinsic::hexagon_M2_mmpyuh_rs1, 17485}, // __builtin_HEXAGON_M2_mmpyuh_rs1
{Intrinsic::hexagon_M2_mmpyuh_s0, 17517}, // __builtin_HEXAGON_M2_mmpyuh_s0
{Intrinsic::hexagon_M2_mmpyuh_s1, 17548}, // __builtin_HEXAGON_M2_mmpyuh_s1
{Intrinsic::hexagon_M2_mmpyul_rs0, 17579}, // __builtin_HEXAGON_M2_mmpyul_rs0
{Intrinsic::hexagon_M2_mmpyul_rs1, 17611}, // __builtin_HEXAGON_M2_mmpyul_rs1
{Intrinsic::hexagon_M2_mmpyul_s0, 17643}, // __builtin_HEXAGON_M2_mmpyul_s0
{Intrinsic::hexagon_M2_mmpyul_s1, 17674}, // __builtin_HEXAGON_M2_mmpyul_s1
{Intrinsic::hexagon_M2_mnaci, 17705}, // __builtin_HEXAGON_M2_mnaci
{Intrinsic::hexagon_M2_mpy_acc_hh_s0, 17732}, // __builtin_HEXAGON_M2_mpy_acc_hh_s0
{Intrinsic::hexagon_M2_mpy_acc_hh_s1, 17767}, // __builtin_HEXAGON_M2_mpy_acc_hh_s1
{Intrinsic::hexagon_M2_mpy_acc_hl_s0, 17802}, // __builtin_HEXAGON_M2_mpy_acc_hl_s0
{Intrinsic::hexagon_M2_mpy_acc_hl_s1, 17837}, // __builtin_HEXAGON_M2_mpy_acc_hl_s1
{Intrinsic::hexagon_M2_mpy_acc_lh_s0, 17872}, // __builtin_HEXAGON_M2_mpy_acc_lh_s0
{Intrinsic::hexagon_M2_mpy_acc_lh_s1, 17907}, // __builtin_HEXAGON_M2_mpy_acc_lh_s1
{Intrinsic::hexagon_M2_mpy_acc_ll_s0, 17942}, // __builtin_HEXAGON_M2_mpy_acc_ll_s0
{Intrinsic::hexagon_M2_mpy_acc_ll_s1, 17977}, // __builtin_HEXAGON_M2_mpy_acc_ll_s1
{Intrinsic::hexagon_M2_mpy_acc_sat_hh_s0, 18012}, // __builtin_HEXAGON_M2_mpy_acc_sat_hh_s0
{Intrinsic::hexagon_M2_mpy_acc_sat_hh_s1, 18051}, // __builtin_HEXAGON_M2_mpy_acc_sat_hh_s1
{Intrinsic::hexagon_M2_mpy_acc_sat_hl_s0, 18090}, // __builtin_HEXAGON_M2_mpy_acc_sat_hl_s0
{Intrinsic::hexagon_M2_mpy_acc_sat_hl_s1, 18129}, // __builtin_HEXAGON_M2_mpy_acc_sat_hl_s1
{Intrinsic::hexagon_M2_mpy_acc_sat_lh_s0, 18168}, // __builtin_HEXAGON_M2_mpy_acc_sat_lh_s0
{Intrinsic::hexagon_M2_mpy_acc_sat_lh_s1, 18207}, // __builtin_HEXAGON_M2_mpy_acc_sat_lh_s1
{Intrinsic::hexagon_M2_mpy_acc_sat_ll_s0, 18246}, // __builtin_HEXAGON_M2_mpy_acc_sat_ll_s0
{Intrinsic::hexagon_M2_mpy_acc_sat_ll_s1, 18285}, // __builtin_HEXAGON_M2_mpy_acc_sat_ll_s1
{Intrinsic::hexagon_M2_mpy_hh_s0, 18324}, // __builtin_HEXAGON_M2_mpy_hh_s0
{Intrinsic::hexagon_M2_mpy_hh_s1, 18355}, // __builtin_HEXAGON_M2_mpy_hh_s1
{Intrinsic::hexagon_M2_mpy_hl_s0, 18386}, // __builtin_HEXAGON_M2_mpy_hl_s0
{Intrinsic::hexagon_M2_mpy_hl_s1, 18417}, // __builtin_HEXAGON_M2_mpy_hl_s1
{Intrinsic::hexagon_M2_mpy_lh_s0, 18448}, // __builtin_HEXAGON_M2_mpy_lh_s0
{Intrinsic::hexagon_M2_mpy_lh_s1, 18479}, // __builtin_HEXAGON_M2_mpy_lh_s1
{Intrinsic::hexagon_M2_mpy_ll_s0, 18510}, // __builtin_HEXAGON_M2_mpy_ll_s0
{Intrinsic::hexagon_M2_mpy_ll_s1, 18541}, // __builtin_HEXAGON_M2_mpy_ll_s1
{Intrinsic::hexagon_M2_mpy_nac_hh_s0, 18572}, // __builtin_HEXAGON_M2_mpy_nac_hh_s0
{Intrinsic::hexagon_M2_mpy_nac_hh_s1, 18607}, // __builtin_HEXAGON_M2_mpy_nac_hh_s1
{Intrinsic::hexagon_M2_mpy_nac_hl_s0, 18642}, // __builtin_HEXAGON_M2_mpy_nac_hl_s0
{Intrinsic::hexagon_M2_mpy_nac_hl_s1, 18677}, // __builtin_HEXAGON_M2_mpy_nac_hl_s1
{Intrinsic::hexagon_M2_mpy_nac_lh_s0, 18712}, // __builtin_HEXAGON_M2_mpy_nac_lh_s0
{Intrinsic::hexagon_M2_mpy_nac_lh_s1, 18747}, // __builtin_HEXAGON_M2_mpy_nac_lh_s1
{Intrinsic::hexagon_M2_mpy_nac_ll_s0, 18782}, // __builtin_HEXAGON_M2_mpy_nac_ll_s0
{Intrinsic::hexagon_M2_mpy_nac_ll_s1, 18817}, // __builtin_HEXAGON_M2_mpy_nac_ll_s1
{Intrinsic::hexagon_M2_mpy_nac_sat_hh_s0, 18852}, // __builtin_HEXAGON_M2_mpy_nac_sat_hh_s0
{Intrinsic::hexagon_M2_mpy_nac_sat_hh_s1, 18891}, // __builtin_HEXAGON_M2_mpy_nac_sat_hh_s1
{Intrinsic::hexagon_M2_mpy_nac_sat_hl_s0, 18930}, // __builtin_HEXAGON_M2_mpy_nac_sat_hl_s0
{Intrinsic::hexagon_M2_mpy_nac_sat_hl_s1, 18969}, // __builtin_HEXAGON_M2_mpy_nac_sat_hl_s1
{Intrinsic::hexagon_M2_mpy_nac_sat_lh_s0, 19008}, // __builtin_HEXAGON_M2_mpy_nac_sat_lh_s0
{Intrinsic::hexagon_M2_mpy_nac_sat_lh_s1, 19047}, // __builtin_HEXAGON_M2_mpy_nac_sat_lh_s1
{Intrinsic::hexagon_M2_mpy_nac_sat_ll_s0, 19086}, // __builtin_HEXAGON_M2_mpy_nac_sat_ll_s0
{Intrinsic::hexagon_M2_mpy_nac_sat_ll_s1, 19125}, // __builtin_HEXAGON_M2_mpy_nac_sat_ll_s1
{Intrinsic::hexagon_M2_mpy_rnd_hh_s0, 19164}, // __builtin_HEXAGON_M2_mpy_rnd_hh_s0
{Intrinsic::hexagon_M2_mpy_rnd_hh_s1, 19199}, // __builtin_HEXAGON_M2_mpy_rnd_hh_s1
{Intrinsic::hexagon_M2_mpy_rnd_hl_s0, 19234}, // __builtin_HEXAGON_M2_mpy_rnd_hl_s0
{Intrinsic::hexagon_M2_mpy_rnd_hl_s1, 19269}, // __builtin_HEXAGON_M2_mpy_rnd_hl_s1
{Intrinsic::hexagon_M2_mpy_rnd_lh_s0, 19304}, // __builtin_HEXAGON_M2_mpy_rnd_lh_s0
{Intrinsic::hexagon_M2_mpy_rnd_lh_s1, 19339}, // __builtin_HEXAGON_M2_mpy_rnd_lh_s1
{Intrinsic::hexagon_M2_mpy_rnd_ll_s0, 19374}, // __builtin_HEXAGON_M2_mpy_rnd_ll_s0
{Intrinsic::hexagon_M2_mpy_rnd_ll_s1, 19409}, // __builtin_HEXAGON_M2_mpy_rnd_ll_s1
{Intrinsic::hexagon_M2_mpy_sat_hh_s0, 19444}, // __builtin_HEXAGON_M2_mpy_sat_hh_s0
{Intrinsic::hexagon_M2_mpy_sat_hh_s1, 19479}, // __builtin_HEXAGON_M2_mpy_sat_hh_s1
{Intrinsic::hexagon_M2_mpy_sat_hl_s0, 19514}, // __builtin_HEXAGON_M2_mpy_sat_hl_s0
{Intrinsic::hexagon_M2_mpy_sat_hl_s1, 19549}, // __builtin_HEXAGON_M2_mpy_sat_hl_s1
{Intrinsic::hexagon_M2_mpy_sat_lh_s0, 19584}, // __builtin_HEXAGON_M2_mpy_sat_lh_s0
{Intrinsic::hexagon_M2_mpy_sat_lh_s1, 19619}, // __builtin_HEXAGON_M2_mpy_sat_lh_s1
{Intrinsic::hexagon_M2_mpy_sat_ll_s0, 19654}, // __builtin_HEXAGON_M2_mpy_sat_ll_s0
{Intrinsic::hexagon_M2_mpy_sat_ll_s1, 19689}, // __builtin_HEXAGON_M2_mpy_sat_ll_s1
{Intrinsic::hexagon_M2_mpy_sat_rnd_hh_s0, 19724}, // __builtin_HEXAGON_M2_mpy_sat_rnd_hh_s0
{Intrinsic::hexagon_M2_mpy_sat_rnd_hh_s1, 19763}, // __builtin_HEXAGON_M2_mpy_sat_rnd_hh_s1
{Intrinsic::hexagon_M2_mpy_sat_rnd_hl_s0, 19802}, // __builtin_HEXAGON_M2_mpy_sat_rnd_hl_s0
{Intrinsic::hexagon_M2_mpy_sat_rnd_hl_s1, 19841}, // __builtin_HEXAGON_M2_mpy_sat_rnd_hl_s1
{Intrinsic::hexagon_M2_mpy_sat_rnd_lh_s0, 19880}, // __builtin_HEXAGON_M2_mpy_sat_rnd_lh_s0
{Intrinsic::hexagon_M2_mpy_sat_rnd_lh_s1, 19919}, // __builtin_HEXAGON_M2_mpy_sat_rnd_lh_s1
{Intrinsic::hexagon_M2_mpy_sat_rnd_ll_s0, 19958}, // __builtin_HEXAGON_M2_mpy_sat_rnd_ll_s0
{Intrinsic::hexagon_M2_mpy_sat_rnd_ll_s1, 19997}, // __builtin_HEXAGON_M2_mpy_sat_rnd_ll_s1
{Intrinsic::hexagon_M2_mpy_up, 20036}, // __builtin_HEXAGON_M2_mpy_up
{Intrinsic::hexagon_M2_mpy_up_s1, 20064}, // __builtin_HEXAGON_M2_mpy_up_s1
{Intrinsic::hexagon_M2_mpy_up_s1_sat, 20095}, // __builtin_HEXAGON_M2_mpy_up_s1_sat
{Intrinsic::hexagon_M2_mpyd_acc_hh_s0, 20130}, // __builtin_HEXAGON_M2_mpyd_acc_hh_s0
{Intrinsic::hexagon_M2_mpyd_acc_hh_s1, 20166}, // __builtin_HEXAGON_M2_mpyd_acc_hh_s1
{Intrinsic::hexagon_M2_mpyd_acc_hl_s0, 20202}, // __builtin_HEXAGON_M2_mpyd_acc_hl_s0
{Intrinsic::hexagon_M2_mpyd_acc_hl_s1, 20238}, // __builtin_HEXAGON_M2_mpyd_acc_hl_s1
{Intrinsic::hexagon_M2_mpyd_acc_lh_s0, 20274}, // __builtin_HEXAGON_M2_mpyd_acc_lh_s0
{Intrinsic::hexagon_M2_mpyd_acc_lh_s1, 20310}, // __builtin_HEXAGON_M2_mpyd_acc_lh_s1
{Intrinsic::hexagon_M2_mpyd_acc_ll_s0, 20346}, // __builtin_HEXAGON_M2_mpyd_acc_ll_s0
{Intrinsic::hexagon_M2_mpyd_acc_ll_s1, 20382}, // __builtin_HEXAGON_M2_mpyd_acc_ll_s1
{Intrinsic::hexagon_M2_mpyd_hh_s0, 20418}, // __builtin_HEXAGON_M2_mpyd_hh_s0
{Intrinsic::hexagon_M2_mpyd_hh_s1, 20450}, // __builtin_HEXAGON_M2_mpyd_hh_s1
{Intrinsic::hexagon_M2_mpyd_hl_s0, 20482}, // __builtin_HEXAGON_M2_mpyd_hl_s0
{Intrinsic::hexagon_M2_mpyd_hl_s1, 20514}, // __builtin_HEXAGON_M2_mpyd_hl_s1
{Intrinsic::hexagon_M2_mpyd_lh_s0, 20546}, // __builtin_HEXAGON_M2_mpyd_lh_s0
{Intrinsic::hexagon_M2_mpyd_lh_s1, 20578}, // __builtin_HEXAGON_M2_mpyd_lh_s1
{Intrinsic::hexagon_M2_mpyd_ll_s0, 20610}, // __builtin_HEXAGON_M2_mpyd_ll_s0
{Intrinsic::hexagon_M2_mpyd_ll_s1, 20642}, // __builtin_HEXAGON_M2_mpyd_ll_s1
{Intrinsic::hexagon_M2_mpyd_nac_hh_s0, 20674}, // __builtin_HEXAGON_M2_mpyd_nac_hh_s0
{Intrinsic::hexagon_M2_mpyd_nac_hh_s1, 20710}, // __builtin_HEXAGON_M2_mpyd_nac_hh_s1
{Intrinsic::hexagon_M2_mpyd_nac_hl_s0, 20746}, // __builtin_HEXAGON_M2_mpyd_nac_hl_s0
{Intrinsic::hexagon_M2_mpyd_nac_hl_s1, 20782}, // __builtin_HEXAGON_M2_mpyd_nac_hl_s1
{Intrinsic::hexagon_M2_mpyd_nac_lh_s0, 20818}, // __builtin_HEXAGON_M2_mpyd_nac_lh_s0
{Intrinsic::hexagon_M2_mpyd_nac_lh_s1, 20854}, // __builtin_HEXAGON_M2_mpyd_nac_lh_s1
{Intrinsic::hexagon_M2_mpyd_nac_ll_s0, 20890}, // __builtin_HEXAGON_M2_mpyd_nac_ll_s0
{Intrinsic::hexagon_M2_mpyd_nac_ll_s1, 20926}, // __builtin_HEXAGON_M2_mpyd_nac_ll_s1
{Intrinsic::hexagon_M2_mpyd_rnd_hh_s0, 20962}, // __builtin_HEXAGON_M2_mpyd_rnd_hh_s0
{Intrinsic::hexagon_M2_mpyd_rnd_hh_s1, 20998}, // __builtin_HEXAGON_M2_mpyd_rnd_hh_s1
{Intrinsic::hexagon_M2_mpyd_rnd_hl_s0, 21034}, // __builtin_HEXAGON_M2_mpyd_rnd_hl_s0
{Intrinsic::hexagon_M2_mpyd_rnd_hl_s1, 21070}, // __builtin_HEXAGON_M2_mpyd_rnd_hl_s1
{Intrinsic::hexagon_M2_mpyd_rnd_lh_s0, 21106}, // __builtin_HEXAGON_M2_mpyd_rnd_lh_s0
{Intrinsic::hexagon_M2_mpyd_rnd_lh_s1, 21142}, // __builtin_HEXAGON_M2_mpyd_rnd_lh_s1
{Intrinsic::hexagon_M2_mpyd_rnd_ll_s0, 21178}, // __builtin_HEXAGON_M2_mpyd_rnd_ll_s0
{Intrinsic::hexagon_M2_mpyd_rnd_ll_s1, 21214}, // __builtin_HEXAGON_M2_mpyd_rnd_ll_s1
{Intrinsic::hexagon_M2_mpyi, 21250}, // __builtin_HEXAGON_M2_mpyi
{Intrinsic::hexagon_M2_mpysmi, 21276}, // __builtin_HEXAGON_M2_mpysmi
{Intrinsic::hexagon_M2_mpysu_up, 21304}, // __builtin_HEXAGON_M2_mpysu_up
{Intrinsic::hexagon_M2_mpyu_acc_hh_s0, 21334}, // __builtin_HEXAGON_M2_mpyu_acc_hh_s0
{Intrinsic::hexagon_M2_mpyu_acc_hh_s1, 21370}, // __builtin_HEXAGON_M2_mpyu_acc_hh_s1
{Intrinsic::hexagon_M2_mpyu_acc_hl_s0, 21406}, // __builtin_HEXAGON_M2_mpyu_acc_hl_s0
{Intrinsic::hexagon_M2_mpyu_acc_hl_s1, 21442}, // __builtin_HEXAGON_M2_mpyu_acc_hl_s1
{Intrinsic::hexagon_M2_mpyu_acc_lh_s0, 21478}, // __builtin_HEXAGON_M2_mpyu_acc_lh_s0
{Intrinsic::hexagon_M2_mpyu_acc_lh_s1, 21514}, // __builtin_HEXAGON_M2_mpyu_acc_lh_s1
{Intrinsic::hexagon_M2_mpyu_acc_ll_s0, 21550}, // __builtin_HEXAGON_M2_mpyu_acc_ll_s0
{Intrinsic::hexagon_M2_mpyu_acc_ll_s1, 21586}, // __builtin_HEXAGON_M2_mpyu_acc_ll_s1
{Intrinsic::hexagon_M2_mpyu_hh_s0, 21622}, // __builtin_HEXAGON_M2_mpyu_hh_s0
{Intrinsic::hexagon_M2_mpyu_hh_s1, 21654}, // __builtin_HEXAGON_M2_mpyu_hh_s1
{Intrinsic::hexagon_M2_mpyu_hl_s0, 21686}, // __builtin_HEXAGON_M2_mpyu_hl_s0
{Intrinsic::hexagon_M2_mpyu_hl_s1, 21718}, // __builtin_HEXAGON_M2_mpyu_hl_s1
{Intrinsic::hexagon_M2_mpyu_lh_s0, 21750}, // __builtin_HEXAGON_M2_mpyu_lh_s0
{Intrinsic::hexagon_M2_mpyu_lh_s1, 21782}, // __builtin_HEXAGON_M2_mpyu_lh_s1
{Intrinsic::hexagon_M2_mpyu_ll_s0, 21814}, // __builtin_HEXAGON_M2_mpyu_ll_s0
{Intrinsic::hexagon_M2_mpyu_ll_s1, 21846}, // __builtin_HEXAGON_M2_mpyu_ll_s1
{Intrinsic::hexagon_M2_mpyu_nac_hh_s0, 21878}, // __builtin_HEXAGON_M2_mpyu_nac_hh_s0
{Intrinsic::hexagon_M2_mpyu_nac_hh_s1, 21914}, // __builtin_HEXAGON_M2_mpyu_nac_hh_s1
{Intrinsic::hexagon_M2_mpyu_nac_hl_s0, 21950}, // __builtin_HEXAGON_M2_mpyu_nac_hl_s0
{Intrinsic::hexagon_M2_mpyu_nac_hl_s1, 21986}, // __builtin_HEXAGON_M2_mpyu_nac_hl_s1
{Intrinsic::hexagon_M2_mpyu_nac_lh_s0, 22022}, // __builtin_HEXAGON_M2_mpyu_nac_lh_s0
{Intrinsic::hexagon_M2_mpyu_nac_lh_s1, 22058}, // __builtin_HEXAGON_M2_mpyu_nac_lh_s1
{Intrinsic::hexagon_M2_mpyu_nac_ll_s0, 22094}, // __builtin_HEXAGON_M2_mpyu_nac_ll_s0
{Intrinsic::hexagon_M2_mpyu_nac_ll_s1, 22130}, // __builtin_HEXAGON_M2_mpyu_nac_ll_s1
{Intrinsic::hexagon_M2_mpyu_up, 22166}, // __builtin_HEXAGON_M2_mpyu_up
{Intrinsic::hexagon_M2_mpyud_acc_hh_s0, 22195}, // __builtin_HEXAGON_M2_mpyud_acc_hh_s0
{Intrinsic::hexagon_M2_mpyud_acc_hh_s1, 22232}, // __builtin_HEXAGON_M2_mpyud_acc_hh_s1
{Intrinsic::hexagon_M2_mpyud_acc_hl_s0, 22269}, // __builtin_HEXAGON_M2_mpyud_acc_hl_s0
{Intrinsic::hexagon_M2_mpyud_acc_hl_s1, 22306}, // __builtin_HEXAGON_M2_mpyud_acc_hl_s1
{Intrinsic::hexagon_M2_mpyud_acc_lh_s0, 22343}, // __builtin_HEXAGON_M2_mpyud_acc_lh_s0
{Intrinsic::hexagon_M2_mpyud_acc_lh_s1, 22380}, // __builtin_HEXAGON_M2_mpyud_acc_lh_s1
{Intrinsic::hexagon_M2_mpyud_acc_ll_s0, 22417}, // __builtin_HEXAGON_M2_mpyud_acc_ll_s0
{Intrinsic::hexagon_M2_mpyud_acc_ll_s1, 22454}, // __builtin_HEXAGON_M2_mpyud_acc_ll_s1
{Intrinsic::hexagon_M2_mpyud_hh_s0, 22491}, // __builtin_HEXAGON_M2_mpyud_hh_s0
{Intrinsic::hexagon_M2_mpyud_hh_s1, 22524}, // __builtin_HEXAGON_M2_mpyud_hh_s1
{Intrinsic::hexagon_M2_mpyud_hl_s0, 22557}, // __builtin_HEXAGON_M2_mpyud_hl_s0
{Intrinsic::hexagon_M2_mpyud_hl_s1, 22590}, // __builtin_HEXAGON_M2_mpyud_hl_s1
{Intrinsic::hexagon_M2_mpyud_lh_s0, 22623}, // __builtin_HEXAGON_M2_mpyud_lh_s0
{Intrinsic::hexagon_M2_mpyud_lh_s1, 22656}, // __builtin_HEXAGON_M2_mpyud_lh_s1
{Intrinsic::hexagon_M2_mpyud_ll_s0, 22689}, // __builtin_HEXAGON_M2_mpyud_ll_s0
{Intrinsic::hexagon_M2_mpyud_ll_s1, 22722}, // __builtin_HEXAGON_M2_mpyud_ll_s1
{Intrinsic::hexagon_M2_mpyud_nac_hh_s0, 22755}, // __builtin_HEXAGON_M2_mpyud_nac_hh_s0
{Intrinsic::hexagon_M2_mpyud_nac_hh_s1, 22792}, // __builtin_HEXAGON_M2_mpyud_nac_hh_s1
{Intrinsic::hexagon_M2_mpyud_nac_hl_s0, 22829}, // __builtin_HEXAGON_M2_mpyud_nac_hl_s0
{Intrinsic::hexagon_M2_mpyud_nac_hl_s1, 22866}, // __builtin_HEXAGON_M2_mpyud_nac_hl_s1
{Intrinsic::hexagon_M2_mpyud_nac_lh_s0, 22903}, // __builtin_HEXAGON_M2_mpyud_nac_lh_s0
{Intrinsic::hexagon_M2_mpyud_nac_lh_s1, 22940}, // __builtin_HEXAGON_M2_mpyud_nac_lh_s1
{Intrinsic::hexagon_M2_mpyud_nac_ll_s0, 22977}, // __builtin_HEXAGON_M2_mpyud_nac_ll_s0
{Intrinsic::hexagon_M2_mpyud_nac_ll_s1, 23014}, // __builtin_HEXAGON_M2_mpyud_nac_ll_s1
{Intrinsic::hexagon_M2_mpyui, 23051}, // __builtin_HEXAGON_M2_mpyui
{Intrinsic::hexagon_M2_nacci, 23078}, // __builtin_HEXAGON_M2_nacci
{Intrinsic::hexagon_M2_naccii, 23105}, // __builtin_HEXAGON_M2_naccii
{Intrinsic::hexagon_M2_subacc, 23133}, // __builtin_HEXAGON_M2_subacc
{Intrinsic::hexagon_M2_vabsdiffh, 23161}, // __builtin_HEXAGON_M2_vabsdiffh
{Intrinsic::hexagon_M2_vabsdiffw, 23192}, // __builtin_HEXAGON_M2_vabsdiffw
{Intrinsic::hexagon_M2_vcmac_s0_sat_i, 23223}, // __builtin_HEXAGON_M2_vcmac_s0_sat_i
{Intrinsic::hexagon_M2_vcmac_s0_sat_r, 23259}, // __builtin_HEXAGON_M2_vcmac_s0_sat_r
{Intrinsic::hexagon_M2_vcmpy_s0_sat_i, 23295}, // __builtin_HEXAGON_M2_vcmpy_s0_sat_i
{Intrinsic::hexagon_M2_vcmpy_s0_sat_r, 23331}, // __builtin_HEXAGON_M2_vcmpy_s0_sat_r
{Intrinsic::hexagon_M2_vcmpy_s1_sat_i, 23367}, // __builtin_HEXAGON_M2_vcmpy_s1_sat_i
{Intrinsic::hexagon_M2_vcmpy_s1_sat_r, 23403}, // __builtin_HEXAGON_M2_vcmpy_s1_sat_r
{Intrinsic::hexagon_M2_vdmacs_s0, 23439}, // __builtin_HEXAGON_M2_vdmacs_s0
{Intrinsic::hexagon_M2_vdmacs_s1, 23470}, // __builtin_HEXAGON_M2_vdmacs_s1
{Intrinsic::hexagon_M2_vdmpyrs_s0, 23501}, // __builtin_HEXAGON_M2_vdmpyrs_s0
{Intrinsic::hexagon_M2_vdmpyrs_s1, 23533}, // __builtin_HEXAGON_M2_vdmpyrs_s1
{Intrinsic::hexagon_M2_vdmpys_s0, 23565}, // __builtin_HEXAGON_M2_vdmpys_s0
{Intrinsic::hexagon_M2_vdmpys_s1, 23596}, // __builtin_HEXAGON_M2_vdmpys_s1
{Intrinsic::hexagon_M2_vmac2, 23627}, // __builtin_HEXAGON_M2_vmac2
{Intrinsic::hexagon_M2_vmac2es, 23654}, // __builtin_HEXAGON_M2_vmac2es
{Intrinsic::hexagon_M2_vmac2es_s0, 23683}, // __builtin_HEXAGON_M2_vmac2es_s0
{Intrinsic::hexagon_M2_vmac2es_s1, 23715}, // __builtin_HEXAGON_M2_vmac2es_s1
{Intrinsic::hexagon_M2_vmac2s_s0, 23747}, // __builtin_HEXAGON_M2_vmac2s_s0
{Intrinsic::hexagon_M2_vmac2s_s1, 23778}, // __builtin_HEXAGON_M2_vmac2s_s1
{Intrinsic::hexagon_M2_vmac2su_s0, 23809}, // __builtin_HEXAGON_M2_vmac2su_s0
{Intrinsic::hexagon_M2_vmac2su_s1, 23841}, // __builtin_HEXAGON_M2_vmac2su_s1
{Intrinsic::hexagon_M2_vmpy2es_s0, 23873}, // __builtin_HEXAGON_M2_vmpy2es_s0
{Intrinsic::hexagon_M2_vmpy2es_s1, 23905}, // __builtin_HEXAGON_M2_vmpy2es_s1
{Intrinsic::hexagon_M2_vmpy2s_s0, 23937}, // __builtin_HEXAGON_M2_vmpy2s_s0
{Intrinsic::hexagon_M2_vmpy2s_s0pack, 23968}, // __builtin_HEXAGON_M2_vmpy2s_s0pack
{Intrinsic::hexagon_M2_vmpy2s_s1, 24003}, // __builtin_HEXAGON_M2_vmpy2s_s1
{Intrinsic::hexagon_M2_vmpy2s_s1pack, 24034}, // __builtin_HEXAGON_M2_vmpy2s_s1pack
{Intrinsic::hexagon_M2_vmpy2su_s0, 24069}, // __builtin_HEXAGON_M2_vmpy2su_s0
{Intrinsic::hexagon_M2_vmpy2su_s1, 24101}, // __builtin_HEXAGON_M2_vmpy2su_s1
{Intrinsic::hexagon_M2_vraddh, 24133}, // __builtin_HEXAGON_M2_vraddh
{Intrinsic::hexagon_M2_vradduh, 24161}, // __builtin_HEXAGON_M2_vradduh
{Intrinsic::hexagon_M2_vrcmaci_s0, 24190}, // __builtin_HEXAGON_M2_vrcmaci_s0
{Intrinsic::hexagon_M2_vrcmaci_s0c, 24222}, // __builtin_HEXAGON_M2_vrcmaci_s0c
{Intrinsic::hexagon_M2_vrcmacr_s0, 24255}, // __builtin_HEXAGON_M2_vrcmacr_s0
{Intrinsic::hexagon_M2_vrcmacr_s0c, 24287}, // __builtin_HEXAGON_M2_vrcmacr_s0c
{Intrinsic::hexagon_M2_vrcmpyi_s0, 24320}, // __builtin_HEXAGON_M2_vrcmpyi_s0
{Intrinsic::hexagon_M2_vrcmpyi_s0c, 24352}, // __builtin_HEXAGON_M2_vrcmpyi_s0c
{Intrinsic::hexagon_M2_vrcmpyr_s0, 24385}, // __builtin_HEXAGON_M2_vrcmpyr_s0
{Intrinsic::hexagon_M2_vrcmpyr_s0c, 24417}, // __builtin_HEXAGON_M2_vrcmpyr_s0c
{Intrinsic::hexagon_M2_vrcmpys_acc_s1, 24450}, // __builtin_HEXAGON_M2_vrcmpys_acc_s1
{Intrinsic::hexagon_M2_vrcmpys_s1, 24486}, // __builtin_HEXAGON_M2_vrcmpys_s1
{Intrinsic::hexagon_M2_vrcmpys_s1rp, 24518}, // __builtin_HEXAGON_M2_vrcmpys_s1rp
{Intrinsic::hexagon_M2_vrmac_s0, 24552}, // __builtin_HEXAGON_M2_vrmac_s0
{Intrinsic::hexagon_M2_vrmpy_s0, 24582}, // __builtin_HEXAGON_M2_vrmpy_s0
{Intrinsic::hexagon_M2_xor_xacc, 24612}, // __builtin_HEXAGON_M2_xor_xacc
{Intrinsic::hexagon_M4_and_and, 24642}, // __builtin_HEXAGON_M4_and_and
{Intrinsic::hexagon_M4_and_andn, 24671}, // __builtin_HEXAGON_M4_and_andn
{Intrinsic::hexagon_M4_and_or, 24701}, // __builtin_HEXAGON_M4_and_or
{Intrinsic::hexagon_M4_and_xor, 24729}, // __builtin_HEXAGON_M4_and_xor
{Intrinsic::hexagon_M4_cmpyi_wh, 24758}, // __builtin_HEXAGON_M4_cmpyi_wh
{Intrinsic::hexagon_M4_cmpyi_whc, 24788}, // __builtin_HEXAGON_M4_cmpyi_whc
{Intrinsic::hexagon_M4_cmpyr_wh, 24819}, // __builtin_HEXAGON_M4_cmpyr_wh
{Intrinsic::hexagon_M4_cmpyr_whc, 24849}, // __builtin_HEXAGON_M4_cmpyr_whc
{Intrinsic::hexagon_M4_mac_up_s1_sat, 24880}, // __builtin_HEXAGON_M4_mac_up_s1_sat
{Intrinsic::hexagon_M4_mpyri_addi, 24915}, // __builtin_HEXAGON_M4_mpyri_addi
{Intrinsic::hexagon_M4_mpyri_addr, 24947}, // __builtin_HEXAGON_M4_mpyri_addr
{Intrinsic::hexagon_M4_mpyri_addr_u2, 24979}, // __builtin_HEXAGON_M4_mpyri_addr_u2
{Intrinsic::hexagon_M4_mpyrr_addi, 25014}, // __builtin_HEXAGON_M4_mpyrr_addi
{Intrinsic::hexagon_M4_mpyrr_addr, 25046}, // __builtin_HEXAGON_M4_mpyrr_addr
{Intrinsic::hexagon_M4_nac_up_s1_sat, 25078}, // __builtin_HEXAGON_M4_nac_up_s1_sat
{Intrinsic::hexagon_M4_or_and, 25113}, // __builtin_HEXAGON_M4_or_and
{Intrinsic::hexagon_M4_or_andn, 25141}, // __builtin_HEXAGON_M4_or_andn
{Intrinsic::hexagon_M4_or_or, 25170}, // __builtin_HEXAGON_M4_or_or
{Intrinsic::hexagon_M4_or_xor, 25197}, // __builtin_HEXAGON_M4_or_xor
{Intrinsic::hexagon_M4_pmpyw, 25225}, // __builtin_HEXAGON_M4_pmpyw
{Intrinsic::hexagon_M4_pmpyw_acc, 25252}, // __builtin_HEXAGON_M4_pmpyw_acc
{Intrinsic::hexagon_M4_vpmpyh, 25283}, // __builtin_HEXAGON_M4_vpmpyh
{Intrinsic::hexagon_M4_vpmpyh_acc, 25311}, // __builtin_HEXAGON_M4_vpmpyh_acc
{Intrinsic::hexagon_M4_vrmpyeh_acc_s0, 25343}, // __builtin_HEXAGON_M4_vrmpyeh_acc_s0
{Intrinsic::hexagon_M4_vrmpyeh_acc_s1, 25379}, // __builtin_HEXAGON_M4_vrmpyeh_acc_s1
{Intrinsic::hexagon_M4_vrmpyeh_s0, 25415}, // __builtin_HEXAGON_M4_vrmpyeh_s0
{Intrinsic::hexagon_M4_vrmpyeh_s1, 25447}, // __builtin_HEXAGON_M4_vrmpyeh_s1
{Intrinsic::hexagon_M4_vrmpyoh_acc_s0, 25479}, // __builtin_HEXAGON_M4_vrmpyoh_acc_s0
{Intrinsic::hexagon_M4_vrmpyoh_acc_s1, 25515}, // __builtin_HEXAGON_M4_vrmpyoh_acc_s1
{Intrinsic::hexagon_M4_vrmpyoh_s0, 25551}, // __builtin_HEXAGON_M4_vrmpyoh_s0
{Intrinsic::hexagon_M4_vrmpyoh_s1, 25583}, // __builtin_HEXAGON_M4_vrmpyoh_s1
{Intrinsic::hexagon_M4_xor_and, 25615}, // __builtin_HEXAGON_M4_xor_and
{Intrinsic::hexagon_M4_xor_andn, 25644}, // __builtin_HEXAGON_M4_xor_andn
{Intrinsic::hexagon_M4_xor_or, 25674}, // __builtin_HEXAGON_M4_xor_or
{Intrinsic::hexagon_M4_xor_xacc, 25702}, // __builtin_HEXAGON_M4_xor_xacc
{Intrinsic::hexagon_M5_vdmacbsu, 25732}, // __builtin_HEXAGON_M5_vdmacbsu
{Intrinsic::hexagon_M5_vdmpybsu, 25762}, // __builtin_HEXAGON_M5_vdmpybsu
{Intrinsic::hexagon_M5_vmacbsu, 25792}, // __builtin_HEXAGON_M5_vmacbsu
{Intrinsic::hexagon_M5_vmacbuu, 25821}, // __builtin_HEXAGON_M5_vmacbuu
{Intrinsic::hexagon_M5_vmpybsu, 25850}, // __builtin_HEXAGON_M5_vmpybsu
{Intrinsic::hexagon_M5_vmpybuu, 25879}, // __builtin_HEXAGON_M5_vmpybuu
{Intrinsic::hexagon_M5_vrmacbsu, 25908}, // __builtin_HEXAGON_M5_vrmacbsu
{Intrinsic::hexagon_M5_vrmacbuu, 25938}, // __builtin_HEXAGON_M5_vrmacbuu
{Intrinsic::hexagon_M5_vrmpybsu, 25968}, // __builtin_HEXAGON_M5_vrmpybsu
{Intrinsic::hexagon_M5_vrmpybuu, 25998}, // __builtin_HEXAGON_M5_vrmpybuu
{Intrinsic::hexagon_M6_vabsdiffb, 26028}, // __builtin_HEXAGON_M6_vabsdiffb
{Intrinsic::hexagon_M6_vabsdiffub, 26059}, // __builtin_HEXAGON_M6_vabsdiffub
{Intrinsic::hexagon_M7_dcmpyiw, 26091}, // __builtin_HEXAGON_M7_dcmpyiw
{Intrinsic::hexagon_M7_dcmpyiw_acc, 26120}, // __builtin_HEXAGON_M7_dcmpyiw_acc
{Intrinsic::hexagon_M7_dcmpyiwc, 26153}, // __builtin_HEXAGON_M7_dcmpyiwc
{Intrinsic::hexagon_M7_dcmpyiwc_acc, 26183}, // __builtin_HEXAGON_M7_dcmpyiwc_acc
{Intrinsic::hexagon_M7_dcmpyrw, 26217}, // __builtin_HEXAGON_M7_dcmpyrw
{Intrinsic::hexagon_M7_dcmpyrw_acc, 26246}, // __builtin_HEXAGON_M7_dcmpyrw_acc
{Intrinsic::hexagon_M7_dcmpyrwc, 26279}, // __builtin_HEXAGON_M7_dcmpyrwc
{Intrinsic::hexagon_M7_dcmpyrwc_acc, 26309}, // __builtin_HEXAGON_M7_dcmpyrwc_acc
{Intrinsic::hexagon_M7_vdmpy, 26343}, // __builtin_HEXAGON_M7_vdmpy
{Intrinsic::hexagon_M7_vdmpy_acc, 26370}, // __builtin_HEXAGON_M7_vdmpy_acc
{Intrinsic::hexagon_M7_wcmpyiw, 26401}, // __builtin_HEXAGON_M7_wcmpyiw
{Intrinsic::hexagon_M7_wcmpyiw_rnd, 26430}, // __builtin_HEXAGON_M7_wcmpyiw_rnd
{Intrinsic::hexagon_M7_wcmpyiwc, 26463}, // __builtin_HEXAGON_M7_wcmpyiwc
{Intrinsic::hexagon_M7_wcmpyiwc_rnd, 26493}, // __builtin_HEXAGON_M7_wcmpyiwc_rnd
{Intrinsic::hexagon_M7_wcmpyrw, 26527}, // __builtin_HEXAGON_M7_wcmpyrw
{Intrinsic::hexagon_M7_wcmpyrw_rnd, 26556}, // __builtin_HEXAGON_M7_wcmpyrw_rnd
{Intrinsic::hexagon_M7_wcmpyrwc, 26589}, // __builtin_HEXAGON_M7_wcmpyrwc
{Intrinsic::hexagon_M7_wcmpyrwc_rnd, 26619}, // __builtin_HEXAGON_M7_wcmpyrwc_rnd
{Intrinsic::hexagon_S2_addasl_rrri, 26653}, // __builtin_HEXAGON_S2_addasl_rrri
{Intrinsic::hexagon_S2_asl_i_p, 26686}, // __builtin_HEXAGON_S2_asl_i_p
{Intrinsic::hexagon_S2_asl_i_p_acc, 26715}, // __builtin_HEXAGON_S2_asl_i_p_acc
{Intrinsic::hexagon_S2_asl_i_p_and, 26748}, // __builtin_HEXAGON_S2_asl_i_p_and
{Intrinsic::hexagon_S2_asl_i_p_nac, 26781}, // __builtin_HEXAGON_S2_asl_i_p_nac
{Intrinsic::hexagon_S2_asl_i_p_or, 26814}, // __builtin_HEXAGON_S2_asl_i_p_or
{Intrinsic::hexagon_S2_asl_i_p_xacc, 26846}, // __builtin_HEXAGON_S2_asl_i_p_xacc
{Intrinsic::hexagon_S2_asl_i_r, 26880}, // __builtin_HEXAGON_S2_asl_i_r
{Intrinsic::hexagon_S2_asl_i_r_acc, 26909}, // __builtin_HEXAGON_S2_asl_i_r_acc
{Intrinsic::hexagon_S2_asl_i_r_and, 26942}, // __builtin_HEXAGON_S2_asl_i_r_and
{Intrinsic::hexagon_S2_asl_i_r_nac, 26975}, // __builtin_HEXAGON_S2_asl_i_r_nac
{Intrinsic::hexagon_S2_asl_i_r_or, 27008}, // __builtin_HEXAGON_S2_asl_i_r_or
{Intrinsic::hexagon_S2_asl_i_r_sat, 27040}, // __builtin_HEXAGON_S2_asl_i_r_sat
{Intrinsic::hexagon_S2_asl_i_r_xacc, 27073}, // __builtin_HEXAGON_S2_asl_i_r_xacc
{Intrinsic::hexagon_S2_asl_i_vh, 27107}, // __builtin_HEXAGON_S2_asl_i_vh
{Intrinsic::hexagon_S2_asl_i_vw, 27137}, // __builtin_HEXAGON_S2_asl_i_vw
{Intrinsic::hexagon_S2_asl_r_p, 27167}, // __builtin_HEXAGON_S2_asl_r_p
{Intrinsic::hexagon_S2_asl_r_p_acc, 27196}, // __builtin_HEXAGON_S2_asl_r_p_acc
{Intrinsic::hexagon_S2_asl_r_p_and, 27229}, // __builtin_HEXAGON_S2_asl_r_p_and
{Intrinsic::hexagon_S2_asl_r_p_nac, 27262}, // __builtin_HEXAGON_S2_asl_r_p_nac
{Intrinsic::hexagon_S2_asl_r_p_or, 27295}, // __builtin_HEXAGON_S2_asl_r_p_or
{Intrinsic::hexagon_S2_asl_r_p_xor, 27327}, // __builtin_HEXAGON_S2_asl_r_p_xor
{Intrinsic::hexagon_S2_asl_r_r, 27360}, // __builtin_HEXAGON_S2_asl_r_r
{Intrinsic::hexagon_S2_asl_r_r_acc, 27389}, // __builtin_HEXAGON_S2_asl_r_r_acc
{Intrinsic::hexagon_S2_asl_r_r_and, 27422}, // __builtin_HEXAGON_S2_asl_r_r_and
{Intrinsic::hexagon_S2_asl_r_r_nac, 27455}, // __builtin_HEXAGON_S2_asl_r_r_nac
{Intrinsic::hexagon_S2_asl_r_r_or, 27488}, // __builtin_HEXAGON_S2_asl_r_r_or
{Intrinsic::hexagon_S2_asl_r_r_sat, 27520}, // __builtin_HEXAGON_S2_asl_r_r_sat
{Intrinsic::hexagon_S2_asl_r_vh, 27553}, // __builtin_HEXAGON_S2_asl_r_vh
{Intrinsic::hexagon_S2_asl_r_vw, 27583}, // __builtin_HEXAGON_S2_asl_r_vw
{Intrinsic::hexagon_S2_asr_i_p, 27613}, // __builtin_HEXAGON_S2_asr_i_p
{Intrinsic::hexagon_S2_asr_i_p_acc, 27642}, // __builtin_HEXAGON_S2_asr_i_p_acc
{Intrinsic::hexagon_S2_asr_i_p_and, 27675}, // __builtin_HEXAGON_S2_asr_i_p_and
{Intrinsic::hexagon_S2_asr_i_p_nac, 27708}, // __builtin_HEXAGON_S2_asr_i_p_nac
{Intrinsic::hexagon_S2_asr_i_p_or, 27741}, // __builtin_HEXAGON_S2_asr_i_p_or
{Intrinsic::hexagon_S2_asr_i_p_rnd, 27773}, // __builtin_HEXAGON_S2_asr_i_p_rnd
{Intrinsic::hexagon_S2_asr_i_p_rnd_goodsyntax, 27806}, // __builtin_HEXAGON_S2_asr_i_p_rnd_goodsyntax
{Intrinsic::hexagon_S2_asr_i_r, 27850}, // __builtin_HEXAGON_S2_asr_i_r
{Intrinsic::hexagon_S2_asr_i_r_acc, 27879}, // __builtin_HEXAGON_S2_asr_i_r_acc
{Intrinsic::hexagon_S2_asr_i_r_and, 27912}, // __builtin_HEXAGON_S2_asr_i_r_and
{Intrinsic::hexagon_S2_asr_i_r_nac, 27945}, // __builtin_HEXAGON_S2_asr_i_r_nac
{Intrinsic::hexagon_S2_asr_i_r_or, 27978}, // __builtin_HEXAGON_S2_asr_i_r_or
{Intrinsic::hexagon_S2_asr_i_r_rnd, 28010}, // __builtin_HEXAGON_S2_asr_i_r_rnd
{Intrinsic::hexagon_S2_asr_i_r_rnd_goodsyntax, 28043}, // __builtin_HEXAGON_S2_asr_i_r_rnd_goodsyntax
{Intrinsic::hexagon_S2_asr_i_svw_trun, 28087}, // __builtin_HEXAGON_S2_asr_i_svw_trun
{Intrinsic::hexagon_S2_asr_i_vh, 28123}, // __builtin_HEXAGON_S2_asr_i_vh
{Intrinsic::hexagon_S2_asr_i_vw, 28153}, // __builtin_HEXAGON_S2_asr_i_vw
{Intrinsic::hexagon_S2_asr_r_p, 28183}, // __builtin_HEXAGON_S2_asr_r_p
{Intrinsic::hexagon_S2_asr_r_p_acc, 28212}, // __builtin_HEXAGON_S2_asr_r_p_acc
{Intrinsic::hexagon_S2_asr_r_p_and, 28245}, // __builtin_HEXAGON_S2_asr_r_p_and
{Intrinsic::hexagon_S2_asr_r_p_nac, 28278}, // __builtin_HEXAGON_S2_asr_r_p_nac
{Intrinsic::hexagon_S2_asr_r_p_or, 28311}, // __builtin_HEXAGON_S2_asr_r_p_or
{Intrinsic::hexagon_S2_asr_r_p_xor, 28343}, // __builtin_HEXAGON_S2_asr_r_p_xor
{Intrinsic::hexagon_S2_asr_r_r, 28376}, // __builtin_HEXAGON_S2_asr_r_r
{Intrinsic::hexagon_S2_asr_r_r_acc, 28405}, // __builtin_HEXAGON_S2_asr_r_r_acc
{Intrinsic::hexagon_S2_asr_r_r_and, 28438}, // __builtin_HEXAGON_S2_asr_r_r_and
{Intrinsic::hexagon_S2_asr_r_r_nac, 28471}, // __builtin_HEXAGON_S2_asr_r_r_nac
{Intrinsic::hexagon_S2_asr_r_r_or, 28504}, // __builtin_HEXAGON_S2_asr_r_r_or
{Intrinsic::hexagon_S2_asr_r_r_sat, 28536}, // __builtin_HEXAGON_S2_asr_r_r_sat
{Intrinsic::hexagon_S2_asr_r_svw_trun, 28569}, // __builtin_HEXAGON_S2_asr_r_svw_trun
{Intrinsic::hexagon_S2_asr_r_vh, 28605}, // __builtin_HEXAGON_S2_asr_r_vh
{Intrinsic::hexagon_S2_asr_r_vw, 28635}, // __builtin_HEXAGON_S2_asr_r_vw
{Intrinsic::hexagon_S2_brev, 28665}, // __builtin_HEXAGON_S2_brev
{Intrinsic::hexagon_S2_brevp, 28691}, // __builtin_HEXAGON_S2_brevp
{Intrinsic::hexagon_S2_cl0, 28718}, // __builtin_HEXAGON_S2_cl0
{Intrinsic::hexagon_S2_cl0p, 28743}, // __builtin_HEXAGON_S2_cl0p
{Intrinsic::hexagon_S2_cl1, 28769}, // __builtin_HEXAGON_S2_cl1
{Intrinsic::hexagon_S2_cl1p, 28794}, // __builtin_HEXAGON_S2_cl1p
{Intrinsic::hexagon_S2_clb, 28820}, // __builtin_HEXAGON_S2_clb
{Intrinsic::hexagon_S2_clbnorm, 28845}, // __builtin_HEXAGON_S2_clbnorm
{Intrinsic::hexagon_S2_clbp, 28874}, // __builtin_HEXAGON_S2_clbp
{Intrinsic::hexagon_S2_clrbit_i, 28900}, // __builtin_HEXAGON_S2_clrbit_i
{Intrinsic::hexagon_S2_clrbit_r, 28930}, // __builtin_HEXAGON_S2_clrbit_r
{Intrinsic::hexagon_S2_ct0, 28960}, // __builtin_HEXAGON_S2_ct0
{Intrinsic::hexagon_S2_ct0p, 28985}, // __builtin_HEXAGON_S2_ct0p
{Intrinsic::hexagon_S2_ct1, 29011}, // __builtin_HEXAGON_S2_ct1
{Intrinsic::hexagon_S2_ct1p, 29036}, // __builtin_HEXAGON_S2_ct1p
{Intrinsic::hexagon_S2_deinterleave, 29062}, // __builtin_HEXAGON_S2_deinterleave
{Intrinsic::hexagon_S2_extractu, 29096}, // __builtin_HEXAGON_S2_extractu
{Intrinsic::hexagon_S2_extractu_rp, 29126}, // __builtin_HEXAGON_S2_extractu_rp
{Intrinsic::hexagon_S2_extractup, 29159}, // __builtin_HEXAGON_S2_extractup
{Intrinsic::hexagon_S2_extractup_rp, 29190}, // __builtin_HEXAGON_S2_extractup_rp
{Intrinsic::hexagon_S2_insert, 29224}, // __builtin_HEXAGON_S2_insert
{Intrinsic::hexagon_S2_insert_rp, 29252}, // __builtin_HEXAGON_S2_insert_rp
{Intrinsic::hexagon_S2_insertp, 29283}, // __builtin_HEXAGON_S2_insertp
{Intrinsic::hexagon_S2_insertp_rp, 29312}, // __builtin_HEXAGON_S2_insertp_rp
{Intrinsic::hexagon_S2_interleave, 29344}, // __builtin_HEXAGON_S2_interleave
{Intrinsic::hexagon_S2_lfsp, 29376}, // __builtin_HEXAGON_S2_lfsp
{Intrinsic::hexagon_S2_lsl_r_p, 29402}, // __builtin_HEXAGON_S2_lsl_r_p
{Intrinsic::hexagon_S2_lsl_r_p_acc, 29431}, // __builtin_HEXAGON_S2_lsl_r_p_acc
{Intrinsic::hexagon_S2_lsl_r_p_and, 29464}, // __builtin_HEXAGON_S2_lsl_r_p_and
{Intrinsic::hexagon_S2_lsl_r_p_nac, 29497}, // __builtin_HEXAGON_S2_lsl_r_p_nac
{Intrinsic::hexagon_S2_lsl_r_p_or, 29530}, // __builtin_HEXAGON_S2_lsl_r_p_or
{Intrinsic::hexagon_S2_lsl_r_p_xor, 29562}, // __builtin_HEXAGON_S2_lsl_r_p_xor
{Intrinsic::hexagon_S2_lsl_r_r, 29595}, // __builtin_HEXAGON_S2_lsl_r_r
{Intrinsic::hexagon_S2_lsl_r_r_acc, 29624}, // __builtin_HEXAGON_S2_lsl_r_r_acc
{Intrinsic::hexagon_S2_lsl_r_r_and, 29657}, // __builtin_HEXAGON_S2_lsl_r_r_and
{Intrinsic::hexagon_S2_lsl_r_r_nac, 29690}, // __builtin_HEXAGON_S2_lsl_r_r_nac
{Intrinsic::hexagon_S2_lsl_r_r_or, 29723}, // __builtin_HEXAGON_S2_lsl_r_r_or
{Intrinsic::hexagon_S2_lsl_r_vh, 29755}, // __builtin_HEXAGON_S2_lsl_r_vh
{Intrinsic::hexagon_S2_lsl_r_vw, 29785}, // __builtin_HEXAGON_S2_lsl_r_vw
{Intrinsic::hexagon_S2_lsr_i_p, 29815}, // __builtin_HEXAGON_S2_lsr_i_p
{Intrinsic::hexagon_S2_lsr_i_p_acc, 29844}, // __builtin_HEXAGON_S2_lsr_i_p_acc
{Intrinsic::hexagon_S2_lsr_i_p_and, 29877}, // __builtin_HEXAGON_S2_lsr_i_p_and
{Intrinsic::hexagon_S2_lsr_i_p_nac, 29910}, // __builtin_HEXAGON_S2_lsr_i_p_nac
{Intrinsic::hexagon_S2_lsr_i_p_or, 29943}, // __builtin_HEXAGON_S2_lsr_i_p_or
{Intrinsic::hexagon_S2_lsr_i_p_xacc, 29975}, // __builtin_HEXAGON_S2_lsr_i_p_xacc
{Intrinsic::hexagon_S2_lsr_i_r, 30009}, // __builtin_HEXAGON_S2_lsr_i_r
{Intrinsic::hexagon_S2_lsr_i_r_acc, 30038}, // __builtin_HEXAGON_S2_lsr_i_r_acc
{Intrinsic::hexagon_S2_lsr_i_r_and, 30071}, // __builtin_HEXAGON_S2_lsr_i_r_and
{Intrinsic::hexagon_S2_lsr_i_r_nac, 30104}, // __builtin_HEXAGON_S2_lsr_i_r_nac
{Intrinsic::hexagon_S2_lsr_i_r_or, 30137}, // __builtin_HEXAGON_S2_lsr_i_r_or
{Intrinsic::hexagon_S2_lsr_i_r_xacc, 30169}, // __builtin_HEXAGON_S2_lsr_i_r_xacc
{Intrinsic::hexagon_S2_lsr_i_vh, 30203}, // __builtin_HEXAGON_S2_lsr_i_vh
{Intrinsic::hexagon_S2_lsr_i_vw, 30233}, // __builtin_HEXAGON_S2_lsr_i_vw
{Intrinsic::hexagon_S2_lsr_r_p, 30263}, // __builtin_HEXAGON_S2_lsr_r_p
{Intrinsic::hexagon_S2_lsr_r_p_acc, 30292}, // __builtin_HEXAGON_S2_lsr_r_p_acc
{Intrinsic::hexagon_S2_lsr_r_p_and, 30325}, // __builtin_HEXAGON_S2_lsr_r_p_and
{Intrinsic::hexagon_S2_lsr_r_p_nac, 30358}, // __builtin_HEXAGON_S2_lsr_r_p_nac
{Intrinsic::hexagon_S2_lsr_r_p_or, 30391}, // __builtin_HEXAGON_S2_lsr_r_p_or
{Intrinsic::hexagon_S2_lsr_r_p_xor, 30423}, // __builtin_HEXAGON_S2_lsr_r_p_xor
{Intrinsic::hexagon_S2_lsr_r_r, 30456}, // __builtin_HEXAGON_S2_lsr_r_r
{Intrinsic::hexagon_S2_lsr_r_r_acc, 30485}, // __builtin_HEXAGON_S2_lsr_r_r_acc
{Intrinsic::hexagon_S2_lsr_r_r_and, 30518}, // __builtin_HEXAGON_S2_lsr_r_r_and
{Intrinsic::hexagon_S2_lsr_r_r_nac, 30551}, // __builtin_HEXAGON_S2_lsr_r_r_nac
{Intrinsic::hexagon_S2_lsr_r_r_or, 30584}, // __builtin_HEXAGON_S2_lsr_r_r_or
{Intrinsic::hexagon_S2_lsr_r_vh, 30616}, // __builtin_HEXAGON_S2_lsr_r_vh
{Intrinsic::hexagon_S2_lsr_r_vw, 30646}, // __builtin_HEXAGON_S2_lsr_r_vw
{Intrinsic::hexagon_S2_mask, 30676}, // __builtin_HEXAGON_S2_mask
{Intrinsic::hexagon_S2_packhl, 30702}, // __builtin_HEXAGON_S2_packhl
{Intrinsic::hexagon_S2_parityp, 30730}, // __builtin_HEXAGON_S2_parityp
{Intrinsic::hexagon_S2_setbit_i, 30759}, // __builtin_HEXAGON_S2_setbit_i
{Intrinsic::hexagon_S2_setbit_r, 30789}, // __builtin_HEXAGON_S2_setbit_r
{Intrinsic::hexagon_S2_shuffeb, 30819}, // __builtin_HEXAGON_S2_shuffeb
{Intrinsic::hexagon_S2_shuffeh, 30848}, // __builtin_HEXAGON_S2_shuffeh
{Intrinsic::hexagon_S2_shuffob, 30877}, // __builtin_HEXAGON_S2_shuffob
{Intrinsic::hexagon_S2_shuffoh, 30906}, // __builtin_HEXAGON_S2_shuffoh
{Intrinsic::hexagon_S2_storew_locked, 31032}, // __builtin_HEXAGON_S2_storew_locked
{Intrinsic::hexagon_S2_svsathb, 31067}, // __builtin_HEXAGON_S2_svsathb
{Intrinsic::hexagon_S2_svsathub, 31096}, // __builtin_HEXAGON_S2_svsathub
{Intrinsic::hexagon_S2_tableidxb_goodsyntax, 31126}, // __builtin_HEXAGON_S2_tableidxb_goodsyntax
{Intrinsic::hexagon_S2_tableidxd_goodsyntax, 31168}, // __builtin_HEXAGON_S2_tableidxd_goodsyntax
{Intrinsic::hexagon_S2_tableidxh_goodsyntax, 31210}, // __builtin_HEXAGON_S2_tableidxh_goodsyntax
{Intrinsic::hexagon_S2_tableidxw_goodsyntax, 31252}, // __builtin_HEXAGON_S2_tableidxw_goodsyntax
{Intrinsic::hexagon_S2_togglebit_i, 31294}, // __builtin_HEXAGON_S2_togglebit_i
{Intrinsic::hexagon_S2_togglebit_r, 31327}, // __builtin_HEXAGON_S2_togglebit_r
{Intrinsic::hexagon_S2_tstbit_i, 31360}, // __builtin_HEXAGON_S2_tstbit_i
{Intrinsic::hexagon_S2_tstbit_r, 31390}, // __builtin_HEXAGON_S2_tstbit_r
{Intrinsic::hexagon_S2_valignib, 31420}, // __builtin_HEXAGON_S2_valignib
{Intrinsic::hexagon_S2_valignrb, 31450}, // __builtin_HEXAGON_S2_valignrb
{Intrinsic::hexagon_S2_vcnegh, 31480}, // __builtin_HEXAGON_S2_vcnegh
{Intrinsic::hexagon_S2_vcrotate, 31508}, // __builtin_HEXAGON_S2_vcrotate
{Intrinsic::hexagon_S2_vrcnegh, 31538}, // __builtin_HEXAGON_S2_vrcnegh
{Intrinsic::hexagon_S2_vrndpackwh, 31567}, // __builtin_HEXAGON_S2_vrndpackwh
{Intrinsic::hexagon_S2_vrndpackwhs, 31599}, // __builtin_HEXAGON_S2_vrndpackwhs
{Intrinsic::hexagon_S2_vsathb, 31632}, // __builtin_HEXAGON_S2_vsathb
{Intrinsic::hexagon_S2_vsathb_nopack, 31660}, // __builtin_HEXAGON_S2_vsathb_nopack
{Intrinsic::hexagon_S2_vsathub, 31695}, // __builtin_HEXAGON_S2_vsathub
{Intrinsic::hexagon_S2_vsathub_nopack, 31724}, // __builtin_HEXAGON_S2_vsathub_nopack
{Intrinsic::hexagon_S2_vsatwh, 31760}, // __builtin_HEXAGON_S2_vsatwh
{Intrinsic::hexagon_S2_vsatwh_nopack, 31788}, // __builtin_HEXAGON_S2_vsatwh_nopack
{Intrinsic::hexagon_S2_vsatwuh, 31823}, // __builtin_HEXAGON_S2_vsatwuh
{Intrinsic::hexagon_S2_vsatwuh_nopack, 31852}, // __builtin_HEXAGON_S2_vsatwuh_nopack
{Intrinsic::hexagon_S2_vsplatrb, 31888}, // __builtin_HEXAGON_S2_vsplatrb
{Intrinsic::hexagon_S2_vsplatrh, 31918}, // __builtin_HEXAGON_S2_vsplatrh
{Intrinsic::hexagon_S2_vspliceib, 31948}, // __builtin_HEXAGON_S2_vspliceib
{Intrinsic::hexagon_S2_vsplicerb, 31979}, // __builtin_HEXAGON_S2_vsplicerb
{Intrinsic::hexagon_S2_vsxtbh, 32010}, // __builtin_HEXAGON_S2_vsxtbh
{Intrinsic::hexagon_S2_vsxthw, 32038}, // __builtin_HEXAGON_S2_vsxthw
{Intrinsic::hexagon_S2_vtrunehb, 32066}, // __builtin_HEXAGON_S2_vtrunehb
{Intrinsic::hexagon_S2_vtrunewh, 32096}, // __builtin_HEXAGON_S2_vtrunewh
{Intrinsic::hexagon_S2_vtrunohb, 32126}, // __builtin_HEXAGON_S2_vtrunohb
{Intrinsic::hexagon_S2_vtrunowh, 32156}, // __builtin_HEXAGON_S2_vtrunowh
{Intrinsic::hexagon_S2_vzxtbh, 32186}, // __builtin_HEXAGON_S2_vzxtbh
{Intrinsic::hexagon_S2_vzxthw, 32214}, // __builtin_HEXAGON_S2_vzxthw
{Intrinsic::hexagon_S4_addaddi, 32242}, // __builtin_HEXAGON_S4_addaddi
{Intrinsic::hexagon_S4_addi_asl_ri, 32271}, // __builtin_HEXAGON_S4_addi_asl_ri
{Intrinsic::hexagon_S4_addi_lsr_ri, 32304}, // __builtin_HEXAGON_S4_addi_lsr_ri
{Intrinsic::hexagon_S4_andi_asl_ri, 32337}, // __builtin_HEXAGON_S4_andi_asl_ri
{Intrinsic::hexagon_S4_andi_lsr_ri, 32370}, // __builtin_HEXAGON_S4_andi_lsr_ri
{Intrinsic::hexagon_S4_clbaddi, 32403}, // __builtin_HEXAGON_S4_clbaddi
{Intrinsic::hexagon_S4_clbpaddi, 32432}, // __builtin_HEXAGON_S4_clbpaddi
{Intrinsic::hexagon_S4_clbpnorm, 32462}, // __builtin_HEXAGON_S4_clbpnorm
{Intrinsic::hexagon_S4_extract, 32492}, // __builtin_HEXAGON_S4_extract
{Intrinsic::hexagon_S4_extract_rp, 32521}, // __builtin_HEXAGON_S4_extract_rp
{Intrinsic::hexagon_S4_extractp, 32553}, // __builtin_HEXAGON_S4_extractp
{Intrinsic::hexagon_S4_extractp_rp, 32583}, // __builtin_HEXAGON_S4_extractp_rp
{Intrinsic::hexagon_S4_lsli, 32616}, // __builtin_HEXAGON_S4_lsli
{Intrinsic::hexagon_S4_ntstbit_i, 32642}, // __builtin_HEXAGON_S4_ntstbit_i
{Intrinsic::hexagon_S4_ntstbit_r, 32673}, // __builtin_HEXAGON_S4_ntstbit_r
{Intrinsic::hexagon_S4_or_andi, 32704}, // __builtin_HEXAGON_S4_or_andi
{Intrinsic::hexagon_S4_or_andix, 32733}, // __builtin_HEXAGON_S4_or_andix
{Intrinsic::hexagon_S4_or_ori, 32763}, // __builtin_HEXAGON_S4_or_ori
{Intrinsic::hexagon_S4_ori_asl_ri, 32791}, // __builtin_HEXAGON_S4_ori_asl_ri
{Intrinsic::hexagon_S4_ori_lsr_ri, 32823}, // __builtin_HEXAGON_S4_ori_lsr_ri
{Intrinsic::hexagon_S4_parity, 32855}, // __builtin_HEXAGON_S4_parity
{Intrinsic::hexagon_S4_stored_locked, 32883}, // __builtin_HEXAGON_S4_stored_locked
{Intrinsic::hexagon_S4_subaddi, 32918}, // __builtin_HEXAGON_S4_subaddi
{Intrinsic::hexagon_S4_subi_asl_ri, 32947}, // __builtin_HEXAGON_S4_subi_asl_ri
{Intrinsic::hexagon_S4_subi_lsr_ri, 32980}, // __builtin_HEXAGON_S4_subi_lsr_ri
{Intrinsic::hexagon_S4_vrcrotate, 33013}, // __builtin_HEXAGON_S4_vrcrotate
{Intrinsic::hexagon_S4_vrcrotate_acc, 33044}, // __builtin_HEXAGON_S4_vrcrotate_acc
{Intrinsic::hexagon_S4_vxaddsubh, 33079}, // __builtin_HEXAGON_S4_vxaddsubh
{Intrinsic::hexagon_S4_vxaddsubhr, 33110}, // __builtin_HEXAGON_S4_vxaddsubhr
{Intrinsic::hexagon_S4_vxaddsubw, 33142}, // __builtin_HEXAGON_S4_vxaddsubw
{Intrinsic::hexagon_S4_vxsubaddh, 33173}, // __builtin_HEXAGON_S4_vxsubaddh
{Intrinsic::hexagon_S4_vxsubaddhr, 33204}, // __builtin_HEXAGON_S4_vxsubaddhr
{Intrinsic::hexagon_S4_vxsubaddw, 33236}, // __builtin_HEXAGON_S4_vxsubaddw
{Intrinsic::hexagon_S5_asrhub_rnd_sat_goodsyntax, 33267}, // __builtin_HEXAGON_S5_asrhub_rnd_sat_goodsyntax
{Intrinsic::hexagon_S5_asrhub_sat, 33314}, // __builtin_HEXAGON_S5_asrhub_sat
{Intrinsic::hexagon_S5_popcountp, 33346}, // __builtin_HEXAGON_S5_popcountp
{Intrinsic::hexagon_S5_vasrhrnd_goodsyntax, 33377}, // __builtin_HEXAGON_S5_vasrhrnd_goodsyntax
{Intrinsic::hexagon_S6_rol_i_p, 33418}, // __builtin_HEXAGON_S6_rol_i_p
{Intrinsic::hexagon_S6_rol_i_p_acc, 33447}, // __builtin_HEXAGON_S6_rol_i_p_acc
{Intrinsic::hexagon_S6_rol_i_p_and, 33480}, // __builtin_HEXAGON_S6_rol_i_p_and
{Intrinsic::hexagon_S6_rol_i_p_nac, 33513}, // __builtin_HEXAGON_S6_rol_i_p_nac
{Intrinsic::hexagon_S6_rol_i_p_or, 33546}, // __builtin_HEXAGON_S6_rol_i_p_or
{Intrinsic::hexagon_S6_rol_i_p_xacc, 33578}, // __builtin_HEXAGON_S6_rol_i_p_xacc
{Intrinsic::hexagon_S6_rol_i_r, 33612}, // __builtin_HEXAGON_S6_rol_i_r
{Intrinsic::hexagon_S6_rol_i_r_acc, 33641}, // __builtin_HEXAGON_S6_rol_i_r_acc
{Intrinsic::hexagon_S6_rol_i_r_and, 33674}, // __builtin_HEXAGON_S6_rol_i_r_and
{Intrinsic::hexagon_S6_rol_i_r_nac, 33707}, // __builtin_HEXAGON_S6_rol_i_r_nac
{Intrinsic::hexagon_S6_rol_i_r_or, 33740}, // __builtin_HEXAGON_S6_rol_i_r_or
{Intrinsic::hexagon_S6_rol_i_r_xacc, 33772}, // __builtin_HEXAGON_S6_rol_i_r_xacc
{Intrinsic::hexagon_S6_vsplatrbp, 33806}, // __builtin_HEXAGON_S6_vsplatrbp
{Intrinsic::hexagon_S6_vtrunehb_ppp, 33837}, // __builtin_HEXAGON_S6_vtrunehb_ppp
{Intrinsic::hexagon_S6_vtrunohb_ppp, 33871}, // __builtin_HEXAGON_S6_vtrunohb_ppp
{Intrinsic::hexagon_V6_extractw, 33905}, // __builtin_HEXAGON_V6_extractw
{Intrinsic::hexagon_V6_extractw_128B, 33935}, // __builtin_HEXAGON_V6_extractw_128B
{Intrinsic::hexagon_V6_hi, 33970}, // __builtin_HEXAGON_V6_hi
{Intrinsic::hexagon_V6_hi_128B, 33994}, // __builtin_HEXAGON_V6_hi_128B
{Intrinsic::hexagon_V6_lo, 34023}, // __builtin_HEXAGON_V6_lo
{Intrinsic::hexagon_V6_lo_128B, 34047}, // __builtin_HEXAGON_V6_lo_128B
{Intrinsic::hexagon_V6_lvsplatb, 34076}, // __builtin_HEXAGON_V6_lvsplatb
{Intrinsic::hexagon_V6_lvsplatb_128B, 34106}, // __builtin_HEXAGON_V6_lvsplatb_128B
{Intrinsic::hexagon_V6_lvsplath, 34141}, // __builtin_HEXAGON_V6_lvsplath
{Intrinsic::hexagon_V6_lvsplath_128B, 34171}, // __builtin_HEXAGON_V6_lvsplath_128B
{Intrinsic::hexagon_V6_lvsplatw, 34206}, // __builtin_HEXAGON_V6_lvsplatw
{Intrinsic::hexagon_V6_lvsplatw_128B, 34236}, // __builtin_HEXAGON_V6_lvsplatw_128B
{Intrinsic::hexagon_V6_vabsb, 34271}, // __builtin_HEXAGON_V6_vabsb
{Intrinsic::hexagon_V6_vabsb_128B, 34298}, // __builtin_HEXAGON_V6_vabsb_128B
{Intrinsic::hexagon_V6_vabsb_sat, 34330}, // __builtin_HEXAGON_V6_vabsb_sat
{Intrinsic::hexagon_V6_vabsb_sat_128B, 34361}, // __builtin_HEXAGON_V6_vabsb_sat_128B
{Intrinsic::hexagon_V6_vabsdiffh, 34397}, // __builtin_HEXAGON_V6_vabsdiffh
{Intrinsic::hexagon_V6_vabsdiffh_128B, 34428}, // __builtin_HEXAGON_V6_vabsdiffh_128B
{Intrinsic::hexagon_V6_vabsdiffub, 34464}, // __builtin_HEXAGON_V6_vabsdiffub
{Intrinsic::hexagon_V6_vabsdiffub_128B, 34496}, // __builtin_HEXAGON_V6_vabsdiffub_128B
{Intrinsic::hexagon_V6_vabsdiffuh, 34533}, // __builtin_HEXAGON_V6_vabsdiffuh
{Intrinsic::hexagon_V6_vabsdiffuh_128B, 34565}, // __builtin_HEXAGON_V6_vabsdiffuh_128B
{Intrinsic::hexagon_V6_vabsdiffw, 34602}, // __builtin_HEXAGON_V6_vabsdiffw
{Intrinsic::hexagon_V6_vabsdiffw_128B, 34633}, // __builtin_HEXAGON_V6_vabsdiffw_128B
{Intrinsic::hexagon_V6_vabsh, 34669}, // __builtin_HEXAGON_V6_vabsh
{Intrinsic::hexagon_V6_vabsh_128B, 34696}, // __builtin_HEXAGON_V6_vabsh_128B
{Intrinsic::hexagon_V6_vabsh_sat, 34728}, // __builtin_HEXAGON_V6_vabsh_sat
{Intrinsic::hexagon_V6_vabsh_sat_128B, 34759}, // __builtin_HEXAGON_V6_vabsh_sat_128B
{Intrinsic::hexagon_V6_vabsw, 34795}, // __builtin_HEXAGON_V6_vabsw
{Intrinsic::hexagon_V6_vabsw_128B, 34822}, // __builtin_HEXAGON_V6_vabsw_128B
{Intrinsic::hexagon_V6_vabsw_sat, 34854}, // __builtin_HEXAGON_V6_vabsw_sat
{Intrinsic::hexagon_V6_vabsw_sat_128B, 34885}, // __builtin_HEXAGON_V6_vabsw_sat_128B
{Intrinsic::hexagon_V6_vaddb, 34921}, // __builtin_HEXAGON_V6_vaddb
{Intrinsic::hexagon_V6_vaddb_128B, 34948}, // __builtin_HEXAGON_V6_vaddb_128B
{Intrinsic::hexagon_V6_vaddb_dv, 34980}, // __builtin_HEXAGON_V6_vaddb_dv
{Intrinsic::hexagon_V6_vaddb_dv_128B, 35010}, // __builtin_HEXAGON_V6_vaddb_dv_128B
{Intrinsic::hexagon_V6_vaddbsat, 35045}, // __builtin_HEXAGON_V6_vaddbsat
{Intrinsic::hexagon_V6_vaddbsat_128B, 35075}, // __builtin_HEXAGON_V6_vaddbsat_128B
{Intrinsic::hexagon_V6_vaddbsat_dv, 35110}, // __builtin_HEXAGON_V6_vaddbsat_dv
{Intrinsic::hexagon_V6_vaddbsat_dv_128B, 35143}, // __builtin_HEXAGON_V6_vaddbsat_dv_128B
{Intrinsic::hexagon_V6_vaddclbh, 35181}, // __builtin_HEXAGON_V6_vaddclbh
{Intrinsic::hexagon_V6_vaddclbh_128B, 35211}, // __builtin_HEXAGON_V6_vaddclbh_128B
{Intrinsic::hexagon_V6_vaddclbw, 35246}, // __builtin_HEXAGON_V6_vaddclbw
{Intrinsic::hexagon_V6_vaddclbw_128B, 35276}, // __builtin_HEXAGON_V6_vaddclbw_128B
{Intrinsic::hexagon_V6_vaddh, 35311}, // __builtin_HEXAGON_V6_vaddh
{Intrinsic::hexagon_V6_vaddh_128B, 35338}, // __builtin_HEXAGON_V6_vaddh_128B
{Intrinsic::hexagon_V6_vaddh_dv, 35370}, // __builtin_HEXAGON_V6_vaddh_dv
{Intrinsic::hexagon_V6_vaddh_dv_128B, 35400}, // __builtin_HEXAGON_V6_vaddh_dv_128B
{Intrinsic::hexagon_V6_vaddhsat, 35435}, // __builtin_HEXAGON_V6_vaddhsat
{Intrinsic::hexagon_V6_vaddhsat_128B, 35465}, // __builtin_HEXAGON_V6_vaddhsat_128B
{Intrinsic::hexagon_V6_vaddhsat_dv, 35500}, // __builtin_HEXAGON_V6_vaddhsat_dv
{Intrinsic::hexagon_V6_vaddhsat_dv_128B, 35533}, // __builtin_HEXAGON_V6_vaddhsat_dv_128B
{Intrinsic::hexagon_V6_vaddhw, 35571}, // __builtin_HEXAGON_V6_vaddhw
{Intrinsic::hexagon_V6_vaddhw_128B, 35599}, // __builtin_HEXAGON_V6_vaddhw_128B
{Intrinsic::hexagon_V6_vaddhw_acc, 35632}, // __builtin_HEXAGON_V6_vaddhw_acc
{Intrinsic::hexagon_V6_vaddhw_acc_128B, 35664}, // __builtin_HEXAGON_V6_vaddhw_acc_128B
{Intrinsic::hexagon_V6_vaddubh, 35701}, // __builtin_HEXAGON_V6_vaddubh
{Intrinsic::hexagon_V6_vaddubh_128B, 35730}, // __builtin_HEXAGON_V6_vaddubh_128B
{Intrinsic::hexagon_V6_vaddubh_acc, 35764}, // __builtin_HEXAGON_V6_vaddubh_acc
{Intrinsic::hexagon_V6_vaddubh_acc_128B, 35797}, // __builtin_HEXAGON_V6_vaddubh_acc_128B
{Intrinsic::hexagon_V6_vaddubsat, 35835}, // __builtin_HEXAGON_V6_vaddubsat
{Intrinsic::hexagon_V6_vaddubsat_128B, 35866}, // __builtin_HEXAGON_V6_vaddubsat_128B
{Intrinsic::hexagon_V6_vaddubsat_dv, 35902}, // __builtin_HEXAGON_V6_vaddubsat_dv
{Intrinsic::hexagon_V6_vaddubsat_dv_128B, 35936}, // __builtin_HEXAGON_V6_vaddubsat_dv_128B
{Intrinsic::hexagon_V6_vaddububb_sat, 35975}, // __builtin_HEXAGON_V6_vaddububb_sat
{Intrinsic::hexagon_V6_vaddububb_sat_128B, 36010}, // __builtin_HEXAGON_V6_vaddububb_sat_128B
{Intrinsic::hexagon_V6_vadduhsat, 36050}, // __builtin_HEXAGON_V6_vadduhsat
{Intrinsic::hexagon_V6_vadduhsat_128B, 36081}, // __builtin_HEXAGON_V6_vadduhsat_128B
{Intrinsic::hexagon_V6_vadduhsat_dv, 36117}, // __builtin_HEXAGON_V6_vadduhsat_dv
{Intrinsic::hexagon_V6_vadduhsat_dv_128B, 36151}, // __builtin_HEXAGON_V6_vadduhsat_dv_128B
{Intrinsic::hexagon_V6_vadduhw, 36190}, // __builtin_HEXAGON_V6_vadduhw
{Intrinsic::hexagon_V6_vadduhw_128B, 36219}, // __builtin_HEXAGON_V6_vadduhw_128B
{Intrinsic::hexagon_V6_vadduhw_acc, 36253}, // __builtin_HEXAGON_V6_vadduhw_acc
{Intrinsic::hexagon_V6_vadduhw_acc_128B, 36286}, // __builtin_HEXAGON_V6_vadduhw_acc_128B
{Intrinsic::hexagon_V6_vadduwsat, 36324}, // __builtin_HEXAGON_V6_vadduwsat
{Intrinsic::hexagon_V6_vadduwsat_128B, 36355}, // __builtin_HEXAGON_V6_vadduwsat_128B
{Intrinsic::hexagon_V6_vadduwsat_dv, 36391}, // __builtin_HEXAGON_V6_vadduwsat_dv
{Intrinsic::hexagon_V6_vadduwsat_dv_128B, 36425}, // __builtin_HEXAGON_V6_vadduwsat_dv_128B
{Intrinsic::hexagon_V6_vaddw, 36464}, // __builtin_HEXAGON_V6_vaddw
{Intrinsic::hexagon_V6_vaddw_128B, 36491}, // __builtin_HEXAGON_V6_vaddw_128B
{Intrinsic::hexagon_V6_vaddw_dv, 36523}, // __builtin_HEXAGON_V6_vaddw_dv
{Intrinsic::hexagon_V6_vaddw_dv_128B, 36553}, // __builtin_HEXAGON_V6_vaddw_dv_128B
{Intrinsic::hexagon_V6_vaddwsat, 36588}, // __builtin_HEXAGON_V6_vaddwsat
{Intrinsic::hexagon_V6_vaddwsat_128B, 36618}, // __builtin_HEXAGON_V6_vaddwsat_128B
{Intrinsic::hexagon_V6_vaddwsat_dv, 36653}, // __builtin_HEXAGON_V6_vaddwsat_dv
{Intrinsic::hexagon_V6_vaddwsat_dv_128B, 36686}, // __builtin_HEXAGON_V6_vaddwsat_dv_128B
{Intrinsic::hexagon_V6_valignb, 36724}, // __builtin_HEXAGON_V6_valignb
{Intrinsic::hexagon_V6_valignb_128B, 36753}, // __builtin_HEXAGON_V6_valignb_128B
{Intrinsic::hexagon_V6_valignbi, 36787}, // __builtin_HEXAGON_V6_valignbi
{Intrinsic::hexagon_V6_valignbi_128B, 36817}, // __builtin_HEXAGON_V6_valignbi_128B
{Intrinsic::hexagon_V6_vand, 36852}, // __builtin_HEXAGON_V6_vand
{Intrinsic::hexagon_V6_vand_128B, 36878}, // __builtin_HEXAGON_V6_vand_128B
{Intrinsic::hexagon_V6_vaslh, 36909}, // __builtin_HEXAGON_V6_vaslh
{Intrinsic::hexagon_V6_vaslh_128B, 36936}, // __builtin_HEXAGON_V6_vaslh_128B
{Intrinsic::hexagon_V6_vaslh_acc, 36968}, // __builtin_HEXAGON_V6_vaslh_acc
{Intrinsic::hexagon_V6_vaslh_acc_128B, 36999}, // __builtin_HEXAGON_V6_vaslh_acc_128B
{Intrinsic::hexagon_V6_vaslhv, 37035}, // __builtin_HEXAGON_V6_vaslhv
{Intrinsic::hexagon_V6_vaslhv_128B, 37063}, // __builtin_HEXAGON_V6_vaslhv_128B
{Intrinsic::hexagon_V6_vaslw, 37096}, // __builtin_HEXAGON_V6_vaslw
{Intrinsic::hexagon_V6_vaslw_128B, 37123}, // __builtin_HEXAGON_V6_vaslw_128B
{Intrinsic::hexagon_V6_vaslw_acc, 37155}, // __builtin_HEXAGON_V6_vaslw_acc
{Intrinsic::hexagon_V6_vaslw_acc_128B, 37186}, // __builtin_HEXAGON_V6_vaslw_acc_128B
{Intrinsic::hexagon_V6_vaslwv, 37222}, // __builtin_HEXAGON_V6_vaslwv
{Intrinsic::hexagon_V6_vaslwv_128B, 37250}, // __builtin_HEXAGON_V6_vaslwv_128B
{Intrinsic::hexagon_V6_vasr_into, 37283}, // __builtin_HEXAGON_V6_vasr_into
{Intrinsic::hexagon_V6_vasr_into_128B, 37314}, // __builtin_HEXAGON_V6_vasr_into_128B
{Intrinsic::hexagon_V6_vasrh, 37350}, // __builtin_HEXAGON_V6_vasrh
{Intrinsic::hexagon_V6_vasrh_128B, 37377}, // __builtin_HEXAGON_V6_vasrh_128B
{Intrinsic::hexagon_V6_vasrh_acc, 37409}, // __builtin_HEXAGON_V6_vasrh_acc
{Intrinsic::hexagon_V6_vasrh_acc_128B, 37440}, // __builtin_HEXAGON_V6_vasrh_acc_128B
{Intrinsic::hexagon_V6_vasrhbrndsat, 37476}, // __builtin_HEXAGON_V6_vasrhbrndsat
{Intrinsic::hexagon_V6_vasrhbrndsat_128B, 37510}, // __builtin_HEXAGON_V6_vasrhbrndsat_128B
{Intrinsic::hexagon_V6_vasrhbsat, 37549}, // __builtin_HEXAGON_V6_vasrhbsat
{Intrinsic::hexagon_V6_vasrhbsat_128B, 37580}, // __builtin_HEXAGON_V6_vasrhbsat_128B
{Intrinsic::hexagon_V6_vasrhubrndsat, 37616}, // __builtin_HEXAGON_V6_vasrhubrndsat
{Intrinsic::hexagon_V6_vasrhubrndsat_128B, 37651}, // __builtin_HEXAGON_V6_vasrhubrndsat_128B
{Intrinsic::hexagon_V6_vasrhubsat, 37691}, // __builtin_HEXAGON_V6_vasrhubsat
{Intrinsic::hexagon_V6_vasrhubsat_128B, 37723}, // __builtin_HEXAGON_V6_vasrhubsat_128B
{Intrinsic::hexagon_V6_vasrhv, 37760}, // __builtin_HEXAGON_V6_vasrhv
{Intrinsic::hexagon_V6_vasrhv_128B, 37788}, // __builtin_HEXAGON_V6_vasrhv_128B
{Intrinsic::hexagon_V6_vasruhubrndsat, 37821}, // __builtin_HEXAGON_V6_vasruhubrndsat
{Intrinsic::hexagon_V6_vasruhubrndsat_128B, 37857}, // __builtin_HEXAGON_V6_vasruhubrndsat_128B
{Intrinsic::hexagon_V6_vasruhubsat, 37898}, // __builtin_HEXAGON_V6_vasruhubsat
{Intrinsic::hexagon_V6_vasruhubsat_128B, 37931}, // __builtin_HEXAGON_V6_vasruhubsat_128B
{Intrinsic::hexagon_V6_vasruwuhrndsat, 37969}, // __builtin_HEXAGON_V6_vasruwuhrndsat
{Intrinsic::hexagon_V6_vasruwuhrndsat_128B, 38005}, // __builtin_HEXAGON_V6_vasruwuhrndsat_128B
{Intrinsic::hexagon_V6_vasruwuhsat, 38046}, // __builtin_HEXAGON_V6_vasruwuhsat
{Intrinsic::hexagon_V6_vasruwuhsat_128B, 38079}, // __builtin_HEXAGON_V6_vasruwuhsat_128B
{Intrinsic::hexagon_V6_vasrw, 38117}, // __builtin_HEXAGON_V6_vasrw
{Intrinsic::hexagon_V6_vasrw_128B, 38144}, // __builtin_HEXAGON_V6_vasrw_128B
{Intrinsic::hexagon_V6_vasrw_acc, 38176}, // __builtin_HEXAGON_V6_vasrw_acc
{Intrinsic::hexagon_V6_vasrw_acc_128B, 38207}, // __builtin_HEXAGON_V6_vasrw_acc_128B
{Intrinsic::hexagon_V6_vasrwh, 38243}, // __builtin_HEXAGON_V6_vasrwh
{Intrinsic::hexagon_V6_vasrwh_128B, 38271}, // __builtin_HEXAGON_V6_vasrwh_128B
{Intrinsic::hexagon_V6_vasrwhrndsat, 38304}, // __builtin_HEXAGON_V6_vasrwhrndsat
{Intrinsic::hexagon_V6_vasrwhrndsat_128B, 38338}, // __builtin_HEXAGON_V6_vasrwhrndsat_128B
{Intrinsic::hexagon_V6_vasrwhsat, 38377}, // __builtin_HEXAGON_V6_vasrwhsat
{Intrinsic::hexagon_V6_vasrwhsat_128B, 38408}, // __builtin_HEXAGON_V6_vasrwhsat_128B
{Intrinsic::hexagon_V6_vasrwuhrndsat, 38444}, // __builtin_HEXAGON_V6_vasrwuhrndsat
{Intrinsic::hexagon_V6_vasrwuhrndsat_128B, 38479}, // __builtin_HEXAGON_V6_vasrwuhrndsat_128B
{Intrinsic::hexagon_V6_vasrwuhsat, 38519}, // __builtin_HEXAGON_V6_vasrwuhsat
{Intrinsic::hexagon_V6_vasrwuhsat_128B, 38551}, // __builtin_HEXAGON_V6_vasrwuhsat_128B
{Intrinsic::hexagon_V6_vasrwv, 38588}, // __builtin_HEXAGON_V6_vasrwv
{Intrinsic::hexagon_V6_vasrwv_128B, 38616}, // __builtin_HEXAGON_V6_vasrwv_128B
{Intrinsic::hexagon_V6_vassign, 38649}, // __builtin_HEXAGON_V6_vassign
{Intrinsic::hexagon_V6_vassign_128B, 38678}, // __builtin_HEXAGON_V6_vassign_128B
{Intrinsic::hexagon_V6_vassignp, 38712}, // __builtin_HEXAGON_V6_vassignp
{Intrinsic::hexagon_V6_vassignp_128B, 38742}, // __builtin_HEXAGON_V6_vassignp_128B
{Intrinsic::hexagon_V6_vavgb, 38777}, // __builtin_HEXAGON_V6_vavgb
{Intrinsic::hexagon_V6_vavgb_128B, 38804}, // __builtin_HEXAGON_V6_vavgb_128B
{Intrinsic::hexagon_V6_vavgbrnd, 38836}, // __builtin_HEXAGON_V6_vavgbrnd
{Intrinsic::hexagon_V6_vavgbrnd_128B, 38866}, // __builtin_HEXAGON_V6_vavgbrnd_128B
{Intrinsic::hexagon_V6_vavgh, 38901}, // __builtin_HEXAGON_V6_vavgh
{Intrinsic::hexagon_V6_vavgh_128B, 38928}, // __builtin_HEXAGON_V6_vavgh_128B
{Intrinsic::hexagon_V6_vavghrnd, 38960}, // __builtin_HEXAGON_V6_vavghrnd
{Intrinsic::hexagon_V6_vavghrnd_128B, 38990}, // __builtin_HEXAGON_V6_vavghrnd_128B
{Intrinsic::hexagon_V6_vavgub, 39025}, // __builtin_HEXAGON_V6_vavgub
{Intrinsic::hexagon_V6_vavgub_128B, 39053}, // __builtin_HEXAGON_V6_vavgub_128B
{Intrinsic::hexagon_V6_vavgubrnd, 39086}, // __builtin_HEXAGON_V6_vavgubrnd
{Intrinsic::hexagon_V6_vavgubrnd_128B, 39117}, // __builtin_HEXAGON_V6_vavgubrnd_128B
{Intrinsic::hexagon_V6_vavguh, 39153}, // __builtin_HEXAGON_V6_vavguh
{Intrinsic::hexagon_V6_vavguh_128B, 39181}, // __builtin_HEXAGON_V6_vavguh_128B
{Intrinsic::hexagon_V6_vavguhrnd, 39214}, // __builtin_HEXAGON_V6_vavguhrnd
{Intrinsic::hexagon_V6_vavguhrnd_128B, 39245}, // __builtin_HEXAGON_V6_vavguhrnd_128B
{Intrinsic::hexagon_V6_vavguw, 39281}, // __builtin_HEXAGON_V6_vavguw
{Intrinsic::hexagon_V6_vavguw_128B, 39309}, // __builtin_HEXAGON_V6_vavguw_128B
{Intrinsic::hexagon_V6_vavguwrnd, 39342}, // __builtin_HEXAGON_V6_vavguwrnd
{Intrinsic::hexagon_V6_vavguwrnd_128B, 39373}, // __builtin_HEXAGON_V6_vavguwrnd_128B
{Intrinsic::hexagon_V6_vavgw, 39409}, // __builtin_HEXAGON_V6_vavgw
{Intrinsic::hexagon_V6_vavgw_128B, 39436}, // __builtin_HEXAGON_V6_vavgw_128B
{Intrinsic::hexagon_V6_vavgwrnd, 39468}, // __builtin_HEXAGON_V6_vavgwrnd
{Intrinsic::hexagon_V6_vavgwrnd_128B, 39498}, // __builtin_HEXAGON_V6_vavgwrnd_128B
{Intrinsic::hexagon_V6_vcl0h, 39533}, // __builtin_HEXAGON_V6_vcl0h
{Intrinsic::hexagon_V6_vcl0h_128B, 39560}, // __builtin_HEXAGON_V6_vcl0h_128B
{Intrinsic::hexagon_V6_vcl0w, 39592}, // __builtin_HEXAGON_V6_vcl0w
{Intrinsic::hexagon_V6_vcl0w_128B, 39619}, // __builtin_HEXAGON_V6_vcl0w_128B
{Intrinsic::hexagon_V6_vcombine, 39651}, // __builtin_HEXAGON_V6_vcombine
{Intrinsic::hexagon_V6_vcombine_128B, 39681}, // __builtin_HEXAGON_V6_vcombine_128B
{Intrinsic::hexagon_V6_vd0, 39716}, // __builtin_HEXAGON_V6_vd0
{Intrinsic::hexagon_V6_vd0_128B, 39741}, // __builtin_HEXAGON_V6_vd0_128B
{Intrinsic::hexagon_V6_vdd0, 39771}, // __builtin_HEXAGON_V6_vdd0
{Intrinsic::hexagon_V6_vdd0_128B, 39797}, // __builtin_HEXAGON_V6_vdd0_128B
{Intrinsic::hexagon_V6_vdealb, 39828}, // __builtin_HEXAGON_V6_vdealb
{Intrinsic::hexagon_V6_vdealb4w, 39889}, // __builtin_HEXAGON_V6_vdealb4w
{Intrinsic::hexagon_V6_vdealb4w_128B, 39919}, // __builtin_HEXAGON_V6_vdealb4w_128B
{Intrinsic::hexagon_V6_vdealb_128B, 39856}, // __builtin_HEXAGON_V6_vdealb_128B
{Intrinsic::hexagon_V6_vdealh, 39954}, // __builtin_HEXAGON_V6_vdealh
{Intrinsic::hexagon_V6_vdealh_128B, 39982}, // __builtin_HEXAGON_V6_vdealh_128B
{Intrinsic::hexagon_V6_vdealvdd, 40015}, // __builtin_HEXAGON_V6_vdealvdd
{Intrinsic::hexagon_V6_vdealvdd_128B, 40045}, // __builtin_HEXAGON_V6_vdealvdd_128B
{Intrinsic::hexagon_V6_vdelta, 40080}, // __builtin_HEXAGON_V6_vdelta
{Intrinsic::hexagon_V6_vdelta_128B, 40108}, // __builtin_HEXAGON_V6_vdelta_128B
{Intrinsic::hexagon_V6_vdmpybus, 40141}, // __builtin_HEXAGON_V6_vdmpybus
{Intrinsic::hexagon_V6_vdmpybus_128B, 40171}, // __builtin_HEXAGON_V6_vdmpybus_128B
{Intrinsic::hexagon_V6_vdmpybus_acc, 40206}, // __builtin_HEXAGON_V6_vdmpybus_acc
{Intrinsic::hexagon_V6_vdmpybus_acc_128B, 40240}, // __builtin_HEXAGON_V6_vdmpybus_acc_128B
{Intrinsic::hexagon_V6_vdmpybus_dv, 40279}, // __builtin_HEXAGON_V6_vdmpybus_dv
{Intrinsic::hexagon_V6_vdmpybus_dv_128B, 40312}, // __builtin_HEXAGON_V6_vdmpybus_dv_128B
{Intrinsic::hexagon_V6_vdmpybus_dv_acc, 40350}, // __builtin_HEXAGON_V6_vdmpybus_dv_acc
{Intrinsic::hexagon_V6_vdmpybus_dv_acc_128B, 40387}, // __builtin_HEXAGON_V6_vdmpybus_dv_acc_128B
{Intrinsic::hexagon_V6_vdmpyhb, 40429}, // __builtin_HEXAGON_V6_vdmpyhb
{Intrinsic::hexagon_V6_vdmpyhb_128B, 40458}, // __builtin_HEXAGON_V6_vdmpyhb_128B
{Intrinsic::hexagon_V6_vdmpyhb_acc, 40492}, // __builtin_HEXAGON_V6_vdmpyhb_acc
{Intrinsic::hexagon_V6_vdmpyhb_acc_128B, 40525}, // __builtin_HEXAGON_V6_vdmpyhb_acc_128B
{Intrinsic::hexagon_V6_vdmpyhb_dv, 40563}, // __builtin_HEXAGON_V6_vdmpyhb_dv
{Intrinsic::hexagon_V6_vdmpyhb_dv_128B, 40595}, // __builtin_HEXAGON_V6_vdmpyhb_dv_128B
{Intrinsic::hexagon_V6_vdmpyhb_dv_acc, 40632}, // __builtin_HEXAGON_V6_vdmpyhb_dv_acc
{Intrinsic::hexagon_V6_vdmpyhb_dv_acc_128B, 40668}, // __builtin_HEXAGON_V6_vdmpyhb_dv_acc_128B
{Intrinsic::hexagon_V6_vdmpyhisat, 40709}, // __builtin_HEXAGON_V6_vdmpyhisat
{Intrinsic::hexagon_V6_vdmpyhisat_128B, 40741}, // __builtin_HEXAGON_V6_vdmpyhisat_128B
{Intrinsic::hexagon_V6_vdmpyhisat_acc, 40778}, // __builtin_HEXAGON_V6_vdmpyhisat_acc
{Intrinsic::hexagon_V6_vdmpyhisat_acc_128B, 40814}, // __builtin_HEXAGON_V6_vdmpyhisat_acc_128B
{Intrinsic::hexagon_V6_vdmpyhsat, 40855}, // __builtin_HEXAGON_V6_vdmpyhsat
{Intrinsic::hexagon_V6_vdmpyhsat_128B, 40886}, // __builtin_HEXAGON_V6_vdmpyhsat_128B
{Intrinsic::hexagon_V6_vdmpyhsat_acc, 40922}, // __builtin_HEXAGON_V6_vdmpyhsat_acc
{Intrinsic::hexagon_V6_vdmpyhsat_acc_128B, 40957}, // __builtin_HEXAGON_V6_vdmpyhsat_acc_128B
{Intrinsic::hexagon_V6_vdmpyhsuisat, 40997}, // __builtin_HEXAGON_V6_vdmpyhsuisat
{Intrinsic::hexagon_V6_vdmpyhsuisat_128B, 41031}, // __builtin_HEXAGON_V6_vdmpyhsuisat_128B
{Intrinsic::hexagon_V6_vdmpyhsuisat_acc, 41070}, // __builtin_HEXAGON_V6_vdmpyhsuisat_acc
{Intrinsic::hexagon_V6_vdmpyhsuisat_acc_128B, 41108}, // __builtin_HEXAGON_V6_vdmpyhsuisat_acc_128B
{Intrinsic::hexagon_V6_vdmpyhsusat, 41151}, // __builtin_HEXAGON_V6_vdmpyhsusat
{Intrinsic::hexagon_V6_vdmpyhsusat_128B, 41184}, // __builtin_HEXAGON_V6_vdmpyhsusat_128B
{Intrinsic::hexagon_V6_vdmpyhsusat_acc, 41222}, // __builtin_HEXAGON_V6_vdmpyhsusat_acc
{Intrinsic::hexagon_V6_vdmpyhsusat_acc_128B, 41259}, // __builtin_HEXAGON_V6_vdmpyhsusat_acc_128B
{Intrinsic::hexagon_V6_vdmpyhvsat, 41301}, // __builtin_HEXAGON_V6_vdmpyhvsat
{Intrinsic::hexagon_V6_vdmpyhvsat_128B, 41333}, // __builtin_HEXAGON_V6_vdmpyhvsat_128B
{Intrinsic::hexagon_V6_vdmpyhvsat_acc, 41370}, // __builtin_HEXAGON_V6_vdmpyhvsat_acc
{Intrinsic::hexagon_V6_vdmpyhvsat_acc_128B, 41406}, // __builtin_HEXAGON_V6_vdmpyhvsat_acc_128B
{Intrinsic::hexagon_V6_vdsaduh, 41447}, // __builtin_HEXAGON_V6_vdsaduh
{Intrinsic::hexagon_V6_vdsaduh_128B, 41476}, // __builtin_HEXAGON_V6_vdsaduh_128B
{Intrinsic::hexagon_V6_vdsaduh_acc, 41510}, // __builtin_HEXAGON_V6_vdsaduh_acc
{Intrinsic::hexagon_V6_vdsaduh_acc_128B, 41543}, // __builtin_HEXAGON_V6_vdsaduh_acc_128B
{Intrinsic::hexagon_V6_vgathermh, 41581}, // __builtin_HEXAGON_V6_vgathermh
{Intrinsic::hexagon_V6_vgathermh_128B, 41612}, // __builtin_HEXAGON_V6_vgathermh_128B
{Intrinsic::hexagon_V6_vgathermhw, 41648}, // __builtin_HEXAGON_V6_vgathermhw
{Intrinsic::hexagon_V6_vgathermhw_128B, 41680}, // __builtin_HEXAGON_V6_vgathermhw_128B
{Intrinsic::hexagon_V6_vgathermw, 41717}, // __builtin_HEXAGON_V6_vgathermw
{Intrinsic::hexagon_V6_vgathermw_128B, 41748}, // __builtin_HEXAGON_V6_vgathermw_128B
{Intrinsic::hexagon_V6_vinsertwr, 41784}, // __builtin_HEXAGON_V6_vinsertwr
{Intrinsic::hexagon_V6_vinsertwr_128B, 41815}, // __builtin_HEXAGON_V6_vinsertwr_128B
{Intrinsic::hexagon_V6_vlalignb, 41851}, // __builtin_HEXAGON_V6_vlalignb
{Intrinsic::hexagon_V6_vlalignb_128B, 41881}, // __builtin_HEXAGON_V6_vlalignb_128B
{Intrinsic::hexagon_V6_vlalignbi, 41916}, // __builtin_HEXAGON_V6_vlalignbi
{Intrinsic::hexagon_V6_vlalignbi_128B, 41947}, // __builtin_HEXAGON_V6_vlalignbi_128B
{Intrinsic::hexagon_V6_vlsrb, 41983}, // __builtin_HEXAGON_V6_vlsrb
{Intrinsic::hexagon_V6_vlsrb_128B, 42010}, // __builtin_HEXAGON_V6_vlsrb_128B
{Intrinsic::hexagon_V6_vlsrh, 42042}, // __builtin_HEXAGON_V6_vlsrh
{Intrinsic::hexagon_V6_vlsrh_128B, 42069}, // __builtin_HEXAGON_V6_vlsrh_128B
{Intrinsic::hexagon_V6_vlsrhv, 42101}, // __builtin_HEXAGON_V6_vlsrhv
{Intrinsic::hexagon_V6_vlsrhv_128B, 42129}, // __builtin_HEXAGON_V6_vlsrhv_128B
{Intrinsic::hexagon_V6_vlsrw, 42162}, // __builtin_HEXAGON_V6_vlsrw
{Intrinsic::hexagon_V6_vlsrw_128B, 42189}, // __builtin_HEXAGON_V6_vlsrw_128B
{Intrinsic::hexagon_V6_vlsrwv, 42221}, // __builtin_HEXAGON_V6_vlsrwv
{Intrinsic::hexagon_V6_vlsrwv_128B, 42249}, // __builtin_HEXAGON_V6_vlsrwv_128B
{Intrinsic::hexagon_V6_vlut4, 42282}, // __builtin_HEXAGON_V6_vlut4
{Intrinsic::hexagon_V6_vlut4_128B, 42309}, // __builtin_HEXAGON_V6_vlut4_128B
{Intrinsic::hexagon_V6_vlutvvb, 42341}, // __builtin_HEXAGON_V6_vlutvvb
{Intrinsic::hexagon_V6_vlutvvb_128B, 42370}, // __builtin_HEXAGON_V6_vlutvvb_128B
{Intrinsic::hexagon_V6_vlutvvb_nm, 42404}, // __builtin_HEXAGON_V6_vlutvvb_nm
{Intrinsic::hexagon_V6_vlutvvb_nm_128B, 42436}, // __builtin_HEXAGON_V6_vlutvvb_nm_128B
{Intrinsic::hexagon_V6_vlutvvb_oracc, 42473}, // __builtin_HEXAGON_V6_vlutvvb_oracc
{Intrinsic::hexagon_V6_vlutvvb_oracc_128B, 42508}, // __builtin_HEXAGON_V6_vlutvvb_oracc_128B
{Intrinsic::hexagon_V6_vlutvvb_oracci, 42548}, // __builtin_HEXAGON_V6_vlutvvb_oracci
{Intrinsic::hexagon_V6_vlutvvb_oracci_128B, 42584}, // __builtin_HEXAGON_V6_vlutvvb_oracci_128B
{Intrinsic::hexagon_V6_vlutvvbi, 42625}, // __builtin_HEXAGON_V6_vlutvvbi
{Intrinsic::hexagon_V6_vlutvvbi_128B, 42655}, // __builtin_HEXAGON_V6_vlutvvbi_128B
{Intrinsic::hexagon_V6_vlutvwh, 42690}, // __builtin_HEXAGON_V6_vlutvwh
{Intrinsic::hexagon_V6_vlutvwh_128B, 42719}, // __builtin_HEXAGON_V6_vlutvwh_128B
{Intrinsic::hexagon_V6_vlutvwh_nm, 42753}, // __builtin_HEXAGON_V6_vlutvwh_nm
{Intrinsic::hexagon_V6_vlutvwh_nm_128B, 42785}, // __builtin_HEXAGON_V6_vlutvwh_nm_128B
{Intrinsic::hexagon_V6_vlutvwh_oracc, 42822}, // __builtin_HEXAGON_V6_vlutvwh_oracc
{Intrinsic::hexagon_V6_vlutvwh_oracc_128B, 42857}, // __builtin_HEXAGON_V6_vlutvwh_oracc_128B
{Intrinsic::hexagon_V6_vlutvwh_oracci, 42897}, // __builtin_HEXAGON_V6_vlutvwh_oracci
{Intrinsic::hexagon_V6_vlutvwh_oracci_128B, 42933}, // __builtin_HEXAGON_V6_vlutvwh_oracci_128B
{Intrinsic::hexagon_V6_vlutvwhi, 42974}, // __builtin_HEXAGON_V6_vlutvwhi
{Intrinsic::hexagon_V6_vlutvwhi_128B, 43004}, // __builtin_HEXAGON_V6_vlutvwhi_128B
{Intrinsic::hexagon_V6_vmaxb, 43039}, // __builtin_HEXAGON_V6_vmaxb
{Intrinsic::hexagon_V6_vmaxb_128B, 43066}, // __builtin_HEXAGON_V6_vmaxb_128B
{Intrinsic::hexagon_V6_vmaxh, 43098}, // __builtin_HEXAGON_V6_vmaxh
{Intrinsic::hexagon_V6_vmaxh_128B, 43125}, // __builtin_HEXAGON_V6_vmaxh_128B
{Intrinsic::hexagon_V6_vmaxub, 43157}, // __builtin_HEXAGON_V6_vmaxub
{Intrinsic::hexagon_V6_vmaxub_128B, 43185}, // __builtin_HEXAGON_V6_vmaxub_128B
{Intrinsic::hexagon_V6_vmaxuh, 43218}, // __builtin_HEXAGON_V6_vmaxuh
{Intrinsic::hexagon_V6_vmaxuh_128B, 43246}, // __builtin_HEXAGON_V6_vmaxuh_128B
{Intrinsic::hexagon_V6_vmaxw, 43279}, // __builtin_HEXAGON_V6_vmaxw
{Intrinsic::hexagon_V6_vmaxw_128B, 43306}, // __builtin_HEXAGON_V6_vmaxw_128B
{Intrinsic::hexagon_V6_vminb, 43338}, // __builtin_HEXAGON_V6_vminb
{Intrinsic::hexagon_V6_vminb_128B, 43365}, // __builtin_HEXAGON_V6_vminb_128B
{Intrinsic::hexagon_V6_vminh, 43397}, // __builtin_HEXAGON_V6_vminh
{Intrinsic::hexagon_V6_vminh_128B, 43424}, // __builtin_HEXAGON_V6_vminh_128B
{Intrinsic::hexagon_V6_vminub, 43456}, // __builtin_HEXAGON_V6_vminub
{Intrinsic::hexagon_V6_vminub_128B, 43484}, // __builtin_HEXAGON_V6_vminub_128B
{Intrinsic::hexagon_V6_vminuh, 43517}, // __builtin_HEXAGON_V6_vminuh
{Intrinsic::hexagon_V6_vminuh_128B, 43545}, // __builtin_HEXAGON_V6_vminuh_128B
{Intrinsic::hexagon_V6_vminw, 43578}, // __builtin_HEXAGON_V6_vminw
{Intrinsic::hexagon_V6_vminw_128B, 43605}, // __builtin_HEXAGON_V6_vminw_128B
{Intrinsic::hexagon_V6_vmpabus, 43637}, // __builtin_HEXAGON_V6_vmpabus
{Intrinsic::hexagon_V6_vmpabus_128B, 43666}, // __builtin_HEXAGON_V6_vmpabus_128B
{Intrinsic::hexagon_V6_vmpabus_acc, 43700}, // __builtin_HEXAGON_V6_vmpabus_acc
{Intrinsic::hexagon_V6_vmpabus_acc_128B, 43733}, // __builtin_HEXAGON_V6_vmpabus_acc_128B
{Intrinsic::hexagon_V6_vmpabusv, 43771}, // __builtin_HEXAGON_V6_vmpabusv
{Intrinsic::hexagon_V6_vmpabusv_128B, 43801}, // __builtin_HEXAGON_V6_vmpabusv_128B
{Intrinsic::hexagon_V6_vmpabuu, 43836}, // __builtin_HEXAGON_V6_vmpabuu
{Intrinsic::hexagon_V6_vmpabuu_128B, 43865}, // __builtin_HEXAGON_V6_vmpabuu_128B
{Intrinsic::hexagon_V6_vmpabuu_acc, 43899}, // __builtin_HEXAGON_V6_vmpabuu_acc
{Intrinsic::hexagon_V6_vmpabuu_acc_128B, 43932}, // __builtin_HEXAGON_V6_vmpabuu_acc_128B
{Intrinsic::hexagon_V6_vmpabuuv, 43970}, // __builtin_HEXAGON_V6_vmpabuuv
{Intrinsic::hexagon_V6_vmpabuuv_128B, 44000}, // __builtin_HEXAGON_V6_vmpabuuv_128B
{Intrinsic::hexagon_V6_vmpahb, 44035}, // __builtin_HEXAGON_V6_vmpahb
{Intrinsic::hexagon_V6_vmpahb_128B, 44063}, // __builtin_HEXAGON_V6_vmpahb_128B
{Intrinsic::hexagon_V6_vmpahb_acc, 44096}, // __builtin_HEXAGON_V6_vmpahb_acc
{Intrinsic::hexagon_V6_vmpahb_acc_128B, 44128}, // __builtin_HEXAGON_V6_vmpahb_acc_128B
{Intrinsic::hexagon_V6_vmpahhsat, 44165}, // __builtin_HEXAGON_V6_vmpahhsat
{Intrinsic::hexagon_V6_vmpahhsat_128B, 44196}, // __builtin_HEXAGON_V6_vmpahhsat_128B
{Intrinsic::hexagon_V6_vmpauhb, 44232}, // __builtin_HEXAGON_V6_vmpauhb
{Intrinsic::hexagon_V6_vmpauhb_128B, 44261}, // __builtin_HEXAGON_V6_vmpauhb_128B
{Intrinsic::hexagon_V6_vmpauhb_acc, 44295}, // __builtin_HEXAGON_V6_vmpauhb_acc
{Intrinsic::hexagon_V6_vmpauhb_acc_128B, 44328}, // __builtin_HEXAGON_V6_vmpauhb_acc_128B
{Intrinsic::hexagon_V6_vmpauhuhsat, 44366}, // __builtin_HEXAGON_V6_vmpauhuhsat
{Intrinsic::hexagon_V6_vmpauhuhsat_128B, 44399}, // __builtin_HEXAGON_V6_vmpauhuhsat_128B
{Intrinsic::hexagon_V6_vmpsuhuhsat, 44437}, // __builtin_HEXAGON_V6_vmpsuhuhsat
{Intrinsic::hexagon_V6_vmpsuhuhsat_128B, 44470}, // __builtin_HEXAGON_V6_vmpsuhuhsat_128B
{Intrinsic::hexagon_V6_vmpybus, 44508}, // __builtin_HEXAGON_V6_vmpybus
{Intrinsic::hexagon_V6_vmpybus_128B, 44537}, // __builtin_HEXAGON_V6_vmpybus_128B
{Intrinsic::hexagon_V6_vmpybus_acc, 44571}, // __builtin_HEXAGON_V6_vmpybus_acc
{Intrinsic::hexagon_V6_vmpybus_acc_128B, 44604}, // __builtin_HEXAGON_V6_vmpybus_acc_128B
{Intrinsic::hexagon_V6_vmpybusv, 44642}, // __builtin_HEXAGON_V6_vmpybusv
{Intrinsic::hexagon_V6_vmpybusv_128B, 44672}, // __builtin_HEXAGON_V6_vmpybusv_128B
{Intrinsic::hexagon_V6_vmpybusv_acc, 44707}, // __builtin_HEXAGON_V6_vmpybusv_acc
{Intrinsic::hexagon_V6_vmpybusv_acc_128B, 44741}, // __builtin_HEXAGON_V6_vmpybusv_acc_128B
{Intrinsic::hexagon_V6_vmpybv, 44780}, // __builtin_HEXAGON_V6_vmpybv
{Intrinsic::hexagon_V6_vmpybv_128B, 44808}, // __builtin_HEXAGON_V6_vmpybv_128B
{Intrinsic::hexagon_V6_vmpybv_acc, 44841}, // __builtin_HEXAGON_V6_vmpybv_acc
{Intrinsic::hexagon_V6_vmpybv_acc_128B, 44873}, // __builtin_HEXAGON_V6_vmpybv_acc_128B
{Intrinsic::hexagon_V6_vmpyewuh, 44910}, // __builtin_HEXAGON_V6_vmpyewuh
{Intrinsic::hexagon_V6_vmpyewuh_128B, 44940}, // __builtin_HEXAGON_V6_vmpyewuh_128B
{Intrinsic::hexagon_V6_vmpyewuh_64, 44975}, // __builtin_HEXAGON_V6_vmpyewuh_64
{Intrinsic::hexagon_V6_vmpyewuh_64_128B, 45008}, // __builtin_HEXAGON_V6_vmpyewuh_64_128B
{Intrinsic::hexagon_V6_vmpyh, 45046}, // __builtin_HEXAGON_V6_vmpyh
{Intrinsic::hexagon_V6_vmpyh_128B, 45073}, // __builtin_HEXAGON_V6_vmpyh_128B
{Intrinsic::hexagon_V6_vmpyh_acc, 45105}, // __builtin_HEXAGON_V6_vmpyh_acc
{Intrinsic::hexagon_V6_vmpyh_acc_128B, 45136}, // __builtin_HEXAGON_V6_vmpyh_acc_128B
{Intrinsic::hexagon_V6_vmpyhsat_acc, 45172}, // __builtin_HEXAGON_V6_vmpyhsat_acc
{Intrinsic::hexagon_V6_vmpyhsat_acc_128B, 45206}, // __builtin_HEXAGON_V6_vmpyhsat_acc_128B
{Intrinsic::hexagon_V6_vmpyhsrs, 45245}, // __builtin_HEXAGON_V6_vmpyhsrs
{Intrinsic::hexagon_V6_vmpyhsrs_128B, 45275}, // __builtin_HEXAGON_V6_vmpyhsrs_128B
{Intrinsic::hexagon_V6_vmpyhss, 45310}, // __builtin_HEXAGON_V6_vmpyhss
{Intrinsic::hexagon_V6_vmpyhss_128B, 45339}, // __builtin_HEXAGON_V6_vmpyhss_128B
{Intrinsic::hexagon_V6_vmpyhus, 45373}, // __builtin_HEXAGON_V6_vmpyhus
{Intrinsic::hexagon_V6_vmpyhus_128B, 45402}, // __builtin_HEXAGON_V6_vmpyhus_128B
{Intrinsic::hexagon_V6_vmpyhus_acc, 45436}, // __builtin_HEXAGON_V6_vmpyhus_acc
{Intrinsic::hexagon_V6_vmpyhus_acc_128B, 45469}, // __builtin_HEXAGON_V6_vmpyhus_acc_128B
{Intrinsic::hexagon_V6_vmpyhv, 45507}, // __builtin_HEXAGON_V6_vmpyhv
{Intrinsic::hexagon_V6_vmpyhv_128B, 45535}, // __builtin_HEXAGON_V6_vmpyhv_128B
{Intrinsic::hexagon_V6_vmpyhv_acc, 45568}, // __builtin_HEXAGON_V6_vmpyhv_acc
{Intrinsic::hexagon_V6_vmpyhv_acc_128B, 45600}, // __builtin_HEXAGON_V6_vmpyhv_acc_128B
{Intrinsic::hexagon_V6_vmpyhvsrs, 45637}, // __builtin_HEXAGON_V6_vmpyhvsrs
{Intrinsic::hexagon_V6_vmpyhvsrs_128B, 45668}, // __builtin_HEXAGON_V6_vmpyhvsrs_128B
{Intrinsic::hexagon_V6_vmpyieoh, 45704}, // __builtin_HEXAGON_V6_vmpyieoh
{Intrinsic::hexagon_V6_vmpyieoh_128B, 45734}, // __builtin_HEXAGON_V6_vmpyieoh_128B
{Intrinsic::hexagon_V6_vmpyiewh_acc, 45769}, // __builtin_HEXAGON_V6_vmpyiewh_acc
{Intrinsic::hexagon_V6_vmpyiewh_acc_128B, 45803}, // __builtin_HEXAGON_V6_vmpyiewh_acc_128B
{Intrinsic::hexagon_V6_vmpyiewuh, 45842}, // __builtin_HEXAGON_V6_vmpyiewuh
{Intrinsic::hexagon_V6_vmpyiewuh_128B, 45873}, // __builtin_HEXAGON_V6_vmpyiewuh_128B
{Intrinsic::hexagon_V6_vmpyiewuh_acc, 45909}, // __builtin_HEXAGON_V6_vmpyiewuh_acc
{Intrinsic::hexagon_V6_vmpyiewuh_acc_128B, 45944}, // __builtin_HEXAGON_V6_vmpyiewuh_acc_128B
{Intrinsic::hexagon_V6_vmpyih, 45984}, // __builtin_HEXAGON_V6_vmpyih
{Intrinsic::hexagon_V6_vmpyih_128B, 46012}, // __builtin_HEXAGON_V6_vmpyih_128B
{Intrinsic::hexagon_V6_vmpyih_acc, 46045}, // __builtin_HEXAGON_V6_vmpyih_acc
{Intrinsic::hexagon_V6_vmpyih_acc_128B, 46077}, // __builtin_HEXAGON_V6_vmpyih_acc_128B
{Intrinsic::hexagon_V6_vmpyihb, 46114}, // __builtin_HEXAGON_V6_vmpyihb
{Intrinsic::hexagon_V6_vmpyihb_128B, 46143}, // __builtin_HEXAGON_V6_vmpyihb_128B
{Intrinsic::hexagon_V6_vmpyihb_acc, 46177}, // __builtin_HEXAGON_V6_vmpyihb_acc
{Intrinsic::hexagon_V6_vmpyihb_acc_128B, 46210}, // __builtin_HEXAGON_V6_vmpyihb_acc_128B
{Intrinsic::hexagon_V6_vmpyiowh, 46248}, // __builtin_HEXAGON_V6_vmpyiowh
{Intrinsic::hexagon_V6_vmpyiowh_128B, 46278}, // __builtin_HEXAGON_V6_vmpyiowh_128B
{Intrinsic::hexagon_V6_vmpyiwb, 46313}, // __builtin_HEXAGON_V6_vmpyiwb
{Intrinsic::hexagon_V6_vmpyiwb_128B, 46342}, // __builtin_HEXAGON_V6_vmpyiwb_128B
{Intrinsic::hexagon_V6_vmpyiwb_acc, 46376}, // __builtin_HEXAGON_V6_vmpyiwb_acc
{Intrinsic::hexagon_V6_vmpyiwb_acc_128B, 46409}, // __builtin_HEXAGON_V6_vmpyiwb_acc_128B
{Intrinsic::hexagon_V6_vmpyiwh, 46447}, // __builtin_HEXAGON_V6_vmpyiwh
{Intrinsic::hexagon_V6_vmpyiwh_128B, 46476}, // __builtin_HEXAGON_V6_vmpyiwh_128B
{Intrinsic::hexagon_V6_vmpyiwh_acc, 46510}, // __builtin_HEXAGON_V6_vmpyiwh_acc
{Intrinsic::hexagon_V6_vmpyiwh_acc_128B, 46543}, // __builtin_HEXAGON_V6_vmpyiwh_acc_128B
{Intrinsic::hexagon_V6_vmpyiwub, 46581}, // __builtin_HEXAGON_V6_vmpyiwub
{Intrinsic::hexagon_V6_vmpyiwub_128B, 46611}, // __builtin_HEXAGON_V6_vmpyiwub_128B
{Intrinsic::hexagon_V6_vmpyiwub_acc, 46646}, // __builtin_HEXAGON_V6_vmpyiwub_acc
{Intrinsic::hexagon_V6_vmpyiwub_acc_128B, 46680}, // __builtin_HEXAGON_V6_vmpyiwub_acc_128B
{Intrinsic::hexagon_V6_vmpyowh, 46719}, // __builtin_HEXAGON_V6_vmpyowh
{Intrinsic::hexagon_V6_vmpyowh_128B, 46748}, // __builtin_HEXAGON_V6_vmpyowh_128B
{Intrinsic::hexagon_V6_vmpyowh_64_acc, 46782}, // __builtin_HEXAGON_V6_vmpyowh_64_acc
{Intrinsic::hexagon_V6_vmpyowh_64_acc_128B, 46818}, // __builtin_HEXAGON_V6_vmpyowh_64_acc_128B
{Intrinsic::hexagon_V6_vmpyowh_rnd, 46859}, // __builtin_HEXAGON_V6_vmpyowh_rnd
{Intrinsic::hexagon_V6_vmpyowh_rnd_128B, 46892}, // __builtin_HEXAGON_V6_vmpyowh_rnd_128B
{Intrinsic::hexagon_V6_vmpyowh_rnd_sacc, 46930}, // __builtin_HEXAGON_V6_vmpyowh_rnd_sacc
{Intrinsic::hexagon_V6_vmpyowh_rnd_sacc_128B, 46968}, // __builtin_HEXAGON_V6_vmpyowh_rnd_sacc_128B
{Intrinsic::hexagon_V6_vmpyowh_sacc, 47011}, // __builtin_HEXAGON_V6_vmpyowh_sacc
{Intrinsic::hexagon_V6_vmpyowh_sacc_128B, 47045}, // __builtin_HEXAGON_V6_vmpyowh_sacc_128B
{Intrinsic::hexagon_V6_vmpyub, 47084}, // __builtin_HEXAGON_V6_vmpyub
{Intrinsic::hexagon_V6_vmpyub_128B, 47112}, // __builtin_HEXAGON_V6_vmpyub_128B
{Intrinsic::hexagon_V6_vmpyub_acc, 47145}, // __builtin_HEXAGON_V6_vmpyub_acc
{Intrinsic::hexagon_V6_vmpyub_acc_128B, 47177}, // __builtin_HEXAGON_V6_vmpyub_acc_128B
{Intrinsic::hexagon_V6_vmpyubv, 47214}, // __builtin_HEXAGON_V6_vmpyubv
{Intrinsic::hexagon_V6_vmpyubv_128B, 47243}, // __builtin_HEXAGON_V6_vmpyubv_128B
{Intrinsic::hexagon_V6_vmpyubv_acc, 47277}, // __builtin_HEXAGON_V6_vmpyubv_acc
{Intrinsic::hexagon_V6_vmpyubv_acc_128B, 47310}, // __builtin_HEXAGON_V6_vmpyubv_acc_128B
{Intrinsic::hexagon_V6_vmpyuh, 47348}, // __builtin_HEXAGON_V6_vmpyuh
{Intrinsic::hexagon_V6_vmpyuh_128B, 47376}, // __builtin_HEXAGON_V6_vmpyuh_128B
{Intrinsic::hexagon_V6_vmpyuh_acc, 47409}, // __builtin_HEXAGON_V6_vmpyuh_acc
{Intrinsic::hexagon_V6_vmpyuh_acc_128B, 47441}, // __builtin_HEXAGON_V6_vmpyuh_acc_128B
{Intrinsic::hexagon_V6_vmpyuhe, 47478}, // __builtin_HEXAGON_V6_vmpyuhe
{Intrinsic::hexagon_V6_vmpyuhe_128B, 47507}, // __builtin_HEXAGON_V6_vmpyuhe_128B
{Intrinsic::hexagon_V6_vmpyuhe_acc, 47541}, // __builtin_HEXAGON_V6_vmpyuhe_acc
{Intrinsic::hexagon_V6_vmpyuhe_acc_128B, 47574}, // __builtin_HEXAGON_V6_vmpyuhe_acc_128B
{Intrinsic::hexagon_V6_vmpyuhv, 47612}, // __builtin_HEXAGON_V6_vmpyuhv
{Intrinsic::hexagon_V6_vmpyuhv_128B, 47641}, // __builtin_HEXAGON_V6_vmpyuhv_128B
{Intrinsic::hexagon_V6_vmpyuhv_acc, 47675}, // __builtin_HEXAGON_V6_vmpyuhv_acc
{Intrinsic::hexagon_V6_vmpyuhv_acc_128B, 47708}, // __builtin_HEXAGON_V6_vmpyuhv_acc_128B
{Intrinsic::hexagon_V6_vnavgb, 47746}, // __builtin_HEXAGON_V6_vnavgb
{Intrinsic::hexagon_V6_vnavgb_128B, 47774}, // __builtin_HEXAGON_V6_vnavgb_128B
{Intrinsic::hexagon_V6_vnavgh, 47807}, // __builtin_HEXAGON_V6_vnavgh
{Intrinsic::hexagon_V6_vnavgh_128B, 47835}, // __builtin_HEXAGON_V6_vnavgh_128B
{Intrinsic::hexagon_V6_vnavgub, 47868}, // __builtin_HEXAGON_V6_vnavgub
{Intrinsic::hexagon_V6_vnavgub_128B, 47897}, // __builtin_HEXAGON_V6_vnavgub_128B
{Intrinsic::hexagon_V6_vnavgw, 47931}, // __builtin_HEXAGON_V6_vnavgw
{Intrinsic::hexagon_V6_vnavgw_128B, 47959}, // __builtin_HEXAGON_V6_vnavgw_128B
{Intrinsic::hexagon_V6_vnormamth, 47992}, // __builtin_HEXAGON_V6_vnormamth
{Intrinsic::hexagon_V6_vnormamth_128B, 48023}, // __builtin_HEXAGON_V6_vnormamth_128B
{Intrinsic::hexagon_V6_vnormamtw, 48059}, // __builtin_HEXAGON_V6_vnormamtw
{Intrinsic::hexagon_V6_vnormamtw_128B, 48090}, // __builtin_HEXAGON_V6_vnormamtw_128B
{Intrinsic::hexagon_V6_vnot, 48126}, // __builtin_HEXAGON_V6_vnot
{Intrinsic::hexagon_V6_vnot_128B, 48152}, // __builtin_HEXAGON_V6_vnot_128B
{Intrinsic::hexagon_V6_vor, 48183}, // __builtin_HEXAGON_V6_vor
{Intrinsic::hexagon_V6_vor_128B, 48208}, // __builtin_HEXAGON_V6_vor_128B
{Intrinsic::hexagon_V6_vpackeb, 48238}, // __builtin_HEXAGON_V6_vpackeb
{Intrinsic::hexagon_V6_vpackeb_128B, 48267}, // __builtin_HEXAGON_V6_vpackeb_128B
{Intrinsic::hexagon_V6_vpackeh, 48301}, // __builtin_HEXAGON_V6_vpackeh
{Intrinsic::hexagon_V6_vpackeh_128B, 48330}, // __builtin_HEXAGON_V6_vpackeh_128B
{Intrinsic::hexagon_V6_vpackhb_sat, 48364}, // __builtin_HEXAGON_V6_vpackhb_sat
{Intrinsic::hexagon_V6_vpackhb_sat_128B, 48397}, // __builtin_HEXAGON_V6_vpackhb_sat_128B
{Intrinsic::hexagon_V6_vpackhub_sat, 48435}, // __builtin_HEXAGON_V6_vpackhub_sat
{Intrinsic::hexagon_V6_vpackhub_sat_128B, 48469}, // __builtin_HEXAGON_V6_vpackhub_sat_128B
{Intrinsic::hexagon_V6_vpackob, 48508}, // __builtin_HEXAGON_V6_vpackob
{Intrinsic::hexagon_V6_vpackob_128B, 48537}, // __builtin_HEXAGON_V6_vpackob_128B
{Intrinsic::hexagon_V6_vpackoh, 48571}, // __builtin_HEXAGON_V6_vpackoh
{Intrinsic::hexagon_V6_vpackoh_128B, 48600}, // __builtin_HEXAGON_V6_vpackoh_128B
{Intrinsic::hexagon_V6_vpackwh_sat, 48634}, // __builtin_HEXAGON_V6_vpackwh_sat
{Intrinsic::hexagon_V6_vpackwh_sat_128B, 48667}, // __builtin_HEXAGON_V6_vpackwh_sat_128B
{Intrinsic::hexagon_V6_vpackwuh_sat, 48705}, // __builtin_HEXAGON_V6_vpackwuh_sat
{Intrinsic::hexagon_V6_vpackwuh_sat_128B, 48739}, // __builtin_HEXAGON_V6_vpackwuh_sat_128B
{Intrinsic::hexagon_V6_vpopcounth, 48778}, // __builtin_HEXAGON_V6_vpopcounth
{Intrinsic::hexagon_V6_vpopcounth_128B, 48810}, // __builtin_HEXAGON_V6_vpopcounth_128B
{Intrinsic::hexagon_V6_vrdelta, 48847}, // __builtin_HEXAGON_V6_vrdelta
{Intrinsic::hexagon_V6_vrdelta_128B, 48876}, // __builtin_HEXAGON_V6_vrdelta_128B
{Intrinsic::hexagon_V6_vrmpybub_rtt, 48910}, // __builtin_HEXAGON_V6_vrmpybub_rtt
{Intrinsic::hexagon_V6_vrmpybub_rtt_128B, 48944}, // __builtin_HEXAGON_V6_vrmpybub_rtt_128B
{Intrinsic::hexagon_V6_vrmpybub_rtt_acc, 48983}, // __builtin_HEXAGON_V6_vrmpybub_rtt_acc
{Intrinsic::hexagon_V6_vrmpybub_rtt_acc_128B, 49021}, // __builtin_HEXAGON_V6_vrmpybub_rtt_acc_128B
{Intrinsic::hexagon_V6_vrmpybus, 49064}, // __builtin_HEXAGON_V6_vrmpybus
{Intrinsic::hexagon_V6_vrmpybus_128B, 49094}, // __builtin_HEXAGON_V6_vrmpybus_128B
{Intrinsic::hexagon_V6_vrmpybus_acc, 49129}, // __builtin_HEXAGON_V6_vrmpybus_acc
{Intrinsic::hexagon_V6_vrmpybus_acc_128B, 49163}, // __builtin_HEXAGON_V6_vrmpybus_acc_128B
{Intrinsic::hexagon_V6_vrmpybusi, 49202}, // __builtin_HEXAGON_V6_vrmpybusi
{Intrinsic::hexagon_V6_vrmpybusi_128B, 49233}, // __builtin_HEXAGON_V6_vrmpybusi_128B
{Intrinsic::hexagon_V6_vrmpybusi_acc, 49269}, // __builtin_HEXAGON_V6_vrmpybusi_acc
{Intrinsic::hexagon_V6_vrmpybusi_acc_128B, 49304}, // __builtin_HEXAGON_V6_vrmpybusi_acc_128B
{Intrinsic::hexagon_V6_vrmpybusv, 49344}, // __builtin_HEXAGON_V6_vrmpybusv
{Intrinsic::hexagon_V6_vrmpybusv_128B, 49375}, // __builtin_HEXAGON_V6_vrmpybusv_128B
{Intrinsic::hexagon_V6_vrmpybusv_acc, 49411}, // __builtin_HEXAGON_V6_vrmpybusv_acc
{Intrinsic::hexagon_V6_vrmpybusv_acc_128B, 49446}, // __builtin_HEXAGON_V6_vrmpybusv_acc_128B
{Intrinsic::hexagon_V6_vrmpybv, 49486}, // __builtin_HEXAGON_V6_vrmpybv
{Intrinsic::hexagon_V6_vrmpybv_128B, 49515}, // __builtin_HEXAGON_V6_vrmpybv_128B
{Intrinsic::hexagon_V6_vrmpybv_acc, 49549}, // __builtin_HEXAGON_V6_vrmpybv_acc
{Intrinsic::hexagon_V6_vrmpybv_acc_128B, 49582}, // __builtin_HEXAGON_V6_vrmpybv_acc_128B
{Intrinsic::hexagon_V6_vrmpyub, 49620}, // __builtin_HEXAGON_V6_vrmpyub
{Intrinsic::hexagon_V6_vrmpyub_128B, 49649}, // __builtin_HEXAGON_V6_vrmpyub_128B
{Intrinsic::hexagon_V6_vrmpyub_acc, 49683}, // __builtin_HEXAGON_V6_vrmpyub_acc
{Intrinsic::hexagon_V6_vrmpyub_acc_128B, 49716}, // __builtin_HEXAGON_V6_vrmpyub_acc_128B
{Intrinsic::hexagon_V6_vrmpyub_rtt, 49754}, // __builtin_HEXAGON_V6_vrmpyub_rtt
{Intrinsic::hexagon_V6_vrmpyub_rtt_128B, 49787}, // __builtin_HEXAGON_V6_vrmpyub_rtt_128B
{Intrinsic::hexagon_V6_vrmpyub_rtt_acc, 49825}, // __builtin_HEXAGON_V6_vrmpyub_rtt_acc
{Intrinsic::hexagon_V6_vrmpyub_rtt_acc_128B, 49862}, // __builtin_HEXAGON_V6_vrmpyub_rtt_acc_128B
{Intrinsic::hexagon_V6_vrmpyubi, 49904}, // __builtin_HEXAGON_V6_vrmpyubi
{Intrinsic::hexagon_V6_vrmpyubi_128B, 49934}, // __builtin_HEXAGON_V6_vrmpyubi_128B
{Intrinsic::hexagon_V6_vrmpyubi_acc, 49969}, // __builtin_HEXAGON_V6_vrmpyubi_acc
{Intrinsic::hexagon_V6_vrmpyubi_acc_128B, 50003}, // __builtin_HEXAGON_V6_vrmpyubi_acc_128B
{Intrinsic::hexagon_V6_vrmpyubv, 50042}, // __builtin_HEXAGON_V6_vrmpyubv
{Intrinsic::hexagon_V6_vrmpyubv_128B, 50072}, // __builtin_HEXAGON_V6_vrmpyubv_128B
{Intrinsic::hexagon_V6_vrmpyubv_acc, 50107}, // __builtin_HEXAGON_V6_vrmpyubv_acc
{Intrinsic::hexagon_V6_vrmpyubv_acc_128B, 50141}, // __builtin_HEXAGON_V6_vrmpyubv_acc_128B
{Intrinsic::hexagon_V6_vror, 50180}, // __builtin_HEXAGON_V6_vror
{Intrinsic::hexagon_V6_vror_128B, 50206}, // __builtin_HEXAGON_V6_vror_128B
{Intrinsic::hexagon_V6_vrotr, 50237}, // __builtin_HEXAGON_V6_vrotr
{Intrinsic::hexagon_V6_vrotr_128B, 50264}, // __builtin_HEXAGON_V6_vrotr_128B
{Intrinsic::hexagon_V6_vroundhb, 50296}, // __builtin_HEXAGON_V6_vroundhb
{Intrinsic::hexagon_V6_vroundhb_128B, 50326}, // __builtin_HEXAGON_V6_vroundhb_128B
{Intrinsic::hexagon_V6_vroundhub, 50361}, // __builtin_HEXAGON_V6_vroundhub
{Intrinsic::hexagon_V6_vroundhub_128B, 50392}, // __builtin_HEXAGON_V6_vroundhub_128B
{Intrinsic::hexagon_V6_vrounduhub, 50428}, // __builtin_HEXAGON_V6_vrounduhub
{Intrinsic::hexagon_V6_vrounduhub_128B, 50460}, // __builtin_HEXAGON_V6_vrounduhub_128B
{Intrinsic::hexagon_V6_vrounduwuh, 50497}, // __builtin_HEXAGON_V6_vrounduwuh
{Intrinsic::hexagon_V6_vrounduwuh_128B, 50529}, // __builtin_HEXAGON_V6_vrounduwuh_128B
{Intrinsic::hexagon_V6_vroundwh, 50566}, // __builtin_HEXAGON_V6_vroundwh
{Intrinsic::hexagon_V6_vroundwh_128B, 50596}, // __builtin_HEXAGON_V6_vroundwh_128B
{Intrinsic::hexagon_V6_vroundwuh, 50631}, // __builtin_HEXAGON_V6_vroundwuh
{Intrinsic::hexagon_V6_vroundwuh_128B, 50662}, // __builtin_HEXAGON_V6_vroundwuh_128B
{Intrinsic::hexagon_V6_vrsadubi, 50698}, // __builtin_HEXAGON_V6_vrsadubi
{Intrinsic::hexagon_V6_vrsadubi_128B, 50728}, // __builtin_HEXAGON_V6_vrsadubi_128B
{Intrinsic::hexagon_V6_vrsadubi_acc, 50763}, // __builtin_HEXAGON_V6_vrsadubi_acc
{Intrinsic::hexagon_V6_vrsadubi_acc_128B, 50797}, // __builtin_HEXAGON_V6_vrsadubi_acc_128B
{Intrinsic::hexagon_V6_vsatdw, 50836}, // __builtin_HEXAGON_V6_vsatdw
{Intrinsic::hexagon_V6_vsatdw_128B, 50864}, // __builtin_HEXAGON_V6_vsatdw_128B
{Intrinsic::hexagon_V6_vsathub, 50897}, // __builtin_HEXAGON_V6_vsathub
{Intrinsic::hexagon_V6_vsathub_128B, 50926}, // __builtin_HEXAGON_V6_vsathub_128B
{Intrinsic::hexagon_V6_vsatuwuh, 50960}, // __builtin_HEXAGON_V6_vsatuwuh
{Intrinsic::hexagon_V6_vsatuwuh_128B, 50990}, // __builtin_HEXAGON_V6_vsatuwuh_128B
{Intrinsic::hexagon_V6_vsatwh, 51025}, // __builtin_HEXAGON_V6_vsatwh
{Intrinsic::hexagon_V6_vsatwh_128B, 51053}, // __builtin_HEXAGON_V6_vsatwh_128B
{Intrinsic::hexagon_V6_vsb, 51086}, // __builtin_HEXAGON_V6_vsb
{Intrinsic::hexagon_V6_vsb_128B, 51111}, // __builtin_HEXAGON_V6_vsb_128B
{Intrinsic::hexagon_V6_vscattermh, 51141}, // __builtin_HEXAGON_V6_vscattermh
{Intrinsic::hexagon_V6_vscattermh_128B, 51173}, // __builtin_HEXAGON_V6_vscattermh_128B
{Intrinsic::hexagon_V6_vscattermh_add, 51210}, // __builtin_HEXAGON_V6_vscattermh_add
{Intrinsic::hexagon_V6_vscattermh_add_128B, 51246}, // __builtin_HEXAGON_V6_vscattermh_add_128B
{Intrinsic::hexagon_V6_vscattermhw, 51287}, // __builtin_HEXAGON_V6_vscattermhw
{Intrinsic::hexagon_V6_vscattermhw_128B, 51320}, // __builtin_HEXAGON_V6_vscattermhw_128B
{Intrinsic::hexagon_V6_vscattermhw_add, 51358}, // __builtin_HEXAGON_V6_vscattermhw_add
{Intrinsic::hexagon_V6_vscattermhw_add_128B, 51395}, // __builtin_HEXAGON_V6_vscattermhw_add_128B
{Intrinsic::hexagon_V6_vscattermw, 51437}, // __builtin_HEXAGON_V6_vscattermw
{Intrinsic::hexagon_V6_vscattermw_128B, 51469}, // __builtin_HEXAGON_V6_vscattermw_128B
{Intrinsic::hexagon_V6_vscattermw_add, 51506}, // __builtin_HEXAGON_V6_vscattermw_add
{Intrinsic::hexagon_V6_vscattermw_add_128B, 51542}, // __builtin_HEXAGON_V6_vscattermw_add_128B
{Intrinsic::hexagon_V6_vsh, 51583}, // __builtin_HEXAGON_V6_vsh
{Intrinsic::hexagon_V6_vsh_128B, 51608}, // __builtin_HEXAGON_V6_vsh_128B
{Intrinsic::hexagon_V6_vshufeh, 51638}, // __builtin_HEXAGON_V6_vshufeh
{Intrinsic::hexagon_V6_vshufeh_128B, 51667}, // __builtin_HEXAGON_V6_vshufeh_128B
{Intrinsic::hexagon_V6_vshuffb, 51701}, // __builtin_HEXAGON_V6_vshuffb
{Intrinsic::hexagon_V6_vshuffb_128B, 51730}, // __builtin_HEXAGON_V6_vshuffb_128B
{Intrinsic::hexagon_V6_vshuffeb, 51764}, // __builtin_HEXAGON_V6_vshuffeb
{Intrinsic::hexagon_V6_vshuffeb_128B, 51794}, // __builtin_HEXAGON_V6_vshuffeb_128B
{Intrinsic::hexagon_V6_vshuffh, 51829}, // __builtin_HEXAGON_V6_vshuffh
{Intrinsic::hexagon_V6_vshuffh_128B, 51858}, // __builtin_HEXAGON_V6_vshuffh_128B
{Intrinsic::hexagon_V6_vshuffob, 51892}, // __builtin_HEXAGON_V6_vshuffob
{Intrinsic::hexagon_V6_vshuffob_128B, 51922}, // __builtin_HEXAGON_V6_vshuffob_128B
{Intrinsic::hexagon_V6_vshuffvdd, 51957}, // __builtin_HEXAGON_V6_vshuffvdd
{Intrinsic::hexagon_V6_vshuffvdd_128B, 51988}, // __builtin_HEXAGON_V6_vshuffvdd_128B
{Intrinsic::hexagon_V6_vshufoeb, 52024}, // __builtin_HEXAGON_V6_vshufoeb
{Intrinsic::hexagon_V6_vshufoeb_128B, 52054}, // __builtin_HEXAGON_V6_vshufoeb_128B
{Intrinsic::hexagon_V6_vshufoeh, 52089}, // __builtin_HEXAGON_V6_vshufoeh
{Intrinsic::hexagon_V6_vshufoeh_128B, 52119}, // __builtin_HEXAGON_V6_vshufoeh_128B
{Intrinsic::hexagon_V6_vshufoh, 52154}, // __builtin_HEXAGON_V6_vshufoh
{Intrinsic::hexagon_V6_vshufoh_128B, 52183}, // __builtin_HEXAGON_V6_vshufoh_128B
{Intrinsic::hexagon_V6_vsubb, 52217}, // __builtin_HEXAGON_V6_vsubb
{Intrinsic::hexagon_V6_vsubb_128B, 52244}, // __builtin_HEXAGON_V6_vsubb_128B
{Intrinsic::hexagon_V6_vsubb_dv, 52276}, // __builtin_HEXAGON_V6_vsubb_dv
{Intrinsic::hexagon_V6_vsubb_dv_128B, 52306}, // __builtin_HEXAGON_V6_vsubb_dv_128B
{Intrinsic::hexagon_V6_vsubbsat, 52341}, // __builtin_HEXAGON_V6_vsubbsat
{Intrinsic::hexagon_V6_vsubbsat_128B, 52371}, // __builtin_HEXAGON_V6_vsubbsat_128B
{Intrinsic::hexagon_V6_vsubbsat_dv, 52406}, // __builtin_HEXAGON_V6_vsubbsat_dv
{Intrinsic::hexagon_V6_vsubbsat_dv_128B, 52439}, // __builtin_HEXAGON_V6_vsubbsat_dv_128B
{Intrinsic::hexagon_V6_vsubh, 52477}, // __builtin_HEXAGON_V6_vsubh
{Intrinsic::hexagon_V6_vsubh_128B, 52504}, // __builtin_HEXAGON_V6_vsubh_128B
{Intrinsic::hexagon_V6_vsubh_dv, 52536}, // __builtin_HEXAGON_V6_vsubh_dv
{Intrinsic::hexagon_V6_vsubh_dv_128B, 52566}, // __builtin_HEXAGON_V6_vsubh_dv_128B
{Intrinsic::hexagon_V6_vsubhsat, 52601}, // __builtin_HEXAGON_V6_vsubhsat
{Intrinsic::hexagon_V6_vsubhsat_128B, 52631}, // __builtin_HEXAGON_V6_vsubhsat_128B
{Intrinsic::hexagon_V6_vsubhsat_dv, 52666}, // __builtin_HEXAGON_V6_vsubhsat_dv
{Intrinsic::hexagon_V6_vsubhsat_dv_128B, 52699}, // __builtin_HEXAGON_V6_vsubhsat_dv_128B
{Intrinsic::hexagon_V6_vsubhw, 52737}, // __builtin_HEXAGON_V6_vsubhw
{Intrinsic::hexagon_V6_vsubhw_128B, 52765}, // __builtin_HEXAGON_V6_vsubhw_128B
{Intrinsic::hexagon_V6_vsububh, 52798}, // __builtin_HEXAGON_V6_vsububh
{Intrinsic::hexagon_V6_vsububh_128B, 52827}, // __builtin_HEXAGON_V6_vsububh_128B
{Intrinsic::hexagon_V6_vsububsat, 52861}, // __builtin_HEXAGON_V6_vsububsat
{Intrinsic::hexagon_V6_vsububsat_128B, 52892}, // __builtin_HEXAGON_V6_vsububsat_128B
{Intrinsic::hexagon_V6_vsububsat_dv, 52928}, // __builtin_HEXAGON_V6_vsububsat_dv
{Intrinsic::hexagon_V6_vsububsat_dv_128B, 52962}, // __builtin_HEXAGON_V6_vsububsat_dv_128B
{Intrinsic::hexagon_V6_vsubububb_sat, 53001}, // __builtin_HEXAGON_V6_vsubububb_sat
{Intrinsic::hexagon_V6_vsubububb_sat_128B, 53036}, // __builtin_HEXAGON_V6_vsubububb_sat_128B
{Intrinsic::hexagon_V6_vsubuhsat, 53076}, // __builtin_HEXAGON_V6_vsubuhsat
{Intrinsic::hexagon_V6_vsubuhsat_128B, 53107}, // __builtin_HEXAGON_V6_vsubuhsat_128B
{Intrinsic::hexagon_V6_vsubuhsat_dv, 53143}, // __builtin_HEXAGON_V6_vsubuhsat_dv
{Intrinsic::hexagon_V6_vsubuhsat_dv_128B, 53177}, // __builtin_HEXAGON_V6_vsubuhsat_dv_128B
{Intrinsic::hexagon_V6_vsubuhw, 53216}, // __builtin_HEXAGON_V6_vsubuhw
{Intrinsic::hexagon_V6_vsubuhw_128B, 53245}, // __builtin_HEXAGON_V6_vsubuhw_128B
{Intrinsic::hexagon_V6_vsubuwsat, 53279}, // __builtin_HEXAGON_V6_vsubuwsat
{Intrinsic::hexagon_V6_vsubuwsat_128B, 53310}, // __builtin_HEXAGON_V6_vsubuwsat_128B
{Intrinsic::hexagon_V6_vsubuwsat_dv, 53346}, // __builtin_HEXAGON_V6_vsubuwsat_dv
{Intrinsic::hexagon_V6_vsubuwsat_dv_128B, 53380}, // __builtin_HEXAGON_V6_vsubuwsat_dv_128B
{Intrinsic::hexagon_V6_vsubw, 53419}, // __builtin_HEXAGON_V6_vsubw
{Intrinsic::hexagon_V6_vsubw_128B, 53446}, // __builtin_HEXAGON_V6_vsubw_128B
{Intrinsic::hexagon_V6_vsubw_dv, 53478}, // __builtin_HEXAGON_V6_vsubw_dv
{Intrinsic::hexagon_V6_vsubw_dv_128B, 53508}, // __builtin_HEXAGON_V6_vsubw_dv_128B
{Intrinsic::hexagon_V6_vsubwsat, 53543}, // __builtin_HEXAGON_V6_vsubwsat
{Intrinsic::hexagon_V6_vsubwsat_128B, 53573}, // __builtin_HEXAGON_V6_vsubwsat_128B
{Intrinsic::hexagon_V6_vsubwsat_dv, 53608}, // __builtin_HEXAGON_V6_vsubwsat_dv
{Intrinsic::hexagon_V6_vsubwsat_dv_128B, 53641}, // __builtin_HEXAGON_V6_vsubwsat_dv_128B
{Intrinsic::hexagon_V6_vtmpyb, 53679}, // __builtin_HEXAGON_V6_vtmpyb
{Intrinsic::hexagon_V6_vtmpyb_128B, 53707}, // __builtin_HEXAGON_V6_vtmpyb_128B
{Intrinsic::hexagon_V6_vtmpyb_acc, 53740}, // __builtin_HEXAGON_V6_vtmpyb_acc
{Intrinsic::hexagon_V6_vtmpyb_acc_128B, 53772}, // __builtin_HEXAGON_V6_vtmpyb_acc_128B
{Intrinsic::hexagon_V6_vtmpybus, 53809}, // __builtin_HEXAGON_V6_vtmpybus
{Intrinsic::hexagon_V6_vtmpybus_128B, 53839}, // __builtin_HEXAGON_V6_vtmpybus_128B
{Intrinsic::hexagon_V6_vtmpybus_acc, 53874}, // __builtin_HEXAGON_V6_vtmpybus_acc
{Intrinsic::hexagon_V6_vtmpybus_acc_128B, 53908}, // __builtin_HEXAGON_V6_vtmpybus_acc_128B
{Intrinsic::hexagon_V6_vtmpyhb, 53947}, // __builtin_HEXAGON_V6_vtmpyhb
{Intrinsic::hexagon_V6_vtmpyhb_128B, 53976}, // __builtin_HEXAGON_V6_vtmpyhb_128B
{Intrinsic::hexagon_V6_vtmpyhb_acc, 54010}, // __builtin_HEXAGON_V6_vtmpyhb_acc
{Intrinsic::hexagon_V6_vtmpyhb_acc_128B, 54043}, // __builtin_HEXAGON_V6_vtmpyhb_acc_128B
{Intrinsic::hexagon_V6_vunpackb, 54081}, // __builtin_HEXAGON_V6_vunpackb
{Intrinsic::hexagon_V6_vunpackb_128B, 54111}, // __builtin_HEXAGON_V6_vunpackb_128B
{Intrinsic::hexagon_V6_vunpackh, 54146}, // __builtin_HEXAGON_V6_vunpackh
{Intrinsic::hexagon_V6_vunpackh_128B, 54176}, // __builtin_HEXAGON_V6_vunpackh_128B
{Intrinsic::hexagon_V6_vunpackob, 54211}, // __builtin_HEXAGON_V6_vunpackob
{Intrinsic::hexagon_V6_vunpackob_128B, 54242}, // __builtin_HEXAGON_V6_vunpackob_128B
{Intrinsic::hexagon_V6_vunpackoh, 54278}, // __builtin_HEXAGON_V6_vunpackoh
{Intrinsic::hexagon_V6_vunpackoh_128B, 54309}, // __builtin_HEXAGON_V6_vunpackoh_128B
{Intrinsic::hexagon_V6_vunpackub, 54345}, // __builtin_HEXAGON_V6_vunpackub
{Intrinsic::hexagon_V6_vunpackub_128B, 54376}, // __builtin_HEXAGON_V6_vunpackub_128B
{Intrinsic::hexagon_V6_vunpackuh, 54412}, // __builtin_HEXAGON_V6_vunpackuh
{Intrinsic::hexagon_V6_vunpackuh_128B, 54443}, // __builtin_HEXAGON_V6_vunpackuh_128B
{Intrinsic::hexagon_V6_vxor, 54479}, // __builtin_HEXAGON_V6_vxor
{Intrinsic::hexagon_V6_vxor_128B, 54505}, // __builtin_HEXAGON_V6_vxor_128B
{Intrinsic::hexagon_V6_vzb, 54536}, // __builtin_HEXAGON_V6_vzb
{Intrinsic::hexagon_V6_vzb_128B, 54561}, // __builtin_HEXAGON_V6_vzb_128B
{Intrinsic::hexagon_V6_vzh, 54591}, // __builtin_HEXAGON_V6_vzh
{Intrinsic::hexagon_V6_vzh_128B, 54616}, // __builtin_HEXAGON_V6_vzh_128B
{Intrinsic::hexagon_Y2_dccleana, 54646}, // __builtin_HEXAGON_Y2_dccleana
{Intrinsic::hexagon_Y2_dccleaninva, 54676}, // __builtin_HEXAGON_Y2_dccleaninva
{Intrinsic::hexagon_Y2_dcfetch, 54709}, // __builtin_HEXAGON_Y2_dcfetch
{Intrinsic::hexagon_Y2_dcinva, 54738}, // __builtin_HEXAGON_Y2_dcinva
{Intrinsic::hexagon_Y2_dczeroa, 54766}, // __builtin_HEXAGON_Y2_dczeroa
{Intrinsic::hexagon_Y4_l2fetch, 54795}, // __builtin_HEXAGON_Y4_l2fetch
{Intrinsic::hexagon_Y5_l2fetch, 54824}, // __builtin_HEXAGON_Y5_l2fetch
{Intrinsic::hexagon_prefetch, 55066}, // __builtin_HEXAGON_prefetch
{Intrinsic::hexagon_S2_storerb_pbr, 30935}, // __builtin_brev_stb
{Intrinsic::hexagon_S2_storerd_pbr, 30954}, // __builtin_brev_std
{Intrinsic::hexagon_S2_storerh_pbr, 30994}, // __builtin_brev_sth
{Intrinsic::hexagon_S2_storerf_pbr, 30973}, // __builtin_brev_sthhi
{Intrinsic::hexagon_S2_storeri_pbr, 31013}, // __builtin_brev_stw
{Intrinsic::hexagon_circ_ldb, 54853}, // __builtin_circ_ldb
{Intrinsic::hexagon_circ_ldd, 54872}, // __builtin_circ_ldd
{Intrinsic::hexagon_circ_ldh, 54891}, // __builtin_circ_ldh
{Intrinsic::hexagon_circ_ldub, 54910}, // __builtin_circ_ldub
{Intrinsic::hexagon_circ_lduh, 54930}, // __builtin_circ_lduh
{Intrinsic::hexagon_circ_ldw, 54950}, // __builtin_circ_ldw
{Intrinsic::hexagon_circ_stb, 54969}, // __builtin_circ_stb
{Intrinsic::hexagon_circ_std, 54988}, // __builtin_circ_std
{Intrinsic::hexagon_circ_sth, 55007}, // __builtin_circ_sth
{Intrinsic::hexagon_circ_sthhi, 55026}, // __builtin_circ_sthhi
{Intrinsic::hexagon_circ_stw, 55047}, // __builtin_circ_stw
{Intrinsic::hexagon_vmemcpy, 55093}, // __builtin_hexagon_vmemcpy
{Intrinsic::hexagon_vmemset, 55119}, // __builtin_hexagon_vmemset
};
auto I = std::lower_bound(std::begin(hexagonNames),
std::end(hexagonNames),
BuiltinNameStr);
if (I != std::end(hexagonNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "mips") {
static const BuiltinEntry mipsNames[] = {
{Intrinsic::mips_absq_s_ph, 55145}, // __builtin_mips_absq_s_ph
{Intrinsic::mips_absq_s_qb, 55170}, // __builtin_mips_absq_s_qb
{Intrinsic::mips_absq_s_w, 55195}, // __builtin_mips_absq_s_w
{Intrinsic::mips_addq_ph, 55307}, // __builtin_mips_addq_ph
{Intrinsic::mips_addq_s_ph, 55330}, // __builtin_mips_addq_s_ph
{Intrinsic::mips_addq_s_w, 55355}, // __builtin_mips_addq_s_w
{Intrinsic::mips_addqh_ph, 55379}, // __builtin_mips_addqh_ph
{Intrinsic::mips_addqh_r_ph, 55403}, // __builtin_mips_addqh_r_ph
{Intrinsic::mips_addqh_r_w, 55429}, // __builtin_mips_addqh_r_w
{Intrinsic::mips_addqh_w, 55454}, // __builtin_mips_addqh_w
{Intrinsic::mips_addsc, 55753}, // __builtin_mips_addsc
{Intrinsic::mips_addu_ph, 55774}, // __builtin_mips_addu_ph
{Intrinsic::mips_addu_qb, 55797}, // __builtin_mips_addu_qb
{Intrinsic::mips_addu_s_ph, 55820}, // __builtin_mips_addu_s_ph
{Intrinsic::mips_addu_s_qb, 55845}, // __builtin_mips_addu_s_qb
{Intrinsic::mips_adduh_qb, 55870}, // __builtin_mips_adduh_qb
{Intrinsic::mips_adduh_r_qb, 55894}, // __builtin_mips_adduh_r_qb
{Intrinsic::mips_addwc, 56092}, // __builtin_mips_addwc
{Intrinsic::mips_append, 56154}, // __builtin_mips_append
{Intrinsic::mips_balign, 56720}, // __builtin_mips_balign
{Intrinsic::mips_bitrev, 57274}, // __builtin_mips_bitrev
{Intrinsic::mips_bposge32, 57652}, // __builtin_mips_bposge32
{Intrinsic::mips_cmp_eq_ph, 58891}, // __builtin_mips_cmp_eq_ph
{Intrinsic::mips_cmp_le_ph, 58916}, // __builtin_mips_cmp_le_ph
{Intrinsic::mips_cmp_lt_ph, 58941}, // __builtin_mips_cmp_lt_ph
{Intrinsic::mips_cmpgdu_eq_qb, 58966}, // __builtin_mips_cmpgdu_eq_qb
{Intrinsic::mips_cmpgdu_le_qb, 58994}, // __builtin_mips_cmpgdu_le_qb
{Intrinsic::mips_cmpgdu_lt_qb, 59022}, // __builtin_mips_cmpgdu_lt_qb
{Intrinsic::mips_cmpgu_eq_qb, 59050}, // __builtin_mips_cmpgu_eq_qb
{Intrinsic::mips_cmpgu_le_qb, 59077}, // __builtin_mips_cmpgu_le_qb
{Intrinsic::mips_cmpgu_lt_qb, 59104}, // __builtin_mips_cmpgu_lt_qb
{Intrinsic::mips_cmpu_eq_qb, 59131}, // __builtin_mips_cmpu_eq_qb
{Intrinsic::mips_cmpu_le_qb, 59157}, // __builtin_mips_cmpu_le_qb
{Intrinsic::mips_cmpu_lt_qb, 59183}, // __builtin_mips_cmpu_lt_qb
{Intrinsic::mips_dlsa, 59590}, // __builtin_mips_dlsa
{Intrinsic::mips_dpa_w_ph, 59748}, // __builtin_mips_dpa_w_ph
{Intrinsic::mips_dpaq_s_w_ph, 59916}, // __builtin_mips_dpaq_s_w_ph
{Intrinsic::mips_dpaq_sa_l_w, 59943}, // __builtin_mips_dpaq_sa_l_w
{Intrinsic::mips_dpaqx_s_w_ph, 59970}, // __builtin_mips_dpaqx_s_w_ph
{Intrinsic::mips_dpaqx_sa_w_ph, 59998}, // __builtin_mips_dpaqx_sa_w_ph
{Intrinsic::mips_dpau_h_qbl, 60027}, // __builtin_mips_dpau_h_qbl
{Intrinsic::mips_dpau_h_qbr, 60053}, // __builtin_mips_dpau_h_qbr
{Intrinsic::mips_dpax_w_ph, 60079}, // __builtin_mips_dpax_w_ph
{Intrinsic::mips_dps_w_ph, 60104}, // __builtin_mips_dps_w_ph
{Intrinsic::mips_dpsq_s_w_ph, 60128}, // __builtin_mips_dpsq_s_w_ph
{Intrinsic::mips_dpsq_sa_l_w, 60155}, // __builtin_mips_dpsq_sa_l_w
{Intrinsic::mips_dpsqx_s_w_ph, 60182}, // __builtin_mips_dpsqx_s_w_ph
{Intrinsic::mips_dpsqx_sa_w_ph, 60210}, // __builtin_mips_dpsqx_sa_w_ph
{Intrinsic::mips_dpsu_h_qbl, 60239}, // __builtin_mips_dpsu_h_qbl
{Intrinsic::mips_dpsu_h_qbr, 60265}, // __builtin_mips_dpsu_h_qbr
{Intrinsic::mips_dpsx_w_ph, 60435}, // __builtin_mips_dpsx_w_ph
{Intrinsic::mips_extp, 60460}, // __builtin_mips_extp
{Intrinsic::mips_extpdp, 60480}, // __builtin_mips_extpdp
{Intrinsic::mips_extr_r_w, 60502}, // __builtin_mips_extr_r_w
{Intrinsic::mips_extr_rs_w, 60526}, // __builtin_mips_extr_rs_w
{Intrinsic::mips_extr_s_h, 60551}, // __builtin_mips_extr_s_h
{Intrinsic::mips_extr_w, 60575}, // __builtin_mips_extr_w
{Intrinsic::mips_insv, 63627}, // __builtin_mips_insv
{Intrinsic::mips_lbux, 63735}, // __builtin_mips_lbux
{Intrinsic::mips_lhx, 63951}, // __builtin_mips_lhx
{Intrinsic::mips_lsa, 63970}, // __builtin_mips_lsa
{Intrinsic::mips_lwx, 63989}, // __builtin_mips_lwx
{Intrinsic::mips_madd, 64008}, // __builtin_mips_madd
{Intrinsic::mips_maddu, 64122}, // __builtin_mips_maddu
{Intrinsic::mips_maq_s_w_phl, 64231}, // __builtin_mips_maq_s_w_phl
{Intrinsic::mips_maq_s_w_phr, 64258}, // __builtin_mips_maq_s_w_phr
{Intrinsic::mips_maq_sa_w_phl, 64285}, // __builtin_mips_maq_sa_w_phl
{Intrinsic::mips_maq_sa_w_phr, 64313}, // __builtin_mips_maq_sa_w_phr
{Intrinsic::mips_modsub, 65413}, // __builtin_mips_modsub
{Intrinsic::mips_msub, 65456}, // __builtin_mips_msub
{Intrinsic::mips_msubu, 65570}, // __builtin_mips_msubu
{Intrinsic::mips_mthlip, 65679}, // __builtin_mips_mthlip
{Intrinsic::mips_mul_ph, 65701}, // __builtin_mips_mul_ph
{Intrinsic::mips_mul_s_ph, 65767}, // __builtin_mips_mul_s_ph
{Intrinsic::mips_muleq_s_w_phl, 65791}, // __builtin_mips_muleq_s_w_phl
{Intrinsic::mips_muleq_s_w_phr, 65820}, // __builtin_mips_muleq_s_w_phr
{Intrinsic::mips_muleu_s_ph_qbl, 65849}, // __builtin_mips_muleu_s_ph_qbl
{Intrinsic::mips_muleu_s_ph_qbr, 65879}, // __builtin_mips_muleu_s_ph_qbr
{Intrinsic::mips_mulq_rs_ph, 65909}, // __builtin_mips_mulq_rs_ph
{Intrinsic::mips_mulq_rs_w, 65935}, // __builtin_mips_mulq_rs_w
{Intrinsic::mips_mulq_s_ph, 65960}, // __builtin_mips_mulq_s_ph
{Intrinsic::mips_mulq_s_w, 65985}, // __builtin_mips_mulq_s_w
{Intrinsic::mips_mulsa_w_ph, 66055}, // __builtin_mips_mulsa_w_ph
{Intrinsic::mips_mulsaq_s_w_ph, 66081}, // __builtin_mips_mulsaq_s_w_ph
{Intrinsic::mips_mult, 66110}, // __builtin_mips_mult
{Intrinsic::mips_multu, 66130}, // __builtin_mips_multu
{Intrinsic::mips_packrl_ph, 66483}, // __builtin_mips_packrl_ph
{Intrinsic::mips_pick_ph, 66768}, // __builtin_mips_pick_ph
{Intrinsic::mips_pick_qb, 66791}, // __builtin_mips_pick_qb
{Intrinsic::mips_preceq_w_phl, 66814}, // __builtin_mips_preceq_w_phl
{Intrinsic::mips_preceq_w_phr, 66842}, // __builtin_mips_preceq_w_phr
{Intrinsic::mips_precequ_ph_qbl, 66870}, // __builtin_mips_precequ_ph_qbl
{Intrinsic::mips_precequ_ph_qbla, 66900}, // __builtin_mips_precequ_ph_qbla
{Intrinsic::mips_precequ_ph_qbr, 66931}, // __builtin_mips_precequ_ph_qbr
{Intrinsic::mips_precequ_ph_qbra, 66961}, // __builtin_mips_precequ_ph_qbra
{Intrinsic::mips_preceu_ph_qbl, 66992}, // __builtin_mips_preceu_ph_qbl
{Intrinsic::mips_preceu_ph_qbla, 67021}, // __builtin_mips_preceu_ph_qbla
{Intrinsic::mips_preceu_ph_qbr, 67051}, // __builtin_mips_preceu_ph_qbr
{Intrinsic::mips_preceu_ph_qbra, 67080}, // __builtin_mips_preceu_ph_qbra
{Intrinsic::mips_precr_qb_ph, 67110}, // __builtin_mips_precr_qb_ph
{Intrinsic::mips_precr_sra_ph_w, 67137}, // __builtin_mips_precr_sra_ph_w
{Intrinsic::mips_precr_sra_r_ph_w, 67167}, // __builtin_mips_precr_sra_r_ph_w
{Intrinsic::mips_precrq_ph_w, 67199}, // __builtin_mips_precrq_ph_w
{Intrinsic::mips_precrq_qb_ph, 67226}, // __builtin_mips_precrq_qb_ph
{Intrinsic::mips_precrq_rs_ph_w, 67254}, // __builtin_mips_precrq_rs_ph_w
{Intrinsic::mips_precrqu_s_qb_ph, 67284}, // __builtin_mips_precrqu_s_qb_ph
{Intrinsic::mips_prepend, 67315}, // __builtin_mips_prepend
{Intrinsic::mips_raddu_w_qb, 67338}, // __builtin_mips_raddu_w_qb
{Intrinsic::mips_rddsp, 67364}, // __builtin_mips_rddsp
{Intrinsic::mips_repl_ph, 67385}, // __builtin_mips_repl_ph
{Intrinsic::mips_repl_qb, 67408}, // __builtin_mips_repl_qb
{Intrinsic::mips_shilo, 67667}, // __builtin_mips_shilo
{Intrinsic::mips_shll_ph, 67688}, // __builtin_mips_shll_ph
{Intrinsic::mips_shll_qb, 67711}, // __builtin_mips_shll_qb
{Intrinsic::mips_shll_s_ph, 67734}, // __builtin_mips_shll_s_ph
{Intrinsic::mips_shll_s_w, 67759}, // __builtin_mips_shll_s_w
{Intrinsic::mips_shra_ph, 67783}, // __builtin_mips_shra_ph
{Intrinsic::mips_shra_qb, 67806}, // __builtin_mips_shra_qb
{Intrinsic::mips_shra_r_ph, 67829}, // __builtin_mips_shra_r_ph
{Intrinsic::mips_shra_r_qb, 67854}, // __builtin_mips_shra_r_qb
{Intrinsic::mips_shra_r_w, 67879}, // __builtin_mips_shra_r_w
{Intrinsic::mips_shrl_ph, 67903}, // __builtin_mips_shrl_ph
{Intrinsic::mips_shrl_qb, 67926}, // __builtin_mips_shrl_qb
{Intrinsic::mips_subq_ph, 69245}, // __builtin_mips_subq_ph
{Intrinsic::mips_subq_s_ph, 69268}, // __builtin_mips_subq_s_ph
{Intrinsic::mips_subq_s_w, 69293}, // __builtin_mips_subq_s_w
{Intrinsic::mips_subqh_ph, 69317}, // __builtin_mips_subqh_ph
{Intrinsic::mips_subqh_r_ph, 69341}, // __builtin_mips_subqh_r_ph
{Intrinsic::mips_subqh_r_w, 69367}, // __builtin_mips_subqh_r_w
{Intrinsic::mips_subqh_w, 69392}, // __builtin_mips_subqh_w
{Intrinsic::mips_subu_ph, 69799}, // __builtin_mips_subu_ph
{Intrinsic::mips_subu_qb, 69822}, // __builtin_mips_subu_qb
{Intrinsic::mips_subu_s_ph, 69845}, // __builtin_mips_subu_s_ph
{Intrinsic::mips_subu_s_qb, 69870}, // __builtin_mips_subu_s_qb
{Intrinsic::mips_subuh_qb, 69895}, // __builtin_mips_subuh_qb
{Intrinsic::mips_subuh_r_qb, 69919}, // __builtin_mips_subuh_r_qb
{Intrinsic::mips_wrdsp, 70201}, // __builtin_mips_wrdsp
{Intrinsic::mips_add_a_b, 55219}, // __builtin_msa_add_a_b
{Intrinsic::mips_add_a_d, 55241}, // __builtin_msa_add_a_d
{Intrinsic::mips_add_a_h, 55263}, // __builtin_msa_add_a_h
{Intrinsic::mips_add_a_w, 55285}, // __builtin_msa_add_a_w
{Intrinsic::mips_adds_a_b, 55477}, // __builtin_msa_adds_a_b
{Intrinsic::mips_adds_a_d, 55500}, // __builtin_msa_adds_a_d
{Intrinsic::mips_adds_a_h, 55523}, // __builtin_msa_adds_a_h
{Intrinsic::mips_adds_a_w, 55546}, // __builtin_msa_adds_a_w
{Intrinsic::mips_adds_s_b, 55569}, // __builtin_msa_adds_s_b
{Intrinsic::mips_adds_s_d, 55592}, // __builtin_msa_adds_s_d
{Intrinsic::mips_adds_s_h, 55615}, // __builtin_msa_adds_s_h
{Intrinsic::mips_adds_s_w, 55638}, // __builtin_msa_adds_s_w
{Intrinsic::mips_adds_u_b, 55661}, // __builtin_msa_adds_u_b
{Intrinsic::mips_adds_u_d, 55684}, // __builtin_msa_adds_u_d
{Intrinsic::mips_adds_u_h, 55707}, // __builtin_msa_adds_u_h
{Intrinsic::mips_adds_u_w, 55730}, // __builtin_msa_adds_u_w
{Intrinsic::mips_addv_b, 55920}, // __builtin_msa_addv_b
{Intrinsic::mips_addv_d, 55941}, // __builtin_msa_addv_d
{Intrinsic::mips_addv_h, 55962}, // __builtin_msa_addv_h
{Intrinsic::mips_addv_w, 55983}, // __builtin_msa_addv_w
{Intrinsic::mips_addvi_b, 56004}, // __builtin_msa_addvi_b
{Intrinsic::mips_addvi_d, 56026}, // __builtin_msa_addvi_d
{Intrinsic::mips_addvi_h, 56048}, // __builtin_msa_addvi_h
{Intrinsic::mips_addvi_w, 56070}, // __builtin_msa_addvi_w
{Intrinsic::mips_and_v, 56113}, // __builtin_msa_and_v
{Intrinsic::mips_andi_b, 56133}, // __builtin_msa_andi_b
{Intrinsic::mips_asub_s_b, 56176}, // __builtin_msa_asub_s_b
{Intrinsic::mips_asub_s_d, 56199}, // __builtin_msa_asub_s_d
{Intrinsic::mips_asub_s_h, 56222}, // __builtin_msa_asub_s_h
{Intrinsic::mips_asub_s_w, 56245}, // __builtin_msa_asub_s_w
{Intrinsic::mips_asub_u_b, 56268}, // __builtin_msa_asub_u_b
{Intrinsic::mips_asub_u_d, 56291}, // __builtin_msa_asub_u_d
{Intrinsic::mips_asub_u_h, 56314}, // __builtin_msa_asub_u_h
{Intrinsic::mips_asub_u_w, 56337}, // __builtin_msa_asub_u_w
{Intrinsic::mips_ave_s_b, 56360}, // __builtin_msa_ave_s_b
{Intrinsic::mips_ave_s_d, 56382}, // __builtin_msa_ave_s_d
{Intrinsic::mips_ave_s_h, 56404}, // __builtin_msa_ave_s_h
{Intrinsic::mips_ave_s_w, 56426}, // __builtin_msa_ave_s_w
{Intrinsic::mips_ave_u_b, 56448}, // __builtin_msa_ave_u_b
{Intrinsic::mips_ave_u_d, 56470}, // __builtin_msa_ave_u_d
{Intrinsic::mips_ave_u_h, 56492}, // __builtin_msa_ave_u_h
{Intrinsic::mips_ave_u_w, 56514}, // __builtin_msa_ave_u_w
{Intrinsic::mips_aver_s_b, 56536}, // __builtin_msa_aver_s_b
{Intrinsic::mips_aver_s_d, 56559}, // __builtin_msa_aver_s_d
{Intrinsic::mips_aver_s_h, 56582}, // __builtin_msa_aver_s_h
{Intrinsic::mips_aver_s_w, 56605}, // __builtin_msa_aver_s_w
{Intrinsic::mips_aver_u_b, 56628}, // __builtin_msa_aver_u_b
{Intrinsic::mips_aver_u_d, 56651}, // __builtin_msa_aver_u_d
{Intrinsic::mips_aver_u_h, 56674}, // __builtin_msa_aver_u_h
{Intrinsic::mips_aver_u_w, 56697}, // __builtin_msa_aver_u_w
{Intrinsic::mips_bclr_b, 56742}, // __builtin_msa_bclr_b
{Intrinsic::mips_bclr_d, 56763}, // __builtin_msa_bclr_d
{Intrinsic::mips_bclr_h, 56784}, // __builtin_msa_bclr_h
{Intrinsic::mips_bclr_w, 56805}, // __builtin_msa_bclr_w
{Intrinsic::mips_bclri_b, 56826}, // __builtin_msa_bclri_b
{Intrinsic::mips_bclri_d, 56848}, // __builtin_msa_bclri_d
{Intrinsic::mips_bclri_h, 56870}, // __builtin_msa_bclri_h
{Intrinsic::mips_bclri_w, 56892}, // __builtin_msa_bclri_w
{Intrinsic::mips_binsl_b, 56914}, // __builtin_msa_binsl_b
{Intrinsic::mips_binsl_d, 56936}, // __builtin_msa_binsl_d
{Intrinsic::mips_binsl_h, 56958}, // __builtin_msa_binsl_h
{Intrinsic::mips_binsl_w, 56980}, // __builtin_msa_binsl_w
{Intrinsic::mips_binsli_b, 57002}, // __builtin_msa_binsli_b
{Intrinsic::mips_binsli_d, 57025}, // __builtin_msa_binsli_d
{Intrinsic::mips_binsli_h, 57048}, // __builtin_msa_binsli_h
{Intrinsic::mips_binsli_w, 57071}, // __builtin_msa_binsli_w
{Intrinsic::mips_binsr_b, 57094}, // __builtin_msa_binsr_b
{Intrinsic::mips_binsr_d, 57116}, // __builtin_msa_binsr_d
{Intrinsic::mips_binsr_h, 57138}, // __builtin_msa_binsr_h
{Intrinsic::mips_binsr_w, 57160}, // __builtin_msa_binsr_w
{Intrinsic::mips_binsri_b, 57182}, // __builtin_msa_binsri_b
{Intrinsic::mips_binsri_d, 57205}, // __builtin_msa_binsri_d
{Intrinsic::mips_binsri_h, 57228}, // __builtin_msa_binsri_h
{Intrinsic::mips_binsri_w, 57251}, // __builtin_msa_binsri_w
{Intrinsic::mips_bmnz_v, 57296}, // __builtin_msa_bmnz_v
{Intrinsic::mips_bmnzi_b, 57317}, // __builtin_msa_bmnzi_b
{Intrinsic::mips_bmz_v, 57339}, // __builtin_msa_bmz_v
{Intrinsic::mips_bmzi_b, 57359}, // __builtin_msa_bmzi_b
{Intrinsic::mips_bneg_b, 57380}, // __builtin_msa_bneg_b
{Intrinsic::mips_bneg_d, 57401}, // __builtin_msa_bneg_d
{Intrinsic::mips_bneg_h, 57422}, // __builtin_msa_bneg_h
{Intrinsic::mips_bneg_w, 57443}, // __builtin_msa_bneg_w
{Intrinsic::mips_bnegi_b, 57464}, // __builtin_msa_bnegi_b
{Intrinsic::mips_bnegi_d, 57486}, // __builtin_msa_bnegi_d
{Intrinsic::mips_bnegi_h, 57508}, // __builtin_msa_bnegi_h
{Intrinsic::mips_bnegi_w, 57530}, // __builtin_msa_bnegi_w
{Intrinsic::mips_bnz_b, 57552}, // __builtin_msa_bnz_b
{Intrinsic::mips_bnz_d, 57572}, // __builtin_msa_bnz_d
{Intrinsic::mips_bnz_h, 57592}, // __builtin_msa_bnz_h
{Intrinsic::mips_bnz_v, 57612}, // __builtin_msa_bnz_v
{Intrinsic::mips_bnz_w, 57632}, // __builtin_msa_bnz_w
{Intrinsic::mips_bsel_v, 57676}, // __builtin_msa_bsel_v
{Intrinsic::mips_bseli_b, 57697}, // __builtin_msa_bseli_b
{Intrinsic::mips_bset_b, 57719}, // __builtin_msa_bset_b
{Intrinsic::mips_bset_d, 57740}, // __builtin_msa_bset_d
{Intrinsic::mips_bset_h, 57761}, // __builtin_msa_bset_h
{Intrinsic::mips_bset_w, 57782}, // __builtin_msa_bset_w
{Intrinsic::mips_bseti_b, 57803}, // __builtin_msa_bseti_b
{Intrinsic::mips_bseti_d, 57825}, // __builtin_msa_bseti_d
{Intrinsic::mips_bseti_h, 57847}, // __builtin_msa_bseti_h
{Intrinsic::mips_bseti_w, 57869}, // __builtin_msa_bseti_w
{Intrinsic::mips_bz_b, 57891}, // __builtin_msa_bz_b
{Intrinsic::mips_bz_d, 57910}, // __builtin_msa_bz_d
{Intrinsic::mips_bz_h, 57929}, // __builtin_msa_bz_h
{Intrinsic::mips_bz_v, 57948}, // __builtin_msa_bz_v
{Intrinsic::mips_bz_w, 57967}, // __builtin_msa_bz_w
{Intrinsic::mips_ceq_b, 57986}, // __builtin_msa_ceq_b
{Intrinsic::mips_ceq_d, 58006}, // __builtin_msa_ceq_d
{Intrinsic::mips_ceq_h, 58026}, // __builtin_msa_ceq_h
{Intrinsic::mips_ceq_w, 58046}, // __builtin_msa_ceq_w
{Intrinsic::mips_ceqi_b, 58066}, // __builtin_msa_ceqi_b
{Intrinsic::mips_ceqi_d, 58087}, // __builtin_msa_ceqi_d
{Intrinsic::mips_ceqi_h, 58108}, // __builtin_msa_ceqi_h
{Intrinsic::mips_ceqi_w, 58129}, // __builtin_msa_ceqi_w
{Intrinsic::mips_cfcmsa, 58150}, // __builtin_msa_cfcmsa
{Intrinsic::mips_cle_s_b, 58171}, // __builtin_msa_cle_s_b
{Intrinsic::mips_cle_s_d, 58193}, // __builtin_msa_cle_s_d
{Intrinsic::mips_cle_s_h, 58215}, // __builtin_msa_cle_s_h
{Intrinsic::mips_cle_s_w, 58237}, // __builtin_msa_cle_s_w
{Intrinsic::mips_cle_u_b, 58259}, // __builtin_msa_cle_u_b
{Intrinsic::mips_cle_u_d, 58281}, // __builtin_msa_cle_u_d
{Intrinsic::mips_cle_u_h, 58303}, // __builtin_msa_cle_u_h
{Intrinsic::mips_cle_u_w, 58325}, // __builtin_msa_cle_u_w
{Intrinsic::mips_clei_s_b, 58347}, // __builtin_msa_clei_s_b
{Intrinsic::mips_clei_s_d, 58370}, // __builtin_msa_clei_s_d
{Intrinsic::mips_clei_s_h, 58393}, // __builtin_msa_clei_s_h
{Intrinsic::mips_clei_s_w, 58416}, // __builtin_msa_clei_s_w
{Intrinsic::mips_clei_u_b, 58439}, // __builtin_msa_clei_u_b
{Intrinsic::mips_clei_u_d, 58462}, // __builtin_msa_clei_u_d
{Intrinsic::mips_clei_u_h, 58485}, // __builtin_msa_clei_u_h
{Intrinsic::mips_clei_u_w, 58508}, // __builtin_msa_clei_u_w
{Intrinsic::mips_clt_s_b, 58531}, // __builtin_msa_clt_s_b
{Intrinsic::mips_clt_s_d, 58553}, // __builtin_msa_clt_s_d
{Intrinsic::mips_clt_s_h, 58575}, // __builtin_msa_clt_s_h
{Intrinsic::mips_clt_s_w, 58597}, // __builtin_msa_clt_s_w
{Intrinsic::mips_clt_u_b, 58619}, // __builtin_msa_clt_u_b
{Intrinsic::mips_clt_u_d, 58641}, // __builtin_msa_clt_u_d
{Intrinsic::mips_clt_u_h, 58663}, // __builtin_msa_clt_u_h
{Intrinsic::mips_clt_u_w, 58685}, // __builtin_msa_clt_u_w
{Intrinsic::mips_clti_s_b, 58707}, // __builtin_msa_clti_s_b
{Intrinsic::mips_clti_s_d, 58730}, // __builtin_msa_clti_s_d
{Intrinsic::mips_clti_s_h, 58753}, // __builtin_msa_clti_s_h
{Intrinsic::mips_clti_s_w, 58776}, // __builtin_msa_clti_s_w
{Intrinsic::mips_clti_u_b, 58799}, // __builtin_msa_clti_u_b
{Intrinsic::mips_clti_u_d, 58822}, // __builtin_msa_clti_u_d
{Intrinsic::mips_clti_u_h, 58845}, // __builtin_msa_clti_u_h
{Intrinsic::mips_clti_u_w, 58868}, // __builtin_msa_clti_u_w
{Intrinsic::mips_copy_s_b, 59209}, // __builtin_msa_copy_s_b
{Intrinsic::mips_copy_s_d, 59232}, // __builtin_msa_copy_s_d
{Intrinsic::mips_copy_s_h, 59255}, // __builtin_msa_copy_s_h
{Intrinsic::mips_copy_s_w, 59278}, // __builtin_msa_copy_s_w
{Intrinsic::mips_copy_u_b, 59301}, // __builtin_msa_copy_u_b
{Intrinsic::mips_copy_u_d, 59324}, // __builtin_msa_copy_u_d
{Intrinsic::mips_copy_u_h, 59347}, // __builtin_msa_copy_u_h
{Intrinsic::mips_copy_u_w, 59370}, // __builtin_msa_copy_u_w
{Intrinsic::mips_ctcmsa, 59393}, // __builtin_msa_ctcmsa
{Intrinsic::mips_div_s_b, 59414}, // __builtin_msa_div_s_b
{Intrinsic::mips_div_s_d, 59436}, // __builtin_msa_div_s_d
{Intrinsic::mips_div_s_h, 59458}, // __builtin_msa_div_s_h
{Intrinsic::mips_div_s_w, 59480}, // __builtin_msa_div_s_w
{Intrinsic::mips_div_u_b, 59502}, // __builtin_msa_div_u_b
{Intrinsic::mips_div_u_d, 59524}, // __builtin_msa_div_u_d
{Intrinsic::mips_div_u_h, 59546}, // __builtin_msa_div_u_h
{Intrinsic::mips_div_u_w, 59568}, // __builtin_msa_div_u_w
{Intrinsic::mips_dotp_s_d, 59610}, // __builtin_msa_dotp_s_d
{Intrinsic::mips_dotp_s_h, 59633}, // __builtin_msa_dotp_s_h
{Intrinsic::mips_dotp_s_w, 59656}, // __builtin_msa_dotp_s_w
{Intrinsic::mips_dotp_u_d, 59679}, // __builtin_msa_dotp_u_d
{Intrinsic::mips_dotp_u_h, 59702}, // __builtin_msa_dotp_u_h
{Intrinsic::mips_dotp_u_w, 59725}, // __builtin_msa_dotp_u_w
{Intrinsic::mips_dpadd_s_d, 59772}, // __builtin_msa_dpadd_s_d
{Intrinsic::mips_dpadd_s_h, 59796}, // __builtin_msa_dpadd_s_h
{Intrinsic::mips_dpadd_s_w, 59820}, // __builtin_msa_dpadd_s_w
{Intrinsic::mips_dpadd_u_d, 59844}, // __builtin_msa_dpadd_u_d
{Intrinsic::mips_dpadd_u_h, 59868}, // __builtin_msa_dpadd_u_h
{Intrinsic::mips_dpadd_u_w, 59892}, // __builtin_msa_dpadd_u_w
{Intrinsic::mips_dpsub_s_d, 60291}, // __builtin_msa_dpsub_s_d
{Intrinsic::mips_dpsub_s_h, 60315}, // __builtin_msa_dpsub_s_h
{Intrinsic::mips_dpsub_s_w, 60339}, // __builtin_msa_dpsub_s_w
{Intrinsic::mips_dpsub_u_d, 60363}, // __builtin_msa_dpsub_u_d
{Intrinsic::mips_dpsub_u_h, 60387}, // __builtin_msa_dpsub_u_h
{Intrinsic::mips_dpsub_u_w, 60411}, // __builtin_msa_dpsub_u_w
{Intrinsic::mips_fadd_d, 60597}, // __builtin_msa_fadd_d
{Intrinsic::mips_fadd_w, 60618}, // __builtin_msa_fadd_w
{Intrinsic::mips_fcaf_d, 60639}, // __builtin_msa_fcaf_d
{Intrinsic::mips_fcaf_w, 60660}, // __builtin_msa_fcaf_w
{Intrinsic::mips_fceq_d, 60681}, // __builtin_msa_fceq_d
{Intrinsic::mips_fceq_w, 60702}, // __builtin_msa_fceq_w
{Intrinsic::mips_fclass_d, 60723}, // __builtin_msa_fclass_d
{Intrinsic::mips_fclass_w, 60746}, // __builtin_msa_fclass_w
{Intrinsic::mips_fcle_d, 60769}, // __builtin_msa_fcle_d
{Intrinsic::mips_fcle_w, 60790}, // __builtin_msa_fcle_w
{Intrinsic::mips_fclt_d, 60811}, // __builtin_msa_fclt_d
{Intrinsic::mips_fclt_w, 60832}, // __builtin_msa_fclt_w
{Intrinsic::mips_fcne_d, 60853}, // __builtin_msa_fcne_d
{Intrinsic::mips_fcne_w, 60874}, // __builtin_msa_fcne_w
{Intrinsic::mips_fcor_d, 60895}, // __builtin_msa_fcor_d
{Intrinsic::mips_fcor_w, 60916}, // __builtin_msa_fcor_w
{Intrinsic::mips_fcueq_d, 60937}, // __builtin_msa_fcueq_d
{Intrinsic::mips_fcueq_w, 60959}, // __builtin_msa_fcueq_w
{Intrinsic::mips_fcule_d, 60981}, // __builtin_msa_fcule_d
{Intrinsic::mips_fcule_w, 61003}, // __builtin_msa_fcule_w
{Intrinsic::mips_fcult_d, 61025}, // __builtin_msa_fcult_d
{Intrinsic::mips_fcult_w, 61047}, // __builtin_msa_fcult_w
{Intrinsic::mips_fcun_d, 61069}, // __builtin_msa_fcun_d
{Intrinsic::mips_fcun_w, 61090}, // __builtin_msa_fcun_w
{Intrinsic::mips_fcune_d, 61111}, // __builtin_msa_fcune_d
{Intrinsic::mips_fcune_w, 61133}, // __builtin_msa_fcune_w
{Intrinsic::mips_fdiv_d, 61155}, // __builtin_msa_fdiv_d
{Intrinsic::mips_fdiv_w, 61176}, // __builtin_msa_fdiv_w
{Intrinsic::mips_fexdo_h, 61197}, // __builtin_msa_fexdo_h
{Intrinsic::mips_fexdo_w, 61219}, // __builtin_msa_fexdo_w
{Intrinsic::mips_fexp2_d, 61241}, // __builtin_msa_fexp2_d
{Intrinsic::mips_fexp2_w, 61263}, // __builtin_msa_fexp2_w
{Intrinsic::mips_fexupl_d, 61285}, // __builtin_msa_fexupl_d
{Intrinsic::mips_fexupl_w, 61308}, // __builtin_msa_fexupl_w
{Intrinsic::mips_fexupr_d, 61331}, // __builtin_msa_fexupr_d
{Intrinsic::mips_fexupr_w, 61354}, // __builtin_msa_fexupr_w
{Intrinsic::mips_ffint_s_d, 61377}, // __builtin_msa_ffint_s_d
{Intrinsic::mips_ffint_s_w, 61401}, // __builtin_msa_ffint_s_w
{Intrinsic::mips_ffint_u_d, 61425}, // __builtin_msa_ffint_u_d
{Intrinsic::mips_ffint_u_w, 61449}, // __builtin_msa_ffint_u_w
{Intrinsic::mips_ffql_d, 61473}, // __builtin_msa_ffql_d
{Intrinsic::mips_ffql_w, 61494}, // __builtin_msa_ffql_w
{Intrinsic::mips_ffqr_d, 61515}, // __builtin_msa_ffqr_d
{Intrinsic::mips_ffqr_w, 61536}, // __builtin_msa_ffqr_w
{Intrinsic::mips_fill_b, 61557}, // __builtin_msa_fill_b
{Intrinsic::mips_fill_d, 61578}, // __builtin_msa_fill_d
{Intrinsic::mips_fill_h, 61599}, // __builtin_msa_fill_h
{Intrinsic::mips_fill_w, 61620}, // __builtin_msa_fill_w
{Intrinsic::mips_flog2_d, 61641}, // __builtin_msa_flog2_d
{Intrinsic::mips_flog2_w, 61663}, // __builtin_msa_flog2_w
{Intrinsic::mips_fmadd_d, 61685}, // __builtin_msa_fmadd_d
{Intrinsic::mips_fmadd_w, 61707}, // __builtin_msa_fmadd_w
{Intrinsic::mips_fmax_a_d, 61729}, // __builtin_msa_fmax_a_d
{Intrinsic::mips_fmax_a_w, 61752}, // __builtin_msa_fmax_a_w
{Intrinsic::mips_fmax_d, 61775}, // __builtin_msa_fmax_d
{Intrinsic::mips_fmax_w, 61796}, // __builtin_msa_fmax_w
{Intrinsic::mips_fmin_a_d, 61817}, // __builtin_msa_fmin_a_d
{Intrinsic::mips_fmin_a_w, 61840}, // __builtin_msa_fmin_a_w
{Intrinsic::mips_fmin_d, 61863}, // __builtin_msa_fmin_d
{Intrinsic::mips_fmin_w, 61884}, // __builtin_msa_fmin_w
{Intrinsic::mips_fmsub_d, 61905}, // __builtin_msa_fmsub_d
{Intrinsic::mips_fmsub_w, 61927}, // __builtin_msa_fmsub_w
{Intrinsic::mips_fmul_d, 61949}, // __builtin_msa_fmul_d
{Intrinsic::mips_fmul_w, 61970}, // __builtin_msa_fmul_w
{Intrinsic::mips_frcp_d, 61991}, // __builtin_msa_frcp_d
{Intrinsic::mips_frcp_w, 62012}, // __builtin_msa_frcp_w
{Intrinsic::mips_frint_d, 62033}, // __builtin_msa_frint_d
{Intrinsic::mips_frint_w, 62055}, // __builtin_msa_frint_w
{Intrinsic::mips_frsqrt_d, 62077}, // __builtin_msa_frsqrt_d
{Intrinsic::mips_frsqrt_w, 62100}, // __builtin_msa_frsqrt_w
{Intrinsic::mips_fsaf_d, 62123}, // __builtin_msa_fsaf_d
{Intrinsic::mips_fsaf_w, 62144}, // __builtin_msa_fsaf_w
{Intrinsic::mips_fseq_d, 62165}, // __builtin_msa_fseq_d
{Intrinsic::mips_fseq_w, 62186}, // __builtin_msa_fseq_w
{Intrinsic::mips_fsle_d, 62207}, // __builtin_msa_fsle_d
{Intrinsic::mips_fsle_w, 62228}, // __builtin_msa_fsle_w
{Intrinsic::mips_fslt_d, 62249}, // __builtin_msa_fslt_d
{Intrinsic::mips_fslt_w, 62270}, // __builtin_msa_fslt_w
{Intrinsic::mips_fsne_d, 62291}, // __builtin_msa_fsne_d
{Intrinsic::mips_fsne_w, 62312}, // __builtin_msa_fsne_w
{Intrinsic::mips_fsor_d, 62333}, // __builtin_msa_fsor_d
{Intrinsic::mips_fsor_w, 62354}, // __builtin_msa_fsor_w
{Intrinsic::mips_fsqrt_d, 62375}, // __builtin_msa_fsqrt_d
{Intrinsic::mips_fsqrt_w, 62397}, // __builtin_msa_fsqrt_w
{Intrinsic::mips_fsub_d, 62419}, // __builtin_msa_fsub_d
{Intrinsic::mips_fsub_w, 62440}, // __builtin_msa_fsub_w
{Intrinsic::mips_fsueq_d, 62461}, // __builtin_msa_fsueq_d
{Intrinsic::mips_fsueq_w, 62483}, // __builtin_msa_fsueq_w
{Intrinsic::mips_fsule_d, 62505}, // __builtin_msa_fsule_d
{Intrinsic::mips_fsule_w, 62527}, // __builtin_msa_fsule_w
{Intrinsic::mips_fsult_d, 62549}, // __builtin_msa_fsult_d
{Intrinsic::mips_fsult_w, 62571}, // __builtin_msa_fsult_w
{Intrinsic::mips_fsun_d, 62593}, // __builtin_msa_fsun_d
{Intrinsic::mips_fsun_w, 62614}, // __builtin_msa_fsun_w
{Intrinsic::mips_fsune_d, 62635}, // __builtin_msa_fsune_d
{Intrinsic::mips_fsune_w, 62657}, // __builtin_msa_fsune_w
{Intrinsic::mips_ftint_s_d, 62679}, // __builtin_msa_ftint_s_d
{Intrinsic::mips_ftint_s_w, 62703}, // __builtin_msa_ftint_s_w
{Intrinsic::mips_ftint_u_d, 62727}, // __builtin_msa_ftint_u_d
{Intrinsic::mips_ftint_u_w, 62751}, // __builtin_msa_ftint_u_w
{Intrinsic::mips_ftq_h, 62775}, // __builtin_msa_ftq_h
{Intrinsic::mips_ftq_w, 62795}, // __builtin_msa_ftq_w
{Intrinsic::mips_ftrunc_s_d, 62815}, // __builtin_msa_ftrunc_s_d
{Intrinsic::mips_ftrunc_s_w, 62840}, // __builtin_msa_ftrunc_s_w
{Intrinsic::mips_ftrunc_u_d, 62865}, // __builtin_msa_ftrunc_u_d
{Intrinsic::mips_ftrunc_u_w, 62890}, // __builtin_msa_ftrunc_u_w
{Intrinsic::mips_hadd_s_d, 62915}, // __builtin_msa_hadd_s_d
{Intrinsic::mips_hadd_s_h, 62938}, // __builtin_msa_hadd_s_h
{Intrinsic::mips_hadd_s_w, 62961}, // __builtin_msa_hadd_s_w
{Intrinsic::mips_hadd_u_d, 62984}, // __builtin_msa_hadd_u_d
{Intrinsic::mips_hadd_u_h, 63007}, // __builtin_msa_hadd_u_h
{Intrinsic::mips_hadd_u_w, 63030}, // __builtin_msa_hadd_u_w
{Intrinsic::mips_hsub_s_d, 63053}, // __builtin_msa_hsub_s_d
{Intrinsic::mips_hsub_s_h, 63076}, // __builtin_msa_hsub_s_h
{Intrinsic::mips_hsub_s_w, 63099}, // __builtin_msa_hsub_s_w
{Intrinsic::mips_hsub_u_d, 63122}, // __builtin_msa_hsub_u_d
{Intrinsic::mips_hsub_u_h, 63145}, // __builtin_msa_hsub_u_h
{Intrinsic::mips_hsub_u_w, 63168}, // __builtin_msa_hsub_u_w
{Intrinsic::mips_ilvev_b, 63191}, // __builtin_msa_ilvev_b
{Intrinsic::mips_ilvev_d, 63213}, // __builtin_msa_ilvev_d
{Intrinsic::mips_ilvev_h, 63235}, // __builtin_msa_ilvev_h
{Intrinsic::mips_ilvev_w, 63257}, // __builtin_msa_ilvev_w
{Intrinsic::mips_ilvl_b, 63279}, // __builtin_msa_ilvl_b
{Intrinsic::mips_ilvl_d, 63300}, // __builtin_msa_ilvl_d
{Intrinsic::mips_ilvl_h, 63321}, // __builtin_msa_ilvl_h
{Intrinsic::mips_ilvl_w, 63342}, // __builtin_msa_ilvl_w
{Intrinsic::mips_ilvod_b, 63363}, // __builtin_msa_ilvod_b
{Intrinsic::mips_ilvod_d, 63385}, // __builtin_msa_ilvod_d
{Intrinsic::mips_ilvod_h, 63407}, // __builtin_msa_ilvod_h
{Intrinsic::mips_ilvod_w, 63429}, // __builtin_msa_ilvod_w
{Intrinsic::mips_ilvr_b, 63451}, // __builtin_msa_ilvr_b
{Intrinsic::mips_ilvr_d, 63472}, // __builtin_msa_ilvr_d
{Intrinsic::mips_ilvr_h, 63493}, // __builtin_msa_ilvr_h
{Intrinsic::mips_ilvr_w, 63514}, // __builtin_msa_ilvr_w
{Intrinsic::mips_insert_b, 63535}, // __builtin_msa_insert_b
{Intrinsic::mips_insert_d, 63558}, // __builtin_msa_insert_d
{Intrinsic::mips_insert_h, 63581}, // __builtin_msa_insert_h
{Intrinsic::mips_insert_w, 63604}, // __builtin_msa_insert_w
{Intrinsic::mips_insve_b, 63647}, // __builtin_msa_insve_b
{Intrinsic::mips_insve_d, 63669}, // __builtin_msa_insve_d
{Intrinsic::mips_insve_h, 63691}, // __builtin_msa_insve_h
{Intrinsic::mips_insve_w, 63713}, // __builtin_msa_insve_w
{Intrinsic::mips_ld_b, 63755}, // __builtin_msa_ld_b
{Intrinsic::mips_ld_d, 63774}, // __builtin_msa_ld_d
{Intrinsic::mips_ld_h, 63793}, // __builtin_msa_ld_h
{Intrinsic::mips_ld_w, 63812}, // __builtin_msa_ld_w
{Intrinsic::mips_ldi_b, 63831}, // __builtin_msa_ldi_b
{Intrinsic::mips_ldi_d, 63851}, // __builtin_msa_ldi_d
{Intrinsic::mips_ldi_h, 63871}, // __builtin_msa_ldi_h
{Intrinsic::mips_ldi_w, 63891}, // __builtin_msa_ldi_w
{Intrinsic::mips_ldr_d, 63911}, // __builtin_msa_ldr_d
{Intrinsic::mips_ldr_w, 63931}, // __builtin_msa_ldr_w
{Intrinsic::mips_madd_q_h, 64028}, // __builtin_msa_madd_q_h
{Intrinsic::mips_madd_q_w, 64051}, // __builtin_msa_madd_q_w
{Intrinsic::mips_maddr_q_h, 64074}, // __builtin_msa_maddr_q_h
{Intrinsic::mips_maddr_q_w, 64098}, // __builtin_msa_maddr_q_w
{Intrinsic::mips_maddv_b, 64143}, // __builtin_msa_maddv_b
{Intrinsic::mips_maddv_d, 64165}, // __builtin_msa_maddv_d
{Intrinsic::mips_maddv_h, 64187}, // __builtin_msa_maddv_h
{Intrinsic::mips_maddv_w, 64209}, // __builtin_msa_maddv_w
{Intrinsic::mips_max_a_b, 64341}, // __builtin_msa_max_a_b
{Intrinsic::mips_max_a_d, 64363}, // __builtin_msa_max_a_d
{Intrinsic::mips_max_a_h, 64385}, // __builtin_msa_max_a_h
{Intrinsic::mips_max_a_w, 64407}, // __builtin_msa_max_a_w
{Intrinsic::mips_max_s_b, 64429}, // __builtin_msa_max_s_b
{Intrinsic::mips_max_s_d, 64451}, // __builtin_msa_max_s_d
{Intrinsic::mips_max_s_h, 64473}, // __builtin_msa_max_s_h
{Intrinsic::mips_max_s_w, 64495}, // __builtin_msa_max_s_w
{Intrinsic::mips_max_u_b, 64517}, // __builtin_msa_max_u_b
{Intrinsic::mips_max_u_d, 64539}, // __builtin_msa_max_u_d
{Intrinsic::mips_max_u_h, 64561}, // __builtin_msa_max_u_h
{Intrinsic::mips_max_u_w, 64583}, // __builtin_msa_max_u_w
{Intrinsic::mips_maxi_s_b, 64605}, // __builtin_msa_maxi_s_b
{Intrinsic::mips_maxi_s_d, 64628}, // __builtin_msa_maxi_s_d
{Intrinsic::mips_maxi_s_h, 64651}, // __builtin_msa_maxi_s_h
{Intrinsic::mips_maxi_s_w, 64674}, // __builtin_msa_maxi_s_w
{Intrinsic::mips_maxi_u_b, 64697}, // __builtin_msa_maxi_u_b
{Intrinsic::mips_maxi_u_d, 64720}, // __builtin_msa_maxi_u_d
{Intrinsic::mips_maxi_u_h, 64743}, // __builtin_msa_maxi_u_h
{Intrinsic::mips_maxi_u_w, 64766}, // __builtin_msa_maxi_u_w
{Intrinsic::mips_min_a_b, 64789}, // __builtin_msa_min_a_b
{Intrinsic::mips_min_a_d, 64811}, // __builtin_msa_min_a_d
{Intrinsic::mips_min_a_h, 64833}, // __builtin_msa_min_a_h
{Intrinsic::mips_min_a_w, 64855}, // __builtin_msa_min_a_w
{Intrinsic::mips_min_s_b, 64877}, // __builtin_msa_min_s_b
{Intrinsic::mips_min_s_d, 64899}, // __builtin_msa_min_s_d
{Intrinsic::mips_min_s_h, 64921}, // __builtin_msa_min_s_h
{Intrinsic::mips_min_s_w, 64943}, // __builtin_msa_min_s_w
{Intrinsic::mips_min_u_b, 64965}, // __builtin_msa_min_u_b
{Intrinsic::mips_min_u_d, 64987}, // __builtin_msa_min_u_d
{Intrinsic::mips_min_u_h, 65009}, // __builtin_msa_min_u_h
{Intrinsic::mips_min_u_w, 65031}, // __builtin_msa_min_u_w
{Intrinsic::mips_mini_s_b, 65053}, // __builtin_msa_mini_s_b
{Intrinsic::mips_mini_s_d, 65076}, // __builtin_msa_mini_s_d
{Intrinsic::mips_mini_s_h, 65099}, // __builtin_msa_mini_s_h
{Intrinsic::mips_mini_s_w, 65122}, // __builtin_msa_mini_s_w
{Intrinsic::mips_mini_u_b, 65145}, // __builtin_msa_mini_u_b
{Intrinsic::mips_mini_u_d, 65168}, // __builtin_msa_mini_u_d
{Intrinsic::mips_mini_u_h, 65191}, // __builtin_msa_mini_u_h
{Intrinsic::mips_mini_u_w, 65214}, // __builtin_msa_mini_u_w
{Intrinsic::mips_mod_s_b, 65237}, // __builtin_msa_mod_s_b
{Intrinsic::mips_mod_s_d, 65259}, // __builtin_msa_mod_s_d
{Intrinsic::mips_mod_s_h, 65281}, // __builtin_msa_mod_s_h
{Intrinsic::mips_mod_s_w, 65303}, // __builtin_msa_mod_s_w
{Intrinsic::mips_mod_u_b, 65325}, // __builtin_msa_mod_u_b
{Intrinsic::mips_mod_u_d, 65347}, // __builtin_msa_mod_u_d
{Intrinsic::mips_mod_u_h, 65369}, // __builtin_msa_mod_u_h
{Intrinsic::mips_mod_u_w, 65391}, // __builtin_msa_mod_u_w
{Intrinsic::mips_move_v, 65435}, // __builtin_msa_move_v
{Intrinsic::mips_msub_q_h, 65476}, // __builtin_msa_msub_q_h
{Intrinsic::mips_msub_q_w, 65499}, // __builtin_msa_msub_q_w
{Intrinsic::mips_msubr_q_h, 65522}, // __builtin_msa_msubr_q_h
{Intrinsic::mips_msubr_q_w, 65546}, // __builtin_msa_msubr_q_w
{Intrinsic::mips_msubv_b, 65591}, // __builtin_msa_msubv_b
{Intrinsic::mips_msubv_d, 65613}, // __builtin_msa_msubv_d
{Intrinsic::mips_msubv_h, 65635}, // __builtin_msa_msubv_h
{Intrinsic::mips_msubv_w, 65657}, // __builtin_msa_msubv_w
{Intrinsic::mips_mul_q_h, 65723}, // __builtin_msa_mul_q_h
{Intrinsic::mips_mul_q_w, 65745}, // __builtin_msa_mul_q_w
{Intrinsic::mips_mulr_q_h, 66009}, // __builtin_msa_mulr_q_h
{Intrinsic::mips_mulr_q_w, 66032}, // __builtin_msa_mulr_q_w
{Intrinsic::mips_mulv_b, 66151}, // __builtin_msa_mulv_b
{Intrinsic::mips_mulv_d, 66172}, // __builtin_msa_mulv_d
{Intrinsic::mips_mulv_h, 66193}, // __builtin_msa_mulv_h
{Intrinsic::mips_mulv_w, 66214}, // __builtin_msa_mulv_w
{Intrinsic::mips_nloc_b, 66235}, // __builtin_msa_nloc_b
{Intrinsic::mips_nloc_d, 66256}, // __builtin_msa_nloc_d
{Intrinsic::mips_nloc_h, 66277}, // __builtin_msa_nloc_h
{Intrinsic::mips_nloc_w, 66298}, // __builtin_msa_nloc_w
{Intrinsic::mips_nlzc_b, 66319}, // __builtin_msa_nlzc_b
{Intrinsic::mips_nlzc_d, 66340}, // __builtin_msa_nlzc_d
{Intrinsic::mips_nlzc_h, 66361}, // __builtin_msa_nlzc_h
{Intrinsic::mips_nlzc_w, 66382}, // __builtin_msa_nlzc_w
{Intrinsic::mips_nor_v, 66403}, // __builtin_msa_nor_v
{Intrinsic::mips_nori_b, 66423}, // __builtin_msa_nori_b
{Intrinsic::mips_or_v, 66444}, // __builtin_msa_or_v
{Intrinsic::mips_ori_b, 66463}, // __builtin_msa_ori_b
{Intrinsic::mips_pckev_b, 66508}, // __builtin_msa_pckev_b
{Intrinsic::mips_pckev_d, 66530}, // __builtin_msa_pckev_d
{Intrinsic::mips_pckev_h, 66552}, // __builtin_msa_pckev_h
{Intrinsic::mips_pckev_w, 66574}, // __builtin_msa_pckev_w
{Intrinsic::mips_pckod_b, 66596}, // __builtin_msa_pckod_b
{Intrinsic::mips_pckod_d, 66618}, // __builtin_msa_pckod_d
{Intrinsic::mips_pckod_h, 66640}, // __builtin_msa_pckod_h
{Intrinsic::mips_pckod_w, 66662}, // __builtin_msa_pckod_w
{Intrinsic::mips_pcnt_b, 66684}, // __builtin_msa_pcnt_b
{Intrinsic::mips_pcnt_d, 66705}, // __builtin_msa_pcnt_d
{Intrinsic::mips_pcnt_h, 66726}, // __builtin_msa_pcnt_h
{Intrinsic::mips_pcnt_w, 66747}, // __builtin_msa_pcnt_w
{Intrinsic::mips_sat_s_b, 67431}, // __builtin_msa_sat_s_b
{Intrinsic::mips_sat_s_d, 67453}, // __builtin_msa_sat_s_d
{Intrinsic::mips_sat_s_h, 67475}, // __builtin_msa_sat_s_h
{Intrinsic::mips_sat_s_w, 67497}, // __builtin_msa_sat_s_w
{Intrinsic::mips_sat_u_b, 67519}, // __builtin_msa_sat_u_b
{Intrinsic::mips_sat_u_d, 67541}, // __builtin_msa_sat_u_d
{Intrinsic::mips_sat_u_h, 67563}, // __builtin_msa_sat_u_h
{Intrinsic::mips_sat_u_w, 67585}, // __builtin_msa_sat_u_w
{Intrinsic::mips_shf_b, 67607}, // __builtin_msa_shf_b
{Intrinsic::mips_shf_h, 67627}, // __builtin_msa_shf_h
{Intrinsic::mips_shf_w, 67647}, // __builtin_msa_shf_w
{Intrinsic::mips_sld_b, 67949}, // __builtin_msa_sld_b
{Intrinsic::mips_sld_d, 67969}, // __builtin_msa_sld_d
{Intrinsic::mips_sld_h, 67989}, // __builtin_msa_sld_h
{Intrinsic::mips_sld_w, 68009}, // __builtin_msa_sld_w
{Intrinsic::mips_sldi_b, 68029}, // __builtin_msa_sldi_b
{Intrinsic::mips_sldi_d, 68050}, // __builtin_msa_sldi_d
{Intrinsic::mips_sldi_h, 68071}, // __builtin_msa_sldi_h
{Intrinsic::mips_sldi_w, 68092}, // __builtin_msa_sldi_w
{Intrinsic::mips_sll_b, 68113}, // __builtin_msa_sll_b
{Intrinsic::mips_sll_d, 68133}, // __builtin_msa_sll_d
{Intrinsic::mips_sll_h, 68153}, // __builtin_msa_sll_h
{Intrinsic::mips_sll_w, 68173}, // __builtin_msa_sll_w
{Intrinsic::mips_slli_b, 68193}, // __builtin_msa_slli_b
{Intrinsic::mips_slli_d, 68214}, // __builtin_msa_slli_d
{Intrinsic::mips_slli_h, 68235}, // __builtin_msa_slli_h
{Intrinsic::mips_slli_w, 68256}, // __builtin_msa_slli_w
{Intrinsic::mips_splat_b, 68277}, // __builtin_msa_splat_b
{Intrinsic::mips_splat_d, 68299}, // __builtin_msa_splat_d
{Intrinsic::mips_splat_h, 68321}, // __builtin_msa_splat_h
{Intrinsic::mips_splat_w, 68343}, // __builtin_msa_splat_w
{Intrinsic::mips_splati_b, 68365}, // __builtin_msa_splati_b
{Intrinsic::mips_splati_d, 68388}, // __builtin_msa_splati_d
{Intrinsic::mips_splati_h, 68411}, // __builtin_msa_splati_h
{Intrinsic::mips_splati_w, 68434}, // __builtin_msa_splati_w
{Intrinsic::mips_sra_b, 68457}, // __builtin_msa_sra_b
{Intrinsic::mips_sra_d, 68477}, // __builtin_msa_sra_d
{Intrinsic::mips_sra_h, 68497}, // __builtin_msa_sra_h
{Intrinsic::mips_sra_w, 68517}, // __builtin_msa_sra_w
{Intrinsic::mips_srai_b, 68537}, // __builtin_msa_srai_b
{Intrinsic::mips_srai_d, 68558}, // __builtin_msa_srai_d
{Intrinsic::mips_srai_h, 68579}, // __builtin_msa_srai_h
{Intrinsic::mips_srai_w, 68600}, // __builtin_msa_srai_w
{Intrinsic::mips_srar_b, 68621}, // __builtin_msa_srar_b
{Intrinsic::mips_srar_d, 68642}, // __builtin_msa_srar_d
{Intrinsic::mips_srar_h, 68663}, // __builtin_msa_srar_h
{Intrinsic::mips_srar_w, 68684}, // __builtin_msa_srar_w
{Intrinsic::mips_srari_b, 68705}, // __builtin_msa_srari_b
{Intrinsic::mips_srari_d, 68727}, // __builtin_msa_srari_d
{Intrinsic::mips_srari_h, 68749}, // __builtin_msa_srari_h
{Intrinsic::mips_srari_w, 68771}, // __builtin_msa_srari_w
{Intrinsic::mips_srl_b, 68793}, // __builtin_msa_srl_b
{Intrinsic::mips_srl_d, 68813}, // __builtin_msa_srl_d
{Intrinsic::mips_srl_h, 68833}, // __builtin_msa_srl_h
{Intrinsic::mips_srl_w, 68853}, // __builtin_msa_srl_w
{Intrinsic::mips_srli_b, 68873}, // __builtin_msa_srli_b
{Intrinsic::mips_srli_d, 68894}, // __builtin_msa_srli_d
{Intrinsic::mips_srli_h, 68915}, // __builtin_msa_srli_h
{Intrinsic::mips_srli_w, 68936}, // __builtin_msa_srli_w
{Intrinsic::mips_srlr_b, 68957}, // __builtin_msa_srlr_b
{Intrinsic::mips_srlr_d, 68978}, // __builtin_msa_srlr_d
{Intrinsic::mips_srlr_h, 68999}, // __builtin_msa_srlr_h
{Intrinsic::mips_srlr_w, 69020}, // __builtin_msa_srlr_w
{Intrinsic::mips_srlri_b, 69041}, // __builtin_msa_srlri_b
{Intrinsic::mips_srlri_d, 69063}, // __builtin_msa_srlri_d
{Intrinsic::mips_srlri_h, 69085}, // __builtin_msa_srlri_h
{Intrinsic::mips_srlri_w, 69107}, // __builtin_msa_srlri_w
{Intrinsic::mips_st_b, 69129}, // __builtin_msa_st_b
{Intrinsic::mips_st_d, 69148}, // __builtin_msa_st_d
{Intrinsic::mips_st_h, 69167}, // __builtin_msa_st_h
{Intrinsic::mips_st_w, 69186}, // __builtin_msa_st_w
{Intrinsic::mips_str_d, 69205}, // __builtin_msa_str_d
{Intrinsic::mips_str_w, 69225}, // __builtin_msa_str_w
{Intrinsic::mips_subs_s_b, 69415}, // __builtin_msa_subs_s_b
{Intrinsic::mips_subs_s_d, 69438}, // __builtin_msa_subs_s_d
{Intrinsic::mips_subs_s_h, 69461}, // __builtin_msa_subs_s_h
{Intrinsic::mips_subs_s_w, 69484}, // __builtin_msa_subs_s_w
{Intrinsic::mips_subs_u_b, 69507}, // __builtin_msa_subs_u_b
{Intrinsic::mips_subs_u_d, 69530}, // __builtin_msa_subs_u_d
{Intrinsic::mips_subs_u_h, 69553}, // __builtin_msa_subs_u_h
{Intrinsic::mips_subs_u_w, 69576}, // __builtin_msa_subs_u_w
{Intrinsic::mips_subsus_u_b, 69599}, // __builtin_msa_subsus_u_b
{Intrinsic::mips_subsus_u_d, 69624}, // __builtin_msa_subsus_u_d
{Intrinsic::mips_subsus_u_h, 69649}, // __builtin_msa_subsus_u_h
{Intrinsic::mips_subsus_u_w, 69674}, // __builtin_msa_subsus_u_w
{Intrinsic::mips_subsuu_s_b, 69699}, // __builtin_msa_subsuu_s_b
{Intrinsic::mips_subsuu_s_d, 69724}, // __builtin_msa_subsuu_s_d
{Intrinsic::mips_subsuu_s_h, 69749}, // __builtin_msa_subsuu_s_h
{Intrinsic::mips_subsuu_s_w, 69774}, // __builtin_msa_subsuu_s_w
{Intrinsic::mips_subv_b, 69945}, // __builtin_msa_subv_b
{Intrinsic::mips_subv_d, 69966}, // __builtin_msa_subv_d
{Intrinsic::mips_subv_h, 69987}, // __builtin_msa_subv_h
{Intrinsic::mips_subv_w, 70008}, // __builtin_msa_subv_w
{Intrinsic::mips_subvi_b, 70029}, // __builtin_msa_subvi_b
{Intrinsic::mips_subvi_d, 70051}, // __builtin_msa_subvi_d
{Intrinsic::mips_subvi_h, 70073}, // __builtin_msa_subvi_h
{Intrinsic::mips_subvi_w, 70095}, // __builtin_msa_subvi_w
{Intrinsic::mips_vshf_b, 70117}, // __builtin_msa_vshf_b
{Intrinsic::mips_vshf_d, 70138}, // __builtin_msa_vshf_d
{Intrinsic::mips_vshf_h, 70159}, // __builtin_msa_vshf_h
{Intrinsic::mips_vshf_w, 70180}, // __builtin_msa_vshf_w
{Intrinsic::mips_xor_v, 70222}, // __builtin_msa_xor_v
{Intrinsic::mips_xori_b, 70242}, // __builtin_msa_xori_b
};
auto I = std::lower_bound(std::begin(mipsNames),
std::end(mipsNames),
BuiltinNameStr);
if (I != std::end(mipsNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "nvvm") {
static const BuiltinEntry nvvmNames[] = {
{Intrinsic::nvvm_add_rm_d, 70263}, // __nvvm_add_rm_d
{Intrinsic::nvvm_add_rm_f, 70279}, // __nvvm_add_rm_f
{Intrinsic::nvvm_add_rm_ftz_f, 70295}, // __nvvm_add_rm_ftz_f
{Intrinsic::nvvm_add_rn_d, 70315}, // __nvvm_add_rn_d
{Intrinsic::nvvm_add_rn_f, 70331}, // __nvvm_add_rn_f
{Intrinsic::nvvm_add_rn_ftz_f, 70347}, // __nvvm_add_rn_ftz_f
{Intrinsic::nvvm_add_rp_d, 70367}, // __nvvm_add_rp_d
{Intrinsic::nvvm_add_rp_f, 70383}, // __nvvm_add_rp_f
{Intrinsic::nvvm_add_rp_ftz_f, 70399}, // __nvvm_add_rp_ftz_f
{Intrinsic::nvvm_add_rz_d, 70419}, // __nvvm_add_rz_d
{Intrinsic::nvvm_add_rz_f, 70435}, // __nvvm_add_rz_f
{Intrinsic::nvvm_add_rz_ftz_f, 70451}, // __nvvm_add_rz_ftz_f
{Intrinsic::nvvm_barrier, 70508}, // __nvvm_bar
{Intrinsic::nvvm_barrier0_and, 70590}, // __nvvm_bar0_and
{Intrinsic::nvvm_barrier0_or, 70606}, // __nvvm_bar0_or
{Intrinsic::nvvm_barrier0_popc, 70621}, // __nvvm_bar0_popc
{Intrinsic::nvvm_barrier_n, 70519}, // __nvvm_bar_n
{Intrinsic::nvvm_bar_sync, 70471}, // __nvvm_bar_sync
{Intrinsic::nvvm_bar_warp_sync, 70487}, // __nvvm_bar_warp_sync
{Intrinsic::nvvm_barrier_sync, 70532}, // __nvvm_barrier_sync
{Intrinsic::nvvm_barrier_sync_cnt, 70552}, // __nvvm_barrier_sync_cnt
{Intrinsic::nvvm_bitcast_d2ll, 70638}, // __nvvm_bitcast_d2ll
{Intrinsic::nvvm_bitcast_f2i, 70658}, // __nvvm_bitcast_f2i
{Intrinsic::nvvm_bitcast_i2f, 70677}, // __nvvm_bitcast_i2f
{Intrinsic::nvvm_bitcast_ll2d, 70696}, // __nvvm_bitcast_ll2d
{Intrinsic::nvvm_ceil_d, 70716}, // __nvvm_ceil_d
{Intrinsic::nvvm_ceil_f, 70730}, // __nvvm_ceil_f
{Intrinsic::nvvm_ceil_ftz_f, 70744}, // __nvvm_ceil_ftz_f
{Intrinsic::nvvm_cos_approx_f, 70762}, // __nvvm_cos_approx_f
{Intrinsic::nvvm_cos_approx_ftz_f, 70782}, // __nvvm_cos_approx_ftz_f
{Intrinsic::nvvm_d2f_rm, 70806}, // __nvvm_d2f_rm
{Intrinsic::nvvm_d2f_rm_ftz, 70820}, // __nvvm_d2f_rm_ftz
{Intrinsic::nvvm_d2f_rn, 70838}, // __nvvm_d2f_rn
{Intrinsic::nvvm_d2f_rn_ftz, 70852}, // __nvvm_d2f_rn_ftz
{Intrinsic::nvvm_d2f_rp, 70870}, // __nvvm_d2f_rp
{Intrinsic::nvvm_d2f_rp_ftz, 70884}, // __nvvm_d2f_rp_ftz
{Intrinsic::nvvm_d2f_rz, 70902}, // __nvvm_d2f_rz
{Intrinsic::nvvm_d2f_rz_ftz, 70916}, // __nvvm_d2f_rz_ftz
{Intrinsic::nvvm_d2i_hi, 70934}, // __nvvm_d2i_hi
{Intrinsic::nvvm_d2i_lo, 70948}, // __nvvm_d2i_lo
{Intrinsic::nvvm_d2i_rm, 70962}, // __nvvm_d2i_rm
{Intrinsic::nvvm_d2i_rn, 70976}, // __nvvm_d2i_rn
{Intrinsic::nvvm_d2i_rp, 70990}, // __nvvm_d2i_rp
{Intrinsic::nvvm_d2i_rz, 71004}, // __nvvm_d2i_rz
{Intrinsic::nvvm_d2ll_rm, 71018}, // __nvvm_d2ll_rm
{Intrinsic::nvvm_d2ll_rn, 71033}, // __nvvm_d2ll_rn
{Intrinsic::nvvm_d2ll_rp, 71048}, // __nvvm_d2ll_rp
{Intrinsic::nvvm_d2ll_rz, 71063}, // __nvvm_d2ll_rz
{Intrinsic::nvvm_d2ui_rm, 71078}, // __nvvm_d2ui_rm
{Intrinsic::nvvm_d2ui_rn, 71093}, // __nvvm_d2ui_rn
{Intrinsic::nvvm_d2ui_rp, 71108}, // __nvvm_d2ui_rp
{Intrinsic::nvvm_d2ui_rz, 71123}, // __nvvm_d2ui_rz
{Intrinsic::nvvm_d2ull_rm, 71138}, // __nvvm_d2ull_rm
{Intrinsic::nvvm_d2ull_rn, 71154}, // __nvvm_d2ull_rn
{Intrinsic::nvvm_d2ull_rp, 71170}, // __nvvm_d2ull_rp
{Intrinsic::nvvm_d2ull_rz, 71186}, // __nvvm_d2ull_rz
{Intrinsic::nvvm_div_approx_f, 71202}, // __nvvm_div_approx_f
{Intrinsic::nvvm_div_approx_ftz_f, 71222}, // __nvvm_div_approx_ftz_f
{Intrinsic::nvvm_div_rm_d, 71246}, // __nvvm_div_rm_d
{Intrinsic::nvvm_div_rm_f, 71262}, // __nvvm_div_rm_f
{Intrinsic::nvvm_div_rm_ftz_f, 71278}, // __nvvm_div_rm_ftz_f
{Intrinsic::nvvm_div_rn_d, 71298}, // __nvvm_div_rn_d
{Intrinsic::nvvm_div_rn_f, 71314}, // __nvvm_div_rn_f
{Intrinsic::nvvm_div_rn_ftz_f, 71330}, // __nvvm_div_rn_ftz_f
{Intrinsic::nvvm_div_rp_d, 71350}, // __nvvm_div_rp_d
{Intrinsic::nvvm_div_rp_f, 71366}, // __nvvm_div_rp_f
{Intrinsic::nvvm_div_rp_ftz_f, 71382}, // __nvvm_div_rp_ftz_f
{Intrinsic::nvvm_div_rz_d, 71402}, // __nvvm_div_rz_d
{Intrinsic::nvvm_div_rz_f, 71418}, // __nvvm_div_rz_f
{Intrinsic::nvvm_div_rz_ftz_f, 71434}, // __nvvm_div_rz_ftz_f
{Intrinsic::nvvm_ex2_approx_d, 71454}, // __nvvm_ex2_approx_d
{Intrinsic::nvvm_ex2_approx_f, 71474}, // __nvvm_ex2_approx_f
{Intrinsic::nvvm_ex2_approx_ftz_f, 71494}, // __nvvm_ex2_approx_ftz_f
{Intrinsic::nvvm_f2h_rn, 71518}, // __nvvm_f2h_rn
{Intrinsic::nvvm_f2h_rn_ftz, 71532}, // __nvvm_f2h_rn_ftz
{Intrinsic::nvvm_f2i_rm, 71550}, // __nvvm_f2i_rm
{Intrinsic::nvvm_f2i_rm_ftz, 71564}, // __nvvm_f2i_rm_ftz
{Intrinsic::nvvm_f2i_rn, 71582}, // __nvvm_f2i_rn
{Intrinsic::nvvm_f2i_rn_ftz, 71596}, // __nvvm_f2i_rn_ftz
{Intrinsic::nvvm_f2i_rp, 71614}, // __nvvm_f2i_rp
{Intrinsic::nvvm_f2i_rp_ftz, 71628}, // __nvvm_f2i_rp_ftz
{Intrinsic::nvvm_f2i_rz, 71646}, // __nvvm_f2i_rz
{Intrinsic::nvvm_f2i_rz_ftz, 71660}, // __nvvm_f2i_rz_ftz
{Intrinsic::nvvm_f2ll_rm, 71678}, // __nvvm_f2ll_rm
{Intrinsic::nvvm_f2ll_rm_ftz, 71693}, // __nvvm_f2ll_rm_ftz
{Intrinsic::nvvm_f2ll_rn, 71712}, // __nvvm_f2ll_rn
{Intrinsic::nvvm_f2ll_rn_ftz, 71727}, // __nvvm_f2ll_rn_ftz
{Intrinsic::nvvm_f2ll_rp, 71746}, // __nvvm_f2ll_rp
{Intrinsic::nvvm_f2ll_rp_ftz, 71761}, // __nvvm_f2ll_rp_ftz
{Intrinsic::nvvm_f2ll_rz, 71780}, // __nvvm_f2ll_rz
{Intrinsic::nvvm_f2ll_rz_ftz, 71795}, // __nvvm_f2ll_rz_ftz
{Intrinsic::nvvm_f2ui_rm, 71814}, // __nvvm_f2ui_rm
{Intrinsic::nvvm_f2ui_rm_ftz, 71829}, // __nvvm_f2ui_rm_ftz
{Intrinsic::nvvm_f2ui_rn, 71848}, // __nvvm_f2ui_rn
{Intrinsic::nvvm_f2ui_rn_ftz, 71863}, // __nvvm_f2ui_rn_ftz
{Intrinsic::nvvm_f2ui_rp, 71882}, // __nvvm_f2ui_rp
{Intrinsic::nvvm_f2ui_rp_ftz, 71897}, // __nvvm_f2ui_rp_ftz
{Intrinsic::nvvm_f2ui_rz, 71916}, // __nvvm_f2ui_rz
{Intrinsic::nvvm_f2ui_rz_ftz, 71931}, // __nvvm_f2ui_rz_ftz
{Intrinsic::nvvm_f2ull_rm, 71950}, // __nvvm_f2ull_rm
{Intrinsic::nvvm_f2ull_rm_ftz, 71966}, // __nvvm_f2ull_rm_ftz
{Intrinsic::nvvm_f2ull_rn, 71986}, // __nvvm_f2ull_rn
{Intrinsic::nvvm_f2ull_rn_ftz, 72002}, // __nvvm_f2ull_rn_ftz
{Intrinsic::nvvm_f2ull_rp, 72022}, // __nvvm_f2ull_rp
{Intrinsic::nvvm_f2ull_rp_ftz, 72038}, // __nvvm_f2ull_rp_ftz
{Intrinsic::nvvm_f2ull_rz, 72058}, // __nvvm_f2ull_rz
{Intrinsic::nvvm_f2ull_rz_ftz, 72074}, // __nvvm_f2ull_rz_ftz
{Intrinsic::nvvm_fabs_d, 72094}, // __nvvm_fabs_d
{Intrinsic::nvvm_fabs_f, 72108}, // __nvvm_fabs_f
{Intrinsic::nvvm_fabs_ftz_f, 72122}, // __nvvm_fabs_ftz_f
{Intrinsic::nvvm_floor_d, 72140}, // __nvvm_floor_d
{Intrinsic::nvvm_floor_f, 72155}, // __nvvm_floor_f
{Intrinsic::nvvm_floor_ftz_f, 72170}, // __nvvm_floor_ftz_f
{Intrinsic::nvvm_fma_rm_d, 72189}, // __nvvm_fma_rm_d
{Intrinsic::nvvm_fma_rm_f, 72205}, // __nvvm_fma_rm_f
{Intrinsic::nvvm_fma_rm_ftz_f, 72221}, // __nvvm_fma_rm_ftz_f
{Intrinsic::nvvm_fma_rn_d, 72241}, // __nvvm_fma_rn_d
{Intrinsic::nvvm_fma_rn_f, 72257}, // __nvvm_fma_rn_f
{Intrinsic::nvvm_fma_rn_ftz_f, 72273}, // __nvvm_fma_rn_ftz_f
{Intrinsic::nvvm_fma_rp_d, 72293}, // __nvvm_fma_rp_d
{Intrinsic::nvvm_fma_rp_f, 72309}, // __nvvm_fma_rp_f
{Intrinsic::nvvm_fma_rp_ftz_f, 72325}, // __nvvm_fma_rp_ftz_f
{Intrinsic::nvvm_fma_rz_d, 72345}, // __nvvm_fma_rz_d
{Intrinsic::nvvm_fma_rz_f, 72361}, // __nvvm_fma_rz_f
{Intrinsic::nvvm_fma_rz_ftz_f, 72377}, // __nvvm_fma_rz_ftz_f
{Intrinsic::nvvm_fmax_d, 72397}, // __nvvm_fmax_d
{Intrinsic::nvvm_fmax_f, 72411}, // __nvvm_fmax_f
{Intrinsic::nvvm_fmax_ftz_f, 72425}, // __nvvm_fmax_ftz_f
{Intrinsic::nvvm_fmin_d, 72443}, // __nvvm_fmin_d
{Intrinsic::nvvm_fmin_f, 72457}, // __nvvm_fmin_f
{Intrinsic::nvvm_fmin_ftz_f, 72471}, // __nvvm_fmin_ftz_f
{Intrinsic::nvvm_fns, 72489}, // __nvvm_fns
{Intrinsic::nvvm_i2d_rm, 72500}, // __nvvm_i2d_rm
{Intrinsic::nvvm_i2d_rn, 72514}, // __nvvm_i2d_rn
{Intrinsic::nvvm_i2d_rp, 72528}, // __nvvm_i2d_rp
{Intrinsic::nvvm_i2d_rz, 72542}, // __nvvm_i2d_rz
{Intrinsic::nvvm_i2f_rm, 72556}, // __nvvm_i2f_rm
{Intrinsic::nvvm_i2f_rn, 72570}, // __nvvm_i2f_rn
{Intrinsic::nvvm_i2f_rp, 72584}, // __nvvm_i2f_rp
{Intrinsic::nvvm_i2f_rz, 72598}, // __nvvm_i2f_rz
{Intrinsic::nvvm_isspacep_const, 72612}, // __nvvm_isspacep_const
{Intrinsic::nvvm_isspacep_global, 72634}, // __nvvm_isspacep_global
{Intrinsic::nvvm_isspacep_local, 72657}, // __nvvm_isspacep_local
{Intrinsic::nvvm_isspacep_shared, 72679}, // __nvvm_isspacep_shared
{Intrinsic::nvvm_istypep_sampler, 72702}, // __nvvm_istypep_sampler
{Intrinsic::nvvm_istypep_surface, 72725}, // __nvvm_istypep_surface
{Intrinsic::nvvm_istypep_texture, 72748}, // __nvvm_istypep_texture
{Intrinsic::nvvm_lg2_approx_d, 72771}, // __nvvm_lg2_approx_d
{Intrinsic::nvvm_lg2_approx_f, 72791}, // __nvvm_lg2_approx_f
{Intrinsic::nvvm_lg2_approx_ftz_f, 72811}, // __nvvm_lg2_approx_ftz_f
{Intrinsic::nvvm_ll2d_rm, 72835}, // __nvvm_ll2d_rm
{Intrinsic::nvvm_ll2d_rn, 72850}, // __nvvm_ll2d_rn
{Intrinsic::nvvm_ll2d_rp, 72865}, // __nvvm_ll2d_rp
{Intrinsic::nvvm_ll2d_rz, 72880}, // __nvvm_ll2d_rz
{Intrinsic::nvvm_ll2f_rm, 72895}, // __nvvm_ll2f_rm
{Intrinsic::nvvm_ll2f_rn, 72910}, // __nvvm_ll2f_rn
{Intrinsic::nvvm_ll2f_rp, 72925}, // __nvvm_ll2f_rp
{Intrinsic::nvvm_ll2f_rz, 72940}, // __nvvm_ll2f_rz
{Intrinsic::nvvm_lohi_i2d, 72955}, // __nvvm_lohi_i2d
{Intrinsic::nvvm_match_any_sync_i32, 72971}, // __nvvm_match_any_sync_i32
{Intrinsic::nvvm_match_any_sync_i64, 72997}, // __nvvm_match_any_sync_i64
{Intrinsic::nvvm_membar_cta, 73023}, // __nvvm_membar_cta
{Intrinsic::nvvm_membar_gl, 73041}, // __nvvm_membar_gl
{Intrinsic::nvvm_membar_sys, 73058}, // __nvvm_membar_sys
{Intrinsic::nvvm_mul24_i, 73284}, // __nvvm_mul24_i
{Intrinsic::nvvm_mul24_ui, 73299}, // __nvvm_mul24_ui
{Intrinsic::nvvm_mul_rm_d, 73076}, // __nvvm_mul_rm_d
{Intrinsic::nvvm_mul_rm_f, 73092}, // __nvvm_mul_rm_f
{Intrinsic::nvvm_mul_rm_ftz_f, 73108}, // __nvvm_mul_rm_ftz_f
{Intrinsic::nvvm_mul_rn_d, 73128}, // __nvvm_mul_rn_d
{Intrinsic::nvvm_mul_rn_f, 73144}, // __nvvm_mul_rn_f
{Intrinsic::nvvm_mul_rn_ftz_f, 73160}, // __nvvm_mul_rn_ftz_f
{Intrinsic::nvvm_mul_rp_d, 73180}, // __nvvm_mul_rp_d
{Intrinsic::nvvm_mul_rp_f, 73196}, // __nvvm_mul_rp_f
{Intrinsic::nvvm_mul_rp_ftz_f, 73212}, // __nvvm_mul_rp_ftz_f
{Intrinsic::nvvm_mul_rz_d, 73232}, // __nvvm_mul_rz_d
{Intrinsic::nvvm_mul_rz_f, 73248}, // __nvvm_mul_rz_f
{Intrinsic::nvvm_mul_rz_ftz_f, 73264}, // __nvvm_mul_rz_ftz_f
{Intrinsic::nvvm_mulhi_i, 73315}, // __nvvm_mulhi_i
{Intrinsic::nvvm_mulhi_ll, 73330}, // __nvvm_mulhi_ll
{Intrinsic::nvvm_mulhi_ui, 73346}, // __nvvm_mulhi_ui
{Intrinsic::nvvm_mulhi_ull, 73362}, // __nvvm_mulhi_ull
{Intrinsic::nvvm_prmt, 73379}, // __nvvm_prmt
{Intrinsic::nvvm_rcp_approx_ftz_d, 73391}, // __nvvm_rcp_approx_ftz_d
{Intrinsic::nvvm_rcp_rm_d, 73415}, // __nvvm_rcp_rm_d
{Intrinsic::nvvm_rcp_rm_f, 73431}, // __nvvm_rcp_rm_f
{Intrinsic::nvvm_rcp_rm_ftz_f, 73447}, // __nvvm_rcp_rm_ftz_f
{Intrinsic::nvvm_rcp_rn_d, 73467}, // __nvvm_rcp_rn_d
{Intrinsic::nvvm_rcp_rn_f, 73483}, // __nvvm_rcp_rn_f
{Intrinsic::nvvm_rcp_rn_ftz_f, 73499}, // __nvvm_rcp_rn_ftz_f
{Intrinsic::nvvm_rcp_rp_d, 73519}, // __nvvm_rcp_rp_d
{Intrinsic::nvvm_rcp_rp_f, 73535}, // __nvvm_rcp_rp_f
{Intrinsic::nvvm_rcp_rp_ftz_f, 73551}, // __nvvm_rcp_rp_ftz_f
{Intrinsic::nvvm_rcp_rz_d, 73571}, // __nvvm_rcp_rz_d
{Intrinsic::nvvm_rcp_rz_f, 73587}, // __nvvm_rcp_rz_f
{Intrinsic::nvvm_rcp_rz_ftz_f, 73603}, // __nvvm_rcp_rz_ftz_f
{Intrinsic::nvvm_read_ptx_sreg_clock, 73623}, // __nvvm_read_ptx_sreg_clock
{Intrinsic::nvvm_read_ptx_sreg_clock64, 73650}, // __nvvm_read_ptx_sreg_clock64
{Intrinsic::nvvm_read_ptx_sreg_ctaid_w, 73679}, // __nvvm_read_ptx_sreg_ctaid_w
{Intrinsic::nvvm_read_ptx_sreg_ctaid_x, 73708}, // __nvvm_read_ptx_sreg_ctaid_x
{Intrinsic::nvvm_read_ptx_sreg_ctaid_y, 73737}, // __nvvm_read_ptx_sreg_ctaid_y
{Intrinsic::nvvm_read_ptx_sreg_ctaid_z, 73766}, // __nvvm_read_ptx_sreg_ctaid_z
{Intrinsic::nvvm_read_ptx_sreg_envreg0, 73795}, // __nvvm_read_ptx_sreg_envreg0
{Intrinsic::nvvm_read_ptx_sreg_envreg1, 73824}, // __nvvm_read_ptx_sreg_envreg1
{Intrinsic::nvvm_read_ptx_sreg_envreg10, 73853}, // __nvvm_read_ptx_sreg_envreg10
{Intrinsic::nvvm_read_ptx_sreg_envreg11, 73883}, // __nvvm_read_ptx_sreg_envreg11
{Intrinsic::nvvm_read_ptx_sreg_envreg12, 73913}, // __nvvm_read_ptx_sreg_envreg12
{Intrinsic::nvvm_read_ptx_sreg_envreg13, 73943}, // __nvvm_read_ptx_sreg_envreg13
{Intrinsic::nvvm_read_ptx_sreg_envreg14, 73973}, // __nvvm_read_ptx_sreg_envreg14
{Intrinsic::nvvm_read_ptx_sreg_envreg15, 74003}, // __nvvm_read_ptx_sreg_envreg15
{Intrinsic::nvvm_read_ptx_sreg_envreg16, 74033}, // __nvvm_read_ptx_sreg_envreg16
{Intrinsic::nvvm_read_ptx_sreg_envreg17, 74063}, // __nvvm_read_ptx_sreg_envreg17
{Intrinsic::nvvm_read_ptx_sreg_envreg18, 74093}, // __nvvm_read_ptx_sreg_envreg18
{Intrinsic::nvvm_read_ptx_sreg_envreg19, 74123}, // __nvvm_read_ptx_sreg_envreg19
{Intrinsic::nvvm_read_ptx_sreg_envreg2, 74153}, // __nvvm_read_ptx_sreg_envreg2
{Intrinsic::nvvm_read_ptx_sreg_envreg20, 74182}, // __nvvm_read_ptx_sreg_envreg20
{Intrinsic::nvvm_read_ptx_sreg_envreg21, 74212}, // __nvvm_read_ptx_sreg_envreg21
{Intrinsic::nvvm_read_ptx_sreg_envreg22, 74242}, // __nvvm_read_ptx_sreg_envreg22
{Intrinsic::nvvm_read_ptx_sreg_envreg23, 74272}, // __nvvm_read_ptx_sreg_envreg23
{Intrinsic::nvvm_read_ptx_sreg_envreg24, 74302}, // __nvvm_read_ptx_sreg_envreg24
{Intrinsic::nvvm_read_ptx_sreg_envreg25, 74332}, // __nvvm_read_ptx_sreg_envreg25
{Intrinsic::nvvm_read_ptx_sreg_envreg26, 74362}, // __nvvm_read_ptx_sreg_envreg26
{Intrinsic::nvvm_read_ptx_sreg_envreg27, 74392}, // __nvvm_read_ptx_sreg_envreg27
{Intrinsic::nvvm_read_ptx_sreg_envreg28, 74422}, // __nvvm_read_ptx_sreg_envreg28
{Intrinsic::nvvm_read_ptx_sreg_envreg29, 74452}, // __nvvm_read_ptx_sreg_envreg29
{Intrinsic::nvvm_read_ptx_sreg_envreg3, 74482}, // __nvvm_read_ptx_sreg_envreg3
{Intrinsic::nvvm_read_ptx_sreg_envreg30, 74511}, // __nvvm_read_ptx_sreg_envreg30
{Intrinsic::nvvm_read_ptx_sreg_envreg31, 74541}, // __nvvm_read_ptx_sreg_envreg31
{Intrinsic::nvvm_read_ptx_sreg_envreg4, 74571}, // __nvvm_read_ptx_sreg_envreg4
{Intrinsic::nvvm_read_ptx_sreg_envreg5, 74600}, // __nvvm_read_ptx_sreg_envreg5
{Intrinsic::nvvm_read_ptx_sreg_envreg6, 74629}, // __nvvm_read_ptx_sreg_envreg6
{Intrinsic::nvvm_read_ptx_sreg_envreg7, 74658}, // __nvvm_read_ptx_sreg_envreg7
{Intrinsic::nvvm_read_ptx_sreg_envreg8, 74687}, // __nvvm_read_ptx_sreg_envreg8
{Intrinsic::nvvm_read_ptx_sreg_envreg9, 74716}, // __nvvm_read_ptx_sreg_envreg9
{Intrinsic::nvvm_read_ptx_sreg_gridid, 74745}, // __nvvm_read_ptx_sreg_gridid
{Intrinsic::nvvm_read_ptx_sreg_laneid, 74773}, // __nvvm_read_ptx_sreg_laneid
{Intrinsic::nvvm_read_ptx_sreg_lanemask_eq, 74801}, // __nvvm_read_ptx_sreg_lanemask_eq
{Intrinsic::nvvm_read_ptx_sreg_lanemask_ge, 74834}, // __nvvm_read_ptx_sreg_lanemask_ge
{Intrinsic::nvvm_read_ptx_sreg_lanemask_gt, 74867}, // __nvvm_read_ptx_sreg_lanemask_gt
{Intrinsic::nvvm_read_ptx_sreg_lanemask_le, 74900}, // __nvvm_read_ptx_sreg_lanemask_le
{Intrinsic::nvvm_read_ptx_sreg_lanemask_lt, 74933}, // __nvvm_read_ptx_sreg_lanemask_lt
{Intrinsic::nvvm_read_ptx_sreg_nctaid_w, 74966}, // __nvvm_read_ptx_sreg_nctaid_w
{Intrinsic::nvvm_read_ptx_sreg_nctaid_x, 74996}, // __nvvm_read_ptx_sreg_nctaid_x
{Intrinsic::nvvm_read_ptx_sreg_nctaid_y, 75026}, // __nvvm_read_ptx_sreg_nctaid_y
{Intrinsic::nvvm_read_ptx_sreg_nctaid_z, 75056}, // __nvvm_read_ptx_sreg_nctaid_z
{Intrinsic::nvvm_read_ptx_sreg_nsmid, 75086}, // __nvvm_read_ptx_sreg_nsmid
{Intrinsic::nvvm_read_ptx_sreg_ntid_w, 75113}, // __nvvm_read_ptx_sreg_ntid_w
{Intrinsic::nvvm_read_ptx_sreg_ntid_x, 75141}, // __nvvm_read_ptx_sreg_ntid_x
{Intrinsic::nvvm_read_ptx_sreg_ntid_y, 75169}, // __nvvm_read_ptx_sreg_ntid_y
{Intrinsic::nvvm_read_ptx_sreg_ntid_z, 75197}, // __nvvm_read_ptx_sreg_ntid_z
{Intrinsic::nvvm_read_ptx_sreg_nwarpid, 75225}, // __nvvm_read_ptx_sreg_nwarpid
{Intrinsic::nvvm_read_ptx_sreg_pm0, 75254}, // __nvvm_read_ptx_sreg_pm0
{Intrinsic::nvvm_read_ptx_sreg_pm1, 75279}, // __nvvm_read_ptx_sreg_pm1
{Intrinsic::nvvm_read_ptx_sreg_pm2, 75304}, // __nvvm_read_ptx_sreg_pm2
{Intrinsic::nvvm_read_ptx_sreg_pm3, 75329}, // __nvvm_read_ptx_sreg_pm3
{Intrinsic::nvvm_read_ptx_sreg_smid, 75354}, // __nvvm_read_ptx_sreg_smid
{Intrinsic::nvvm_read_ptx_sreg_tid_w, 75380}, // __nvvm_read_ptx_sreg_tid_w
{Intrinsic::nvvm_read_ptx_sreg_tid_x, 75407}, // __nvvm_read_ptx_sreg_tid_x
{Intrinsic::nvvm_read_ptx_sreg_tid_y, 75434}, // __nvvm_read_ptx_sreg_tid_y
{Intrinsic::nvvm_read_ptx_sreg_tid_z, 75461}, // __nvvm_read_ptx_sreg_tid_z
{Intrinsic::nvvm_read_ptx_sreg_warpid, 75488}, // __nvvm_read_ptx_sreg_warpid
{Intrinsic::nvvm_read_ptx_sreg_warpsize, 75516}, // __nvvm_read_ptx_sreg_warpsize
{Intrinsic::nvvm_rotate_b32, 75546}, // __nvvm_rotate_b32
{Intrinsic::nvvm_rotate_b64, 75564}, // __nvvm_rotate_b64
{Intrinsic::nvvm_rotate_right_b64, 75582}, // __nvvm_rotate_right_b64
{Intrinsic::nvvm_round_d, 75606}, // __nvvm_round_d
{Intrinsic::nvvm_round_f, 75621}, // __nvvm_round_f
{Intrinsic::nvvm_round_ftz_f, 75636}, // __nvvm_round_ftz_f
{Intrinsic::nvvm_rsqrt_approx_d, 75655}, // __nvvm_rsqrt_approx_d
{Intrinsic::nvvm_rsqrt_approx_f, 75677}, // __nvvm_rsqrt_approx_f
{Intrinsic::nvvm_rsqrt_approx_ftz_f, 75699}, // __nvvm_rsqrt_approx_ftz_f
{Intrinsic::nvvm_sad_i, 75725}, // __nvvm_sad_i
{Intrinsic::nvvm_sad_ui, 75738}, // __nvvm_sad_ui
{Intrinsic::nvvm_saturate_d, 75752}, // __nvvm_saturate_d
{Intrinsic::nvvm_saturate_f, 75770}, // __nvvm_saturate_f
{Intrinsic::nvvm_saturate_ftz_f, 75788}, // __nvvm_saturate_ftz_f
{Intrinsic::nvvm_shfl_bfly_f32, 75810}, // __nvvm_shfl_bfly_f32
{Intrinsic::nvvm_shfl_bfly_i32, 75831}, // __nvvm_shfl_bfly_i32
{Intrinsic::nvvm_shfl_down_f32, 75852}, // __nvvm_shfl_down_f32
{Intrinsic::nvvm_shfl_down_i32, 75873}, // __nvvm_shfl_down_i32
{Intrinsic::nvvm_shfl_idx_f32, 75894}, // __nvvm_shfl_idx_f32
{Intrinsic::nvvm_shfl_idx_i32, 75914}, // __nvvm_shfl_idx_i32
{Intrinsic::nvvm_shfl_sync_bfly_f32, 75934}, // __nvvm_shfl_sync_bfly_f32
{Intrinsic::nvvm_shfl_sync_bfly_i32, 75960}, // __nvvm_shfl_sync_bfly_i32
{Intrinsic::nvvm_shfl_sync_down_f32, 75986}, // __nvvm_shfl_sync_down_f32
{Intrinsic::nvvm_shfl_sync_down_i32, 76012}, // __nvvm_shfl_sync_down_i32
{Intrinsic::nvvm_shfl_sync_idx_f32, 76038}, // __nvvm_shfl_sync_idx_f32
{Intrinsic::nvvm_shfl_sync_idx_i32, 76063}, // __nvvm_shfl_sync_idx_i32
{Intrinsic::nvvm_shfl_sync_up_f32, 76088}, // __nvvm_shfl_sync_up_f32
{Intrinsic::nvvm_shfl_sync_up_i32, 76112}, // __nvvm_shfl_sync_up_i32
{Intrinsic::nvvm_shfl_up_f32, 76136}, // __nvvm_shfl_up_f32
{Intrinsic::nvvm_shfl_up_i32, 76155}, // __nvvm_shfl_up_i32
{Intrinsic::nvvm_sin_approx_f, 76174}, // __nvvm_sin_approx_f
{Intrinsic::nvvm_sin_approx_ftz_f, 76194}, // __nvvm_sin_approx_ftz_f
{Intrinsic::nvvm_sqrt_approx_f, 76218}, // __nvvm_sqrt_approx_f
{Intrinsic::nvvm_sqrt_approx_ftz_f, 76239}, // __nvvm_sqrt_approx_ftz_f
{Intrinsic::nvvm_sqrt_f, 76264}, // __nvvm_sqrt_f
{Intrinsic::nvvm_sqrt_rm_d, 76278}, // __nvvm_sqrt_rm_d
{Intrinsic::nvvm_sqrt_rm_f, 76295}, // __nvvm_sqrt_rm_f
{Intrinsic::nvvm_sqrt_rm_ftz_f, 76312}, // __nvvm_sqrt_rm_ftz_f
{Intrinsic::nvvm_sqrt_rn_d, 76333}, // __nvvm_sqrt_rn_d
{Intrinsic::nvvm_sqrt_rn_f, 76350}, // __nvvm_sqrt_rn_f
{Intrinsic::nvvm_sqrt_rn_ftz_f, 76367}, // __nvvm_sqrt_rn_ftz_f
{Intrinsic::nvvm_sqrt_rp_d, 76388}, // __nvvm_sqrt_rp_d
{Intrinsic::nvvm_sqrt_rp_f, 76405}, // __nvvm_sqrt_rp_f
{Intrinsic::nvvm_sqrt_rp_ftz_f, 76422}, // __nvvm_sqrt_rp_ftz_f
{Intrinsic::nvvm_sqrt_rz_d, 76443}, // __nvvm_sqrt_rz_d
{Intrinsic::nvvm_sqrt_rz_f, 76460}, // __nvvm_sqrt_rz_f
{Intrinsic::nvvm_sqrt_rz_ftz_f, 76477}, // __nvvm_sqrt_rz_ftz_f
{Intrinsic::nvvm_suq_array_size, 76498}, // __nvvm_suq_array_size
{Intrinsic::nvvm_suq_channel_data_type, 76520}, // __nvvm_suq_channel_data_type
{Intrinsic::nvvm_suq_channel_order, 76549}, // __nvvm_suq_channel_order
{Intrinsic::nvvm_suq_depth, 76574}, // __nvvm_suq_depth
{Intrinsic::nvvm_suq_height, 76591}, // __nvvm_suq_height
{Intrinsic::nvvm_suq_width, 76609}, // __nvvm_suq_width
{Intrinsic::nvvm_sust_b_1d_array_i16_clamp, 76626}, // __nvvm_sust_b_1d_array_i16_clamp
{Intrinsic::nvvm_sust_b_1d_array_i16_trap, 76659}, // __nvvm_sust_b_1d_array_i16_trap
{Intrinsic::nvvm_sust_b_1d_array_i16_zero, 76691}, // __nvvm_sust_b_1d_array_i16_zero
{Intrinsic::nvvm_sust_b_1d_array_i32_clamp, 76723}, // __nvvm_sust_b_1d_array_i32_clamp
{Intrinsic::nvvm_sust_b_1d_array_i32_trap, 76756}, // __nvvm_sust_b_1d_array_i32_trap
{Intrinsic::nvvm_sust_b_1d_array_i32_zero, 76788}, // __nvvm_sust_b_1d_array_i32_zero
{Intrinsic::nvvm_sust_b_1d_array_i64_clamp, 76820}, // __nvvm_sust_b_1d_array_i64_clamp
{Intrinsic::nvvm_sust_b_1d_array_i64_trap, 76853}, // __nvvm_sust_b_1d_array_i64_trap
{Intrinsic::nvvm_sust_b_1d_array_i64_zero, 76885}, // __nvvm_sust_b_1d_array_i64_zero
{Intrinsic::nvvm_sust_b_1d_array_i8_clamp, 76917}, // __nvvm_sust_b_1d_array_i8_clamp
{Intrinsic::nvvm_sust_b_1d_array_i8_trap, 76949}, // __nvvm_sust_b_1d_array_i8_trap
{Intrinsic::nvvm_sust_b_1d_array_i8_zero, 76980}, // __nvvm_sust_b_1d_array_i8_zero
{Intrinsic::nvvm_sust_b_1d_array_v2i16_clamp, 77011}, // __nvvm_sust_b_1d_array_v2i16_clamp
{Intrinsic::nvvm_sust_b_1d_array_v2i16_trap, 77046}, // __nvvm_sust_b_1d_array_v2i16_trap
{Intrinsic::nvvm_sust_b_1d_array_v2i16_zero, 77080}, // __nvvm_sust_b_1d_array_v2i16_zero
{Intrinsic::nvvm_sust_b_1d_array_v2i32_clamp, 77114}, // __nvvm_sust_b_1d_array_v2i32_clamp
{Intrinsic::nvvm_sust_b_1d_array_v2i32_trap, 77149}, // __nvvm_sust_b_1d_array_v2i32_trap
{Intrinsic::nvvm_sust_b_1d_array_v2i32_zero, 77183}, // __nvvm_sust_b_1d_array_v2i32_zero
{Intrinsic::nvvm_sust_b_1d_array_v2i64_clamp, 77217}, // __nvvm_sust_b_1d_array_v2i64_clamp
{Intrinsic::nvvm_sust_b_1d_array_v2i64_trap, 77252}, // __nvvm_sust_b_1d_array_v2i64_trap
{Intrinsic::nvvm_sust_b_1d_array_v2i64_zero, 77286}, // __nvvm_sust_b_1d_array_v2i64_zero
{Intrinsic::nvvm_sust_b_1d_array_v2i8_clamp, 77320}, // __nvvm_sust_b_1d_array_v2i8_clamp
{Intrinsic::nvvm_sust_b_1d_array_v2i8_trap, 77354}, // __nvvm_sust_b_1d_array_v2i8_trap
{Intrinsic::nvvm_sust_b_1d_array_v2i8_zero, 77387}, // __nvvm_sust_b_1d_array_v2i8_zero
{Intrinsic::nvvm_sust_b_1d_array_v4i16_clamp, 77420}, // __nvvm_sust_b_1d_array_v4i16_clamp
{Intrinsic::nvvm_sust_b_1d_array_v4i16_trap, 77455}, // __nvvm_sust_b_1d_array_v4i16_trap
{Intrinsic::nvvm_sust_b_1d_array_v4i16_zero, 77489}, // __nvvm_sust_b_1d_array_v4i16_zero
{Intrinsic::nvvm_sust_b_1d_array_v4i32_clamp, 77523}, // __nvvm_sust_b_1d_array_v4i32_clamp
{Intrinsic::nvvm_sust_b_1d_array_v4i32_trap, 77558}, // __nvvm_sust_b_1d_array_v4i32_trap
{Intrinsic::nvvm_sust_b_1d_array_v4i32_zero, 77592}, // __nvvm_sust_b_1d_array_v4i32_zero
{Intrinsic::nvvm_sust_b_1d_array_v4i8_clamp, 77626}, // __nvvm_sust_b_1d_array_v4i8_clamp
{Intrinsic::nvvm_sust_b_1d_array_v4i8_trap, 77660}, // __nvvm_sust_b_1d_array_v4i8_trap
{Intrinsic::nvvm_sust_b_1d_array_v4i8_zero, 77693}, // __nvvm_sust_b_1d_array_v4i8_zero
{Intrinsic::nvvm_sust_b_1d_i16_clamp, 77726}, // __nvvm_sust_b_1d_i16_clamp
{Intrinsic::nvvm_sust_b_1d_i16_trap, 77753}, // __nvvm_sust_b_1d_i16_trap
{Intrinsic::nvvm_sust_b_1d_i16_zero, 77779}, // __nvvm_sust_b_1d_i16_zero
{Intrinsic::nvvm_sust_b_1d_i32_clamp, 77805}, // __nvvm_sust_b_1d_i32_clamp
{Intrinsic::nvvm_sust_b_1d_i32_trap, 77832}, // __nvvm_sust_b_1d_i32_trap
{Intrinsic::nvvm_sust_b_1d_i32_zero, 77858}, // __nvvm_sust_b_1d_i32_zero
{Intrinsic::nvvm_sust_b_1d_i64_clamp, 77884}, // __nvvm_sust_b_1d_i64_clamp
{Intrinsic::nvvm_sust_b_1d_i64_trap, 77911}, // __nvvm_sust_b_1d_i64_trap
{Intrinsic::nvvm_sust_b_1d_i64_zero, 77937}, // __nvvm_sust_b_1d_i64_zero
{Intrinsic::nvvm_sust_b_1d_i8_clamp, 77963}, // __nvvm_sust_b_1d_i8_clamp
{Intrinsic::nvvm_sust_b_1d_i8_trap, 77989}, // __nvvm_sust_b_1d_i8_trap
{Intrinsic::nvvm_sust_b_1d_i8_zero, 78014}, // __nvvm_sust_b_1d_i8_zero
{Intrinsic::nvvm_sust_b_1d_v2i16_clamp, 78039}, // __nvvm_sust_b_1d_v2i16_clamp
{Intrinsic::nvvm_sust_b_1d_v2i16_trap, 78068}, // __nvvm_sust_b_1d_v2i16_trap
{Intrinsic::nvvm_sust_b_1d_v2i16_zero, 78096}, // __nvvm_sust_b_1d_v2i16_zero
{Intrinsic::nvvm_sust_b_1d_v2i32_clamp, 78124}, // __nvvm_sust_b_1d_v2i32_clamp
{Intrinsic::nvvm_sust_b_1d_v2i32_trap, 78153}, // __nvvm_sust_b_1d_v2i32_trap
{Intrinsic::nvvm_sust_b_1d_v2i32_zero, 78181}, // __nvvm_sust_b_1d_v2i32_zero
{Intrinsic::nvvm_sust_b_1d_v2i64_clamp, 78209}, // __nvvm_sust_b_1d_v2i64_clamp
{Intrinsic::nvvm_sust_b_1d_v2i64_trap, 78238}, // __nvvm_sust_b_1d_v2i64_trap
{Intrinsic::nvvm_sust_b_1d_v2i64_zero, 78266}, // __nvvm_sust_b_1d_v2i64_zero
{Intrinsic::nvvm_sust_b_1d_v2i8_clamp, 78294}, // __nvvm_sust_b_1d_v2i8_clamp
{Intrinsic::nvvm_sust_b_1d_v2i8_trap, 78322}, // __nvvm_sust_b_1d_v2i8_trap
{Intrinsic::nvvm_sust_b_1d_v2i8_zero, 78349}, // __nvvm_sust_b_1d_v2i8_zero
{Intrinsic::nvvm_sust_b_1d_v4i16_clamp, 78376}, // __nvvm_sust_b_1d_v4i16_clamp
{Intrinsic::nvvm_sust_b_1d_v4i16_trap, 78405}, // __nvvm_sust_b_1d_v4i16_trap
{Intrinsic::nvvm_sust_b_1d_v4i16_zero, 78433}, // __nvvm_sust_b_1d_v4i16_zero
{Intrinsic::nvvm_sust_b_1d_v4i32_clamp, 78461}, // __nvvm_sust_b_1d_v4i32_clamp
{Intrinsic::nvvm_sust_b_1d_v4i32_trap, 78490}, // __nvvm_sust_b_1d_v4i32_trap
{Intrinsic::nvvm_sust_b_1d_v4i32_zero, 78518}, // __nvvm_sust_b_1d_v4i32_zero
{Intrinsic::nvvm_sust_b_1d_v4i8_clamp, 78546}, // __nvvm_sust_b_1d_v4i8_clamp
{Intrinsic::nvvm_sust_b_1d_v4i8_trap, 78574}, // __nvvm_sust_b_1d_v4i8_trap
{Intrinsic::nvvm_sust_b_1d_v4i8_zero, 78601}, // __nvvm_sust_b_1d_v4i8_zero
{Intrinsic::nvvm_sust_b_2d_array_i16_clamp, 78628}, // __nvvm_sust_b_2d_array_i16_clamp
{Intrinsic::nvvm_sust_b_2d_array_i16_trap, 78661}, // __nvvm_sust_b_2d_array_i16_trap
{Intrinsic::nvvm_sust_b_2d_array_i16_zero, 78693}, // __nvvm_sust_b_2d_array_i16_zero
{Intrinsic::nvvm_sust_b_2d_array_i32_clamp, 78725}, // __nvvm_sust_b_2d_array_i32_clamp
{Intrinsic::nvvm_sust_b_2d_array_i32_trap, 78758}, // __nvvm_sust_b_2d_array_i32_trap
{Intrinsic::nvvm_sust_b_2d_array_i32_zero, 78790}, // __nvvm_sust_b_2d_array_i32_zero
{Intrinsic::nvvm_sust_b_2d_array_i64_clamp, 78822}, // __nvvm_sust_b_2d_array_i64_clamp
{Intrinsic::nvvm_sust_b_2d_array_i64_trap, 78855}, // __nvvm_sust_b_2d_array_i64_trap
{Intrinsic::nvvm_sust_b_2d_array_i64_zero, 78887}, // __nvvm_sust_b_2d_array_i64_zero
{Intrinsic::nvvm_sust_b_2d_array_i8_clamp, 78919}, // __nvvm_sust_b_2d_array_i8_clamp
{Intrinsic::nvvm_sust_b_2d_array_i8_trap, 78951}, // __nvvm_sust_b_2d_array_i8_trap
{Intrinsic::nvvm_sust_b_2d_array_i8_zero, 78982}, // __nvvm_sust_b_2d_array_i8_zero
{Intrinsic::nvvm_sust_b_2d_array_v2i16_clamp, 79013}, // __nvvm_sust_b_2d_array_v2i16_clamp
{Intrinsic::nvvm_sust_b_2d_array_v2i16_trap, 79048}, // __nvvm_sust_b_2d_array_v2i16_trap
{Intrinsic::nvvm_sust_b_2d_array_v2i16_zero, 79082}, // __nvvm_sust_b_2d_array_v2i16_zero
{Intrinsic::nvvm_sust_b_2d_array_v2i32_clamp, 79116}, // __nvvm_sust_b_2d_array_v2i32_clamp
{Intrinsic::nvvm_sust_b_2d_array_v2i32_trap, 79151}, // __nvvm_sust_b_2d_array_v2i32_trap
{Intrinsic::nvvm_sust_b_2d_array_v2i32_zero, 79185}, // __nvvm_sust_b_2d_array_v2i32_zero
{Intrinsic::nvvm_sust_b_2d_array_v2i64_clamp, 79219}, // __nvvm_sust_b_2d_array_v2i64_clamp
{Intrinsic::nvvm_sust_b_2d_array_v2i64_trap, 79254}, // __nvvm_sust_b_2d_array_v2i64_trap
{Intrinsic::nvvm_sust_b_2d_array_v2i64_zero, 79288}, // __nvvm_sust_b_2d_array_v2i64_zero
{Intrinsic::nvvm_sust_b_2d_array_v2i8_clamp, 79322}, // __nvvm_sust_b_2d_array_v2i8_clamp
{Intrinsic::nvvm_sust_b_2d_array_v2i8_trap, 79356}, // __nvvm_sust_b_2d_array_v2i8_trap
{Intrinsic::nvvm_sust_b_2d_array_v2i8_zero, 79389}, // __nvvm_sust_b_2d_array_v2i8_zero
{Intrinsic::nvvm_sust_b_2d_array_v4i16_clamp, 79422}, // __nvvm_sust_b_2d_array_v4i16_clamp
{Intrinsic::nvvm_sust_b_2d_array_v4i16_trap, 79457}, // __nvvm_sust_b_2d_array_v4i16_trap
{Intrinsic::nvvm_sust_b_2d_array_v4i16_zero, 79491}, // __nvvm_sust_b_2d_array_v4i16_zero
{Intrinsic::nvvm_sust_b_2d_array_v4i32_clamp, 79525}, // __nvvm_sust_b_2d_array_v4i32_clamp
{Intrinsic::nvvm_sust_b_2d_array_v4i32_trap, 79560}, // __nvvm_sust_b_2d_array_v4i32_trap
{Intrinsic::nvvm_sust_b_2d_array_v4i32_zero, 79594}, // __nvvm_sust_b_2d_array_v4i32_zero
{Intrinsic::nvvm_sust_b_2d_array_v4i8_clamp, 79628}, // __nvvm_sust_b_2d_array_v4i8_clamp
{Intrinsic::nvvm_sust_b_2d_array_v4i8_trap, 79662}, // __nvvm_sust_b_2d_array_v4i8_trap
{Intrinsic::nvvm_sust_b_2d_array_v4i8_zero, 79695}, // __nvvm_sust_b_2d_array_v4i8_zero
{Intrinsic::nvvm_sust_b_2d_i16_clamp, 79728}, // __nvvm_sust_b_2d_i16_clamp
{Intrinsic::nvvm_sust_b_2d_i16_trap, 79755}, // __nvvm_sust_b_2d_i16_trap
{Intrinsic::nvvm_sust_b_2d_i16_zero, 79781}, // __nvvm_sust_b_2d_i16_zero
{Intrinsic::nvvm_sust_b_2d_i32_clamp, 79807}, // __nvvm_sust_b_2d_i32_clamp
{Intrinsic::nvvm_sust_b_2d_i32_trap, 79834}, // __nvvm_sust_b_2d_i32_trap
{Intrinsic::nvvm_sust_b_2d_i32_zero, 79860}, // __nvvm_sust_b_2d_i32_zero
{Intrinsic::nvvm_sust_b_2d_i64_clamp, 79886}, // __nvvm_sust_b_2d_i64_clamp
{Intrinsic::nvvm_sust_b_2d_i64_trap, 79913}, // __nvvm_sust_b_2d_i64_trap
{Intrinsic::nvvm_sust_b_2d_i64_zero, 79939}, // __nvvm_sust_b_2d_i64_zero
{Intrinsic::nvvm_sust_b_2d_i8_clamp, 79965}, // __nvvm_sust_b_2d_i8_clamp
{Intrinsic::nvvm_sust_b_2d_i8_trap, 79991}, // __nvvm_sust_b_2d_i8_trap
{Intrinsic::nvvm_sust_b_2d_i8_zero, 80016}, // __nvvm_sust_b_2d_i8_zero
{Intrinsic::nvvm_sust_b_2d_v2i16_clamp, 80041}, // __nvvm_sust_b_2d_v2i16_clamp
{Intrinsic::nvvm_sust_b_2d_v2i16_trap, 80070}, // __nvvm_sust_b_2d_v2i16_trap
{Intrinsic::nvvm_sust_b_2d_v2i16_zero, 80098}, // __nvvm_sust_b_2d_v2i16_zero
{Intrinsic::nvvm_sust_b_2d_v2i32_clamp, 80126}, // __nvvm_sust_b_2d_v2i32_clamp
{Intrinsic::nvvm_sust_b_2d_v2i32_trap, 80155}, // __nvvm_sust_b_2d_v2i32_trap
{Intrinsic::nvvm_sust_b_2d_v2i32_zero, 80183}, // __nvvm_sust_b_2d_v2i32_zero
{Intrinsic::nvvm_sust_b_2d_v2i64_clamp, 80211}, // __nvvm_sust_b_2d_v2i64_clamp
{Intrinsic::nvvm_sust_b_2d_v2i64_trap, 80240}, // __nvvm_sust_b_2d_v2i64_trap
{Intrinsic::nvvm_sust_b_2d_v2i64_zero, 80268}, // __nvvm_sust_b_2d_v2i64_zero
{Intrinsic::nvvm_sust_b_2d_v2i8_clamp, 80296}, // __nvvm_sust_b_2d_v2i8_clamp
{Intrinsic::nvvm_sust_b_2d_v2i8_trap, 80324}, // __nvvm_sust_b_2d_v2i8_trap
{Intrinsic::nvvm_sust_b_2d_v2i8_zero, 80351}, // __nvvm_sust_b_2d_v2i8_zero
{Intrinsic::nvvm_sust_b_2d_v4i16_clamp, 80378}, // __nvvm_sust_b_2d_v4i16_clamp
{Intrinsic::nvvm_sust_b_2d_v4i16_trap, 80407}, // __nvvm_sust_b_2d_v4i16_trap
{Intrinsic::nvvm_sust_b_2d_v4i16_zero, 80435}, // __nvvm_sust_b_2d_v4i16_zero
{Intrinsic::nvvm_sust_b_2d_v4i32_clamp, 80463}, // __nvvm_sust_b_2d_v4i32_clamp
{Intrinsic::nvvm_sust_b_2d_v4i32_trap, 80492}, // __nvvm_sust_b_2d_v4i32_trap
{Intrinsic::nvvm_sust_b_2d_v4i32_zero, 80520}, // __nvvm_sust_b_2d_v4i32_zero
{Intrinsic::nvvm_sust_b_2d_v4i8_clamp, 80548}, // __nvvm_sust_b_2d_v4i8_clamp
{Intrinsic::nvvm_sust_b_2d_v4i8_trap, 80576}, // __nvvm_sust_b_2d_v4i8_trap
{Intrinsic::nvvm_sust_b_2d_v4i8_zero, 80603}, // __nvvm_sust_b_2d_v4i8_zero
{Intrinsic::nvvm_sust_b_3d_i16_clamp, 80630}, // __nvvm_sust_b_3d_i16_clamp
{Intrinsic::nvvm_sust_b_3d_i16_trap, 80657}, // __nvvm_sust_b_3d_i16_trap
{Intrinsic::nvvm_sust_b_3d_i16_zero, 80683}, // __nvvm_sust_b_3d_i16_zero
{Intrinsic::nvvm_sust_b_3d_i32_clamp, 80709}, // __nvvm_sust_b_3d_i32_clamp
{Intrinsic::nvvm_sust_b_3d_i32_trap, 80736}, // __nvvm_sust_b_3d_i32_trap
{Intrinsic::nvvm_sust_b_3d_i32_zero, 80762}, // __nvvm_sust_b_3d_i32_zero
{Intrinsic::nvvm_sust_b_3d_i64_clamp, 80788}, // __nvvm_sust_b_3d_i64_clamp
{Intrinsic::nvvm_sust_b_3d_i64_trap, 80815}, // __nvvm_sust_b_3d_i64_trap
{Intrinsic::nvvm_sust_b_3d_i64_zero, 80841}, // __nvvm_sust_b_3d_i64_zero
{Intrinsic::nvvm_sust_b_3d_i8_clamp, 80867}, // __nvvm_sust_b_3d_i8_clamp
{Intrinsic::nvvm_sust_b_3d_i8_trap, 80893}, // __nvvm_sust_b_3d_i8_trap
{Intrinsic::nvvm_sust_b_3d_i8_zero, 80918}, // __nvvm_sust_b_3d_i8_zero
{Intrinsic::nvvm_sust_b_3d_v2i16_clamp, 80943}, // __nvvm_sust_b_3d_v2i16_clamp
{Intrinsic::nvvm_sust_b_3d_v2i16_trap, 80972}, // __nvvm_sust_b_3d_v2i16_trap
{Intrinsic::nvvm_sust_b_3d_v2i16_zero, 81000}, // __nvvm_sust_b_3d_v2i16_zero
{Intrinsic::nvvm_sust_b_3d_v2i32_clamp, 81028}, // __nvvm_sust_b_3d_v2i32_clamp
{Intrinsic::nvvm_sust_b_3d_v2i32_trap, 81057}, // __nvvm_sust_b_3d_v2i32_trap
{Intrinsic::nvvm_sust_b_3d_v2i32_zero, 81085}, // __nvvm_sust_b_3d_v2i32_zero
{Intrinsic::nvvm_sust_b_3d_v2i64_clamp, 81113}, // __nvvm_sust_b_3d_v2i64_clamp
{Intrinsic::nvvm_sust_b_3d_v2i64_trap, 81142}, // __nvvm_sust_b_3d_v2i64_trap
{Intrinsic::nvvm_sust_b_3d_v2i64_zero, 81170}, // __nvvm_sust_b_3d_v2i64_zero
{Intrinsic::nvvm_sust_b_3d_v2i8_clamp, 81198}, // __nvvm_sust_b_3d_v2i8_clamp
{Intrinsic::nvvm_sust_b_3d_v2i8_trap, 81226}, // __nvvm_sust_b_3d_v2i8_trap
{Intrinsic::nvvm_sust_b_3d_v2i8_zero, 81253}, // __nvvm_sust_b_3d_v2i8_zero
{Intrinsic::nvvm_sust_b_3d_v4i16_clamp, 81280}, // __nvvm_sust_b_3d_v4i16_clamp
{Intrinsic::nvvm_sust_b_3d_v4i16_trap, 81309}, // __nvvm_sust_b_3d_v4i16_trap
{Intrinsic::nvvm_sust_b_3d_v4i16_zero, 81337}, // __nvvm_sust_b_3d_v4i16_zero
{Intrinsic::nvvm_sust_b_3d_v4i32_clamp, 81365}, // __nvvm_sust_b_3d_v4i32_clamp
{Intrinsic::nvvm_sust_b_3d_v4i32_trap, 81394}, // __nvvm_sust_b_3d_v4i32_trap
{Intrinsic::nvvm_sust_b_3d_v4i32_zero, 81422}, // __nvvm_sust_b_3d_v4i32_zero
{Intrinsic::nvvm_sust_b_3d_v4i8_clamp, 81450}, // __nvvm_sust_b_3d_v4i8_clamp
{Intrinsic::nvvm_sust_b_3d_v4i8_trap, 81478}, // __nvvm_sust_b_3d_v4i8_trap
{Intrinsic::nvvm_sust_b_3d_v4i8_zero, 81505}, // __nvvm_sust_b_3d_v4i8_zero
{Intrinsic::nvvm_sust_p_1d_array_i16_trap, 81532}, // __nvvm_sust_p_1d_array_i16_trap
{Intrinsic::nvvm_sust_p_1d_array_i32_trap, 81564}, // __nvvm_sust_p_1d_array_i32_trap
{Intrinsic::nvvm_sust_p_1d_array_i8_trap, 81596}, // __nvvm_sust_p_1d_array_i8_trap
{Intrinsic::nvvm_sust_p_1d_array_v2i16_trap, 81627}, // __nvvm_sust_p_1d_array_v2i16_trap
{Intrinsic::nvvm_sust_p_1d_array_v2i32_trap, 81661}, // __nvvm_sust_p_1d_array_v2i32_trap
{Intrinsic::nvvm_sust_p_1d_array_v2i8_trap, 81695}, // __nvvm_sust_p_1d_array_v2i8_trap
{Intrinsic::nvvm_sust_p_1d_array_v4i16_trap, 81728}, // __nvvm_sust_p_1d_array_v4i16_trap
{Intrinsic::nvvm_sust_p_1d_array_v4i32_trap, 81762}, // __nvvm_sust_p_1d_array_v4i32_trap
{Intrinsic::nvvm_sust_p_1d_array_v4i8_trap, 81796}, // __nvvm_sust_p_1d_array_v4i8_trap
{Intrinsic::nvvm_sust_p_1d_i16_trap, 81829}, // __nvvm_sust_p_1d_i16_trap
{Intrinsic::nvvm_sust_p_1d_i32_trap, 81855}, // __nvvm_sust_p_1d_i32_trap
{Intrinsic::nvvm_sust_p_1d_i8_trap, 81881}, // __nvvm_sust_p_1d_i8_trap
{Intrinsic::nvvm_sust_p_1d_v2i16_trap, 81906}, // __nvvm_sust_p_1d_v2i16_trap
{Intrinsic::nvvm_sust_p_1d_v2i32_trap, 81934}, // __nvvm_sust_p_1d_v2i32_trap
{Intrinsic::nvvm_sust_p_1d_v2i8_trap, 81962}, // __nvvm_sust_p_1d_v2i8_trap
{Intrinsic::nvvm_sust_p_1d_v4i16_trap, 81989}, // __nvvm_sust_p_1d_v4i16_trap
{Intrinsic::nvvm_sust_p_1d_v4i32_trap, 82017}, // __nvvm_sust_p_1d_v4i32_trap
{Intrinsic::nvvm_sust_p_1d_v4i8_trap, 82045}, // __nvvm_sust_p_1d_v4i8_trap
{Intrinsic::nvvm_sust_p_2d_array_i16_trap, 82072}, // __nvvm_sust_p_2d_array_i16_trap
{Intrinsic::nvvm_sust_p_2d_array_i32_trap, 82104}, // __nvvm_sust_p_2d_array_i32_trap
{Intrinsic::nvvm_sust_p_2d_array_i8_trap, 82136}, // __nvvm_sust_p_2d_array_i8_trap
{Intrinsic::nvvm_sust_p_2d_array_v2i16_trap, 82167}, // __nvvm_sust_p_2d_array_v2i16_trap
{Intrinsic::nvvm_sust_p_2d_array_v2i32_trap, 82201}, // __nvvm_sust_p_2d_array_v2i32_trap
{Intrinsic::nvvm_sust_p_2d_array_v2i8_trap, 82235}, // __nvvm_sust_p_2d_array_v2i8_trap
{Intrinsic::nvvm_sust_p_2d_array_v4i16_trap, 82268}, // __nvvm_sust_p_2d_array_v4i16_trap
{Intrinsic::nvvm_sust_p_2d_array_v4i32_trap, 82302}, // __nvvm_sust_p_2d_array_v4i32_trap
{Intrinsic::nvvm_sust_p_2d_array_v4i8_trap, 82336}, // __nvvm_sust_p_2d_array_v4i8_trap
{Intrinsic::nvvm_sust_p_2d_i16_trap, 82369}, // __nvvm_sust_p_2d_i16_trap
{Intrinsic::nvvm_sust_p_2d_i32_trap, 82395}, // __nvvm_sust_p_2d_i32_trap
{Intrinsic::nvvm_sust_p_2d_i8_trap, 82421}, // __nvvm_sust_p_2d_i8_trap
{Intrinsic::nvvm_sust_p_2d_v2i16_trap, 82446}, // __nvvm_sust_p_2d_v2i16_trap
{Intrinsic::nvvm_sust_p_2d_v2i32_trap, 82474}, // __nvvm_sust_p_2d_v2i32_trap
{Intrinsic::nvvm_sust_p_2d_v2i8_trap, 82502}, // __nvvm_sust_p_2d_v2i8_trap
{Intrinsic::nvvm_sust_p_2d_v4i16_trap, 82529}, // __nvvm_sust_p_2d_v4i16_trap
{Intrinsic::nvvm_sust_p_2d_v4i32_trap, 82557}, // __nvvm_sust_p_2d_v4i32_trap
{Intrinsic::nvvm_sust_p_2d_v4i8_trap, 82585}, // __nvvm_sust_p_2d_v4i8_trap
{Intrinsic::nvvm_sust_p_3d_i16_trap, 82612}, // __nvvm_sust_p_3d_i16_trap
{Intrinsic::nvvm_sust_p_3d_i32_trap, 82638}, // __nvvm_sust_p_3d_i32_trap
{Intrinsic::nvvm_sust_p_3d_i8_trap, 82664}, // __nvvm_sust_p_3d_i8_trap
{Intrinsic::nvvm_sust_p_3d_v2i16_trap, 82689}, // __nvvm_sust_p_3d_v2i16_trap
{Intrinsic::nvvm_sust_p_3d_v2i32_trap, 82717}, // __nvvm_sust_p_3d_v2i32_trap
{Intrinsic::nvvm_sust_p_3d_v2i8_trap, 82745}, // __nvvm_sust_p_3d_v2i8_trap
{Intrinsic::nvvm_sust_p_3d_v4i16_trap, 82772}, // __nvvm_sust_p_3d_v4i16_trap
{Intrinsic::nvvm_sust_p_3d_v4i32_trap, 82800}, // __nvvm_sust_p_3d_v4i32_trap
{Intrinsic::nvvm_sust_p_3d_v4i8_trap, 82828}, // __nvvm_sust_p_3d_v4i8_trap
{Intrinsic::nvvm_swap_lo_hi_b64, 82855}, // __nvvm_swap_lo_hi_b64
{Intrinsic::nvvm_trunc_d, 82877}, // __nvvm_trunc_d
{Intrinsic::nvvm_trunc_f, 82892}, // __nvvm_trunc_f
{Intrinsic::nvvm_trunc_ftz_f, 82907}, // __nvvm_trunc_ftz_f
{Intrinsic::nvvm_txq_array_size, 82926}, // __nvvm_txq_array_size
{Intrinsic::nvvm_txq_channel_data_type, 82948}, // __nvvm_txq_channel_data_type
{Intrinsic::nvvm_txq_channel_order, 82977}, // __nvvm_txq_channel_order
{Intrinsic::nvvm_txq_depth, 83002}, // __nvvm_txq_depth
{Intrinsic::nvvm_txq_height, 83019}, // __nvvm_txq_height
{Intrinsic::nvvm_txq_num_mipmap_levels, 83037}, // __nvvm_txq_num_mipmap_levels
{Intrinsic::nvvm_txq_num_samples, 83066}, // __nvvm_txq_num_samples
{Intrinsic::nvvm_txq_width, 83089}, // __nvvm_txq_width
{Intrinsic::nvvm_ui2d_rm, 83106}, // __nvvm_ui2d_rm
{Intrinsic::nvvm_ui2d_rn, 83121}, // __nvvm_ui2d_rn
{Intrinsic::nvvm_ui2d_rp, 83136}, // __nvvm_ui2d_rp
{Intrinsic::nvvm_ui2d_rz, 83151}, // __nvvm_ui2d_rz
{Intrinsic::nvvm_ui2f_rm, 83166}, // __nvvm_ui2f_rm
{Intrinsic::nvvm_ui2f_rn, 83181}, // __nvvm_ui2f_rn
{Intrinsic::nvvm_ui2f_rp, 83196}, // __nvvm_ui2f_rp
{Intrinsic::nvvm_ui2f_rz, 83211}, // __nvvm_ui2f_rz
{Intrinsic::nvvm_ull2d_rm, 83226}, // __nvvm_ull2d_rm
{Intrinsic::nvvm_ull2d_rn, 83242}, // __nvvm_ull2d_rn
{Intrinsic::nvvm_ull2d_rp, 83258}, // __nvvm_ull2d_rp
{Intrinsic::nvvm_ull2d_rz, 83274}, // __nvvm_ull2d_rz
{Intrinsic::nvvm_ull2f_rm, 83290}, // __nvvm_ull2f_rm
{Intrinsic::nvvm_ull2f_rn, 83306}, // __nvvm_ull2f_rn
{Intrinsic::nvvm_ull2f_rp, 83322}, // __nvvm_ull2f_rp
{Intrinsic::nvvm_ull2f_rz, 83338}, // __nvvm_ull2f_rz
{Intrinsic::nvvm_vote_all, 83354}, // __nvvm_vote_all
{Intrinsic::nvvm_vote_all_sync, 83370}, // __nvvm_vote_all_sync
{Intrinsic::nvvm_vote_any, 83391}, // __nvvm_vote_any
{Intrinsic::nvvm_vote_any_sync, 83407}, // __nvvm_vote_any_sync
{Intrinsic::nvvm_vote_ballot, 83428}, // __nvvm_vote_ballot
{Intrinsic::nvvm_vote_ballot_sync, 83447}, // __nvvm_vote_ballot_sync
{Intrinsic::nvvm_vote_uni, 83471}, // __nvvm_vote_uni
{Intrinsic::nvvm_vote_uni_sync, 83487}, // __nvvm_vote_uni_sync
{Intrinsic::nvvm_barrier0, 70576}, // __syncthreads
};
auto I = std::lower_bound(std::begin(nvvmNames),
std::end(nvvmNames),
BuiltinNameStr);
if (I != std::end(nvvmNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "ppc") {
static const BuiltinEntry ppcNames[] = {
{Intrinsic::ppc_addf128_round_to_odd, 83508}, // __builtin_addf128_round_to_odd
{Intrinsic::ppc_altivec_crypto_vcipher, 83539}, // __builtin_altivec_crypto_vcipher
{Intrinsic::ppc_altivec_crypto_vcipherlast, 83572}, // __builtin_altivec_crypto_vcipherlast
{Intrinsic::ppc_altivec_crypto_vncipher, 83609}, // __builtin_altivec_crypto_vncipher
{Intrinsic::ppc_altivec_crypto_vncipherlast, 83643}, // __builtin_altivec_crypto_vncipherlast
{Intrinsic::ppc_altivec_crypto_vpermxor, 83681}, // __builtin_altivec_crypto_vpermxor
{Intrinsic::ppc_altivec_crypto_vpmsumb, 83715}, // __builtin_altivec_crypto_vpmsumb
{Intrinsic::ppc_altivec_crypto_vpmsumd, 83748}, // __builtin_altivec_crypto_vpmsumd
{Intrinsic::ppc_altivec_crypto_vpmsumh, 83781}, // __builtin_altivec_crypto_vpmsumh
{Intrinsic::ppc_altivec_crypto_vpmsumw, 83814}, // __builtin_altivec_crypto_vpmsumw
{Intrinsic::ppc_altivec_crypto_vsbox, 83847}, // __builtin_altivec_crypto_vsbox
{Intrinsic::ppc_altivec_crypto_vshasigmad, 83878}, // __builtin_altivec_crypto_vshasigmad
{Intrinsic::ppc_altivec_crypto_vshasigmaw, 83914}, // __builtin_altivec_crypto_vshasigmaw
{Intrinsic::ppc_altivec_dss, 83950}, // __builtin_altivec_dss
{Intrinsic::ppc_altivec_dssall, 83972}, // __builtin_altivec_dssall
{Intrinsic::ppc_altivec_dst, 83997}, // __builtin_altivec_dst
{Intrinsic::ppc_altivec_dstst, 84019}, // __builtin_altivec_dstst
{Intrinsic::ppc_altivec_dststt, 84043}, // __builtin_altivec_dststt
{Intrinsic::ppc_altivec_dstt, 84068}, // __builtin_altivec_dstt
{Intrinsic::ppc_altivec_mfvscr, 84091}, // __builtin_altivec_mfvscr
{Intrinsic::ppc_altivec_mtvscr, 84116}, // __builtin_altivec_mtvscr
{Intrinsic::ppc_altivec_mtvsrbm, 84141}, // __builtin_altivec_mtvsrbm
{Intrinsic::ppc_altivec_mtvsrdm, 84167}, // __builtin_altivec_mtvsrdm
{Intrinsic::ppc_altivec_mtvsrhm, 84193}, // __builtin_altivec_mtvsrhm
{Intrinsic::ppc_altivec_mtvsrqm, 84219}, // __builtin_altivec_mtvsrqm
{Intrinsic::ppc_altivec_mtvsrwm, 84245}, // __builtin_altivec_mtvsrwm
{Intrinsic::ppc_altivec_vabsdub, 84271}, // __builtin_altivec_vabsdub
{Intrinsic::ppc_altivec_vabsduh, 84297}, // __builtin_altivec_vabsduh
{Intrinsic::ppc_altivec_vabsduw, 84323}, // __builtin_altivec_vabsduw
{Intrinsic::ppc_altivec_vaddcuq, 84349}, // __builtin_altivec_vaddcuq
{Intrinsic::ppc_altivec_vaddcuw, 84375}, // __builtin_altivec_vaddcuw
{Intrinsic::ppc_altivec_vaddecuq, 84401}, // __builtin_altivec_vaddecuq
{Intrinsic::ppc_altivec_vaddeuqm, 84428}, // __builtin_altivec_vaddeuqm
{Intrinsic::ppc_altivec_vaddsbs, 84455}, // __builtin_altivec_vaddsbs
{Intrinsic::ppc_altivec_vaddshs, 84481}, // __builtin_altivec_vaddshs
{Intrinsic::ppc_altivec_vaddsws, 84507}, // __builtin_altivec_vaddsws
{Intrinsic::ppc_altivec_vaddubs, 84533}, // __builtin_altivec_vaddubs
{Intrinsic::ppc_altivec_vadduhs, 84559}, // __builtin_altivec_vadduhs
{Intrinsic::ppc_altivec_vadduws, 84585}, // __builtin_altivec_vadduws
{Intrinsic::ppc_altivec_vavgsb, 84611}, // __builtin_altivec_vavgsb
{Intrinsic::ppc_altivec_vavgsh, 84636}, // __builtin_altivec_vavgsh
{Intrinsic::ppc_altivec_vavgsw, 84661}, // __builtin_altivec_vavgsw
{Intrinsic::ppc_altivec_vavgub, 84686}, // __builtin_altivec_vavgub
{Intrinsic::ppc_altivec_vavguh, 84711}, // __builtin_altivec_vavguh
{Intrinsic::ppc_altivec_vavguw, 84736}, // __builtin_altivec_vavguw
{Intrinsic::ppc_altivec_vbpermq, 84761}, // __builtin_altivec_vbpermq
{Intrinsic::ppc_altivec_vcfsx, 84787}, // __builtin_altivec_vcfsx
{Intrinsic::ppc_altivec_vcfuged, 84811}, // __builtin_altivec_vcfuged
{Intrinsic::ppc_altivec_vcfux, 84837}, // __builtin_altivec_vcfux
{Intrinsic::ppc_altivec_vclrlb, 84861}, // __builtin_altivec_vclrlb
{Intrinsic::ppc_altivec_vclrrb, 84886}, // __builtin_altivec_vclrrb
{Intrinsic::ppc_altivec_vclzdm, 84911}, // __builtin_altivec_vclzdm
{Intrinsic::ppc_altivec_vclzlsbb, 84936}, // __builtin_altivec_vclzlsbb
{Intrinsic::ppc_altivec_vcmpbfp, 84963}, // __builtin_altivec_vcmpbfp
{Intrinsic::ppc_altivec_vcmpbfp_p, 84989}, // __builtin_altivec_vcmpbfp_p
{Intrinsic::ppc_altivec_vcmpeqfp, 85017}, // __builtin_altivec_vcmpeqfp
{Intrinsic::ppc_altivec_vcmpeqfp_p, 85044}, // __builtin_altivec_vcmpeqfp_p
{Intrinsic::ppc_altivec_vcmpequb, 85073}, // __builtin_altivec_vcmpequb
{Intrinsic::ppc_altivec_vcmpequb_p, 85100}, // __builtin_altivec_vcmpequb_p
{Intrinsic::ppc_altivec_vcmpequd, 85129}, // __builtin_altivec_vcmpequd
{Intrinsic::ppc_altivec_vcmpequd_p, 85156}, // __builtin_altivec_vcmpequd_p
{Intrinsic::ppc_altivec_vcmpequh, 85185}, // __builtin_altivec_vcmpequh
{Intrinsic::ppc_altivec_vcmpequh_p, 85212}, // __builtin_altivec_vcmpequh_p
{Intrinsic::ppc_altivec_vcmpequq, 85241}, // __builtin_altivec_vcmpequq
{Intrinsic::ppc_altivec_vcmpequq_p, 85268}, // __builtin_altivec_vcmpequq_p
{Intrinsic::ppc_altivec_vcmpequw, 85297}, // __builtin_altivec_vcmpequw
{Intrinsic::ppc_altivec_vcmpequw_p, 85324}, // __builtin_altivec_vcmpequw_p
{Intrinsic::ppc_altivec_vcmpgefp, 85353}, // __builtin_altivec_vcmpgefp
{Intrinsic::ppc_altivec_vcmpgefp_p, 85380}, // __builtin_altivec_vcmpgefp_p
{Intrinsic::ppc_altivec_vcmpgtfp, 85409}, // __builtin_altivec_vcmpgtfp
{Intrinsic::ppc_altivec_vcmpgtfp_p, 85436}, // __builtin_altivec_vcmpgtfp_p
{Intrinsic::ppc_altivec_vcmpgtsb, 85465}, // __builtin_altivec_vcmpgtsb
{Intrinsic::ppc_altivec_vcmpgtsb_p, 85492}, // __builtin_altivec_vcmpgtsb_p
{Intrinsic::ppc_altivec_vcmpgtsd, 85521}, // __builtin_altivec_vcmpgtsd
{Intrinsic::ppc_altivec_vcmpgtsd_p, 85548}, // __builtin_altivec_vcmpgtsd_p
{Intrinsic::ppc_altivec_vcmpgtsh, 85577}, // __builtin_altivec_vcmpgtsh
{Intrinsic::ppc_altivec_vcmpgtsh_p, 85604}, // __builtin_altivec_vcmpgtsh_p
{Intrinsic::ppc_altivec_vcmpgtsq, 85633}, // __builtin_altivec_vcmpgtsq
{Intrinsic::ppc_altivec_vcmpgtsq_p, 85660}, // __builtin_altivec_vcmpgtsq_p
{Intrinsic::ppc_altivec_vcmpgtsw, 85689}, // __builtin_altivec_vcmpgtsw
{Intrinsic::ppc_altivec_vcmpgtsw_p, 85716}, // __builtin_altivec_vcmpgtsw_p
{Intrinsic::ppc_altivec_vcmpgtub, 85745}, // __builtin_altivec_vcmpgtub
{Intrinsic::ppc_altivec_vcmpgtub_p, 85772}, // __builtin_altivec_vcmpgtub_p
{Intrinsic::ppc_altivec_vcmpgtud, 85801}, // __builtin_altivec_vcmpgtud
{Intrinsic::ppc_altivec_vcmpgtud_p, 85828}, // __builtin_altivec_vcmpgtud_p
{Intrinsic::ppc_altivec_vcmpgtuh, 85857}, // __builtin_altivec_vcmpgtuh
{Intrinsic::ppc_altivec_vcmpgtuh_p, 85884}, // __builtin_altivec_vcmpgtuh_p
{Intrinsic::ppc_altivec_vcmpgtuq, 85913}, // __builtin_altivec_vcmpgtuq
{Intrinsic::ppc_altivec_vcmpgtuq_p, 85940}, // __builtin_altivec_vcmpgtuq_p
{Intrinsic::ppc_altivec_vcmpgtuw, 85969}, // __builtin_altivec_vcmpgtuw
{Intrinsic::ppc_altivec_vcmpgtuw_p, 85996}, // __builtin_altivec_vcmpgtuw_p
{Intrinsic::ppc_altivec_vcmpneb, 86025}, // __builtin_altivec_vcmpneb
{Intrinsic::ppc_altivec_vcmpneb_p, 86051}, // __builtin_altivec_vcmpneb_p
{Intrinsic::ppc_altivec_vcmpneh, 86079}, // __builtin_altivec_vcmpneh
{Intrinsic::ppc_altivec_vcmpneh_p, 86105}, // __builtin_altivec_vcmpneh_p
{Intrinsic::ppc_altivec_vcmpnew, 86133}, // __builtin_altivec_vcmpnew
{Intrinsic::ppc_altivec_vcmpnew_p, 86159}, // __builtin_altivec_vcmpnew_p
{Intrinsic::ppc_altivec_vcmpnezb, 86187}, // __builtin_altivec_vcmpnezb
{Intrinsic::ppc_altivec_vcmpnezb_p, 86214}, // __builtin_altivec_vcmpnezb_p
{Intrinsic::ppc_altivec_vcmpnezh, 86243}, // __builtin_altivec_vcmpnezh
{Intrinsic::ppc_altivec_vcmpnezh_p, 86270}, // __builtin_altivec_vcmpnezh_p
{Intrinsic::ppc_altivec_vcmpnezw, 86299}, // __builtin_altivec_vcmpnezw
{Intrinsic::ppc_altivec_vcmpnezw_p, 86326}, // __builtin_altivec_vcmpnezw_p
{Intrinsic::ppc_altivec_vcntmbb, 86355}, // __builtin_altivec_vcntmbb
{Intrinsic::ppc_altivec_vcntmbd, 86381}, // __builtin_altivec_vcntmbd
{Intrinsic::ppc_altivec_vcntmbh, 86407}, // __builtin_altivec_vcntmbh
{Intrinsic::ppc_altivec_vcntmbw, 86433}, // __builtin_altivec_vcntmbw
{Intrinsic::ppc_altivec_vctsxs, 86459}, // __builtin_altivec_vctsxs
{Intrinsic::ppc_altivec_vctuxs, 86484}, // __builtin_altivec_vctuxs
{Intrinsic::ppc_altivec_vctzdm, 86509}, // __builtin_altivec_vctzdm
{Intrinsic::ppc_altivec_vctzlsbb, 86534}, // __builtin_altivec_vctzlsbb
{Intrinsic::ppc_altivec_vdivesd, 86561}, // __builtin_altivec_vdivesd
{Intrinsic::ppc_altivec_vdivesq, 86587}, // __builtin_altivec_vdivesq
{Intrinsic::ppc_altivec_vdivesw, 86613}, // __builtin_altivec_vdivesw
{Intrinsic::ppc_altivec_vdiveud, 86639}, // __builtin_altivec_vdiveud
{Intrinsic::ppc_altivec_vdiveuq, 86665}, // __builtin_altivec_vdiveuq
{Intrinsic::ppc_altivec_vdiveuw, 86691}, // __builtin_altivec_vdiveuw
{Intrinsic::ppc_altivec_vexpandbm, 86717}, // __builtin_altivec_vexpandbm
{Intrinsic::ppc_altivec_vexpanddm, 86745}, // __builtin_altivec_vexpanddm
{Intrinsic::ppc_altivec_vexpandhm, 86773}, // __builtin_altivec_vexpandhm
{Intrinsic::ppc_altivec_vexpandqm, 86801}, // __builtin_altivec_vexpandqm
{Intrinsic::ppc_altivec_vexpandwm, 86829}, // __builtin_altivec_vexpandwm
{Intrinsic::ppc_altivec_vexptefp, 86857}, // __builtin_altivec_vexptefp
{Intrinsic::ppc_altivec_vextddvlx, 86884}, // __builtin_altivec_vextddvlx
{Intrinsic::ppc_altivec_vextddvrx, 86912}, // __builtin_altivec_vextddvrx
{Intrinsic::ppc_altivec_vextdubvlx, 86940}, // __builtin_altivec_vextdubvlx
{Intrinsic::ppc_altivec_vextdubvrx, 86969}, // __builtin_altivec_vextdubvrx
{Intrinsic::ppc_altivec_vextduhvlx, 86998}, // __builtin_altivec_vextduhvlx
{Intrinsic::ppc_altivec_vextduhvrx, 87027}, // __builtin_altivec_vextduhvrx
{Intrinsic::ppc_altivec_vextduwvlx, 87056}, // __builtin_altivec_vextduwvlx
{Intrinsic::ppc_altivec_vextduwvrx, 87085}, // __builtin_altivec_vextduwvrx
{Intrinsic::ppc_altivec_vextractbm, 87114}, // __builtin_altivec_vextractbm
{Intrinsic::ppc_altivec_vextractdm, 87143}, // __builtin_altivec_vextractdm
{Intrinsic::ppc_altivec_vextracthm, 87172}, // __builtin_altivec_vextracthm
{Intrinsic::ppc_altivec_vextractqm, 87201}, // __builtin_altivec_vextractqm
{Intrinsic::ppc_altivec_vextractwm, 87230}, // __builtin_altivec_vextractwm
{Intrinsic::ppc_altivec_vextsb2d, 87259}, // __builtin_altivec_vextsb2d
{Intrinsic::ppc_altivec_vextsb2w, 87286}, // __builtin_altivec_vextsb2w
{Intrinsic::ppc_altivec_vextsd2q, 87313}, // __builtin_altivec_vextsd2q
{Intrinsic::ppc_altivec_vextsh2d, 87340}, // __builtin_altivec_vextsh2d
{Intrinsic::ppc_altivec_vextsh2w, 87367}, // __builtin_altivec_vextsh2w
{Intrinsic::ppc_altivec_vextsw2d, 87394}, // __builtin_altivec_vextsw2d
{Intrinsic::ppc_altivec_vgbbd, 87421}, // __builtin_altivec_vgbbd
{Intrinsic::ppc_altivec_vgnb, 87445}, // __builtin_altivec_vgnb
{Intrinsic::ppc_altivec_vinsblx, 87468}, // __builtin_altivec_vinsblx
{Intrinsic::ppc_altivec_vinsbrx, 87494}, // __builtin_altivec_vinsbrx
{Intrinsic::ppc_altivec_vinsbvlx, 87520}, // __builtin_altivec_vinsbvlx
{Intrinsic::ppc_altivec_vinsbvrx, 87547}, // __builtin_altivec_vinsbvrx
{Intrinsic::ppc_altivec_vinsdlx, 87574}, // __builtin_altivec_vinsdlx
{Intrinsic::ppc_altivec_vinsdrx, 87600}, // __builtin_altivec_vinsdrx
{Intrinsic::ppc_altivec_vinshlx, 87626}, // __builtin_altivec_vinshlx
{Intrinsic::ppc_altivec_vinshrx, 87652}, // __builtin_altivec_vinshrx
{Intrinsic::ppc_altivec_vinshvlx, 87678}, // __builtin_altivec_vinshvlx
{Intrinsic::ppc_altivec_vinshvrx, 87705}, // __builtin_altivec_vinshvrx
{Intrinsic::ppc_altivec_vinswlx, 87732}, // __builtin_altivec_vinswlx
{Intrinsic::ppc_altivec_vinswrx, 87758}, // __builtin_altivec_vinswrx
{Intrinsic::ppc_altivec_vinswvlx, 87784}, // __builtin_altivec_vinswvlx
{Intrinsic::ppc_altivec_vinswvrx, 87811}, // __builtin_altivec_vinswvrx
{Intrinsic::ppc_altivec_vlogefp, 87838}, // __builtin_altivec_vlogefp
{Intrinsic::ppc_altivec_vmaddfp, 87864}, // __builtin_altivec_vmaddfp
{Intrinsic::ppc_altivec_vmaxfp, 87890}, // __builtin_altivec_vmaxfp
{Intrinsic::ppc_altivec_vmaxsb, 87915}, // __builtin_altivec_vmaxsb
{Intrinsic::ppc_altivec_vmaxsd, 87940}, // __builtin_altivec_vmaxsd
{Intrinsic::ppc_altivec_vmaxsh, 87965}, // __builtin_altivec_vmaxsh
{Intrinsic::ppc_altivec_vmaxsw, 87990}, // __builtin_altivec_vmaxsw
{Intrinsic::ppc_altivec_vmaxub, 88015}, // __builtin_altivec_vmaxub
{Intrinsic::ppc_altivec_vmaxud, 88040}, // __builtin_altivec_vmaxud
{Intrinsic::ppc_altivec_vmaxuh, 88065}, // __builtin_altivec_vmaxuh
{Intrinsic::ppc_altivec_vmaxuw, 88090}, // __builtin_altivec_vmaxuw
{Intrinsic::ppc_altivec_vmhaddshs, 88115}, // __builtin_altivec_vmhaddshs
{Intrinsic::ppc_altivec_vmhraddshs, 88143}, // __builtin_altivec_vmhraddshs
{Intrinsic::ppc_altivec_vminfp, 88172}, // __builtin_altivec_vminfp
{Intrinsic::ppc_altivec_vminsb, 88197}, // __builtin_altivec_vminsb
{Intrinsic::ppc_altivec_vminsd, 88222}, // __builtin_altivec_vminsd
{Intrinsic::ppc_altivec_vminsh, 88247}, // __builtin_altivec_vminsh
{Intrinsic::ppc_altivec_vminsw, 88272}, // __builtin_altivec_vminsw
{Intrinsic::ppc_altivec_vminub, 88297}, // __builtin_altivec_vminub
{Intrinsic::ppc_altivec_vminud, 88322}, // __builtin_altivec_vminud
{Intrinsic::ppc_altivec_vminuh, 88347}, // __builtin_altivec_vminuh
{Intrinsic::ppc_altivec_vminuw, 88372}, // __builtin_altivec_vminuw
{Intrinsic::ppc_altivec_vmladduhm, 88397}, // __builtin_altivec_vmladduhm
{Intrinsic::ppc_altivec_vmsumcud, 88425}, // __builtin_altivec_vmsumcud
{Intrinsic::ppc_altivec_vmsummbm, 88452}, // __builtin_altivec_vmsummbm
{Intrinsic::ppc_altivec_vmsumshm, 88479}, // __builtin_altivec_vmsumshm
{Intrinsic::ppc_altivec_vmsumshs, 88506}, // __builtin_altivec_vmsumshs
{Intrinsic::ppc_altivec_vmsumubm, 88533}, // __builtin_altivec_vmsumubm
{Intrinsic::ppc_altivec_vmsumudm, 88560}, // __builtin_altivec_vmsumudm
{Intrinsic::ppc_altivec_vmsumuhm, 88587}, // __builtin_altivec_vmsumuhm
{Intrinsic::ppc_altivec_vmsumuhs, 88614}, // __builtin_altivec_vmsumuhs
{Intrinsic::ppc_altivec_vmulesb, 88641}, // __builtin_altivec_vmulesb
{Intrinsic::ppc_altivec_vmulesd, 88667}, // __builtin_altivec_vmulesd
{Intrinsic::ppc_altivec_vmulesh, 88693}, // __builtin_altivec_vmulesh
{Intrinsic::ppc_altivec_vmulesw, 88719}, // __builtin_altivec_vmulesw
{Intrinsic::ppc_altivec_vmuleub, 88745}, // __builtin_altivec_vmuleub
{Intrinsic::ppc_altivec_vmuleud, 88771}, // __builtin_altivec_vmuleud
{Intrinsic::ppc_altivec_vmuleuh, 88797}, // __builtin_altivec_vmuleuh
{Intrinsic::ppc_altivec_vmuleuw, 88823}, // __builtin_altivec_vmuleuw
{Intrinsic::ppc_altivec_vmulhsd, 88849}, // __builtin_altivec_vmulhsd
{Intrinsic::ppc_altivec_vmulhsw, 88875}, // __builtin_altivec_vmulhsw
{Intrinsic::ppc_altivec_vmulhud, 88901}, // __builtin_altivec_vmulhud
{Intrinsic::ppc_altivec_vmulhuw, 88927}, // __builtin_altivec_vmulhuw
{Intrinsic::ppc_altivec_vmulosb, 88953}, // __builtin_altivec_vmulosb
{Intrinsic::ppc_altivec_vmulosd, 88979}, // __builtin_altivec_vmulosd
{Intrinsic::ppc_altivec_vmulosh, 89005}, // __builtin_altivec_vmulosh
{Intrinsic::ppc_altivec_vmulosw, 89031}, // __builtin_altivec_vmulosw
{Intrinsic::ppc_altivec_vmuloub, 89057}, // __builtin_altivec_vmuloub
{Intrinsic::ppc_altivec_vmuloud, 89083}, // __builtin_altivec_vmuloud
{Intrinsic::ppc_altivec_vmulouh, 89109}, // __builtin_altivec_vmulouh
{Intrinsic::ppc_altivec_vmulouw, 89135}, // __builtin_altivec_vmulouw
{Intrinsic::ppc_altivec_vnmsubfp, 89161}, // __builtin_altivec_vnmsubfp
{Intrinsic::ppc_altivec_vpdepd, 89188}, // __builtin_altivec_vpdepd
{Intrinsic::ppc_altivec_vperm, 89213}, // __builtin_altivec_vperm_4si
{Intrinsic::ppc_altivec_vpextd, 89241}, // __builtin_altivec_vpextd
{Intrinsic::ppc_altivec_vpkpx, 89266}, // __builtin_altivec_vpkpx
{Intrinsic::ppc_altivec_vpksdss, 89290}, // __builtin_altivec_vpksdss
{Intrinsic::ppc_altivec_vpksdus, 89316}, // __builtin_altivec_vpksdus
{Intrinsic::ppc_altivec_vpkshss, 89342}, // __builtin_altivec_vpkshss
{Intrinsic::ppc_altivec_vpkshus, 89368}, // __builtin_altivec_vpkshus
{Intrinsic::ppc_altivec_vpkswss, 89394}, // __builtin_altivec_vpkswss
{Intrinsic::ppc_altivec_vpkswus, 89420}, // __builtin_altivec_vpkswus
{Intrinsic::ppc_altivec_vpkudus, 89446}, // __builtin_altivec_vpkudus
{Intrinsic::ppc_altivec_vpkuhus, 89472}, // __builtin_altivec_vpkuhus
{Intrinsic::ppc_altivec_vpkuwus, 89498}, // __builtin_altivec_vpkuwus
{Intrinsic::ppc_altivec_vprtybd, 89524}, // __builtin_altivec_vprtybd
{Intrinsic::ppc_altivec_vprtybq, 89550}, // __builtin_altivec_vprtybq
{Intrinsic::ppc_altivec_vprtybw, 89576}, // __builtin_altivec_vprtybw
{Intrinsic::ppc_altivec_vrefp, 89602}, // __builtin_altivec_vrefp
{Intrinsic::ppc_altivec_vrfim, 89626}, // __builtin_altivec_vrfim
{Intrinsic::ppc_altivec_vrfin, 89650}, // __builtin_altivec_vrfin
{Intrinsic::ppc_altivec_vrfip, 89674}, // __builtin_altivec_vrfip
{Intrinsic::ppc_altivec_vrfiz, 89698}, // __builtin_altivec_vrfiz
{Intrinsic::ppc_altivec_vrlb, 89722}, // __builtin_altivec_vrlb
{Intrinsic::ppc_altivec_vrld, 89745}, // __builtin_altivec_vrld
{Intrinsic::ppc_altivec_vrldmi, 89768}, // __builtin_altivec_vrldmi
{Intrinsic::ppc_altivec_vrldnm, 89793}, // __builtin_altivec_vrldnm
{Intrinsic::ppc_altivec_vrlh, 89818}, // __builtin_altivec_vrlh
{Intrinsic::ppc_altivec_vrlqmi, 89841}, // __builtin_altivec_vrlqmi
{Intrinsic::ppc_altivec_vrlqnm, 89866}, // __builtin_altivec_vrlqnm
{Intrinsic::ppc_altivec_vrlw, 89891}, // __builtin_altivec_vrlw
{Intrinsic::ppc_altivec_vrlwmi, 89914}, // __builtin_altivec_vrlwmi
{Intrinsic::ppc_altivec_vrlwnm, 89939}, // __builtin_altivec_vrlwnm
{Intrinsic::ppc_altivec_vrsqrtefp, 89964}, // __builtin_altivec_vrsqrtefp
{Intrinsic::ppc_altivec_vsel, 89992}, // __builtin_altivec_vsel_4si
{Intrinsic::ppc_altivec_vsl, 90019}, // __builtin_altivec_vsl
{Intrinsic::ppc_altivec_vslb, 90041}, // __builtin_altivec_vslb
{Intrinsic::ppc_altivec_vsldbi, 90064}, // __builtin_altivec_vsldbi
{Intrinsic::ppc_altivec_vslh, 90089}, // __builtin_altivec_vslh
{Intrinsic::ppc_altivec_vslo, 90112}, // __builtin_altivec_vslo
{Intrinsic::ppc_altivec_vslv, 90135}, // __builtin_altivec_vslv
{Intrinsic::ppc_altivec_vslw, 90158}, // __builtin_altivec_vslw
{Intrinsic::ppc_altivec_vsr, 90181}, // __builtin_altivec_vsr
{Intrinsic::ppc_altivec_vsrab, 90203}, // __builtin_altivec_vsrab
{Intrinsic::ppc_altivec_vsrah, 90227}, // __builtin_altivec_vsrah
{Intrinsic::ppc_altivec_vsraw, 90251}, // __builtin_altivec_vsraw
{Intrinsic::ppc_altivec_vsrb, 90275}, // __builtin_altivec_vsrb
{Intrinsic::ppc_altivec_vsrdbi, 90298}, // __builtin_altivec_vsrdbi
{Intrinsic::ppc_altivec_vsrh, 90323}, // __builtin_altivec_vsrh
{Intrinsic::ppc_altivec_vsro, 90346}, // __builtin_altivec_vsro
{Intrinsic::ppc_altivec_vsrv, 90369}, // __builtin_altivec_vsrv
{Intrinsic::ppc_altivec_vsrw, 90392}, // __builtin_altivec_vsrw
{Intrinsic::ppc_altivec_vstribl, 90415}, // __builtin_altivec_vstribl
{Intrinsic::ppc_altivec_vstribl_p, 90441}, // __builtin_altivec_vstribl_p
{Intrinsic::ppc_altivec_vstribr, 90469}, // __builtin_altivec_vstribr
{Intrinsic::ppc_altivec_vstribr_p, 90495}, // __builtin_altivec_vstribr_p
{Intrinsic::ppc_altivec_vstrihl, 90523}, // __builtin_altivec_vstrihl
{Intrinsic::ppc_altivec_vstrihl_p, 90549}, // __builtin_altivec_vstrihl_p
{Intrinsic::ppc_altivec_vstrihr, 90577}, // __builtin_altivec_vstrihr
{Intrinsic::ppc_altivec_vstrihr_p, 90603}, // __builtin_altivec_vstrihr_p
{Intrinsic::ppc_altivec_vsubcuq, 90631}, // __builtin_altivec_vsubcuq
{Intrinsic::ppc_altivec_vsubcuw, 90657}, // __builtin_altivec_vsubcuw
{Intrinsic::ppc_altivec_vsubecuq, 90683}, // __builtin_altivec_vsubecuq
{Intrinsic::ppc_altivec_vsubeuqm, 90710}, // __builtin_altivec_vsubeuqm
{Intrinsic::ppc_altivec_vsubsbs, 90737}, // __builtin_altivec_vsubsbs
{Intrinsic::ppc_altivec_vsubshs, 90763}, // __builtin_altivec_vsubshs
{Intrinsic::ppc_altivec_vsubsws, 90789}, // __builtin_altivec_vsubsws
{Intrinsic::ppc_altivec_vsububs, 90815}, // __builtin_altivec_vsububs
{Intrinsic::ppc_altivec_vsubuhs, 90841}, // __builtin_altivec_vsubuhs
{Intrinsic::ppc_altivec_vsubuws, 90867}, // __builtin_altivec_vsubuws
{Intrinsic::ppc_altivec_vsum2sws, 90893}, // __builtin_altivec_vsum2sws
{Intrinsic::ppc_altivec_vsum4sbs, 90920}, // __builtin_altivec_vsum4sbs
{Intrinsic::ppc_altivec_vsum4shs, 90947}, // __builtin_altivec_vsum4shs
{Intrinsic::ppc_altivec_vsum4ubs, 90974}, // __builtin_altivec_vsum4ubs
{Intrinsic::ppc_altivec_vsumsws, 91001}, // __builtin_altivec_vsumsws
{Intrinsic::ppc_altivec_vupkhpx, 91027}, // __builtin_altivec_vupkhpx
{Intrinsic::ppc_altivec_vupkhsb, 91053}, // __builtin_altivec_vupkhsb
{Intrinsic::ppc_altivec_vupkhsh, 91079}, // __builtin_altivec_vupkhsh
{Intrinsic::ppc_altivec_vupkhsw, 91105}, // __builtin_altivec_vupkhsw
{Intrinsic::ppc_altivec_vupklpx, 91131}, // __builtin_altivec_vupklpx
{Intrinsic::ppc_altivec_vupklsb, 91157}, // __builtin_altivec_vupklsb
{Intrinsic::ppc_altivec_vupklsh, 91183}, // __builtin_altivec_vupklsh
{Intrinsic::ppc_altivec_vupklsw, 91209}, // __builtin_altivec_vupklsw
{Intrinsic::ppc_bpermd, 91235}, // __builtin_bpermd
{Intrinsic::ppc_cfuged, 91252}, // __builtin_cfuged
{Intrinsic::ppc_cntlzdm, 91269}, // __builtin_cntlzdm
{Intrinsic::ppc_cnttzdm, 91287}, // __builtin_cnttzdm
{Intrinsic::ppc_darn, 91305}, // __builtin_darn
{Intrinsic::ppc_darn32, 91320}, // __builtin_darn_32
{Intrinsic::ppc_darnraw, 91338}, // __builtin_darn_raw
{Intrinsic::ppc_dcbf, 91357}, // __builtin_dcbf
{Intrinsic::ppc_divde, 91372}, // __builtin_divde
{Intrinsic::ppc_divdeu, 91388}, // __builtin_divdeu
{Intrinsic::ppc_divf128_round_to_odd, 91405}, // __builtin_divf128_round_to_odd
{Intrinsic::ppc_divwe, 91436}, // __builtin_divwe
{Intrinsic::ppc_divweu, 91452}, // __builtin_divweu
{Intrinsic::ppc_fmaf128_round_to_odd, 91469}, // __builtin_fmaf128_round_to_odd
{Intrinsic::ppc_get_texasr, 91500}, // __builtin_get_texasr
{Intrinsic::ppc_get_texasru, 91521}, // __builtin_get_texasru
{Intrinsic::ppc_get_tfhar, 91543}, // __builtin_get_tfhar
{Intrinsic::ppc_get_tfiar, 91563}, // __builtin_get_tfiar
{Intrinsic::ppc_mulf128_round_to_odd, 91583}, // __builtin_mulf128_round_to_odd
{Intrinsic::ppc_pdepd, 91614}, // __builtin_pdepd
{Intrinsic::ppc_pextd, 91630}, // __builtin_pextd
{Intrinsic::ppc_readflm, 91646}, // __builtin_readflm
{Intrinsic::ppc_set_texasr, 91733}, // __builtin_set_texasr
{Intrinsic::ppc_set_texasru, 91754}, // __builtin_set_texasru
{Intrinsic::ppc_set_tfhar, 91776}, // __builtin_set_tfhar
{Intrinsic::ppc_set_tfiar, 91796}, // __builtin_set_tfiar
{Intrinsic::ppc_setflm, 91816}, // __builtin_setflm
{Intrinsic::ppc_setrnd, 91833}, // __builtin_setrnd
{Intrinsic::ppc_sqrtf128_round_to_odd, 91850}, // __builtin_sqrtf128_round_to_odd
{Intrinsic::ppc_subf128_round_to_odd, 91882}, // __builtin_subf128_round_to_odd
{Intrinsic::ppc_tabort, 91913}, // __builtin_tabort
{Intrinsic::ppc_tabortdc, 91930}, // __builtin_tabortdc
{Intrinsic::ppc_tabortdci, 91949}, // __builtin_tabortdci
{Intrinsic::ppc_tabortwc, 91969}, // __builtin_tabortwc
{Intrinsic::ppc_tabortwci, 91988}, // __builtin_tabortwci
{Intrinsic::ppc_tbegin, 92008}, // __builtin_tbegin
{Intrinsic::ppc_tcheck, 92025}, // __builtin_tcheck
{Intrinsic::ppc_tend, 92042}, // __builtin_tend
{Intrinsic::ppc_tendall, 92057}, // __builtin_tendall
{Intrinsic::ppc_trechkpt, 92075}, // __builtin_trechkpt
{Intrinsic::ppc_treclaim, 92094}, // __builtin_treclaim
{Intrinsic::ppc_tresume, 92113}, // __builtin_tresume
{Intrinsic::ppc_truncf128_round_to_odd, 92131}, // __builtin_truncf128_round_to_odd
{Intrinsic::ppc_tsr, 92164}, // __builtin_tsr
{Intrinsic::ppc_tsuspend, 92178}, // __builtin_tsuspend
{Intrinsic::ppc_ttest, 92197}, // __builtin_ttest
{Intrinsic::ppc_scalar_extract_expq, 91664}, // __builtin_vsx_scalar_extract_expq
{Intrinsic::ppc_scalar_insert_exp_qp, 91698}, // __builtin_vsx_scalar_insert_exp_qp
{Intrinsic::ppc_vsx_xsmaxdp, 92213}, // __builtin_vsx_xsmaxdp
{Intrinsic::ppc_vsx_xsmindp, 92235}, // __builtin_vsx_xsmindp
{Intrinsic::ppc_vsx_xvcmpeqdp, 92257}, // __builtin_vsx_xvcmpeqdp
{Intrinsic::ppc_vsx_xvcmpeqdp_p, 92281}, // __builtin_vsx_xvcmpeqdp_p
{Intrinsic::ppc_vsx_xvcmpeqsp, 92307}, // __builtin_vsx_xvcmpeqsp
{Intrinsic::ppc_vsx_xvcmpeqsp_p, 92331}, // __builtin_vsx_xvcmpeqsp_p
{Intrinsic::ppc_vsx_xvcmpgedp, 92357}, // __builtin_vsx_xvcmpgedp
{Intrinsic::ppc_vsx_xvcmpgedp_p, 92381}, // __builtin_vsx_xvcmpgedp_p
{Intrinsic::ppc_vsx_xvcmpgesp, 92407}, // __builtin_vsx_xvcmpgesp
{Intrinsic::ppc_vsx_xvcmpgesp_p, 92431}, // __builtin_vsx_xvcmpgesp_p
{Intrinsic::ppc_vsx_xvcmpgtdp, 92457}, // __builtin_vsx_xvcmpgtdp
{Intrinsic::ppc_vsx_xvcmpgtdp_p, 92481}, // __builtin_vsx_xvcmpgtdp_p
{Intrinsic::ppc_vsx_xvcmpgtsp, 92507}, // __builtin_vsx_xvcmpgtsp
{Intrinsic::ppc_vsx_xvcmpgtsp_p, 92531}, // __builtin_vsx_xvcmpgtsp_p
{Intrinsic::ppc_vsx_xvcvbf16spn, 92557}, // __builtin_vsx_xvcvbf16spn
{Intrinsic::ppc_vsx_xvcvdpsp, 92583}, // __builtin_vsx_xvcvdpsp
{Intrinsic::ppc_vsx_xvcvdpsxws, 92606}, // __builtin_vsx_xvcvdpsxws
{Intrinsic::ppc_vsx_xvcvdpuxws, 92631}, // __builtin_vsx_xvcvdpuxws
{Intrinsic::ppc_vsx_xvcvhpsp, 92656}, // __builtin_vsx_xvcvhpsp
{Intrinsic::ppc_vsx_xvcvspbf16, 92679}, // __builtin_vsx_xvcvspbf16
{Intrinsic::ppc_vsx_xvcvspdp, 92704}, // __builtin_vsx_xvcvspdp
{Intrinsic::ppc_vsx_xvcvsphp, 92727}, // __builtin_vsx_xvcvsphp
{Intrinsic::ppc_vsx_xvcvsxdsp, 92750}, // __builtin_vsx_xvcvsxdsp
{Intrinsic::ppc_vsx_xvcvsxwdp, 92774}, // __builtin_vsx_xvcvsxwdp
{Intrinsic::ppc_vsx_xvcvuxdsp, 92798}, // __builtin_vsx_xvcvuxdsp
{Intrinsic::ppc_vsx_xvcvuxwdp, 92822}, // __builtin_vsx_xvcvuxwdp
{Intrinsic::ppc_vsx_xvdivdp, 92846}, // __builtin_vsx_xvdivdp
{Intrinsic::ppc_vsx_xvdivsp, 92868}, // __builtin_vsx_xvdivsp
{Intrinsic::ppc_vsx_xviexpdp, 92890}, // __builtin_vsx_xviexpdp
{Intrinsic::ppc_vsx_xviexpsp, 92913}, // __builtin_vsx_xviexpsp
{Intrinsic::ppc_vsx_xvmaxdp, 92936}, // __builtin_vsx_xvmaxdp
{Intrinsic::ppc_vsx_xvmaxsp, 92958}, // __builtin_vsx_xvmaxsp
{Intrinsic::ppc_vsx_xvmindp, 92980}, // __builtin_vsx_xvmindp
{Intrinsic::ppc_vsx_xvminsp, 93002}, // __builtin_vsx_xvminsp
{Intrinsic::ppc_vsx_xvredp, 93024}, // __builtin_vsx_xvredp
{Intrinsic::ppc_vsx_xvresp, 93045}, // __builtin_vsx_xvresp
{Intrinsic::ppc_vsx_xvrsqrtedp, 93066}, // __builtin_vsx_xvrsqrtedp
{Intrinsic::ppc_vsx_xvrsqrtesp, 93091}, // __builtin_vsx_xvrsqrtesp
{Intrinsic::ppc_vsx_xvtdivdp, 93116}, // __builtin_vsx_xvtdivdp
{Intrinsic::ppc_vsx_xvtdivsp, 93139}, // __builtin_vsx_xvtdivsp
{Intrinsic::ppc_vsx_xvtlsbb, 93162}, // __builtin_vsx_xvtlsbb
{Intrinsic::ppc_vsx_xvtsqrtdp, 93184}, // __builtin_vsx_xvtsqrtdp
{Intrinsic::ppc_vsx_xvtsqrtsp, 93208}, // __builtin_vsx_xvtsqrtsp
{Intrinsic::ppc_vsx_xvtstdcdp, 93232}, // __builtin_vsx_xvtstdcdp
{Intrinsic::ppc_vsx_xvtstdcsp, 93256}, // __builtin_vsx_xvtstdcsp
{Intrinsic::ppc_vsx_xvxexpdp, 93280}, // __builtin_vsx_xvxexpdp
{Intrinsic::ppc_vsx_xvxexpsp, 93303}, // __builtin_vsx_xvxexpsp
{Intrinsic::ppc_vsx_xvxsigdp, 93326}, // __builtin_vsx_xvxsigdp
{Intrinsic::ppc_vsx_xvxsigsp, 93349}, // __builtin_vsx_xvxsigsp
{Intrinsic::ppc_vsx_xxblendvb, 93372}, // __builtin_vsx_xxblendvb
{Intrinsic::ppc_vsx_xxblendvd, 93396}, // __builtin_vsx_xxblendvd
{Intrinsic::ppc_vsx_xxblendvh, 93420}, // __builtin_vsx_xxblendvh
{Intrinsic::ppc_vsx_xxblendvw, 93444}, // __builtin_vsx_xxblendvw
{Intrinsic::ppc_vsx_xxeval, 93468}, // __builtin_vsx_xxeval
{Intrinsic::ppc_vsx_xxextractuw, 93489}, // __builtin_vsx_xxextractuw
{Intrinsic::ppc_vsx_xxgenpcvbm, 93515}, // __builtin_vsx_xxgenpcvbm
{Intrinsic::ppc_vsx_xxgenpcvdm, 93540}, // __builtin_vsx_xxgenpcvdm
{Intrinsic::ppc_vsx_xxgenpcvhm, 93565}, // __builtin_vsx_xxgenpcvhm
{Intrinsic::ppc_vsx_xxgenpcvwm, 93590}, // __builtin_vsx_xxgenpcvwm
{Intrinsic::ppc_vsx_xxinsertw, 93615}, // __builtin_vsx_xxinsertw
{Intrinsic::ppc_vsx_xxleqv, 93639}, // __builtin_vsx_xxleqv
{Intrinsic::ppc_vsx_xxpermx, 93660}, // __builtin_vsx_xxpermx
};
auto I = std::lower_bound(std::begin(ppcNames),
std::end(ppcNames),
BuiltinNameStr);
if (I != std::end(ppcNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "r600") {
static const BuiltinEntry r600Names[] = {
{Intrinsic::r600_group_barrier, 93682}, // __builtin_r600_group_barrier
{Intrinsic::r600_implicitarg_ptr, 93711}, // __builtin_r600_implicitarg_ptr
{Intrinsic::r600_rat_store_typed, 93742}, // __builtin_r600_rat_store_typed
{Intrinsic::r600_read_global_size_x, 93773}, // __builtin_r600_read_global_size_x
{Intrinsic::r600_read_global_size_y, 93807}, // __builtin_r600_read_global_size_y
{Intrinsic::r600_read_global_size_z, 93841}, // __builtin_r600_read_global_size_z
{Intrinsic::r600_read_ngroups_x, 93875}, // __builtin_r600_read_ngroups_x
{Intrinsic::r600_read_ngroups_y, 93905}, // __builtin_r600_read_ngroups_y
{Intrinsic::r600_read_ngroups_z, 93935}, // __builtin_r600_read_ngroups_z
{Intrinsic::r600_read_tgid_x, 93965}, // __builtin_r600_read_tgid_x
{Intrinsic::r600_read_tgid_y, 93992}, // __builtin_r600_read_tgid_y
{Intrinsic::r600_read_tgid_z, 94019}, // __builtin_r600_read_tgid_z
};
auto I = std::lower_bound(std::begin(r600Names),
std::end(r600Names),
BuiltinNameStr);
if (I != std::end(r600Names) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "s390") {
static const BuiltinEntry s390Names[] = {
{Intrinsic::s390_efpc, 94046}, // __builtin_s390_efpc
{Intrinsic::s390_lcbb, 94093}, // __builtin_s390_lcbb
{Intrinsic::s390_sfpc, 94133}, // __builtin_s390_sfpc
{Intrinsic::s390_vaccb, 94153}, // __builtin_s390_vaccb
{Intrinsic::s390_vacccq, 94174}, // __builtin_s390_vacccq
{Intrinsic::s390_vaccf, 94196}, // __builtin_s390_vaccf
{Intrinsic::s390_vaccg, 94217}, // __builtin_s390_vaccg
{Intrinsic::s390_vacch, 94238}, // __builtin_s390_vacch
{Intrinsic::s390_vaccq, 94259}, // __builtin_s390_vaccq
{Intrinsic::s390_vacq, 94280}, // __builtin_s390_vacq
{Intrinsic::s390_vaq, 94300}, // __builtin_s390_vaq
{Intrinsic::s390_vavgb, 94319}, // __builtin_s390_vavgb
{Intrinsic::s390_vavgf, 94340}, // __builtin_s390_vavgf
{Intrinsic::s390_vavgg, 94361}, // __builtin_s390_vavgg
{Intrinsic::s390_vavgh, 94382}, // __builtin_s390_vavgh
{Intrinsic::s390_vavglb, 94403}, // __builtin_s390_vavglb
{Intrinsic::s390_vavglf, 94425}, // __builtin_s390_vavglf
{Intrinsic::s390_vavglg, 94447}, // __builtin_s390_vavglg
{Intrinsic::s390_vavglh, 94469}, // __builtin_s390_vavglh
{Intrinsic::s390_vbperm, 94491}, // __builtin_s390_vbperm
{Intrinsic::s390_vcksm, 94513}, // __builtin_s390_vcksm
{Intrinsic::s390_verimb, 94534}, // __builtin_s390_verimb
{Intrinsic::s390_verimf, 94556}, // __builtin_s390_verimf
{Intrinsic::s390_verimg, 94578}, // __builtin_s390_verimg
{Intrinsic::s390_verimh, 94600}, // __builtin_s390_verimh
{Intrinsic::s390_verllb, 94622}, // __builtin_s390_verllb
{Intrinsic::s390_verllf, 94644}, // __builtin_s390_verllf
{Intrinsic::s390_verllg, 94666}, // __builtin_s390_verllg
{Intrinsic::s390_verllh, 94688}, // __builtin_s390_verllh
{Intrinsic::s390_verllvb, 94710}, // __builtin_s390_verllvb
{Intrinsic::s390_verllvf, 94733}, // __builtin_s390_verllvf
{Intrinsic::s390_verllvg, 94756}, // __builtin_s390_verllvg
{Intrinsic::s390_verllvh, 94779}, // __builtin_s390_verllvh
{Intrinsic::s390_vfaeb, 94802}, // __builtin_s390_vfaeb
{Intrinsic::s390_vfaef, 94823}, // __builtin_s390_vfaef
{Intrinsic::s390_vfaeh, 94844}, // __builtin_s390_vfaeh
{Intrinsic::s390_vfaezb, 94865}, // __builtin_s390_vfaezb
{Intrinsic::s390_vfaezf, 94887}, // __builtin_s390_vfaezf
{Intrinsic::s390_vfaezh, 94909}, // __builtin_s390_vfaezh
{Intrinsic::s390_vfeeb, 94931}, // __builtin_s390_vfeeb
{Intrinsic::s390_vfeef, 94952}, // __builtin_s390_vfeef
{Intrinsic::s390_vfeeh, 94973}, // __builtin_s390_vfeeh
{Intrinsic::s390_vfeezb, 94994}, // __builtin_s390_vfeezb
{Intrinsic::s390_vfeezf, 95016}, // __builtin_s390_vfeezf
{Intrinsic::s390_vfeezh, 95038}, // __builtin_s390_vfeezh
{Intrinsic::s390_vfeneb, 95060}, // __builtin_s390_vfeneb
{Intrinsic::s390_vfenef, 95082}, // __builtin_s390_vfenef
{Intrinsic::s390_vfeneh, 95104}, // __builtin_s390_vfeneh
{Intrinsic::s390_vfenezb, 95126}, // __builtin_s390_vfenezb
{Intrinsic::s390_vfenezf, 95149}, // __builtin_s390_vfenezf
{Intrinsic::s390_vfenezh, 95172}, // __builtin_s390_vfenezh
{Intrinsic::s390_vgfmab, 95195}, // __builtin_s390_vgfmab
{Intrinsic::s390_vgfmaf, 95217}, // __builtin_s390_vgfmaf
{Intrinsic::s390_vgfmag, 95239}, // __builtin_s390_vgfmag
{Intrinsic::s390_vgfmah, 95261}, // __builtin_s390_vgfmah
{Intrinsic::s390_vgfmb, 95283}, // __builtin_s390_vgfmb
{Intrinsic::s390_vgfmf, 95304}, // __builtin_s390_vgfmf
{Intrinsic::s390_vgfmg, 95325}, // __builtin_s390_vgfmg
{Intrinsic::s390_vgfmh, 95346}, // __builtin_s390_vgfmh
{Intrinsic::s390_vistrb, 95367}, // __builtin_s390_vistrb
{Intrinsic::s390_vistrf, 95389}, // __builtin_s390_vistrf
{Intrinsic::s390_vistrh, 95411}, // __builtin_s390_vistrh
{Intrinsic::s390_vlbb, 95433}, // __builtin_s390_vlbb
{Intrinsic::s390_vll, 95453}, // __builtin_s390_vll
{Intrinsic::s390_vlrl, 95472}, // __builtin_s390_vlrl
{Intrinsic::s390_vmaeb, 95492}, // __builtin_s390_vmaeb
{Intrinsic::s390_vmaef, 95513}, // __builtin_s390_vmaef
{Intrinsic::s390_vmaeh, 95534}, // __builtin_s390_vmaeh
{Intrinsic::s390_vmahb, 95555}, // __builtin_s390_vmahb
{Intrinsic::s390_vmahf, 95576}, // __builtin_s390_vmahf
{Intrinsic::s390_vmahh, 95597}, // __builtin_s390_vmahh
{Intrinsic::s390_vmaleb, 95618}, // __builtin_s390_vmaleb
{Intrinsic::s390_vmalef, 95640}, // __builtin_s390_vmalef
{Intrinsic::s390_vmaleh, 95662}, // __builtin_s390_vmaleh
{Intrinsic::s390_vmalhb, 95684}, // __builtin_s390_vmalhb
{Intrinsic::s390_vmalhf, 95706}, // __builtin_s390_vmalhf
{Intrinsic::s390_vmalhh, 95728}, // __builtin_s390_vmalhh
{Intrinsic::s390_vmalob, 95750}, // __builtin_s390_vmalob
{Intrinsic::s390_vmalof, 95772}, // __builtin_s390_vmalof
{Intrinsic::s390_vmaloh, 95794}, // __builtin_s390_vmaloh
{Intrinsic::s390_vmaob, 95816}, // __builtin_s390_vmaob
{Intrinsic::s390_vmaof, 95837}, // __builtin_s390_vmaof
{Intrinsic::s390_vmaoh, 95858}, // __builtin_s390_vmaoh
{Intrinsic::s390_vmeb, 95879}, // __builtin_s390_vmeb
{Intrinsic::s390_vmef, 95899}, // __builtin_s390_vmef
{Intrinsic::s390_vmeh, 95919}, // __builtin_s390_vmeh
{Intrinsic::s390_vmhb, 95939}, // __builtin_s390_vmhb
{Intrinsic::s390_vmhf, 95959}, // __builtin_s390_vmhf
{Intrinsic::s390_vmhh, 95979}, // __builtin_s390_vmhh
{Intrinsic::s390_vmleb, 95999}, // __builtin_s390_vmleb
{Intrinsic::s390_vmlef, 96020}, // __builtin_s390_vmlef
{Intrinsic::s390_vmleh, 96041}, // __builtin_s390_vmleh
{Intrinsic::s390_vmlhb, 96062}, // __builtin_s390_vmlhb
{Intrinsic::s390_vmlhf, 96083}, // __builtin_s390_vmlhf
{Intrinsic::s390_vmlhh, 96104}, // __builtin_s390_vmlhh
{Intrinsic::s390_vmlob, 96125}, // __builtin_s390_vmlob
{Intrinsic::s390_vmlof, 96146}, // __builtin_s390_vmlof
{Intrinsic::s390_vmloh, 96167}, // __builtin_s390_vmloh
{Intrinsic::s390_vmob, 96188}, // __builtin_s390_vmob
{Intrinsic::s390_vmof, 96208}, // __builtin_s390_vmof
{Intrinsic::s390_vmoh, 96228}, // __builtin_s390_vmoh
{Intrinsic::s390_vmslg, 96248}, // __builtin_s390_vmslg
{Intrinsic::s390_vpdi, 96269}, // __builtin_s390_vpdi
{Intrinsic::s390_vperm, 96289}, // __builtin_s390_vperm
{Intrinsic::s390_vpklsf, 96310}, // __builtin_s390_vpklsf
{Intrinsic::s390_vpklsg, 96332}, // __builtin_s390_vpklsg
{Intrinsic::s390_vpklsh, 96354}, // __builtin_s390_vpklsh
{Intrinsic::s390_vpksf, 96376}, // __builtin_s390_vpksf
{Intrinsic::s390_vpksg, 96397}, // __builtin_s390_vpksg
{Intrinsic::s390_vpksh, 96418}, // __builtin_s390_vpksh
{Intrinsic::s390_vsbcbiq, 96439}, // __builtin_s390_vsbcbiq
{Intrinsic::s390_vsbiq, 96462}, // __builtin_s390_vsbiq
{Intrinsic::s390_vscbib, 96483}, // __builtin_s390_vscbib
{Intrinsic::s390_vscbif, 96505}, // __builtin_s390_vscbif
{Intrinsic::s390_vscbig, 96527}, // __builtin_s390_vscbig
{Intrinsic::s390_vscbih, 96549}, // __builtin_s390_vscbih
{Intrinsic::s390_vscbiq, 96571}, // __builtin_s390_vscbiq
{Intrinsic::s390_vsl, 96593}, // __builtin_s390_vsl
{Intrinsic::s390_vslb, 96612}, // __builtin_s390_vslb
{Intrinsic::s390_vsld, 96632}, // __builtin_s390_vsld
{Intrinsic::s390_vsldb, 96652}, // __builtin_s390_vsldb
{Intrinsic::s390_vsq, 96673}, // __builtin_s390_vsq
{Intrinsic::s390_vsra, 96692}, // __builtin_s390_vsra
{Intrinsic::s390_vsrab, 96712}, // __builtin_s390_vsrab
{Intrinsic::s390_vsrd, 96733}, // __builtin_s390_vsrd
{Intrinsic::s390_vsrl, 96753}, // __builtin_s390_vsrl
{Intrinsic::s390_vsrlb, 96773}, // __builtin_s390_vsrlb
{Intrinsic::s390_vstl, 96794}, // __builtin_s390_vstl
{Intrinsic::s390_vstrcb, 96814}, // __builtin_s390_vstrcb
{Intrinsic::s390_vstrcf, 96836}, // __builtin_s390_vstrcf
{Intrinsic::s390_vstrch, 96858}, // __builtin_s390_vstrch
{Intrinsic::s390_vstrczb, 96880}, // __builtin_s390_vstrczb
{Intrinsic::s390_vstrczf, 96903}, // __builtin_s390_vstrczf
{Intrinsic::s390_vstrczh, 96926}, // __builtin_s390_vstrczh
{Intrinsic::s390_vstrl, 96949}, // __builtin_s390_vstrl
{Intrinsic::s390_vsumb, 96970}, // __builtin_s390_vsumb
{Intrinsic::s390_vsumgf, 96991}, // __builtin_s390_vsumgf
{Intrinsic::s390_vsumgh, 97013}, // __builtin_s390_vsumgh
{Intrinsic::s390_vsumh, 97035}, // __builtin_s390_vsumh
{Intrinsic::s390_vsumqf, 97056}, // __builtin_s390_vsumqf
{Intrinsic::s390_vsumqg, 97078}, // __builtin_s390_vsumqg
{Intrinsic::s390_vtm, 97100}, // __builtin_s390_vtm
{Intrinsic::s390_vuphb, 97119}, // __builtin_s390_vuphb
{Intrinsic::s390_vuphf, 97140}, // __builtin_s390_vuphf
{Intrinsic::s390_vuphh, 97161}, // __builtin_s390_vuphh
{Intrinsic::s390_vuplb, 97182}, // __builtin_s390_vuplb
{Intrinsic::s390_vuplf, 97203}, // __builtin_s390_vuplf
{Intrinsic::s390_vuplhb, 97224}, // __builtin_s390_vuplhb
{Intrinsic::s390_vuplhf, 97246}, // __builtin_s390_vuplhf
{Intrinsic::s390_vuplhh, 97268}, // __builtin_s390_vuplhh
{Intrinsic::s390_vuplhw, 97290}, // __builtin_s390_vuplhw
{Intrinsic::s390_vupllb, 97312}, // __builtin_s390_vupllb
{Intrinsic::s390_vupllf, 97334}, // __builtin_s390_vupllf
{Intrinsic::s390_vupllh, 97356}, // __builtin_s390_vupllh
{Intrinsic::s390_tend, 92042}, // __builtin_tend
{Intrinsic::s390_ppa_txassist, 94113}, // __builtin_tx_assist
{Intrinsic::s390_etnd, 94066}, // __builtin_tx_nesting_depth
};
auto I = std::lower_bound(std::begin(s390Names),
std::end(s390Names),
BuiltinNameStr);
if (I != std::end(s390Names) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "ve") {
static const BuiltinEntry veNames[] = {
{Intrinsic::ve_vl_andm_MMM, 97378}, // __builtin_ve_vl_andm_MMM
{Intrinsic::ve_vl_andm_mmm, 97403}, // __builtin_ve_vl_andm_mmm
{Intrinsic::ve_vl_eqvm_MMM, 97428}, // __builtin_ve_vl_eqvm_MMM
{Intrinsic::ve_vl_eqvm_mmm, 97453}, // __builtin_ve_vl_eqvm_mmm
{Intrinsic::ve_vl_lsv_vvss, 97478}, // __builtin_ve_vl_lsv_vvss
{Intrinsic::ve_vl_lvm_MMss, 97503}, // __builtin_ve_vl_lvm_MMss
{Intrinsic::ve_vl_lvm_mmss, 97528}, // __builtin_ve_vl_lvm_mmss
{Intrinsic::ve_vl_lvsd_svs, 97553}, // __builtin_ve_vl_lvsd_svs
{Intrinsic::ve_vl_lvsl_svs, 97578}, // __builtin_ve_vl_lvsl_svs
{Intrinsic::ve_vl_lvss_svs, 97603}, // __builtin_ve_vl_lvss_svs
{Intrinsic::ve_vl_lzvm_sml, 97628}, // __builtin_ve_vl_lzvm_sml
{Intrinsic::ve_vl_negm_MM, 97653}, // __builtin_ve_vl_negm_MM
{Intrinsic::ve_vl_negm_mm, 97677}, // __builtin_ve_vl_negm_mm
{Intrinsic::ve_vl_nndm_MMM, 97701}, // __builtin_ve_vl_nndm_MMM
{Intrinsic::ve_vl_nndm_mmm, 97726}, // __builtin_ve_vl_nndm_mmm
{Intrinsic::ve_vl_orm_MMM, 97751}, // __builtin_ve_vl_orm_MMM
{Intrinsic::ve_vl_orm_mmm, 97775}, // __builtin_ve_vl_orm_mmm
{Intrinsic::ve_vl_pcvm_sml, 97799}, // __builtin_ve_vl_pcvm_sml
{Intrinsic::ve_vl_pfchv_ssl, 97824}, // __builtin_ve_vl_pfchv_ssl
{Intrinsic::ve_vl_pfchvnc_ssl, 97850}, // __builtin_ve_vl_pfchvnc_ssl
{Intrinsic::ve_vl_pvadds_vsvMvl, 97878}, // __builtin_ve_vl_pvadds_vsvMvl
{Intrinsic::ve_vl_pvadds_vsvl, 97908}, // __builtin_ve_vl_pvadds_vsvl
{Intrinsic::ve_vl_pvadds_vsvvl, 97936}, // __builtin_ve_vl_pvadds_vsvvl
{Intrinsic::ve_vl_pvadds_vvvMvl, 97965}, // __builtin_ve_vl_pvadds_vvvMvl
{Intrinsic::ve_vl_pvadds_vvvl, 97995}, // __builtin_ve_vl_pvadds_vvvl
{Intrinsic::ve_vl_pvadds_vvvvl, 98023}, // __builtin_ve_vl_pvadds_vvvvl
{Intrinsic::ve_vl_pvaddu_vsvMvl, 98052}, // __builtin_ve_vl_pvaddu_vsvMvl
{Intrinsic::ve_vl_pvaddu_vsvl, 98082}, // __builtin_ve_vl_pvaddu_vsvl
{Intrinsic::ve_vl_pvaddu_vsvvl, 98110}, // __builtin_ve_vl_pvaddu_vsvvl
{Intrinsic::ve_vl_pvaddu_vvvMvl, 98139}, // __builtin_ve_vl_pvaddu_vvvMvl
{Intrinsic::ve_vl_pvaddu_vvvl, 98169}, // __builtin_ve_vl_pvaddu_vvvl
{Intrinsic::ve_vl_pvaddu_vvvvl, 98197}, // __builtin_ve_vl_pvaddu_vvvvl
{Intrinsic::ve_vl_pvand_vsvMvl, 98226}, // __builtin_ve_vl_pvand_vsvMvl
{Intrinsic::ve_vl_pvand_vsvl, 98255}, // __builtin_ve_vl_pvand_vsvl
{Intrinsic::ve_vl_pvand_vsvvl, 98282}, // __builtin_ve_vl_pvand_vsvvl
{Intrinsic::ve_vl_pvand_vvvMvl, 98310}, // __builtin_ve_vl_pvand_vvvMvl
{Intrinsic::ve_vl_pvand_vvvl, 98339}, // __builtin_ve_vl_pvand_vvvl
{Intrinsic::ve_vl_pvand_vvvvl, 98366}, // __builtin_ve_vl_pvand_vvvvl
{Intrinsic::ve_vl_pvbrd_vsMvl, 98394}, // __builtin_ve_vl_pvbrd_vsMvl
{Intrinsic::ve_vl_pvbrd_vsl, 98422}, // __builtin_ve_vl_pvbrd_vsl
{Intrinsic::ve_vl_pvbrd_vsvl, 98448}, // __builtin_ve_vl_pvbrd_vsvl
{Intrinsic::ve_vl_pvcmps_vsvMvl, 98475}, // __builtin_ve_vl_pvcmps_vsvMvl
{Intrinsic::ve_vl_pvcmps_vsvl, 98505}, // __builtin_ve_vl_pvcmps_vsvl
{Intrinsic::ve_vl_pvcmps_vsvvl, 98533}, // __builtin_ve_vl_pvcmps_vsvvl
{Intrinsic::ve_vl_pvcmps_vvvMvl, 98562}, // __builtin_ve_vl_pvcmps_vvvMvl
{Intrinsic::ve_vl_pvcmps_vvvl, 98592}, // __builtin_ve_vl_pvcmps_vvvl
{Intrinsic::ve_vl_pvcmps_vvvvl, 98620}, // __builtin_ve_vl_pvcmps_vvvvl
{Intrinsic::ve_vl_pvcmpu_vsvMvl, 98649}, // __builtin_ve_vl_pvcmpu_vsvMvl
{Intrinsic::ve_vl_pvcmpu_vsvl, 98679}, // __builtin_ve_vl_pvcmpu_vsvl
{Intrinsic::ve_vl_pvcmpu_vsvvl, 98707}, // __builtin_ve_vl_pvcmpu_vsvvl
{Intrinsic::ve_vl_pvcmpu_vvvMvl, 98736}, // __builtin_ve_vl_pvcmpu_vvvMvl
{Intrinsic::ve_vl_pvcmpu_vvvl, 98766}, // __builtin_ve_vl_pvcmpu_vvvl
{Intrinsic::ve_vl_pvcmpu_vvvvl, 98794}, // __builtin_ve_vl_pvcmpu_vvvvl
{Intrinsic::ve_vl_pvcvtsw_vvl, 98823}, // __builtin_ve_vl_pvcvtsw_vvl
{Intrinsic::ve_vl_pvcvtsw_vvvl, 98851}, // __builtin_ve_vl_pvcvtsw_vvvl
{Intrinsic::ve_vl_pvcvtws_vvMvl, 98880}, // __builtin_ve_vl_pvcvtws_vvMvl
{Intrinsic::ve_vl_pvcvtws_vvl, 98910}, // __builtin_ve_vl_pvcvtws_vvl
{Intrinsic::ve_vl_pvcvtws_vvvl, 98938}, // __builtin_ve_vl_pvcvtws_vvvl
{Intrinsic::ve_vl_pvcvtwsrz_vvMvl, 98967}, // __builtin_ve_vl_pvcvtwsrz_vvMvl
{Intrinsic::ve_vl_pvcvtwsrz_vvl, 98999}, // __builtin_ve_vl_pvcvtwsrz_vvl
{Intrinsic::ve_vl_pvcvtwsrz_vvvl, 99029}, // __builtin_ve_vl_pvcvtwsrz_vvvl
{Intrinsic::ve_vl_pveqv_vsvMvl, 99060}, // __builtin_ve_vl_pveqv_vsvMvl
{Intrinsic::ve_vl_pveqv_vsvl, 99089}, // __builtin_ve_vl_pveqv_vsvl
{Intrinsic::ve_vl_pveqv_vsvvl, 99116}, // __builtin_ve_vl_pveqv_vsvvl
{Intrinsic::ve_vl_pveqv_vvvMvl, 99144}, // __builtin_ve_vl_pveqv_vvvMvl
{Intrinsic::ve_vl_pveqv_vvvl, 99173}, // __builtin_ve_vl_pveqv_vvvl
{Intrinsic::ve_vl_pveqv_vvvvl, 99200}, // __builtin_ve_vl_pveqv_vvvvl
{Intrinsic::ve_vl_pvfadd_vsvMvl, 99228}, // __builtin_ve_vl_pvfadd_vsvMvl
{Intrinsic::ve_vl_pvfadd_vsvl, 99258}, // __builtin_ve_vl_pvfadd_vsvl
{Intrinsic::ve_vl_pvfadd_vsvvl, 99286}, // __builtin_ve_vl_pvfadd_vsvvl
{Intrinsic::ve_vl_pvfadd_vvvMvl, 99315}, // __builtin_ve_vl_pvfadd_vvvMvl
{Intrinsic::ve_vl_pvfadd_vvvl, 99345}, // __builtin_ve_vl_pvfadd_vvvl
{Intrinsic::ve_vl_pvfadd_vvvvl, 99373}, // __builtin_ve_vl_pvfadd_vvvvl
{Intrinsic::ve_vl_pvfcmp_vsvMvl, 99402}, // __builtin_ve_vl_pvfcmp_vsvMvl
{Intrinsic::ve_vl_pvfcmp_vsvl, 99432}, // __builtin_ve_vl_pvfcmp_vsvl
{Intrinsic::ve_vl_pvfcmp_vsvvl, 99460}, // __builtin_ve_vl_pvfcmp_vsvvl
{Intrinsic::ve_vl_pvfcmp_vvvMvl, 99489}, // __builtin_ve_vl_pvfcmp_vvvMvl
{Intrinsic::ve_vl_pvfcmp_vvvl, 99519}, // __builtin_ve_vl_pvfcmp_vvvl
{Intrinsic::ve_vl_pvfcmp_vvvvl, 99547}, // __builtin_ve_vl_pvfcmp_vvvvl
{Intrinsic::ve_vl_pvfmad_vsvvMvl, 99576}, // __builtin_ve_vl_pvfmad_vsvvMvl
{Intrinsic::ve_vl_pvfmad_vsvvl, 99607}, // __builtin_ve_vl_pvfmad_vsvvl
{Intrinsic::ve_vl_pvfmad_vsvvvl, 99636}, // __builtin_ve_vl_pvfmad_vsvvvl
{Intrinsic::ve_vl_pvfmad_vvsvMvl, 99666}, // __builtin_ve_vl_pvfmad_vvsvMvl
{Intrinsic::ve_vl_pvfmad_vvsvl, 99697}, // __builtin_ve_vl_pvfmad_vvsvl
{Intrinsic::ve_vl_pvfmad_vvsvvl, 99726}, // __builtin_ve_vl_pvfmad_vvsvvl
{Intrinsic::ve_vl_pvfmad_vvvvMvl, 99756}, // __builtin_ve_vl_pvfmad_vvvvMvl
{Intrinsic::ve_vl_pvfmad_vvvvl, 99787}, // __builtin_ve_vl_pvfmad_vvvvl
{Intrinsic::ve_vl_pvfmad_vvvvvl, 99816}, // __builtin_ve_vl_pvfmad_vvvvvl
{Intrinsic::ve_vl_pvfmax_vsvMvl, 99846}, // __builtin_ve_vl_pvfmax_vsvMvl
{Intrinsic::ve_vl_pvfmax_vsvl, 99876}, // __builtin_ve_vl_pvfmax_vsvl
{Intrinsic::ve_vl_pvfmax_vsvvl, 99904}, // __builtin_ve_vl_pvfmax_vsvvl
{Intrinsic::ve_vl_pvfmax_vvvMvl, 99933}, // __builtin_ve_vl_pvfmax_vvvMvl
{Intrinsic::ve_vl_pvfmax_vvvl, 99963}, // __builtin_ve_vl_pvfmax_vvvl
{Intrinsic::ve_vl_pvfmax_vvvvl, 99991}, // __builtin_ve_vl_pvfmax_vvvvl
{Intrinsic::ve_vl_pvfmin_vsvMvl, 100020}, // __builtin_ve_vl_pvfmin_vsvMvl
{Intrinsic::ve_vl_pvfmin_vsvl, 100050}, // __builtin_ve_vl_pvfmin_vsvl
{Intrinsic::ve_vl_pvfmin_vsvvl, 100078}, // __builtin_ve_vl_pvfmin_vsvvl
{Intrinsic::ve_vl_pvfmin_vvvMvl, 100107}, // __builtin_ve_vl_pvfmin_vvvMvl
{Intrinsic::ve_vl_pvfmin_vvvl, 100137}, // __builtin_ve_vl_pvfmin_vvvl
{Intrinsic::ve_vl_pvfmin_vvvvl, 100165}, // __builtin_ve_vl_pvfmin_vvvvl
{Intrinsic::ve_vl_pvfmkaf_Ml, 100194}, // __builtin_ve_vl_pvfmkaf_Ml
{Intrinsic::ve_vl_pvfmkat_Ml, 100221}, // __builtin_ve_vl_pvfmkat_Ml
{Intrinsic::ve_vl_pvfmkseq_MvMl, 100248}, // __builtin_ve_vl_pvfmkseq_MvMl
{Intrinsic::ve_vl_pvfmkseq_Mvl, 100278}, // __builtin_ve_vl_pvfmkseq_Mvl
{Intrinsic::ve_vl_pvfmkseqnan_MvMl, 100307}, // __builtin_ve_vl_pvfmkseqnan_MvMl
{Intrinsic::ve_vl_pvfmkseqnan_Mvl, 100340}, // __builtin_ve_vl_pvfmkseqnan_Mvl
{Intrinsic::ve_vl_pvfmksge_MvMl, 100372}, // __builtin_ve_vl_pvfmksge_MvMl
{Intrinsic::ve_vl_pvfmksge_Mvl, 100402}, // __builtin_ve_vl_pvfmksge_Mvl
{Intrinsic::ve_vl_pvfmksgenan_MvMl, 100431}, // __builtin_ve_vl_pvfmksgenan_MvMl
{Intrinsic::ve_vl_pvfmksgenan_Mvl, 100464}, // __builtin_ve_vl_pvfmksgenan_Mvl
{Intrinsic::ve_vl_pvfmksgt_MvMl, 100496}, // __builtin_ve_vl_pvfmksgt_MvMl
{Intrinsic::ve_vl_pvfmksgt_Mvl, 100526}, // __builtin_ve_vl_pvfmksgt_Mvl
{Intrinsic::ve_vl_pvfmksgtnan_MvMl, 100555}, // __builtin_ve_vl_pvfmksgtnan_MvMl
{Intrinsic::ve_vl_pvfmksgtnan_Mvl, 100588}, // __builtin_ve_vl_pvfmksgtnan_Mvl
{Intrinsic::ve_vl_pvfmksle_MvMl, 100620}, // __builtin_ve_vl_pvfmksle_MvMl
{Intrinsic::ve_vl_pvfmksle_Mvl, 100650}, // __builtin_ve_vl_pvfmksle_Mvl
{Intrinsic::ve_vl_pvfmkslenan_MvMl, 100679}, // __builtin_ve_vl_pvfmkslenan_MvMl
{Intrinsic::ve_vl_pvfmkslenan_Mvl, 100712}, // __builtin_ve_vl_pvfmkslenan_Mvl
{Intrinsic::ve_vl_pvfmksloeq_mvl, 100744}, // __builtin_ve_vl_pvfmksloeq_mvl
{Intrinsic::ve_vl_pvfmksloeq_mvml, 100775}, // __builtin_ve_vl_pvfmksloeq_mvml
{Intrinsic::ve_vl_pvfmksloeqnan_mvl, 100807}, // __builtin_ve_vl_pvfmksloeqnan_mvl
{Intrinsic::ve_vl_pvfmksloeqnan_mvml, 100841}, // __builtin_ve_vl_pvfmksloeqnan_mvml
{Intrinsic::ve_vl_pvfmksloge_mvl, 100876}, // __builtin_ve_vl_pvfmksloge_mvl
{Intrinsic::ve_vl_pvfmksloge_mvml, 100907}, // __builtin_ve_vl_pvfmksloge_mvml
{Intrinsic::ve_vl_pvfmkslogenan_mvl, 100939}, // __builtin_ve_vl_pvfmkslogenan_mvl
{Intrinsic::ve_vl_pvfmkslogenan_mvml, 100973}, // __builtin_ve_vl_pvfmkslogenan_mvml
{Intrinsic::ve_vl_pvfmkslogt_mvl, 101008}, // __builtin_ve_vl_pvfmkslogt_mvl
{Intrinsic::ve_vl_pvfmkslogt_mvml, 101039}, // __builtin_ve_vl_pvfmkslogt_mvml
{Intrinsic::ve_vl_pvfmkslogtnan_mvl, 101071}, // __builtin_ve_vl_pvfmkslogtnan_mvl
{Intrinsic::ve_vl_pvfmkslogtnan_mvml, 101105}, // __builtin_ve_vl_pvfmkslogtnan_mvml
{Intrinsic::ve_vl_pvfmkslole_mvl, 101140}, // __builtin_ve_vl_pvfmkslole_mvl
{Intrinsic::ve_vl_pvfmkslole_mvml, 101171}, // __builtin_ve_vl_pvfmkslole_mvml
{Intrinsic::ve_vl_pvfmkslolenan_mvl, 101203}, // __builtin_ve_vl_pvfmkslolenan_mvl
{Intrinsic::ve_vl_pvfmkslolenan_mvml, 101237}, // __builtin_ve_vl_pvfmkslolenan_mvml
{Intrinsic::ve_vl_pvfmkslolt_mvl, 101272}, // __builtin_ve_vl_pvfmkslolt_mvl
{Intrinsic::ve_vl_pvfmkslolt_mvml, 101303}, // __builtin_ve_vl_pvfmkslolt_mvml
{Intrinsic::ve_vl_pvfmksloltnan_mvl, 101335}, // __builtin_ve_vl_pvfmksloltnan_mvl
{Intrinsic::ve_vl_pvfmksloltnan_mvml, 101369}, // __builtin_ve_vl_pvfmksloltnan_mvml
{Intrinsic::ve_vl_pvfmkslonan_mvl, 101404}, // __builtin_ve_vl_pvfmkslonan_mvl
{Intrinsic::ve_vl_pvfmkslonan_mvml, 101436}, // __builtin_ve_vl_pvfmkslonan_mvml
{Intrinsic::ve_vl_pvfmkslone_mvl, 101469}, // __builtin_ve_vl_pvfmkslone_mvl
{Intrinsic::ve_vl_pvfmkslone_mvml, 101500}, // __builtin_ve_vl_pvfmkslone_mvml
{Intrinsic::ve_vl_pvfmkslonenan_mvl, 101532}, // __builtin_ve_vl_pvfmkslonenan_mvl
{Intrinsic::ve_vl_pvfmkslonenan_mvml, 101566}, // __builtin_ve_vl_pvfmkslonenan_mvml
{Intrinsic::ve_vl_pvfmkslonum_mvl, 101601}, // __builtin_ve_vl_pvfmkslonum_mvl
{Intrinsic::ve_vl_pvfmkslonum_mvml, 101633}, // __builtin_ve_vl_pvfmkslonum_mvml
{Intrinsic::ve_vl_pvfmkslt_MvMl, 101666}, // __builtin_ve_vl_pvfmkslt_MvMl
{Intrinsic::ve_vl_pvfmkslt_Mvl, 101696}, // __builtin_ve_vl_pvfmkslt_Mvl
{Intrinsic::ve_vl_pvfmksltnan_MvMl, 101725}, // __builtin_ve_vl_pvfmksltnan_MvMl
{Intrinsic::ve_vl_pvfmksltnan_Mvl, 101758}, // __builtin_ve_vl_pvfmksltnan_Mvl
{Intrinsic::ve_vl_pvfmksnan_MvMl, 101790}, // __builtin_ve_vl_pvfmksnan_MvMl
{Intrinsic::ve_vl_pvfmksnan_Mvl, 101821}, // __builtin_ve_vl_pvfmksnan_Mvl
{Intrinsic::ve_vl_pvfmksne_MvMl, 101851}, // __builtin_ve_vl_pvfmksne_MvMl
{Intrinsic::ve_vl_pvfmksne_Mvl, 101881}, // __builtin_ve_vl_pvfmksne_Mvl
{Intrinsic::ve_vl_pvfmksnenan_MvMl, 101910}, // __builtin_ve_vl_pvfmksnenan_MvMl
{Intrinsic::ve_vl_pvfmksnenan_Mvl, 101943}, // __builtin_ve_vl_pvfmksnenan_Mvl
{Intrinsic::ve_vl_pvfmksnum_MvMl, 101975}, // __builtin_ve_vl_pvfmksnum_MvMl
{Intrinsic::ve_vl_pvfmksnum_Mvl, 102006}, // __builtin_ve_vl_pvfmksnum_Mvl
{Intrinsic::ve_vl_pvfmksupeq_mvl, 102036}, // __builtin_ve_vl_pvfmksupeq_mvl
{Intrinsic::ve_vl_pvfmksupeq_mvml, 102067}, // __builtin_ve_vl_pvfmksupeq_mvml
{Intrinsic::ve_vl_pvfmksupeqnan_mvl, 102099}, // __builtin_ve_vl_pvfmksupeqnan_mvl
{Intrinsic::ve_vl_pvfmksupeqnan_mvml, 102133}, // __builtin_ve_vl_pvfmksupeqnan_mvml
{Intrinsic::ve_vl_pvfmksupge_mvl, 102168}, // __builtin_ve_vl_pvfmksupge_mvl
{Intrinsic::ve_vl_pvfmksupge_mvml, 102199}, // __builtin_ve_vl_pvfmksupge_mvml
{Intrinsic::ve_vl_pvfmksupgenan_mvl, 102231}, // __builtin_ve_vl_pvfmksupgenan_mvl
{Intrinsic::ve_vl_pvfmksupgenan_mvml, 102265}, // __builtin_ve_vl_pvfmksupgenan_mvml
{Intrinsic::ve_vl_pvfmksupgt_mvl, 102300}, // __builtin_ve_vl_pvfmksupgt_mvl
{Intrinsic::ve_vl_pvfmksupgt_mvml, 102331}, // __builtin_ve_vl_pvfmksupgt_mvml
{Intrinsic::ve_vl_pvfmksupgtnan_mvl, 102363}, // __builtin_ve_vl_pvfmksupgtnan_mvl
{Intrinsic::ve_vl_pvfmksupgtnan_mvml, 102397}, // __builtin_ve_vl_pvfmksupgtnan_mvml
{Intrinsic::ve_vl_pvfmksuple_mvl, 102432}, // __builtin_ve_vl_pvfmksuple_mvl
{Intrinsic::ve_vl_pvfmksuple_mvml, 102463}, // __builtin_ve_vl_pvfmksuple_mvml
{Intrinsic::ve_vl_pvfmksuplenan_mvl, 102495}, // __builtin_ve_vl_pvfmksuplenan_mvl
{Intrinsic::ve_vl_pvfmksuplenan_mvml, 102529}, // __builtin_ve_vl_pvfmksuplenan_mvml
{Intrinsic::ve_vl_pvfmksuplt_mvl, 102564}, // __builtin_ve_vl_pvfmksuplt_mvl
{Intrinsic::ve_vl_pvfmksuplt_mvml, 102595}, // __builtin_ve_vl_pvfmksuplt_mvml
{Intrinsic::ve_vl_pvfmksupltnan_mvl, 102627}, // __builtin_ve_vl_pvfmksupltnan_mvl
{Intrinsic::ve_vl_pvfmksupltnan_mvml, 102661}, // __builtin_ve_vl_pvfmksupltnan_mvml
{Intrinsic::ve_vl_pvfmksupnan_mvl, 102696}, // __builtin_ve_vl_pvfmksupnan_mvl
{Intrinsic::ve_vl_pvfmksupnan_mvml, 102728}, // __builtin_ve_vl_pvfmksupnan_mvml
{Intrinsic::ve_vl_pvfmksupne_mvl, 102761}, // __builtin_ve_vl_pvfmksupne_mvl
{Intrinsic::ve_vl_pvfmksupne_mvml, 102792}, // __builtin_ve_vl_pvfmksupne_mvml
{Intrinsic::ve_vl_pvfmksupnenan_mvl, 102824}, // __builtin_ve_vl_pvfmksupnenan_mvl
{Intrinsic::ve_vl_pvfmksupnenan_mvml, 102858}, // __builtin_ve_vl_pvfmksupnenan_mvml
{Intrinsic::ve_vl_pvfmksupnum_mvl, 102893}, // __builtin_ve_vl_pvfmksupnum_mvl
{Intrinsic::ve_vl_pvfmksupnum_mvml, 102925}, // __builtin_ve_vl_pvfmksupnum_mvml
{Intrinsic::ve_vl_pvfmkweq_MvMl, 102958}, // __builtin_ve_vl_pvfmkweq_MvMl
{Intrinsic::ve_vl_pvfmkweq_Mvl, 102988}, // __builtin_ve_vl_pvfmkweq_Mvl
{Intrinsic::ve_vl_pvfmkweqnan_MvMl, 103017}, // __builtin_ve_vl_pvfmkweqnan_MvMl
{Intrinsic::ve_vl_pvfmkweqnan_Mvl, 103050}, // __builtin_ve_vl_pvfmkweqnan_Mvl
{Intrinsic::ve_vl_pvfmkwge_MvMl, 103082}, // __builtin_ve_vl_pvfmkwge_MvMl
{Intrinsic::ve_vl_pvfmkwge_Mvl, 103112}, // __builtin_ve_vl_pvfmkwge_Mvl
{Intrinsic::ve_vl_pvfmkwgenan_MvMl, 103141}, // __builtin_ve_vl_pvfmkwgenan_MvMl
{Intrinsic::ve_vl_pvfmkwgenan_Mvl, 103174}, // __builtin_ve_vl_pvfmkwgenan_Mvl
{Intrinsic::ve_vl_pvfmkwgt_MvMl, 103206}, // __builtin_ve_vl_pvfmkwgt_MvMl
{Intrinsic::ve_vl_pvfmkwgt_Mvl, 103236}, // __builtin_ve_vl_pvfmkwgt_Mvl
{Intrinsic::ve_vl_pvfmkwgtnan_MvMl, 103265}, // __builtin_ve_vl_pvfmkwgtnan_MvMl
{Intrinsic::ve_vl_pvfmkwgtnan_Mvl, 103298}, // __builtin_ve_vl_pvfmkwgtnan_Mvl
{Intrinsic::ve_vl_pvfmkwle_MvMl, 103330}, // __builtin_ve_vl_pvfmkwle_MvMl
{Intrinsic::ve_vl_pvfmkwle_Mvl, 103360}, // __builtin_ve_vl_pvfmkwle_Mvl
{Intrinsic::ve_vl_pvfmkwlenan_MvMl, 103389}, // __builtin_ve_vl_pvfmkwlenan_MvMl
{Intrinsic::ve_vl_pvfmkwlenan_Mvl, 103422}, // __builtin_ve_vl_pvfmkwlenan_Mvl
{Intrinsic::ve_vl_pvfmkwloeq_mvl, 103454}, // __builtin_ve_vl_pvfmkwloeq_mvl
{Intrinsic::ve_vl_pvfmkwloeq_mvml, 103485}, // __builtin_ve_vl_pvfmkwloeq_mvml
{Intrinsic::ve_vl_pvfmkwloeqnan_mvl, 103517}, // __builtin_ve_vl_pvfmkwloeqnan_mvl
{Intrinsic::ve_vl_pvfmkwloeqnan_mvml, 103551}, // __builtin_ve_vl_pvfmkwloeqnan_mvml
{Intrinsic::ve_vl_pvfmkwloge_mvl, 103586}, // __builtin_ve_vl_pvfmkwloge_mvl
{Intrinsic::ve_vl_pvfmkwloge_mvml, 103617}, // __builtin_ve_vl_pvfmkwloge_mvml
{Intrinsic::ve_vl_pvfmkwlogenan_mvl, 103649}, // __builtin_ve_vl_pvfmkwlogenan_mvl
{Intrinsic::ve_vl_pvfmkwlogenan_mvml, 103683}, // __builtin_ve_vl_pvfmkwlogenan_mvml
{Intrinsic::ve_vl_pvfmkwlogt_mvl, 103718}, // __builtin_ve_vl_pvfmkwlogt_mvl
{Intrinsic::ve_vl_pvfmkwlogt_mvml, 103749}, // __builtin_ve_vl_pvfmkwlogt_mvml
{Intrinsic::ve_vl_pvfmkwlogtnan_mvl, 103781}, // __builtin_ve_vl_pvfmkwlogtnan_mvl
{Intrinsic::ve_vl_pvfmkwlogtnan_mvml, 103815}, // __builtin_ve_vl_pvfmkwlogtnan_mvml
{Intrinsic::ve_vl_pvfmkwlole_mvl, 103850}, // __builtin_ve_vl_pvfmkwlole_mvl
{Intrinsic::ve_vl_pvfmkwlole_mvml, 103881}, // __builtin_ve_vl_pvfmkwlole_mvml
{Intrinsic::ve_vl_pvfmkwlolenan_mvl, 103913}, // __builtin_ve_vl_pvfmkwlolenan_mvl
{Intrinsic::ve_vl_pvfmkwlolenan_mvml, 103947}, // __builtin_ve_vl_pvfmkwlolenan_mvml
{Intrinsic::ve_vl_pvfmkwlolt_mvl, 103982}, // __builtin_ve_vl_pvfmkwlolt_mvl
{Intrinsic::ve_vl_pvfmkwlolt_mvml, 104013}, // __builtin_ve_vl_pvfmkwlolt_mvml
{Intrinsic::ve_vl_pvfmkwloltnan_mvl, 104045}, // __builtin_ve_vl_pvfmkwloltnan_mvl
{Intrinsic::ve_vl_pvfmkwloltnan_mvml, 104079}, // __builtin_ve_vl_pvfmkwloltnan_mvml
{Intrinsic::ve_vl_pvfmkwlonan_mvl, 104114}, // __builtin_ve_vl_pvfmkwlonan_mvl
{Intrinsic::ve_vl_pvfmkwlonan_mvml, 104146}, // __builtin_ve_vl_pvfmkwlonan_mvml
{Intrinsic::ve_vl_pvfmkwlone_mvl, 104179}, // __builtin_ve_vl_pvfmkwlone_mvl
{Intrinsic::ve_vl_pvfmkwlone_mvml, 104210}, // __builtin_ve_vl_pvfmkwlone_mvml
{Intrinsic::ve_vl_pvfmkwlonenan_mvl, 104242}, // __builtin_ve_vl_pvfmkwlonenan_mvl
{Intrinsic::ve_vl_pvfmkwlonenan_mvml, 104276}, // __builtin_ve_vl_pvfmkwlonenan_mvml
{Intrinsic::ve_vl_pvfmkwlonum_mvl, 104311}, // __builtin_ve_vl_pvfmkwlonum_mvl
{Intrinsic::ve_vl_pvfmkwlonum_mvml, 104343}, // __builtin_ve_vl_pvfmkwlonum_mvml
{Intrinsic::ve_vl_pvfmkwlt_MvMl, 104376}, // __builtin_ve_vl_pvfmkwlt_MvMl
{Intrinsic::ve_vl_pvfmkwlt_Mvl, 104406}, // __builtin_ve_vl_pvfmkwlt_Mvl
{Intrinsic::ve_vl_pvfmkwltnan_MvMl, 104435}, // __builtin_ve_vl_pvfmkwltnan_MvMl
{Intrinsic::ve_vl_pvfmkwltnan_Mvl, 104468}, // __builtin_ve_vl_pvfmkwltnan_Mvl
{Intrinsic::ve_vl_pvfmkwnan_MvMl, 104500}, // __builtin_ve_vl_pvfmkwnan_MvMl
{Intrinsic::ve_vl_pvfmkwnan_Mvl, 104531}, // __builtin_ve_vl_pvfmkwnan_Mvl
{Intrinsic::ve_vl_pvfmkwne_MvMl, 104561}, // __builtin_ve_vl_pvfmkwne_MvMl
{Intrinsic::ve_vl_pvfmkwne_Mvl, 104591}, // __builtin_ve_vl_pvfmkwne_Mvl
{Intrinsic::ve_vl_pvfmkwnenan_MvMl, 104620}, // __builtin_ve_vl_pvfmkwnenan_MvMl
{Intrinsic::ve_vl_pvfmkwnenan_Mvl, 104653}, // __builtin_ve_vl_pvfmkwnenan_Mvl
{Intrinsic::ve_vl_pvfmkwnum_MvMl, 104685}, // __builtin_ve_vl_pvfmkwnum_MvMl
{Intrinsic::ve_vl_pvfmkwnum_Mvl, 104716}, // __builtin_ve_vl_pvfmkwnum_Mvl
{Intrinsic::ve_vl_pvfmkwupeq_mvl, 104746}, // __builtin_ve_vl_pvfmkwupeq_mvl
{Intrinsic::ve_vl_pvfmkwupeq_mvml, 104777}, // __builtin_ve_vl_pvfmkwupeq_mvml
{Intrinsic::ve_vl_pvfmkwupeqnan_mvl, 104809}, // __builtin_ve_vl_pvfmkwupeqnan_mvl
{Intrinsic::ve_vl_pvfmkwupeqnan_mvml, 104843}, // __builtin_ve_vl_pvfmkwupeqnan_mvml
{Intrinsic::ve_vl_pvfmkwupge_mvl, 104878}, // __builtin_ve_vl_pvfmkwupge_mvl
{Intrinsic::ve_vl_pvfmkwupge_mvml, 104909}, // __builtin_ve_vl_pvfmkwupge_mvml
{Intrinsic::ve_vl_pvfmkwupgenan_mvl, 104941}, // __builtin_ve_vl_pvfmkwupgenan_mvl
{Intrinsic::ve_vl_pvfmkwupgenan_mvml, 104975}, // __builtin_ve_vl_pvfmkwupgenan_mvml
{Intrinsic::ve_vl_pvfmkwupgt_mvl, 105010}, // __builtin_ve_vl_pvfmkwupgt_mvl
{Intrinsic::ve_vl_pvfmkwupgt_mvml, 105041}, // __builtin_ve_vl_pvfmkwupgt_mvml
{Intrinsic::ve_vl_pvfmkwupgtnan_mvl, 105073}, // __builtin_ve_vl_pvfmkwupgtnan_mvl
{Intrinsic::ve_vl_pvfmkwupgtnan_mvml, 105107}, // __builtin_ve_vl_pvfmkwupgtnan_mvml
{Intrinsic::ve_vl_pvfmkwuple_mvl, 105142}, // __builtin_ve_vl_pvfmkwuple_mvl
{Intrinsic::ve_vl_pvfmkwuple_mvml, 105173}, // __builtin_ve_vl_pvfmkwuple_mvml
{Intrinsic::ve_vl_pvfmkwuplenan_mvl, 105205}, // __builtin_ve_vl_pvfmkwuplenan_mvl
{Intrinsic::ve_vl_pvfmkwuplenan_mvml, 105239}, // __builtin_ve_vl_pvfmkwuplenan_mvml
{Intrinsic::ve_vl_pvfmkwuplt_mvl, 105274}, // __builtin_ve_vl_pvfmkwuplt_mvl
{Intrinsic::ve_vl_pvfmkwuplt_mvml, 105305}, // __builtin_ve_vl_pvfmkwuplt_mvml
{Intrinsic::ve_vl_pvfmkwupltnan_mvl, 105337}, // __builtin_ve_vl_pvfmkwupltnan_mvl
{Intrinsic::ve_vl_pvfmkwupltnan_mvml, 105371}, // __builtin_ve_vl_pvfmkwupltnan_mvml
{Intrinsic::ve_vl_pvfmkwupnan_mvl, 105406}, // __builtin_ve_vl_pvfmkwupnan_mvl
{Intrinsic::ve_vl_pvfmkwupnan_mvml, 105438}, // __builtin_ve_vl_pvfmkwupnan_mvml
{Intrinsic::ve_vl_pvfmkwupne_mvl, 105471}, // __builtin_ve_vl_pvfmkwupne_mvl
{Intrinsic::ve_vl_pvfmkwupne_mvml, 105502}, // __builtin_ve_vl_pvfmkwupne_mvml
{Intrinsic::ve_vl_pvfmkwupnenan_mvl, 105534}, // __builtin_ve_vl_pvfmkwupnenan_mvl
{Intrinsic::ve_vl_pvfmkwupnenan_mvml, 105568}, // __builtin_ve_vl_pvfmkwupnenan_mvml
{Intrinsic::ve_vl_pvfmkwupnum_mvl, 105603}, // __builtin_ve_vl_pvfmkwupnum_mvl
{Intrinsic::ve_vl_pvfmkwupnum_mvml, 105635}, // __builtin_ve_vl_pvfmkwupnum_mvml
{Intrinsic::ve_vl_pvfmsb_vsvvMvl, 105668}, // __builtin_ve_vl_pvfmsb_vsvvMvl
{Intrinsic::ve_vl_pvfmsb_vsvvl, 105699}, // __builtin_ve_vl_pvfmsb_vsvvl
{Intrinsic::ve_vl_pvfmsb_vsvvvl, 105728}, // __builtin_ve_vl_pvfmsb_vsvvvl
{Intrinsic::ve_vl_pvfmsb_vvsvMvl, 105758}, // __builtin_ve_vl_pvfmsb_vvsvMvl
{Intrinsic::ve_vl_pvfmsb_vvsvl, 105789}, // __builtin_ve_vl_pvfmsb_vvsvl
{Intrinsic::ve_vl_pvfmsb_vvsvvl, 105818}, // __builtin_ve_vl_pvfmsb_vvsvvl
{Intrinsic::ve_vl_pvfmsb_vvvvMvl, 105848}, // __builtin_ve_vl_pvfmsb_vvvvMvl
{Intrinsic::ve_vl_pvfmsb_vvvvl, 105879}, // __builtin_ve_vl_pvfmsb_vvvvl
{Intrinsic::ve_vl_pvfmsb_vvvvvl, 105908}, // __builtin_ve_vl_pvfmsb_vvvvvl
{Intrinsic::ve_vl_pvfmul_vsvMvl, 105938}, // __builtin_ve_vl_pvfmul_vsvMvl
{Intrinsic::ve_vl_pvfmul_vsvl, 105968}, // __builtin_ve_vl_pvfmul_vsvl
{Intrinsic::ve_vl_pvfmul_vsvvl, 105996}, // __builtin_ve_vl_pvfmul_vsvvl
{Intrinsic::ve_vl_pvfmul_vvvMvl, 106025}, // __builtin_ve_vl_pvfmul_vvvMvl
{Intrinsic::ve_vl_pvfmul_vvvl, 106055}, // __builtin_ve_vl_pvfmul_vvvl
{Intrinsic::ve_vl_pvfmul_vvvvl, 106083}, // __builtin_ve_vl_pvfmul_vvvvl
{Intrinsic::ve_vl_pvfnmad_vsvvMvl, 106112}, // __builtin_ve_vl_pvfnmad_vsvvMvl
{Intrinsic::ve_vl_pvfnmad_vsvvl, 106144}, // __builtin_ve_vl_pvfnmad_vsvvl
{Intrinsic::ve_vl_pvfnmad_vsvvvl, 106174}, // __builtin_ve_vl_pvfnmad_vsvvvl
{Intrinsic::ve_vl_pvfnmad_vvsvMvl, 106205}, // __builtin_ve_vl_pvfnmad_vvsvMvl
{Intrinsic::ve_vl_pvfnmad_vvsvl, 106237}, // __builtin_ve_vl_pvfnmad_vvsvl
{Intrinsic::ve_vl_pvfnmad_vvsvvl, 106267}, // __builtin_ve_vl_pvfnmad_vvsvvl
{Intrinsic::ve_vl_pvfnmad_vvvvMvl, 106298}, // __builtin_ve_vl_pvfnmad_vvvvMvl
{Intrinsic::ve_vl_pvfnmad_vvvvl, 106330}, // __builtin_ve_vl_pvfnmad_vvvvl
{Intrinsic::ve_vl_pvfnmad_vvvvvl, 106360}, // __builtin_ve_vl_pvfnmad_vvvvvl
{Intrinsic::ve_vl_pvfnmsb_vsvvMvl, 106391}, // __builtin_ve_vl_pvfnmsb_vsvvMvl
{Intrinsic::ve_vl_pvfnmsb_vsvvl, 106423}, // __builtin_ve_vl_pvfnmsb_vsvvl
{Intrinsic::ve_vl_pvfnmsb_vsvvvl, 106453}, // __builtin_ve_vl_pvfnmsb_vsvvvl
{Intrinsic::ve_vl_pvfnmsb_vvsvMvl, 106484}, // __builtin_ve_vl_pvfnmsb_vvsvMvl
{Intrinsic::ve_vl_pvfnmsb_vvsvl, 106516}, // __builtin_ve_vl_pvfnmsb_vvsvl
{Intrinsic::ve_vl_pvfnmsb_vvsvvl, 106546}, // __builtin_ve_vl_pvfnmsb_vvsvvl
{Intrinsic::ve_vl_pvfnmsb_vvvvMvl, 106577}, // __builtin_ve_vl_pvfnmsb_vvvvMvl
{Intrinsic::ve_vl_pvfnmsb_vvvvl, 106609}, // __builtin_ve_vl_pvfnmsb_vvvvl
{Intrinsic::ve_vl_pvfnmsb_vvvvvl, 106639}, // __builtin_ve_vl_pvfnmsb_vvvvvl
{Intrinsic::ve_vl_pvfsub_vsvMvl, 106670}, // __builtin_ve_vl_pvfsub_vsvMvl
{Intrinsic::ve_vl_pvfsub_vsvl, 106700}, // __builtin_ve_vl_pvfsub_vsvl
{Intrinsic::ve_vl_pvfsub_vsvvl, 106728}, // __builtin_ve_vl_pvfsub_vsvvl
{Intrinsic::ve_vl_pvfsub_vvvMvl, 106757}, // __builtin_ve_vl_pvfsub_vvvMvl
{Intrinsic::ve_vl_pvfsub_vvvl, 106787}, // __builtin_ve_vl_pvfsub_vvvl
{Intrinsic::ve_vl_pvfsub_vvvvl, 106815}, // __builtin_ve_vl_pvfsub_vvvvl
{Intrinsic::ve_vl_pvmaxs_vsvMvl, 106844}, // __builtin_ve_vl_pvmaxs_vsvMvl
{Intrinsic::ve_vl_pvmaxs_vsvl, 106874}, // __builtin_ve_vl_pvmaxs_vsvl
{Intrinsic::ve_vl_pvmaxs_vsvvl, 106902}, // __builtin_ve_vl_pvmaxs_vsvvl
{Intrinsic::ve_vl_pvmaxs_vvvMvl, 106931}, // __builtin_ve_vl_pvmaxs_vvvMvl
{Intrinsic::ve_vl_pvmaxs_vvvl, 106961}, // __builtin_ve_vl_pvmaxs_vvvl
{Intrinsic::ve_vl_pvmaxs_vvvvl, 106989}, // __builtin_ve_vl_pvmaxs_vvvvl
{Intrinsic::ve_vl_pvmins_vsvMvl, 107018}, // __builtin_ve_vl_pvmins_vsvMvl
{Intrinsic::ve_vl_pvmins_vsvl, 107048}, // __builtin_ve_vl_pvmins_vsvl
{Intrinsic::ve_vl_pvmins_vsvvl, 107076}, // __builtin_ve_vl_pvmins_vsvvl
{Intrinsic::ve_vl_pvmins_vvvMvl, 107105}, // __builtin_ve_vl_pvmins_vvvMvl
{Intrinsic::ve_vl_pvmins_vvvl, 107135}, // __builtin_ve_vl_pvmins_vvvl
{Intrinsic::ve_vl_pvmins_vvvvl, 107163}, // __builtin_ve_vl_pvmins_vvvvl
{Intrinsic::ve_vl_pvor_vsvMvl, 107192}, // __builtin_ve_vl_pvor_vsvMvl
{Intrinsic::ve_vl_pvor_vsvl, 107220}, // __builtin_ve_vl_pvor_vsvl
{Intrinsic::ve_vl_pvor_vsvvl, 107246}, // __builtin_ve_vl_pvor_vsvvl
{Intrinsic::ve_vl_pvor_vvvMvl, 107273}, // __builtin_ve_vl_pvor_vvvMvl
{Intrinsic::ve_vl_pvor_vvvl, 107301}, // __builtin_ve_vl_pvor_vvvl
{Intrinsic::ve_vl_pvor_vvvvl, 107327}, // __builtin_ve_vl_pvor_vvvvl
{Intrinsic::ve_vl_pvrcp_vvl, 107354}, // __builtin_ve_vl_pvrcp_vvl
{Intrinsic::ve_vl_pvrcp_vvvl, 107380}, // __builtin_ve_vl_pvrcp_vvvl
{Intrinsic::ve_vl_pvrsqrt_vvl, 107407}, // __builtin_ve_vl_pvrsqrt_vvl
{Intrinsic::ve_vl_pvrsqrt_vvvl, 107435}, // __builtin_ve_vl_pvrsqrt_vvvl
{Intrinsic::ve_vl_pvrsqrtnex_vvl, 107464}, // __builtin_ve_vl_pvrsqrtnex_vvl
{Intrinsic::ve_vl_pvrsqrtnex_vvvl, 107495}, // __builtin_ve_vl_pvrsqrtnex_vvvl
{Intrinsic::ve_vl_pvseq_vl, 107527}, // __builtin_ve_vl_pvseq_vl
{Intrinsic::ve_vl_pvseq_vvl, 107552}, // __builtin_ve_vl_pvseq_vvl
{Intrinsic::ve_vl_pvseqlo_vl, 107578}, // __builtin_ve_vl_pvseqlo_vl
{Intrinsic::ve_vl_pvseqlo_vvl, 107605}, // __builtin_ve_vl_pvseqlo_vvl
{Intrinsic::ve_vl_pvsequp_vl, 107633}, // __builtin_ve_vl_pvsequp_vl
{Intrinsic::ve_vl_pvsequp_vvl, 107660}, // __builtin_ve_vl_pvsequp_vvl
{Intrinsic::ve_vl_pvsla_vvsMvl, 107688}, // __builtin_ve_vl_pvsla_vvsMvl
{Intrinsic::ve_vl_pvsla_vvsl, 107717}, // __builtin_ve_vl_pvsla_vvsl
{Intrinsic::ve_vl_pvsla_vvsvl, 107744}, // __builtin_ve_vl_pvsla_vvsvl
{Intrinsic::ve_vl_pvsla_vvvMvl, 107772}, // __builtin_ve_vl_pvsla_vvvMvl
{Intrinsic::ve_vl_pvsla_vvvl, 107801}, // __builtin_ve_vl_pvsla_vvvl
{Intrinsic::ve_vl_pvsla_vvvvl, 107828}, // __builtin_ve_vl_pvsla_vvvvl
{Intrinsic::ve_vl_pvsll_vvsMvl, 107856}, // __builtin_ve_vl_pvsll_vvsMvl
{Intrinsic::ve_vl_pvsll_vvsl, 107885}, // __builtin_ve_vl_pvsll_vvsl
{Intrinsic::ve_vl_pvsll_vvsvl, 107912}, // __builtin_ve_vl_pvsll_vvsvl
{Intrinsic::ve_vl_pvsll_vvvMvl, 107940}, // __builtin_ve_vl_pvsll_vvvMvl
{Intrinsic::ve_vl_pvsll_vvvl, 107969}, // __builtin_ve_vl_pvsll_vvvl
{Intrinsic::ve_vl_pvsll_vvvvl, 107996}, // __builtin_ve_vl_pvsll_vvvvl
{Intrinsic::ve_vl_pvsra_vvsMvl, 108024}, // __builtin_ve_vl_pvsra_vvsMvl
{Intrinsic::ve_vl_pvsra_vvsl, 108053}, // __builtin_ve_vl_pvsra_vvsl
{Intrinsic::ve_vl_pvsra_vvsvl, 108080}, // __builtin_ve_vl_pvsra_vvsvl
{Intrinsic::ve_vl_pvsra_vvvMvl, 108108}, // __builtin_ve_vl_pvsra_vvvMvl
{Intrinsic::ve_vl_pvsra_vvvl, 108137}, // __builtin_ve_vl_pvsra_vvvl
{Intrinsic::ve_vl_pvsra_vvvvl, 108164}, // __builtin_ve_vl_pvsra_vvvvl
{Intrinsic::ve_vl_pvsrl_vvsMvl, 108192}, // __builtin_ve_vl_pvsrl_vvsMvl
{Intrinsic::ve_vl_pvsrl_vvsl, 108221}, // __builtin_ve_vl_pvsrl_vvsl
{Intrinsic::ve_vl_pvsrl_vvsvl, 108248}, // __builtin_ve_vl_pvsrl_vvsvl
{Intrinsic::ve_vl_pvsrl_vvvMvl, 108276}, // __builtin_ve_vl_pvsrl_vvvMvl
{Intrinsic::ve_vl_pvsrl_vvvl, 108305}, // __builtin_ve_vl_pvsrl_vvvl
{Intrinsic::ve_vl_pvsrl_vvvvl, 108332}, // __builtin_ve_vl_pvsrl_vvvvl
{Intrinsic::ve_vl_pvsubs_vsvMvl, 108360}, // __builtin_ve_vl_pvsubs_vsvMvl
{Intrinsic::ve_vl_pvsubs_vsvl, 108390}, // __builtin_ve_vl_pvsubs_vsvl
{Intrinsic::ve_vl_pvsubs_vsvvl, 108418}, // __builtin_ve_vl_pvsubs_vsvvl
{Intrinsic::ve_vl_pvsubs_vvvMvl, 108447}, // __builtin_ve_vl_pvsubs_vvvMvl
{Intrinsic::ve_vl_pvsubs_vvvl, 108477}, // __builtin_ve_vl_pvsubs_vvvl
{Intrinsic::ve_vl_pvsubs_vvvvl, 108505}, // __builtin_ve_vl_pvsubs_vvvvl
{Intrinsic::ve_vl_pvsubu_vsvMvl, 108534}, // __builtin_ve_vl_pvsubu_vsvMvl
{Intrinsic::ve_vl_pvsubu_vsvl, 108564}, // __builtin_ve_vl_pvsubu_vsvl
{Intrinsic::ve_vl_pvsubu_vsvvl, 108592}, // __builtin_ve_vl_pvsubu_vsvvl
{Intrinsic::ve_vl_pvsubu_vvvMvl, 108621}, // __builtin_ve_vl_pvsubu_vvvMvl
{Intrinsic::ve_vl_pvsubu_vvvl, 108651}, // __builtin_ve_vl_pvsubu_vvvl
{Intrinsic::ve_vl_pvsubu_vvvvl, 108679}, // __builtin_ve_vl_pvsubu_vvvvl
{Intrinsic::ve_vl_pvxor_vsvMvl, 108708}, // __builtin_ve_vl_pvxor_vsvMvl
{Intrinsic::ve_vl_pvxor_vsvl, 108737}, // __builtin_ve_vl_pvxor_vsvl
{Intrinsic::ve_vl_pvxor_vsvvl, 108764}, // __builtin_ve_vl_pvxor_vsvvl
{Intrinsic::ve_vl_pvxor_vvvMvl, 108792}, // __builtin_ve_vl_pvxor_vvvMvl
{Intrinsic::ve_vl_pvxor_vvvl, 108821}, // __builtin_ve_vl_pvxor_vvvl
{Intrinsic::ve_vl_pvxor_vvvvl, 108848}, // __builtin_ve_vl_pvxor_vvvvl
{Intrinsic::ve_vl_svm_sMs, 108876}, // __builtin_ve_vl_svm_sMs
{Intrinsic::ve_vl_svm_sms, 108900}, // __builtin_ve_vl_svm_sms
{Intrinsic::ve_vl_svob, 108924}, // __builtin_ve_vl_svob
{Intrinsic::ve_vl_tovm_sml, 108945}, // __builtin_ve_vl_tovm_sml
{Intrinsic::ve_vl_vaddsl_vsvl, 108970}, // __builtin_ve_vl_vaddsl_vsvl
{Intrinsic::ve_vl_vaddsl_vsvmvl, 108998}, // __builtin_ve_vl_vaddsl_vsvmvl
{Intrinsic::ve_vl_vaddsl_vsvvl, 109028}, // __builtin_ve_vl_vaddsl_vsvvl
{Intrinsic::ve_vl_vaddsl_vvvl, 109057}, // __builtin_ve_vl_vaddsl_vvvl
{Intrinsic::ve_vl_vaddsl_vvvmvl, 109085}, // __builtin_ve_vl_vaddsl_vvvmvl
{Intrinsic::ve_vl_vaddsl_vvvvl, 109115}, // __builtin_ve_vl_vaddsl_vvvvl
{Intrinsic::ve_vl_vaddswsx_vsvl, 109144}, // __builtin_ve_vl_vaddswsx_vsvl
{Intrinsic::ve_vl_vaddswsx_vsvmvl, 109174}, // __builtin_ve_vl_vaddswsx_vsvmvl
{Intrinsic::ve_vl_vaddswsx_vsvvl, 109206}, // __builtin_ve_vl_vaddswsx_vsvvl
{Intrinsic::ve_vl_vaddswsx_vvvl, 109237}, // __builtin_ve_vl_vaddswsx_vvvl
{Intrinsic::ve_vl_vaddswsx_vvvmvl, 109267}, // __builtin_ve_vl_vaddswsx_vvvmvl
{Intrinsic::ve_vl_vaddswsx_vvvvl, 109299}, // __builtin_ve_vl_vaddswsx_vvvvl
{Intrinsic::ve_vl_vaddswzx_vsvl, 109330}, // __builtin_ve_vl_vaddswzx_vsvl
{Intrinsic::ve_vl_vaddswzx_vsvmvl, 109360}, // __builtin_ve_vl_vaddswzx_vsvmvl
{Intrinsic::ve_vl_vaddswzx_vsvvl, 109392}, // __builtin_ve_vl_vaddswzx_vsvvl
{Intrinsic::ve_vl_vaddswzx_vvvl, 109423}, // __builtin_ve_vl_vaddswzx_vvvl
{Intrinsic::ve_vl_vaddswzx_vvvmvl, 109453}, // __builtin_ve_vl_vaddswzx_vvvmvl
{Intrinsic::ve_vl_vaddswzx_vvvvl, 109485}, // __builtin_ve_vl_vaddswzx_vvvvl
{Intrinsic::ve_vl_vaddul_vsvl, 109516}, // __builtin_ve_vl_vaddul_vsvl
{Intrinsic::ve_vl_vaddul_vsvmvl, 109544}, // __builtin_ve_vl_vaddul_vsvmvl
{Intrinsic::ve_vl_vaddul_vsvvl, 109574}, // __builtin_ve_vl_vaddul_vsvvl
{Intrinsic::ve_vl_vaddul_vvvl, 109603}, // __builtin_ve_vl_vaddul_vvvl
{Intrinsic::ve_vl_vaddul_vvvmvl, 109631}, // __builtin_ve_vl_vaddul_vvvmvl
{Intrinsic::ve_vl_vaddul_vvvvl, 109661}, // __builtin_ve_vl_vaddul_vvvvl
{Intrinsic::ve_vl_vadduw_vsvl, 109690}, // __builtin_ve_vl_vadduw_vsvl
{Intrinsic::ve_vl_vadduw_vsvmvl, 109718}, // __builtin_ve_vl_vadduw_vsvmvl
{Intrinsic::ve_vl_vadduw_vsvvl, 109748}, // __builtin_ve_vl_vadduw_vsvvl
{Intrinsic::ve_vl_vadduw_vvvl, 109777}, // __builtin_ve_vl_vadduw_vvvl
{Intrinsic::ve_vl_vadduw_vvvmvl, 109805}, // __builtin_ve_vl_vadduw_vvvmvl
{Intrinsic::ve_vl_vadduw_vvvvl, 109835}, // __builtin_ve_vl_vadduw_vvvvl
{Intrinsic::ve_vl_vand_vsvl, 109864}, // __builtin_ve_vl_vand_vsvl
{Intrinsic::ve_vl_vand_vsvmvl, 109890}, // __builtin_ve_vl_vand_vsvmvl
{Intrinsic::ve_vl_vand_vsvvl, 109918}, // __builtin_ve_vl_vand_vsvvl
{Intrinsic::ve_vl_vand_vvvl, 109945}, // __builtin_ve_vl_vand_vvvl
{Intrinsic::ve_vl_vand_vvvmvl, 109971}, // __builtin_ve_vl_vand_vvvmvl
{Intrinsic::ve_vl_vand_vvvvl, 109999}, // __builtin_ve_vl_vand_vvvvl
{Intrinsic::ve_vl_vbrdd_vsl, 110026}, // __builtin_ve_vl_vbrdd_vsl
{Intrinsic::ve_vl_vbrdd_vsmvl, 110052}, // __builtin_ve_vl_vbrdd_vsmvl
{Intrinsic::ve_vl_vbrdd_vsvl, 110080}, // __builtin_ve_vl_vbrdd_vsvl
{Intrinsic::ve_vl_vbrdl_vsl, 110107}, // __builtin_ve_vl_vbrdl_vsl
{Intrinsic::ve_vl_vbrdl_vsmvl, 110133}, // __builtin_ve_vl_vbrdl_vsmvl
{Intrinsic::ve_vl_vbrdl_vsvl, 110161}, // __builtin_ve_vl_vbrdl_vsvl
{Intrinsic::ve_vl_vbrds_vsl, 110188}, // __builtin_ve_vl_vbrds_vsl
{Intrinsic::ve_vl_vbrds_vsmvl, 110214}, // __builtin_ve_vl_vbrds_vsmvl
{Intrinsic::ve_vl_vbrds_vsvl, 110242}, // __builtin_ve_vl_vbrds_vsvl
{Intrinsic::ve_vl_vbrdw_vsl, 110269}, // __builtin_ve_vl_vbrdw_vsl
{Intrinsic::ve_vl_vbrdw_vsmvl, 110295}, // __builtin_ve_vl_vbrdw_vsmvl
{Intrinsic::ve_vl_vbrdw_vsvl, 110323}, // __builtin_ve_vl_vbrdw_vsvl
{Intrinsic::ve_vl_vcmpsl_vsvl, 110350}, // __builtin_ve_vl_vcmpsl_vsvl
{Intrinsic::ve_vl_vcmpsl_vsvmvl, 110378}, // __builtin_ve_vl_vcmpsl_vsvmvl
{Intrinsic::ve_vl_vcmpsl_vsvvl, 110408}, // __builtin_ve_vl_vcmpsl_vsvvl
{Intrinsic::ve_vl_vcmpsl_vvvl, 110437}, // __builtin_ve_vl_vcmpsl_vvvl
{Intrinsic::ve_vl_vcmpsl_vvvmvl, 110465}, // __builtin_ve_vl_vcmpsl_vvvmvl
{Intrinsic::ve_vl_vcmpsl_vvvvl, 110495}, // __builtin_ve_vl_vcmpsl_vvvvl
{Intrinsic::ve_vl_vcmpswsx_vsvl, 110524}, // __builtin_ve_vl_vcmpswsx_vsvl
{Intrinsic::ve_vl_vcmpswsx_vsvmvl, 110554}, // __builtin_ve_vl_vcmpswsx_vsvmvl
{Intrinsic::ve_vl_vcmpswsx_vsvvl, 110586}, // __builtin_ve_vl_vcmpswsx_vsvvl
{Intrinsic::ve_vl_vcmpswsx_vvvl, 110617}, // __builtin_ve_vl_vcmpswsx_vvvl
{Intrinsic::ve_vl_vcmpswsx_vvvmvl, 110647}, // __builtin_ve_vl_vcmpswsx_vvvmvl
{Intrinsic::ve_vl_vcmpswsx_vvvvl, 110679}, // __builtin_ve_vl_vcmpswsx_vvvvl
{Intrinsic::ve_vl_vcmpswzx_vsvl, 110710}, // __builtin_ve_vl_vcmpswzx_vsvl
{Intrinsic::ve_vl_vcmpswzx_vsvmvl, 110740}, // __builtin_ve_vl_vcmpswzx_vsvmvl
{Intrinsic::ve_vl_vcmpswzx_vsvvl, 110772}, // __builtin_ve_vl_vcmpswzx_vsvvl
{Intrinsic::ve_vl_vcmpswzx_vvvl, 110803}, // __builtin_ve_vl_vcmpswzx_vvvl
{Intrinsic::ve_vl_vcmpswzx_vvvmvl, 110833}, // __builtin_ve_vl_vcmpswzx_vvvmvl
{Intrinsic::ve_vl_vcmpswzx_vvvvl, 110865}, // __builtin_ve_vl_vcmpswzx_vvvvl
{Intrinsic::ve_vl_vcmpul_vsvl, 110896}, // __builtin_ve_vl_vcmpul_vsvl
{Intrinsic::ve_vl_vcmpul_vsvmvl, 110924}, // __builtin_ve_vl_vcmpul_vsvmvl
{Intrinsic::ve_vl_vcmpul_vsvvl, 110954}, // __builtin_ve_vl_vcmpul_vsvvl
{Intrinsic::ve_vl_vcmpul_vvvl, 110983}, // __builtin_ve_vl_vcmpul_vvvl
{Intrinsic::ve_vl_vcmpul_vvvmvl, 111011}, // __builtin_ve_vl_vcmpul_vvvmvl
{Intrinsic::ve_vl_vcmpul_vvvvl, 111041}, // __builtin_ve_vl_vcmpul_vvvvl
{Intrinsic::ve_vl_vcmpuw_vsvl, 111070}, // __builtin_ve_vl_vcmpuw_vsvl
{Intrinsic::ve_vl_vcmpuw_vsvmvl, 111098}, // __builtin_ve_vl_vcmpuw_vsvmvl
{Intrinsic::ve_vl_vcmpuw_vsvvl, 111128}, // __builtin_ve_vl_vcmpuw_vsvvl
{Intrinsic::ve_vl_vcmpuw_vvvl, 111157}, // __builtin_ve_vl_vcmpuw_vvvl
{Intrinsic::ve_vl_vcmpuw_vvvmvl, 111185}, // __builtin_ve_vl_vcmpuw_vvvmvl
{Intrinsic::ve_vl_vcmpuw_vvvvl, 111215}, // __builtin_ve_vl_vcmpuw_vvvvl
{Intrinsic::ve_vl_vcp_vvmvl, 111244}, // __builtin_ve_vl_vcp_vvmvl
{Intrinsic::ve_vl_vcvtdl_vvl, 111270}, // __builtin_ve_vl_vcvtdl_vvl
{Intrinsic::ve_vl_vcvtdl_vvvl, 111297}, // __builtin_ve_vl_vcvtdl_vvvl
{Intrinsic::ve_vl_vcvtds_vvl, 111325}, // __builtin_ve_vl_vcvtds_vvl
{Intrinsic::ve_vl_vcvtds_vvvl, 111352}, // __builtin_ve_vl_vcvtds_vvvl
{Intrinsic::ve_vl_vcvtdw_vvl, 111380}, // __builtin_ve_vl_vcvtdw_vvl
{Intrinsic::ve_vl_vcvtdw_vvvl, 111407}, // __builtin_ve_vl_vcvtdw_vvvl
{Intrinsic::ve_vl_vcvtld_vvl, 111435}, // __builtin_ve_vl_vcvtld_vvl
{Intrinsic::ve_vl_vcvtld_vvmvl, 111462}, // __builtin_ve_vl_vcvtld_vvmvl
{Intrinsic::ve_vl_vcvtld_vvvl, 111491}, // __builtin_ve_vl_vcvtld_vvvl
{Intrinsic::ve_vl_vcvtldrz_vvl, 111519}, // __builtin_ve_vl_vcvtldrz_vvl
{Intrinsic::ve_vl_vcvtldrz_vvmvl, 111548}, // __builtin_ve_vl_vcvtldrz_vvmvl
{Intrinsic::ve_vl_vcvtldrz_vvvl, 111579}, // __builtin_ve_vl_vcvtldrz_vvvl
{Intrinsic::ve_vl_vcvtsd_vvl, 111609}, // __builtin_ve_vl_vcvtsd_vvl
{Intrinsic::ve_vl_vcvtsd_vvvl, 111636}, // __builtin_ve_vl_vcvtsd_vvvl
{Intrinsic::ve_vl_vcvtsw_vvl, 111664}, // __builtin_ve_vl_vcvtsw_vvl
{Intrinsic::ve_vl_vcvtsw_vvvl, 111691}, // __builtin_ve_vl_vcvtsw_vvvl
{Intrinsic::ve_vl_vcvtwdsx_vvl, 111719}, // __builtin_ve_vl_vcvtwdsx_vvl
{Intrinsic::ve_vl_vcvtwdsx_vvmvl, 111748}, // __builtin_ve_vl_vcvtwdsx_vvmvl
{Intrinsic::ve_vl_vcvtwdsx_vvvl, 111779}, // __builtin_ve_vl_vcvtwdsx_vvvl
{Intrinsic::ve_vl_vcvtwdsxrz_vvl, 111809}, // __builtin_ve_vl_vcvtwdsxrz_vvl
{Intrinsic::ve_vl_vcvtwdsxrz_vvmvl, 111840}, // __builtin_ve_vl_vcvtwdsxrz_vvmvl
{Intrinsic::ve_vl_vcvtwdsxrz_vvvl, 111873}, // __builtin_ve_vl_vcvtwdsxrz_vvvl
{Intrinsic::ve_vl_vcvtwdzx_vvl, 111905}, // __builtin_ve_vl_vcvtwdzx_vvl
{Intrinsic::ve_vl_vcvtwdzx_vvmvl, 111934}, // __builtin_ve_vl_vcvtwdzx_vvmvl
{Intrinsic::ve_vl_vcvtwdzx_vvvl, 111965}, // __builtin_ve_vl_vcvtwdzx_vvvl
{Intrinsic::ve_vl_vcvtwdzxrz_vvl, 111995}, // __builtin_ve_vl_vcvtwdzxrz_vvl
{Intrinsic::ve_vl_vcvtwdzxrz_vvmvl, 112026}, // __builtin_ve_vl_vcvtwdzxrz_vvmvl
{Intrinsic::ve_vl_vcvtwdzxrz_vvvl, 112059}, // __builtin_ve_vl_vcvtwdzxrz_vvvl
{Intrinsic::ve_vl_vcvtwssx_vvl, 112091}, // __builtin_ve_vl_vcvtwssx_vvl
{Intrinsic::ve_vl_vcvtwssx_vvmvl, 112120}, // __builtin_ve_vl_vcvtwssx_vvmvl
{Intrinsic::ve_vl_vcvtwssx_vvvl, 112151}, // __builtin_ve_vl_vcvtwssx_vvvl
{Intrinsic::ve_vl_vcvtwssxrz_vvl, 112181}, // __builtin_ve_vl_vcvtwssxrz_vvl
{Intrinsic::ve_vl_vcvtwssxrz_vvmvl, 112212}, // __builtin_ve_vl_vcvtwssxrz_vvmvl
{Intrinsic::ve_vl_vcvtwssxrz_vvvl, 112245}, // __builtin_ve_vl_vcvtwssxrz_vvvl
{Intrinsic::ve_vl_vcvtwszx_vvl, 112277}, // __builtin_ve_vl_vcvtwszx_vvl
{Intrinsic::ve_vl_vcvtwszx_vvmvl, 112306}, // __builtin_ve_vl_vcvtwszx_vvmvl
{Intrinsic::ve_vl_vcvtwszx_vvvl, 112337}, // __builtin_ve_vl_vcvtwszx_vvvl
{Intrinsic::ve_vl_vcvtwszxrz_vvl, 112367}, // __builtin_ve_vl_vcvtwszxrz_vvl
{Intrinsic::ve_vl_vcvtwszxrz_vvmvl, 112398}, // __builtin_ve_vl_vcvtwszxrz_vvmvl
{Intrinsic::ve_vl_vcvtwszxrz_vvvl, 112431}, // __builtin_ve_vl_vcvtwszxrz_vvvl
{Intrinsic::ve_vl_vdivsl_vsvl, 112463}, // __builtin_ve_vl_vdivsl_vsvl
{Intrinsic::ve_vl_vdivsl_vsvmvl, 112491}, // __builtin_ve_vl_vdivsl_vsvmvl
{Intrinsic::ve_vl_vdivsl_vsvvl, 112521}, // __builtin_ve_vl_vdivsl_vsvvl
{Intrinsic::ve_vl_vdivsl_vvsl, 112550}, // __builtin_ve_vl_vdivsl_vvsl
{Intrinsic::ve_vl_vdivsl_vvsmvl, 112578}, // __builtin_ve_vl_vdivsl_vvsmvl
{Intrinsic::ve_vl_vdivsl_vvsvl, 112608}, // __builtin_ve_vl_vdivsl_vvsvl
{Intrinsic::ve_vl_vdivsl_vvvl, 112637}, // __builtin_ve_vl_vdivsl_vvvl
{Intrinsic::ve_vl_vdivsl_vvvmvl, 112665}, // __builtin_ve_vl_vdivsl_vvvmvl
{Intrinsic::ve_vl_vdivsl_vvvvl, 112695}, // __builtin_ve_vl_vdivsl_vvvvl
{Intrinsic::ve_vl_vdivswsx_vsvl, 112724}, // __builtin_ve_vl_vdivswsx_vsvl
{Intrinsic::ve_vl_vdivswsx_vsvmvl, 112754}, // __builtin_ve_vl_vdivswsx_vsvmvl
{Intrinsic::ve_vl_vdivswsx_vsvvl, 112786}, // __builtin_ve_vl_vdivswsx_vsvvl
{Intrinsic::ve_vl_vdivswsx_vvsl, 112817}, // __builtin_ve_vl_vdivswsx_vvsl
{Intrinsic::ve_vl_vdivswsx_vvsmvl, 112847}, // __builtin_ve_vl_vdivswsx_vvsmvl
{Intrinsic::ve_vl_vdivswsx_vvsvl, 112879}, // __builtin_ve_vl_vdivswsx_vvsvl
{Intrinsic::ve_vl_vdivswsx_vvvl, 112910}, // __builtin_ve_vl_vdivswsx_vvvl
{Intrinsic::ve_vl_vdivswsx_vvvmvl, 112940}, // __builtin_ve_vl_vdivswsx_vvvmvl
{Intrinsic::ve_vl_vdivswsx_vvvvl, 112972}, // __builtin_ve_vl_vdivswsx_vvvvl
{Intrinsic::ve_vl_vdivswzx_vsvl, 113003}, // __builtin_ve_vl_vdivswzx_vsvl
{Intrinsic::ve_vl_vdivswzx_vsvmvl, 113033}, // __builtin_ve_vl_vdivswzx_vsvmvl
{Intrinsic::ve_vl_vdivswzx_vsvvl, 113065}, // __builtin_ve_vl_vdivswzx_vsvvl
{Intrinsic::ve_vl_vdivswzx_vvsl, 113096}, // __builtin_ve_vl_vdivswzx_vvsl
{Intrinsic::ve_vl_vdivswzx_vvsmvl, 113126}, // __builtin_ve_vl_vdivswzx_vvsmvl
{Intrinsic::ve_vl_vdivswzx_vvsvl, 113158}, // __builtin_ve_vl_vdivswzx_vvsvl
{Intrinsic::ve_vl_vdivswzx_vvvl, 113189}, // __builtin_ve_vl_vdivswzx_vvvl
{Intrinsic::ve_vl_vdivswzx_vvvmvl, 113219}, // __builtin_ve_vl_vdivswzx_vvvmvl
{Intrinsic::ve_vl_vdivswzx_vvvvl, 113251}, // __builtin_ve_vl_vdivswzx_vvvvl
{Intrinsic::ve_vl_vdivul_vsvl, 113282}, // __builtin_ve_vl_vdivul_vsvl
{Intrinsic::ve_vl_vdivul_vsvmvl, 113310}, // __builtin_ve_vl_vdivul_vsvmvl
{Intrinsic::ve_vl_vdivul_vsvvl, 113340}, // __builtin_ve_vl_vdivul_vsvvl
{Intrinsic::ve_vl_vdivul_vvsl, 113369}, // __builtin_ve_vl_vdivul_vvsl
{Intrinsic::ve_vl_vdivul_vvsmvl, 113397}, // __builtin_ve_vl_vdivul_vvsmvl
{Intrinsic::ve_vl_vdivul_vvsvl, 113427}, // __builtin_ve_vl_vdivul_vvsvl
{Intrinsic::ve_vl_vdivul_vvvl, 113456}, // __builtin_ve_vl_vdivul_vvvl
{Intrinsic::ve_vl_vdivul_vvvmvl, 113484}, // __builtin_ve_vl_vdivul_vvvmvl
{Intrinsic::ve_vl_vdivul_vvvvl, 113514}, // __builtin_ve_vl_vdivul_vvvvl
{Intrinsic::ve_vl_vdivuw_vsvl, 113543}, // __builtin_ve_vl_vdivuw_vsvl
{Intrinsic::ve_vl_vdivuw_vsvmvl, 113571}, // __builtin_ve_vl_vdivuw_vsvmvl
{Intrinsic::ve_vl_vdivuw_vsvvl, 113601}, // __builtin_ve_vl_vdivuw_vsvvl
{Intrinsic::ve_vl_vdivuw_vvsl, 113630}, // __builtin_ve_vl_vdivuw_vvsl
{Intrinsic::ve_vl_vdivuw_vvsmvl, 113658}, // __builtin_ve_vl_vdivuw_vvsmvl
{Intrinsic::ve_vl_vdivuw_vvsvl, 113688}, // __builtin_ve_vl_vdivuw_vvsvl
{Intrinsic::ve_vl_vdivuw_vvvl, 113717}, // __builtin_ve_vl_vdivuw_vvvl
{Intrinsic::ve_vl_vdivuw_vvvmvl, 113745}, // __builtin_ve_vl_vdivuw_vvvmvl
{Intrinsic::ve_vl_vdivuw_vvvvl, 113775}, // __builtin_ve_vl_vdivuw_vvvvl
{Intrinsic::ve_vl_veqv_vsvl, 113804}, // __builtin_ve_vl_veqv_vsvl
{Intrinsic::ve_vl_veqv_vsvmvl, 113830}, // __builtin_ve_vl_veqv_vsvmvl
{Intrinsic::ve_vl_veqv_vsvvl, 113858}, // __builtin_ve_vl_veqv_vsvvl
{Intrinsic::ve_vl_veqv_vvvl, 113885}, // __builtin_ve_vl_veqv_vvvl
{Intrinsic::ve_vl_veqv_vvvmvl, 113911}, // __builtin_ve_vl_veqv_vvvmvl
{Intrinsic::ve_vl_veqv_vvvvl, 113939}, // __builtin_ve_vl_veqv_vvvvl
{Intrinsic::ve_vl_vex_vvmvl, 113966}, // __builtin_ve_vl_vex_vvmvl
{Intrinsic::ve_vl_vfaddd_vsvl, 113992}, // __builtin_ve_vl_vfaddd_vsvl
{Intrinsic::ve_vl_vfaddd_vsvmvl, 114020}, // __builtin_ve_vl_vfaddd_vsvmvl
{Intrinsic::ve_vl_vfaddd_vsvvl, 114050}, // __builtin_ve_vl_vfaddd_vsvvl
{Intrinsic::ve_vl_vfaddd_vvvl, 114079}, // __builtin_ve_vl_vfaddd_vvvl
{Intrinsic::ve_vl_vfaddd_vvvmvl, 114107}, // __builtin_ve_vl_vfaddd_vvvmvl
{Intrinsic::ve_vl_vfaddd_vvvvl, 114137}, // __builtin_ve_vl_vfaddd_vvvvl
{Intrinsic::ve_vl_vfadds_vsvl, 114166}, // __builtin_ve_vl_vfadds_vsvl
{Intrinsic::ve_vl_vfadds_vsvmvl, 114194}, // __builtin_ve_vl_vfadds_vsvmvl
{Intrinsic::ve_vl_vfadds_vsvvl, 114224}, // __builtin_ve_vl_vfadds_vsvvl
{Intrinsic::ve_vl_vfadds_vvvl, 114253}, // __builtin_ve_vl_vfadds_vvvl
{Intrinsic::ve_vl_vfadds_vvvmvl, 114281}, // __builtin_ve_vl_vfadds_vvvmvl
{Intrinsic::ve_vl_vfadds_vvvvl, 114311}, // __builtin_ve_vl_vfadds_vvvvl
{Intrinsic::ve_vl_vfcmpd_vsvl, 114340}, // __builtin_ve_vl_vfcmpd_vsvl
{Intrinsic::ve_vl_vfcmpd_vsvmvl, 114368}, // __builtin_ve_vl_vfcmpd_vsvmvl
{Intrinsic::ve_vl_vfcmpd_vsvvl, 114398}, // __builtin_ve_vl_vfcmpd_vsvvl
{Intrinsic::ve_vl_vfcmpd_vvvl, 114427}, // __builtin_ve_vl_vfcmpd_vvvl
{Intrinsic::ve_vl_vfcmpd_vvvmvl, 114455}, // __builtin_ve_vl_vfcmpd_vvvmvl
{Intrinsic::ve_vl_vfcmpd_vvvvl, 114485}, // __builtin_ve_vl_vfcmpd_vvvvl
{Intrinsic::ve_vl_vfcmps_vsvl, 114514}, // __builtin_ve_vl_vfcmps_vsvl
{Intrinsic::ve_vl_vfcmps_vsvmvl, 114542}, // __builtin_ve_vl_vfcmps_vsvmvl
{Intrinsic::ve_vl_vfcmps_vsvvl, 114572}, // __builtin_ve_vl_vfcmps_vsvvl
{Intrinsic::ve_vl_vfcmps_vvvl, 114601}, // __builtin_ve_vl_vfcmps_vvvl
{Intrinsic::ve_vl_vfcmps_vvvmvl, 114629}, // __builtin_ve_vl_vfcmps_vvvmvl
{Intrinsic::ve_vl_vfcmps_vvvvl, 114659}, // __builtin_ve_vl_vfcmps_vvvvl
{Intrinsic::ve_vl_vfdivd_vsvl, 114688}, // __builtin_ve_vl_vfdivd_vsvl
{Intrinsic::ve_vl_vfdivd_vsvmvl, 114716}, // __builtin_ve_vl_vfdivd_vsvmvl
{Intrinsic::ve_vl_vfdivd_vsvvl, 114746}, // __builtin_ve_vl_vfdivd_vsvvl
{Intrinsic::ve_vl_vfdivd_vvvl, 114775}, // __builtin_ve_vl_vfdivd_vvvl
{Intrinsic::ve_vl_vfdivd_vvvmvl, 114803}, // __builtin_ve_vl_vfdivd_vvvmvl
{Intrinsic::ve_vl_vfdivd_vvvvl, 114833}, // __builtin_ve_vl_vfdivd_vvvvl
{Intrinsic::ve_vl_vfdivs_vsvl, 114862}, // __builtin_ve_vl_vfdivs_vsvl
{Intrinsic::ve_vl_vfdivs_vsvmvl, 114890}, // __builtin_ve_vl_vfdivs_vsvmvl
{Intrinsic::ve_vl_vfdivs_vsvvl, 114920}, // __builtin_ve_vl_vfdivs_vsvvl
{Intrinsic::ve_vl_vfdivs_vvvl, 114949}, // __builtin_ve_vl_vfdivs_vvvl
{Intrinsic::ve_vl_vfdivs_vvvmvl, 114977}, // __builtin_ve_vl_vfdivs_vvvmvl
{Intrinsic::ve_vl_vfdivs_vvvvl, 115007}, // __builtin_ve_vl_vfdivs_vvvvl
{Intrinsic::ve_vl_vfmadd_vsvvl, 115036}, // __builtin_ve_vl_vfmadd_vsvvl
{Intrinsic::ve_vl_vfmadd_vsvvmvl, 115065}, // __builtin_ve_vl_vfmadd_vsvvmvl
{Intrinsic::ve_vl_vfmadd_vsvvvl, 115096}, // __builtin_ve_vl_vfmadd_vsvvvl
{Intrinsic::ve_vl_vfmadd_vvsvl, 115126}, // __builtin_ve_vl_vfmadd_vvsvl
{Intrinsic::ve_vl_vfmadd_vvsvmvl, 115155}, // __builtin_ve_vl_vfmadd_vvsvmvl
{Intrinsic::ve_vl_vfmadd_vvsvvl, 115186}, // __builtin_ve_vl_vfmadd_vvsvvl
{Intrinsic::ve_vl_vfmadd_vvvvl, 115216}, // __builtin_ve_vl_vfmadd_vvvvl
{Intrinsic::ve_vl_vfmadd_vvvvmvl, 115245}, // __builtin_ve_vl_vfmadd_vvvvmvl
{Intrinsic::ve_vl_vfmadd_vvvvvl, 115276}, // __builtin_ve_vl_vfmadd_vvvvvl
{Intrinsic::ve_vl_vfmads_vsvvl, 115306}, // __builtin_ve_vl_vfmads_vsvvl
{Intrinsic::ve_vl_vfmads_vsvvmvl, 115335}, // __builtin_ve_vl_vfmads_vsvvmvl
{Intrinsic::ve_vl_vfmads_vsvvvl, 115366}, // __builtin_ve_vl_vfmads_vsvvvl
{Intrinsic::ve_vl_vfmads_vvsvl, 115396}, // __builtin_ve_vl_vfmads_vvsvl
{Intrinsic::ve_vl_vfmads_vvsvmvl, 115425}, // __builtin_ve_vl_vfmads_vvsvmvl
{Intrinsic::ve_vl_vfmads_vvsvvl, 115456}, // __builtin_ve_vl_vfmads_vvsvvl
{Intrinsic::ve_vl_vfmads_vvvvl, 115486}, // __builtin_ve_vl_vfmads_vvvvl
{Intrinsic::ve_vl_vfmads_vvvvmvl, 115515}, // __builtin_ve_vl_vfmads_vvvvmvl
{Intrinsic::ve_vl_vfmads_vvvvvl, 115546}, // __builtin_ve_vl_vfmads_vvvvvl
{Intrinsic::ve_vl_vfmaxd_vsvl, 115576}, // __builtin_ve_vl_vfmaxd_vsvl
{Intrinsic::ve_vl_vfmaxd_vsvmvl, 115604}, // __builtin_ve_vl_vfmaxd_vsvmvl
{Intrinsic::ve_vl_vfmaxd_vsvvl, 115634}, // __builtin_ve_vl_vfmaxd_vsvvl
{Intrinsic::ve_vl_vfmaxd_vvvl, 115663}, // __builtin_ve_vl_vfmaxd_vvvl
{Intrinsic::ve_vl_vfmaxd_vvvmvl, 115691}, // __builtin_ve_vl_vfmaxd_vvvmvl
{Intrinsic::ve_vl_vfmaxd_vvvvl, 115721}, // __builtin_ve_vl_vfmaxd_vvvvl
{Intrinsic::ve_vl_vfmaxs_vsvl, 115750}, // __builtin_ve_vl_vfmaxs_vsvl
{Intrinsic::ve_vl_vfmaxs_vsvmvl, 115778}, // __builtin_ve_vl_vfmaxs_vsvmvl
{Intrinsic::ve_vl_vfmaxs_vsvvl, 115808}, // __builtin_ve_vl_vfmaxs_vsvvl
{Intrinsic::ve_vl_vfmaxs_vvvl, 115837}, // __builtin_ve_vl_vfmaxs_vvvl
{Intrinsic::ve_vl_vfmaxs_vvvmvl, 115865}, // __builtin_ve_vl_vfmaxs_vvvmvl
{Intrinsic::ve_vl_vfmaxs_vvvvl, 115895}, // __builtin_ve_vl_vfmaxs_vvvvl
{Intrinsic::ve_vl_vfmind_vsvl, 115924}, // __builtin_ve_vl_vfmind_vsvl
{Intrinsic::ve_vl_vfmind_vsvmvl, 115952}, // __builtin_ve_vl_vfmind_vsvmvl
{Intrinsic::ve_vl_vfmind_vsvvl, 115982}, // __builtin_ve_vl_vfmind_vsvvl
{Intrinsic::ve_vl_vfmind_vvvl, 116011}, // __builtin_ve_vl_vfmind_vvvl
{Intrinsic::ve_vl_vfmind_vvvmvl, 116039}, // __builtin_ve_vl_vfmind_vvvmvl
{Intrinsic::ve_vl_vfmind_vvvvl, 116069}, // __builtin_ve_vl_vfmind_vvvvl
{Intrinsic::ve_vl_vfmins_vsvl, 116098}, // __builtin_ve_vl_vfmins_vsvl
{Intrinsic::ve_vl_vfmins_vsvmvl, 116126}, // __builtin_ve_vl_vfmins_vsvmvl
{Intrinsic::ve_vl_vfmins_vsvvl, 116156}, // __builtin_ve_vl_vfmins_vsvvl
{Intrinsic::ve_vl_vfmins_vvvl, 116185}, // __builtin_ve_vl_vfmins_vvvl
{Intrinsic::ve_vl_vfmins_vvvmvl, 116213}, // __builtin_ve_vl_vfmins_vvvmvl
{Intrinsic::ve_vl_vfmins_vvvvl, 116243}, // __builtin_ve_vl_vfmins_vvvvl
{Intrinsic::ve_vl_vfmkdeq_mvl, 116272}, // __builtin_ve_vl_vfmkdeq_mvl
{Intrinsic::ve_vl_vfmkdeq_mvml, 116300}, // __builtin_ve_vl_vfmkdeq_mvml
{Intrinsic::ve_vl_vfmkdeqnan_mvl, 116329}, // __builtin_ve_vl_vfmkdeqnan_mvl
{Intrinsic::ve_vl_vfmkdeqnan_mvml, 116360}, // __builtin_ve_vl_vfmkdeqnan_mvml
{Intrinsic::ve_vl_vfmkdge_mvl, 116392}, // __builtin_ve_vl_vfmkdge_mvl
{Intrinsic::ve_vl_vfmkdge_mvml, 116420}, // __builtin_ve_vl_vfmkdge_mvml
{Intrinsic::ve_vl_vfmkdgenan_mvl, 116449}, // __builtin_ve_vl_vfmkdgenan_mvl
{Intrinsic::ve_vl_vfmkdgenan_mvml, 116480}, // __builtin_ve_vl_vfmkdgenan_mvml
{Intrinsic::ve_vl_vfmkdgt_mvl, 116512}, // __builtin_ve_vl_vfmkdgt_mvl
{Intrinsic::ve_vl_vfmkdgt_mvml, 116540}, // __builtin_ve_vl_vfmkdgt_mvml
{Intrinsic::ve_vl_vfmkdgtnan_mvl, 116569}, // __builtin_ve_vl_vfmkdgtnan_mvl
{Intrinsic::ve_vl_vfmkdgtnan_mvml, 116600}, // __builtin_ve_vl_vfmkdgtnan_mvml
{Intrinsic::ve_vl_vfmkdle_mvl, 116632}, // __builtin_ve_vl_vfmkdle_mvl
{Intrinsic::ve_vl_vfmkdle_mvml, 116660}, // __builtin_ve_vl_vfmkdle_mvml
{Intrinsic::ve_vl_vfmkdlenan_mvl, 116689}, // __builtin_ve_vl_vfmkdlenan_mvl
{Intrinsic::ve_vl_vfmkdlenan_mvml, 116720}, // __builtin_ve_vl_vfmkdlenan_mvml
{Intrinsic::ve_vl_vfmkdlt_mvl, 116752}, // __builtin_ve_vl_vfmkdlt_mvl
{Intrinsic::ve_vl_vfmkdlt_mvml, 116780}, // __builtin_ve_vl_vfmkdlt_mvml
{Intrinsic::ve_vl_vfmkdltnan_mvl, 116809}, // __builtin_ve_vl_vfmkdltnan_mvl
{Intrinsic::ve_vl_vfmkdltnan_mvml, 116840}, // __builtin_ve_vl_vfmkdltnan_mvml
{Intrinsic::ve_vl_vfmkdnan_mvl, 116872}, // __builtin_ve_vl_vfmkdnan_mvl
{Intrinsic::ve_vl_vfmkdnan_mvml, 116901}, // __builtin_ve_vl_vfmkdnan_mvml
{Intrinsic::ve_vl_vfmkdne_mvl, 116931}, // __builtin_ve_vl_vfmkdne_mvl
{Intrinsic::ve_vl_vfmkdne_mvml, 116959}, // __builtin_ve_vl_vfmkdne_mvml
{Intrinsic::ve_vl_vfmkdnenan_mvl, 116988}, // __builtin_ve_vl_vfmkdnenan_mvl
{Intrinsic::ve_vl_vfmkdnenan_mvml, 117019}, // __builtin_ve_vl_vfmkdnenan_mvml
{Intrinsic::ve_vl_vfmkdnum_mvl, 117051}, // __builtin_ve_vl_vfmkdnum_mvl
{Intrinsic::ve_vl_vfmkdnum_mvml, 117080}, // __builtin_ve_vl_vfmkdnum_mvml
{Intrinsic::ve_vl_vfmklaf_ml, 117110}, // __builtin_ve_vl_vfmklaf_ml
{Intrinsic::ve_vl_vfmklat_ml, 117137}, // __builtin_ve_vl_vfmklat_ml
{Intrinsic::ve_vl_vfmkleq_mvl, 117164}, // __builtin_ve_vl_vfmkleq_mvl
{Intrinsic::ve_vl_vfmkleq_mvml, 117192}, // __builtin_ve_vl_vfmkleq_mvml
{Intrinsic::ve_vl_vfmkleqnan_mvl, 117221}, // __builtin_ve_vl_vfmkleqnan_mvl
{Intrinsic::ve_vl_vfmkleqnan_mvml, 117252}, // __builtin_ve_vl_vfmkleqnan_mvml
{Intrinsic::ve_vl_vfmklge_mvl, 117284}, // __builtin_ve_vl_vfmklge_mvl
{Intrinsic::ve_vl_vfmklge_mvml, 117312}, // __builtin_ve_vl_vfmklge_mvml
{Intrinsic::ve_vl_vfmklgenan_mvl, 117341}, // __builtin_ve_vl_vfmklgenan_mvl
{Intrinsic::ve_vl_vfmklgenan_mvml, 117372}, // __builtin_ve_vl_vfmklgenan_mvml
{Intrinsic::ve_vl_vfmklgt_mvl, 117404}, // __builtin_ve_vl_vfmklgt_mvl
{Intrinsic::ve_vl_vfmklgt_mvml, 117432}, // __builtin_ve_vl_vfmklgt_mvml
{Intrinsic::ve_vl_vfmklgtnan_mvl, 117461}, // __builtin_ve_vl_vfmklgtnan_mvl
{Intrinsic::ve_vl_vfmklgtnan_mvml, 117492}, // __builtin_ve_vl_vfmklgtnan_mvml
{Intrinsic::ve_vl_vfmklle_mvl, 117524}, // __builtin_ve_vl_vfmklle_mvl
{Intrinsic::ve_vl_vfmklle_mvml, 117552}, // __builtin_ve_vl_vfmklle_mvml
{Intrinsic::ve_vl_vfmkllenan_mvl, 117581}, // __builtin_ve_vl_vfmkllenan_mvl
{Intrinsic::ve_vl_vfmkllenan_mvml, 117612}, // __builtin_ve_vl_vfmkllenan_mvml
{Intrinsic::ve_vl_vfmkllt_mvl, 117644}, // __builtin_ve_vl_vfmkllt_mvl
{Intrinsic::ve_vl_vfmkllt_mvml, 117672}, // __builtin_ve_vl_vfmkllt_mvml
{Intrinsic::ve_vl_vfmklltnan_mvl, 117701}, // __builtin_ve_vl_vfmklltnan_mvl
{Intrinsic::ve_vl_vfmklltnan_mvml, 117732}, // __builtin_ve_vl_vfmklltnan_mvml
{Intrinsic::ve_vl_vfmklnan_mvl, 117764}, // __builtin_ve_vl_vfmklnan_mvl
{Intrinsic::ve_vl_vfmklnan_mvml, 117793}, // __builtin_ve_vl_vfmklnan_mvml
{Intrinsic::ve_vl_vfmklne_mvl, 117823}, // __builtin_ve_vl_vfmklne_mvl
{Intrinsic::ve_vl_vfmklne_mvml, 117851}, // __builtin_ve_vl_vfmklne_mvml
{Intrinsic::ve_vl_vfmklnenan_mvl, 117880}, // __builtin_ve_vl_vfmklnenan_mvl
{Intrinsic::ve_vl_vfmklnenan_mvml, 117911}, // __builtin_ve_vl_vfmklnenan_mvml
{Intrinsic::ve_vl_vfmklnum_mvl, 117943}, // __builtin_ve_vl_vfmklnum_mvl
{Intrinsic::ve_vl_vfmklnum_mvml, 117972}, // __builtin_ve_vl_vfmklnum_mvml
{Intrinsic::ve_vl_vfmkseq_mvl, 118002}, // __builtin_ve_vl_vfmkseq_mvl
{Intrinsic::ve_vl_vfmkseq_mvml, 118030}, // __builtin_ve_vl_vfmkseq_mvml
{Intrinsic::ve_vl_vfmkseqnan_mvl, 118059}, // __builtin_ve_vl_vfmkseqnan_mvl
{Intrinsic::ve_vl_vfmkseqnan_mvml, 118090}, // __builtin_ve_vl_vfmkseqnan_mvml
{Intrinsic::ve_vl_vfmksge_mvl, 118122}, // __builtin_ve_vl_vfmksge_mvl
{Intrinsic::ve_vl_vfmksge_mvml, 118150}, // __builtin_ve_vl_vfmksge_mvml
{Intrinsic::ve_vl_vfmksgenan_mvl, 118179}, // __builtin_ve_vl_vfmksgenan_mvl
{Intrinsic::ve_vl_vfmksgenan_mvml, 118210}, // __builtin_ve_vl_vfmksgenan_mvml
{Intrinsic::ve_vl_vfmksgt_mvl, 118242}, // __builtin_ve_vl_vfmksgt_mvl
{Intrinsic::ve_vl_vfmksgt_mvml, 118270}, // __builtin_ve_vl_vfmksgt_mvml
{Intrinsic::ve_vl_vfmksgtnan_mvl, 118299}, // __builtin_ve_vl_vfmksgtnan_mvl
{Intrinsic::ve_vl_vfmksgtnan_mvml, 118330}, // __builtin_ve_vl_vfmksgtnan_mvml
{Intrinsic::ve_vl_vfmksle_mvl, 118362}, // __builtin_ve_vl_vfmksle_mvl
{Intrinsic::ve_vl_vfmksle_mvml, 118390}, // __builtin_ve_vl_vfmksle_mvml
{Intrinsic::ve_vl_vfmkslenan_mvl, 118419}, // __builtin_ve_vl_vfmkslenan_mvl
{Intrinsic::ve_vl_vfmkslenan_mvml, 118450}, // __builtin_ve_vl_vfmkslenan_mvml
{Intrinsic::ve_vl_vfmkslt_mvl, 118482}, // __builtin_ve_vl_vfmkslt_mvl
{Intrinsic::ve_vl_vfmkslt_mvml, 118510}, // __builtin_ve_vl_vfmkslt_mvml
{Intrinsic::ve_vl_vfmksltnan_mvl, 118539}, // __builtin_ve_vl_vfmksltnan_mvl
{Intrinsic::ve_vl_vfmksltnan_mvml, 118570}, // __builtin_ve_vl_vfmksltnan_mvml
{Intrinsic::ve_vl_vfmksnan_mvl, 118602}, // __builtin_ve_vl_vfmksnan_mvl
{Intrinsic::ve_vl_vfmksnan_mvml, 118631}, // __builtin_ve_vl_vfmksnan_mvml
{Intrinsic::ve_vl_vfmksne_mvl, 118661}, // __builtin_ve_vl_vfmksne_mvl
{Intrinsic::ve_vl_vfmksne_mvml, 118689}, // __builtin_ve_vl_vfmksne_mvml
{Intrinsic::ve_vl_vfmksnenan_mvl, 118718}, // __builtin_ve_vl_vfmksnenan_mvl
{Intrinsic::ve_vl_vfmksnenan_mvml, 118749}, // __builtin_ve_vl_vfmksnenan_mvml
{Intrinsic::ve_vl_vfmksnum_mvl, 118781}, // __builtin_ve_vl_vfmksnum_mvl
{Intrinsic::ve_vl_vfmksnum_mvml, 118810}, // __builtin_ve_vl_vfmksnum_mvml
{Intrinsic::ve_vl_vfmkweq_mvl, 118840}, // __builtin_ve_vl_vfmkweq_mvl
{Intrinsic::ve_vl_vfmkweq_mvml, 118868}, // __builtin_ve_vl_vfmkweq_mvml
{Intrinsic::ve_vl_vfmkweqnan_mvl, 118897}, // __builtin_ve_vl_vfmkweqnan_mvl
{Intrinsic::ve_vl_vfmkweqnan_mvml, 118928}, // __builtin_ve_vl_vfmkweqnan_mvml
{Intrinsic::ve_vl_vfmkwge_mvl, 118960}, // __builtin_ve_vl_vfmkwge_mvl
{Intrinsic::ve_vl_vfmkwge_mvml, 118988}, // __builtin_ve_vl_vfmkwge_mvml
{Intrinsic::ve_vl_vfmkwgenan_mvl, 119017}, // __builtin_ve_vl_vfmkwgenan_mvl
{Intrinsic::ve_vl_vfmkwgenan_mvml, 119048}, // __builtin_ve_vl_vfmkwgenan_mvml
{Intrinsic::ve_vl_vfmkwgt_mvl, 119080}, // __builtin_ve_vl_vfmkwgt_mvl
{Intrinsic::ve_vl_vfmkwgt_mvml, 119108}, // __builtin_ve_vl_vfmkwgt_mvml
{Intrinsic::ve_vl_vfmkwgtnan_mvl, 119137}, // __builtin_ve_vl_vfmkwgtnan_mvl
{Intrinsic::ve_vl_vfmkwgtnan_mvml, 119168}, // __builtin_ve_vl_vfmkwgtnan_mvml
{Intrinsic::ve_vl_vfmkwle_mvl, 119200}, // __builtin_ve_vl_vfmkwle_mvl
{Intrinsic::ve_vl_vfmkwle_mvml, 119228}, // __builtin_ve_vl_vfmkwle_mvml
{Intrinsic::ve_vl_vfmkwlenan_mvl, 119257}, // __builtin_ve_vl_vfmkwlenan_mvl
{Intrinsic::ve_vl_vfmkwlenan_mvml, 119288}, // __builtin_ve_vl_vfmkwlenan_mvml
{Intrinsic::ve_vl_vfmkwlt_mvl, 119320}, // __builtin_ve_vl_vfmkwlt_mvl
{Intrinsic::ve_vl_vfmkwlt_mvml, 119348}, // __builtin_ve_vl_vfmkwlt_mvml
{Intrinsic::ve_vl_vfmkwltnan_mvl, 119377}, // __builtin_ve_vl_vfmkwltnan_mvl
{Intrinsic::ve_vl_vfmkwltnan_mvml, 119408}, // __builtin_ve_vl_vfmkwltnan_mvml
{Intrinsic::ve_vl_vfmkwnan_mvl, 119440}, // __builtin_ve_vl_vfmkwnan_mvl
{Intrinsic::ve_vl_vfmkwnan_mvml, 119469}, // __builtin_ve_vl_vfmkwnan_mvml
{Intrinsic::ve_vl_vfmkwne_mvl, 119499}, // __builtin_ve_vl_vfmkwne_mvl
{Intrinsic::ve_vl_vfmkwne_mvml, 119527}, // __builtin_ve_vl_vfmkwne_mvml
{Intrinsic::ve_vl_vfmkwnenan_mvl, 119556}, // __builtin_ve_vl_vfmkwnenan_mvl
{Intrinsic::ve_vl_vfmkwnenan_mvml, 119587}, // __builtin_ve_vl_vfmkwnenan_mvml
{Intrinsic::ve_vl_vfmkwnum_mvl, 119619}, // __builtin_ve_vl_vfmkwnum_mvl
{Intrinsic::ve_vl_vfmkwnum_mvml, 119648}, // __builtin_ve_vl_vfmkwnum_mvml
{Intrinsic::ve_vl_vfmsbd_vsvvl, 119678}, // __builtin_ve_vl_vfmsbd_vsvvl
{Intrinsic::ve_vl_vfmsbd_vsvvmvl, 119707}, // __builtin_ve_vl_vfmsbd_vsvvmvl
{Intrinsic::ve_vl_vfmsbd_vsvvvl, 119738}, // __builtin_ve_vl_vfmsbd_vsvvvl
{Intrinsic::ve_vl_vfmsbd_vvsvl, 119768}, // __builtin_ve_vl_vfmsbd_vvsvl
{Intrinsic::ve_vl_vfmsbd_vvsvmvl, 119797}, // __builtin_ve_vl_vfmsbd_vvsvmvl
{Intrinsic::ve_vl_vfmsbd_vvsvvl, 119828}, // __builtin_ve_vl_vfmsbd_vvsvvl
{Intrinsic::ve_vl_vfmsbd_vvvvl, 119858}, // __builtin_ve_vl_vfmsbd_vvvvl
{Intrinsic::ve_vl_vfmsbd_vvvvmvl, 119887}, // __builtin_ve_vl_vfmsbd_vvvvmvl
{Intrinsic::ve_vl_vfmsbd_vvvvvl, 119918}, // __builtin_ve_vl_vfmsbd_vvvvvl
{Intrinsic::ve_vl_vfmsbs_vsvvl, 119948}, // __builtin_ve_vl_vfmsbs_vsvvl
{Intrinsic::ve_vl_vfmsbs_vsvvmvl, 119977}, // __builtin_ve_vl_vfmsbs_vsvvmvl
{Intrinsic::ve_vl_vfmsbs_vsvvvl, 120008}, // __builtin_ve_vl_vfmsbs_vsvvvl
{Intrinsic::ve_vl_vfmsbs_vvsvl, 120038}, // __builtin_ve_vl_vfmsbs_vvsvl
{Intrinsic::ve_vl_vfmsbs_vvsvmvl, 120067}, // __builtin_ve_vl_vfmsbs_vvsvmvl
{Intrinsic::ve_vl_vfmsbs_vvsvvl, 120098}, // __builtin_ve_vl_vfmsbs_vvsvvl
{Intrinsic::ve_vl_vfmsbs_vvvvl, 120128}, // __builtin_ve_vl_vfmsbs_vvvvl
{Intrinsic::ve_vl_vfmsbs_vvvvmvl, 120157}, // __builtin_ve_vl_vfmsbs_vvvvmvl
{Intrinsic::ve_vl_vfmsbs_vvvvvl, 120188}, // __builtin_ve_vl_vfmsbs_vvvvvl
{Intrinsic::ve_vl_vfmuld_vsvl, 120218}, // __builtin_ve_vl_vfmuld_vsvl
{Intrinsic::ve_vl_vfmuld_vsvmvl, 120246}, // __builtin_ve_vl_vfmuld_vsvmvl
{Intrinsic::ve_vl_vfmuld_vsvvl, 120276}, // __builtin_ve_vl_vfmuld_vsvvl
{Intrinsic::ve_vl_vfmuld_vvvl, 120305}, // __builtin_ve_vl_vfmuld_vvvl
{Intrinsic::ve_vl_vfmuld_vvvmvl, 120333}, // __builtin_ve_vl_vfmuld_vvvmvl
{Intrinsic::ve_vl_vfmuld_vvvvl, 120363}, // __builtin_ve_vl_vfmuld_vvvvl
{Intrinsic::ve_vl_vfmuls_vsvl, 120392}, // __builtin_ve_vl_vfmuls_vsvl
{Intrinsic::ve_vl_vfmuls_vsvmvl, 120420}, // __builtin_ve_vl_vfmuls_vsvmvl
{Intrinsic::ve_vl_vfmuls_vsvvl, 120450}, // __builtin_ve_vl_vfmuls_vsvvl
{Intrinsic::ve_vl_vfmuls_vvvl, 120479}, // __builtin_ve_vl_vfmuls_vvvl
{Intrinsic::ve_vl_vfmuls_vvvmvl, 120507}, // __builtin_ve_vl_vfmuls_vvvmvl
{Intrinsic::ve_vl_vfmuls_vvvvl, 120537}, // __builtin_ve_vl_vfmuls_vvvvl
{Intrinsic::ve_vl_vfnmadd_vsvvl, 120566}, // __builtin_ve_vl_vfnmadd_vsvvl
{Intrinsic::ve_vl_vfnmadd_vsvvmvl, 120596}, // __builtin_ve_vl_vfnmadd_vsvvmvl
{Intrinsic::ve_vl_vfnmadd_vsvvvl, 120628}, // __builtin_ve_vl_vfnmadd_vsvvvl
{Intrinsic::ve_vl_vfnmadd_vvsvl, 120659}, // __builtin_ve_vl_vfnmadd_vvsvl
{Intrinsic::ve_vl_vfnmadd_vvsvmvl, 120689}, // __builtin_ve_vl_vfnmadd_vvsvmvl
{Intrinsic::ve_vl_vfnmadd_vvsvvl, 120721}, // __builtin_ve_vl_vfnmadd_vvsvvl
{Intrinsic::ve_vl_vfnmadd_vvvvl, 120752}, // __builtin_ve_vl_vfnmadd_vvvvl
{Intrinsic::ve_vl_vfnmadd_vvvvmvl, 120782}, // __builtin_ve_vl_vfnmadd_vvvvmvl
{Intrinsic::ve_vl_vfnmadd_vvvvvl, 120814}, // __builtin_ve_vl_vfnmadd_vvvvvl
{Intrinsic::ve_vl_vfnmads_vsvvl, 120845}, // __builtin_ve_vl_vfnmads_vsvvl
{Intrinsic::ve_vl_vfnmads_vsvvmvl, 120875}, // __builtin_ve_vl_vfnmads_vsvvmvl
{Intrinsic::ve_vl_vfnmads_vsvvvl, 120907}, // __builtin_ve_vl_vfnmads_vsvvvl
{Intrinsic::ve_vl_vfnmads_vvsvl, 120938}, // __builtin_ve_vl_vfnmads_vvsvl
{Intrinsic::ve_vl_vfnmads_vvsvmvl, 120968}, // __builtin_ve_vl_vfnmads_vvsvmvl
{Intrinsic::ve_vl_vfnmads_vvsvvl, 121000}, // __builtin_ve_vl_vfnmads_vvsvvl
{Intrinsic::ve_vl_vfnmads_vvvvl, 121031}, // __builtin_ve_vl_vfnmads_vvvvl
{Intrinsic::ve_vl_vfnmads_vvvvmvl, 121061}, // __builtin_ve_vl_vfnmads_vvvvmvl
{Intrinsic::ve_vl_vfnmads_vvvvvl, 121093}, // __builtin_ve_vl_vfnmads_vvvvvl
{Intrinsic::ve_vl_vfnmsbd_vsvvl, 121124}, // __builtin_ve_vl_vfnmsbd_vsvvl
{Intrinsic::ve_vl_vfnmsbd_vsvvmvl, 121154}, // __builtin_ve_vl_vfnmsbd_vsvvmvl
{Intrinsic::ve_vl_vfnmsbd_vsvvvl, 121186}, // __builtin_ve_vl_vfnmsbd_vsvvvl
{Intrinsic::ve_vl_vfnmsbd_vvsvl, 121217}, // __builtin_ve_vl_vfnmsbd_vvsvl
{Intrinsic::ve_vl_vfnmsbd_vvsvmvl, 121247}, // __builtin_ve_vl_vfnmsbd_vvsvmvl
{Intrinsic::ve_vl_vfnmsbd_vvsvvl, 121279}, // __builtin_ve_vl_vfnmsbd_vvsvvl
{Intrinsic::ve_vl_vfnmsbd_vvvvl, 121310}, // __builtin_ve_vl_vfnmsbd_vvvvl
{Intrinsic::ve_vl_vfnmsbd_vvvvmvl, 121340}, // __builtin_ve_vl_vfnmsbd_vvvvmvl
{Intrinsic::ve_vl_vfnmsbd_vvvvvl, 121372}, // __builtin_ve_vl_vfnmsbd_vvvvvl
{Intrinsic::ve_vl_vfnmsbs_vsvvl, 121403}, // __builtin_ve_vl_vfnmsbs_vsvvl
{Intrinsic::ve_vl_vfnmsbs_vsvvmvl, 121433}, // __builtin_ve_vl_vfnmsbs_vsvvmvl
{Intrinsic::ve_vl_vfnmsbs_vsvvvl, 121465}, // __builtin_ve_vl_vfnmsbs_vsvvvl
{Intrinsic::ve_vl_vfnmsbs_vvsvl, 121496}, // __builtin_ve_vl_vfnmsbs_vvsvl
{Intrinsic::ve_vl_vfnmsbs_vvsvmvl, 121526}, // __builtin_ve_vl_vfnmsbs_vvsvmvl
{Intrinsic::ve_vl_vfnmsbs_vvsvvl, 121558}, // __builtin_ve_vl_vfnmsbs_vvsvvl
{Intrinsic::ve_vl_vfnmsbs_vvvvl, 121589}, // __builtin_ve_vl_vfnmsbs_vvvvl
{Intrinsic::ve_vl_vfnmsbs_vvvvmvl, 121619}, // __builtin_ve_vl_vfnmsbs_vvvvmvl
{Intrinsic::ve_vl_vfnmsbs_vvvvvl, 121651}, // __builtin_ve_vl_vfnmsbs_vvvvvl
{Intrinsic::ve_vl_vfrmaxdfst_vvl, 121682}, // __builtin_ve_vl_vfrmaxdfst_vvl
{Intrinsic::ve_vl_vfrmaxdfst_vvvl, 121713}, // __builtin_ve_vl_vfrmaxdfst_vvvl
{Intrinsic::ve_vl_vfrmaxdlst_vvl, 121745}, // __builtin_ve_vl_vfrmaxdlst_vvl
{Intrinsic::ve_vl_vfrmaxdlst_vvvl, 121776}, // __builtin_ve_vl_vfrmaxdlst_vvvl
{Intrinsic::ve_vl_vfrmaxsfst_vvl, 121808}, // __builtin_ve_vl_vfrmaxsfst_vvl
{Intrinsic::ve_vl_vfrmaxsfst_vvvl, 121839}, // __builtin_ve_vl_vfrmaxsfst_vvvl
{Intrinsic::ve_vl_vfrmaxslst_vvl, 121871}, // __builtin_ve_vl_vfrmaxslst_vvl
{Intrinsic::ve_vl_vfrmaxslst_vvvl, 121902}, // __builtin_ve_vl_vfrmaxslst_vvvl
{Intrinsic::ve_vl_vfrmindfst_vvl, 121934}, // __builtin_ve_vl_vfrmindfst_vvl
{Intrinsic::ve_vl_vfrmindfst_vvvl, 121965}, // __builtin_ve_vl_vfrmindfst_vvvl
{Intrinsic::ve_vl_vfrmindlst_vvl, 121997}, // __builtin_ve_vl_vfrmindlst_vvl
{Intrinsic::ve_vl_vfrmindlst_vvvl, 122028}, // __builtin_ve_vl_vfrmindlst_vvvl
{Intrinsic::ve_vl_vfrminsfst_vvl, 122060}, // __builtin_ve_vl_vfrminsfst_vvl
{Intrinsic::ve_vl_vfrminsfst_vvvl, 122091}, // __builtin_ve_vl_vfrminsfst_vvvl
{Intrinsic::ve_vl_vfrminslst_vvl, 122123}, // __builtin_ve_vl_vfrminslst_vvl
{Intrinsic::ve_vl_vfrminslst_vvvl, 122154}, // __builtin_ve_vl_vfrminslst_vvvl
{Intrinsic::ve_vl_vfsqrtd_vvl, 122186}, // __builtin_ve_vl_vfsqrtd_vvl
{Intrinsic::ve_vl_vfsqrtd_vvvl, 122214}, // __builtin_ve_vl_vfsqrtd_vvvl
{Intrinsic::ve_vl_vfsqrts_vvl, 122243}, // __builtin_ve_vl_vfsqrts_vvl
{Intrinsic::ve_vl_vfsqrts_vvvl, 122271}, // __builtin_ve_vl_vfsqrts_vvvl
{Intrinsic::ve_vl_vfsubd_vsvl, 122300}, // __builtin_ve_vl_vfsubd_vsvl
{Intrinsic::ve_vl_vfsubd_vsvmvl, 122328}, // __builtin_ve_vl_vfsubd_vsvmvl
{Intrinsic::ve_vl_vfsubd_vsvvl, 122358}, // __builtin_ve_vl_vfsubd_vsvvl
{Intrinsic::ve_vl_vfsubd_vvvl, 122387}, // __builtin_ve_vl_vfsubd_vvvl
{Intrinsic::ve_vl_vfsubd_vvvmvl, 122415}, // __builtin_ve_vl_vfsubd_vvvmvl
{Intrinsic::ve_vl_vfsubd_vvvvl, 122445}, // __builtin_ve_vl_vfsubd_vvvvl
{Intrinsic::ve_vl_vfsubs_vsvl, 122474}, // __builtin_ve_vl_vfsubs_vsvl
{Intrinsic::ve_vl_vfsubs_vsvmvl, 122502}, // __builtin_ve_vl_vfsubs_vsvmvl
{Intrinsic::ve_vl_vfsubs_vsvvl, 122532}, // __builtin_ve_vl_vfsubs_vsvvl
{Intrinsic::ve_vl_vfsubs_vvvl, 122561}, // __builtin_ve_vl_vfsubs_vvvl
{Intrinsic::ve_vl_vfsubs_vvvmvl, 122589}, // __builtin_ve_vl_vfsubs_vvvmvl
{Intrinsic::ve_vl_vfsubs_vvvvl, 122619}, // __builtin_ve_vl_vfsubs_vvvvl
{Intrinsic::ve_vl_vfsumd_vvl, 122648}, // __builtin_ve_vl_vfsumd_vvl
{Intrinsic::ve_vl_vfsumd_vvml, 122675}, // __builtin_ve_vl_vfsumd_vvml
{Intrinsic::ve_vl_vfsums_vvl, 122703}, // __builtin_ve_vl_vfsums_vvl
{Intrinsic::ve_vl_vfsums_vvml, 122730}, // __builtin_ve_vl_vfsums_vvml
{Intrinsic::ve_vl_vgt_vvssl, 122758}, // __builtin_ve_vl_vgt_vvssl
{Intrinsic::ve_vl_vgt_vvssml, 122784}, // __builtin_ve_vl_vgt_vvssml
{Intrinsic::ve_vl_vgt_vvssmvl, 122811}, // __builtin_ve_vl_vgt_vvssmvl
{Intrinsic::ve_vl_vgt_vvssvl, 122839}, // __builtin_ve_vl_vgt_vvssvl
{Intrinsic::ve_vl_vgtlsx_vvssl, 122866}, // __builtin_ve_vl_vgtlsx_vvssl
{Intrinsic::ve_vl_vgtlsx_vvssml, 122895}, // __builtin_ve_vl_vgtlsx_vvssml
{Intrinsic::ve_vl_vgtlsx_vvssmvl, 122925}, // __builtin_ve_vl_vgtlsx_vvssmvl
{Intrinsic::ve_vl_vgtlsx_vvssvl, 122956}, // __builtin_ve_vl_vgtlsx_vvssvl
{Intrinsic::ve_vl_vgtlsxnc_vvssl, 122986}, // __builtin_ve_vl_vgtlsxnc_vvssl
{Intrinsic::ve_vl_vgtlsxnc_vvssml, 123017}, // __builtin_ve_vl_vgtlsxnc_vvssml
{Intrinsic::ve_vl_vgtlsxnc_vvssmvl, 123049}, // __builtin_ve_vl_vgtlsxnc_vvssmvl
{Intrinsic::ve_vl_vgtlsxnc_vvssvl, 123082}, // __builtin_ve_vl_vgtlsxnc_vvssvl
{Intrinsic::ve_vl_vgtlzx_vvssl, 123114}, // __builtin_ve_vl_vgtlzx_vvssl
{Intrinsic::ve_vl_vgtlzx_vvssml, 123143}, // __builtin_ve_vl_vgtlzx_vvssml
{Intrinsic::ve_vl_vgtlzx_vvssmvl, 123173}, // __builtin_ve_vl_vgtlzx_vvssmvl
{Intrinsic::ve_vl_vgtlzx_vvssvl, 123204}, // __builtin_ve_vl_vgtlzx_vvssvl
{Intrinsic::ve_vl_vgtlzxnc_vvssl, 123234}, // __builtin_ve_vl_vgtlzxnc_vvssl
{Intrinsic::ve_vl_vgtlzxnc_vvssml, 123265}, // __builtin_ve_vl_vgtlzxnc_vvssml
{Intrinsic::ve_vl_vgtlzxnc_vvssmvl, 123297}, // __builtin_ve_vl_vgtlzxnc_vvssmvl
{Intrinsic::ve_vl_vgtlzxnc_vvssvl, 123330}, // __builtin_ve_vl_vgtlzxnc_vvssvl
{Intrinsic::ve_vl_vgtnc_vvssl, 123362}, // __builtin_ve_vl_vgtnc_vvssl
{Intrinsic::ve_vl_vgtnc_vvssml, 123390}, // __builtin_ve_vl_vgtnc_vvssml
{Intrinsic::ve_vl_vgtnc_vvssmvl, 123419}, // __builtin_ve_vl_vgtnc_vvssmvl
{Intrinsic::ve_vl_vgtnc_vvssvl, 123449}, // __builtin_ve_vl_vgtnc_vvssvl
{Intrinsic::ve_vl_vgtu_vvssl, 123478}, // __builtin_ve_vl_vgtu_vvssl
{Intrinsic::ve_vl_vgtu_vvssml, 123505}, // __builtin_ve_vl_vgtu_vvssml
{Intrinsic::ve_vl_vgtu_vvssmvl, 123533}, // __builtin_ve_vl_vgtu_vvssmvl
{Intrinsic::ve_vl_vgtu_vvssvl, 123562}, // __builtin_ve_vl_vgtu_vvssvl
{Intrinsic::ve_vl_vgtunc_vvssl, 123590}, // __builtin_ve_vl_vgtunc_vvssl
{Intrinsic::ve_vl_vgtunc_vvssml, 123619}, // __builtin_ve_vl_vgtunc_vvssml
{Intrinsic::ve_vl_vgtunc_vvssmvl, 123649}, // __builtin_ve_vl_vgtunc_vvssmvl
{Intrinsic::ve_vl_vgtunc_vvssvl, 123680}, // __builtin_ve_vl_vgtunc_vvssvl
{Intrinsic::ve_vl_vld2d_vssl, 123761}, // __builtin_ve_vl_vld2d_vssl
{Intrinsic::ve_vl_vld2d_vssvl, 123788}, // __builtin_ve_vl_vld2d_vssvl
{Intrinsic::ve_vl_vld2dnc_vssl, 123816}, // __builtin_ve_vl_vld2dnc_vssl
{Intrinsic::ve_vl_vld2dnc_vssvl, 123845}, // __builtin_ve_vl_vld2dnc_vssvl
{Intrinsic::ve_vl_vld_vssl, 123710}, // __builtin_ve_vl_vld_vssl
{Intrinsic::ve_vl_vld_vssvl, 123735}, // __builtin_ve_vl_vld_vssvl
{Intrinsic::ve_vl_vldl2dsx_vssl, 123875}, // __builtin_ve_vl_vldl2dsx_vssl
{Intrinsic::ve_vl_vldl2dsx_vssvl, 123905}, // __builtin_ve_vl_vldl2dsx_vssvl
{Intrinsic::ve_vl_vldl2dsxnc_vssl, 123936}, // __builtin_ve_vl_vldl2dsxnc_vssl
{Intrinsic::ve_vl_vldl2dsxnc_vssvl, 123968}, // __builtin_ve_vl_vldl2dsxnc_vssvl
{Intrinsic::ve_vl_vldl2dzx_vssl, 124001}, // __builtin_ve_vl_vldl2dzx_vssl
{Intrinsic::ve_vl_vldl2dzx_vssvl, 124031}, // __builtin_ve_vl_vldl2dzx_vssvl
{Intrinsic::ve_vl_vldl2dzxnc_vssl, 124062}, // __builtin_ve_vl_vldl2dzxnc_vssl
{Intrinsic::ve_vl_vldl2dzxnc_vssvl, 124094}, // __builtin_ve_vl_vldl2dzxnc_vssvl
{Intrinsic::ve_vl_vldlsx_vssl, 124127}, // __builtin_ve_vl_vldlsx_vssl
{Intrinsic::ve_vl_vldlsx_vssvl, 124155}, // __builtin_ve_vl_vldlsx_vssvl
{Intrinsic::ve_vl_vldlsxnc_vssl, 124184}, // __builtin_ve_vl_vldlsxnc_vssl
{Intrinsic::ve_vl_vldlsxnc_vssvl, 124214}, // __builtin_ve_vl_vldlsxnc_vssvl
{Intrinsic::ve_vl_vldlzx_vssl, 124245}, // __builtin_ve_vl_vldlzx_vssl
{Intrinsic::ve_vl_vldlzx_vssvl, 124273}, // __builtin_ve_vl_vldlzx_vssvl
{Intrinsic::ve_vl_vldlzxnc_vssl, 124302}, // __builtin_ve_vl_vldlzxnc_vssl
{Intrinsic::ve_vl_vldlzxnc_vssvl, 124332}, // __builtin_ve_vl_vldlzxnc_vssvl
{Intrinsic::ve_vl_vldnc_vssl, 124363}, // __builtin_ve_vl_vldnc_vssl
{Intrinsic::ve_vl_vldnc_vssvl, 124390}, // __builtin_ve_vl_vldnc_vssvl
{Intrinsic::ve_vl_vldu2d_vssl, 124471}, // __builtin_ve_vl_vldu2d_vssl
{Intrinsic::ve_vl_vldu2d_vssvl, 124499}, // __builtin_ve_vl_vldu2d_vssvl
{Intrinsic::ve_vl_vldu2dnc_vssl, 124528}, // __builtin_ve_vl_vldu2dnc_vssl
{Intrinsic::ve_vl_vldu2dnc_vssvl, 124558}, // __builtin_ve_vl_vldu2dnc_vssvl
{Intrinsic::ve_vl_vldu_vssl, 124418}, // __builtin_ve_vl_vldu_vssl
{Intrinsic::ve_vl_vldu_vssvl, 124444}, // __builtin_ve_vl_vldu_vssvl
{Intrinsic::ve_vl_vldunc_vssl, 124589}, // __builtin_ve_vl_vldunc_vssl
{Intrinsic::ve_vl_vldunc_vssvl, 124617}, // __builtin_ve_vl_vldunc_vssvl
{Intrinsic::ve_vl_vmaxsl_vsvl, 124646}, // __builtin_ve_vl_vmaxsl_vsvl
{Intrinsic::ve_vl_vmaxsl_vsvmvl, 124674}, // __builtin_ve_vl_vmaxsl_vsvmvl
{Intrinsic::ve_vl_vmaxsl_vsvvl, 124704}, // __builtin_ve_vl_vmaxsl_vsvvl
{Intrinsic::ve_vl_vmaxsl_vvvl, 124733}, // __builtin_ve_vl_vmaxsl_vvvl
{Intrinsic::ve_vl_vmaxsl_vvvmvl, 124761}, // __builtin_ve_vl_vmaxsl_vvvmvl
{Intrinsic::ve_vl_vmaxsl_vvvvl, 124791}, // __builtin_ve_vl_vmaxsl_vvvvl
{Intrinsic::ve_vl_vmaxswsx_vsvl, 124820}, // __builtin_ve_vl_vmaxswsx_vsvl
{Intrinsic::ve_vl_vmaxswsx_vsvmvl, 124850}, // __builtin_ve_vl_vmaxswsx_vsvmvl
{Intrinsic::ve_vl_vmaxswsx_vsvvl, 124882}, // __builtin_ve_vl_vmaxswsx_vsvvl
{Intrinsic::ve_vl_vmaxswsx_vvvl, 124913}, // __builtin_ve_vl_vmaxswsx_vvvl
{Intrinsic::ve_vl_vmaxswsx_vvvmvl, 124943}, // __builtin_ve_vl_vmaxswsx_vvvmvl
{Intrinsic::ve_vl_vmaxswsx_vvvvl, 124975}, // __builtin_ve_vl_vmaxswsx_vvvvl
{Intrinsic::ve_vl_vmaxswzx_vsvl, 125006}, // __builtin_ve_vl_vmaxswzx_vsvl
{Intrinsic::ve_vl_vmaxswzx_vsvmvl, 125036}, // __builtin_ve_vl_vmaxswzx_vsvmvl
{Intrinsic::ve_vl_vmaxswzx_vsvvl, 125068}, // __builtin_ve_vl_vmaxswzx_vsvvl
{Intrinsic::ve_vl_vmaxswzx_vvvl, 125099}, // __builtin_ve_vl_vmaxswzx_vvvl
{Intrinsic::ve_vl_vmaxswzx_vvvmvl, 125129}, // __builtin_ve_vl_vmaxswzx_vvvmvl
{Intrinsic::ve_vl_vmaxswzx_vvvvl, 125161}, // __builtin_ve_vl_vmaxswzx_vvvvl
{Intrinsic::ve_vl_vminsl_vsvl, 125192}, // __builtin_ve_vl_vminsl_vsvl
{Intrinsic::ve_vl_vminsl_vsvmvl, 125220}, // __builtin_ve_vl_vminsl_vsvmvl
{Intrinsic::ve_vl_vminsl_vsvvl, 125250}, // __builtin_ve_vl_vminsl_vsvvl
{Intrinsic::ve_vl_vminsl_vvvl, 125279}, // __builtin_ve_vl_vminsl_vvvl
{Intrinsic::ve_vl_vminsl_vvvmvl, 125307}, // __builtin_ve_vl_vminsl_vvvmvl
{Intrinsic::ve_vl_vminsl_vvvvl, 125337}, // __builtin_ve_vl_vminsl_vvvvl
{Intrinsic::ve_vl_vminswsx_vsvl, 125366}, // __builtin_ve_vl_vminswsx_vsvl
{Intrinsic::ve_vl_vminswsx_vsvmvl, 125396}, // __builtin_ve_vl_vminswsx_vsvmvl
{Intrinsic::ve_vl_vminswsx_vsvvl, 125428}, // __builtin_ve_vl_vminswsx_vsvvl
{Intrinsic::ve_vl_vminswsx_vvvl, 125459}, // __builtin_ve_vl_vminswsx_vvvl
{Intrinsic::ve_vl_vminswsx_vvvmvl, 125489}, // __builtin_ve_vl_vminswsx_vvvmvl
{Intrinsic::ve_vl_vminswsx_vvvvl, 125521}, // __builtin_ve_vl_vminswsx_vvvvl
{Intrinsic::ve_vl_vminswzx_vsvl, 125552}, // __builtin_ve_vl_vminswzx_vsvl
{Intrinsic::ve_vl_vminswzx_vsvmvl, 125582}, // __builtin_ve_vl_vminswzx_vsvmvl
{Intrinsic::ve_vl_vminswzx_vsvvl, 125614}, // __builtin_ve_vl_vminswzx_vsvvl
{Intrinsic::ve_vl_vminswzx_vvvl, 125645}, // __builtin_ve_vl_vminswzx_vvvl
{Intrinsic::ve_vl_vminswzx_vvvmvl, 125675}, // __builtin_ve_vl_vminswzx_vvvmvl
{Intrinsic::ve_vl_vminswzx_vvvvl, 125707}, // __builtin_ve_vl_vminswzx_vvvvl
{Intrinsic::ve_vl_vmrg_vsvml, 125738}, // __builtin_ve_vl_vmrg_vsvml
{Intrinsic::ve_vl_vmrg_vsvmvl, 125765}, // __builtin_ve_vl_vmrg_vsvmvl
{Intrinsic::ve_vl_vmrg_vvvml, 125793}, // __builtin_ve_vl_vmrg_vvvml
{Intrinsic::ve_vl_vmrg_vvvmvl, 125820}, // __builtin_ve_vl_vmrg_vvvmvl
{Intrinsic::ve_vl_vmrgw_vsvMl, 125848}, // __builtin_ve_vl_vmrgw_vsvMl
{Intrinsic::ve_vl_vmrgw_vsvMvl, 125876}, // __builtin_ve_vl_vmrgw_vsvMvl
{Intrinsic::ve_vl_vmrgw_vvvMl, 125905}, // __builtin_ve_vl_vmrgw_vvvMl
{Intrinsic::ve_vl_vmrgw_vvvMvl, 125933}, // __builtin_ve_vl_vmrgw_vvvMvl
{Intrinsic::ve_vl_vmulsl_vsvl, 125962}, // __builtin_ve_vl_vmulsl_vsvl
{Intrinsic::ve_vl_vmulsl_vsvmvl, 125990}, // __builtin_ve_vl_vmulsl_vsvmvl
{Intrinsic::ve_vl_vmulsl_vsvvl, 126020}, // __builtin_ve_vl_vmulsl_vsvvl
{Intrinsic::ve_vl_vmulsl_vvvl, 126049}, // __builtin_ve_vl_vmulsl_vvvl
{Intrinsic::ve_vl_vmulsl_vvvmvl, 126077}, // __builtin_ve_vl_vmulsl_vvvmvl
{Intrinsic::ve_vl_vmulsl_vvvvl, 126107}, // __builtin_ve_vl_vmulsl_vvvvl
{Intrinsic::ve_vl_vmulslw_vsvl, 126136}, // __builtin_ve_vl_vmulslw_vsvl
{Intrinsic::ve_vl_vmulslw_vsvvl, 126165}, // __builtin_ve_vl_vmulslw_vsvvl
{Intrinsic::ve_vl_vmulslw_vvvl, 126195}, // __builtin_ve_vl_vmulslw_vvvl
{Intrinsic::ve_vl_vmulslw_vvvvl, 126224}, // __builtin_ve_vl_vmulslw_vvvvl
{Intrinsic::ve_vl_vmulswsx_vsvl, 126254}, // __builtin_ve_vl_vmulswsx_vsvl
{Intrinsic::ve_vl_vmulswsx_vsvmvl, 126284}, // __builtin_ve_vl_vmulswsx_vsvmvl
{Intrinsic::ve_vl_vmulswsx_vsvvl, 126316}, // __builtin_ve_vl_vmulswsx_vsvvl
{Intrinsic::ve_vl_vmulswsx_vvvl, 126347}, // __builtin_ve_vl_vmulswsx_vvvl
{Intrinsic::ve_vl_vmulswsx_vvvmvl, 126377}, // __builtin_ve_vl_vmulswsx_vvvmvl
{Intrinsic::ve_vl_vmulswsx_vvvvl, 126409}, // __builtin_ve_vl_vmulswsx_vvvvl
{Intrinsic::ve_vl_vmulswzx_vsvl, 126440}, // __builtin_ve_vl_vmulswzx_vsvl
{Intrinsic::ve_vl_vmulswzx_vsvmvl, 126470}, // __builtin_ve_vl_vmulswzx_vsvmvl
{Intrinsic::ve_vl_vmulswzx_vsvvl, 126502}, // __builtin_ve_vl_vmulswzx_vsvvl
{Intrinsic::ve_vl_vmulswzx_vvvl, 126533}, // __builtin_ve_vl_vmulswzx_vvvl
{Intrinsic::ve_vl_vmulswzx_vvvmvl, 126563}, // __builtin_ve_vl_vmulswzx_vvvmvl
{Intrinsic::ve_vl_vmulswzx_vvvvl, 126595}, // __builtin_ve_vl_vmulswzx_vvvvl
{Intrinsic::ve_vl_vmulul_vsvl, 126626}, // __builtin_ve_vl_vmulul_vsvl
{Intrinsic::ve_vl_vmulul_vsvmvl, 126654}, // __builtin_ve_vl_vmulul_vsvmvl
{Intrinsic::ve_vl_vmulul_vsvvl, 126684}, // __builtin_ve_vl_vmulul_vsvvl
{Intrinsic::ve_vl_vmulul_vvvl, 126713}, // __builtin_ve_vl_vmulul_vvvl
{Intrinsic::ve_vl_vmulul_vvvmvl, 126741}, // __builtin_ve_vl_vmulul_vvvmvl
{Intrinsic::ve_vl_vmulul_vvvvl, 126771}, // __builtin_ve_vl_vmulul_vvvvl
{Intrinsic::ve_vl_vmuluw_vsvl, 126800}, // __builtin_ve_vl_vmuluw_vsvl
{Intrinsic::ve_vl_vmuluw_vsvmvl, 126828}, // __builtin_ve_vl_vmuluw_vsvmvl
{Intrinsic::ve_vl_vmuluw_vsvvl, 126858}, // __builtin_ve_vl_vmuluw_vsvvl
{Intrinsic::ve_vl_vmuluw_vvvl, 126887}, // __builtin_ve_vl_vmuluw_vvvl
{Intrinsic::ve_vl_vmuluw_vvvmvl, 126915}, // __builtin_ve_vl_vmuluw_vvvmvl
{Intrinsic::ve_vl_vmuluw_vvvvl, 126945}, // __builtin_ve_vl_vmuluw_vvvvl
{Intrinsic::ve_vl_vmv_vsvl, 126974}, // __builtin_ve_vl_vmv_vsvl
{Intrinsic::ve_vl_vmv_vsvmvl, 126999}, // __builtin_ve_vl_vmv_vsvmvl
{Intrinsic::ve_vl_vmv_vsvvl, 127026}, // __builtin_ve_vl_vmv_vsvvl
{Intrinsic::ve_vl_vor_vsvl, 127052}, // __builtin_ve_vl_vor_vsvl
{Intrinsic::ve_vl_vor_vsvmvl, 127077}, // __builtin_ve_vl_vor_vsvmvl
{Intrinsic::ve_vl_vor_vsvvl, 127104}, // __builtin_ve_vl_vor_vsvvl
{Intrinsic::ve_vl_vor_vvvl, 127130}, // __builtin_ve_vl_vor_vvvl
{Intrinsic::ve_vl_vor_vvvmvl, 127155}, // __builtin_ve_vl_vor_vvvmvl
{Intrinsic::ve_vl_vor_vvvvl, 127182}, // __builtin_ve_vl_vor_vvvvl
{Intrinsic::ve_vl_vrand_vvl, 127208}, // __builtin_ve_vl_vrand_vvl
{Intrinsic::ve_vl_vrand_vvml, 127234}, // __builtin_ve_vl_vrand_vvml
{Intrinsic::ve_vl_vrcpd_vvl, 127261}, // __builtin_ve_vl_vrcpd_vvl
{Intrinsic::ve_vl_vrcpd_vvvl, 127287}, // __builtin_ve_vl_vrcpd_vvvl
{Intrinsic::ve_vl_vrcps_vvl, 127314}, // __builtin_ve_vl_vrcps_vvl
{Intrinsic::ve_vl_vrcps_vvvl, 127340}, // __builtin_ve_vl_vrcps_vvvl
{Intrinsic::ve_vl_vrmaxslfst_vvl, 127367}, // __builtin_ve_vl_vrmaxslfst_vvl
{Intrinsic::ve_vl_vrmaxslfst_vvvl, 127398}, // __builtin_ve_vl_vrmaxslfst_vvvl
{Intrinsic::ve_vl_vrmaxsllst_vvl, 127430}, // __builtin_ve_vl_vrmaxsllst_vvl
{Intrinsic::ve_vl_vrmaxsllst_vvvl, 127461}, // __builtin_ve_vl_vrmaxsllst_vvvl
{Intrinsic::ve_vl_vrmaxswfstsx_vvl, 127493}, // __builtin_ve_vl_vrmaxswfstsx_vvl
{Intrinsic::ve_vl_vrmaxswfstsx_vvvl, 127526}, // __builtin_ve_vl_vrmaxswfstsx_vvvl
{Intrinsic::ve_vl_vrmaxswfstzx_vvl, 127560}, // __builtin_ve_vl_vrmaxswfstzx_vvl
{Intrinsic::ve_vl_vrmaxswfstzx_vvvl, 127593}, // __builtin_ve_vl_vrmaxswfstzx_vvvl
{Intrinsic::ve_vl_vrmaxswlstsx_vvl, 127627}, // __builtin_ve_vl_vrmaxswlstsx_vvl
{Intrinsic::ve_vl_vrmaxswlstsx_vvvl, 127660}, // __builtin_ve_vl_vrmaxswlstsx_vvvl
{Intrinsic::ve_vl_vrmaxswlstzx_vvl, 127694}, // __builtin_ve_vl_vrmaxswlstzx_vvl
{Intrinsic::ve_vl_vrmaxswlstzx_vvvl, 127727}, // __builtin_ve_vl_vrmaxswlstzx_vvvl
{Intrinsic::ve_vl_vrminslfst_vvl, 127761}, // __builtin_ve_vl_vrminslfst_vvl
{Intrinsic::ve_vl_vrminslfst_vvvl, 127792}, // __builtin_ve_vl_vrminslfst_vvvl
{Intrinsic::ve_vl_vrminsllst_vvl, 127824}, // __builtin_ve_vl_vrminsllst_vvl
{Intrinsic::ve_vl_vrminsllst_vvvl, 127855}, // __builtin_ve_vl_vrminsllst_vvvl
{Intrinsic::ve_vl_vrminswfstsx_vvl, 127887}, // __builtin_ve_vl_vrminswfstsx_vvl
{Intrinsic::ve_vl_vrminswfstsx_vvvl, 127920}, // __builtin_ve_vl_vrminswfstsx_vvvl
{Intrinsic::ve_vl_vrminswfstzx_vvl, 127954}, // __builtin_ve_vl_vrminswfstzx_vvl
{Intrinsic::ve_vl_vrminswfstzx_vvvl, 127987}, // __builtin_ve_vl_vrminswfstzx_vvvl
{Intrinsic::ve_vl_vrminswlstsx_vvl, 128021}, // __builtin_ve_vl_vrminswlstsx_vvl
{Intrinsic::ve_vl_vrminswlstsx_vvvl, 128054}, // __builtin_ve_vl_vrminswlstsx_vvvl
{Intrinsic::ve_vl_vrminswlstzx_vvl, 128088}, // __builtin_ve_vl_vrminswlstzx_vvl
{Intrinsic::ve_vl_vrminswlstzx_vvvl, 128121}, // __builtin_ve_vl_vrminswlstzx_vvvl
{Intrinsic::ve_vl_vror_vvl, 128155}, // __builtin_ve_vl_vror_vvl
{Intrinsic::ve_vl_vror_vvml, 128180}, // __builtin_ve_vl_vror_vvml
{Intrinsic::ve_vl_vrsqrtd_vvl, 128206}, // __builtin_ve_vl_vrsqrtd_vvl
{Intrinsic::ve_vl_vrsqrtd_vvvl, 128234}, // __builtin_ve_vl_vrsqrtd_vvvl
{Intrinsic::ve_vl_vrsqrtdnex_vvl, 128263}, // __builtin_ve_vl_vrsqrtdnex_vvl
{Intrinsic::ve_vl_vrsqrtdnex_vvvl, 128294}, // __builtin_ve_vl_vrsqrtdnex_vvvl
{Intrinsic::ve_vl_vrsqrts_vvl, 128326}, // __builtin_ve_vl_vrsqrts_vvl
{Intrinsic::ve_vl_vrsqrts_vvvl, 128354}, // __builtin_ve_vl_vrsqrts_vvvl
{Intrinsic::ve_vl_vrsqrtsnex_vvl, 128383}, // __builtin_ve_vl_vrsqrtsnex_vvl
{Intrinsic::ve_vl_vrsqrtsnex_vvvl, 128414}, // __builtin_ve_vl_vrsqrtsnex_vvvl
{Intrinsic::ve_vl_vrxor_vvl, 128446}, // __builtin_ve_vl_vrxor_vvl
{Intrinsic::ve_vl_vrxor_vvml, 128472}, // __builtin_ve_vl_vrxor_vvml
{Intrinsic::ve_vl_vsc_vvssl, 128499}, // __builtin_ve_vl_vsc_vvssl
{Intrinsic::ve_vl_vsc_vvssml, 128525}, // __builtin_ve_vl_vsc_vvssml
{Intrinsic::ve_vl_vscl_vvssl, 128552}, // __builtin_ve_vl_vscl_vvssl
{Intrinsic::ve_vl_vscl_vvssml, 128579}, // __builtin_ve_vl_vscl_vvssml
{Intrinsic::ve_vl_vsclnc_vvssl, 128607}, // __builtin_ve_vl_vsclnc_vvssl
{Intrinsic::ve_vl_vsclnc_vvssml, 128636}, // __builtin_ve_vl_vsclnc_vvssml
{Intrinsic::ve_vl_vsclncot_vvssl, 128666}, // __builtin_ve_vl_vsclncot_vvssl
{Intrinsic::ve_vl_vsclncot_vvssml, 128697}, // __builtin_ve_vl_vsclncot_vvssml
{Intrinsic::ve_vl_vsclot_vvssl, 128729}, // __builtin_ve_vl_vsclot_vvssl
{Intrinsic::ve_vl_vsclot_vvssml, 128758}, // __builtin_ve_vl_vsclot_vvssml
{Intrinsic::ve_vl_vscnc_vvssl, 128788}, // __builtin_ve_vl_vscnc_vvssl
{Intrinsic::ve_vl_vscnc_vvssml, 128816}, // __builtin_ve_vl_vscnc_vvssml
{Intrinsic::ve_vl_vscncot_vvssl, 128845}, // __builtin_ve_vl_vscncot_vvssl
{Intrinsic::ve_vl_vscncot_vvssml, 128875}, // __builtin_ve_vl_vscncot_vvssml
{Intrinsic::ve_vl_vscot_vvssl, 128906}, // __builtin_ve_vl_vscot_vvssl
{Intrinsic::ve_vl_vscot_vvssml, 128934}, // __builtin_ve_vl_vscot_vvssml
{Intrinsic::ve_vl_vscu_vvssl, 128963}, // __builtin_ve_vl_vscu_vvssl
{Intrinsic::ve_vl_vscu_vvssml, 128990}, // __builtin_ve_vl_vscu_vvssml
{Intrinsic::ve_vl_vscunc_vvssl, 129018}, // __builtin_ve_vl_vscunc_vvssl
{Intrinsic::ve_vl_vscunc_vvssml, 129047}, // __builtin_ve_vl_vscunc_vvssml
{Intrinsic::ve_vl_vscuncot_vvssl, 129077}, // __builtin_ve_vl_vscuncot_vvssl
{Intrinsic::ve_vl_vscuncot_vvssml, 129108}, // __builtin_ve_vl_vscuncot_vvssml
{Intrinsic::ve_vl_vscuot_vvssl, 129140}, // __builtin_ve_vl_vscuot_vvssl
{Intrinsic::ve_vl_vscuot_vvssml, 129169}, // __builtin_ve_vl_vscuot_vvssml
{Intrinsic::ve_vl_vseq_vl, 129199}, // __builtin_ve_vl_vseq_vl
{Intrinsic::ve_vl_vseq_vvl, 129223}, // __builtin_ve_vl_vseq_vvl
{Intrinsic::ve_vl_vsfa_vvssl, 129248}, // __builtin_ve_vl_vsfa_vvssl
{Intrinsic::ve_vl_vsfa_vvssmvl, 129275}, // __builtin_ve_vl_vsfa_vvssmvl
{Intrinsic::ve_vl_vsfa_vvssvl, 129304}, // __builtin_ve_vl_vsfa_vvssvl
{Intrinsic::ve_vl_vshf_vvvsl, 129332}, // __builtin_ve_vl_vshf_vvvsl
{Intrinsic::ve_vl_vshf_vvvsvl, 129359}, // __builtin_ve_vl_vshf_vvvsvl
{Intrinsic::ve_vl_vslal_vvsl, 129387}, // __builtin_ve_vl_vslal_vvsl
{Intrinsic::ve_vl_vslal_vvsmvl, 129414}, // __builtin_ve_vl_vslal_vvsmvl
{Intrinsic::ve_vl_vslal_vvsvl, 129443}, // __builtin_ve_vl_vslal_vvsvl
{Intrinsic::ve_vl_vslal_vvvl, 129471}, // __builtin_ve_vl_vslal_vvvl
{Intrinsic::ve_vl_vslal_vvvmvl, 129498}, // __builtin_ve_vl_vslal_vvvmvl
{Intrinsic::ve_vl_vslal_vvvvl, 129527}, // __builtin_ve_vl_vslal_vvvvl
{Intrinsic::ve_vl_vslawsx_vvsl, 129555}, // __builtin_ve_vl_vslawsx_vvsl
{Intrinsic::ve_vl_vslawsx_vvsmvl, 129584}, // __builtin_ve_vl_vslawsx_vvsmvl
{Intrinsic::ve_vl_vslawsx_vvsvl, 129615}, // __builtin_ve_vl_vslawsx_vvsvl
{Intrinsic::ve_vl_vslawsx_vvvl, 129645}, // __builtin_ve_vl_vslawsx_vvvl
{Intrinsic::ve_vl_vslawsx_vvvmvl, 129674}, // __builtin_ve_vl_vslawsx_vvvmvl
{Intrinsic::ve_vl_vslawsx_vvvvl, 129705}, // __builtin_ve_vl_vslawsx_vvvvl
{Intrinsic::ve_vl_vslawzx_vvsl, 129735}, // __builtin_ve_vl_vslawzx_vvsl
{Intrinsic::ve_vl_vslawzx_vvsmvl, 129764}, // __builtin_ve_vl_vslawzx_vvsmvl
{Intrinsic::ve_vl_vslawzx_vvsvl, 129795}, // __builtin_ve_vl_vslawzx_vvsvl
{Intrinsic::ve_vl_vslawzx_vvvl, 129825}, // __builtin_ve_vl_vslawzx_vvvl
{Intrinsic::ve_vl_vslawzx_vvvmvl, 129854}, // __builtin_ve_vl_vslawzx_vvvmvl
{Intrinsic::ve_vl_vslawzx_vvvvl, 129885}, // __builtin_ve_vl_vslawzx_vvvvl
{Intrinsic::ve_vl_vsll_vvsl, 129915}, // __builtin_ve_vl_vsll_vvsl
{Intrinsic::ve_vl_vsll_vvsmvl, 129941}, // __builtin_ve_vl_vsll_vvsmvl
{Intrinsic::ve_vl_vsll_vvsvl, 129969}, // __builtin_ve_vl_vsll_vvsvl
{Intrinsic::ve_vl_vsll_vvvl, 129996}, // __builtin_ve_vl_vsll_vvvl
{Intrinsic::ve_vl_vsll_vvvmvl, 130022}, // __builtin_ve_vl_vsll_vvvmvl
{Intrinsic::ve_vl_vsll_vvvvl, 130050}, // __builtin_ve_vl_vsll_vvvvl
{Intrinsic::ve_vl_vsral_vvsl, 130077}, // __builtin_ve_vl_vsral_vvsl
{Intrinsic::ve_vl_vsral_vvsmvl, 130104}, // __builtin_ve_vl_vsral_vvsmvl
{Intrinsic::ve_vl_vsral_vvsvl, 130133}, // __builtin_ve_vl_vsral_vvsvl
{Intrinsic::ve_vl_vsral_vvvl, 130161}, // __builtin_ve_vl_vsral_vvvl
{Intrinsic::ve_vl_vsral_vvvmvl, 130188}, // __builtin_ve_vl_vsral_vvvmvl
{Intrinsic::ve_vl_vsral_vvvvl, 130217}, // __builtin_ve_vl_vsral_vvvvl
{Intrinsic::ve_vl_vsrawsx_vvsl, 130245}, // __builtin_ve_vl_vsrawsx_vvsl
{Intrinsic::ve_vl_vsrawsx_vvsmvl, 130274}, // __builtin_ve_vl_vsrawsx_vvsmvl
{Intrinsic::ve_vl_vsrawsx_vvsvl, 130305}, // __builtin_ve_vl_vsrawsx_vvsvl
{Intrinsic::ve_vl_vsrawsx_vvvl, 130335}, // __builtin_ve_vl_vsrawsx_vvvl
{Intrinsic::ve_vl_vsrawsx_vvvmvl, 130364}, // __builtin_ve_vl_vsrawsx_vvvmvl
{Intrinsic::ve_vl_vsrawsx_vvvvl, 130395}, // __builtin_ve_vl_vsrawsx_vvvvl
{Intrinsic::ve_vl_vsrawzx_vvsl, 130425}, // __builtin_ve_vl_vsrawzx_vvsl
{Intrinsic::ve_vl_vsrawzx_vvsmvl, 130454}, // __builtin_ve_vl_vsrawzx_vvsmvl
{Intrinsic::ve_vl_vsrawzx_vvsvl, 130485}, // __builtin_ve_vl_vsrawzx_vvsvl
{Intrinsic::ve_vl_vsrawzx_vvvl, 130515}, // __builtin_ve_vl_vsrawzx_vvvl
{Intrinsic::ve_vl_vsrawzx_vvvmvl, 130544}, // __builtin_ve_vl_vsrawzx_vvvmvl
{Intrinsic::ve_vl_vsrawzx_vvvvl, 130575}, // __builtin_ve_vl_vsrawzx_vvvvl
{Intrinsic::ve_vl_vsrl_vvsl, 130605}, // __builtin_ve_vl_vsrl_vvsl
{Intrinsic::ve_vl_vsrl_vvsmvl, 130631}, // __builtin_ve_vl_vsrl_vvsmvl
{Intrinsic::ve_vl_vsrl_vvsvl, 130659}, // __builtin_ve_vl_vsrl_vvsvl
{Intrinsic::ve_vl_vsrl_vvvl, 130686}, // __builtin_ve_vl_vsrl_vvvl
{Intrinsic::ve_vl_vsrl_vvvmvl, 130712}, // __builtin_ve_vl_vsrl_vvvmvl
{Intrinsic::ve_vl_vsrl_vvvvl, 130740}, // __builtin_ve_vl_vsrl_vvvvl
{Intrinsic::ve_vl_vst2d_vssl, 130818}, // __builtin_ve_vl_vst2d_vssl
{Intrinsic::ve_vl_vst2d_vssml, 130845}, // __builtin_ve_vl_vst2d_vssml
{Intrinsic::ve_vl_vst2dnc_vssl, 130873}, // __builtin_ve_vl_vst2dnc_vssl
{Intrinsic::ve_vl_vst2dnc_vssml, 130902}, // __builtin_ve_vl_vst2dnc_vssml
{Intrinsic::ve_vl_vst2dncot_vssl, 130932}, // __builtin_ve_vl_vst2dncot_vssl
{Intrinsic::ve_vl_vst2dncot_vssml, 130963}, // __builtin_ve_vl_vst2dncot_vssml
{Intrinsic::ve_vl_vst2dot_vssl, 130995}, // __builtin_ve_vl_vst2dot_vssl
{Intrinsic::ve_vl_vst2dot_vssml, 131024}, // __builtin_ve_vl_vst2dot_vssml
{Intrinsic::ve_vl_vst_vssl, 130767}, // __builtin_ve_vl_vst_vssl
{Intrinsic::ve_vl_vst_vssml, 130792}, // __builtin_ve_vl_vst_vssml
{Intrinsic::ve_vl_vstl2d_vssl, 131107}, // __builtin_ve_vl_vstl2d_vssl
{Intrinsic::ve_vl_vstl2d_vssml, 131135}, // __builtin_ve_vl_vstl2d_vssml
{Intrinsic::ve_vl_vstl2dnc_vssl, 131164}, // __builtin_ve_vl_vstl2dnc_vssl
{Intrinsic::ve_vl_vstl2dnc_vssml, 131194}, // __builtin_ve_vl_vstl2dnc_vssml
{Intrinsic::ve_vl_vstl2dncot_vssl, 131225}, // __builtin_ve_vl_vstl2dncot_vssl
{Intrinsic::ve_vl_vstl2dncot_vssml, 131257}, // __builtin_ve_vl_vstl2dncot_vssml
{Intrinsic::ve_vl_vstl2dot_vssl, 131290}, // __builtin_ve_vl_vstl2dot_vssl
{Intrinsic::ve_vl_vstl2dot_vssml, 131320}, // __builtin_ve_vl_vstl2dot_vssml
{Intrinsic::ve_vl_vstl_vssl, 131054}, // __builtin_ve_vl_vstl_vssl
{Intrinsic::ve_vl_vstl_vssml, 131080}, // __builtin_ve_vl_vstl_vssml
{Intrinsic::ve_vl_vstlnc_vssl, 131351}, // __builtin_ve_vl_vstlnc_vssl
{Intrinsic::ve_vl_vstlnc_vssml, 131379}, // __builtin_ve_vl_vstlnc_vssml
{Intrinsic::ve_vl_vstlncot_vssl, 131408}, // __builtin_ve_vl_vstlncot_vssl
{Intrinsic::ve_vl_vstlncot_vssml, 131438}, // __builtin_ve_vl_vstlncot_vssml
{Intrinsic::ve_vl_vstlot_vssl, 131469}, // __builtin_ve_vl_vstlot_vssl
{Intrinsic::ve_vl_vstlot_vssml, 131497}, // __builtin_ve_vl_vstlot_vssml
{Intrinsic::ve_vl_vstnc_vssl, 131526}, // __builtin_ve_vl_vstnc_vssl
{Intrinsic::ve_vl_vstnc_vssml, 131553}, // __builtin_ve_vl_vstnc_vssml
{Intrinsic::ve_vl_vstncot_vssl, 131581}, // __builtin_ve_vl_vstncot_vssl
{Intrinsic::ve_vl_vstncot_vssml, 131610}, // __builtin_ve_vl_vstncot_vssml
{Intrinsic::ve_vl_vstot_vssl, 131640}, // __builtin_ve_vl_vstot_vssl
{Intrinsic::ve_vl_vstot_vssml, 131667}, // __builtin_ve_vl_vstot_vssml
{Intrinsic::ve_vl_vstu2d_vssl, 131748}, // __builtin_ve_vl_vstu2d_vssl
{Intrinsic::ve_vl_vstu2d_vssml, 131776}, // __builtin_ve_vl_vstu2d_vssml
{Intrinsic::ve_vl_vstu2dnc_vssl, 131805}, // __builtin_ve_vl_vstu2dnc_vssl
{Intrinsic::ve_vl_vstu2dnc_vssml, 131835}, // __builtin_ve_vl_vstu2dnc_vssml
{Intrinsic::ve_vl_vstu2dncot_vssl, 131866}, // __builtin_ve_vl_vstu2dncot_vssl
{Intrinsic::ve_vl_vstu2dncot_vssml, 131898}, // __builtin_ve_vl_vstu2dncot_vssml
{Intrinsic::ve_vl_vstu2dot_vssl, 131931}, // __builtin_ve_vl_vstu2dot_vssl
{Intrinsic::ve_vl_vstu2dot_vssml, 131961}, // __builtin_ve_vl_vstu2dot_vssml
{Intrinsic::ve_vl_vstu_vssl, 131695}, // __builtin_ve_vl_vstu_vssl
{Intrinsic::ve_vl_vstu_vssml, 131721}, // __builtin_ve_vl_vstu_vssml
{Intrinsic::ve_vl_vstunc_vssl, 131992}, // __builtin_ve_vl_vstunc_vssl
{Intrinsic::ve_vl_vstunc_vssml, 132020}, // __builtin_ve_vl_vstunc_vssml
{Intrinsic::ve_vl_vstuncot_vssl, 132049}, // __builtin_ve_vl_vstuncot_vssl
{Intrinsic::ve_vl_vstuncot_vssml, 132079}, // __builtin_ve_vl_vstuncot_vssml
{Intrinsic::ve_vl_vstuot_vssl, 132110}, // __builtin_ve_vl_vstuot_vssl
{Intrinsic::ve_vl_vstuot_vssml, 132138}, // __builtin_ve_vl_vstuot_vssml
{Intrinsic::ve_vl_vsubsl_vsvl, 132167}, // __builtin_ve_vl_vsubsl_vsvl
{Intrinsic::ve_vl_vsubsl_vsvmvl, 132195}, // __builtin_ve_vl_vsubsl_vsvmvl
{Intrinsic::ve_vl_vsubsl_vsvvl, 132225}, // __builtin_ve_vl_vsubsl_vsvvl
{Intrinsic::ve_vl_vsubsl_vvvl, 132254}, // __builtin_ve_vl_vsubsl_vvvl
{Intrinsic::ve_vl_vsubsl_vvvmvl, 132282}, // __builtin_ve_vl_vsubsl_vvvmvl
{Intrinsic::ve_vl_vsubsl_vvvvl, 132312}, // __builtin_ve_vl_vsubsl_vvvvl
{Intrinsic::ve_vl_vsubswsx_vsvl, 132341}, // __builtin_ve_vl_vsubswsx_vsvl
{Intrinsic::ve_vl_vsubswsx_vsvmvl, 132371}, // __builtin_ve_vl_vsubswsx_vsvmvl
{Intrinsic::ve_vl_vsubswsx_vsvvl, 132403}, // __builtin_ve_vl_vsubswsx_vsvvl
{Intrinsic::ve_vl_vsubswsx_vvvl, 132434}, // __builtin_ve_vl_vsubswsx_vvvl
{Intrinsic::ve_vl_vsubswsx_vvvmvl, 132464}, // __builtin_ve_vl_vsubswsx_vvvmvl
{Intrinsic::ve_vl_vsubswsx_vvvvl, 132496}, // __builtin_ve_vl_vsubswsx_vvvvl
{Intrinsic::ve_vl_vsubswzx_vsvl, 132527}, // __builtin_ve_vl_vsubswzx_vsvl
{Intrinsic::ve_vl_vsubswzx_vsvmvl, 132557}, // __builtin_ve_vl_vsubswzx_vsvmvl
{Intrinsic::ve_vl_vsubswzx_vsvvl, 132589}, // __builtin_ve_vl_vsubswzx_vsvvl
{Intrinsic::ve_vl_vsubswzx_vvvl, 132620}, // __builtin_ve_vl_vsubswzx_vvvl
{Intrinsic::ve_vl_vsubswzx_vvvmvl, 132650}, // __builtin_ve_vl_vsubswzx_vvvmvl
{Intrinsic::ve_vl_vsubswzx_vvvvl, 132682}, // __builtin_ve_vl_vsubswzx_vvvvl
{Intrinsic::ve_vl_vsubul_vsvl, 132713}, // __builtin_ve_vl_vsubul_vsvl
{Intrinsic::ve_vl_vsubul_vsvmvl, 132741}, // __builtin_ve_vl_vsubul_vsvmvl
{Intrinsic::ve_vl_vsubul_vsvvl, 132771}, // __builtin_ve_vl_vsubul_vsvvl
{Intrinsic::ve_vl_vsubul_vvvl, 132800}, // __builtin_ve_vl_vsubul_vvvl
{Intrinsic::ve_vl_vsubul_vvvmvl, 132828}, // __builtin_ve_vl_vsubul_vvvmvl
{Intrinsic::ve_vl_vsubul_vvvvl, 132858}, // __builtin_ve_vl_vsubul_vvvvl
{Intrinsic::ve_vl_vsubuw_vsvl, 132887}, // __builtin_ve_vl_vsubuw_vsvl
{Intrinsic::ve_vl_vsubuw_vsvmvl, 132915}, // __builtin_ve_vl_vsubuw_vsvmvl
{Intrinsic::ve_vl_vsubuw_vsvvl, 132945}, // __builtin_ve_vl_vsubuw_vsvvl
{Intrinsic::ve_vl_vsubuw_vvvl, 132974}, // __builtin_ve_vl_vsubuw_vvvl
{Intrinsic::ve_vl_vsubuw_vvvmvl, 133002}, // __builtin_ve_vl_vsubuw_vvvmvl
{Intrinsic::ve_vl_vsubuw_vvvvl, 133032}, // __builtin_ve_vl_vsubuw_vvvvl
{Intrinsic::ve_vl_vsuml_vvl, 133061}, // __builtin_ve_vl_vsuml_vvl
{Intrinsic::ve_vl_vsuml_vvml, 133087}, // __builtin_ve_vl_vsuml_vvml
{Intrinsic::ve_vl_vsumwsx_vvl, 133114}, // __builtin_ve_vl_vsumwsx_vvl
{Intrinsic::ve_vl_vsumwsx_vvml, 133142}, // __builtin_ve_vl_vsumwsx_vvml
{Intrinsic::ve_vl_vsumwzx_vvl, 133171}, // __builtin_ve_vl_vsumwzx_vvl
{Intrinsic::ve_vl_vsumwzx_vvml, 133199}, // __builtin_ve_vl_vsumwzx_vvml
{Intrinsic::ve_vl_vxor_vsvl, 133228}, // __builtin_ve_vl_vxor_vsvl
{Intrinsic::ve_vl_vxor_vsvmvl, 133254}, // __builtin_ve_vl_vxor_vsvmvl
{Intrinsic::ve_vl_vxor_vsvvl, 133282}, // __builtin_ve_vl_vxor_vsvvl
{Intrinsic::ve_vl_vxor_vvvl, 133309}, // __builtin_ve_vl_vxor_vvvl
{Intrinsic::ve_vl_vxor_vvvmvl, 133335}, // __builtin_ve_vl_vxor_vvvmvl
{Intrinsic::ve_vl_vxor_vvvvl, 133363}, // __builtin_ve_vl_vxor_vvvvl
{Intrinsic::ve_vl_xorm_MMM, 133390}, // __builtin_ve_vl_xorm_MMM
{Intrinsic::ve_vl_xorm_mmm, 133415}, // __builtin_ve_vl_xorm_mmm
};
auto I = std::lower_bound(std::begin(veNames),
std::end(veNames),
BuiltinNameStr);
if (I != std::end(veNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "x86") {
static const BuiltinEntry x86Names[] = {
{Intrinsic::x86_avx512_add_pd_512, 137739}, // __builtin_ia32_addpd512
{Intrinsic::x86_avx512_add_ps_512, 137763}, // __builtin_ia32_addps512
{Intrinsic::x86_avx512_mask_add_sd_round, 138837}, // __builtin_ia32_addsd_round_mask
{Intrinsic::x86_avx512_mask_add_ss_round, 138869}, // __builtin_ia32_addss_round_mask
{Intrinsic::x86_sse3_addsub_pd, 156702}, // __builtin_ia32_addsubpd
{Intrinsic::x86_avx_addsub_pd_256, 134331}, // __builtin_ia32_addsubpd256
{Intrinsic::x86_sse3_addsub_ps, 156726}, // __builtin_ia32_addsubps
{Intrinsic::x86_avx_addsub_ps_256, 134358}, // __builtin_ia32_addsubps256
{Intrinsic::x86_aesni_aesdec, 133948}, // __builtin_ia32_aesdec128
{Intrinsic::x86_aesni_aesdec_256, 133973}, // __builtin_ia32_aesdec256
{Intrinsic::x86_aesni_aesdec_512, 133998}, // __builtin_ia32_aesdec512
{Intrinsic::x86_aesni_aesdeclast, 134023}, // __builtin_ia32_aesdeclast128
{Intrinsic::x86_aesni_aesdeclast_256, 134052}, // __builtin_ia32_aesdeclast256
{Intrinsic::x86_aesni_aesdeclast_512, 134081}, // __builtin_ia32_aesdeclast512
{Intrinsic::x86_aesni_aesenc, 134110}, // __builtin_ia32_aesenc128
{Intrinsic::x86_aesni_aesenc_256, 134135}, // __builtin_ia32_aesenc256
{Intrinsic::x86_aesni_aesenc_512, 134160}, // __builtin_ia32_aesenc512
{Intrinsic::x86_aesni_aesenclast, 134185}, // __builtin_ia32_aesenclast128
{Intrinsic::x86_aesni_aesenclast_256, 134214}, // __builtin_ia32_aesenclast256
{Intrinsic::x86_aesni_aesenclast_512, 134243}, // __builtin_ia32_aesenclast512
{Intrinsic::x86_aesni_aesimc, 134272}, // __builtin_ia32_aesimc128
{Intrinsic::x86_aesni_aeskeygenassist, 134297}, // __builtin_ia32_aeskeygenassist128
{Intrinsic::x86_bmi_bextr_32, 151132}, // __builtin_ia32_bextr_u32
{Intrinsic::x86_bmi_bextr_64, 151157}, // __builtin_ia32_bextr_u64
{Intrinsic::x86_tbm_bextri_u32, 158573}, // __builtin_ia32_bextri_u32
{Intrinsic::x86_tbm_bextri_u64, 158599}, // __builtin_ia32_bextri_u64
{Intrinsic::x86_sse41_blendvpd, 156903}, // __builtin_ia32_blendvpd
{Intrinsic::x86_avx_blendv_pd_256, 134385}, // __builtin_ia32_blendvpd256
{Intrinsic::x86_sse41_blendvps, 156927}, // __builtin_ia32_blendvps
{Intrinsic::x86_avx_blendv_ps_256, 134412}, // __builtin_ia32_blendvps256
{Intrinsic::x86_avx512_broadcastmb_128, 137787}, // __builtin_ia32_broadcastmb128
{Intrinsic::x86_avx512_broadcastmb_256, 137817}, // __builtin_ia32_broadcastmb256
{Intrinsic::x86_avx512_broadcastmb_512, 137847}, // __builtin_ia32_broadcastmb512
{Intrinsic::x86_avx512_broadcastmw_128, 137877}, // __builtin_ia32_broadcastmw128
{Intrinsic::x86_avx512_broadcastmw_256, 137907}, // __builtin_ia32_broadcastmw256
{Intrinsic::x86_avx512_broadcastmw_512, 137937}, // __builtin_ia32_broadcastmw512
{Intrinsic::x86_bmi_bzhi_64, 151205}, // __builtin_ia32_bzhi_di
{Intrinsic::x86_bmi_bzhi_32, 151182}, // __builtin_ia32_bzhi_si
{Intrinsic::x86_cldemote, 151320}, // __builtin_ia32_cldemote
{Intrinsic::x86_sse2_clflush, 155265}, // __builtin_ia32_clflush
{Intrinsic::x86_clflushopt, 151344}, // __builtin_ia32_clflushopt
{Intrinsic::x86_clrssbsy, 151370}, // __builtin_ia32_clrssbsy
{Intrinsic::x86_clui, 151394}, // __builtin_ia32_clui
{Intrinsic::x86_clwb, 151414}, // __builtin_ia32_clwb
{Intrinsic::x86_clzero, 151434}, // __builtin_ia32_clzero
{Intrinsic::x86_sse2_cmp_sd, 155288}, // __builtin_ia32_cmpsd
{Intrinsic::x86_avx512_mask_cmp_sd, 138901}, // __builtin_ia32_cmpsd_mask
{Intrinsic::x86_sse_cmp_ss, 154484}, // __builtin_ia32_cmpss
{Intrinsic::x86_avx512_mask_cmp_ss, 138927}, // __builtin_ia32_cmpss_mask
{Intrinsic::x86_sse_comieq_ss, 154505}, // __builtin_ia32_comieq
{Intrinsic::x86_sse_comige_ss, 154527}, // __builtin_ia32_comige
{Intrinsic::x86_sse_comigt_ss, 154549}, // __builtin_ia32_comigt
{Intrinsic::x86_sse_comile_ss, 154571}, // __builtin_ia32_comile
{Intrinsic::x86_sse_comilt_ss, 154593}, // __builtin_ia32_comilt
{Intrinsic::x86_sse_comineq_ss, 154615}, // __builtin_ia32_comineq
{Intrinsic::x86_sse2_comieq_sd, 155309}, // __builtin_ia32_comisdeq
{Intrinsic::x86_sse2_comige_sd, 155333}, // __builtin_ia32_comisdge
{Intrinsic::x86_sse2_comigt_sd, 155357}, // __builtin_ia32_comisdgt
{Intrinsic::x86_sse2_comile_sd, 155381}, // __builtin_ia32_comisdle
{Intrinsic::x86_sse2_comilt_sd, 155405}, // __builtin_ia32_comisdlt
{Intrinsic::x86_sse2_comineq_sd, 155429}, // __builtin_ia32_comisdneq
{Intrinsic::x86_sse42_crc32_64_64, 157365}, // __builtin_ia32_crc32di
{Intrinsic::x86_sse42_crc32_32_16, 157296}, // __builtin_ia32_crc32hi
{Intrinsic::x86_sse42_crc32_32_8, 157342}, // __builtin_ia32_crc32qi
{Intrinsic::x86_sse42_crc32_32_32, 157319}, // __builtin_ia32_crc32si
{Intrinsic::x86_avx512bf16_cvtne2ps2bf16_128, 150885}, // __builtin_ia32_cvtne2ps2bf16_128
{Intrinsic::x86_avx512bf16_cvtne2ps2bf16_256, 150918}, // __builtin_ia32_cvtne2ps2bf16_256
{Intrinsic::x86_avx512bf16_cvtne2ps2bf16_512, 150951}, // __builtin_ia32_cvtne2ps2bf16_512
{Intrinsic::x86_avx512bf16_cvtneps2bf16_256, 150984}, // __builtin_ia32_cvtneps2bf16_256
{Intrinsic::x86_avx512bf16_cvtneps2bf16_512, 151016}, // __builtin_ia32_cvtneps2bf16_512
{Intrinsic::x86_sse2_cvtpd2dq, 155454}, // __builtin_ia32_cvtpd2dq
{Intrinsic::x86_avx512_mask_cvtpd2dq_128, 138953}, // __builtin_ia32_cvtpd2dq128_mask
{Intrinsic::x86_avx_cvt_pd2dq_256, 134466}, // __builtin_ia32_cvtpd2dq256
{Intrinsic::x86_avx512_mask_cvtpd2dq_512, 138985}, // __builtin_ia32_cvtpd2dq512_mask
{Intrinsic::x86_sse_cvtpd2pi, 154638}, // __builtin_ia32_cvtpd2pi
{Intrinsic::x86_sse2_cvtpd2ps, 155478}, // __builtin_ia32_cvtpd2ps
{Intrinsic::x86_avx_cvt_pd2_ps_256, 134439}, // __builtin_ia32_cvtpd2ps256
{Intrinsic::x86_avx512_mask_cvtpd2ps_512, 139046}, // __builtin_ia32_cvtpd2ps512_mask
{Intrinsic::x86_avx512_mask_cvtpd2ps, 139017}, // __builtin_ia32_cvtpd2ps_mask
{Intrinsic::x86_avx512_mask_cvtpd2qq_128, 139078}, // __builtin_ia32_cvtpd2qq128_mask
{Intrinsic::x86_avx512_mask_cvtpd2qq_256, 139110}, // __builtin_ia32_cvtpd2qq256_mask
{Intrinsic::x86_avx512_mask_cvtpd2qq_512, 139142}, // __builtin_ia32_cvtpd2qq512_mask
{Intrinsic::x86_avx512_mask_cvtpd2udq_128, 139174}, // __builtin_ia32_cvtpd2udq128_mask
{Intrinsic::x86_avx512_mask_cvtpd2udq_256, 139207}, // __builtin_ia32_cvtpd2udq256_mask
{Intrinsic::x86_avx512_mask_cvtpd2udq_512, 139240}, // __builtin_ia32_cvtpd2udq512_mask
{Intrinsic::x86_avx512_mask_cvtpd2uqq_128, 139273}, // __builtin_ia32_cvtpd2uqq128_mask
{Intrinsic::x86_avx512_mask_cvtpd2uqq_256, 139306}, // __builtin_ia32_cvtpd2uqq256_mask
{Intrinsic::x86_avx512_mask_cvtpd2uqq_512, 139339}, // __builtin_ia32_cvtpd2uqq512_mask
{Intrinsic::x86_sse_cvtpi2pd, 154662}, // __builtin_ia32_cvtpi2pd
{Intrinsic::x86_sse_cvtpi2ps, 154686}, // __builtin_ia32_cvtpi2ps
{Intrinsic::x86_sse2_cvtps2dq, 155502}, // __builtin_ia32_cvtps2dq
{Intrinsic::x86_avx512_mask_cvtps2dq_128, 139372}, // __builtin_ia32_cvtps2dq128_mask
{Intrinsic::x86_avx_cvt_ps2dq_256, 134493}, // __builtin_ia32_cvtps2dq256
{Intrinsic::x86_avx512_mask_cvtps2dq_256, 139404}, // __builtin_ia32_cvtps2dq256_mask
{Intrinsic::x86_avx512_mask_cvtps2dq_512, 139436}, // __builtin_ia32_cvtps2dq512_mask
{Intrinsic::x86_avx512_mask_cvtps2pd_512, 139468}, // __builtin_ia32_cvtps2pd512_mask
{Intrinsic::x86_sse_cvtps2pi, 154710}, // __builtin_ia32_cvtps2pi
{Intrinsic::x86_avx512_mask_cvtps2qq_128, 139500}, // __builtin_ia32_cvtps2qq128_mask
{Intrinsic::x86_avx512_mask_cvtps2qq_256, 139532}, // __builtin_ia32_cvtps2qq256_mask
{Intrinsic::x86_avx512_mask_cvtps2qq_512, 139564}, // __builtin_ia32_cvtps2qq512_mask
{Intrinsic::x86_avx512_mask_cvtps2udq_128, 139596}, // __builtin_ia32_cvtps2udq128_mask
{Intrinsic::x86_avx512_mask_cvtps2udq_256, 139629}, // __builtin_ia32_cvtps2udq256_mask
{Intrinsic::x86_avx512_mask_cvtps2udq_512, 139662}, // __builtin_ia32_cvtps2udq512_mask
{Intrinsic::x86_avx512_mask_cvtps2uqq_128, 139695}, // __builtin_ia32_cvtps2uqq128_mask
{Intrinsic::x86_avx512_mask_cvtps2uqq_256, 139728}, // __builtin_ia32_cvtps2uqq256_mask
{Intrinsic::x86_avx512_mask_cvtps2uqq_512, 139761}, // __builtin_ia32_cvtps2uqq512_mask
{Intrinsic::x86_avx512_mask_cvtqq2ps_128, 139794}, // __builtin_ia32_cvtqq2ps128_mask
{Intrinsic::x86_sse2_cvtsd2si, 155526}, // __builtin_ia32_cvtsd2si
{Intrinsic::x86_sse2_cvtsd2si64, 155550}, // __builtin_ia32_cvtsd2si64
{Intrinsic::x86_sse2_cvtsd2ss, 155576}, // __builtin_ia32_cvtsd2ss
{Intrinsic::x86_avx512_mask_cvtsd2ss_round, 139826}, // __builtin_ia32_cvtsd2ss_round_mask
{Intrinsic::x86_avx512_cvtsi2sd64, 138159}, // __builtin_ia32_cvtsi2sd64
{Intrinsic::x86_avx512_cvtsi2ss32, 138185}, // __builtin_ia32_cvtsi2ss32
{Intrinsic::x86_avx512_cvtsi2ss64, 138211}, // __builtin_ia32_cvtsi2ss64
{Intrinsic::x86_avx512_mask_cvtss2sd_round, 139861}, // __builtin_ia32_cvtss2sd_round_mask
{Intrinsic::x86_sse_cvtss2si, 154734}, // __builtin_ia32_cvtss2si
{Intrinsic::x86_sse_cvtss2si64, 154758}, // __builtin_ia32_cvtss2si64
{Intrinsic::x86_sse2_cvttpd2dq, 155600}, // __builtin_ia32_cvttpd2dq
{Intrinsic::x86_avx512_mask_cvttpd2dq_128, 139896}, // __builtin_ia32_cvttpd2dq128_mask
{Intrinsic::x86_avx_cvtt_pd2dq_256, 134520}, // __builtin_ia32_cvttpd2dq256
{Intrinsic::x86_avx512_mask_cvttpd2dq_512, 139929}, // __builtin_ia32_cvttpd2dq512_mask
{Intrinsic::x86_sse_cvttpd2pi, 154784}, // __builtin_ia32_cvttpd2pi
{Intrinsic::x86_avx512_mask_cvttpd2qq_128, 139962}, // __builtin_ia32_cvttpd2qq128_mask
{Intrinsic::x86_avx512_mask_cvttpd2qq_256, 139995}, // __builtin_ia32_cvttpd2qq256_mask
{Intrinsic::x86_avx512_mask_cvttpd2qq_512, 140028}, // __builtin_ia32_cvttpd2qq512_mask
{Intrinsic::x86_avx512_mask_cvttpd2udq_128, 140061}, // __builtin_ia32_cvttpd2udq128_mask
{Intrinsic::x86_avx512_mask_cvttpd2udq_256, 140095}, // __builtin_ia32_cvttpd2udq256_mask
{Intrinsic::x86_avx512_mask_cvttpd2udq_512, 140129}, // __builtin_ia32_cvttpd2udq512_mask
{Intrinsic::x86_avx512_mask_cvttpd2uqq_128, 140163}, // __builtin_ia32_cvttpd2uqq128_mask
{Intrinsic::x86_avx512_mask_cvttpd2uqq_256, 140197}, // __builtin_ia32_cvttpd2uqq256_mask
{Intrinsic::x86_avx512_mask_cvttpd2uqq_512, 140231}, // __builtin_ia32_cvttpd2uqq512_mask
{Intrinsic::x86_sse2_cvttps2dq, 155625}, // __builtin_ia32_cvttps2dq
{Intrinsic::x86_avx_cvtt_ps2dq_256, 134548}, // __builtin_ia32_cvttps2dq256
{Intrinsic::x86_avx512_mask_cvttps2dq_512, 140265}, // __builtin_ia32_cvttps2dq512_mask
{Intrinsic::x86_sse_cvttps2pi, 154809}, // __builtin_ia32_cvttps2pi
{Intrinsic::x86_avx512_mask_cvttps2qq_128, 140298}, // __builtin_ia32_cvttps2qq128_mask
{Intrinsic::x86_avx512_mask_cvttps2qq_256, 140331}, // __builtin_ia32_cvttps2qq256_mask
{Intrinsic::x86_avx512_mask_cvttps2qq_512, 140364}, // __builtin_ia32_cvttps2qq512_mask
{Intrinsic::x86_avx512_mask_cvttps2udq_128, 140397}, // __builtin_ia32_cvttps2udq128_mask
{Intrinsic::x86_avx512_mask_cvttps2udq_256, 140431}, // __builtin_ia32_cvttps2udq256_mask
{Intrinsic::x86_avx512_mask_cvttps2udq_512, 140465}, // __builtin_ia32_cvttps2udq512_mask
{Intrinsic::x86_avx512_mask_cvttps2uqq_128, 140499}, // __builtin_ia32_cvttps2uqq128_mask
{Intrinsic::x86_avx512_mask_cvttps2uqq_256, 140533}, // __builtin_ia32_cvttps2uqq256_mask
{Intrinsic::x86_avx512_mask_cvttps2uqq_512, 140567}, // __builtin_ia32_cvttps2uqq512_mask
{Intrinsic::x86_sse2_cvttsd2si, 155650}, // __builtin_ia32_cvttsd2si
{Intrinsic::x86_sse2_cvttsd2si64, 155675}, // __builtin_ia32_cvttsd2si64
{Intrinsic::x86_sse_cvttss2si, 154834}, // __builtin_ia32_cvttss2si
{Intrinsic::x86_sse_cvttss2si64, 154859}, // __builtin_ia32_cvttss2si64
{Intrinsic::x86_avx512_mask_cvtuqq2ps_128, 140601}, // __builtin_ia32_cvtuqq2ps128_mask
{Intrinsic::x86_avx512_cvtusi642sd, 138492}, // __builtin_ia32_cvtusi2sd64
{Intrinsic::x86_avx512_cvtusi2ss, 138465}, // __builtin_ia32_cvtusi2ss32
{Intrinsic::x86_avx512_cvtusi642ss, 138519}, // __builtin_ia32_cvtusi2ss64
{Intrinsic::x86_avx512_dbpsadbw_128, 138546}, // __builtin_ia32_dbpsadbw128
{Intrinsic::x86_avx512_dbpsadbw_256, 138573}, // __builtin_ia32_dbpsadbw256
{Intrinsic::x86_avx512_dbpsadbw_512, 138600}, // __builtin_ia32_dbpsadbw512
{Intrinsic::x86_directstore32, 151456}, // __builtin_ia32_directstore_u32
{Intrinsic::x86_directstore64, 151487}, // __builtin_ia32_directstore_u64
{Intrinsic::x86_avx512_div_pd_512, 138627}, // __builtin_ia32_divpd512
{Intrinsic::x86_avx512_div_ps_512, 138651}, // __builtin_ia32_divps512
{Intrinsic::x86_avx512_mask_div_sd_round, 140634}, // __builtin_ia32_divsd_round_mask
{Intrinsic::x86_avx512_mask_div_ss_round, 140666}, // __builtin_ia32_divss_round_mask
{Intrinsic::x86_avx512bf16_dpbf16ps_128, 151048}, // __builtin_ia32_dpbf16ps_128
{Intrinsic::x86_avx512bf16_dpbf16ps_256, 151076}, // __builtin_ia32_dpbf16ps_256
{Intrinsic::x86_avx512bf16_dpbf16ps_512, 151104}, // __builtin_ia32_dpbf16ps_512
{Intrinsic::x86_sse41_dppd, 156951}, // __builtin_ia32_dppd
{Intrinsic::x86_sse41_dpps, 156971}, // __builtin_ia32_dpps
{Intrinsic::x86_avx_dp_ps_256, 134576}, // __builtin_ia32_dpps256
{Intrinsic::x86_mmx_emms, 152136}, // __builtin_ia32_emms
{Intrinsic::x86_enqcmd, 151518}, // __builtin_ia32_enqcmd
{Intrinsic::x86_enqcmds, 151540}, // __builtin_ia32_enqcmds
{Intrinsic::x86_avx512_exp2_pd, 138675}, // __builtin_ia32_exp2pd_mask
{Intrinsic::x86_avx512_exp2_ps, 138702}, // __builtin_ia32_exp2ps_mask
{Intrinsic::x86_sse4a_extrq, 157790}, // __builtin_ia32_extrq
{Intrinsic::x86_sse4a_extrqi, 157811}, // __builtin_ia32_extrqi
{Intrinsic::x86_mmx_femms, 152156}, // __builtin_ia32_femms
{Intrinsic::x86_avx512_mask_fixupimm_pd_128, 140698}, // __builtin_ia32_fixupimmpd128_mask
{Intrinsic::x86_avx512_maskz_fixupimm_pd_128, 146262}, // __builtin_ia32_fixupimmpd128_maskz
{Intrinsic::x86_avx512_mask_fixupimm_pd_256, 140732}, // __builtin_ia32_fixupimmpd256_mask
{Intrinsic::x86_avx512_maskz_fixupimm_pd_256, 146297}, // __builtin_ia32_fixupimmpd256_maskz
{Intrinsic::x86_avx512_mask_fixupimm_pd_512, 140766}, // __builtin_ia32_fixupimmpd512_mask
{Intrinsic::x86_avx512_maskz_fixupimm_pd_512, 146332}, // __builtin_ia32_fixupimmpd512_maskz
{Intrinsic::x86_avx512_mask_fixupimm_ps_128, 140800}, // __builtin_ia32_fixupimmps128_mask
{Intrinsic::x86_avx512_maskz_fixupimm_ps_128, 146367}, // __builtin_ia32_fixupimmps128_maskz
{Intrinsic::x86_avx512_mask_fixupimm_ps_256, 140834}, // __builtin_ia32_fixupimmps256_mask
{Intrinsic::x86_avx512_maskz_fixupimm_ps_256, 146402}, // __builtin_ia32_fixupimmps256_maskz
{Intrinsic::x86_avx512_mask_fixupimm_ps_512, 140868}, // __builtin_ia32_fixupimmps512_mask
{Intrinsic::x86_avx512_maskz_fixupimm_ps_512, 146437}, // __builtin_ia32_fixupimmps512_maskz
{Intrinsic::x86_avx512_mask_fixupimm_sd, 140902}, // __builtin_ia32_fixupimmsd_mask
{Intrinsic::x86_avx512_maskz_fixupimm_sd, 146472}, // __builtin_ia32_fixupimmsd_maskz
{Intrinsic::x86_avx512_mask_fixupimm_ss, 140933}, // __builtin_ia32_fixupimmss_mask
{Intrinsic::x86_avx512_maskz_fixupimm_ss, 146504}, // __builtin_ia32_fixupimmss_maskz
{Intrinsic::x86_avx512_mask_fpclass_sd, 140964}, // __builtin_ia32_fpclasssd_mask
{Intrinsic::x86_avx512_mask_fpclass_ss, 140994}, // __builtin_ia32_fpclassss_mask
{Intrinsic::x86_fxrstor, 151799}, // __builtin_ia32_fxrstor
{Intrinsic::x86_fxrstor64, 151822}, // __builtin_ia32_fxrstor64
{Intrinsic::x86_fxsave, 151847}, // __builtin_ia32_fxsave
{Intrinsic::x86_fxsave64, 151869}, // __builtin_ia32_fxsave64
{Intrinsic::x86_avx2_gather_d_d, 135758}, // __builtin_ia32_gatherd_d
{Intrinsic::x86_avx2_gather_d_d_256, 135783}, // __builtin_ia32_gatherd_d256
{Intrinsic::x86_avx2_gather_d_pd, 135811}, // __builtin_ia32_gatherd_pd
{Intrinsic::x86_avx2_gather_d_pd_256, 135837}, // __builtin_ia32_gatherd_pd256
{Intrinsic::x86_avx2_gather_d_ps, 135866}, // __builtin_ia32_gatherd_ps
{Intrinsic::x86_avx2_gather_d_ps_256, 135892}, // __builtin_ia32_gatherd_ps256
{Intrinsic::x86_avx2_gather_d_q, 135921}, // __builtin_ia32_gatherd_q
{Intrinsic::x86_avx2_gather_d_q_256, 135946}, // __builtin_ia32_gatherd_q256
{Intrinsic::x86_avx512_gatherpf_dpd_512, 138729}, // __builtin_ia32_gatherpfdpd
{Intrinsic::x86_avx512_gatherpf_dps_512, 138756}, // __builtin_ia32_gatherpfdps
{Intrinsic::x86_avx512_gatherpf_qpd_512, 138783}, // __builtin_ia32_gatherpfqpd
{Intrinsic::x86_avx512_gatherpf_qps_512, 138810}, // __builtin_ia32_gatherpfqps
{Intrinsic::x86_avx2_gather_q_d, 135974}, // __builtin_ia32_gatherq_d
{Intrinsic::x86_avx2_gather_q_d_256, 135999}, // __builtin_ia32_gatherq_d256
{Intrinsic::x86_avx2_gather_q_pd, 136027}, // __builtin_ia32_gatherq_pd
{Intrinsic::x86_avx2_gather_q_pd_256, 136053}, // __builtin_ia32_gatherq_pd256
{Intrinsic::x86_avx2_gather_q_ps, 136082}, // __builtin_ia32_gatherq_ps
{Intrinsic::x86_avx2_gather_q_ps_256, 136108}, // __builtin_ia32_gatherq_ps256
{Intrinsic::x86_avx2_gather_q_q, 136137}, // __builtin_ia32_gatherq_q
{Intrinsic::x86_avx2_gather_q_q_256, 136162}, // __builtin_ia32_gatherq_q256
{Intrinsic::x86_avx512_mask_getexp_pd_128, 141024}, // __builtin_ia32_getexppd128_mask
{Intrinsic::x86_avx512_mask_getexp_pd_256, 141056}, // __builtin_ia32_getexppd256_mask
{Intrinsic::x86_avx512_mask_getexp_pd_512, 141088}, // __builtin_ia32_getexppd512_mask
{Intrinsic::x86_avx512_mask_getexp_ps_128, 141120}, // __builtin_ia32_getexpps128_mask
{Intrinsic::x86_avx512_mask_getexp_ps_256, 141152}, // __builtin_ia32_getexpps256_mask
{Intrinsic::x86_avx512_mask_getexp_ps_512, 141184}, // __builtin_ia32_getexpps512_mask
{Intrinsic::x86_avx512_mask_getexp_sd, 141216}, // __builtin_ia32_getexpsd128_round_mask
{Intrinsic::x86_avx512_mask_getexp_ss, 141254}, // __builtin_ia32_getexpss128_round_mask
{Intrinsic::x86_avx512_mask_getmant_pd_128, 141292}, // __builtin_ia32_getmantpd128_mask
{Intrinsic::x86_avx512_mask_getmant_pd_256, 141325}, // __builtin_ia32_getmantpd256_mask
{Intrinsic::x86_avx512_mask_getmant_pd_512, 141358}, // __builtin_ia32_getmantpd512_mask
{Intrinsic::x86_avx512_mask_getmant_ps_128, 141391}, // __builtin_ia32_getmantps128_mask
{Intrinsic::x86_avx512_mask_getmant_ps_256, 141424}, // __builtin_ia32_getmantps256_mask
{Intrinsic::x86_avx512_mask_getmant_ps_512, 141457}, // __builtin_ia32_getmantps512_mask
{Intrinsic::x86_avx512_mask_getmant_sd, 141490}, // __builtin_ia32_getmantsd_round_mask
{Intrinsic::x86_avx512_mask_getmant_ss, 141526}, // __builtin_ia32_getmantss_round_mask
{Intrinsic::x86_sse3_hadd_pd, 156750}, // __builtin_ia32_haddpd
{Intrinsic::x86_avx_hadd_pd_256, 134599}, // __builtin_ia32_haddpd256
{Intrinsic::x86_sse3_hadd_ps, 156772}, // __builtin_ia32_haddps
{Intrinsic::x86_avx_hadd_ps_256, 134624}, // __builtin_ia32_haddps256
{Intrinsic::x86_sse3_hsub_pd, 156794}, // __builtin_ia32_hsubpd
{Intrinsic::x86_avx_hsub_pd_256, 134649}, // __builtin_ia32_hsubpd256
{Intrinsic::x86_sse3_hsub_ps, 156816}, // __builtin_ia32_hsubps
{Intrinsic::x86_avx_hsub_ps_256, 134674}, // __builtin_ia32_hsubps256
{Intrinsic::x86_incsspd, 151893}, // __builtin_ia32_incsspd
{Intrinsic::x86_incsspq, 151916}, // __builtin_ia32_incsspq
{Intrinsic::x86_sse41_insertps, 156991}, // __builtin_ia32_insertps128
{Intrinsic::x86_sse4a_insertq, 157833}, // __builtin_ia32_insertq
{Intrinsic::x86_sse4a_insertqi, 157856}, // __builtin_ia32_insertqi
{Intrinsic::x86_invpcid, 151939}, // __builtin_ia32_invpcid
{Intrinsic::x86_sse3_ldu_dq, 156838}, // __builtin_ia32_lddqu
{Intrinsic::x86_avx_ldu_dq_256, 134699}, // __builtin_ia32_lddqu256
{Intrinsic::x86_sse2_lfence, 155702}, // __builtin_ia32_lfence
{Intrinsic::x86_llwpcb, 151993}, // __builtin_ia32_llwpcb
{Intrinsic::x86_loadiwkey, 152015}, // __builtin_ia32_loadiwkey
{Intrinsic::x86_lwpins32, 152040}, // __builtin_ia32_lwpins32
{Intrinsic::x86_lwpins64, 152064}, // __builtin_ia32_lwpins64
{Intrinsic::x86_lwpval32, 152088}, // __builtin_ia32_lwpval32
{Intrinsic::x86_lwpval64, 152112}, // __builtin_ia32_lwpval64
{Intrinsic::x86_avx2_maskload_d, 136190}, // __builtin_ia32_maskloadd
{Intrinsic::x86_avx2_maskload_d_256, 136215}, // __builtin_ia32_maskloadd256
{Intrinsic::x86_avx_maskload_pd, 134723}, // __builtin_ia32_maskloadpd
{Intrinsic::x86_avx_maskload_pd_256, 134749}, // __builtin_ia32_maskloadpd256
{Intrinsic::x86_avx_maskload_ps, 134778}, // __builtin_ia32_maskloadps
{Intrinsic::x86_avx_maskload_ps_256, 134804}, // __builtin_ia32_maskloadps256
{Intrinsic::x86_avx2_maskload_q, 136243}, // __builtin_ia32_maskloadq
{Intrinsic::x86_avx2_maskload_q_256, 136268}, // __builtin_ia32_maskloadq256
{Intrinsic::x86_sse2_maskmov_dqu, 155724}, // __builtin_ia32_maskmovdqu
{Intrinsic::x86_mmx_maskmovq, 152177}, // __builtin_ia32_maskmovq
{Intrinsic::x86_avx2_maskstore_d, 136296}, // __builtin_ia32_maskstored
{Intrinsic::x86_avx2_maskstore_d_256, 136322}, // __builtin_ia32_maskstored256
{Intrinsic::x86_avx_maskstore_pd, 134833}, // __builtin_ia32_maskstorepd
{Intrinsic::x86_avx_maskstore_pd_256, 134860}, // __builtin_ia32_maskstorepd256
{Intrinsic::x86_avx_maskstore_ps, 134890}, // __builtin_ia32_maskstoreps
{Intrinsic::x86_avx_maskstore_ps_256, 134917}, // __builtin_ia32_maskstoreps256
{Intrinsic::x86_avx2_maskstore_q, 136351}, // __builtin_ia32_maskstoreq
{Intrinsic::x86_avx2_maskstore_q_256, 136377}, // __builtin_ia32_maskstoreq256
{Intrinsic::x86_sse2_max_pd, 155750}, // __builtin_ia32_maxpd
{Intrinsic::x86_avx_max_pd_256, 134947}, // __builtin_ia32_maxpd256
{Intrinsic::x86_avx512_max_pd_512, 146536}, // __builtin_ia32_maxpd512
{Intrinsic::x86_sse_max_ps, 154886}, // __builtin_ia32_maxps
{Intrinsic::x86_avx_max_ps_256, 134971}, // __builtin_ia32_maxps256
{Intrinsic::x86_avx512_max_ps_512, 146560}, // __builtin_ia32_maxps512
{Intrinsic::x86_sse2_max_sd, 155771}, // __builtin_ia32_maxsd
{Intrinsic::x86_avx512_mask_max_sd_round, 141562}, // __builtin_ia32_maxsd_round_mask
{Intrinsic::x86_sse_max_ss, 154907}, // __builtin_ia32_maxss
{Intrinsic::x86_avx512_mask_max_ss_round, 141594}, // __builtin_ia32_maxss_round_mask
{Intrinsic::x86_sse2_mfence, 155792}, // __builtin_ia32_mfence
{Intrinsic::x86_sse2_min_pd, 155814}, // __builtin_ia32_minpd
{Intrinsic::x86_avx_min_pd_256, 134995}, // __builtin_ia32_minpd256
{Intrinsic::x86_avx512_min_pd_512, 146584}, // __builtin_ia32_minpd512
{Intrinsic::x86_sse_min_ps, 154928}, // __builtin_ia32_minps
{Intrinsic::x86_avx_min_ps_256, 135019}, // __builtin_ia32_minps256
{Intrinsic::x86_avx512_min_ps_512, 146608}, // __builtin_ia32_minps512
{Intrinsic::x86_sse2_min_sd, 155835}, // __builtin_ia32_minsd
{Intrinsic::x86_avx512_mask_min_sd_round, 141626}, // __builtin_ia32_minsd_round_mask
{Intrinsic::x86_sse_min_ss, 154949}, // __builtin_ia32_minss
{Intrinsic::x86_avx512_mask_min_ss_round, 141658}, // __builtin_ia32_minss_round_mask
{Intrinsic::x86_sse3_monitor, 156859}, // __builtin_ia32_monitor
{Intrinsic::x86_monitorx, 153723}, // __builtin_ia32_monitorx
{Intrinsic::x86_movdir64b, 153747}, // __builtin_ia32_movdir64b
{Intrinsic::x86_sse2_movmsk_pd, 155856}, // __builtin_ia32_movmskpd
{Intrinsic::x86_avx_movmsk_pd_256, 135043}, // __builtin_ia32_movmskpd256
{Intrinsic::x86_sse_movmsk_ps, 154970}, // __builtin_ia32_movmskps
{Intrinsic::x86_avx_movmsk_ps_256, 135070}, // __builtin_ia32_movmskps256
{Intrinsic::x86_mmx_movnt_dq, 152201}, // __builtin_ia32_movntq
{Intrinsic::x86_sse41_mpsadbw, 157018}, // __builtin_ia32_mpsadbw128
{Intrinsic::x86_avx2_mpsadbw, 136406}, // __builtin_ia32_mpsadbw256
{Intrinsic::x86_avx512_mul_pd_512, 146632}, // __builtin_ia32_mulpd512
{Intrinsic::x86_avx512_mul_ps_512, 146656}, // __builtin_ia32_mulps512
{Intrinsic::x86_avx512_mask_mul_sd_round, 141690}, // __builtin_ia32_mulsd_round_mask
{Intrinsic::x86_avx512_mask_mul_ss_round, 141722}, // __builtin_ia32_mulss_round_mask
{Intrinsic::x86_sse3_mwait, 156882}, // __builtin_ia32_mwait
{Intrinsic::x86_mwaitx, 153772}, // __builtin_ia32_mwaitx
{Intrinsic::x86_ssse3_pabs_b, 157880}, // __builtin_ia32_pabsb
{Intrinsic::x86_ssse3_pabs_d, 157901}, // __builtin_ia32_pabsd
{Intrinsic::x86_ssse3_pabs_w, 157922}, // __builtin_ia32_pabsw
{Intrinsic::x86_mmx_packssdw, 152223}, // __builtin_ia32_packssdw
{Intrinsic::x86_sse2_packssdw_128, 155880}, // __builtin_ia32_packssdw128
{Intrinsic::x86_avx2_packssdw, 136432}, // __builtin_ia32_packssdw256
{Intrinsic::x86_avx512_packssdw_512, 146680}, // __builtin_ia32_packssdw512
{Intrinsic::x86_mmx_packsswb, 152247}, // __builtin_ia32_packsswb
{Intrinsic::x86_sse2_packsswb_128, 155907}, // __builtin_ia32_packsswb128
{Intrinsic::x86_avx2_packsswb, 136459}, // __builtin_ia32_packsswb256
{Intrinsic::x86_avx512_packsswb_512, 146707}, // __builtin_ia32_packsswb512
{Intrinsic::x86_sse41_packusdw, 157044}, // __builtin_ia32_packusdw128
{Intrinsic::x86_avx2_packusdw, 136486}, // __builtin_ia32_packusdw256
{Intrinsic::x86_avx512_packusdw_512, 146734}, // __builtin_ia32_packusdw512
{Intrinsic::x86_mmx_packuswb, 152271}, // __builtin_ia32_packuswb
{Intrinsic::x86_sse2_packuswb_128, 155934}, // __builtin_ia32_packuswb128
{Intrinsic::x86_avx2_packuswb, 136513}, // __builtin_ia32_packuswb256
{Intrinsic::x86_avx512_packuswb_512, 146761}, // __builtin_ia32_packuswb512
{Intrinsic::x86_mmx_padd_b, 152295}, // __builtin_ia32_paddb
{Intrinsic::x86_mmx_padd_d, 152316}, // __builtin_ia32_paddd
{Intrinsic::x86_mmx_padd_q, 152337}, // __builtin_ia32_paddq
{Intrinsic::x86_mmx_padds_b, 152379}, // __builtin_ia32_paddsb
{Intrinsic::x86_mmx_padds_w, 152401}, // __builtin_ia32_paddsw
{Intrinsic::x86_mmx_paddus_b, 152423}, // __builtin_ia32_paddusb
{Intrinsic::x86_mmx_paddus_w, 152446}, // __builtin_ia32_paddusw
{Intrinsic::x86_mmx_padd_w, 152358}, // __builtin_ia32_paddw
{Intrinsic::x86_mmx_palignr_b, 152469}, // __builtin_ia32_palignr
{Intrinsic::x86_mmx_pand, 152492}, // __builtin_ia32_pand
{Intrinsic::x86_mmx_pandn, 152512}, // __builtin_ia32_pandn
{Intrinsic::x86_sse2_pause, 155961}, // __builtin_ia32_pause
{Intrinsic::x86_mmx_pavg_b, 152533}, // __builtin_ia32_pavgb
{Intrinsic::x86_sse2_pavg_b, 155982}, // __builtin_ia32_pavgb128
{Intrinsic::x86_avx2_pavg_b, 136540}, // __builtin_ia32_pavgb256
{Intrinsic::x86_avx512_pavg_b_512, 146788}, // __builtin_ia32_pavgb512
{Intrinsic::x86_3dnow_pavgusb, 133440}, // __builtin_ia32_pavgusb
{Intrinsic::x86_mmx_pavg_w, 152554}, // __builtin_ia32_pavgw
{Intrinsic::x86_sse2_pavg_w, 156006}, // __builtin_ia32_pavgw128
{Intrinsic::x86_avx2_pavg_w, 136564}, // __builtin_ia32_pavgw256
{Intrinsic::x86_avx512_pavg_w_512, 146812}, // __builtin_ia32_pavgw512
{Intrinsic::x86_sse41_pblendvb, 157071}, // __builtin_ia32_pblendvb128
{Intrinsic::x86_avx2_pblendvb, 136588}, // __builtin_ia32_pblendvb256
{Intrinsic::x86_pclmulqdq, 153794}, // __builtin_ia32_pclmulqdq128
{Intrinsic::x86_pclmulqdq_256, 153822}, // __builtin_ia32_pclmulqdq256
{Intrinsic::x86_pclmulqdq_512, 153850}, // __builtin_ia32_pclmulqdq512
{Intrinsic::x86_mmx_pcmpeq_b, 152575}, // __builtin_ia32_pcmpeqb
{Intrinsic::x86_mmx_pcmpeq_d, 152598}, // __builtin_ia32_pcmpeqd
{Intrinsic::x86_mmx_pcmpeq_w, 152621}, // __builtin_ia32_pcmpeqw
{Intrinsic::x86_sse42_pcmpestri128, 157388}, // __builtin_ia32_pcmpestri128
{Intrinsic::x86_sse42_pcmpestria128, 157416}, // __builtin_ia32_pcmpestria128
{Intrinsic::x86_sse42_pcmpestric128, 157445}, // __builtin_ia32_pcmpestric128
{Intrinsic::x86_sse42_pcmpestrio128, 157474}, // __builtin_ia32_pcmpestrio128
{Intrinsic::x86_sse42_pcmpestris128, 157503}, // __builtin_ia32_pcmpestris128
{Intrinsic::x86_sse42_pcmpestriz128, 157532}, // __builtin_ia32_pcmpestriz128
{Intrinsic::x86_sse42_pcmpestrm128, 157561}, // __builtin_ia32_pcmpestrm128
{Intrinsic::x86_mmx_pcmpgt_b, 152644}, // __builtin_ia32_pcmpgtb
{Intrinsic::x86_mmx_pcmpgt_d, 152667}, // __builtin_ia32_pcmpgtd
{Intrinsic::x86_mmx_pcmpgt_w, 152690}, // __builtin_ia32_pcmpgtw
{Intrinsic::x86_sse42_pcmpistri128, 157589}, // __builtin_ia32_pcmpistri128
{Intrinsic::x86_sse42_pcmpistria128, 157617}, // __builtin_ia32_pcmpistria128
{Intrinsic::x86_sse42_pcmpistric128, 157646}, // __builtin_ia32_pcmpistric128
{Intrinsic::x86_sse42_pcmpistrio128, 157675}, // __builtin_ia32_pcmpistrio128
{Intrinsic::x86_sse42_pcmpistris128, 157704}, // __builtin_ia32_pcmpistris128
{Intrinsic::x86_sse42_pcmpistriz128, 157733}, // __builtin_ia32_pcmpistriz128
{Intrinsic::x86_sse42_pcmpistrm128, 157762}, // __builtin_ia32_pcmpistrm128
{Intrinsic::x86_bmi_pdep_64, 151251}, // __builtin_ia32_pdep_di
{Intrinsic::x86_bmi_pdep_32, 151228}, // __builtin_ia32_pdep_si
{Intrinsic::x86_avx512_permvar_df_256, 146836}, // __builtin_ia32_permvardf256
{Intrinsic::x86_avx512_permvar_df_512, 146864}, // __builtin_ia32_permvardf512
{Intrinsic::x86_avx512_permvar_di_256, 146892}, // __builtin_ia32_permvardi256
{Intrinsic::x86_avx512_permvar_di_512, 146920}, // __builtin_ia32_permvardi512
{Intrinsic::x86_avx512_permvar_hi_128, 146948}, // __builtin_ia32_permvarhi128
{Intrinsic::x86_avx512_permvar_hi_256, 146976}, // __builtin_ia32_permvarhi256
{Intrinsic::x86_avx512_permvar_hi_512, 147004}, // __builtin_ia32_permvarhi512
{Intrinsic::x86_avx512_permvar_qi_128, 147032}, // __builtin_ia32_permvarqi128
{Intrinsic::x86_avx512_permvar_qi_256, 147060}, // __builtin_ia32_permvarqi256
{Intrinsic::x86_avx512_permvar_qi_512, 147088}, // __builtin_ia32_permvarqi512
{Intrinsic::x86_avx2_permps, 136643}, // __builtin_ia32_permvarsf256
{Intrinsic::x86_avx512_permvar_sf_512, 147116}, // __builtin_ia32_permvarsf512
{Intrinsic::x86_avx2_permd, 136615}, // __builtin_ia32_permvarsi256
{Intrinsic::x86_avx512_permvar_si_512, 147144}, // __builtin_ia32_permvarsi512
{Intrinsic::x86_bmi_pext_64, 151297}, // __builtin_ia32_pext_di
{Intrinsic::x86_bmi_pext_32, 151274}, // __builtin_ia32_pext_si
{Intrinsic::x86_3dnow_pf2id, 133463}, // __builtin_ia32_pf2id
{Intrinsic::x86_3dnowa_pf2iw, 133861}, // __builtin_ia32_pf2iw
{Intrinsic::x86_3dnow_pfacc, 133484}, // __builtin_ia32_pfacc
{Intrinsic::x86_3dnow_pfadd, 133505}, // __builtin_ia32_pfadd
{Intrinsic::x86_3dnow_pfcmpeq, 133526}, // __builtin_ia32_pfcmpeq
{Intrinsic::x86_3dnow_pfcmpge, 133549}, // __builtin_ia32_pfcmpge
{Intrinsic::x86_3dnow_pfcmpgt, 133572}, // __builtin_ia32_pfcmpgt
{Intrinsic::x86_3dnow_pfmax, 133595}, // __builtin_ia32_pfmax
{Intrinsic::x86_3dnow_pfmin, 133616}, // __builtin_ia32_pfmin
{Intrinsic::x86_3dnow_pfmul, 133637}, // __builtin_ia32_pfmul
{Intrinsic::x86_3dnowa_pfnacc, 133882}, // __builtin_ia32_pfnacc
{Intrinsic::x86_3dnowa_pfpnacc, 133904}, // __builtin_ia32_pfpnacc
{Intrinsic::x86_3dnow_pfrcp, 133658}, // __builtin_ia32_pfrcp
{Intrinsic::x86_3dnow_pfrcpit1, 133679}, // __builtin_ia32_pfrcpit1
{Intrinsic::x86_3dnow_pfrcpit2, 133703}, // __builtin_ia32_pfrcpit2
{Intrinsic::x86_3dnow_pfrsqit1, 133727}, // __builtin_ia32_pfrsqit1
{Intrinsic::x86_3dnow_pfrsqrt, 133751}, // __builtin_ia32_pfrsqrt
{Intrinsic::x86_3dnow_pfsub, 133774}, // __builtin_ia32_pfsub
{Intrinsic::x86_3dnow_pfsubr, 133795}, // __builtin_ia32_pfsubr
{Intrinsic::x86_ssse3_phadd_d, 157943}, // __builtin_ia32_phaddd
{Intrinsic::x86_ssse3_phadd_d_128, 157965}, // __builtin_ia32_phaddd128
{Intrinsic::x86_avx2_phadd_d, 136671}, // __builtin_ia32_phaddd256
{Intrinsic::x86_ssse3_phadd_sw, 157990}, // __builtin_ia32_phaddsw
{Intrinsic::x86_ssse3_phadd_sw_128, 158013}, // __builtin_ia32_phaddsw128
{Intrinsic::x86_avx2_phadd_sw, 136696}, // __builtin_ia32_phaddsw256
{Intrinsic::x86_ssse3_phadd_w, 158039}, // __builtin_ia32_phaddw
{Intrinsic::x86_ssse3_phadd_w_128, 158061}, // __builtin_ia32_phaddw128
{Intrinsic::x86_avx2_phadd_w, 136722}, // __builtin_ia32_phaddw256
{Intrinsic::x86_sse41_phminposuw, 157098}, // __builtin_ia32_phminposuw128
{Intrinsic::x86_ssse3_phsub_d, 158086}, // __builtin_ia32_phsubd
{Intrinsic::x86_ssse3_phsub_d_128, 158108}, // __builtin_ia32_phsubd128
{Intrinsic::x86_avx2_phsub_d, 136747}, // __builtin_ia32_phsubd256
{Intrinsic::x86_ssse3_phsub_sw, 158133}, // __builtin_ia32_phsubsw
{Intrinsic::x86_ssse3_phsub_sw_128, 158156}, // __builtin_ia32_phsubsw128
{Intrinsic::x86_avx2_phsub_sw, 136772}, // __builtin_ia32_phsubsw256
{Intrinsic::x86_ssse3_phsub_w, 158182}, // __builtin_ia32_phsubw
{Intrinsic::x86_ssse3_phsub_w_128, 158204}, // __builtin_ia32_phsubw128
{Intrinsic::x86_avx2_phsub_w, 136798}, // __builtin_ia32_phsubw256
{Intrinsic::x86_3dnow_pi2fd, 133817}, // __builtin_ia32_pi2fd
{Intrinsic::x86_3dnowa_pi2fw, 133927}, // __builtin_ia32_pi2fw
{Intrinsic::x86_ssse3_pmadd_ub_sw, 158229}, // __builtin_ia32_pmaddubsw
{Intrinsic::x86_ssse3_pmadd_ub_sw_128, 158254}, // __builtin_ia32_pmaddubsw128
{Intrinsic::x86_avx2_pmadd_ub_sw, 136823}, // __builtin_ia32_pmaddubsw256
{Intrinsic::x86_avx512_pmaddubs_w_512, 147172}, // __builtin_ia32_pmaddubsw512
{Intrinsic::x86_mmx_pmadd_wd, 152769}, // __builtin_ia32_pmaddwd
{Intrinsic::x86_sse2_pmadd_wd, 156030}, // __builtin_ia32_pmaddwd128
{Intrinsic::x86_avx2_pmadd_wd, 136851}, // __builtin_ia32_pmaddwd256
{Intrinsic::x86_avx512_pmaddw_d_512, 147200}, // __builtin_ia32_pmaddwd512
{Intrinsic::x86_mmx_pmaxs_w, 152792}, // __builtin_ia32_pmaxsw
{Intrinsic::x86_mmx_pmaxu_b, 152814}, // __builtin_ia32_pmaxub
{Intrinsic::x86_mmx_pmins_w, 152836}, // __builtin_ia32_pminsw
{Intrinsic::x86_mmx_pminu_b, 152858}, // __builtin_ia32_pminub
{Intrinsic::x86_avx512_mask_pmov_db_128, 141754}, // __builtin_ia32_pmovdb128_mask
{Intrinsic::x86_avx512_mask_pmov_db_mem_128, 141814}, // __builtin_ia32_pmovdb128mem_mask
{Intrinsic::x86_avx512_mask_pmov_db_256, 141784}, // __builtin_ia32_pmovdb256_mask
{Intrinsic::x86_avx512_mask_pmov_db_mem_256, 141847}, // __builtin_ia32_pmovdb256mem_mask
{Intrinsic::x86_avx512_mask_pmov_db_mem_512, 141880}, // __builtin_ia32_pmovdb512mem_mask
{Intrinsic::x86_avx512_mask_pmov_dw_128, 141913}, // __builtin_ia32_pmovdw128_mask
{Intrinsic::x86_avx512_mask_pmov_dw_mem_128, 141973}, // __builtin_ia32_pmovdw128mem_mask
{Intrinsic::x86_avx512_mask_pmov_dw_256, 141943}, // __builtin_ia32_pmovdw256_mask
{Intrinsic::x86_avx512_mask_pmov_dw_mem_256, 142006}, // __builtin_ia32_pmovdw256mem_mask
{Intrinsic::x86_avx512_mask_pmov_dw_mem_512, 142039}, // __builtin_ia32_pmovdw512mem_mask
{Intrinsic::x86_mmx_pmovmskb, 152880}, // __builtin_ia32_pmovmskb
{Intrinsic::x86_sse2_pmovmskb_128, 156056}, // __builtin_ia32_pmovmskb128
{Intrinsic::x86_avx2_pmovmskb, 136877}, // __builtin_ia32_pmovmskb256
{Intrinsic::x86_avx512_mask_pmov_qb_128, 142072}, // __builtin_ia32_pmovqb128_mask
{Intrinsic::x86_avx512_mask_pmov_qb_mem_128, 142162}, // __builtin_ia32_pmovqb128mem_mask
{Intrinsic::x86_avx512_mask_pmov_qb_256, 142102}, // __builtin_ia32_pmovqb256_mask
{Intrinsic::x86_avx512_mask_pmov_qb_mem_256, 142195}, // __builtin_ia32_pmovqb256mem_mask
{Intrinsic::x86_avx512_mask_pmov_qb_512, 142132}, // __builtin_ia32_pmovqb512_mask
{Intrinsic::x86_avx512_mask_pmov_qb_mem_512, 142228}, // __builtin_ia32_pmovqb512mem_mask
{Intrinsic::x86_avx512_mask_pmov_qd_128, 142261}, // __builtin_ia32_pmovqd128_mask
{Intrinsic::x86_avx512_mask_pmov_qd_mem_128, 142291}, // __builtin_ia32_pmovqd128mem_mask
{Intrinsic::x86_avx512_mask_pmov_qd_mem_256, 142324}, // __builtin_ia32_pmovqd256mem_mask
{Intrinsic::x86_avx512_mask_pmov_qd_mem_512, 142357}, // __builtin_ia32_pmovqd512mem_mask
{Intrinsic::x86_avx512_mask_pmov_qw_128, 142390}, // __builtin_ia32_pmovqw128_mask
{Intrinsic::x86_avx512_mask_pmov_qw_mem_128, 142450}, // __builtin_ia32_pmovqw128mem_mask
{Intrinsic::x86_avx512_mask_pmov_qw_256, 142420}, // __builtin_ia32_pmovqw256_mask
{Intrinsic::x86_avx512_mask_pmov_qw_mem_256, 142483}, // __builtin_ia32_pmovqw256mem_mask
{Intrinsic::x86_avx512_mask_pmov_qw_mem_512, 142516}, // __builtin_ia32_pmovqw512mem_mask
{Intrinsic::x86_avx512_mask_pmovs_db_128, 142678}, // __builtin_ia32_pmovsdb128_mask
{Intrinsic::x86_avx512_mask_pmovs_db_mem_128, 142771}, // __builtin_ia32_pmovsdb128mem_mask
{Intrinsic::x86_avx512_mask_pmovs_db_256, 142709}, // __builtin_ia32_pmovsdb256_mask
{Intrinsic::x86_avx512_mask_pmovs_db_mem_256, 142805}, // __builtin_ia32_pmovsdb256mem_mask
{Intrinsic::x86_avx512_mask_pmovs_db_512, 142740}, // __builtin_ia32_pmovsdb512_mask
{Intrinsic::x86_avx512_mask_pmovs_db_mem_512, 142839}, // __builtin_ia32_pmovsdb512mem_mask
{Intrinsic::x86_avx512_mask_pmovs_dw_128, 142873}, // __builtin_ia32_pmovsdw128_mask
{Intrinsic::x86_avx512_mask_pmovs_dw_mem_128, 142966}, // __builtin_ia32_pmovsdw128mem_mask
{Intrinsic::x86_avx512_mask_pmovs_dw_256, 142904}, // __builtin_ia32_pmovsdw256_mask
{Intrinsic::x86_avx512_mask_pmovs_dw_mem_256, 143000}, // __builtin_ia32_pmovsdw256mem_mask
{Intrinsic::x86_avx512_mask_pmovs_dw_512, 142935}, // __builtin_ia32_pmovsdw512_mask
{Intrinsic::x86_avx512_mask_pmovs_dw_mem_512, 143034}, // __builtin_ia32_pmovsdw512mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qb_128, 143068}, // __builtin_ia32_pmovsqb128_mask
{Intrinsic::x86_avx512_mask_pmovs_qb_mem_128, 143161}, // __builtin_ia32_pmovsqb128mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qb_256, 143099}, // __builtin_ia32_pmovsqb256_mask
{Intrinsic::x86_avx512_mask_pmovs_qb_mem_256, 143195}, // __builtin_ia32_pmovsqb256mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qb_512, 143130}, // __builtin_ia32_pmovsqb512_mask
{Intrinsic::x86_avx512_mask_pmovs_qb_mem_512, 143229}, // __builtin_ia32_pmovsqb512mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qd_128, 143263}, // __builtin_ia32_pmovsqd128_mask
{Intrinsic::x86_avx512_mask_pmovs_qd_mem_128, 143356}, // __builtin_ia32_pmovsqd128mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qd_256, 143294}, // __builtin_ia32_pmovsqd256_mask
{Intrinsic::x86_avx512_mask_pmovs_qd_mem_256, 143390}, // __builtin_ia32_pmovsqd256mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qd_512, 143325}, // __builtin_ia32_pmovsqd512_mask
{Intrinsic::x86_avx512_mask_pmovs_qd_mem_512, 143424}, // __builtin_ia32_pmovsqd512mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qw_128, 143458}, // __builtin_ia32_pmovsqw128_mask
{Intrinsic::x86_avx512_mask_pmovs_qw_mem_128, 143551}, // __builtin_ia32_pmovsqw128mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qw_256, 143489}, // __builtin_ia32_pmovsqw256_mask
{Intrinsic::x86_avx512_mask_pmovs_qw_mem_256, 143585}, // __builtin_ia32_pmovsqw256mem_mask
{Intrinsic::x86_avx512_mask_pmovs_qw_512, 143520}, // __builtin_ia32_pmovsqw512_mask
{Intrinsic::x86_avx512_mask_pmovs_qw_mem_512, 143619}, // __builtin_ia32_pmovsqw512mem_mask
{Intrinsic::x86_avx512_mask_pmovs_wb_128, 143653}, // __builtin_ia32_pmovswb128_mask
{Intrinsic::x86_avx512_mask_pmovs_wb_mem_128, 143746}, // __builtin_ia32_pmovswb128mem_mask
{Intrinsic::x86_avx512_mask_pmovs_wb_256, 143684}, // __builtin_ia32_pmovswb256_mask
{Intrinsic::x86_avx512_mask_pmovs_wb_mem_256, 143780}, // __builtin_ia32_pmovswb256mem_mask
{Intrinsic::x86_avx512_mask_pmovs_wb_512, 143715}, // __builtin_ia32_pmovswb512_mask
{Intrinsic::x86_avx512_mask_pmovs_wb_mem_512, 143814}, // __builtin_ia32_pmovswb512mem_mask
{Intrinsic::x86_avx512_mask_pmovus_db_128, 143848}, // __builtin_ia32_pmovusdb128_mask
{Intrinsic::x86_avx512_mask_pmovus_db_mem_128, 143944}, // __builtin_ia32_pmovusdb128mem_mask
{Intrinsic::x86_avx512_mask_pmovus_db_256, 143880}, // __builtin_ia32_pmovusdb256_mask
{Intrinsic::x86_avx512_mask_pmovus_db_mem_256, 143979}, // __builtin_ia32_pmovusdb256mem_mask
{Intrinsic::x86_avx512_mask_pmovus_db_512, 143912}, // __builtin_ia32_pmovusdb512_mask
{Intrinsic::x86_avx512_mask_pmovus_db_mem_512, 144014}, // __builtin_ia32_pmovusdb512mem_mask
{Intrinsic::x86_avx512_mask_pmovus_dw_128, 144049}, // __builtin_ia32_pmovusdw128_mask
{Intrinsic::x86_avx512_mask_pmovus_dw_mem_128, 144145}, // __builtin_ia32_pmovusdw128mem_mask
{Intrinsic::x86_avx512_mask_pmovus_dw_256, 144081}, // __builtin_ia32_pmovusdw256_mask
{Intrinsic::x86_avx512_mask_pmovus_dw_mem_256, 144180}, // __builtin_ia32_pmovusdw256mem_mask
{Intrinsic::x86_avx512_mask_pmovus_dw_512, 144113}, // __builtin_ia32_pmovusdw512_mask
{Intrinsic::x86_avx512_mask_pmovus_dw_mem_512, 144215}, // __builtin_ia32_pmovusdw512mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qb_128, 144250}, // __builtin_ia32_pmovusqb128_mask
{Intrinsic::x86_avx512_mask_pmovus_qb_mem_128, 144346}, // __builtin_ia32_pmovusqb128mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qb_256, 144282}, // __builtin_ia32_pmovusqb256_mask
{Intrinsic::x86_avx512_mask_pmovus_qb_mem_256, 144381}, // __builtin_ia32_pmovusqb256mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qb_512, 144314}, // __builtin_ia32_pmovusqb512_mask
{Intrinsic::x86_avx512_mask_pmovus_qb_mem_512, 144416}, // __builtin_ia32_pmovusqb512mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qd_128, 144451}, // __builtin_ia32_pmovusqd128_mask
{Intrinsic::x86_avx512_mask_pmovus_qd_mem_128, 144547}, // __builtin_ia32_pmovusqd128mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qd_256, 144483}, // __builtin_ia32_pmovusqd256_mask
{Intrinsic::x86_avx512_mask_pmovus_qd_mem_256, 144582}, // __builtin_ia32_pmovusqd256mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qd_512, 144515}, // __builtin_ia32_pmovusqd512_mask
{Intrinsic::x86_avx512_mask_pmovus_qd_mem_512, 144617}, // __builtin_ia32_pmovusqd512mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qw_128, 144652}, // __builtin_ia32_pmovusqw128_mask
{Intrinsic::x86_avx512_mask_pmovus_qw_mem_128, 144748}, // __builtin_ia32_pmovusqw128mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qw_256, 144684}, // __builtin_ia32_pmovusqw256_mask
{Intrinsic::x86_avx512_mask_pmovus_qw_mem_256, 144783}, // __builtin_ia32_pmovusqw256mem_mask
{Intrinsic::x86_avx512_mask_pmovus_qw_512, 144716}, // __builtin_ia32_pmovusqw512_mask
{Intrinsic::x86_avx512_mask_pmovus_qw_mem_512, 144818}, // __builtin_ia32_pmovusqw512mem_mask
{Intrinsic::x86_avx512_mask_pmovus_wb_128, 144853}, // __builtin_ia32_pmovuswb128_mask
{Intrinsic::x86_avx512_mask_pmovus_wb_mem_128, 144949}, // __builtin_ia32_pmovuswb128mem_mask
{Intrinsic::x86_avx512_mask_pmovus_wb_256, 144885}, // __builtin_ia32_pmovuswb256_mask
{Intrinsic::x86_avx512_mask_pmovus_wb_mem_256, 144984}, // __builtin_ia32_pmovuswb256mem_mask
{Intrinsic::x86_avx512_mask_pmovus_wb_512, 144917}, // __builtin_ia32_pmovuswb512_mask
{Intrinsic::x86_avx512_mask_pmovus_wb_mem_512, 145019}, // __builtin_ia32_pmovuswb512mem_mask
{Intrinsic::x86_avx512_mask_pmov_wb_128, 142549}, // __builtin_ia32_pmovwb128_mask
{Intrinsic::x86_avx512_mask_pmov_wb_mem_128, 142579}, // __builtin_ia32_pmovwb128mem_mask
{Intrinsic::x86_avx512_mask_pmov_wb_mem_256, 142612}, // __builtin_ia32_pmovwb256mem_mask
{Intrinsic::x86_avx512_mask_pmov_wb_mem_512, 142645}, // __builtin_ia32_pmovwb512mem_mask
{Intrinsic::x86_ssse3_pmul_hr_sw, 158282}, // __builtin_ia32_pmulhrsw
{Intrinsic::x86_ssse3_pmul_hr_sw_128, 158306}, // __builtin_ia32_pmulhrsw128
{Intrinsic::x86_avx2_pmul_hr_sw, 136904}, // __builtin_ia32_pmulhrsw256
{Intrinsic::x86_avx512_pmul_hr_sw_512, 147226}, // __builtin_ia32_pmulhrsw512
{Intrinsic::x86_3dnow_pmulhrw, 133838}, // __builtin_ia32_pmulhrw
{Intrinsic::x86_mmx_pmulhu_w, 152926}, // __builtin_ia32_pmulhuw
{Intrinsic::x86_sse2_pmulhu_w, 156108}, // __builtin_ia32_pmulhuw128
{Intrinsic::x86_avx2_pmulhu_w, 136956}, // __builtin_ia32_pmulhuw256
{Intrinsic::x86_avx512_pmulhu_w_512, 147278}, // __builtin_ia32_pmulhuw512
{Intrinsic::x86_mmx_pmulh_w, 152904}, // __builtin_ia32_pmulhw
{Intrinsic::x86_sse2_pmulh_w, 156083}, // __builtin_ia32_pmulhw128
{Intrinsic::x86_avx2_pmulh_w, 136931}, // __builtin_ia32_pmulhw256
{Intrinsic::x86_avx512_pmulh_w_512, 147253}, // __builtin_ia32_pmulhw512
{Intrinsic::x86_mmx_pmull_w, 152949}, // __builtin_ia32_pmullw
{Intrinsic::x86_mmx_pmulu_dq, 152971}, // __builtin_ia32_pmuludq
{Intrinsic::x86_mmx_por, 152994}, // __builtin_ia32_por
{Intrinsic::x86_mmx_psad_bw, 153013}, // __builtin_ia32_psadbw
{Intrinsic::x86_sse2_psad_bw, 156134}, // __builtin_ia32_psadbw128
{Intrinsic::x86_avx2_psad_bw, 136982}, // __builtin_ia32_psadbw256
{Intrinsic::x86_avx512_psad_bw_512, 147403}, // __builtin_ia32_psadbw512
{Intrinsic::x86_ssse3_pshuf_b, 158333}, // __builtin_ia32_pshufb
{Intrinsic::x86_ssse3_pshuf_b_128, 158355}, // __builtin_ia32_pshufb128
{Intrinsic::x86_avx2_pshuf_b, 137007}, // __builtin_ia32_pshufb256
{Intrinsic::x86_avx512_pshuf_b_512, 147428}, // __builtin_ia32_pshufb512
{Intrinsic::x86_sse_pshuf_w, 154994}, // __builtin_ia32_pshufw
{Intrinsic::x86_ssse3_psign_b, 158380}, // __builtin_ia32_psignb
{Intrinsic::x86_ssse3_psign_b_128, 158402}, // __builtin_ia32_psignb128
{Intrinsic::x86_avx2_psign_b, 137032}, // __builtin_ia32_psignb256
{Intrinsic::x86_ssse3_psign_d, 158427}, // __builtin_ia32_psignd
{Intrinsic::x86_ssse3_psign_d_128, 158449}, // __builtin_ia32_psignd128
{Intrinsic::x86_avx2_psign_d, 137057}, // __builtin_ia32_psignd256
{Intrinsic::x86_ssse3_psign_w, 158474}, // __builtin_ia32_psignw
{Intrinsic::x86_ssse3_psign_w_128, 158496}, // __builtin_ia32_psignw128
{Intrinsic::x86_avx2_psign_w, 137082}, // __builtin_ia32_psignw256
{Intrinsic::x86_mmx_psll_d, 153035}, // __builtin_ia32_pslld
{Intrinsic::x86_sse2_psll_d, 156159}, // __builtin_ia32_pslld128
{Intrinsic::x86_avx2_psll_d, 137107}, // __builtin_ia32_pslld256
{Intrinsic::x86_avx512_psll_d_512, 147453}, // __builtin_ia32_pslld512
{Intrinsic::x86_mmx_pslli_d, 153098}, // __builtin_ia32_pslldi
{Intrinsic::x86_sse2_pslli_d, 156231}, // __builtin_ia32_pslldi128
{Intrinsic::x86_avx2_pslli_d, 137179}, // __builtin_ia32_pslldi256
{Intrinsic::x86_avx512_pslli_d_512, 147525}, // __builtin_ia32_pslldi512
{Intrinsic::x86_mmx_psll_q, 153056}, // __builtin_ia32_psllq
{Intrinsic::x86_sse2_psll_q, 156183}, // __builtin_ia32_psllq128
{Intrinsic::x86_avx2_psll_q, 137131}, // __builtin_ia32_psllq256
{Intrinsic::x86_avx512_psll_q_512, 147477}, // __builtin_ia32_psllq512
{Intrinsic::x86_mmx_pslli_q, 153120}, // __builtin_ia32_psllqi
{Intrinsic::x86_sse2_pslli_q, 156256}, // __builtin_ia32_psllqi128
{Intrinsic::x86_avx2_pslli_q, 137204}, // __builtin_ia32_psllqi256
{Intrinsic::x86_avx512_pslli_q_512, 147550}, // __builtin_ia32_psllqi512
{Intrinsic::x86_avx512_psllv_w_256, 147673}, // __builtin_ia32_psllv16hi
{Intrinsic::x86_avx512_psllv_d_512, 147600}, // __builtin_ia32_psllv16si
{Intrinsic::x86_avx2_psllv_q, 137302}, // __builtin_ia32_psllv2di
{Intrinsic::x86_avx512_psllv_w_512, 147698}, // __builtin_ia32_psllv32hi
{Intrinsic::x86_avx2_psllv_q_256, 137326}, // __builtin_ia32_psllv4di
{Intrinsic::x86_avx2_psllv_d, 137254}, // __builtin_ia32_psllv4si
{Intrinsic::x86_avx512_psllv_q_512, 147625}, // __builtin_ia32_psllv8di
{Intrinsic::x86_avx512_psllv_w_128, 147649}, // __builtin_ia32_psllv8hi
{Intrinsic::x86_avx2_psllv_d_256, 137278}, // __builtin_ia32_psllv8si
{Intrinsic::x86_mmx_psll_w, 153077}, // __builtin_ia32_psllw
{Intrinsic::x86_sse2_psll_w, 156207}, // __builtin_ia32_psllw128
{Intrinsic::x86_avx2_psll_w, 137155}, // __builtin_ia32_psllw256
{Intrinsic::x86_avx512_psll_w_512, 147501}, // __builtin_ia32_psllw512
{Intrinsic::x86_mmx_pslli_w, 153142}, // __builtin_ia32_psllwi
{Intrinsic::x86_sse2_pslli_w, 156281}, // __builtin_ia32_psllwi128
{Intrinsic::x86_avx2_pslli_w, 137229}, // __builtin_ia32_psllwi256
{Intrinsic::x86_avx512_pslli_w_512, 147575}, // __builtin_ia32_psllwi512
{Intrinsic::x86_mmx_psra_d, 153164}, // __builtin_ia32_psrad
{Intrinsic::x86_sse2_psra_d, 156306}, // __builtin_ia32_psrad128
{Intrinsic::x86_avx2_psra_d, 137350}, // __builtin_ia32_psrad256
{Intrinsic::x86_avx512_psra_d_512, 147723}, // __builtin_ia32_psrad512
{Intrinsic::x86_mmx_psrai_d, 153206}, // __builtin_ia32_psradi
{Intrinsic::x86_sse2_psrai_d, 156354}, // __builtin_ia32_psradi128
{Intrinsic::x86_avx2_psrai_d, 137398}, // __builtin_ia32_psradi256
{Intrinsic::x86_avx512_psrai_d_512, 147843}, // __builtin_ia32_psradi512
{Intrinsic::x86_avx512_psra_q_128, 147747}, // __builtin_ia32_psraq128
{Intrinsic::x86_avx512_psra_q_256, 147771}, // __builtin_ia32_psraq256
{Intrinsic::x86_avx512_psra_q_512, 147795}, // __builtin_ia32_psraq512
{Intrinsic::x86_avx512_psrai_q_128, 147868}, // __builtin_ia32_psraqi128
{Intrinsic::x86_avx512_psrai_q_256, 147893}, // __builtin_ia32_psraqi256
{Intrinsic::x86_avx512_psrai_q_512, 147918}, // __builtin_ia32_psraqi512
{Intrinsic::x86_avx512_psrav_w_256, 148091}, // __builtin_ia32_psrav16hi
{Intrinsic::x86_avx512_psrav_d_512, 147968}, // __builtin_ia32_psrav16si
{Intrinsic::x86_avx512_psrav_w_512, 148116}, // __builtin_ia32_psrav32hi
{Intrinsic::x86_avx2_psrav_d, 137448}, // __builtin_ia32_psrav4si
{Intrinsic::x86_avx512_psrav_q_512, 148043}, // __builtin_ia32_psrav8di
{Intrinsic::x86_avx512_psrav_w_128, 148067}, // __builtin_ia32_psrav8hi
{Intrinsic::x86_avx2_psrav_d_256, 137472}, // __builtin_ia32_psrav8si
{Intrinsic::x86_avx512_psrav_q_128, 147993}, // __builtin_ia32_psravq128
{Intrinsic::x86_avx512_psrav_q_256, 148018}, // __builtin_ia32_psravq256
{Intrinsic::x86_mmx_psra_w, 153185}, // __builtin_ia32_psraw
{Intrinsic::x86_sse2_psra_w, 156330}, // __builtin_ia32_psraw128
{Intrinsic::x86_avx2_psra_w, 137374}, // __builtin_ia32_psraw256
{Intrinsic::x86_avx512_psra_w_512, 147819}, // __builtin_ia32_psraw512
{Intrinsic::x86_mmx_psrai_w, 153228}, // __builtin_ia32_psrawi
{Intrinsic::x86_sse2_psrai_w, 156379}, // __builtin_ia32_psrawi128
{Intrinsic::x86_avx2_psrai_w, 137423}, // __builtin_ia32_psrawi256
{Intrinsic::x86_avx512_psrai_w_512, 147943}, // __builtin_ia32_psrawi512
{Intrinsic::x86_mmx_psrl_d, 153250}, // __builtin_ia32_psrld
{Intrinsic::x86_sse2_psrl_d, 156404}, // __builtin_ia32_psrld128
{Intrinsic::x86_avx2_psrl_d, 137496}, // __builtin_ia32_psrld256
{Intrinsic::x86_avx512_psrl_d_512, 148141}, // __builtin_ia32_psrld512
{Intrinsic::x86_mmx_psrli_d, 153313}, // __builtin_ia32_psrldi
{Intrinsic::x86_sse2_psrli_d, 156476}, // __builtin_ia32_psrldi128
{Intrinsic::x86_avx2_psrli_d, 137568}, // __builtin_ia32_psrldi256
{Intrinsic::x86_avx512_psrli_d_512, 148213}, // __builtin_ia32_psrldi512
{Intrinsic::x86_mmx_psrl_q, 153271}, // __builtin_ia32_psrlq
{Intrinsic::x86_sse2_psrl_q, 156428}, // __builtin_ia32_psrlq128
{Intrinsic::x86_avx2_psrl_q, 137520}, // __builtin_ia32_psrlq256
{Intrinsic::x86_avx512_psrl_q_512, 148165}, // __builtin_ia32_psrlq512
{Intrinsic::x86_mmx_psrli_q, 153335}, // __builtin_ia32_psrlqi
{Intrinsic::x86_sse2_psrli_q, 156501}, // __builtin_ia32_psrlqi128
{Intrinsic::x86_avx2_psrli_q, 137593}, // __builtin_ia32_psrlqi256
{Intrinsic::x86_avx512_psrli_q_512, 148238}, // __builtin_ia32_psrlqi512
{Intrinsic::x86_avx512_psrlv_w_256, 148361}, // __builtin_ia32_psrlv16hi
{Intrinsic::x86_avx512_psrlv_d_512, 148288}, // __builtin_ia32_psrlv16si
{Intrinsic::x86_avx2_psrlv_q, 137691}, // __builtin_ia32_psrlv2di
{Intrinsic::x86_avx512_psrlv_w_512, 148386}, // __builtin_ia32_psrlv32hi
{Intrinsic::x86_avx2_psrlv_q_256, 137715}, // __builtin_ia32_psrlv4di
{Intrinsic::x86_avx2_psrlv_d, 137643}, // __builtin_ia32_psrlv4si
{Intrinsic::x86_avx512_psrlv_q_512, 148313}, // __builtin_ia32_psrlv8di
{Intrinsic::x86_avx512_psrlv_w_128, 148337}, // __builtin_ia32_psrlv8hi
{Intrinsic::x86_avx2_psrlv_d_256, 137667}, // __builtin_ia32_psrlv8si
{Intrinsic::x86_mmx_psrl_w, 153292}, // __builtin_ia32_psrlw
{Intrinsic::x86_sse2_psrl_w, 156452}, // __builtin_ia32_psrlw128
{Intrinsic::x86_avx2_psrl_w, 137544}, // __builtin_ia32_psrlw256
{Intrinsic::x86_avx512_psrl_w_512, 148189}, // __builtin_ia32_psrlw512
{Intrinsic::x86_mmx_psrli_w, 153357}, // __builtin_ia32_psrlwi
{Intrinsic::x86_sse2_psrli_w, 156526}, // __builtin_ia32_psrlwi128
{Intrinsic::x86_avx2_psrli_w, 137618}, // __builtin_ia32_psrlwi256
{Intrinsic::x86_avx512_psrli_w_512, 148263}, // __builtin_ia32_psrlwi512
{Intrinsic::x86_mmx_psub_b, 153379}, // __builtin_ia32_psubb
{Intrinsic::x86_mmx_psub_d, 153400}, // __builtin_ia32_psubd
{Intrinsic::x86_mmx_psub_q, 153421}, // __builtin_ia32_psubq
{Intrinsic::x86_mmx_psubs_b, 153463}, // __builtin_ia32_psubsb
{Intrinsic::x86_mmx_psubs_w, 153485}, // __builtin_ia32_psubsw
{Intrinsic::x86_mmx_psubus_b, 153507}, // __builtin_ia32_psubusb
{Intrinsic::x86_mmx_psubus_w, 153530}, // __builtin_ia32_psubusw
{Intrinsic::x86_mmx_psub_w, 153442}, // __builtin_ia32_psubw
{Intrinsic::x86_avx512_pternlog_d_128, 148411}, // __builtin_ia32_pternlogd128
{Intrinsic::x86_avx512_pternlog_d_256, 148439}, // __builtin_ia32_pternlogd256
{Intrinsic::x86_avx512_pternlog_d_512, 148467}, // __builtin_ia32_pternlogd512
{Intrinsic::x86_avx512_pternlog_q_128, 148495}, // __builtin_ia32_pternlogq128
{Intrinsic::x86_avx512_pternlog_q_256, 148523}, // __builtin_ia32_pternlogq256
{Intrinsic::x86_avx512_pternlog_q_512, 148551}, // __builtin_ia32_pternlogq512
{Intrinsic::x86_sse41_ptestc, 157127}, // __builtin_ia32_ptestc128
{Intrinsic::x86_avx_ptestc_256, 135097}, // __builtin_ia32_ptestc256
{Intrinsic::x86_sse41_ptestnzc, 157152}, // __builtin_ia32_ptestnzc128
{Intrinsic::x86_avx_ptestnzc_256, 135122}, // __builtin_ia32_ptestnzc256
{Intrinsic::x86_sse41_ptestz, 157179}, // __builtin_ia32_ptestz128
{Intrinsic::x86_avx_ptestz_256, 135149}, // __builtin_ia32_ptestz256
{Intrinsic::x86_ptwrite32, 153878}, // __builtin_ia32_ptwrite32
{Intrinsic::x86_ptwrite64, 153903}, // __builtin_ia32_ptwrite64
{Intrinsic::x86_mmx_punpckhbw, 153553}, // __builtin_ia32_punpckhbw
{Intrinsic::x86_mmx_punpckhdq, 153578}, // __builtin_ia32_punpckhdq
{Intrinsic::x86_mmx_punpckhwd, 153603}, // __builtin_ia32_punpckhwd
{Intrinsic::x86_mmx_punpcklbw, 153628}, // __builtin_ia32_punpcklbw
{Intrinsic::x86_mmx_punpckldq, 153653}, // __builtin_ia32_punpckldq
{Intrinsic::x86_mmx_punpcklwd, 153678}, // __builtin_ia32_punpcklwd
{Intrinsic::x86_mmx_pxor, 153703}, // __builtin_ia32_pxor
{Intrinsic::x86_avx512_mask_range_pd_128, 145054}, // __builtin_ia32_rangepd128_mask
{Intrinsic::x86_avx512_mask_range_pd_256, 145085}, // __builtin_ia32_rangepd256_mask
{Intrinsic::x86_avx512_mask_range_pd_512, 145116}, // __builtin_ia32_rangepd512_mask
{Intrinsic::x86_avx512_mask_range_ps_128, 145147}, // __builtin_ia32_rangeps128_mask
{Intrinsic::x86_avx512_mask_range_ps_256, 145178}, // __builtin_ia32_rangeps256_mask
{Intrinsic::x86_avx512_mask_range_ps_512, 145209}, // __builtin_ia32_rangeps512_mask
{Intrinsic::x86_avx512_mask_range_sd, 145240}, // __builtin_ia32_rangesd128_round_mask
{Intrinsic::x86_avx512_mask_range_ss, 145277}, // __builtin_ia32_rangess128_round_mask
{Intrinsic::x86_avx512_rcp14_pd_128, 148579}, // __builtin_ia32_rcp14pd128_mask
{Intrinsic::x86_avx512_rcp14_pd_256, 148610}, // __builtin_ia32_rcp14pd256_mask
{Intrinsic::x86_avx512_rcp14_pd_512, 148641}, // __builtin_ia32_rcp14pd512_mask
{Intrinsic::x86_avx512_rcp14_ps_128, 148672}, // __builtin_ia32_rcp14ps128_mask
{Intrinsic::x86_avx512_rcp14_ps_256, 148703}, // __builtin_ia32_rcp14ps256_mask
{Intrinsic::x86_avx512_rcp14_ps_512, 148734}, // __builtin_ia32_rcp14ps512_mask
{Intrinsic::x86_avx512_rcp14_sd, 148765}, // __builtin_ia32_rcp14sd_mask
{Intrinsic::x86_avx512_rcp14_ss, 148793}, // __builtin_ia32_rcp14ss_mask
{Intrinsic::x86_avx512_rcp28_pd, 148821}, // __builtin_ia32_rcp28pd_mask
{Intrinsic::x86_avx512_rcp28_ps, 148849}, // __builtin_ia32_rcp28ps_mask
{Intrinsic::x86_avx512_rcp28_sd, 148877}, // __builtin_ia32_rcp28sd_round_mask
{Intrinsic::x86_avx512_rcp28_ss, 148911}, // __builtin_ia32_rcp28ss_round_mask
{Intrinsic::x86_sse_rcp_ps, 155016}, // __builtin_ia32_rcpps
{Intrinsic::x86_avx_rcp_ps_256, 135174}, // __builtin_ia32_rcpps256
{Intrinsic::x86_sse_rcp_ss, 155037}, // __builtin_ia32_rcpss
{Intrinsic::x86_rdfsbase_32, 153928}, // __builtin_ia32_rdfsbase32
{Intrinsic::x86_rdfsbase_64, 153954}, // __builtin_ia32_rdfsbase64
{Intrinsic::x86_rdgsbase_32, 153980}, // __builtin_ia32_rdgsbase32
{Intrinsic::x86_rdgsbase_64, 154006}, // __builtin_ia32_rdgsbase64
{Intrinsic::x86_rdpid, 154032}, // __builtin_ia32_rdpid
{Intrinsic::x86_rdpkru, 154053}, // __builtin_ia32_rdpkru
{Intrinsic::x86_rdpmc, 154075}, // __builtin_ia32_rdpmc
{Intrinsic::x86_rdsspd, 154096}, // __builtin_ia32_rdsspd
{Intrinsic::x86_rdsspq, 154118}, // __builtin_ia32_rdsspq
{Intrinsic::x86_rdtsc, 154140}, // __builtin_ia32_rdtsc
{Intrinsic::x86_flags_read_u32, 151563}, // __builtin_ia32_readeflags_u32
{Intrinsic::x86_flags_read_u64, 151593}, // __builtin_ia32_readeflags_u64
{Intrinsic::x86_avx512_mask_reduce_pd_128, 145314}, // __builtin_ia32_reducepd128_mask
{Intrinsic::x86_avx512_mask_reduce_pd_256, 145346}, // __builtin_ia32_reducepd256_mask
{Intrinsic::x86_avx512_mask_reduce_pd_512, 145378}, // __builtin_ia32_reducepd512_mask
{Intrinsic::x86_avx512_mask_reduce_ps_128, 145410}, // __builtin_ia32_reduceps128_mask
{Intrinsic::x86_avx512_mask_reduce_ps_256, 145442}, // __builtin_ia32_reduceps256_mask
{Intrinsic::x86_avx512_mask_reduce_ps_512, 145474}, // __builtin_ia32_reduceps512_mask
{Intrinsic::x86_avx512_mask_reduce_sd, 145506}, // __builtin_ia32_reducesd_mask
{Intrinsic::x86_avx512_mask_reduce_ss, 145535}, // __builtin_ia32_reducess_mask
{Intrinsic::x86_avx512_mask_rndscale_pd_128, 145564}, // __builtin_ia32_rndscalepd_128_mask
{Intrinsic::x86_avx512_mask_rndscale_pd_256, 145599}, // __builtin_ia32_rndscalepd_256_mask
{Intrinsic::x86_avx512_mask_rndscale_pd_512, 145634}, // __builtin_ia32_rndscalepd_mask
{Intrinsic::x86_avx512_mask_rndscale_ps_128, 145665}, // __builtin_ia32_rndscaleps_128_mask
{Intrinsic::x86_avx512_mask_rndscale_ps_256, 145700}, // __builtin_ia32_rndscaleps_256_mask
{Intrinsic::x86_avx512_mask_rndscale_ps_512, 145735}, // __builtin_ia32_rndscaleps_mask
{Intrinsic::x86_avx512_mask_rndscale_sd, 145766}, // __builtin_ia32_rndscalesd_round_mask
{Intrinsic::x86_avx512_mask_rndscale_ss, 145803}, // __builtin_ia32_rndscaless_round_mask
{Intrinsic::x86_sse41_round_pd, 157204}, // __builtin_ia32_roundpd
{Intrinsic::x86_avx_round_pd_256, 135198}, // __builtin_ia32_roundpd256
{Intrinsic::x86_sse41_round_ps, 157227}, // __builtin_ia32_roundps
{Intrinsic::x86_avx_round_ps_256, 135224}, // __builtin_ia32_roundps256
{Intrinsic::x86_sse41_round_sd, 157250}, // __builtin_ia32_roundsd
{Intrinsic::x86_sse41_round_ss, 157273}, // __builtin_ia32_roundss
{Intrinsic::x86_avx512_rsqrt14_pd_128, 148945}, // __builtin_ia32_rsqrt14pd128_mask
{Intrinsic::x86_avx512_rsqrt14_pd_256, 148978}, // __builtin_ia32_rsqrt14pd256_mask
{Intrinsic::x86_avx512_rsqrt14_pd_512, 149011}, // __builtin_ia32_rsqrt14pd512_mask
{Intrinsic::x86_avx512_rsqrt14_ps_128, 149044}, // __builtin_ia32_rsqrt14ps128_mask
{Intrinsic::x86_avx512_rsqrt14_ps_256, 149077}, // __builtin_ia32_rsqrt14ps256_mask
{Intrinsic::x86_avx512_rsqrt14_ps_512, 149110}, // __builtin_ia32_rsqrt14ps512_mask
{Intrinsic::x86_avx512_rsqrt14_sd, 149143}, // __builtin_ia32_rsqrt14sd_mask
{Intrinsic::x86_avx512_rsqrt14_ss, 149173}, // __builtin_ia32_rsqrt14ss_mask
{Intrinsic::x86_avx512_rsqrt28_pd, 149203}, // __builtin_ia32_rsqrt28pd_mask
{Intrinsic::x86_avx512_rsqrt28_ps, 149233}, // __builtin_ia32_rsqrt28ps_mask
{Intrinsic::x86_avx512_rsqrt28_sd, 149263}, // __builtin_ia32_rsqrt28sd_round_mask
{Intrinsic::x86_avx512_rsqrt28_ss, 149299}, // __builtin_ia32_rsqrt28ss_round_mask
{Intrinsic::x86_sse_rsqrt_ps, 155058}, // __builtin_ia32_rsqrtps
{Intrinsic::x86_avx_rsqrt_ps_256, 135250}, // __builtin_ia32_rsqrtps256
{Intrinsic::x86_sse_rsqrt_ss, 155081}, // __builtin_ia32_rsqrtss
{Intrinsic::x86_rstorssp, 154161}, // __builtin_ia32_rstorssp
{Intrinsic::x86_saveprevssp, 154185}, // __builtin_ia32_saveprevssp
{Intrinsic::x86_avx512_mask_scalef_pd_128, 145840}, // __builtin_ia32_scalefpd128_mask
{Intrinsic::x86_avx512_mask_scalef_pd_256, 145872}, // __builtin_ia32_scalefpd256_mask
{Intrinsic::x86_avx512_mask_scalef_pd_512, 145904}, // __builtin_ia32_scalefpd512_mask
{Intrinsic::x86_avx512_mask_scalef_ps_128, 145936}, // __builtin_ia32_scalefps128_mask
{Intrinsic::x86_avx512_mask_scalef_ps_256, 145968}, // __builtin_ia32_scalefps256_mask
{Intrinsic::x86_avx512_mask_scalef_ps_512, 146000}, // __builtin_ia32_scalefps512_mask
{Intrinsic::x86_avx512_mask_scalef_sd, 146032}, // __builtin_ia32_scalefsd_round_mask
{Intrinsic::x86_avx512_mask_scalef_ss, 146067}, // __builtin_ia32_scalefss_round_mask
{Intrinsic::x86_avx512_scatterpf_dpd_512, 149335}, // __builtin_ia32_scatterpfdpd
{Intrinsic::x86_avx512_scatterpf_dps_512, 149363}, // __builtin_ia32_scatterpfdps
{Intrinsic::x86_avx512_scatterpf_qpd_512, 149391}, // __builtin_ia32_scatterpfqpd
{Intrinsic::x86_avx512_scatterpf_qps_512, 149419}, // __builtin_ia32_scatterpfqps
{Intrinsic::x86_senduipi, 154212}, // __builtin_ia32_senduipi
{Intrinsic::x86_serialize, 154236}, // __builtin_ia32_serialize
{Intrinsic::x86_setssbsy, 154261}, // __builtin_ia32_setssbsy
{Intrinsic::x86_sse_sfence, 155104}, // __builtin_ia32_sfence
{Intrinsic::x86_sha1msg1, 154285}, // __builtin_ia32_sha1msg1
{Intrinsic::x86_sha1msg2, 154309}, // __builtin_ia32_sha1msg2
{Intrinsic::x86_sha1nexte, 154333}, // __builtin_ia32_sha1nexte
{Intrinsic::x86_sha1rnds4, 154358}, // __builtin_ia32_sha1rnds4
{Intrinsic::x86_sha256msg1, 154383}, // __builtin_ia32_sha256msg1
{Intrinsic::x86_sha256msg2, 154409}, // __builtin_ia32_sha256msg2
{Intrinsic::x86_sha256rnds2, 154435}, // __builtin_ia32_sha256rnds2
{Intrinsic::x86_slwpcb, 154462}, // __builtin_ia32_slwpcb
{Intrinsic::x86_stui, 158553}, // __builtin_ia32_stui
{Intrinsic::x86_avx512_sub_pd_512, 149447}, // __builtin_ia32_subpd512
{Intrinsic::x86_avx512_sub_ps_512, 149471}, // __builtin_ia32_subps512
{Intrinsic::x86_avx512_mask_sub_sd_round, 146102}, // __builtin_ia32_subsd_round_mask
{Intrinsic::x86_avx512_mask_sub_ss_round, 146134}, // __builtin_ia32_subss_round_mask
{Intrinsic::x86_tdpbf16ps, 158625}, // __builtin_ia32_tdpbf16ps
{Intrinsic::x86_tdpbssd, 158650}, // __builtin_ia32_tdpbssd
{Intrinsic::x86_tdpbssd_internal, 158673}, // __builtin_ia32_tdpbssd_internal
{Intrinsic::x86_tdpbsud, 158705}, // __builtin_ia32_tdpbsud
{Intrinsic::x86_tdpbusd, 158728}, // __builtin_ia32_tdpbusd
{Intrinsic::x86_tdpbuud, 158751}, // __builtin_ia32_tdpbuud
{Intrinsic::x86_testui, 158774}, // __builtin_ia32_testui
{Intrinsic::x86_ldtilecfg, 151962}, // __builtin_ia32_tile_loadconfig
{Intrinsic::x86_sttilecfg, 158521}, // __builtin_ia32_tile_storeconfig
{Intrinsic::x86_tileloadd64, 158796}, // __builtin_ia32_tileloadd64
{Intrinsic::x86_tileloadd64_internal, 158823}, // __builtin_ia32_tileloadd64_internal
{Intrinsic::x86_tileloaddt164, 158859}, // __builtin_ia32_tileloaddt164
{Intrinsic::x86_tilerelease, 158888}, // __builtin_ia32_tilerelease
{Intrinsic::x86_tilestored64, 158915}, // __builtin_ia32_tilestored64
{Intrinsic::x86_tilestored64_internal, 158943}, // __builtin_ia32_tilestored64_internal
{Intrinsic::x86_tilezero, 158980}, // __builtin_ia32_tilezero
{Intrinsic::x86_tilezero_internal, 159004}, // __builtin_ia32_tilezero_internal
{Intrinsic::x86_tpause, 159037}, // __builtin_ia32_tpause
{Intrinsic::x86_sse_ucomieq_ss, 155126}, // __builtin_ia32_ucomieq
{Intrinsic::x86_sse_ucomige_ss, 155149}, // __builtin_ia32_ucomige
{Intrinsic::x86_sse_ucomigt_ss, 155172}, // __builtin_ia32_ucomigt
{Intrinsic::x86_sse_ucomile_ss, 155195}, // __builtin_ia32_ucomile
{Intrinsic::x86_sse_ucomilt_ss, 155218}, // __builtin_ia32_ucomilt
{Intrinsic::x86_sse_ucomineq_ss, 155241}, // __builtin_ia32_ucomineq
{Intrinsic::x86_sse2_ucomieq_sd, 156551}, // __builtin_ia32_ucomisdeq
{Intrinsic::x86_sse2_ucomige_sd, 156576}, // __builtin_ia32_ucomisdge
{Intrinsic::x86_sse2_ucomigt_sd, 156601}, // __builtin_ia32_ucomisdgt
{Intrinsic::x86_sse2_ucomile_sd, 156626}, // __builtin_ia32_ucomisdle
{Intrinsic::x86_sse2_ucomilt_sd, 156651}, // __builtin_ia32_ucomisdlt
{Intrinsic::x86_sse2_ucomineq_sd, 156676}, // __builtin_ia32_ucomisdneq
{Intrinsic::x86_umonitor, 159059}, // __builtin_ia32_umonitor
{Intrinsic::x86_umwait, 159083}, // __builtin_ia32_umwait
{Intrinsic::x86_avx512_vcomi_sd, 149495}, // __builtin_ia32_vcomisd
{Intrinsic::x86_avx512_vcomi_ss, 149518}, // __builtin_ia32_vcomiss
{Intrinsic::x86_vcvtps2ph_128, 159105}, // __builtin_ia32_vcvtps2ph
{Intrinsic::x86_vcvtps2ph_256, 159130}, // __builtin_ia32_vcvtps2ph256
{Intrinsic::x86_avx512_mask_vcvtps2ph_256, 146196}, // __builtin_ia32_vcvtps2ph256_mask
{Intrinsic::x86_avx512_mask_vcvtps2ph_512, 146229}, // __builtin_ia32_vcvtps2ph512_mask
{Intrinsic::x86_avx512_mask_vcvtps2ph_128, 146166}, // __builtin_ia32_vcvtps2ph_mask
{Intrinsic::x86_avx512_vcvtsd2si32, 149541}, // __builtin_ia32_vcvtsd2si32
{Intrinsic::x86_avx512_vcvtsd2si64, 149568}, // __builtin_ia32_vcvtsd2si64
{Intrinsic::x86_avx512_vcvtsd2usi32, 149595}, // __builtin_ia32_vcvtsd2usi32
{Intrinsic::x86_avx512_vcvtsd2usi64, 149623}, // __builtin_ia32_vcvtsd2usi64
{Intrinsic::x86_avx512_vcvtss2si32, 149651}, // __builtin_ia32_vcvtss2si32
{Intrinsic::x86_avx512_vcvtss2si64, 149678}, // __builtin_ia32_vcvtss2si64
{Intrinsic::x86_avx512_vcvtss2usi32, 149705}, // __builtin_ia32_vcvtss2usi32
{Intrinsic::x86_avx512_vcvtss2usi64, 149733}, // __builtin_ia32_vcvtss2usi64
{Intrinsic::x86_avx512_cvttsd2si, 138237}, // __builtin_ia32_vcvttsd2si32
{Intrinsic::x86_avx512_cvttsd2si64, 138265}, // __builtin_ia32_vcvttsd2si64
{Intrinsic::x86_avx512_cvttsd2usi, 138293}, // __builtin_ia32_vcvttsd2usi32
{Intrinsic::x86_avx512_cvttsd2usi64, 138322}, // __builtin_ia32_vcvttsd2usi64
{Intrinsic::x86_avx512_cvttss2si, 138351}, // __builtin_ia32_vcvttss2si32
{Intrinsic::x86_avx512_cvttss2si64, 138379}, // __builtin_ia32_vcvttss2si64
{Intrinsic::x86_avx512_cvttss2usi, 138407}, // __builtin_ia32_vcvttss2usi32
{Intrinsic::x86_avx512_cvttss2usi64, 138436}, // __builtin_ia32_vcvttss2usi64
{Intrinsic::x86_mmx_pextr_w, 152713}, // __builtin_ia32_vec_ext_v4hi
{Intrinsic::x86_mmx_pinsr_w, 152741}, // __builtin_ia32_vec_set_v4hi
{Intrinsic::x86_fma_vfmaddsub_pd, 151685}, // __builtin_ia32_vfmaddsubpd
{Intrinsic::x86_fma_vfmaddsub_pd_256, 151712}, // __builtin_ia32_vfmaddsubpd256
{Intrinsic::x86_fma_vfmaddsub_ps, 151742}, // __builtin_ia32_vfmaddsubps
{Intrinsic::x86_fma_vfmaddsub_ps_256, 151769}, // __builtin_ia32_vfmaddsubps256
{Intrinsic::x86_xop_vfrcz_pd, 159801}, // __builtin_ia32_vfrczpd
{Intrinsic::x86_xop_vfrcz_pd_256, 159824}, // __builtin_ia32_vfrczpd256
{Intrinsic::x86_xop_vfrcz_ps, 159850}, // __builtin_ia32_vfrczps
{Intrinsic::x86_xop_vfrcz_ps_256, 159873}, // __builtin_ia32_vfrczps256
{Intrinsic::x86_xop_vfrcz_sd, 159899}, // __builtin_ia32_vfrczsd
{Intrinsic::x86_xop_vfrcz_ss, 159922}, // __builtin_ia32_vfrczss
{Intrinsic::x86_vgf2p8affineinvqb_128, 159158}, // __builtin_ia32_vgf2p8affineinvqb_v16qi
{Intrinsic::x86_vgf2p8affineinvqb_256, 159197}, // __builtin_ia32_vgf2p8affineinvqb_v32qi
{Intrinsic::x86_vgf2p8affineinvqb_512, 159236}, // __builtin_ia32_vgf2p8affineinvqb_v64qi
{Intrinsic::x86_vgf2p8affineqb_128, 159275}, // __builtin_ia32_vgf2p8affineqb_v16qi
{Intrinsic::x86_vgf2p8affineqb_256, 159311}, // __builtin_ia32_vgf2p8affineqb_v32qi
{Intrinsic::x86_vgf2p8affineqb_512, 159347}, // __builtin_ia32_vgf2p8affineqb_v64qi
{Intrinsic::x86_vgf2p8mulb_128, 159383}, // __builtin_ia32_vgf2p8mulb_v16qi
{Intrinsic::x86_vgf2p8mulb_256, 159415}, // __builtin_ia32_vgf2p8mulb_v32qi
{Intrinsic::x86_vgf2p8mulb_512, 159447}, // __builtin_ia32_vgf2p8mulb_v64qi
{Intrinsic::x86_avx512_conflict_q_128, 138063}, // __builtin_ia32_vpconflictdi_128
{Intrinsic::x86_avx512_conflict_q_256, 138095}, // __builtin_ia32_vpconflictdi_256
{Intrinsic::x86_avx512_conflict_q_512, 138127}, // __builtin_ia32_vpconflictdi_512
{Intrinsic::x86_avx512_conflict_d_128, 137967}, // __builtin_ia32_vpconflictsi_128
{Intrinsic::x86_avx512_conflict_d_256, 137999}, // __builtin_ia32_vpconflictsi_256
{Intrinsic::x86_avx512_conflict_d_512, 138031}, // __builtin_ia32_vpconflictsi_512
{Intrinsic::x86_avx512_vpdpbusd_128, 149761}, // __builtin_ia32_vpdpbusd128
{Intrinsic::x86_avx512_vpdpbusd_256, 149788}, // __builtin_ia32_vpdpbusd256
{Intrinsic::x86_avx512_vpdpbusd_512, 149815}, // __builtin_ia32_vpdpbusd512
{Intrinsic::x86_avx512_vpdpbusds_128, 149842}, // __builtin_ia32_vpdpbusds128
{Intrinsic::x86_avx512_vpdpbusds_256, 149870}, // __builtin_ia32_vpdpbusds256
{Intrinsic::x86_avx512_vpdpbusds_512, 149898}, // __builtin_ia32_vpdpbusds512
{Intrinsic::x86_avx512_vpdpwssd_128, 149926}, // __builtin_ia32_vpdpwssd128
{Intrinsic::x86_avx512_vpdpwssd_256, 149953}, // __builtin_ia32_vpdpwssd256
{Intrinsic::x86_avx512_vpdpwssd_512, 149980}, // __builtin_ia32_vpdpwssd512
{Intrinsic::x86_avx512_vpdpwssds_128, 150007}, // __builtin_ia32_vpdpwssds128
{Intrinsic::x86_avx512_vpdpwssds_256, 150035}, // __builtin_ia32_vpdpwssds256
{Intrinsic::x86_avx512_vpdpwssds_512, 150063}, // __builtin_ia32_vpdpwssds512
{Intrinsic::x86_avx512_vpermi2var_d_128, 150091}, // __builtin_ia32_vpermi2vard128
{Intrinsic::x86_avx512_vpermi2var_d_256, 150121}, // __builtin_ia32_vpermi2vard256
{Intrinsic::x86_avx512_vpermi2var_d_512, 150151}, // __builtin_ia32_vpermi2vard512
{Intrinsic::x86_avx512_vpermi2var_hi_128, 150181}, // __builtin_ia32_vpermi2varhi128
{Intrinsic::x86_avx512_vpermi2var_hi_256, 150212}, // __builtin_ia32_vpermi2varhi256
{Intrinsic::x86_avx512_vpermi2var_hi_512, 150243}, // __builtin_ia32_vpermi2varhi512
{Intrinsic::x86_avx512_vpermi2var_pd_128, 150274}, // __builtin_ia32_vpermi2varpd128
{Intrinsic::x86_avx512_vpermi2var_pd_256, 150305}, // __builtin_ia32_vpermi2varpd256
{Intrinsic::x86_avx512_vpermi2var_pd_512, 150336}, // __builtin_ia32_vpermi2varpd512
{Intrinsic::x86_avx512_vpermi2var_ps_128, 150367}, // __builtin_ia32_vpermi2varps128
{Intrinsic::x86_avx512_vpermi2var_ps_256, 150398}, // __builtin_ia32_vpermi2varps256
{Intrinsic::x86_avx512_vpermi2var_ps_512, 150429}, // __builtin_ia32_vpermi2varps512
{Intrinsic::x86_avx512_vpermi2var_q_128, 150460}, // __builtin_ia32_vpermi2varq128
{Intrinsic::x86_avx512_vpermi2var_q_256, 150490}, // __builtin_ia32_vpermi2varq256
{Intrinsic::x86_avx512_vpermi2var_q_512, 150520}, // __builtin_ia32_vpermi2varq512
{Intrinsic::x86_avx512_vpermi2var_qi_128, 150550}, // __builtin_ia32_vpermi2varqi128
{Intrinsic::x86_avx512_vpermi2var_qi_256, 150581}, // __builtin_ia32_vpermi2varqi256
{Intrinsic::x86_avx512_vpermi2var_qi_512, 150612}, // __builtin_ia32_vpermi2varqi512
{Intrinsic::x86_xop_vpermil2pd, 159945}, // __builtin_ia32_vpermil2pd
{Intrinsic::x86_xop_vpermil2pd_256, 159971}, // __builtin_ia32_vpermil2pd256
{Intrinsic::x86_xop_vpermil2ps, 160000}, // __builtin_ia32_vpermil2ps
{Intrinsic::x86_xop_vpermil2ps_256, 160026}, // __builtin_ia32_vpermil2ps256
{Intrinsic::x86_avx_vpermilvar_pd, 135276}, // __builtin_ia32_vpermilvarpd
{Intrinsic::x86_avx_vpermilvar_pd_256, 135304}, // __builtin_ia32_vpermilvarpd256
{Intrinsic::x86_avx512_vpermilvar_pd_512, 150643}, // __builtin_ia32_vpermilvarpd512
{Intrinsic::x86_avx_vpermilvar_ps, 135335}, // __builtin_ia32_vpermilvarps
{Intrinsic::x86_avx_vpermilvar_ps_256, 135363}, // __builtin_ia32_vpermilvarps256
{Intrinsic::x86_avx512_vpermilvar_ps_512, 150674}, // __builtin_ia32_vpermilvarps512
{Intrinsic::x86_xop_vphaddbd, 160055}, // __builtin_ia32_vphaddbd
{Intrinsic::x86_xop_vphaddbq, 160079}, // __builtin_ia32_vphaddbq
{Intrinsic::x86_xop_vphaddbw, 160103}, // __builtin_ia32_vphaddbw
{Intrinsic::x86_xop_vphadddq, 160127}, // __builtin_ia32_vphadddq
{Intrinsic::x86_xop_vphaddubd, 160151}, // __builtin_ia32_vphaddubd
{Intrinsic::x86_xop_vphaddubq, 160176}, // __builtin_ia32_vphaddubq
{Intrinsic::x86_xop_vphaddubw, 160201}, // __builtin_ia32_vphaddubw
{Intrinsic::x86_xop_vphaddudq, 160226}, // __builtin_ia32_vphaddudq
{Intrinsic::x86_xop_vphadduwd, 160251}, // __builtin_ia32_vphadduwd
{Intrinsic::x86_xop_vphadduwq, 160276}, // __builtin_ia32_vphadduwq
{Intrinsic::x86_xop_vphaddwd, 160301}, // __builtin_ia32_vphaddwd
{Intrinsic::x86_xop_vphaddwq, 160325}, // __builtin_ia32_vphaddwq
{Intrinsic::x86_xop_vphsubbw, 160349}, // __builtin_ia32_vphsubbw
{Intrinsic::x86_xop_vphsubdq, 160373}, // __builtin_ia32_vphsubdq
{Intrinsic::x86_xop_vphsubwd, 160397}, // __builtin_ia32_vphsubwd
{Intrinsic::x86_xop_vpmacsdd, 160421}, // __builtin_ia32_vpmacsdd
{Intrinsic::x86_xop_vpmacsdqh, 160445}, // __builtin_ia32_vpmacsdqh
{Intrinsic::x86_xop_vpmacsdql, 160470}, // __builtin_ia32_vpmacsdql
{Intrinsic::x86_xop_vpmacssdd, 160495}, // __builtin_ia32_vpmacssdd
{Intrinsic::x86_xop_vpmacssdqh, 160520}, // __builtin_ia32_vpmacssdqh
{Intrinsic::x86_xop_vpmacssdql, 160546}, // __builtin_ia32_vpmacssdql
{Intrinsic::x86_xop_vpmacsswd, 160572}, // __builtin_ia32_vpmacsswd
{Intrinsic::x86_xop_vpmacssww, 160597}, // __builtin_ia32_vpmacssww
{Intrinsic::x86_xop_vpmacswd, 160622}, // __builtin_ia32_vpmacswd
{Intrinsic::x86_xop_vpmacsww, 160646}, // __builtin_ia32_vpmacsww
{Intrinsic::x86_xop_vpmadcsswd, 160670}, // __builtin_ia32_vpmadcsswd
{Intrinsic::x86_xop_vpmadcswd, 160696}, // __builtin_ia32_vpmadcswd
{Intrinsic::x86_avx512_vpmadd52h_uq_128, 150705}, // __builtin_ia32_vpmadd52huq128
{Intrinsic::x86_avx512_vpmadd52h_uq_256, 150735}, // __builtin_ia32_vpmadd52huq256
{Intrinsic::x86_avx512_vpmadd52h_uq_512, 150765}, // __builtin_ia32_vpmadd52huq512
{Intrinsic::x86_avx512_vpmadd52l_uq_128, 150795}, // __builtin_ia32_vpmadd52luq128
{Intrinsic::x86_avx512_vpmadd52l_uq_256, 150825}, // __builtin_ia32_vpmadd52luq256
{Intrinsic::x86_avx512_vpmadd52l_uq_512, 150855}, // __builtin_ia32_vpmadd52luq512
{Intrinsic::x86_avx512_pmultishift_qb_128, 147304}, // __builtin_ia32_vpmultishiftqb128
{Intrinsic::x86_avx512_pmultishift_qb_256, 147337}, // __builtin_ia32_vpmultishiftqb256
{Intrinsic::x86_avx512_pmultishift_qb_512, 147370}, // __builtin_ia32_vpmultishiftqb512
{Intrinsic::x86_xop_vpperm, 160721}, // __builtin_ia32_vpperm
{Intrinsic::x86_xop_vpshab, 160743}, // __builtin_ia32_vpshab
{Intrinsic::x86_xop_vpshad, 160765}, // __builtin_ia32_vpshad
{Intrinsic::x86_xop_vpshaq, 160787}, // __builtin_ia32_vpshaq
{Intrinsic::x86_xop_vpshaw, 160809}, // __builtin_ia32_vpshaw
{Intrinsic::x86_xop_vpshlb, 160831}, // __builtin_ia32_vpshlb
{Intrinsic::x86_xop_vpshld, 160853}, // __builtin_ia32_vpshld
{Intrinsic::x86_xop_vpshlq, 160875}, // __builtin_ia32_vpshlq
{Intrinsic::x86_xop_vpshlw, 160897}, // __builtin_ia32_vpshlw
{Intrinsic::x86_avx_vtestc_pd, 135394}, // __builtin_ia32_vtestcpd
{Intrinsic::x86_avx_vtestc_pd_256, 135418}, // __builtin_ia32_vtestcpd256
{Intrinsic::x86_avx_vtestc_ps, 135445}, // __builtin_ia32_vtestcps
{Intrinsic::x86_avx_vtestc_ps_256, 135469}, // __builtin_ia32_vtestcps256
{Intrinsic::x86_avx_vtestnzc_pd, 135496}, // __builtin_ia32_vtestnzcpd
{Intrinsic::x86_avx_vtestnzc_pd_256, 135522}, // __builtin_ia32_vtestnzcpd256
{Intrinsic::x86_avx_vtestnzc_ps, 135551}, // __builtin_ia32_vtestnzcps
{Intrinsic::x86_avx_vtestnzc_ps_256, 135577}, // __builtin_ia32_vtestnzcps256
{Intrinsic::x86_avx_vtestz_pd, 135606}, // __builtin_ia32_vtestzpd
{Intrinsic::x86_avx_vtestz_pd_256, 135630}, // __builtin_ia32_vtestzpd256
{Intrinsic::x86_avx_vtestz_ps, 135657}, // __builtin_ia32_vtestzps
{Intrinsic::x86_avx_vtestz_ps_256, 135681}, // __builtin_ia32_vtestzps256
{Intrinsic::x86_avx_vzeroall, 135708}, // __builtin_ia32_vzeroall
{Intrinsic::x86_avx_vzeroupper, 135732}, // __builtin_ia32_vzeroupper
{Intrinsic::x86_wbinvd, 159479}, // __builtin_ia32_wbinvd
{Intrinsic::x86_wbnoinvd, 159501}, // __builtin_ia32_wbnoinvd
{Intrinsic::x86_wrfsbase_32, 159525}, // __builtin_ia32_wrfsbase32
{Intrinsic::x86_wrfsbase_64, 159551}, // __builtin_ia32_wrfsbase64
{Intrinsic::x86_wrgsbase_32, 159577}, // __builtin_ia32_wrgsbase32
{Intrinsic::x86_wrgsbase_64, 159603}, // __builtin_ia32_wrgsbase64
{Intrinsic::x86_flags_write_u32, 151623}, // __builtin_ia32_writeeflags_u32
{Intrinsic::x86_flags_write_u64, 151654}, // __builtin_ia32_writeeflags_u64
{Intrinsic::x86_wrpkru, 159629}, // __builtin_ia32_wrpkru
{Intrinsic::x86_wrssd, 159651}, // __builtin_ia32_wrssd
{Intrinsic::x86_wrssq, 159672}, // __builtin_ia32_wrssq
{Intrinsic::x86_wrussd, 159693}, // __builtin_ia32_wrussd
{Intrinsic::x86_wrussq, 159715}, // __builtin_ia32_wrussq
{Intrinsic::x86_xabort, 159737}, // __builtin_ia32_xabort
{Intrinsic::x86_xbegin, 159759}, // __builtin_ia32_xbegin
{Intrinsic::x86_xend, 159781}, // __builtin_ia32_xend
{Intrinsic::x86_xresldtrk, 160919}, // __builtin_ia32_xresldtrk
{Intrinsic::x86_xsusldtrk, 160944}, // __builtin_ia32_xsusldtrk
{Intrinsic::x86_xtest, 160969}, // __builtin_ia32_xtest
};
auto I = std::lower_bound(std::begin(x86Names),
std::end(x86Names),
BuiltinNameStr);
if (I != std::end(x86Names) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "xcore") {
static const BuiltinEntry xcoreNames[] = {
{Intrinsic::xcore_bitrev, 160990}, // __builtin_bitrev
{Intrinsic::xcore_getid, 161007}, // __builtin_getid
{Intrinsic::xcore_getps, 161023}, // __builtin_getps
{Intrinsic::xcore_setps, 161039}, // __builtin_setps
};
auto I = std::lower_bound(std::begin(xcoreNames),
std::end(xcoreNames),
BuiltinNameStr);
if (I != std::end(xcoreNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
return Intrinsic::not_intrinsic;
}
#endif
// Get the LLVM intrinsic that corresponds to a builtin.
// This is used by the C front-end. The builtin name is passed
// in as BuiltinName, and a target prefix (e.g. 'ppc') is passed
// in as TargetPrefix. The result is assigned to 'IntrinsicID'.
#ifdef GET_LLVM_INTRINSIC_FOR_MS_BUILTIN
Intrinsic::ID Intrinsic::getIntrinsicForMSBuiltin(const char *TargetPrefixStr, StringRef BuiltinNameStr) {
static const char BuiltinNames[] = {
'_', '_', 'd', 'm', 'b', '\000', '_', '_', 'd', 's', 'b', '\000', '_', '_', 'i',
's', 'b', '\000', '_', 'M', 'o', 'v', 'e', 'F', 'r', 'o', 'm', 'C', 'o', 'p',
'r', 'o', 'c', 'e', 's', 's', 'o', 'r', '\000', '_', 'M', 'o', 'v', 'e', 'F',
'r', 'o', 'm', 'C', 'o', 'p', 'r', 'o', 'c', 'e', 's', 's', 'o', 'r', '2',
'\000',
};
struct BuiltinEntry {
Intrinsic::ID IntrinID;
unsigned StrTabOffset;
const char *getName() const {
return &BuiltinNames[StrTabOffset];
}
bool operator<(StringRef RHS) const {
return strncmp(getName(), RHS.data(), RHS.size()) < 0;
}
};
StringRef TargetPrefix(TargetPrefixStr);
if (TargetPrefix == "aarch64") {
static const BuiltinEntry aarch64Names[] = {
{Intrinsic::aarch64_dmb, 0}, // __dmb
{Intrinsic::aarch64_dsb, 6}, // __dsb
{Intrinsic::aarch64_isb, 12}, // __isb
};
auto I = std::lower_bound(std::begin(aarch64Names),
std::end(aarch64Names),
BuiltinNameStr);
if (I != std::end(aarch64Names) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
if (TargetPrefix == "arm") {
static const BuiltinEntry armNames[] = {
{Intrinsic::arm_mrc, 18}, // _MoveFromCoprocessor
{Intrinsic::arm_mrc2, 39}, // _MoveFromCoprocessor2
{Intrinsic::arm_dmb, 0}, // __dmb
{Intrinsic::arm_dsb, 6}, // __dsb
{Intrinsic::arm_isb, 12}, // __isb
};
auto I = std::lower_bound(std::begin(armNames),
std::end(armNames),
BuiltinNameStr);
if (I != std::end(armNames) &&
I->getName() == BuiltinNameStr)
return I->IntrinID;
}
return Intrinsic::not_intrinsic;
}
#endif
| [
"jintao@kuaishou.com"
] | jintao@kuaishou.com |
e253fc77256307512b68b8d40a36a1d32b18a8d8 | 0e9394230899fd0df0c891a83131883f4451bcb9 | /include/boost/simd/constant/minlog10.hpp | b0a3a7301eadd917115cd0e62741f7e699f2e28e | [
"BSL-1.0"
] | permissive | WillowOfTheBorder/boost.simd | f75764485424490302291fbe9856d10eb55cdbf6 | 561316cc54bdc6353ca78f3b6d7e9120acd11144 | refs/heads/master | 2022-05-02T07:07:29.560118 | 2016-04-21T12:53:10 | 2016-04-21T12:53:10 | 59,155,554 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,531 | hpp | //==================================================================================================
/*!
@file
@copyright 2012-2015 NumScale SAS
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
//==================================================================================================
#ifndef BOOST_SIMD_CONSTANT_MINLOG10_HPP_INCLUDED
#define BOOST_SIMD_CONSTANT_MINLOG10_HPP_INCLUDED
#if defined(DOXYGEN_ONLY)
namespace boost { namespace simd
{
/*!
@ingroup group-constant
Generates constant Minlog10 used in logarithm/exponential computations
nt2::log10(x) return 0 if x is less than Minlog10 (underflow)
@par Semantic:
@code
T r = Minlog10<T>();
@endcode
is similar to:
@code
if T is double
r = -308.2547155599167;
else if T is float
r = -37.89999771118164;
@endcode
**/
template<typename T> T Minlog10();
namespace functional
{
/*!
@ingroup group-callable-constant
Generates constant Minlog10 used in logarithm/exponential computations
Generate the constant minlog10.
@return The Minlog10 constant for the proper type
**/
const boost::dispatch::functor<tag::minlog10_> minlog10 = {};
}
} }
#endif
#include <boost/simd/constant/definition/minlog10.hpp>
#include <boost/simd/arch/common/scalar/constant/constant_value.hpp>
#include <boost/simd/arch/common/simd/constant/constant_value.hpp>
#endif
| [
"charly.chevalier@numscale.com"
] | charly.chevalier@numscale.com |
287e7749c57dfd87b62c52aa41a12f09245b19c2 | 12703a558be75704bf52c238a0d54f74168950c8 | /Wali/Wali/233994/Release/WebCore.framework/Versions/A/PrivateHeaders/CSSPropertyNames.h | cde1f78b2c2cad1dc01d0e668a90f78d0eeb1a2c | [] | no_license | FarhanQ7/Wali_ | ef1dac5069af644456085bedb4f6ca2b6bc140d5 | 1c1997c374cdf3f815ef84dff53a3d98fd763f78 | refs/heads/master | 2020-03-23T11:22:07.908316 | 2018-07-23T02:07:39 | 2018-07-23T02:07:39 | 141,499,716 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,877 | h | /* This file is automatically generated from CSSProperties.json by makeprop, do not edit */
#pragma once
#include <string.h>
#include <wtf/Forward.h>
#include <wtf/HashFunctions.h>
#include <wtf/HashTraits.h>
namespace WebCore {
enum CSSPropertyID : uint16_t {
CSSPropertyInvalid = 0,
CSSPropertyCustom = 1,
CSSPropertyColor = 2,
CSSPropertyDirection = 3,
CSSPropertyDisplay = 4,
CSSPropertyFontFamily = 5,
CSSPropertyFontFeatureSettings = 6,
CSSPropertyFontOpticalSizing = 7,
CSSPropertyFontSize = 8,
CSSPropertyFontStretch = 9,
CSSPropertyFontStyle = 10,
CSSPropertyFontSynthesis = 11,
CSSPropertyFontVariantAlternates = 12,
CSSPropertyFontVariantCaps = 13,
CSSPropertyFontVariantEastAsian = 14,
CSSPropertyFontVariantLigatures = 15,
CSSPropertyFontVariantNumeric = 16,
CSSPropertyFontVariantPosition = 17,
CSSPropertyFontVariationSettings = 18,
CSSPropertyFontWeight = 19,
CSSPropertyTextRendering = 20,
CSSPropertyWritingMode = 21,
CSSPropertyZoom = 22,
CSSPropertyWebkitFontKerning = 23,
CSSPropertyWebkitFontSmoothing = 24,
CSSPropertyWebkitLocale = 25,
CSSPropertyWebkitTextOrientation = 26,
CSSPropertyWebkitTextSizeAdjust = 27,
CSSPropertyWebkitTextZoom = 28,
CSSPropertyAlignContent = 29,
CSSPropertyAlignItems = 30,
CSSPropertyAlignSelf = 31,
CSSPropertyAlignmentBaseline = 32,
CSSPropertyAll = 33,
CSSPropertyAlt = 34,
CSSPropertyAnimation = 35,
CSSPropertyAnimationDelay = 36,
CSSPropertyAnimationDirection = 37,
CSSPropertyAnimationDuration = 38,
CSSPropertyAnimationFillMode = 39,
CSSPropertyAnimationIterationCount = 40,
CSSPropertyAnimationName = 41,
CSSPropertyAnimationPlayState = 42,
CSSPropertyAnimationTimingFunction = 43,
CSSPropertyBackground = 44,
CSSPropertyBackgroundAttachment = 45,
CSSPropertyBackgroundBlendMode = 46,
CSSPropertyBackgroundClip = 47,
CSSPropertyBackgroundColor = 48,
CSSPropertyBackgroundImage = 49,
CSSPropertyBackgroundOrigin = 50,
CSSPropertyBackgroundPosition = 51,
CSSPropertyBackgroundPositionX = 52,
CSSPropertyBackgroundPositionY = 53,
CSSPropertyBackgroundRepeat = 54,
CSSPropertyBackgroundRepeatX = 55,
CSSPropertyBackgroundRepeatY = 56,
CSSPropertyBackgroundSize = 57,
CSSPropertyBaselineShift = 58,
CSSPropertyBorder = 59,
CSSPropertyBorderBottom = 60,
CSSPropertyBorderBottomColor = 61,
CSSPropertyBorderBottomLeftRadius = 62,
CSSPropertyBorderBottomRightRadius = 63,
CSSPropertyBorderBottomStyle = 64,
CSSPropertyBorderBottomWidth = 65,
CSSPropertyBorderCollapse = 66,
CSSPropertyBorderColor = 67,
CSSPropertyBorderImage = 68,
CSSPropertyBorderImageOutset = 69,
CSSPropertyBorderImageRepeat = 70,
CSSPropertyBorderImageSlice = 71,
CSSPropertyBorderImageSource = 72,
CSSPropertyBorderImageWidth = 73,
CSSPropertyBorderLeft = 74,
CSSPropertyBorderLeftColor = 75,
CSSPropertyBorderLeftStyle = 76,
CSSPropertyBorderLeftWidth = 77,
CSSPropertyBorderRadius = 78,
CSSPropertyBorderRight = 79,
CSSPropertyBorderRightColor = 80,
CSSPropertyBorderRightStyle = 81,
CSSPropertyBorderRightWidth = 82,
CSSPropertyBorderSpacing = 83,
CSSPropertyBorderStyle = 84,
CSSPropertyBorderTop = 85,
CSSPropertyBorderTopColor = 86,
CSSPropertyBorderTopLeftRadius = 87,
CSSPropertyBorderTopRightRadius = 88,
CSSPropertyBorderTopStyle = 89,
CSSPropertyBorderTopWidth = 90,
CSSPropertyBorderWidth = 91,
CSSPropertyBottom = 92,
CSSPropertyBoxShadow = 93,
CSSPropertyBoxSizing = 94,
CSSPropertyBreakAfter = 95,
CSSPropertyBreakBefore = 96,
CSSPropertyBreakInside = 97,
CSSPropertyBufferedRendering = 98,
CSSPropertyCaptionSide = 99,
CSSPropertyCaretColor = 100,
CSSPropertyClear = 101,
CSSPropertyClip = 102,
CSSPropertyClipPath = 103,
CSSPropertyClipRule = 104,
CSSPropertyColorInterpolation = 105,
CSSPropertyColorInterpolationFilters = 106,
CSSPropertyColorProfile = 107,
CSSPropertyColorRendering = 108,
CSSPropertyColumnCount = 109,
CSSPropertyColumnFill = 110,
CSSPropertyColumnGap = 111,
CSSPropertyColumnRule = 112,
CSSPropertyColumnRuleColor = 113,
CSSPropertyColumnRuleStyle = 114,
CSSPropertyColumnRuleWidth = 115,
CSSPropertyColumnSpan = 116,
CSSPropertyColumnWidth = 117,
CSSPropertyColumns = 118,
CSSPropertyContent = 119,
CSSPropertyCounterIncrement = 120,
CSSPropertyCounterReset = 121,
CSSPropertyCursor = 122,
CSSPropertyCx = 123,
CSSPropertyCy = 124,
CSSPropertyDominantBaseline = 125,
CSSPropertyEmptyCells = 126,
CSSPropertyEnableBackground = 127,
CSSPropertyFill = 128,
CSSPropertyFillOpacity = 129,
CSSPropertyFillRule = 130,
CSSPropertyFilter = 131,
CSSPropertyFlex = 132,
CSSPropertyFlexBasis = 133,
CSSPropertyFlexDirection = 134,
CSSPropertyFlexFlow = 135,
CSSPropertyFlexGrow = 136,
CSSPropertyFlexShrink = 137,
CSSPropertyFlexWrap = 138,
CSSPropertyFloat = 139,
CSSPropertyFloodColor = 140,
CSSPropertyFloodOpacity = 141,
CSSPropertyFont = 142,
CSSPropertyFontDisplay = 143,
CSSPropertyFontVariant = 144,
CSSPropertyGap = 145,
CSSPropertyGlyphOrientationHorizontal = 146,
CSSPropertyGlyphOrientationVertical = 147,
CSSPropertyGrid = 148,
CSSPropertyGridArea = 149,
CSSPropertyGridAutoColumns = 150,
CSSPropertyGridAutoFlow = 151,
CSSPropertyGridAutoRows = 152,
CSSPropertyGridColumn = 153,
CSSPropertyGridColumnEnd = 154,
CSSPropertyGridColumnStart = 155,
CSSPropertyGridRow = 156,
CSSPropertyGridRowEnd = 157,
CSSPropertyGridRowStart = 158,
CSSPropertyGridTemplate = 159,
CSSPropertyGridTemplateAreas = 160,
CSSPropertyGridTemplateColumns = 161,
CSSPropertyGridTemplateRows = 162,
CSSPropertyHangingPunctuation = 163,
CSSPropertyHeight = 164,
CSSPropertyImageRendering = 165,
CSSPropertyIsolation = 166,
CSSPropertyJustifyContent = 167,
CSSPropertyJustifyItems = 168,
CSSPropertyJustifySelf = 169,
CSSPropertyKerning = 170,
CSSPropertyLeft = 171,
CSSPropertyLetterSpacing = 172,
CSSPropertyLightingColor = 173,
CSSPropertyLineBreak = 174,
CSSPropertyLineHeight = 175,
CSSPropertyListStyle = 176,
CSSPropertyListStyleImage = 177,
CSSPropertyListStylePosition = 178,
CSSPropertyListStyleType = 179,
CSSPropertyMargin = 180,
CSSPropertyMarginBottom = 181,
CSSPropertyMarginLeft = 182,
CSSPropertyMarginRight = 183,
CSSPropertyMarginTop = 184,
CSSPropertyMarker = 185,
CSSPropertyMarkerEnd = 186,
CSSPropertyMarkerMid = 187,
CSSPropertyMarkerStart = 188,
CSSPropertyMask = 189,
CSSPropertyMaskType = 190,
CSSPropertyMaxHeight = 191,
CSSPropertyMaxWidth = 192,
CSSPropertyMinHeight = 193,
CSSPropertyMinWidth = 194,
CSSPropertyMixBlendMode = 195,
CSSPropertyObjectFit = 196,
CSSPropertyObjectPosition = 197,
CSSPropertyOpacity = 198,
CSSPropertyOrder = 199,
CSSPropertyOrphans = 200,
CSSPropertyOutline = 201,
CSSPropertyOutlineColor = 202,
CSSPropertyOutlineOffset = 203,
CSSPropertyOutlineStyle = 204,
CSSPropertyOutlineWidth = 205,
CSSPropertyOverflow = 206,
CSSPropertyOverflowWrap = 207,
CSSPropertyOverflowX = 208,
CSSPropertyOverflowY = 209,
CSSPropertyPadding = 210,
CSSPropertyPaddingBottom = 211,
CSSPropertyPaddingLeft = 212,
CSSPropertyPaddingRight = 213,
CSSPropertyPaddingTop = 214,
CSSPropertyPage = 215,
CSSPropertyPageBreakAfter = 216,
CSSPropertyPageBreakBefore = 217,
CSSPropertyPageBreakInside = 218,
CSSPropertyPaintOrder = 219,
CSSPropertyPerspective = 220,
CSSPropertyPerspectiveOrigin = 221,
CSSPropertyPerspectiveOriginX = 222,
CSSPropertyPerspectiveOriginY = 223,
CSSPropertyPlaceContent = 224,
CSSPropertyPlaceItems = 225,
CSSPropertyPlaceSelf = 226,
CSSPropertyPointerEvents = 227,
CSSPropertyPosition = 228,
CSSPropertyQuotes = 229,
CSSPropertyR = 230,
CSSPropertyResize = 231,
CSSPropertyRight = 232,
CSSPropertyRowGap = 233,
CSSPropertyRx = 234,
CSSPropertyRy = 235,
CSSPropertyScrollPadding = 236,
CSSPropertyScrollPaddingBottom = 237,
CSSPropertyScrollPaddingLeft = 238,
CSSPropertyScrollPaddingRight = 239,
CSSPropertyScrollPaddingTop = 240,
CSSPropertyScrollSnapAlign = 241,
CSSPropertyScrollSnapMargin = 242,
CSSPropertyScrollSnapMarginBottom = 243,
CSSPropertyScrollSnapMarginLeft = 244,
CSSPropertyScrollSnapMarginRight = 245,
CSSPropertyScrollSnapMarginTop = 246,
CSSPropertyScrollSnapType = 247,
CSSPropertyShapeImageThreshold = 248,
CSSPropertyShapeMargin = 249,
CSSPropertyShapeOutside = 250,
CSSPropertyShapeRendering = 251,
CSSPropertySize = 252,
CSSPropertySpeakAs = 253,
CSSPropertySrc = 254,
CSSPropertyStopColor = 255,
CSSPropertyStopOpacity = 256,
CSSPropertyStroke = 257,
CSSPropertyStrokeColor = 258,
CSSPropertyStrokeDasharray = 259,
CSSPropertyStrokeDashoffset = 260,
CSSPropertyStrokeLinecap = 261,
CSSPropertyStrokeLinejoin = 262,
CSSPropertyStrokeMiterlimit = 263,
CSSPropertyStrokeOpacity = 264,
CSSPropertyStrokeWidth = 265,
CSSPropertyTabSize = 266,
CSSPropertyTableLayout = 267,
CSSPropertyTextAlign = 268,
CSSPropertyTextAnchor = 269,
CSSPropertyTextDecoration = 270,
CSSPropertyTextIndent = 271,
CSSPropertyTextOverflow = 272,
CSSPropertyTextShadow = 273,
CSSPropertyTextTransform = 274,
CSSPropertyTop = 275,
CSSPropertyTransform = 276,
CSSPropertyTransformBox = 277,
CSSPropertyTransformOrigin = 278,
CSSPropertyTransformOriginX = 279,
CSSPropertyTransformOriginY = 280,
CSSPropertyTransformOriginZ = 281,
CSSPropertyTransformStyle = 282,
CSSPropertyTransition = 283,
CSSPropertyTransitionDelay = 284,
CSSPropertyTransitionDuration = 285,
CSSPropertyTransitionProperty = 286,
CSSPropertyTransitionTimingFunction = 287,
CSSPropertyUnicodeBidi = 288,
CSSPropertyUnicodeRange = 289,
CSSPropertyVectorEffect = 290,
CSSPropertyVerticalAlign = 291,
CSSPropertyVisibility = 292,
CSSPropertyWhiteSpace = 293,
CSSPropertyWidows = 294,
CSSPropertyWidth = 295,
CSSPropertyWillChange = 296,
CSSPropertyWordBreak = 297,
CSSPropertyWordSpacing = 298,
CSSPropertyWordWrap = 299,
CSSPropertyX = 300,
CSSPropertyY = 301,
CSSPropertyZIndex = 302,
CSSPropertyAppleColorFilter = 303,
CSSPropertyApplePayButtonStyle = 304,
CSSPropertyApplePayButtonType = 305,
CSSPropertyAppleTrailingWord = 306,
CSSPropertyWebkitAnimationTrigger = 307,
CSSPropertyWebkitAppearance = 308,
CSSPropertyWebkitAspectRatio = 309,
CSSPropertyWebkitBackdropFilter = 310,
CSSPropertyWebkitBackfaceVisibility = 311,
CSSPropertyWebkitBackgroundClip = 312,
CSSPropertyWebkitBackgroundComposite = 313,
CSSPropertyWebkitBackgroundOrigin = 314,
CSSPropertyWebkitBackgroundSize = 315,
CSSPropertyWebkitBorderAfter = 316,
CSSPropertyWebkitBorderAfterColor = 317,
CSSPropertyWebkitBorderAfterStyle = 318,
CSSPropertyWebkitBorderAfterWidth = 319,
CSSPropertyWebkitBorderBefore = 320,
CSSPropertyWebkitBorderBeforeColor = 321,
CSSPropertyWebkitBorderBeforeStyle = 322,
CSSPropertyWebkitBorderBeforeWidth = 323,
CSSPropertyWebkitBorderEnd = 324,
CSSPropertyWebkitBorderEndColor = 325,
CSSPropertyWebkitBorderEndStyle = 326,
CSSPropertyWebkitBorderEndWidth = 327,
CSSPropertyWebkitBorderFit = 328,
CSSPropertyWebkitBorderHorizontalSpacing = 329,
CSSPropertyWebkitBorderImage = 330,
CSSPropertyWebkitBorderRadius = 331,
CSSPropertyWebkitBorderStart = 332,
CSSPropertyWebkitBorderStartColor = 333,
CSSPropertyWebkitBorderStartStyle = 334,
CSSPropertyWebkitBorderStartWidth = 335,
CSSPropertyWebkitBorderVerticalSpacing = 336,
CSSPropertyWebkitBoxAlign = 337,
CSSPropertyWebkitBoxDecorationBreak = 338,
CSSPropertyWebkitBoxDirection = 339,
CSSPropertyWebkitBoxFlex = 340,
CSSPropertyWebkitBoxFlexGroup = 341,
CSSPropertyWebkitBoxLines = 342,
CSSPropertyWebkitBoxOrdinalGroup = 343,
CSSPropertyWebkitBoxOrient = 344,
CSSPropertyWebkitBoxPack = 345,
CSSPropertyWebkitBoxReflect = 346,
CSSPropertyWebkitBoxShadow = 347,
CSSPropertyWebkitClipPath = 348,
CSSPropertyWebkitColumnAxis = 349,
CSSPropertyWebkitColumnBreakAfter = 350,
CSSPropertyWebkitColumnBreakBefore = 351,
CSSPropertyWebkitColumnBreakInside = 352,
CSSPropertyWebkitColumnProgression = 353,
CSSPropertyWebkitCursorVisibility = 354,
CSSPropertyWebkitDashboardRegion = 355,
CSSPropertyWebkitFontSizeDelta = 356,
CSSPropertyWebkitHyphenateCharacter = 357,
CSSPropertyWebkitHyphenateLimitAfter = 358,
CSSPropertyWebkitHyphenateLimitBefore = 359,
CSSPropertyWebkitHyphenateLimitLines = 360,
CSSPropertyWebkitHyphens = 361,
CSSPropertyWebkitInitialLetter = 362,
CSSPropertyWebkitLineAlign = 363,
CSSPropertyWebkitLineBoxContain = 364,
CSSPropertyWebkitLineClamp = 365,
CSSPropertyWebkitLineGrid = 366,
CSSPropertyWebkitLineSnap = 367,
CSSPropertyWebkitLinesClamp = 368,
CSSPropertyWebkitLogicalHeight = 369,
CSSPropertyWebkitLogicalWidth = 370,
CSSPropertyWebkitMarginAfter = 371,
CSSPropertyWebkitMarginAfterCollapse = 372,
CSSPropertyWebkitMarginBefore = 373,
CSSPropertyWebkitMarginBeforeCollapse = 374,
CSSPropertyWebkitMarginBottomCollapse = 375,
CSSPropertyWebkitMarginCollapse = 376,
CSSPropertyWebkitMarginEnd = 377,
CSSPropertyWebkitMarginStart = 378,
CSSPropertyWebkitMarginTopCollapse = 379,
CSSPropertyWebkitMarquee = 380,
CSSPropertyWebkitMarqueeDirection = 381,
CSSPropertyWebkitMarqueeIncrement = 382,
CSSPropertyWebkitMarqueeRepetition = 383,
CSSPropertyWebkitMarqueeSpeed = 384,
CSSPropertyWebkitMarqueeStyle = 385,
CSSPropertyWebkitMask = 386,
CSSPropertyWebkitMaskBoxImage = 387,
CSSPropertyWebkitMaskBoxImageOutset = 388,
CSSPropertyWebkitMaskBoxImageRepeat = 389,
CSSPropertyWebkitMaskBoxImageSlice = 390,
CSSPropertyWebkitMaskBoxImageSource = 391,
CSSPropertyWebkitMaskBoxImageWidth = 392,
CSSPropertyWebkitMaskClip = 393,
CSSPropertyWebkitMaskComposite = 394,
CSSPropertyWebkitMaskImage = 395,
CSSPropertyWebkitMaskOrigin = 396,
CSSPropertyWebkitMaskPosition = 397,
CSSPropertyWebkitMaskPositionX = 398,
CSSPropertyWebkitMaskPositionY = 399,
CSSPropertyWebkitMaskRepeat = 400,
CSSPropertyWebkitMaskRepeatX = 401,
CSSPropertyWebkitMaskRepeatY = 402,
CSSPropertyWebkitMaskSize = 403,
CSSPropertyWebkitMaskSourceType = 404,
CSSPropertyWebkitMaxLogicalHeight = 405,
CSSPropertyWebkitMaxLogicalWidth = 406,
CSSPropertyWebkitMinLogicalHeight = 407,
CSSPropertyWebkitMinLogicalWidth = 408,
CSSPropertyWebkitNbspMode = 409,
CSSPropertyWebkitPaddingAfter = 410,
CSSPropertyWebkitPaddingBefore = 411,
CSSPropertyWebkitPaddingEnd = 412,
CSSPropertyWebkitPaddingStart = 413,
CSSPropertyWebkitPrintColorAdjust = 414,
CSSPropertyWebkitRtlOrdering = 415,
CSSPropertyWebkitRubyPosition = 416,
CSSPropertyWebkitSvgShadow = 417,
CSSPropertyWebkitTextCombine = 418,
CSSPropertyWebkitTextDecoration = 419,
CSSPropertyWebkitTextDecorationColor = 420,
CSSPropertyWebkitTextDecorationLine = 421,
CSSPropertyWebkitTextDecorationSkip = 422,
CSSPropertyWebkitTextDecorationStyle = 423,
CSSPropertyWebkitTextDecorationsInEffect = 424,
CSSPropertyWebkitTextEmphasis = 425,
CSSPropertyWebkitTextEmphasisColor = 426,
CSSPropertyWebkitTextEmphasisPosition = 427,
CSSPropertyWebkitTextEmphasisStyle = 428,
CSSPropertyWebkitTextFillColor = 429,
CSSPropertyWebkitTextSecurity = 430,
CSSPropertyWebkitTextStroke = 431,
CSSPropertyWebkitTextStrokeColor = 432,
CSSPropertyWebkitTextStrokeWidth = 433,
CSSPropertyWebkitTextUnderlinePosition = 434,
CSSPropertyWebkitTransformStyle = 435,
CSSPropertyWebkitUserDrag = 436,
CSSPropertyWebkitUserModify = 437,
CSSPropertyWebkitUserSelect = 438,
};
const int firstCSSProperty = 2;
const int numCSSProperties = 437;
const int lastCSSProperty = 438;
const size_t maxCSSPropertyNameLength = 34;
const CSSPropertyID lastHighPriorityProperty = CSSPropertyWebkitTextZoom;
bool isInternalCSSProperty(const CSSPropertyID);
const char* getPropertyName(CSSPropertyID);
const WTF::AtomicString& getPropertyNameAtomicString(CSSPropertyID id);
WTF::String getPropertyNameString(CSSPropertyID id);
WTF::String getJSPropertyName(CSSPropertyID);
inline CSSPropertyID convertToCSSPropertyID(int value)
{
ASSERT((value >= firstCSSProperty && value <= lastCSSProperty) || value == CSSPropertyInvalid || value == CSSPropertyCustom);
return static_cast<CSSPropertyID>(value);
}
} // namespace WebCore
namespace WTF {
template<> struct DefaultHash<WebCore::CSSPropertyID> { typedef IntHash<unsigned> Hash; };
template<> struct HashTraits<WebCore::CSSPropertyID> : GenericHashTraits<WebCore::CSSPropertyID> {
static const bool emptyValueIsZero = true;
static const bool needsDestruction = false;
static void constructDeletedValue(WebCore::CSSPropertyID& slot) { slot = static_cast<WebCore::CSSPropertyID>(WebCore::lastCSSProperty + 1); }
static bool isDeletedValue(WebCore::CSSPropertyID value) { return value == (WebCore::lastCSSProperty + 1); }
};
} // namespace WTF
| [
"Farhan.q@live.com"
] | Farhan.q@live.com |
855ab88d31aa5e04eaac760c717acdb54cc9c858 | 7b507fb40c0f73f3323f18aa85636a98fae9a4c2 | /C++ practice/DSAA/lab.cpp | 9b9c7e9bf6a49250077c20bc86fa14e3aad1cf73 | [] | no_license | tienpv147/code-assignment | 64f7553fb8ba8144045e84527f993c3b02953aeb | d4098848f2c76b11bac7e71a27e36ebcf644a191 | refs/heads/master | 2023-06-22T16:42:29.326667 | 2021-07-16T10:08:43 | 2021-07-16T10:08:43 | 353,077,774 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 423 | cpp | #include <bits/stdc++.h>
using namespace std;
int bin[100];
void intToBinary(int n)
{
int i = 0;
do
{
bin[i++] = n % 2;
} while ((n /= 2) > 0);
}
int main() {
for (int i = 0; i < 16; i++) {
for (int j = 0; j < 4; j++) {
bin[j] = 0;
}
intToBinary(i);
for (int k = 0; k < 4; k++) {
cout << bin[k];
}
cout << " ";
}
}
| [
"tienpv@eway.vn"
] | tienpv@eway.vn |
ea0681ccd7c867141a2dc7c038b49cba341e3930 | d61aa7d638e3fe949e940f01f293b004017753a3 | /poj/Archives/1046/7101565_AC_0MS_148K.cpp | b1f89d58a4c1cf6b8438d3796a12041bcc694fd4 | [] | no_license | dementrock/acm | e50468504f20aa0831eb8609e1b65160c5fddb3d | a539707ca3c0b78e4160fdf2acad1b0125fa8211 | refs/heads/master | 2016-09-06T01:18:36.769494 | 2012-11-06T01:21:41 | 2012-11-06T01:21:41 | 2,811,681 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | cpp | #include<stdio.h>
#include<stdlib.h>
int r,g,b,R[100],G[100],B[100];
int calc(int x1, int y1, int z1, int x2, int y2, int z2)
{
return (x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)+(z1-z2)*(z1-z2);
}
int main()
{
for(int i=1;i<=16;++i)
scanf("%d%d%d",&R[i],&G[i],&B[i]);
while(1)
{
scanf("%d%d%d",&r,&g,&b);
if(r==-1&&g==-1&&b==-1) break;
int mint=99999999,mini;
for(int i=1;i<=16;++i)
{
int t=calc(r,g,b,R[i],G[i],B[i]);
if(t<mint)
{
mint=t;
mini=i;
}
}
printf("(%d,%d,%d) maps to (%d,%d,%d)\n",r,g,b,R[mini],G[mini],B[mini]);
}
return 0;
}
| [
"dementrock@gmail.com"
] | dementrock@gmail.com |
b57fb251b2cac3d5267e514da4235cdfda6cfdaf | a71b70de1877959b73f7e78ee62e9138ec5a2585 | /CF/20120316/C.cpp | 2d9e0402b3e1a83ec547c6894fba91571d022959 | [] | no_license | HJWAJ/acm_codes | 38d32c6d12837b07584198c40ce916546085f636 | 5fa3ee82cb5114eb3cfe4e6fa2baba0f476f6434 | refs/heads/master | 2022-01-24T03:00:51.737372 | 2022-01-14T10:04:05 | 2022-01-14T10:04:05 | 151,313,977 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 789 | cpp | #include<iostream>
#include<iomanip>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cstdlib>
#include<cmath>
#include<map>
#include<set>
#include<queue>
#include<string>
#include<vector>
using namespace std;
char s[1000005];
__int64 pos[1000005];
__int64 j=1,l;
__int64 calc(__int64 n)
{
return n*(n+1)/2;
}
int main()
{
__int64 n,len,i,ans=0;
scanf("%I64d%s",&n,s);
len=strlen(s);
pos[0]=-1;
for(i=0;i<len;i++)
if(s[i]=='1')
pos[j++]=i;
pos[j++]=len;
l=j;
if(n==0)
{
for(i=0;i<l-1;i++)
ans+=calc(pos[i+1]-pos[i]-1);
printf("%I64d\n",ans);
return 0;
}
for(i=1;i<l-n;i++)
ans+=(pos[i]-pos[i-1])*(pos[i+n]-pos[i+n-1]);
printf("%I64d\n",ans);
return 0;
}
| [
"jiawei.hua@dianping.com"
] | jiawei.hua@dianping.com |
c208674e4d37b303459d0c10297960ca2a4f0b39 | d0a31c5b74c6e3f83807917789bafde791a2c842 | /luogu/p1634.cpp | a84704c42321b95f59a2cf6775bc590294194340 | [] | no_license | tabzhangjx/record_codes | ad531307c692fec387c7b8daf9dc0ba34b407cd3 | 9c3935bc219f1a22fa97a3435f9a007d18959d3b | refs/heads/master | 2021-06-12T21:01:44.083974 | 2019-09-20T09:26:43 | 2019-09-20T09:26:43 | 100,364,285 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 138 | cpp | #include <bits/stdc++.h>
int main(){
long long a, b, c=1;
std::cin>>a>>b;
for(int i=0;i<b;i++) c+=(c*a);
std::cout<<c;
}
| [
"tabzhangjx@outlook.com"
] | tabzhangjx@outlook.com |
be2b436517c74d9b3aa14a9557bf5af194593358 | c04be5c374c55a3985a2f4ac89dd61b56cabb718 | /Servos-arduino/movimiento_servos/movimiento_servos.ino | 50d3334a1df846fe1e3f464a065e577500532e53 | [] | no_license | jona1229/Inteligencia | a5ae4e4adb2a17a6e18f4aa49053d84772f6c43c | 136c71cabc04e70d02e670960fb5811ff8c8e305 | refs/heads/master | 2023-05-08T05:21:45.422386 | 2021-06-01T19:28:52 | 2021-06-01T19:28:52 | 372,851,154 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 611 | ino | #include <Servo.h>
Servo px;
Servo py;
int p_y = 90;
int p_x = 90;
int lectura = 0;
void setup() {
Serial.begin(9600);
py.attach(9);
px.attach(6);
py.write(p_y);
px.write(p_x);
}
void loop() {
if (Serial.available() >= 1) {
lectura = Serial.read();
}
if (lectura == 'D')
{
p_y = p_y + 1;
py.write(p_y);
delay(200);
}
if (lectura == 'U')
{
p_y = p_y - 1;
py.write(p_y);
delay(200);
}
if (lectura == 'L')
{
p_x = p_x + 1;
px.write(p_x);
delay(200);
}
if (lectura == 'R')
{
p_x = p_x - 1;
px.write(p_x);
delay(200);
}
}
| [
"15590708.jonathan@itsanjuan.edu.mx"
] | 15590708.jonathan@itsanjuan.edu.mx |
64920fdbebe74c6a8a3961c49d736016170d53ba | 2a651a231a3de0524edb599b326852ea93f521f6 | /DependencyViewer/DependencyViewer/src/nogui/memory_mapped_file.h | 9d5f4252c7ca447ef4edaa7cfd1c583ee5eec7b5 | [] | no_license | fengjixuchui/DependencyViewer | 2259fd5ddae87d1950ad1bddfec97fee9d9886cb | 5b465b8b0e05d01e90a98fac4f4a2548bf9223aa | refs/heads/main | 2022-07-07T05:57:49.218751 | 2020-05-16T02:03:00 | 2020-05-16T02:03:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,017 | h | #pragma once
#include "smart_handle.h"
#include <cstddef>
#include <memory>
struct mapped_view_deleter
{
public:
void operator()(void const* const ptr) const;
};
typedef std::unique_ptr<void const, mapped_view_deleter> smart_mapped_view;
class memory_mapped_file
{
public:
memory_mapped_file() noexcept;
memory_mapped_file(wchar_t const* const file_name);
memory_mapped_file(memory_mapped_file const&) = delete;
memory_mapped_file(memory_mapped_file&& other) noexcept;
memory_mapped_file& operator=(memory_mapped_file const&) = delete;
memory_mapped_file& operator=(memory_mapped_file&& other) noexcept;
~memory_mapped_file() noexcept;
void swap(memory_mapped_file& other) noexcept;
public:
std::byte const* begin() const;
std::byte const* end() const;
int size() const;
private:
smart_handle m_file;
smart_handle m_mapping;
smart_mapped_view m_view;
int m_size;
};
inline void swap(memory_mapped_file& a, memory_mapped_file& b) noexcept { a.swap(b); }
| [
"knapek.mar@gmail.com"
] | knapek.mar@gmail.com |
14081ff337b21c4810d40fd5a5357fb7150e54ad | 9ed54046af4bb2a9ffbf19f7d73394161b03145c | /MyOpenGLStudy01/MainOpenGL.h | 61d8d6374d17c4d91748fb29c46f6b042123947e | [] | no_license | HHHHHHHHHHHHHHHHHHHHHCS/MyOpenGLStudy01 | 7b078d5b62e673a2623145cc4feb66519812b937 | 707c1d92ccf07aed5d564b64f581fdc76534d6be | refs/heads/master | 2022-02-24T05:03:40.762937 | 2022-02-09T03:56:33 | 2022-02-09T03:56:33 | 191,728,226 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 49 | h | #pragma once
class MainOpenGL
{
public:
};
| [
"464962683@qq.com"
] | 464962683@qq.com |
e3fe615ade910018b0bacca76648b5adcb90bc2c | 88a587f03cfb7dbebc8879deadc79d1ef2752ac5 | /结构体 报数退出/源.cpp | 6fbbd89036ed2460c9900eb89195c6e4d38c7b40 | [] | no_license | EricGao-Byte/My-CPP-Program | 9dd81624cd2d1a32903d77f075fa7acac870aafe | 734e3219b90944dd696db4339db318673afe26ab | refs/heads/master | 2022-11-28T12:28:16.712271 | 2020-08-10T04:03:16 | 2020-08-10T04:03:16 | 259,624,870 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 498 | cpp | #include <stdio.h>
#include <malloc.h>
#define NULL 0
#define LEN sizeof(struct student)
typedef struct student
{
int score;
struct student* next;
}LinkList;
int n;
int main()
{
return 0;
}
LinkList* creat(int n)//n 链表节点数
{
LinkList* head, * node, * end;
head = (LinkList*)malloc(LEN);
end = head;//空链表头尾相同
end->next = NULL;
int i;
for ( i = 0; i < n; i++)
{
node = (LinkList*)malloc(LEN);
scanf_s("%d", &node->score);
head->next = node;
end = node;
}
} | [
"gaochuanjin123@gmail.com"
] | gaochuanjin123@gmail.com |
05c62c623e734824686aa86037562dceed16379a | a9215be73392dda1653a2ea6b339704f872a8e90 | /src/server/game/Guilds/GuildMgr.cpp | b38b02ccd0dda0a75efb1c71012223483448777f | [] | no_license | szu-lab/CoreMop | e9e261ed960d5455130f1019cc20573b64d883f7 | 29fd952d181d38b92afc0d85a2d62c95a2544bc5 | refs/heads/master | 2020-09-13T20:32:33.154146 | 2019-11-18T15:16:42 | 2019-11-18T15:16:42 | 222,895,411 | 3 | 2 | null | 2019-11-20T09:06:29 | 2019-11-20T09:06:28 | null | UTF-8 | C++ | false | false | 22,852 | cpp | /*
* Copyright (C) 2008-2012 TrinityCore <http://www.trinitycore.org/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Common.h"
#include "GuildMgr.h"
GuildMgr::GuildMgr()
{
NextGuildId = 1;
}
GuildMgr::~GuildMgr()
{
for (GuildContainer::iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
delete itr->second;
}
void GuildMgr::AddGuild(Guild* guild)
{
GuildStore[guild->GetId()] = guild;
}
void GuildMgr::RemoveGuild(uint32 guildId)
{
GuildStore.erase(guildId);
}
void GuildMgr::SaveGuilds()
{
for (GuildContainer::iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
itr->second->SaveToDB();
}
void GuildMgr::UpdateGuilds(int32 const diff)
{
for (GuildContainer::iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
{
auto guild = itr->second;
if (!guild)
continue;
guild->Update(diff);
}
}
uint32 GuildMgr::GenerateGuildId()
{
if (NextGuildId >= 0xFFFFFFFE)
{
sLog->outError(LOG_FILTER_GUILD, "Guild ids overflow!! Can't continue, shutting down server. ");
World::StopNow(ERROR_EXIT_CODE);
}
return NextGuildId++;
}
// Guild collection
Guild* GuildMgr::GetGuildById(uint32 guildId) const
{
GuildContainer::const_iterator itr = GuildStore.find(guildId);
if (itr != GuildStore.end())
return itr->second;
return NULL;
}
Guild* GuildMgr::GetGuildByGuid(uint64 guid) const
{
// Full guids are only used when receiving/sending data to client
// everywhere else guild id is used
if (IS_GUILD(guid))
if (uint32 guildId = GUID_LOPART(guid))
return GetGuildById(guildId);
return NULL;
}
Guild* GuildMgr::GetGuildByName(const std::string& guildName) const
{
std::string search = guildName;
std::transform(search.begin(), search.end(), search.begin(), ::toupper);
for (GuildContainer::const_iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
{
std::string gname = itr->second->GetName();
std::transform(gname.begin(), gname.end(), gname.begin(), ::toupper);
if (search == gname)
return itr->second;
}
return NULL;
}
std::string GuildMgr::GetGuildNameById(uint32 guildId) const
{
if (Guild* guild = GetGuildById(guildId))
return guild->GetName();
return "";
}
Guild* GuildMgr::GetGuildByLeader(uint64 guid) const
{
for (GuildContainer::const_iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
if (itr->second->GetLeaderGUID() == guid)
return itr->second;
return NULL;
}
uint32 GuildMgr::GetXPForGuildLevel(uint8 level) const
{
if (level < GuildXPperLevel.size())
return GuildXPperLevel[level];
return 0;
}
void GuildMgr::ResetExperienceCaps()
{
CharacterDatabase.Execute(CharacterDatabase.GetPreparedStatement(CHAR_UPD_GUILD_RESET_TODAY_EXPERIENCE));
for (GuildContainer::iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
itr->second->ResetDailyExperience();
}
void GuildMgr::ResetReputationCaps()
{
/// @TODO: Implement
}
void GuildMgr::LoadGuilds()
{
// 1. Load all guilds
sLog->outInfo(LOG_FILTER_SERVER_LOADING, "Loading guilds definitions...");
{
uint32 oldMSTime = getMSTime();
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_SEL_GUILD);
PreparedQueryResult result = CharacterDatabase.Query(stmt);
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild definitions. DB table `guild` is empty.");
return;
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
Guild* guild = new Guild();
if (!guild->LoadFromDB(fields))
{
delete guild;
continue;
}
AddGuild(guild);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild definitions in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 2. Load all guild ranks
sLog->outInfo(LOG_FILTER_SERVER_LOADING, "Loading guild ranks...");
{
uint32 oldMSTime = getMSTime();
// Delete orphaned guild rank entries before loading the valid ones
CharacterDatabase.DirectExecute("DELETE gr FROM guild_rank gr LEFT JOIN guild g ON gr.guildId = g.guildId WHERE g.guildId IS NULL");
// 0 1 2 3 4
QueryResult result = CharacterDatabase.Query("SELECT guildid, rid, rname, rights, BankMoneyPerDay FROM guild_rank ORDER BY guildid ASC, rid ASC");
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild ranks. DB table `guild_rank` is empty.");
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 guildId = fields[0].GetUInt32();
if (Guild* guild = GetGuildById(guildId))
guild->LoadRankFromDB(fields);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild ranks in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 3. Load all guild members
sLog->outInfo(LOG_FILTER_SERVER_LOADING, "Loading guild members...");
{
uint32 oldMSTime = getMSTime();
// Delete orphaned guild member entries before loading the valid ones
CharacterDatabase.DirectExecute("DELETE gm FROM guild_member gm LEFT JOIN guild g ON gm.guildId = g.guildId WHERE g.guildId IS NULL");
// 0 1 2 3 4 5 6
QueryResult result = CharacterDatabase.Query("SELECT gm.guildid, gm.guid, rank, pnote, offnote, BankResetTimeMoney, BankRemMoney, "
// 7 8 9 10 11 12
"BankResetTimeTab0, BankRemSlotsTab0, BankResetTimeTab1, BankRemSlotsTab1, BankResetTimeTab2, BankRemSlotsTab2, "
// 13 14 15 16 17 18
"BankResetTimeTab3, BankRemSlotsTab3, BankResetTimeTab4, BankRemSlotsTab4, BankResetTimeTab5, BankRemSlotsTab5, "
// 19 20 21 22
"BankResetTimeTab6, BankRemSlotsTab6, BankResetTimeTab7, BankRemSlotsTab7, "
// 23 24 25 26 27 28
"c.name, c.level, c.class, c.zone, c.account, c.logout_time "
"FROM guild_member gm LEFT JOIN characters c ON c.guid = gm.guid ORDER BY guildid ASC");
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild members. DB table `guild_member` is empty.");
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 guildId = fields[0].GetUInt32();
if (Guild* guild = GetGuildById(guildId))
guild->LoadMemberFromDB(fields);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild members int %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 4. Load all guild bank tab rights
sLog->outInfo(LOG_FILTER_SERVER_LOADING, "Loading bank tab rights...");
{
uint32 oldMSTime = getMSTime();
// Delete orphaned guild bank right entries before loading the valid ones
CharacterDatabase.DirectExecute("DELETE gbr FROM guild_bank_right gbr LEFT JOIN guild g ON gbr.guildId = g.guildId WHERE g.guildId IS NULL");
// 0 1 2 3 4
QueryResult result = CharacterDatabase.Query("SELECT guildid, TabId, rid, gbright, SlotPerDay FROM guild_bank_right ORDER BY guildid ASC, TabId ASC");
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild bank tab rights. DB table `guild_bank_right` is empty.");
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 guildId = fields[0].GetUInt32();
if (Guild* guild = GetGuildById(guildId))
guild->LoadBankRightFromDB(fields);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u bank tab rights in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 5. Load all event logs
sLog->outInfo(LOG_FILTER_SERVER_LOADING, "Loading guild event logs...");
{
uint32 oldMSTime = getMSTime();
CharacterDatabase.DirectPExecute("DELETE FROM guild_eventlog WHERE LogGuid > %u", sWorld->getIntConfig(CONFIG_GUILD_EVENT_LOG_COUNT));
// 0 1 2 3 4 5 6
QueryResult result = CharacterDatabase.Query("SELECT guildid, LogGuid, EventType, PlayerGuid1, PlayerGuid2, NewRank, TimeStamp FROM guild_eventlog ORDER BY TimeStamp DESC, LogGuid DESC");
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild event logs. DB table `guild_eventlog` is empty.");
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 guildId = fields[0].GetUInt32();
if (Guild* guild = GetGuildById(guildId))
guild->LoadEventLogFromDB(fields);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild event logs in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 6. Load all bank event logs
sLog->outInfo(LOG_FILTER_SERVER_LOADING, "Loading guild bank event logs...");
{
uint32 oldMSTime = getMSTime();
// Remove log entries that exceed the number of allowed entries per guild
CharacterDatabase.DirectPExecute("DELETE FROM guild_bank_eventlog WHERE LogGuid > %u", sWorld->getIntConfig(CONFIG_GUILD_BANK_EVENT_LOG_COUNT));
// 0 1 2 3 4 5 6 7 8
QueryResult result = CharacterDatabase.Query("SELECT guildid, TabId, LogGuid, EventType, PlayerGuid, ItemOrMoney, ItemStackCount, DestTabId, TimeStamp FROM guild_bank_eventlog ORDER BY TimeStamp DESC, LogGuid DESC");
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild bank event logs. DB table `guild_bank_eventlog` is empty.");
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 guildId = fields[0].GetUInt32();
if (Guild* guild = GetGuildById(guildId))
guild->LoadBankEventLogFromDB(fields);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild bank event logs in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 7. Load all guild bank tabs
sLog->outInfo(LOG_FILTER_SERVER_LOADING, "Loading guild bank tabs...");
{
uint32 oldMSTime = getMSTime();
// Delete orphaned guild bank tab entries before loading the valid ones
CharacterDatabase.DirectExecute("DELETE gbt FROM guild_bank_tab gbt LEFT JOIN guild g ON gbt.guildId = g.guildId WHERE g.guildId IS NULL");
// 0 1 2 3 4
QueryResult result = CharacterDatabase.Query("SELECT guildid, TabId, TabName, TabIcon, TabText FROM guild_bank_tab ORDER BY guildid ASC, TabId ASC");
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild bank tabs. DB table `guild_bank_tab` is empty.");
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 guildId = fields[0].GetUInt32();
if (Guild* guild = GetGuildById(guildId))
guild->LoadBankTabFromDB(fields);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild bank tabs in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 8. Fill all guild bank tabs
sLog->outInfo(LOG_FILTER_GUILD, "Filling bank tabs with items...");
{
uint32 oldMSTime = getMSTime();
// Delete orphan guild bank items
CharacterDatabase.DirectExecute("DELETE gbi FROM guild_bank_item gbi LEFT JOIN guild g ON gbi.guildId = g.guildId WHERE g.guildId IS NULL");
// 0 1 2 3 4 5 6 7 8 9 10 11 12 13
QueryResult result = CharacterDatabase.Query("SELECT creatorGuid, giftCreatorGuid, count, duration, charges, flags, enchantments, randomPropertyId, reforgeId, transmogrifyId, upgradeId, durability, playedTime, text, "
// 14 15 16 17 18
"guildid, TabId, SlotId, item_guid, itemEntry FROM guild_bank_item gbi INNER JOIN item_instance ii ON gbi.item_guid = ii.guid");
if (!result)
{
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild bank tab items. DB table `guild_bank_item` or `item_instance` is empty.");
}
else
{
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 guildId = fields[14].GetUInt32();
if (Guild* guild = GetGuildById(guildId))
guild->LoadBankItemFromDB(fields);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild bank tab items in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
}
// 9. Load guild achievements
{
PreparedQueryResult achievementResult;
PreparedQueryResult criteriaResult;
PreparedQueryResult criteriaResultNew;
for (GuildContainer::const_iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
{
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_SEL_GUILD_ACHIEVEMENT);
stmt->setUInt32(0, itr->first);
achievementResult = CharacterDatabase.Query(stmt);
stmt = CharacterDatabase.GetPreparedStatement(CHAR_SEL_OLD_GUILD_ACHIEVEMENT_CRITERIA);
stmt->setUInt32(0, itr->first);
criteriaResult = CharacterDatabase.Query(stmt);
itr->second->GetAchievementMgr().LoadFromDB(achievementResult, criteriaResult);
stmt = CharacterDatabase.GetPreparedStatement(CHAR_SEL_GUILD_ACHIEVEMENT_CRITERIA);
stmt->setUInt32(0, itr->first);
criteriaResultNew = CharacterDatabase.Query(stmt);
itr->second->GetAchievementMgr().LoadFromDB2(criteriaResultNew, nullptr);
}
}
// 10. Deleting old Guild News (older than one week)
sLog->outInfo(LOG_FILTER_GENERAL, "Deleting old Guild News");
{
CharacterDatabase.PQuery("DELETE FROM guild_news_log WHERE date < %u;", uint32(time(NULL) - DAY * 7));
}
// 11. Loading Guild news
sLog->outInfo(LOG_FILTER_GENERAL, "Loading Guild News");
{
for (GuildContainer::const_iterator itr = GuildStore.begin(); itr != GuildStore.end(); ++itr)
{
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_LOAD_GUILD_NEWS);
stmt->setInt32(0, itr->first);
itr->second->GetNewsLog().LoadFromDB(CharacterDatabase.Query(stmt));
}
}
/// 12. Loading guild challenges
sLog->outInfo(LOG_FILTER_GENERAL, "Loading guild challenges...");
{
uint32 l_OldMSTime = getMSTime();
PreparedQueryResult l_Result = CharacterDatabase.Query(CharacterDatabase.GetPreparedStatement(CHAR_LOAD_GUILD_CHALLENGES));
if (l_Result)
{
uint32 l_Count = 0;
do
{
Field* l_Fields = l_Result->Fetch();
uint32 l_GuildId = l_Fields[0].GetInt32();
if (Guild* l_Guild = GetGuildById(l_GuildId))
l_Guild->LoadGuildChallengesFromDB(l_Fields);
++l_Count;
}
while (l_Result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild challenges in %u ms", l_Count, GetMSTimeDiffToNow(l_OldMSTime));
}
}
// 13. Validate loaded guild data
sLog->outInfo(LOG_FILTER_GENERAL, "Validating data of loaded guilds...");
{
uint32 oldMSTime = getMSTime();
for (GuildContainer::iterator itr = GuildStore.begin(); itr != GuildStore.end();)
{
Guild* guild = itr->second;
++itr;
if (guild && !guild->Validate())
delete guild;
}
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Validated data of loaded guilds in %u ms", GetMSTimeDiffToNow(oldMSTime));
}
}
void GuildMgr::LoadGuildXpForLevel()
{
uint32 oldMSTime = getMSTime();
GuildXPperLevel.resize(sWorld->getIntConfig(CONFIG_GUILD_MAX_LEVEL));
for (uint8 level = 0; level < sWorld->getIntConfig(CONFIG_GUILD_MAX_LEVEL); ++level)
GuildXPperLevel[level] = 0;
// 0 1
QueryResult result = WorldDatabase.Query("SELECT lvl, xp_for_next_level FROM guild_xp_for_level");
if (!result)
{
sLog->outError(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 xp for guild level definitions. DB table `guild_xp_for_level` is empty.");
return;
}
uint32 count = 0;
do
{
Field* fields = result->Fetch();
uint32 level = fields[0].GetUInt32();
uint32 requiredXP = fields[1].GetUInt64();
if (level >= sWorld->getIntConfig(CONFIG_GUILD_MAX_LEVEL))
{
sLog->outInfo(LOG_FILTER_GENERAL, "Unused (> Guild.MaxLevel in worldserver.conf) level %u in `guild_xp_for_level` table, ignoring.", uint32(level));
continue;
}
GuildXPperLevel[level] = requiredXP;
++count;
}
while (result->NextRow());
// fill level gaps
for (uint8 level = 1; level < sWorld->getIntConfig(CONFIG_GUILD_MAX_LEVEL); ++level)
{
if (!GuildXPperLevel[level])
{
sLog->outError(LOG_FILTER_SQL, "Level %i does not have XP for guild level data. Using data of level [%i] + 1660000.", level+1, level);
GuildXPperLevel[level] = GuildXPperLevel[level - 1] + 1660000;
}
}
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u xp for guild level definitions in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
void GuildMgr::LoadGuildRewards()
{
GuildRewards.clear();
uint32 oldMSTime = getMSTime();
// 0 1 2 3 4
QueryResult result = WorldDatabase.Query("SELECT entry, standing, racemask, price, achievement FROM guild_rewards");
if (!result)
{
sLog->outError(LOG_FILTER_SERVER_LOADING, ">> Loaded 0 guild reward definitions. DB table `guild_rewards` is empty.");
return;
}
uint32 count = 0;
do
{
GuildReward reward;
Field* fields = result->Fetch();
reward.Entry = fields[0].GetUInt32();
reward.Standing = fields[1].GetUInt8();
reward.Racemask = fields[2].GetInt32();
reward.Price = fields[3].GetUInt64();
reward.AchievementId = fields[4].GetUInt32();
if (!sObjectMgr->GetItemTemplate(reward.Entry))
{
sLog->outError(LOG_FILTER_SERVER_LOADING, "Guild rewards contains not existing item entry %u", reward.Entry);
continue;
}
if (reward.AchievementId != 0 && (!sAchievementStore.LookupEntry(reward.AchievementId)))
{
sLog->outError(LOG_FILTER_SERVER_LOADING, "Guild rewards contains not existing achievement entry %u", reward.AchievementId);
continue;
}
if (reward.Standing >= MAX_REPUTATION_RANK)
{
sLog->outError(LOG_FILTER_SERVER_LOADING, "Guild rewards contains wrong reputation standing %u, max is %u", uint32(reward.Standing), MAX_REPUTATION_RANK - 1);
continue;
}
GuildRewards.push_back(reward);
++count;
}
while (result->NextRow());
sLog->outInfo(LOG_FILTER_SERVER_LOADING, ">> Loaded %u guild reward definitions in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
}
| [
"gennady.zamalaev@gmail.com"
] | gennady.zamalaev@gmail.com |
52e48fa3584db993ba9a1a590c899872b7c22d43 | 974d04d2ea27b1bba1c01015a98112d2afb78fe5 | /paddle/phi/kernels/cpu/gather_nd_grad_kernel.cc | 5aaec6f6139e5d03386bb7c061952aaf2e3f6340 | [
"Apache-2.0"
] | permissive | PaddlePaddle/Paddle | b3d2583119082c8e4b74331dacc4d39ed4d7cff0 | 22a11a60e0e3d10a3cf610077a3d9942a6f964cb | refs/heads/develop | 2023-08-17T21:27:30.568889 | 2023-08-17T12:38:22 | 2023-08-17T12:38:22 | 65,711,522 | 20,414 | 5,891 | Apache-2.0 | 2023-09-14T19:20:51 | 2016-08-15T06:59:08 | C++ | UTF-8 | C++ | false | false | 2,446 | cc | // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
//
// 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.
#include "paddle/phi/kernels/gather_nd_grad_kernel.h"
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/kernels/funcs/eigen/eigen_function.h"
#include "paddle/phi/kernels/funcs/scatter.h"
namespace phi {
template <typename T, typename Context>
void GatherNdGradKernel(const Context &ctx,
const DenseTensor &x UNUSED,
const DenseTensor &index,
const DenseTensor &out_grad,
DenseTensor *x_grad) {
ctx.template Alloc<T>(x_grad);
auto dxt = phi::EigenVector<T>::Flatten(*x_grad);
auto &place = *ctx.eigen_device();
dxt.device(place) = dxt.constant(static_cast<T>(0));
if (out_grad.numel() == 0) return;
auto index_type = index.dtype();
bool index_type_match =
index_type == phi::DataType::INT32 || index_type == phi::DataType::INT64;
PADDLE_ENFORCE_EQ(
index_type_match,
true,
phi::errors::InvalidArgument("Index holds the wrong type, it holds [%s],"
"but desires to be [%s] or [%s]",
index_type,
phi::DataType::INT32,
phi::DataType::INT64));
if (index_type == phi::DataType::INT32) {
phi::funcs::ScatterNdAdd<T, int32_t>(ctx, out_grad, index, x_grad);
} else if (index_type == phi::DataType::INT64) {
phi::funcs::ScatterNdAdd<T, int64_t>(ctx, out_grad, index, x_grad);
}
}
} // namespace phi
PD_REGISTER_KERNEL(gather_nd_grad,
CPU,
ALL_LAYOUT,
phi::GatherNdGradKernel,
float,
double,
int64_t,
int,
uint8_t) {}
| [
"noreply@github.com"
] | PaddlePaddle.noreply@github.com |
58c2e6700940eb6123171dad7a55ec7ecf752975 | e570b77af9045e8bf7eda0ad1656a9be2751b19e | /case/precFlowCylinder/system/fvSolution | befae1bf2da0614c8282c0ffc134b5cb5f378175 | [] | no_license | vitst/mpFoam | 2498e458d8d5241c1b3f4efef147b568ec0fa555 | 89a2b95f20d4e835fcff56cf77c0e7fbbc3fc4b5 | refs/heads/master | 2021-07-05T19:46:52.622398 | 2020-12-17T21:28:05 | 2020-12-17T21:28:05 | 226,392,899 | 2 | 3 | null | 2020-12-17T21:13:08 | 2019-12-06T19:09:41 | C++ | UTF-8 | C++ | false | false | 2,529 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "system";
object fvSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
solvers
{
"rho.*"
{
solver diagonal;
tolerance 1e-5;
relTol 0;
}
"alpha.*"
{
nAlphaCorr 1;
nAlphaSubCycles 2;
cAlphas ((liquid and solid) 0);
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-8;
relTol 0;
}
pcorr
{
solver PCG;
preconditioner DIC;
tolerance 1e-5;
relTol 0;
}
"p_rgh|sPhi.*"
{
solver PCG;
preconditioner DIC;
tolerance 1e-09;
relTol 0.02;
//maxIter 0;
}
p_rghFinal
{
$p_rgh;
relTol 0;
}
"U.*"
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-06;
relTol 0;
}
"Yi.*"
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-09;
relTol 0;
residualAlpha 1e-6;
}
"e.*|T.*"
{
solver PBiCG;
preconditioner DILU;
tolerance 1e-08;
relTol 0.0;
}
"C.*"
{
solver smoothSolver;
smoother symGaussSeidel;
tolerance 1e-09;
relTol 0;
residualAlpha 1e-6;
}
}
PIMPLE
{
momentumPredictor no;
nOuterCorrectors 1;
nCorrectors 3;
nNonOrthogonalCorrectors 0;
}
relaxationFactors
{
equations
{
".*" 1;
}
}
// ************************************************************************* //
| [
"fcyang@vt.edu"
] | fcyang@vt.edu | |
3c0f13eaf903fba9ca422658eea36c81c1b81d95 | 080e41c818bf0997c0f4ea242f36b014827ed46b | /src/integrators/pathtracer/pathtracer.h | 8f1f9590e9701d2f1108ed600a0fb35d2ab86f88 | [
"MIT"
] | permissive | sylvainbouxin/MiyukiRenderer | 1a00d75c84ac62f1f42e9da0dd3b5387489aa925 | 88242b9e18ca7eaa1c751ab07f585fac8b591b5a | refs/heads/master | 2020-04-22T00:57:14.420483 | 2019-02-10T00:00:24 | 2019-02-10T00:00:24 | 169,998,216 | 0 | 1 | null | 2019-02-10T16:21:07 | 2019-02-10T16:21:06 | null | UTF-8 | C++ | false | false | 955 | h | //
// Created by Shiina Miyuki on 2019/1/19.
//
#ifndef MIYUKI_PATH_H
#define MIYUKI_PATH_H
#include "../integrator.h"
#include "../../math/geometry.h"
#include "../../samplers/sampler.h"
#include "../../core/spectrum.h"
#include "../../core/intersection.h"
namespace Miyuki {
struct RenderContext;
class Light;
class PSSMLTUnidirectional;
class PathTracer : public Integrator {
//void renderPixel(const Point2i &, Sampler &);
protected:
friend class PSSMLTUnidirectional;
void iteration(Scene &);
Spectrum importanceSampleOneLight(Scene &scene,
RenderContext &ctx,
ScatteringEvent &event,
bool specular = false);
Spectrum render(const Point2i &, RenderContext &, Scene &);
public:
void render(Scene &) override;
};
}
#endif //MIYUKI_PATH_H
| [
"38184032+xt271828@users.noreply.github.com"
] | 38184032+xt271828@users.noreply.github.com |
65dd046b5ee64ca1611cc5e60914ee977f33139b | 4ca447904892cf433b31250ddf10a760429d51ac | /Level 1 Foundation/1. Basics of Programming/5. String, stringbuilder and arraylist/permutationOfString.cpp | 4daf9150bccc516111a34f28f97f2504e47cef35 | [] | no_license | Sounak-Dey/Coding | cf771d4268a7071631aa99bc20e5280b5decc146 | b0a01e5b5b05c9290f39c81ae7df054330e52800 | refs/heads/master | 2023-07-16T05:04:18.126147 | 2021-09-03T11:14:07 | 2021-09-03T11:14:07 | 369,949,860 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | cpp | #include <bits/stdc++.h>
using namespace std;
long long factorial(int n)
{
long long f = 1;
for(int i=1; i<=n; i++)
f *= i;
return f;
}
void permute(string s)
{
long long f = factorial(s.length());
for(int i=0; i<f; i++)
{
string p = s;
int t = i;
for(int div = s.length(); div>0; div--)
{
int r = t % div;
cout<<p[r];
p.erase(r,1);
t = t/div;
}
cout<<endl;
}
}
int main()
{
string str;
getline(cin,str);
permute(str);
return 0;
} | [
"sounak.dey@iiitb.ac.in"
] | sounak.dey@iiitb.ac.in |
9397d9d36a024538723f36ba336954cd6404fba4 | c586d7d5d503623763d5e2efe97f627b127d0ed0 | /cppprimer/getmax.cpp | cdded87e9e2ac96398a034695ce007d0c98ae9c2 | [] | no_license | hunterluok/Security | cc45f5da1584094e98a48bc33c3ca9a5b34b5301 | 60f06ab0d072f3fdab4720d891edc6442aba003e | refs/heads/master | 2021-06-07T04:19:15.957354 | 2020-07-02T10:19:39 | 2020-07-02T10:19:39 | 148,024,295 | 2 | 0 | null | 2019-10-19T14:19:47 | 2018-09-09T12:43:31 | Jupyter Notebook | UTF-8 | C++ | false | false | 486 | cpp | #include<iostream>
using namespace std;
template<typename Type>
const Type& getmax(const Type& value1 ,const Type& value2)
{
if(value1 > value2)
return value1;
else
return value2;
}
template<typename Type>
void display(const Type& value1, const Type& value2)
{
cout << "getmax (" << value1 << "," << value2 << ")=";
cout << getmax(value1, value2);
}
int main()
{
int int1 = -100, int2 = 200;
display(int1, int2);
double b1 = 0.3 , b2 =0.9;
display(b1, b2);
return 0;
} | [
"379733643@qq.com"
] | 379733643@qq.com |
beaaa10f2731603c5001fab461ecd751f1d14a29 | ccb9a8752eb5a5bc70305c65a1611736836a3e45 | /test/test_subtract_native.cpp | 2f622a812970f294b63bdaac1e19943ee8f065e4 | [
"BSL-1.0"
] | permissive | boostorg/safe_numerics | 5a1a8d903edbf312731345462dbf39d7fa39469d | 13ca3d6dd36db1aac2d6b5caca2c281d15c881ad | refs/heads/develop | 2023-08-18T20:08:56.199185 | 2022-06-07T01:22:59 | 2022-06-07T01:22:59 | 5,021,752 | 132 | 32 | BSL-1.0 | 2022-09-16T13:19:51 | 2012-07-13T16:14:14 | C++ | UTF-8 | C++ | false | false | 2,005 | cpp | // Copyright (c) 2012 Robert Ramey
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <iostream>
#include <boost/safe_numerics/safe_integer.hpp>
#include <boost/safe_numerics/automatic.hpp>
#include "test_subtract_native_results.hpp"
template <class T>
using safe_t = boost::safe_numerics::safe<
T,
boost::safe_numerics::native
>;
#include "test_subtract.hpp"
using namespace boost::mp11;
#include <boost/mp11/list.hpp>
#include <boost/mp11/algorithm.hpp>
#include <boost/core/demangle.hpp>
using namespace boost::mp11;
template<typename L>
struct test {
static_assert(mp_is_list<L>(), "must be a list of integral constants");
bool m_error;
test(bool b = true) : m_error(b) {}
operator bool(){
return m_error;
}
template<typename T>
void operator()(const T &){
static_assert(mp_is_list<T>(), "must be a list of two integral constants");
constexpr size_t i1 = mp_first<T>(); // index of first argument
constexpr size_t i2 = mp_second<T>();// index of second argument
std::cout << i1 << ',' << i2 << ',';
using T1 = typename mp_at_c<L, i1>::value_type;
using T2 = typename mp_at_c<L, i2>::value_type;
m_error &= test_subtract(
boost::mp11::mp_at_c<L, i1>()(), // value of first argument
boost::mp11::mp_at_c<L, i2>()(), // value of second argument
boost::core::demangle(typeid(T1).name()).c_str(),
boost::core::demangle(typeid(T2).name()).c_str(),
test_subtraction_native_result[i1][i2]
);
}
};
int main(){
//TEST_EACH_VALUE_PAIR
test<test_values> rval(true);
using value_indices = mp_iota_c<mp_size<test_values>::value>;
mp_for_each<
mp_product<mp_list, value_indices, value_indices>
>(rval);
std::cout << (rval ? "success!" : "failure") << std::endl;
return ! rval ;
}
| [
"ramey@rrsd.com"
] | ramey@rrsd.com |
a4af97af9659fd6c8ec81e0d69077f6154e2a3fc | 2cb738d554ef506568197a9a1111e223c6e4a1d2 | /23.Recursion Introduction/into.cpp | cfe64bb2beb1b08454816c6c843299949f689b43 | [] | no_license | palaktyagi000/Daily-CPP-Practice | d135c7ffebf24e22185bd2e3dfce0ac8438303fb | 4854d33f142d0982c77ace8e52a5290e266ca667 | refs/heads/master | 2023-07-05T05:18:07.645960 | 2021-08-20T08:49:14 | 2021-08-20T08:49:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 241 | cpp | #include<iostream>
using namespace std;
int fact(int n){
//base case
if(n==0){
return 1;
}
///recursive case
int small_ans = fact(n-1);
return n* small_ans;
}
int main(){
int n;
cin>>n;
cout<<fact(n)<<endl;
return 0;
} | [
"palaktyagi000@gmail.com"
] | palaktyagi000@gmail.com |
e345bca65f598e7713b4bbf00c858f0abda7f9da | 104891081cfa423c50dc0d57f92d3fa39f70dedf | /Sorting/QuickSort.cpp | dda96c05f950778c758ada7862c64362e9a37418 | [] | no_license | akash-ranjan8/Algorithms-Data-Structures | 0385bfdabd2e49d13c3532bac00b48baa6047a23 | 714a9a4b1c8e5039ef0f83dcfe06a49e24a826b0 | refs/heads/master | 2020-08-10T05:46:16.460436 | 2019-10-01T10:23:18 | 2019-10-01T10:23:18 | 214,272,826 | 1 | 0 | null | 2019-10-10T19:51:48 | 2019-10-10T19:51:48 | null | UTF-8 | C++ | false | false | 1,206 | cpp | #include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
bool isEqual(vi &v1, vi &v2){
return (v1.size() == v2.size() && std::equal(v1.begin(), v1.end(), v2.begin()));
}
void test(vi sorted, vi totest){
if(isEqual(sorted,totest))
cout<<"Correct\n";
else
for(auto x:totest)
cout<<x<<" ";
cout<<endl;
}
int partition(vi &v, int l, int r){
int pivot = v[r];
int i = l-1;
for(int j=l;j<r;j++){
if(v[j]<=pivot)swap(v[++i],v[j]);
}
swap(v[++i],v[r]);
return i;
}
void QuickSort(vi &v,int l,int r){
if(l>=r)return;
int pivot = partition(v,l,r);
QuickSort(v, l, pivot-1);
QuickSort(v, pivot+1, r);
}
int main(){
cin.sync_with_stdio(0); cin.tie(0); //Comment while performing interactive IO
cin.exceptions(cin.failbit); // Logical error on i/o operation
int n,k;
cin>>n>>k;
vi v(n,0);
for(int i=0;i<n;i++){
cin>>v[i];
}
QuickSort(v,0,sz(v) - 1);
vi s = v;
sort(s.begin(),s.end());
test(s,v);
}
| [
"prashantraghu999@gmail.com"
] | prashantraghu999@gmail.com |
41d933b0d60fd9e4596d52d1545e6e20076e19b8 | 75e4fde4d6b5306d2590d0ad79c68520de4ef715 | /week4/G2_8.cpp | 2d5ee965197c66c34165dae7346f069a713ac60b | [] | no_license | askarakshabayev/PP1_2019 | a01355d5d6622319de4532570ac4762a6c3be344 | f3d723f94590936a4eeceb1d270959462acca27c | refs/heads/master | 2020-07-15T09:37:44.219734 | 2019-11-09T11:40:23 | 2019-11-09T11:40:23 | 205,534,120 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 468 | cpp | #include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int a[n];
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < n - 1; i++) {
for (int j = i + 1; j < n; j++) {
if (a[i] < a[j]) {
int t = a[i];
a[i] = a[j];
a[j] = t;
}
}
}
for (int i = 0; i < n; i++) {
cout << a[i] << " ";
}
return 0;
} | [
"askar.akshabayev@gmail.com"
] | askar.akshabayev@gmail.com |
6c98906532f47745f692091abc5fff59690cca4b | def4aa717d027a64734fa9921a4457ed4c54d782 | /PracticeTest3_v2/words.cpp | 639adf5ac31e605cd2c3953a4069a2b21ab6310d | [] | no_license | StewartDouglas/cRevision | aa2c4abbd48d3a2856f061a8c62a385dd03e6aae | 7467b7e5199010c9058f9673c1261b30bd665847 | refs/heads/master | 2020-05-17T05:57:19.941964 | 2014-01-12T22:52:16 | 2014-01-12T22:52:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,755 | cpp | #include <iostream>
#include <cstring>
#include "words.h"
using namespace std;
void reverse(const char* input, char* output){
int length = strlen(input);
for(int n = length; n > 0; n--){
*output = input[n-1];
++output;
}
*output = '\0';
}
int compare(const char* string1, const char* string2){
// BASE CASE
if(*string1 == '\0' && *string2 == '\0')
return true;
// RECURSIVE CALL
else{
if(*string1 == '\0'){
if(isalnum(*string2)){
return false;
}
else
return compare(string1,++string2);
}
else if(*string2 == '\0'){
if(isalnum(*string1)){
return false;
}
else
return compare(++string1,string2);
}
else if(!isalnum(*string1) && isalnum(*string2))
return compare(++string1,string2);
else if(isalnum(*string1) && !isalnum(*string2))
return compare(string1,++string2);
else if(!isalnum(*string1) && !isalnum(*string2)){
return compare(++string1,++string2);
}
else if(isalnum(*string1) && isalnum(*string2)){
if(tolower(*string1) != tolower(*string2)){
return false;
}
else
return compare(++string1,++string2);
}
}
}
int palindrome(const char * string){
int size = strlen(string);
char output[size];
if(size == 1 || size == 0)
return 1;
if(size == 2){
if(isalpha(string[0]) && isalpha(string[1]))
return (tolower(string[0]) == tolower(string[1])) ? 1 : 0;
else
return (string[0] == string[1]) ? 1 : 0;
}
if(isalpha(string[0]) && isalpha(string[size-1])){
if(tolower(string[0]) == tolower(string[size-1])){
get_sublist(string,1,size-2,output);
return palindrome(output);
}
else {
return 0;
}
}
else if(!isalpha(string[0]) && isalpha(string[size-1])){
return palindrome(++string);
}
else if(isalpha(string[0]) && !isalpha(string[size-1])){
get_sublist(string,0,size-2,output);
return palindrome(output);
}
else{
get_sublist(string,1,size-2,output);
return palindrome(output);
}
}
void get_sublist(const char * input, int start, int end, char* output){
if(start == end)
*output = input[start];
else{
for(int n = start; n <= end; ++n){
*output = input[n];
++output;
}
}
*output = '\0';
}
int anagram(const char* string1, const char* string2){
int size = strlen(string2);
char anagram[size+1];
strcpy(anagram,string2);
//char* beginning = &anagram[0];
while(*string1 != '\0'){
if(isalpha(*string1)){
for(int i = 0; anagram[i] != '\0';){
i++;
if(tolower(*string1) == tolower(anagram[i])){
anagram[i] = ' ';
}
else if(anagram[i] == '\0')
return 0;
}
}
++string1;
}
return 1;
}
| [
"sd3112@vm-shell4.doc.ic.ac.uk"
] | sd3112@vm-shell4.doc.ic.ac.uk |
fe9089d1000652dcb256f2cafdd170799d9eef11 | 57b682454be4325a0739348e65ee07bb9f21c85e | /UVA/uva 10783.cpp | 126a723074cb129489b6c58fbdf15fa7ac38fc52 | [] | no_license | Prince-Baust/CodingGround | f2fff8e74a6f5343e242832e60eeb111da521467 | 2a8d97706a2564b609157586c955808fd7197254 | refs/heads/master | 2020-03-22T13:25:25.986395 | 2018-07-07T18:05:36 | 2018-07-07T18:05:36 | 140,106,935 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 352 | cpp | #include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
for(int i = 1; i <= t; i++)
{
int sum = 0;
int a, b;
cin >> a >> b;
for(int j = a; j <= b; j++)
{
if(j % 2 == 1)
sum += j;
}
cout << "Case " << i << ": " << sum << endl;
}
}
| [
"pmaruf42@gmail.com"
] | pmaruf42@gmail.com |
b9b73de89c09315ee71ee6ebd5e9d2acbc7a19a2 | 9c3d56aa96c6342bb41bc356199068875b285c79 | /GLProjectInRibbon/GLProjectInRibbon/Model.cpp | 9c0b5e3edde846c5f63709c85442121c7aab347f | [] | no_license | lhzqwe/MeshSimplification | df53d146a70c8dec32b9452e6456ee6a53c5e84e | 841e357176105efb90cdbe491e4ec6e6b3bb910a | refs/heads/master | 2021-01-21T18:10:57.128574 | 2018-03-21T07:14:23 | 2018-03-21T07:14:23 | 92,020,301 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,099 | cpp | #include "stdafx.h"
#include "Model.h"
Model::Model()
{
face_num = 0;
Mesh empty_mesh;
this->meshes.push_back(empty_mesh);
}
Model::Model(GLchar* path)
{
face_num = 0;
this->loadModel(path);
}
Model::~Model()
{
}
void Model::Draw(Shader shader)
{
for (GLuint i = 0; i < this->meshes.size(); i++)
{
this->meshes[i].Draw(shader);
}
}
void Model::loadModel(string path)
{
//Read file via Assimp
Assimp::Importer importer;
const aiScene* scene = importer.ReadFile(path, aiProcess_Triangulate | aiProcess_FlipUVs | aiProcess_JoinIdenticalVertices);
//Check for errors
if (!scene || scene->mFlags == AI_SCENE_FLAGS_INCOMPLETE || !scene->mRootNode) // if is Not Zero
{
cout << "ERROR::ASSIMP:: " << importer.GetErrorString() << endl;
return;
}
//Retrieve the directory path of the filepath
this->directory = path.substr(0, path.find_last_of('\\'));
//Pricess Assimp's root node recursively
this->processNode(scene->mRootNode, scene);
}
void Model::LoadModel(string path)
{
/*ifstream ifs;
ifs.open(path);
assert(ifs.good == true);
string in_word;*/
}
void Model::processNode(aiNode* node, const aiScene* scene)
{
//Process each mesh located at the current node
for (GLuint i = 0; i < node->mNumMeshes; i++)
{
//The node object only contains indices to index the actual objects in the scene
//The scene contains all the data, node is just to keep stuff organized(like relations between nodes)
aiMesh* mesh = scene->mMeshes[node->mMeshes[i]];
this->meshes.push_back(this->processMesh(mesh, scene));
}
//After we've processed all of the meshes (if any) we then recursively process each of the children nodes
for (GLuint i = 0; i < node->mNumChildren; i++)
{
this->processNode(node->mChildren[i], scene);
}
}
Mesh Model::processMesh(aiMesh* mesh, const aiScene* scene)
{
//Data to fill
vector<Vertex> vertices;
vector<GLuint> indices;
vector<Texture> textures;
//Walk through each of the mesh's vertices
for (GLuint i = 0; i < mesh->mNumVertices; i++)
{
Vertex vertex;
glm::vec3 vector;
//Positions
vector.x = mesh->mVertices[i].x;
vector.y = mesh->mVertices[i].y;
vector.z = mesh->mVertices[i].z;
vertex.Position = vector;
//Normals
vector.x = mesh->mNormals[i].x;
vector.y = mesh->mNormals[i].y;
vector.z = mesh->mNormals[i].z;
vertex.Normal = vector;
//Texture Coordinates
if (mesh->mTextureCoords[0]) // Does the mesh contain texture coordinates?
{
glm::vec2 vec;
//A Vertex can contain up to different texture coodinates.We thus make the assumption that we won't
//use models where a vertex can have multiple texture coodinates so we always take the first set(0)
vec.x = mesh->mTextureCoords[0][i].x;
vec.y = mesh->mTextureCoords[0][i].y;
vertex.TexCoords = vec;
}
else
vertex.TexCoords = glm::vec2(0.0f, 0.0f);
vertices.push_back(vertex);
}
//Now walk through each of the mesh's faces(a face is a mesh its triangle) and retrieve the corresponding vertex indices
for (GLuint i = 0; i < mesh->mNumFaces; i++)
{
aiFace face = mesh->mFaces[i];
//Retrieve all indices of the face and store them in the indices vector
for (GLuint j = 0; j < face.mNumIndices; j++)
indices.push_back(face.mIndices[j]);
}
//Process materials
if (mesh->mMaterialIndex >= 0)
{
aiMaterial* material = scene->mMaterials[mesh->mMaterialIndex];
//We assume a convention for sampler names in the shaders.Each diffuse texture should be named
//as 'texture_diffuseN' where N is a sequential number ranging from 1 to MAX_SAMPLER_NUMBER
//Same applices to other texture as the following list summarizes:
//Diffuse: texture_diffuseN
//Specular: texture_specularN
//Normal: texture_normalN
// 1. Diffuse maps
vector<Texture> diffuseMaps = this->loadMaterialTextures(material, aiTextureType_DIFFUSE, "texture_diffuse");
textures.insert(textures.end(), diffuseMaps.begin(), diffuseMaps.end());
// 2. Specular maps
vector<Texture> specularMaps = this->loadMaterialTextures(material, aiTextureType_SPECULAR, "texture_specular");
textures.insert(textures.end(), specularMaps.begin(), specularMaps.end());
}
//Return a mesh created from the extraced mesh data
face_num = indices.size() / 3;
return Mesh(vertices, indices, textures);
}
vector<Texture> Model::loadMaterialTextures(aiMaterial* mat, aiTextureType type, string typeName)
{
vector<Texture> textures;
for (GLuint i = 0; i < mat->GetTextureCount(type); i++)
{
aiString str;
mat->GetTexture(type, i, &str);
//Check if texture was loaded before and if so, continue to next iteration: skip loading a new texture
GLboolean skip = false;
for (GLuint j = 0; j < textures_loaded.size(); j++)
{
if (textures_loaded[j].path == str)
{
textures.push_back(textures_loaded[j]);
skip = true;
break;
}
}
if (!skip)
{
//If texture hasn't been loaded already, load it
Texture texture;
texture.id = TextureFromFile(str.C_Str(), this->directory);
texture.type = typeName;
texture.path = str;
textures.push_back(texture);
this->textures_loaded.push_back(texture);
}
}
return textures;
}
GLint Model::TextureFromFile(const char* path, string directory)
{
//Generate textureID and load texture data
string filename = string(path);
filename = directory + '\\' + filename;
GLuint textureID;
glGenTextures(1, &textureID);
int width, height;
unsigned char* image = SOIL_load_image(filename.c_str(), &width, &height, 0, SOIL_LOAD_RGB);
//Assign texture to ID
glBindTexture(GL_TEXTURE_2D, textureID);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, image);
glGenerateMipmap(GL_TEXTURE_2D);
//Parameters
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glBindTexture(GL_TEXTURE_2D, 0);
SOIL_free_image_data(image);
return textureID;
}
vector<Mesh> Model::getModelMeshes()
{
return this->meshes;
}
| [
"294980024@qq.com"
] | 294980024@qq.com |
3e47e5de442cea2c30f44643b29548d5137f32b5 | 160f31e9a3b10477e5a4549eac453e5305b8274c | /src/commonpp/net/http/Request.cpp | 28cfef10e9d00af03045ab6206d0b2ce6511d78c | [
"BSD-2-Clause"
] | permissive | mlove-au/commonpp | c2f3d8cf40473d64e5a6690aa0ded23b26489f6d | a73c012f14cf1ed833604218f43ff43954ca0b08 | refs/heads/master | 2020-12-25T17:56:13.914391 | 2017-03-17T17:09:54 | 2017-03-17T17:09:54 | 43,634,873 | 0 | 0 | null | 2015-10-04T11:56:18 | 2015-10-04T11:56:18 | null | UTF-8 | C++ | false | false | 2,237 | cpp | /*
* File: src/commonpp/net/http/Request.cpp
* Part of commonpp.
*
* Distributed under the 2-clause BSD licence (See LICENCE.TXT file at the
* project root).
*
* Copyright (c) 2015 Thomas Sanchez. All rights reserved.
*
*/
#include "commonpp/net/http/Request.hpp"
namespace commonpp
{
namespace net
{
namespace http
{
const std::string EOL = "\r\n";
static std::vector<char>& operator<<(std::vector<char>& v, const std::string& str)
{
v.insert(end(v), begin(str), end(str));
return v;
}
static std::vector<char>& operator<<(std::vector<char>& v, const char* str)
{
v.insert(end(v), str, str + ::strlen(str));
return v;
}
static std::vector<char>& operator<<(std::vector<char>& v,
const std::vector<char>& v2)
{
v.reserve(v.size() + v2.size());
v.insert(end(v), begin(v2), end(v2));
return v;
}
static std::vector<char>& operator<<(std::vector<char>& buff,
const Request::QueryParams& values)
{
auto it = std::begin(values);
auto end = std::end(values);
buff << it->first << "=" << it->second;
++it;
for (; it != end; ++it)
{
auto& v = *it;
buff << "&" << v.first << "=" << v.second;
}
return buff;
}
static std::vector<char>& operator<<(std::vector<char>& buff,
const Request::Headers& values)
{
for (auto& v : values)
{
buff << v.first << ": " << v.second << EOL;
}
return buff;
}
template <typename T>
static std::vector<char>& operator<<(std::vector<char>& v, T value)
{
return v << string::stringify(value);
}
std::vector<char> Request::buildRequest() const
{
std::vector<char> buffer;
buffer.reserve(BUFSIZ);
buffer << method_ << " " << path_;
if (not query_.empty())
{
buffer << "?" << query_;
}
buffer << " HTTP/" << major_ << "." << minor_ << EOL;
buffer << headers_;
if (not body_.empty())
{
buffer << "Content-Length: " << string::stringify(body_.size()) << EOL
<< EOL << body_;
}
else
{
buffer << EOL;
}
return buffer;
}
} // namespace http
} // namespace net
} // namespace commonpp
| [
"thomas.sanchz@gmail.com"
] | thomas.sanchz@gmail.com |
535a7962a87550efc1a2a7ba49c5a5e81010eafd | ff98a177902b8b97888a5e44eb59e5397a1826d8 | /codegen/facelift/templates/IPCServiceAdapter.template.cpp | 068ed4343aef5a7ed42e7cd2c922aa7e1a9a2222 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | bitmouse/facelift | 471c39415c1d6667ddc9552abb764e48f3ac4755 | 229d7ad81d8c3e361a207251759b4fc9a6f225cb | refs/heads/master | 2021-07-06T04:48:00.323219 | 2020-10-26T17:48:45 | 2020-10-26T17:48:45 | 199,874,162 | 0 | 0 | MIT | 2020-08-26T07:28:25 | 2019-07-31T14:38:35 | C++ | UTF-8 | C++ | false | false | 7,864 | cpp | {#*********************************************************************
**
** Copyright (C) 2018 Luxoft Sweden AB
**
** This file is part of the FaceLift project
**
** Permission is hereby granted, free of charge, to any person
** obtaining a copy of this software and associated documentation files
** (the "Software"), to deal in the Software without restriction,
** including without limitation the rights to use, copy, modify, merge,
** publish, distribute, sublicense, and/or sell copies of the Software,
** and to permit persons to whom the Software is furnished to do so,
** subject to the following conditions:
**
** The above copyright notice and this permission notice shall be
** included in all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
** NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
** BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
** ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
** CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
** SOFTWARE.
**
** SPDX-License-Identifier: MIT
**
*********************************************************************#}
/****************************************************************************
** This is an auto-generated file.
** Do not edit! All changes made to it will be lost.
****************************************************************************/
{% set className = interfaceName + proxyTypeNameSuffix %}
#include "{{className}}.h"
{{module.namespaceCppOpen}}
facelift::IPCHandlingResult {{className}}::handleMethodCallMessage(InputIPCMessage &requestMessage,
OutputIPCMessage &replyMessage)
{
Q_UNUSED(replyMessage); // Since we do not always have return values
Q_UNUSED(requestMessage);
const auto &member = requestMessage.member();
Q_UNUSED(member); // In case there are no methods
auto theService = service();
{% if (not interface.operations) %}
Q_UNUSED(theService);
{% endif %}
{% for operation in interface.operations %}
if (member == memberID(MethodID::{{operation.name}}, "{{operation.name}}")) {
{% for parameter in operation.parameters %}
{{parameter.cppType}} param_{{parameter.name}};
deserializeValue(requestMessage, param_{{parameter.name}});
{% endfor %}
{% if operation.isAsync %}
theService->{{operation.name}}({% for parameter in operation.parameters %} param_{{parameter.name}}, {%- endfor -%}
facelift::AsyncAnswer<{{operation.interfaceCppType}}>(this, [this, replyMessage] ({% if operation.hasReturnValue %} {{operation.interfaceCppType}} const & returnValue {% endif %}) mutable {
sendAsyncCallAnswer(replyMessage{% if operation.hasReturnValue %}, returnValue{% endif %});
}));
return facelift::IPCHandlingResult::OK_ASYNC;
{% else %}
{% if operation.hasReturnValue %}
auto returnValue =
{%- endif %}
theService->{{operation.name}}(
{%- set comma = joiner(", ") -%}
{%- for parameter in operation.parameters -%}
{{ comma() }}param_{{parameter.name}}
{%- endfor -%});
{% if operation.hasReturnValue %}
serializeValue(replyMessage, returnValue);
{% endif %}
{% endif %}
} else
{% endfor %}
{% for property in interface.properties %}
{% if property.type.is_model %}
if (member == memberID(MethodID::{{property.name}}, "{{property.name}}")) {
m_{{property.name}}Handler.handleModelRequest(requestMessage, replyMessage);
} else
{% endif %}
{% if (not property.readonly) %}
if (member == memberID(MethodID::set{{property.name}}, "set{{property.name}}")) {
{% if (not property.type.is_interface) %}
{{property.cppType}} value;
deserializeValue(requestMessage, value);
theService->set{{property.name}}(value);
{% else %}
Q_ASSERT(false); // Writable interface properties are unsupported
{% endif %}
} else
{% endif %}
{% endfor %}
{
return facelift::IPCHandlingResult::INVALID;
}
return facelift::IPCHandlingResult::OK;
}
void {{className}}::appendDBUSIntrospectionData(QTextStream &s) const
{
Q_UNUSED(s); // For empty interfaces
{% for property in interface.properties %}
::facelift::DBusSignatureHelper::addPropertySignature<ServiceType::PropertyType_{{property.name}}>(s, "{{property.name}}", {{ property.readonly | cppBool }});
{% endfor %}
{% for operation in interface.operations %}
{
std::array<const char*, {{ operation.parameters.__len__() }}> argumentNames = { {
{%- for parameter in operation.parameters -%}
"{{parameter}}",
{%- endfor -%}
} };
::facelift::DBusSignatureHelper::addMethodSignature<
{%- set comma = joiner(", ") -%}
{%- for parameter in operation.parameters -%}
{{ comma() }}{{parameter.cppType}}
{%- endfor -%}
>(s, "{{operation.name}}", argumentNames);
}
{% endfor %}
// signals
{% for signal in interface.signals %}
{
std::array<const char*, {{ signal.parameters.__len__() }}> argumentNames = { {
{%- for parameter in signal.parameters -%}
"{{parameter}}",
{%- endfor -%}
}};
::facelift::DBusSignatureHelper::addSignalSignature<
{%- set comma = joiner(", ") -%}
{%- for parameter in signal.parameters -%}
{{ comma() }}{{parameter.interfaceCppType}}
{%- endfor -%}
>(s, "{{signal.name}}", argumentNames);
}
{% endfor %}
}
void {{className}}::connectSignals()
{
auto theService = service();
Q_UNUSED(theService);
{% for property in interface.properties %}
{% if property.type.is_model %}
m_{{property.name}}Handler.connectModel(SignalID::{{property.name}}, theService->{{property.name}}());
{% elif property.type.is_interface %}
{% else %}
m_previous{{property.name}} = theService->{{property.name}}();
{% endif %}
{% endfor %}
// Properties
{% for property in interface.properties %}
{% if property.type.is_interface %}
m_{{property.name}}.update(this, theService->{{property.name}}());
QObject::connect(theService, &ServiceType::{{property.name}}Changed, this, [this, theService] () {
m_{{property.name}}.update(this, theService->{{property.name}}());
});
{% endif %}
QObject::connect(theService, &ServiceType::{{property.name}}Changed, this, [this] () {
this->sendSignal(SignalID::{{property.name}});
});
{% endfor %}
// Signals
{% for signal in interface.signals %}
QObject::connect(theService, &ServiceType::{{signal}}, this, &ThisType::{{signal}});
{% endfor %}
}
void {{className}}::serializePropertyValues(OutputIPCMessage& msg, bool isCompleteSnapshot)
{
auto theService = service();
{#% if (not interface.properties) %#}
Q_UNUSED(theService);
{#% endif %#}
{% for property in interface.properties %}
{% if property.type.is_interface %}
serializeOptionalValue(msg, m_{{property.name}}.objectPath(), m_previous{{property.name}}ObjectPath, isCompleteSnapshot);
{% elif property.type.is_model %}
if (isCompleteSnapshot) {
serializeValue(msg, theService->{{property.name}}().size());
}
{% else %}
serializeOptionalValue(msg, theService->{{property.name}}(), m_previous{{property.name}}, isCompleteSnapshot);
{% endif %}
{% endfor %}
BaseType::serializePropertyValues(msg, isCompleteSnapshot);
}
{{module.namespaceCppClose}}
| [
"jacques.guillou@gmail.com"
] | jacques.guillou@gmail.com |
4ceb99673a4afedadd06ebc07ad0e36d5aec26f9 | b0c8e0cafa4a8916faab3cce65756ae91426c43f | /study/C++2/Week4/BOJ_1495_양희웅.cpp | 3b9942894d823f0bb4deacfe9ae6693904be16c5 | [] | no_license | Rurril/IT-DA-3rd | b3e3ec3c2a5efbc75b76b84e9002c27a0ba4a1c4 | 9985e237cb1b90e9609656d534e0ed164723e281 | refs/heads/master | 2022-07-22T15:26:39.085369 | 2021-11-23T13:30:06 | 2021-11-23T13:30:06 | 288,980,334 | 3 | 29 | null | 2020-11-05T10:25:30 | 2020-08-20T10:49:17 | Java | UTF-8 | C++ | false | false | 935 | cpp | #include <iostream>
#define MAX(x,y) ((x)>(y)?(x):(y))
using namespace std;
/*
N: 곡의 개수
S: 시작 볼륨
M: 최대 볼륨
V: 변경할 수 있는 볼륨
*/
int N, S, M;
int V[101];
int memo[101][1000] {-1, };
int volume(int order, int curVol)
{
if (order > N || curVol < 0 || curVol > M) {
return -1;
}
if (memo[order][curVol] != -1) {
return memo[order][curVol];
}
memo[order][curVol] = volume(order + 1, curVol + V[order]) + volume(order + 1, curVol - V[order]);
return memo[order][curVol];
}
void solve()
{
int MV = 0; // Max Volume
volume(1, S);
for (int i = 0; i < M; i++) {
MV = MAX(MV, memo[N][i]);
}
cout << MV << endl;
}
/*
3 5 10
5 3 7
10
*/
void input()
{
cin >> N >> S >> M;
for (int i = 1; i <= N; i++) {
cin >> V[i];
}
}
int main(void)
{
input();
solve();
return 0;
} | [
"ungung97@naver.com"
] | ungung97@naver.com |
45ac1f206d5929ec84c3cbcc1541200ac98c7218 | 74974a648611428d6a599df353b5b1ca83dcc095 | /include/tvm/node/printer.h | a4c6a696633ccebe5143db58a961af61c6aa8f0f | [
"Apache-2.0",
"Zlib",
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense",
"BSD-2-Clause"
] | permissive | mx1mx2/incubator-tvm | 5458a3dcf6d583f20464a4ac61ee2d1a0fcbe35f | ee0af843f3c5a3429e888079afb5f30789bd9bee | refs/heads/master | 2020-12-15T04:30:24.358597 | 2020-01-20T01:18:51 | 2020-01-20T01:18:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,154 | h | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
/*!
* \file tvm/node/printer.h
* \brief Printer class to print repr string of each AST/IR nodes.
*/
#ifndef TVM_NODE_PRINTER_H_
#define TVM_NODE_PRINTER_H_
#include <tvm/node/functor.h>
#include <iostream>
namespace tvm {
/*! \brief A printer class to print the AST/IR nodes. */
class NodePrinter {
public:
/*! \brief The output stream */
std::ostream& stream;
/*! \brief The indentation level. */
int indent{0};
explicit NodePrinter(std::ostream& stream) // NOLINT(*)
: stream(stream) {}
/*! \brief The node to be printed. */
TVM_DLL void Print(const ObjectRef& node);
/*! \brief Print indent to the stream */
TVM_DLL void PrintIndent();
// Allow registration to be printer.
using FType = NodeFunctor<void(const ObjectRef&, NodePrinter*)>;
TVM_DLL static FType& vtable();
};
/*!
* \brief Dump the node to stderr, used for debug purposes.
* \param node The input node
*/
TVM_DLL void Dump(const ObjectRef& node);
} // namespace tvm
namespace tvm {
namespace runtime {
// default print function for all objects
// provide in the runtime namespace as this is where objectref originally comes from.
inline std::ostream& operator<<(std::ostream& os, const ObjectRef& n) { // NOLINT(*)
NodePrinter(os).Print(n);
return os;
}
} // namespace runtime
} // namespace tvm
#endif // TVM_NODE_PRINTER_H_
| [
"noreply@github.com"
] | mx1mx2.noreply@github.com |
f44b5b20dbd0366c357b92a6d5dd5ed005f6d540 | aa0e73afc7f7e06c626ab898cdf8dcabd5c2cfa8 | /include/vpp/vulkan/functions.hpp | ee998e02cafe12ed2f128f4ca51fd2b5324d8596 | [
"BSL-1.0",
"MIT"
] | permissive | gamagan/vpp | 8c466ce65c39317a3765ddd652d5cab26a9ed9fc | 2bd7c8ab1900cf4630176321b885b770d0a9117a | refs/heads/master | 2021-07-06T04:39:13.172046 | 2017-07-27T11:13:10 | 2017-07-27T11:13:10 | 106,061,676 | 1 | 0 | null | 2017-10-07T00:45:54 | 2017-10-07T00:45:54 | null | UTF-8 | C++ | false | false | 56,587 | hpp | // Copyright (c) 2017 nyorain
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt
// Automaitcally generated vulkan header file for the nyorain/vpp library.
// Do not edit manually, rather edit the codegen files.
#pragma once
#include "fwd.hpp"
#include "enums.hpp"
#include "structs.hpp"
#include "error.hpp"
#include "span.hpp"
#include <vector>
#include <vulkan/vulkan.h>
// static_assert(VK_HEADER_VERSION >= 48, "Vulkan and vpp header incompatibility");
#define VEC_FUNC(T, CT, F, ...) \
std::vector<T> ret; \
CT count = 0u; \
if(!error::success(VPP_CALL(F(__VA_ARGS__)))) return ret; \
ret.resize(count); \
VPP_CALL(F(__VA_ARGS__)); \
return ret;
#define VEC_FUNC_VOID(T, CT, F, ...) \
std::vector<T> ret; \
CT count = 0u; \
F(__VA_ARGS__); \
ret.resize(count); \
F(__VA_ARGS__); \
return ret;
#define VEC_FUNC_RET(T, C, F, ...) \
std::vector<T> ret; \
ret.resize(C); \
VPP_CALL(F(__VA_ARGS__)); \
return ret;
#define VEC_FUNC_RET_VOID(T, C, F, ...) \
std::vector<T> ret; \
ret.resize(C); \
F(__VA_ARGS__); \
return ret;
namespace vk {
inline Instance createInstance(const InstanceCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Instance ret = {}; VPP_CALL(vkCreateInstance((const VkInstanceCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkInstance*)(&ret))); return ret;}
inline void destroyInstance(Instance instance = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyInstance((VkInstance)(instance), (const VkAllocationCallbacks*)(pAllocator));}
inline Result enumeratePhysicalDevices(Instance instance, uint32_t& pPhysicalDeviceCount, PhysicalDevice* pPhysicalDevices = {}){ return static_cast<Result>(vkEnumeratePhysicalDevices((VkInstance)(instance), (uint32_t*)(&pPhysicalDeviceCount), (VkPhysicalDevice*)(pPhysicalDevices)));}
inline std::vector<PhysicalDevice> enumeratePhysicalDevices(Instance instance){ VEC_FUNC(PhysicalDevice, uint32_t, vkEnumeratePhysicalDevices, (VkInstance)(instance), &count, (VkPhysicalDevice*)(ret.data())); }
inline void getPhysicalDeviceFeatures(PhysicalDevice physicalDevice, PhysicalDeviceFeatures& pFeatures){ return vkGetPhysicalDeviceFeatures((VkPhysicalDevice)(physicalDevice), (VkPhysicalDeviceFeatures*)(&pFeatures));}
inline FormatProperties getPhysicalDeviceFormatProperties(PhysicalDevice physicalDevice, Format format){ FormatProperties ret = {}; vkGetPhysicalDeviceFormatProperties((VkPhysicalDevice)(physicalDevice), static_cast<VkFormat>(format), (VkFormatProperties*)(&ret)); return ret;}
inline ImageFormatProperties getPhysicalDeviceImageFormatProperties(PhysicalDevice physicalDevice, Format format, ImageType type, ImageTiling tiling, ImageUsageFlags usage, ImageCreateFlags flags = {}){ ImageFormatProperties ret = {}; VPP_CALL(vkGetPhysicalDeviceImageFormatProperties((VkPhysicalDevice)(physicalDevice), static_cast<VkFormat>(format), static_cast<VkImageType>(type), static_cast<VkImageTiling>(tiling), static_cast<VkImageUsageFlags>(usage), static_cast<VkImageCreateFlags>(flags), (VkImageFormatProperties*)(&ret))); return ret;}
inline PhysicalDeviceProperties getPhysicalDeviceProperties(PhysicalDevice physicalDevice){ PhysicalDeviceProperties ret = {}; vkGetPhysicalDeviceProperties((VkPhysicalDevice)(physicalDevice), (VkPhysicalDeviceProperties*)(&ret)); return ret;}
inline void getPhysicalDeviceQueueFamilyProperties(PhysicalDevice physicalDevice, uint32_t& pQueueFamilyPropertyCount, QueueFamilyProperties* pQueueFamilyProperties = {}){ return vkGetPhysicalDeviceQueueFamilyProperties((VkPhysicalDevice)(physicalDevice), (uint32_t*)(&pQueueFamilyPropertyCount), (VkQueueFamilyProperties*)(pQueueFamilyProperties));}
inline std::vector<QueueFamilyProperties> getPhysicalDeviceQueueFamilyProperties(PhysicalDevice physicalDevice){ VEC_FUNC_VOID(QueueFamilyProperties, uint32_t, vkGetPhysicalDeviceQueueFamilyProperties, (VkPhysicalDevice)(physicalDevice), &count, (VkQueueFamilyProperties*)(ret.data())); }
inline PhysicalDeviceMemoryProperties getPhysicalDeviceMemoryProperties(PhysicalDevice physicalDevice){ PhysicalDeviceMemoryProperties ret = {}; vkGetPhysicalDeviceMemoryProperties((VkPhysicalDevice)(physicalDevice), (VkPhysicalDeviceMemoryProperties*)(&ret)); return ret;}
inline PfnVoidFunction getInstanceProcAddr(Instance instance, const char* pName){ return static_cast<PfnVoidFunction>(vkGetInstanceProcAddr((VkInstance)(instance), (const char*)(pName)));}
inline PfnVoidFunction getDeviceProcAddr(Device device, const char* pName){ return static_cast<PfnVoidFunction>(vkGetDeviceProcAddr((VkDevice)(device), (const char*)(pName)));}
inline Device createDevice(PhysicalDevice physicalDevice, const DeviceCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Device ret = {}; VPP_CALL(vkCreateDevice((VkPhysicalDevice)(physicalDevice), (const VkDeviceCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkDevice*)(&ret))); return ret;}
inline void destroyDevice(Device device = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyDevice((VkDevice)(device), (const VkAllocationCallbacks*)(pAllocator));}
inline Result enumerateInstanceExtensionProperties(const char* pLayerName, uint32_t& pPropertyCount, ExtensionProperties* pProperties = {}){ return static_cast<Result>(vkEnumerateInstanceExtensionProperties((const char*)(pLayerName), (uint32_t*)(&pPropertyCount), (VkExtensionProperties*)(pProperties)));}
inline std::vector<ExtensionProperties> enumerateInstanceExtensionProperties(const char* pLayerName){ VEC_FUNC(ExtensionProperties, uint32_t, vkEnumerateInstanceExtensionProperties, (const char*)(pLayerName), &count, (VkExtensionProperties*)(ret.data())); }
inline Result enumerateDeviceExtensionProperties(PhysicalDevice physicalDevice, const char* pLayerName, uint32_t& pPropertyCount, ExtensionProperties* pProperties = {}){ return static_cast<Result>(vkEnumerateDeviceExtensionProperties((VkPhysicalDevice)(physicalDevice), (const char*)(pLayerName), (uint32_t*)(&pPropertyCount), (VkExtensionProperties*)(pProperties)));}
inline std::vector<ExtensionProperties> enumerateDeviceExtensionProperties(PhysicalDevice physicalDevice, const char* pLayerName){ VEC_FUNC(ExtensionProperties, uint32_t, vkEnumerateDeviceExtensionProperties, (VkPhysicalDevice)(physicalDevice), (const char*)(pLayerName), &count, (VkExtensionProperties*)(ret.data())); }
inline Result enumerateInstanceLayerProperties(uint32_t& pPropertyCount, LayerProperties* pProperties = {}){ return static_cast<Result>(vkEnumerateInstanceLayerProperties((uint32_t*)(&pPropertyCount), (VkLayerProperties*)(pProperties)));}
inline std::vector<LayerProperties> enumerateInstanceLayerProperties(){ VEC_FUNC(LayerProperties, uint32_t, vkEnumerateInstanceLayerProperties, &count, (VkLayerProperties*)(ret.data())); }
inline Result enumerateDeviceLayerProperties(PhysicalDevice physicalDevice, uint32_t& pPropertyCount, LayerProperties* pProperties = {}){ return static_cast<Result>(vkEnumerateDeviceLayerProperties((VkPhysicalDevice)(physicalDevice), (uint32_t*)(&pPropertyCount), (VkLayerProperties*)(pProperties)));}
inline std::vector<LayerProperties> enumerateDeviceLayerProperties(PhysicalDevice physicalDevice){ VEC_FUNC(LayerProperties, uint32_t, vkEnumerateDeviceLayerProperties, (VkPhysicalDevice)(physicalDevice), &count, (VkLayerProperties*)(ret.data())); }
inline Queue getDeviceQueue(Device device, uint32_t queueFamilyIndex, uint32_t queueIndex){ Queue ret = {}; vkGetDeviceQueue((VkDevice)(device), queueFamilyIndex, queueIndex, (VkQueue*)(&ret)); return ret;}
inline Result queueSubmit(Queue queue, uint32_t submitCount, const SubmitInfo& pSubmits, Fence fence = {}){ return static_cast<Result>(vkQueueSubmit((VkQueue)(queue), submitCount, (const VkSubmitInfo*)(&pSubmits), (VkFence)(fence)));}
inline Result queueSubmit(Queue queue, nytl::Span<const SubmitInfo> pSubmits, Fence fence = {}){ return VPP_CALL(vkQueueSubmit((VkQueue)(queue), pSubmits.size(), (const VkSubmitInfo*)(pSubmits.data()), (VkFence)(fence))) ;}
inline Result queueWaitIdle(Queue queue){ return static_cast<Result>(vkQueueWaitIdle((VkQueue)(queue)));}
inline Result deviceWaitIdle(Device device){ return static_cast<Result>(vkDeviceWaitIdle((VkDevice)(device)));}
inline DeviceMemory allocateMemory(Device device, const MemoryAllocateInfo& pAllocateInfo, const AllocationCallbacks* pAllocator = {}){ DeviceMemory ret = {}; VPP_CALL(vkAllocateMemory((VkDevice)(device), (const VkMemoryAllocateInfo*)(&pAllocateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkDeviceMemory*)(&ret))); return ret;}
inline void freeMemory(Device device, DeviceMemory memory = {}, const AllocationCallbacks* pAllocator = {}){ return vkFreeMemory((VkDevice)(device), (VkDeviceMemory)(memory), (const VkAllocationCallbacks*)(pAllocator));}
inline void* mapMemory(Device device, DeviceMemory memory, DeviceSize offset, DeviceSize size, MemoryMapFlags flags = {}){ void* ret = {}; VPP_CALL(vkMapMemory((VkDevice)(device), (VkDeviceMemory)(memory), offset, size, static_cast<VkMemoryMapFlags>(flags), (void**)(&ret))); return ret;}
inline void unmapMemory(Device device, DeviceMemory memory){ return vkUnmapMemory((VkDevice)(device), (VkDeviceMemory)(memory));}
inline Result flushMappedMemoryRanges(Device device, uint32_t memoryRangeCount, const MappedMemoryRange& pMemoryRanges){ return static_cast<Result>(vkFlushMappedMemoryRanges((VkDevice)(device), memoryRangeCount, (const VkMappedMemoryRange*)(&pMemoryRanges)));}
inline Result flushMappedMemoryRanges(Device device, nytl::Span<const MappedMemoryRange> pMemoryRanges){ return VPP_CALL(vkFlushMappedMemoryRanges((VkDevice)(device), pMemoryRanges.size(), (const VkMappedMemoryRange*)(pMemoryRanges.data()))) ;}
inline Result invalidateMappedMemoryRanges(Device device, uint32_t memoryRangeCount, const MappedMemoryRange& pMemoryRanges){ return static_cast<Result>(vkInvalidateMappedMemoryRanges((VkDevice)(device), memoryRangeCount, (const VkMappedMemoryRange*)(&pMemoryRanges)));}
inline Result invalidateMappedMemoryRanges(Device device, nytl::Span<const MappedMemoryRange> pMemoryRanges){ return VPP_CALL(vkInvalidateMappedMemoryRanges((VkDevice)(device), pMemoryRanges.size(), (const VkMappedMemoryRange*)(pMemoryRanges.data()))) ;}
inline DeviceSize getDeviceMemoryCommitment(Device device, DeviceMemory memory){ DeviceSize ret = {}; vkGetDeviceMemoryCommitment((VkDevice)(device), (VkDeviceMemory)(memory), (VkDeviceSize*)(&ret)); return ret;}
inline Result bindBufferMemory(Device device, Buffer buffer, DeviceMemory memory, DeviceSize memoryOffset){ return static_cast<Result>(vkBindBufferMemory((VkDevice)(device), (VkBuffer)(buffer), (VkDeviceMemory)(memory), memoryOffset));}
inline Result bindImageMemory(Device device, Image image, DeviceMemory memory, DeviceSize memoryOffset){ return static_cast<Result>(vkBindImageMemory((VkDevice)(device), (VkImage)(image), (VkDeviceMemory)(memory), memoryOffset));}
inline MemoryRequirements getBufferMemoryRequirements(Device device, Buffer buffer){ MemoryRequirements ret = {}; vkGetBufferMemoryRequirements((VkDevice)(device), (VkBuffer)(buffer), (VkMemoryRequirements*)(&ret)); return ret;}
inline MemoryRequirements getImageMemoryRequirements(Device device, Image image){ MemoryRequirements ret = {}; vkGetImageMemoryRequirements((VkDevice)(device), (VkImage)(image), (VkMemoryRequirements*)(&ret)); return ret;}
inline void getImageSparseMemoryRequirements(Device device, Image image, uint32_t& pSparseMemoryRequirementCount, SparseImageMemoryRequirements* pSparseMemoryRequirements = {}){ return vkGetImageSparseMemoryRequirements((VkDevice)(device), (VkImage)(image), (uint32_t*)(&pSparseMemoryRequirementCount), (VkSparseImageMemoryRequirements*)(pSparseMemoryRequirements));}
inline std::vector<SparseImageMemoryRequirements> getImageSparseMemoryRequirements(Device device, Image image){ VEC_FUNC_VOID(SparseImageMemoryRequirements, uint32_t, vkGetImageSparseMemoryRequirements, (VkDevice)(device), (VkImage)(image), &count, (VkSparseImageMemoryRequirements*)(ret.data())); }
inline void getPhysicalDeviceSparseImageFormatProperties(PhysicalDevice physicalDevice, Format format, ImageType type, SampleCountBits samples, ImageUsageFlags usage, ImageTiling tiling, uint32_t& pPropertyCount, SparseImageFormatProperties* pProperties = {}){ return vkGetPhysicalDeviceSparseImageFormatProperties((VkPhysicalDevice)(physicalDevice), static_cast<VkFormat>(format), static_cast<VkImageType>(type), static_cast<VkSampleCountFlagBits>(samples), static_cast<VkImageUsageFlags>(usage), static_cast<VkImageTiling>(tiling), (uint32_t*)(&pPropertyCount), (VkSparseImageFormatProperties*)(pProperties));}
inline std::vector<SparseImageFormatProperties> getPhysicalDeviceSparseImageFormatProperties(PhysicalDevice physicalDevice, Format format, ImageType type, SampleCountBits samples, ImageUsageFlags usage, ImageTiling tiling){ VEC_FUNC_VOID(SparseImageFormatProperties, uint32_t, vkGetPhysicalDeviceSparseImageFormatProperties, (VkPhysicalDevice)(physicalDevice), static_cast<VkFormat>(format), static_cast<VkImageType>(type), static_cast<VkSampleCountFlagBits>(samples), static_cast<VkImageUsageFlags>(usage), static_cast<VkImageTiling>(tiling), &count, (VkSparseImageFormatProperties*)(ret.data())); }
inline Result queueBindSparse(Queue queue, uint32_t bindInfoCount, const BindSparseInfo& pBindInfo, Fence fence = {}){ return static_cast<Result>(vkQueueBindSparse((VkQueue)(queue), bindInfoCount, (const VkBindSparseInfo*)(&pBindInfo), (VkFence)(fence)));}
inline Result queueBindSparse(Queue queue, nytl::Span<const BindSparseInfo> pBindInfo, Fence fence = {}){ return VPP_CALL(vkQueueBindSparse((VkQueue)(queue), pBindInfo.size(), (const VkBindSparseInfo*)(pBindInfo.data()), (VkFence)(fence))) ;}
inline Fence createFence(Device device, const FenceCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Fence ret = {}; VPP_CALL(vkCreateFence((VkDevice)(device), (const VkFenceCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkFence*)(&ret))); return ret;}
inline void destroyFence(Device device, Fence fence = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyFence((VkDevice)(device), (VkFence)(fence), (const VkAllocationCallbacks*)(pAllocator));}
inline Result resetFences(Device device, uint32_t fenceCount, const Fence& pFences){ return static_cast<Result>(vkResetFences((VkDevice)(device), fenceCount, (const VkFence*)(&pFences)));}
inline Result resetFences(Device device, nytl::Span<const Fence> pFences){ return VPP_CALL(vkResetFences((VkDevice)(device), pFences.size(), (const VkFence*)(pFences.data()))) ;}
inline Result getFenceStatus(Device device, Fence fence){ return static_cast<Result>(vkGetFenceStatus((VkDevice)(device), (VkFence)(fence)));}
inline Result waitForFences(Device device, uint32_t fenceCount, const Fence& pFences, Bool32 waitAll, uint64_t timeout){ return static_cast<Result>(vkWaitForFences((VkDevice)(device), fenceCount, (const VkFence*)(&pFences), waitAll, timeout));}
inline Result waitForFences(Device device, nytl::Span<const Fence> pFences, Bool32 waitAll, uint64_t timeout){ return VPP_CALL(vkWaitForFences((VkDevice)(device), pFences.size(), (const VkFence*)(pFences.data()), waitAll, timeout)) ;}
inline Semaphore createSemaphore(Device device, const SemaphoreCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Semaphore ret = {}; VPP_CALL(vkCreateSemaphore((VkDevice)(device), (const VkSemaphoreCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkSemaphore*)(&ret))); return ret;}
inline void destroySemaphore(Device device, Semaphore semaphore = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroySemaphore((VkDevice)(device), (VkSemaphore)(semaphore), (const VkAllocationCallbacks*)(pAllocator));}
inline Event createEvent(Device device, const EventCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Event ret = {}; VPP_CALL(vkCreateEvent((VkDevice)(device), (const VkEventCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkEvent*)(&ret))); return ret;}
inline void destroyEvent(Device device, Event event = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyEvent((VkDevice)(device), (VkEvent)(event), (const VkAllocationCallbacks*)(pAllocator));}
inline Result getEventStatus(Device device, Event event){ return static_cast<Result>(vkGetEventStatus((VkDevice)(device), (VkEvent)(event)));}
inline Result setEvent(Device device, Event event){ return static_cast<Result>(vkSetEvent((VkDevice)(device), (VkEvent)(event)));}
inline Result resetEvent(Device device, Event event){ return static_cast<Result>(vkResetEvent((VkDevice)(device), (VkEvent)(event)));}
inline QueryPool createQueryPool(Device device, const QueryPoolCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ QueryPool ret = {}; VPP_CALL(vkCreateQueryPool((VkDevice)(device), (const VkQueryPoolCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkQueryPool*)(&ret))); return ret;}
inline void destroyQueryPool(Device device, QueryPool queryPool = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyQueryPool((VkDevice)(device), (VkQueryPool)(queryPool), (const VkAllocationCallbacks*)(pAllocator));}
inline Result getQueryPoolResults(Device device, QueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, DeviceSize stride, QueryResultFlags flags = {}){ return static_cast<Result>(vkGetQueryPoolResults((VkDevice)(device), (VkQueryPool)(queryPool), firstQuery, queryCount, dataSize, (void*)(pData), stride, static_cast<VkQueryResultFlags>(flags)));}
inline std::vector<uint8_t> getQueryPoolResults(Device device, QueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, DeviceSize stride, QueryResultFlags flags = {}){ VEC_FUNC_RET(uint8_t, dataSize, vkGetQueryPoolResults, (VkDevice)(device), (VkQueryPool)(queryPool), firstQuery, queryCount, dataSize, (void*)(ret.data()), stride, static_cast<VkQueryResultFlags>(flags)); }
inline Buffer createBuffer(Device device, const BufferCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Buffer ret = {}; VPP_CALL(vkCreateBuffer((VkDevice)(device), (const VkBufferCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkBuffer*)(&ret))); return ret;}
inline void destroyBuffer(Device device, Buffer buffer = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyBuffer((VkDevice)(device), (VkBuffer)(buffer), (const VkAllocationCallbacks*)(pAllocator));}
inline BufferView createBufferView(Device device, const BufferViewCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ BufferView ret = {}; VPP_CALL(vkCreateBufferView((VkDevice)(device), (const VkBufferViewCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkBufferView*)(&ret))); return ret;}
inline void destroyBufferView(Device device, BufferView bufferView = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyBufferView((VkDevice)(device), (VkBufferView)(bufferView), (const VkAllocationCallbacks*)(pAllocator));}
inline Image createImage(Device device, const ImageCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Image ret = {}; VPP_CALL(vkCreateImage((VkDevice)(device), (const VkImageCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkImage*)(&ret))); return ret;}
inline void destroyImage(Device device, Image image = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyImage((VkDevice)(device), (VkImage)(image), (const VkAllocationCallbacks*)(pAllocator));}
inline SubresourceLayout getImageSubresourceLayout(Device device, Image image, const ImageSubresource& pSubresource){ SubresourceLayout ret = {}; vkGetImageSubresourceLayout((VkDevice)(device), (VkImage)(image), (const VkImageSubresource*)(&pSubresource), (VkSubresourceLayout*)(&ret)); return ret;}
inline ImageView createImageView(Device device, const ImageViewCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ ImageView ret = {}; VPP_CALL(vkCreateImageView((VkDevice)(device), (const VkImageViewCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkImageView*)(&ret))); return ret;}
inline void destroyImageView(Device device, ImageView imageView = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyImageView((VkDevice)(device), (VkImageView)(imageView), (const VkAllocationCallbacks*)(pAllocator));}
inline ShaderModule createShaderModule(Device device, const ShaderModuleCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ ShaderModule ret = {}; VPP_CALL(vkCreateShaderModule((VkDevice)(device), (const VkShaderModuleCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkShaderModule*)(&ret))); return ret;}
inline void destroyShaderModule(Device device, ShaderModule shaderModule = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyShaderModule((VkDevice)(device), (VkShaderModule)(shaderModule), (const VkAllocationCallbacks*)(pAllocator));}
inline PipelineCache createPipelineCache(Device device, const PipelineCacheCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ PipelineCache ret = {}; VPP_CALL(vkCreatePipelineCache((VkDevice)(device), (const VkPipelineCacheCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkPipelineCache*)(&ret))); return ret;}
inline void destroyPipelineCache(Device device, PipelineCache pipelineCache = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyPipelineCache((VkDevice)(device), (VkPipelineCache)(pipelineCache), (const VkAllocationCallbacks*)(pAllocator));}
inline Result getPipelineCacheData(Device device, PipelineCache pipelineCache, size_t& pDataSize, void* pData = {}){ return static_cast<Result>(vkGetPipelineCacheData((VkDevice)(device), (VkPipelineCache)(pipelineCache), (size_t*)(&pDataSize), (void*)(pData)));}
inline std::vector<uint8_t> getPipelineCacheData(Device device, PipelineCache pipelineCache){ VEC_FUNC(uint8_t, size_t, vkGetPipelineCacheData, (VkDevice)(device), (VkPipelineCache)(pipelineCache), &count, (void*)(ret.data())); }
inline Result mergePipelineCaches(Device device, PipelineCache dstCache, uint32_t srcCacheCount, const PipelineCache& pSrcCaches){ return static_cast<Result>(vkMergePipelineCaches((VkDevice)(device), (VkPipelineCache)(dstCache), srcCacheCount, (const VkPipelineCache*)(&pSrcCaches)));}
inline Result mergePipelineCaches(Device device, PipelineCache dstCache, nytl::Span<const PipelineCache> pSrcCaches){ return VPP_CALL(vkMergePipelineCaches((VkDevice)(device), (VkPipelineCache)(dstCache), pSrcCaches.size(), (const VkPipelineCache*)(pSrcCaches.data()))) ;}
inline Result createGraphicsPipelines(Device device, PipelineCache pipelineCache, uint32_t createInfoCount, const GraphicsPipelineCreateInfo& pCreateInfos, const AllocationCallbacks* pAllocator, Pipeline& pPipelines){ return static_cast<Result>(vkCreateGraphicsPipelines((VkDevice)(device), (VkPipelineCache)(pipelineCache), createInfoCount, (const VkGraphicsPipelineCreateInfo*)(&pCreateInfos), (const VkAllocationCallbacks*)(pAllocator), (VkPipeline*)(&pPipelines)));}
inline std::vector<Pipeline> createGraphicsPipelines(Device device, PipelineCache pipelineCache, nytl::Span<const GraphicsPipelineCreateInfo> pCreateInfos, const AllocationCallbacks* pAllocator = {}){ VEC_FUNC_RET(Pipeline, pCreateInfos.size(), vkCreateGraphicsPipelines, (VkDevice)(device), (VkPipelineCache)(pipelineCache), pCreateInfos.size(), (const VkGraphicsPipelineCreateInfo*)(pCreateInfos.data()), (const VkAllocationCallbacks*)(pAllocator), (VkPipeline*)(ret.data())); }
inline Result createComputePipelines(Device device, PipelineCache pipelineCache, uint32_t createInfoCount, const ComputePipelineCreateInfo& pCreateInfos, const AllocationCallbacks* pAllocator, Pipeline& pPipelines){ return static_cast<Result>(vkCreateComputePipelines((VkDevice)(device), (VkPipelineCache)(pipelineCache), createInfoCount, (const VkComputePipelineCreateInfo*)(&pCreateInfos), (const VkAllocationCallbacks*)(pAllocator), (VkPipeline*)(&pPipelines)));}
inline std::vector<Pipeline> createComputePipelines(Device device, PipelineCache pipelineCache, nytl::Span<const ComputePipelineCreateInfo> pCreateInfos, const AllocationCallbacks* pAllocator = {}){ VEC_FUNC_RET(Pipeline, pCreateInfos.size(), vkCreateComputePipelines, (VkDevice)(device), (VkPipelineCache)(pipelineCache), pCreateInfos.size(), (const VkComputePipelineCreateInfo*)(pCreateInfos.data()), (const VkAllocationCallbacks*)(pAllocator), (VkPipeline*)(ret.data())); }
inline void destroyPipeline(Device device, Pipeline pipeline = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyPipeline((VkDevice)(device), (VkPipeline)(pipeline), (const VkAllocationCallbacks*)(pAllocator));}
inline PipelineLayout createPipelineLayout(Device device, const PipelineLayoutCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ PipelineLayout ret = {}; VPP_CALL(vkCreatePipelineLayout((VkDevice)(device), (const VkPipelineLayoutCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkPipelineLayout*)(&ret))); return ret;}
inline void destroyPipelineLayout(Device device, PipelineLayout pipelineLayout = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyPipelineLayout((VkDevice)(device), (VkPipelineLayout)(pipelineLayout), (const VkAllocationCallbacks*)(pAllocator));}
inline Sampler createSampler(Device device, const SamplerCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Sampler ret = {}; VPP_CALL(vkCreateSampler((VkDevice)(device), (const VkSamplerCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkSampler*)(&ret))); return ret;}
inline void destroySampler(Device device, Sampler sampler = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroySampler((VkDevice)(device), (VkSampler)(sampler), (const VkAllocationCallbacks*)(pAllocator));}
inline DescriptorSetLayout createDescriptorSetLayout(Device device, const DescriptorSetLayoutCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ DescriptorSetLayout ret = {}; VPP_CALL(vkCreateDescriptorSetLayout((VkDevice)(device), (const VkDescriptorSetLayoutCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkDescriptorSetLayout*)(&ret))); return ret;}
inline void destroyDescriptorSetLayout(Device device, DescriptorSetLayout descriptorSetLayout = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyDescriptorSetLayout((VkDevice)(device), (VkDescriptorSetLayout)(descriptorSetLayout), (const VkAllocationCallbacks*)(pAllocator));}
inline DescriptorPool createDescriptorPool(Device device, const DescriptorPoolCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ DescriptorPool ret = {}; VPP_CALL(vkCreateDescriptorPool((VkDevice)(device), (const VkDescriptorPoolCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkDescriptorPool*)(&ret))); return ret;}
inline void destroyDescriptorPool(Device device, DescriptorPool descriptorPool = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyDescriptorPool((VkDevice)(device), (VkDescriptorPool)(descriptorPool), (const VkAllocationCallbacks*)(pAllocator));}
inline Result resetDescriptorPool(Device device, DescriptorPool descriptorPool, DescriptorPoolResetFlags flags = {}){ return static_cast<Result>(vkResetDescriptorPool((VkDevice)(device), (VkDescriptorPool)(descriptorPool), static_cast<VkDescriptorPoolResetFlags>(flags)));}
inline Result allocateDescriptorSets(Device device, const DescriptorSetAllocateInfo& pAllocateInfo, DescriptorSet& pDescriptorSets){ return static_cast<Result>(vkAllocateDescriptorSets((VkDevice)(device), (const VkDescriptorSetAllocateInfo*)(&pAllocateInfo), (VkDescriptorSet*)(&pDescriptorSets)));}
inline std::vector<DescriptorSet> allocateDescriptorSets(Device device, const DescriptorSetAllocateInfo& pAllocateInfo){ VEC_FUNC_RET(DescriptorSet, pAllocateInfo.descriptorSetCount, vkAllocateDescriptorSets, (VkDevice)(device), (const VkDescriptorSetAllocateInfo*)(&pAllocateInfo), (VkDescriptorSet*)(ret.data())); }
inline Result freeDescriptorSets(Device device, DescriptorPool descriptorPool, uint32_t descriptorSetCount, const DescriptorSet& pDescriptorSets){ return static_cast<Result>(vkFreeDescriptorSets((VkDevice)(device), (VkDescriptorPool)(descriptorPool), descriptorSetCount, (const VkDescriptorSet*)(&pDescriptorSets)));}
inline Result freeDescriptorSets(Device device, DescriptorPool descriptorPool, nytl::Span<const DescriptorSet> pDescriptorSets){ return VPP_CALL(vkFreeDescriptorSets((VkDevice)(device), (VkDescriptorPool)(descriptorPool), pDescriptorSets.size(), (const VkDescriptorSet*)(pDescriptorSets.data()))) ;}
inline void updateDescriptorSets(Device device, uint32_t descriptorWriteCount, const WriteDescriptorSet& pDescriptorWrites, uint32_t descriptorCopyCount, const CopyDescriptorSet& pDescriptorCopies){ return vkUpdateDescriptorSets((VkDevice)(device), descriptorWriteCount, (const VkWriteDescriptorSet*)(&pDescriptorWrites), descriptorCopyCount, (const VkCopyDescriptorSet*)(&pDescriptorCopies));}
inline void updateDescriptorSets(Device device, nytl::Span<const WriteDescriptorSet> pDescriptorWrites, nytl::Span<const CopyDescriptorSet> pDescriptorCopies){ vkUpdateDescriptorSets((VkDevice)(device), pDescriptorWrites.size(), (const VkWriteDescriptorSet*)(pDescriptorWrites.data()), pDescriptorCopies.size(), (const VkCopyDescriptorSet*)(pDescriptorCopies.data())) ;}
inline Framebuffer createFramebuffer(Device device, const FramebufferCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ Framebuffer ret = {}; VPP_CALL(vkCreateFramebuffer((VkDevice)(device), (const VkFramebufferCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkFramebuffer*)(&ret))); return ret;}
inline void destroyFramebuffer(Device device, Framebuffer framebuffer = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyFramebuffer((VkDevice)(device), (VkFramebuffer)(framebuffer), (const VkAllocationCallbacks*)(pAllocator));}
inline RenderPass createRenderPass(Device device, const RenderPassCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ RenderPass ret = {}; VPP_CALL(vkCreateRenderPass((VkDevice)(device), (const VkRenderPassCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkRenderPass*)(&ret))); return ret;}
inline void destroyRenderPass(Device device, RenderPass renderPass = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyRenderPass((VkDevice)(device), (VkRenderPass)(renderPass), (const VkAllocationCallbacks*)(pAllocator));}
inline void getRenderAreaGranularity(Device device, RenderPass renderPass, Extent2D& pGranularity){ return vkGetRenderAreaGranularity((VkDevice)(device), (VkRenderPass)(renderPass), (VkExtent2D*)(&pGranularity));}
inline CommandPool createCommandPool(Device device, const CommandPoolCreateInfo& pCreateInfo, const AllocationCallbacks* pAllocator = {}){ CommandPool ret = {}; VPP_CALL(vkCreateCommandPool((VkDevice)(device), (const VkCommandPoolCreateInfo*)(&pCreateInfo), (const VkAllocationCallbacks*)(pAllocator), (VkCommandPool*)(&ret))); return ret;}
inline void destroyCommandPool(Device device, CommandPool commandPool = {}, const AllocationCallbacks* pAllocator = {}){ return vkDestroyCommandPool((VkDevice)(device), (VkCommandPool)(commandPool), (const VkAllocationCallbacks*)(pAllocator));}
inline Result resetCommandPool(Device device, CommandPool commandPool, CommandPoolResetFlags flags = {}){ return static_cast<Result>(vkResetCommandPool((VkDevice)(device), (VkCommandPool)(commandPool), static_cast<VkCommandPoolResetFlags>(flags)));}
inline Result allocateCommandBuffers(Device device, const CommandBufferAllocateInfo& pAllocateInfo, CommandBuffer& pCommandBuffers){ return static_cast<Result>(vkAllocateCommandBuffers((VkDevice)(device), (const VkCommandBufferAllocateInfo*)(&pAllocateInfo), (VkCommandBuffer*)(&pCommandBuffers)));}
inline std::vector<CommandBuffer> allocateCommandBuffers(Device device, const CommandBufferAllocateInfo& pAllocateInfo){ VEC_FUNC_RET(CommandBuffer, pAllocateInfo.commandBufferCount, vkAllocateCommandBuffers, (VkDevice)(device), (const VkCommandBufferAllocateInfo*)(&pAllocateInfo), (VkCommandBuffer*)(ret.data())); }
inline void freeCommandBuffers(Device device, CommandPool commandPool, uint32_t commandBufferCount, const CommandBuffer& pCommandBuffers){ return vkFreeCommandBuffers((VkDevice)(device), (VkCommandPool)(commandPool), commandBufferCount, (const VkCommandBuffer*)(&pCommandBuffers));}
inline void freeCommandBuffers(Device device, CommandPool commandPool, nytl::Span<const CommandBuffer> pCommandBuffers){ vkFreeCommandBuffers((VkDevice)(device), (VkCommandPool)(commandPool), pCommandBuffers.size(), (const VkCommandBuffer*)(pCommandBuffers.data())) ;}
inline Result beginCommandBuffer(CommandBuffer commandBuffer, const CommandBufferBeginInfo& pBeginInfo){ return static_cast<Result>(vkBeginCommandBuffer((VkCommandBuffer)(commandBuffer), (const VkCommandBufferBeginInfo*)(&pBeginInfo)));}
inline Result endCommandBuffer(CommandBuffer commandBuffer){ return static_cast<Result>(vkEndCommandBuffer((VkCommandBuffer)(commandBuffer)));}
inline Result resetCommandBuffer(CommandBuffer commandBuffer, CommandBufferResetFlags flags = {}){ return static_cast<Result>(vkResetCommandBuffer((VkCommandBuffer)(commandBuffer), static_cast<VkCommandBufferResetFlags>(flags)));}
inline void cmdBindPipeline(CommandBuffer commandBuffer, PipelineBindPoint pipelineBindPoint, Pipeline pipeline){ return vkCmdBindPipeline((VkCommandBuffer)(commandBuffer), static_cast<VkPipelineBindPoint>(pipelineBindPoint), (VkPipeline)(pipeline));}
inline void cmdSetViewport(CommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const Viewport& pViewports){ return vkCmdSetViewport((VkCommandBuffer)(commandBuffer), firstViewport, viewportCount, (const VkViewport*)(&pViewports));}
inline void cmdSetViewport(CommandBuffer commandBuffer, uint32_t firstViewport, nytl::Span<const Viewport> pViewports){ vkCmdSetViewport((VkCommandBuffer)(commandBuffer), firstViewport, pViewports.size(), (const VkViewport*)(pViewports.data())) ;}
inline void cmdSetScissor(CommandBuffer commandBuffer, uint32_t firstScissor, uint32_t scissorCount, const Rect2D& pScissors){ return vkCmdSetScissor((VkCommandBuffer)(commandBuffer), firstScissor, scissorCount, (const VkRect2D*)(&pScissors));}
inline void cmdSetScissor(CommandBuffer commandBuffer, uint32_t firstScissor, nytl::Span<const Rect2D> pScissors){ vkCmdSetScissor((VkCommandBuffer)(commandBuffer), firstScissor, pScissors.size(), (const VkRect2D*)(pScissors.data())) ;}
inline void cmdSetLineWidth(CommandBuffer commandBuffer, float lineWidth){ return vkCmdSetLineWidth((VkCommandBuffer)(commandBuffer), lineWidth);}
inline void cmdSetDepthBias(CommandBuffer commandBuffer, float depthBiasConstantFactor, float depthBiasClamp, float depthBiasSlopeFactor){ return vkCmdSetDepthBias((VkCommandBuffer)(commandBuffer), depthBiasConstantFactor, depthBiasClamp, depthBiasSlopeFactor);}
inline void cmdSetBlendConstants(CommandBuffer commandBuffer, std::array<const float, 4> blendConstants){ return vkCmdSetBlendConstants((VkCommandBuffer)(commandBuffer), blendConstants.data());}
inline void cmdSetDepthBounds(CommandBuffer commandBuffer, float minDepthBounds, float maxDepthBounds){ return vkCmdSetDepthBounds((VkCommandBuffer)(commandBuffer), minDepthBounds, maxDepthBounds);}
inline void cmdSetStencilCompareMask(CommandBuffer commandBuffer, StencilFaceFlags faceMask, uint32_t compareMask){ return vkCmdSetStencilCompareMask((VkCommandBuffer)(commandBuffer), static_cast<VkStencilFaceFlags>(faceMask), compareMask);}
inline void cmdSetStencilWriteMask(CommandBuffer commandBuffer, StencilFaceFlags faceMask, uint32_t writeMask){ return vkCmdSetStencilWriteMask((VkCommandBuffer)(commandBuffer), static_cast<VkStencilFaceFlags>(faceMask), writeMask);}
inline void cmdSetStencilReference(CommandBuffer commandBuffer, StencilFaceFlags faceMask, uint32_t reference){ return vkCmdSetStencilReference((VkCommandBuffer)(commandBuffer), static_cast<VkStencilFaceFlags>(faceMask), reference);}
inline void cmdBindDescriptorSets(CommandBuffer commandBuffer, PipelineBindPoint pipelineBindPoint, PipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const DescriptorSet& pDescriptorSets, uint32_t dynamicOffsetCount, const uint32_t& pDynamicOffsets){ return vkCmdBindDescriptorSets((VkCommandBuffer)(commandBuffer), static_cast<VkPipelineBindPoint>(pipelineBindPoint), (VkPipelineLayout)(layout), firstSet, descriptorSetCount, (const VkDescriptorSet*)(&pDescriptorSets), dynamicOffsetCount, (const uint32_t*)(&pDynamicOffsets));}
inline void cmdBindDescriptorSets(CommandBuffer commandBuffer, PipelineBindPoint pipelineBindPoint, PipelineLayout layout, uint32_t firstSet, nytl::Span<const DescriptorSet> pDescriptorSets, nytl::Span<const uint32_t> pDynamicOffsets){ vkCmdBindDescriptorSets((VkCommandBuffer)(commandBuffer), static_cast<VkPipelineBindPoint>(pipelineBindPoint), (VkPipelineLayout)(layout), firstSet, pDescriptorSets.size(), (const VkDescriptorSet*)(pDescriptorSets.data()), pDynamicOffsets.size(), (const uint32_t*)(pDynamicOffsets.data())) ;}
inline void cmdBindIndexBuffer(CommandBuffer commandBuffer, Buffer buffer, DeviceSize offset, IndexType indexType){ return vkCmdBindIndexBuffer((VkCommandBuffer)(commandBuffer), (VkBuffer)(buffer), offset, static_cast<VkIndexType>(indexType));}
inline void cmdBindVertexBuffers(CommandBuffer commandBuffer, uint32_t firstBinding, uint32_t bindingCount, const Buffer& pBuffers, const DeviceSize& pOffsets){ return vkCmdBindVertexBuffers((VkCommandBuffer)(commandBuffer), firstBinding, bindingCount, (const VkBuffer*)(&pBuffers), (const VkDeviceSize*)(&pOffsets));}
inline void cmdBindVertexBuffers(CommandBuffer commandBuffer, uint32_t firstBinding, nytl::Span<const Buffer> pBuffers, nytl::Span<const DeviceSize> pOffsets){ vkCmdBindVertexBuffers((VkCommandBuffer)(commandBuffer), firstBinding, pBuffers.size(), (const VkBuffer*)(pBuffers.data()), (const VkDeviceSize*)(pOffsets.data())) ;}
inline void cmdDraw(CommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance){ return vkCmdDraw((VkCommandBuffer)(commandBuffer), vertexCount, instanceCount, firstVertex, firstInstance);}
inline void cmdDrawIndexed(CommandBuffer commandBuffer, uint32_t indexCount, uint32_t instanceCount, uint32_t firstIndex, int32_t vertexOffset, uint32_t firstInstance){ return vkCmdDrawIndexed((VkCommandBuffer)(commandBuffer), indexCount, instanceCount, firstIndex, vertexOffset, firstInstance);}
inline void cmdDrawIndirect(CommandBuffer commandBuffer, Buffer buffer, DeviceSize offset, uint32_t drawCount, uint32_t stride){ return vkCmdDrawIndirect((VkCommandBuffer)(commandBuffer), (VkBuffer)(buffer), offset, drawCount, stride);}
inline void cmdDrawIndexedIndirect(CommandBuffer commandBuffer, Buffer buffer, DeviceSize offset, uint32_t drawCount, uint32_t stride){ return vkCmdDrawIndexedIndirect((VkCommandBuffer)(commandBuffer), (VkBuffer)(buffer), offset, drawCount, stride);}
inline void cmdDispatch(CommandBuffer commandBuffer, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ){ return vkCmdDispatch((VkCommandBuffer)(commandBuffer), groupCountX, groupCountY, groupCountZ);}
inline void cmdDispatchIndirect(CommandBuffer commandBuffer, Buffer buffer, DeviceSize offset){ return vkCmdDispatchIndirect((VkCommandBuffer)(commandBuffer), (VkBuffer)(buffer), offset);}
inline void cmdCopyBuffer(CommandBuffer commandBuffer, Buffer srcBuffer, Buffer dstBuffer, uint32_t regionCount, const BufferCopy& pRegions){ return vkCmdCopyBuffer((VkCommandBuffer)(commandBuffer), (VkBuffer)(srcBuffer), (VkBuffer)(dstBuffer), regionCount, (const VkBufferCopy*)(&pRegions));}
inline void cmdCopyBuffer(CommandBuffer commandBuffer, Buffer srcBuffer, Buffer dstBuffer, nytl::Span<const BufferCopy> pRegions){ vkCmdCopyBuffer((VkCommandBuffer)(commandBuffer), (VkBuffer)(srcBuffer), (VkBuffer)(dstBuffer), pRegions.size(), (const VkBufferCopy*)(pRegions.data())) ;}
inline void cmdCopyImage(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Image dstImage, ImageLayout dstImageLayout, uint32_t regionCount, const ImageCopy& pRegions){ return vkCmdCopyImage((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), regionCount, (const VkImageCopy*)(&pRegions));}
inline void cmdCopyImage(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Image dstImage, ImageLayout dstImageLayout, nytl::Span<const ImageCopy> pRegions){ vkCmdCopyImage((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), pRegions.size(), (const VkImageCopy*)(pRegions.data())) ;}
inline void cmdBlitImage(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Image dstImage, ImageLayout dstImageLayout, uint32_t regionCount, const ImageBlit& pRegions, Filter filter){ return vkCmdBlitImage((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), regionCount, (const VkImageBlit*)(&pRegions), static_cast<VkFilter>(filter));}
inline void cmdBlitImage(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Image dstImage, ImageLayout dstImageLayout, nytl::Span<const ImageBlit> pRegions, Filter filter){ vkCmdBlitImage((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), pRegions.size(), (const VkImageBlit*)(pRegions.data()), static_cast<VkFilter>(filter)) ;}
inline void cmdCopyBufferToImage(CommandBuffer commandBuffer, Buffer srcBuffer, Image dstImage, ImageLayout dstImageLayout, uint32_t regionCount, const BufferImageCopy& pRegions){ return vkCmdCopyBufferToImage((VkCommandBuffer)(commandBuffer), (VkBuffer)(srcBuffer), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), regionCount, (const VkBufferImageCopy*)(&pRegions));}
inline void cmdCopyBufferToImage(CommandBuffer commandBuffer, Buffer srcBuffer, Image dstImage, ImageLayout dstImageLayout, nytl::Span<const BufferImageCopy> pRegions){ vkCmdCopyBufferToImage((VkCommandBuffer)(commandBuffer), (VkBuffer)(srcBuffer), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), pRegions.size(), (const VkBufferImageCopy*)(pRegions.data())) ;}
inline void cmdCopyImageToBuffer(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Buffer dstBuffer, uint32_t regionCount, const BufferImageCopy& pRegions){ return vkCmdCopyImageToBuffer((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkBuffer)(dstBuffer), regionCount, (const VkBufferImageCopy*)(&pRegions));}
inline void cmdCopyImageToBuffer(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Buffer dstBuffer, nytl::Span<const BufferImageCopy> pRegions){ vkCmdCopyImageToBuffer((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkBuffer)(dstBuffer), pRegions.size(), (const VkBufferImageCopy*)(pRegions.data())) ;}
inline void cmdUpdateBuffer(CommandBuffer commandBuffer, Buffer dstBuffer, DeviceSize dstOffset, DeviceSize dataSize, const void* pData){ return vkCmdUpdateBuffer((VkCommandBuffer)(commandBuffer), (VkBuffer)(dstBuffer), dstOffset, dataSize, (const void*)(pData));}
inline void cmdUpdateBuffer(CommandBuffer commandBuffer, Buffer dstBuffer, DeviceSize dstOffset, nytl::Span<const uint8_t> pData){ vkCmdUpdateBuffer((VkCommandBuffer)(commandBuffer), (VkBuffer)(dstBuffer), dstOffset, pData.size(), (const void*)(pData.data())) ;}
inline void cmdFillBuffer(CommandBuffer commandBuffer, Buffer dstBuffer, DeviceSize dstOffset, DeviceSize size, uint32_t data){ return vkCmdFillBuffer((VkCommandBuffer)(commandBuffer), (VkBuffer)(dstBuffer), dstOffset, size, data);}
inline void cmdClearColorImage(CommandBuffer commandBuffer, Image image, ImageLayout imageLayout, const ClearColorValue& pColor, uint32_t rangeCount, const ImageSubresourceRange& pRanges){ return vkCmdClearColorImage((VkCommandBuffer)(commandBuffer), (VkImage)(image), static_cast<VkImageLayout>(imageLayout), (const VkClearColorValue*)(&pColor), rangeCount, (const VkImageSubresourceRange*)(&pRanges));}
inline void cmdClearColorImage(CommandBuffer commandBuffer, Image image, ImageLayout imageLayout, const ClearColorValue& pColor, nytl::Span<const ImageSubresourceRange> pRanges){ vkCmdClearColorImage((VkCommandBuffer)(commandBuffer), (VkImage)(image), static_cast<VkImageLayout>(imageLayout), (const VkClearColorValue*)(&pColor), pRanges.size(), (const VkImageSubresourceRange*)(pRanges.data())) ;}
inline void cmdClearDepthStencilImage(CommandBuffer commandBuffer, Image image, ImageLayout imageLayout, const ClearDepthStencilValue& pDepthStencil, uint32_t rangeCount, const ImageSubresourceRange& pRanges){ return vkCmdClearDepthStencilImage((VkCommandBuffer)(commandBuffer), (VkImage)(image), static_cast<VkImageLayout>(imageLayout), (const VkClearDepthStencilValue*)(&pDepthStencil), rangeCount, (const VkImageSubresourceRange*)(&pRanges));}
inline void cmdClearDepthStencilImage(CommandBuffer commandBuffer, Image image, ImageLayout imageLayout, const ClearDepthStencilValue& pDepthStencil, nytl::Span<const ImageSubresourceRange> pRanges){ vkCmdClearDepthStencilImage((VkCommandBuffer)(commandBuffer), (VkImage)(image), static_cast<VkImageLayout>(imageLayout), (const VkClearDepthStencilValue*)(&pDepthStencil), pRanges.size(), (const VkImageSubresourceRange*)(pRanges.data())) ;}
inline void cmdClearAttachments(CommandBuffer commandBuffer, uint32_t attachmentCount, const ClearAttachment& pAttachments, uint32_t rectCount, const ClearRect& pRects){ return vkCmdClearAttachments((VkCommandBuffer)(commandBuffer), attachmentCount, (const VkClearAttachment*)(&pAttachments), rectCount, (const VkClearRect*)(&pRects));}
inline void cmdClearAttachments(CommandBuffer commandBuffer, nytl::Span<const ClearAttachment> pAttachments, nytl::Span<const ClearRect> pRects){ vkCmdClearAttachments((VkCommandBuffer)(commandBuffer), pAttachments.size(), (const VkClearAttachment*)(pAttachments.data()), pRects.size(), (const VkClearRect*)(pRects.data())) ;}
inline void cmdResolveImage(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Image dstImage, ImageLayout dstImageLayout, uint32_t regionCount, const ImageResolve& pRegions){ return vkCmdResolveImage((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), regionCount, (const VkImageResolve*)(&pRegions));}
inline void cmdResolveImage(CommandBuffer commandBuffer, Image srcImage, ImageLayout srcImageLayout, Image dstImage, ImageLayout dstImageLayout, nytl::Span<const ImageResolve> pRegions){ vkCmdResolveImage((VkCommandBuffer)(commandBuffer), (VkImage)(srcImage), static_cast<VkImageLayout>(srcImageLayout), (VkImage)(dstImage), static_cast<VkImageLayout>(dstImageLayout), pRegions.size(), (const VkImageResolve*)(pRegions.data())) ;}
inline void cmdSetEvent(CommandBuffer commandBuffer, Event event, PipelineStageFlags stageMask){ return vkCmdSetEvent((VkCommandBuffer)(commandBuffer), (VkEvent)(event), static_cast<VkPipelineStageFlags>(stageMask));}
inline void cmdResetEvent(CommandBuffer commandBuffer, Event event, PipelineStageFlags stageMask){ return vkCmdResetEvent((VkCommandBuffer)(commandBuffer), (VkEvent)(event), static_cast<VkPipelineStageFlags>(stageMask));}
inline void cmdWaitEvents(CommandBuffer commandBuffer, uint32_t eventCount, const Event& pEvents, PipelineStageFlags srcStageMask, PipelineStageFlags dstStageMask, uint32_t memoryBarrierCount, const MemoryBarrier& pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const BufferMemoryBarrier& pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const ImageMemoryBarrier& pImageMemoryBarriers){ return vkCmdWaitEvents((VkCommandBuffer)(commandBuffer), eventCount, (const VkEvent*)(&pEvents), static_cast<VkPipelineStageFlags>(srcStageMask), static_cast<VkPipelineStageFlags>(dstStageMask), memoryBarrierCount, (const VkMemoryBarrier*)(&pMemoryBarriers), bufferMemoryBarrierCount, (const VkBufferMemoryBarrier*)(&pBufferMemoryBarriers), imageMemoryBarrierCount, (const VkImageMemoryBarrier*)(&pImageMemoryBarriers));}
inline void cmdWaitEvents(CommandBuffer commandBuffer, nytl::Span<const Event> pEvents, PipelineStageFlags srcStageMask, PipelineStageFlags dstStageMask, nytl::Span<const MemoryBarrier> pMemoryBarriers, nytl::Span<const BufferMemoryBarrier> pBufferMemoryBarriers, nytl::Span<const ImageMemoryBarrier> pImageMemoryBarriers){ vkCmdWaitEvents((VkCommandBuffer)(commandBuffer), pEvents.size(), (const VkEvent*)(pEvents.data()), static_cast<VkPipelineStageFlags>(srcStageMask), static_cast<VkPipelineStageFlags>(dstStageMask), pMemoryBarriers.size(), (const VkMemoryBarrier*)(pMemoryBarriers.data()), pBufferMemoryBarriers.size(), (const VkBufferMemoryBarrier*)(pBufferMemoryBarriers.data()), pImageMemoryBarriers.size(), (const VkImageMemoryBarrier*)(pImageMemoryBarriers.data())) ;}
inline void cmdPipelineBarrier(CommandBuffer commandBuffer, PipelineStageFlags srcStageMask, PipelineStageFlags dstStageMask, DependencyFlags dependencyFlags, uint32_t memoryBarrierCount, const MemoryBarrier& pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const BufferMemoryBarrier& pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const ImageMemoryBarrier& pImageMemoryBarriers){ return vkCmdPipelineBarrier((VkCommandBuffer)(commandBuffer), static_cast<VkPipelineStageFlags>(srcStageMask), static_cast<VkPipelineStageFlags>(dstStageMask), static_cast<VkDependencyFlags>(dependencyFlags), memoryBarrierCount, (const VkMemoryBarrier*)(&pMemoryBarriers), bufferMemoryBarrierCount, (const VkBufferMemoryBarrier*)(&pBufferMemoryBarriers), imageMemoryBarrierCount, (const VkImageMemoryBarrier*)(&pImageMemoryBarriers));}
inline void cmdPipelineBarrier(CommandBuffer commandBuffer, PipelineStageFlags srcStageMask, PipelineStageFlags dstStageMask, DependencyFlags dependencyFlags, nytl::Span<const MemoryBarrier> pMemoryBarriers, nytl::Span<const BufferMemoryBarrier> pBufferMemoryBarriers, nytl::Span<const ImageMemoryBarrier> pImageMemoryBarriers){ vkCmdPipelineBarrier((VkCommandBuffer)(commandBuffer), static_cast<VkPipelineStageFlags>(srcStageMask), static_cast<VkPipelineStageFlags>(dstStageMask), static_cast<VkDependencyFlags>(dependencyFlags), pMemoryBarriers.size(), (const VkMemoryBarrier*)(pMemoryBarriers.data()), pBufferMemoryBarriers.size(), (const VkBufferMemoryBarrier*)(pBufferMemoryBarriers.data()), pImageMemoryBarriers.size(), (const VkImageMemoryBarrier*)(pImageMemoryBarriers.data())) ;}
inline void cmdBeginQuery(CommandBuffer commandBuffer, QueryPool queryPool, uint32_t query, QueryControlFlags flags = {}){ return vkCmdBeginQuery((VkCommandBuffer)(commandBuffer), (VkQueryPool)(queryPool), query, static_cast<VkQueryControlFlags>(flags));}
inline void cmdEndQuery(CommandBuffer commandBuffer, QueryPool queryPool, uint32_t query){ return vkCmdEndQuery((VkCommandBuffer)(commandBuffer), (VkQueryPool)(queryPool), query);}
inline void cmdResetQueryPool(CommandBuffer commandBuffer, QueryPool queryPool, uint32_t firstQuery, uint32_t queryCount){ return vkCmdResetQueryPool((VkCommandBuffer)(commandBuffer), (VkQueryPool)(queryPool), firstQuery, queryCount);}
inline void cmdWriteTimestamp(CommandBuffer commandBuffer, PipelineStageBits pipelineStage, QueryPool queryPool, uint32_t query){ return vkCmdWriteTimestamp((VkCommandBuffer)(commandBuffer), static_cast<VkPipelineStageFlagBits>(pipelineStage), (VkQueryPool)(queryPool), query);}
inline void cmdCopyQueryPoolResults(CommandBuffer commandBuffer, QueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, Buffer dstBuffer, DeviceSize dstOffset, DeviceSize stride, QueryResultFlags flags = {}){ return vkCmdCopyQueryPoolResults((VkCommandBuffer)(commandBuffer), (VkQueryPool)(queryPool), firstQuery, queryCount, (VkBuffer)(dstBuffer), dstOffset, stride, static_cast<VkQueryResultFlags>(flags));}
inline void cmdPushConstants(CommandBuffer commandBuffer, PipelineLayout layout, ShaderStageFlags stageFlags, uint32_t offset, uint32_t size, const void* pValues){ return vkCmdPushConstants((VkCommandBuffer)(commandBuffer), (VkPipelineLayout)(layout), static_cast<VkShaderStageFlags>(stageFlags), offset, size, (const void*)(pValues));}
inline void cmdPushConstants(CommandBuffer commandBuffer, PipelineLayout layout, ShaderStageFlags stageFlags, uint32_t offset, nytl::Span<const uint8_t> pValues){ vkCmdPushConstants((VkCommandBuffer)(commandBuffer), (VkPipelineLayout)(layout), static_cast<VkShaderStageFlags>(stageFlags), offset, pValues.size(), (const void*)(pValues.data())) ;}
inline void cmdBeginRenderPass(CommandBuffer commandBuffer, const RenderPassBeginInfo& pRenderPassBegin, SubpassContents contents){ return vkCmdBeginRenderPass((VkCommandBuffer)(commandBuffer), (const VkRenderPassBeginInfo*)(&pRenderPassBegin), static_cast<VkSubpassContents>(contents));}
inline void cmdNextSubpass(CommandBuffer commandBuffer, SubpassContents contents){ return vkCmdNextSubpass((VkCommandBuffer)(commandBuffer), static_cast<VkSubpassContents>(contents));}
inline void cmdEndRenderPass(CommandBuffer commandBuffer){ return vkCmdEndRenderPass((VkCommandBuffer)(commandBuffer));}
inline void cmdExecuteCommands(CommandBuffer commandBuffer, uint32_t commandBufferCount, const CommandBuffer& pCommandBuffers){ return vkCmdExecuteCommands((VkCommandBuffer)(commandBuffer), commandBufferCount, (const VkCommandBuffer*)(&pCommandBuffers));}
inline void cmdExecuteCommands(CommandBuffer commandBuffer, nytl::Span<const CommandBuffer> pCommandBuffers){ vkCmdExecuteCommands((VkCommandBuffer)(commandBuffer), pCommandBuffers.size(), (const VkCommandBuffer*)(pCommandBuffers.data())) ;}
#undef VEC_FUNC
#undef VEC_FUNC_VOID
#undef VEC_FUNC_RET
#undef VEC_FUNC_RET_VOID
} // namespace vk
// The specification (vk.xml) itself is published under the following license:
// Copyright (c) 2015-2017 The Khronos Group Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and/or associated documentation files (the
// "Materials"), to deal in the Materials without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Materials, and to
// permit persons to whom the Materials are furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Materials.
//
// THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
//
// ------------------------------------------------------------------------
//
// This file, vk.xml, is the Vulkan API Registry. It is a critically important
// and normative part of the Vulkan Specification, including a canonical
// machine-readable definition of the API, parameter and member validation
// language incorporated into the Specification and reference pages, and other
// material which is registered by Khronos, such as tags used by extension and
// layer authors. The only authoritative version of vk.xml is the one
// maintained in the master branch of the Khronos Vulkan GitHub project.
| [
"nyorain@gmail.com"
] | nyorain@gmail.com |
0f646d1ce4616fde03cb095e3d1423b6f27bd301 | 43221ffd2d148583095f37eb655b395cd20aa849 | /IndexOutOfBoundsException.h | 35ce028497ae96623ca5e16ae5425ffa8c52cc04 | [] | no_license | lblack1/cpsc350-BSTDB | 18940570ee164f505ccb60c9f721c339438f78f9 | 2a527ae522297b90f13fae65313716ce5466a189 | refs/heads/master | 2020-09-21T01:19:43.044056 | 2019-11-28T19:27:47 | 2019-11-28T19:27:47 | 224,638,740 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 406 | h | #ifndef INDEX_OUT_OF_BOUNDS_EXCEPTION
#define INDEX_OUT_OF_BOUNDS_EXCEPTION
#include <iostream>
using namespace std;
/* Exception class for indicating an attempt to access an index beyond bounds of a linked list.
*/
class IndexOutOfBoundsException {
public:
IndexOutOfBoundsException();
IndexOutOfBoundsException(string msg);
string getMessage();
private:
string message;
};
#endif
| [
"lblack@chapman.edu"
] | lblack@chapman.edu |
8303bd33131505516e21e440877fa3650e5f8048 | 45355bf137fc7886baa294000fc8d6e816dd1058 | /src/routeSolver.cpp | 34dc71b01d19822c6e348dd015cc778cb29caf72 | [] | no_license | GuessEver/sweepingRobot | 4aac44955e87292af33454878b1b41b02de015bc | a1ae75310aa9ccd89cef5b82d042b3919c2195ea | refs/heads/master | 2021-01-19T05:41:08.883501 | 2016-06-15T12:25:06 | 2016-06-15T12:25:06 | 60,669,847 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,484 | cpp | #pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <algorithm>
int W, H, A, Sx, Sy;
int cap[1000][1000];
bool done[1000][1000];
const int dx[] = {0, 1, 0, -1};
const int dy[] = {-1, 0, 1, 0};
const char* dir = {"NESW"};
const char* antidir = {"SWNE"};
bool can(int x, int y) {
if(x < 0 || x >= W || y < 0 || y >= H) return 0;
if(x + A >= W || y + A >= H) return 0;
//bool hasZero = 0;
for(int i = x; i < std::min(x + A, W); i++)
for(int j = y; j < std::min(y + A, H); j++) {
if(cap[i][j] == -1) return 0;
//hasZero |= (cap[i][j] == 0);
}
//return hasZero;
return !done[x][y];
}
void clean(int x, int y) {
done[x][y] = 1;
for(int i = x; i < std::min(x + A, W); i++)
for(int j = y; j < std::min(y + A, H); j++)
++cap[i][j];
}
void dfs(int x, int y) {
clean(x, y);
//printf("(%d, %d)\n", x, y);
for(int k = 0; k < 4; k++) {
int nx = x + dx[k], ny = y + dy[k];
if(!can(nx, ny)) continue;
putchar(dir[k]);
dfs(nx, ny);
putchar(antidir[k]);
clean(x, y);
}
}
void solve() { // North-East-South-West
dfs(Sx, Sy);
}
void printMap() {
puts("");
for(int j = 0; j < H; j++) {
for(int i = 0; i < W; i++) {
printf("%d ", cap[i][j]);
}
puts("");
}
}
int main() {
freopen("map.txt", "r", stdin);
freopen("route.txt", "w", stdout);
scanf("%d%d", &W, &H);
for(int j = 0; j < H; j++)
for(int i = 0; i < W; i++)
scanf("%d", &cap[i][j]);
scanf("%d%d%d", &A, &Sx, &Sy);
solve();
//printMap();
return 0;
}
| [
"guessever@gmail.com"
] | guessever@gmail.com |
48e5ddddf3eb477b6ffbfa169b1d67733278dcee | 879681c994f1ca9c8d2c905a4e5064997ad25a27 | /root-2.3.0/run/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/1.17/Theta.particles | 58425e9351b607b7fb1e5afae8291186f7e85269 | [] | no_license | MizuhaWatanabe/OpenFOAM-2.3.0-with-Ubuntu | 3828272d989d45fb020e83f8426b849e75560c62 | daeb870be81275e8a81f5cbac4ca1906a9bc69c0 | refs/heads/master | 2020-05-17T16:36:41.848261 | 2015-04-18T09:29:48 | 2015-04-18T09:29:48 | 34,159,882 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 70,790 | particles | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1.17";
object Theta.particles;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
6000
(
0.000660054
0.00027294
0.000176345
0.000182185
0.000243991
0.000495984
0.000865129
0.00104268
0.000825724
0.000601089
0.00058051
0.000531517
0.000402466
0.000319823
0.000408075
0.000556592
0.000595248
0.00056051
0.000469034
0.000356075
0.000329317
0.000353555
0.000427241
0.000592956
0.00072722
0.000585256
0.00063642
0.000851809
0.000830094
0.00114321
2.45319e-05
2.06269e-05
1.22323e-05
1.91111e-05
4.07966e-05
6.60266e-05
7.23936e-05
6.88928e-05
5.03242e-05
4.51497e-05
5.01481e-05
5.1949e-05
5.08387e-05
4.53719e-05
4.86637e-05
5.63035e-05
6.07395e-05
5.78403e-05
4.95475e-05
4.05988e-05
3.78507e-05
3.61271e-05
3.60295e-05
3.75327e-05
5.20543e-05
5.10722e-05
4.51634e-05
4.52834e-05
4.21401e-05
2.66284e-05
3.66097e-06
1.28229e-05
1.54273e-05
2.30103e-05
1.03928e-05
1.38628e-05
4.37881e-06
5.38086e-06
4.06767e-06
3.45163e-06
5.30125e-06
4.91576e-06
6.59317e-06
7.69646e-06
6.30894e-06
5.14409e-06
2.51511e-06
1.49277e-06
6.95293e-07
3.04386e-07
5.12771e-07
1.08864e-06
1.13234e-06
2.43506e-06
4.6115e-06
4.7544e-06
3.29698e-06
1.85573e-06
5.77517e-07
1.06825e-05
4.04121e-07
3.4512e-06
4.27718e-06
1.94961e-05
2.10147e-05
8.63196e-06
1.8104e-06
2.04925e-06
5.97526e-06
1.15929e-05
1.48885e-05
9.39809e-06
7.99948e-06
7.37064e-06
4.07375e-06
1.48681e-06
5.15644e-07
2.98538e-07
3.79436e-07
1.82033e-06
3.62733e-06
6.64588e-06
9.42349e-06
8.14332e-06
6.71355e-06
5.07216e-06
2.73039e-06
2.069e-06
4.48962e-06
9.83866e-06
9.43687e-06
1.71463e-05
8.46766e-06
5.47044e-05
0.000123265
1.47619e-05
2.61745e-06
4.21946e-06
7.40679e-06
1.42327e-05
1.98163e-05
1.77141e-05
9.87731e-06
8.65436e-06
3.84951e-06
1.87768e-05
5.65806e-05
6.8729e-05
5.68387e-05
4.25619e-05
2.59144e-05
5.2659e-06
1.35676e-06
1.46339e-06
3.07069e-06
8.03642e-06
8.93962e-06
9.62222e-06
2.90711e-06
1.16255e-05
3.32428e-05
1.68578e-05
6.99756e-06
3.58236e-05
0.000119087
2.11436e-05
4.20749e-06
5.90926e-06
6.26259e-06
8.0014e-06
2.55433e-05
5.67235e-05
0.000107873
0.000189193
0.000309661
0.000454011
0.000483605
0.000433383
0.000381321
0.00029381
0.000228749
0.000166949
0.000115987
7.52446e-05
7.2223e-05
7.79475e-05
6.21951e-05
5.47654e-05
2.44575e-05
1.62353e-05
5.90001e-05
1.80308e-05
1.46903e-05
2.31539e-05
5.10965e-05
7.77583e-06
3.45869e-06
3.2968e-06
2.49127e-05
8.59048e-05
0.000202895
0.000456821
0.000719748
0.000896422
0.000970055
0.000954874
0.000731951
0.000612674
0.000576726
0.000589368
0.000563018
0.000582244
0.000543263
0.000504306
0.000420429
0.000243477
0.000142954
0.000167318
0.00024634
9.22633e-05
9.45741e-05
4.46283e-05
7.03936e-05
3.20818e-05
1.00877e-05
2.61805e-05
9.08512e-05
0.00033458
0.000796292
0.00119035
0.00120437
0.00123853
0.00113209
0.000882752
0.00066159
0.000360149
0.00017992
0.000149613
0.000177127
0.000237253
0.000319798
0.000391068
0.000431131
0.000372662
0.000248673
0.000132661
0.000115418
0.000196669
0.000462562
0.000616105
0.000157302
0.000143776
0.000100618
0.000110889
0.000130453
0.000400122
0.00090473
0.00149578
0.00184465
0.00190394
0.00153978
0.00078006
0.000209873
4.87198e-05
7.74316e-06
1.72332e-07
1.97769e-07
2.3444e-07
4.08407e-07
7.90116e-07
1.48256e-06
5.21239e-06
1.33504e-05
6.92315e-06
1.00299e-06
1.3117e-07
9.02032e-06
1.24299e-05
8.75241e-05
0.000604285
0.000222483
0.000107297
4.32869e-05
0.000477523
0.00071312
0.00116298
0.00164926
0.00097029
0.00054354
0.00031906
0.00011601
2.04411e-06
5.12617e-07
8.64706e-07
9.70065e-07
9.66684e-07
9.95543e-07
8.67465e-07
8.20392e-07
1.27131e-06
1.4487e-06
1.48199e-06
1.69673e-06
2.0712e-06
1.70583e-06
2.40582e-06
3.3877e-06
1.9426e-06
8.74927e-07
9.35558e-05
0.000189301
4.30054e-05
1.1511e-06
0.00020846
0.00126334
0.00105817
0.000231696
2.69817e-05
3.35813e-06
2.71642e-07
8.36592e-07
1.72891e-06
1.85341e-06
1.7317e-06
1.46968e-06
1.54205e-06
1.69801e-06
1.90146e-06
2.38974e-06
2.26253e-06
2.39581e-06
2.60139e-06
3.05552e-06
3.78829e-06
4.16859e-06
5.16219e-06
5.32551e-06
2.34507e-06
1.82582e-06
5.43075e-05
0.000137397
5.17153e-05
1.49064e-07
1.19005e-05
0.000318509
6.04179e-05
1.15838e-07
5.29576e-07
1.20205e-06
1.37345e-06
2.37425e-06
2.73248e-06
1.98813e-06
1.67588e-06
1.32493e-06
1.43656e-06
1.34064e-06
2.01291e-06
4.68674e-06
4.08396e-06
3.50798e-06
3.64636e-06
3.99634e-06
4.26472e-06
5.04159e-06
7.13595e-06
5.63846e-06
3.75455e-06
2.55361e-06
4.13039e-05
0.000113808
7.51669e-05
2.05232e-05
5.57345e-06
2.33484e-05
3.35879e-06
4.79675e-07
1.44161e-06
2.33308e-06
2.72978e-06
4.33518e-06
3.09587e-06
2.08428e-06
1.87944e-06
1.72315e-06
1.86162e-06
1.64921e-06
2.57924e-06
6.62734e-06
6.97855e-06
4.69329e-06
4.11887e-06
4.17834e-06
4.52791e-06
5.70056e-06
6.44456e-06
5.05339e-06
3.77561e-06
3.63055e-06
1.87347e-05
8.88394e-05
0.000116405
4.24851e-05
2.38643e-06
2.97206e-06
4.83528e-07
8.5169e-07
2.46244e-06
3.44478e-06
4.9015e-06
4.7567e-06
2.87755e-06
2.08622e-06
1.74689e-06
1.6937e-06
1.91502e-06
1.64058e-06
2.17536e-06
9.51336e-06
1.18025e-05
6.32137e-06
4.61638e-06
4.45876e-06
4.68761e-06
4.72357e-06
4.36936e-06
3.35033e-06
2.70613e-06
2.85016e-06
8.047e-06
8.25361e-05
0.000188251
7.39857e-05
6.84368e-07
2.89279e-07
2.2838e-07
1.61518e-06
3.58822e-06
4.28094e-06
5.76651e-06
3.76642e-06
2.17489e-06
1.42058e-06
1.2275e-06
1.87321e-06
2.36257e-06
1.99203e-06
2.68824e-06
1.0003e-05
1.4702e-05
8.05278e-06
4.8815e-06
3.91868e-06
3.28777e-06
2.52431e-06
1.90029e-06
1.42134e-06
1.18096e-06
1.36272e-06
3.14311e-06
0.000103818
0.000288983
3.7443e-05
2.72749e-07
1.98618e-07
1.02959e-06
3.28802e-06
4.15186e-06
6.18405e-06
6.0812e-06
3.0637e-06
3.25053e-06
2.36515e-06
2.49719e-06
2.86827e-06
2.75669e-06
2.41658e-06
3.73935e-06
1.2098e-05
1.64845e-05
8.35993e-06
4.32998e-06
2.59284e-06
1.58702e-06
1.02834e-06
6.55871e-07
4.28999e-07
3.26123e-07
4.43851e-07
8.2503e-07
0.000198402
0.0003589
3.44258e-06
5.89156e-07
8.56841e-07
2.88755e-06
4.74887e-06
5.8193e-06
7.37608e-06
4.63697e-06
2.78725e-06
4.30286e-06
4.21536e-06
3.67926e-06
2.90867e-06
3.02591e-06
3.40354e-06
6.19657e-06
1.69602e-05
1.56128e-05
5.78508e-06
2.19922e-06
1.20606e-06
7.91625e-07
5.35161e-07
3.50927e-07
2.19677e-07
1.46165e-07
1.48953e-07
1.97088e-07
0.000375465
0.000163264
2.11754e-08
1.66305e-06
2.67609e-06
5.21956e-06
6.82348e-06
7.69418e-06
6.68221e-06
3.56619e-06
3.74488e-06
5.98665e-06
5.55755e-06
4.13527e-06
3.6108e-06
4.11474e-06
4.7572e-06
1.16888e-05
1.88578e-05
7.90666e-06
2.29415e-06
1.16902e-06
8.06364e-07
6.00989e-07
4.42543e-07
3.09811e-07
2.01674e-07
1.2499e-07
8.69067e-08
7.60406e-08
0.000393916
1.45609e-05
4.81348e-07
5.28071e-06
6.93101e-06
9.19781e-06
8.42983e-06
7.71013e-06
5.11482e-06
3.36522e-06
4.30952e-06
5.62159e-06
6.55777e-06
4.94868e-06
4.22373e-06
4.74647e-06
6.92409e-06
1.51517e-05
9.84561e-06
2.3852e-06
1.25547e-06
9.57135e-07
7.90749e-07
6.47109e-07
5.04448e-07
3.65233e-07
2.36572e-07
1.36366e-07
7.12583e-08
3.34703e-08
0.000163527
1.01283e-05
5.28462e-06
1.24348e-05
1.22897e-05
9.21887e-06
6.61207e-06
5.87482e-06
3.3115e-06
3.92026e-06
5.02255e-06
5.30226e-06
6.33713e-06
5.39144e-06
4.7453e-06
5.34225e-06
9.64962e-06
9.58676e-06
2.26333e-06
1.27961e-06
1.13988e-06
1.07877e-06
9.87287e-07
8.54673e-07
6.86548e-07
4.96853e-07
3.10737e-07
1.80581e-07
9.58862e-08
2.33744e-08
5.01285e-05
1.51769e-05
1.65452e-05
1.7105e-05
9.27872e-06
5.72009e-06
5.431e-06
4.14397e-06
3.55105e-06
6.18545e-06
6.01187e-06
5.33471e-06
5.4232e-06
4.96803e-06
4.99196e-06
6.64171e-06
7.0291e-06
2.03484e-06
1.22408e-06
1.25147e-06
1.34282e-06
1.37423e-06
1.33345e-06
1.21147e-06
1.01726e-06
7.40664e-07
4.4481e-07
3.18521e-07
2.70392e-07
1.8647e-07
7.15203e-06
9.57427e-06
1.00702e-05
8.22034e-06
5.37287e-06
4.95271e-06
5.27746e-06
4.08838e-06
7.28678e-06
8.24252e-06
6.36871e-06
4.83475e-06
4.13815e-06
4.08358e-06
5.33147e-06
5.24615e-06
1.75318e-06
1.1053e-06
1.19134e-06
1.39094e-06
1.58478e-06
1.70658e-06
1.74906e-06
1.71884e-06
1.62319e-06
1.26529e-06
8.10427e-07
1.57482e-06
1.43609e-06
1.15598e-06
8.54513e-06
4.67434e-06
3.34905e-06
2.60407e-06
3.07192e-06
4.70122e-06
5.40588e-06
8.12547e-06
1.07613e-05
7.6497e-06
5.01839e-06
3.3651e-06
2.49942e-06
2.67492e-06
3.97496e-06
2.01978e-06
9.45913e-07
9.67286e-07
1.08205e-06
1.25206e-06
1.49034e-06
1.75766e-06
2.03387e-06
2.29386e-06
2.64968e-06
2.35045e-06
1.79e-06
4.86043e-06
3.13527e-06
2.08794e-06
1.05548e-05
7.7246e-06
1.37153e-05
4.85353e-06
4.36336e-06
6.4721e-06
9.45541e-06
1.27367e-05
8.49036e-06
4.59994e-06
2.71137e-06
1.87452e-06
1.35411e-06
1.08949e-06
1.44575e-06
9.43212e-07
6.52437e-07
5.70484e-07
6.56112e-07
8.51209e-07
1.12852e-06
1.50844e-06
1.99908e-06
2.7963e-06
4.70938e-06
5.29638e-06
6.96933e-06
2.36842e-05
1.46168e-06
1.56873e-06
1.35727e-05
7.26754e-06
1.45184e-05
1.04019e-05
9.5004e-06
1.02756e-05
1.15578e-05
1.0224e-05
4.67547e-06
2.65559e-06
2.12498e-06
1.86132e-06
1.47224e-06
8.3179e-07
3.43418e-07
3.44747e-07
2.85119e-07
2.53031e-07
2.85323e-07
3.85213e-07
5.40654e-07
7.67207e-07
1.11306e-06
1.89673e-06
4.58967e-06
6.58324e-06
1.61893e-05
3.42389e-05
1.2454e-05
2.91008e-06
2.93521e-05
8.85665e-06
8.11807e-06
2.34664e-05
1.6963e-05
7.79284e-06
2.04242e-05
9.36148e-06
2.03651e-06
1.34147e-06
1.43074e-06
1.58219e-06
1.45271e-06
1.11588e-06
6.94129e-07
5.00786e-07
3.56878e-07
2.21166e-07
1.43325e-07
1.35261e-07
1.59377e-07
2.17534e-07
3.21241e-07
6.51406e-07
1.97268e-06
8.67838e-06
1.71208e-05
3.33803e-05
4.33621e-05
3.95043e-05
4.89295e-05
7.37835e-06
5.56418e-06
1.68626e-05
1.3043e-05
8.39268e-06
3.80454e-06
1.08409e-06
8.71913e-07
9.437e-07
1.31254e-06
1.46844e-06
1.25904e-06
1.10409e-06
9.57607e-07
7.98269e-07
5.88009e-07
3.93714e-07
2.48529e-07
1.48874e-07
1.13988e-07
1.06266e-07
9.42777e-08
1.67508e-07
7.25479e-07
3.77299e-06
1.26451e-05
3.92043e-05
0.000297349
0.000948935
7.36667e-05
8.75263e-06
3.53677e-06
6.38406e-06
5.9247e-06
4.4531e-06
1.65916e-06
1.45866e-06
1.25543e-06
1.12597e-06
1.80024e-06
1.74808e-06
1.37455e-06
1.21886e-06
9.86565e-07
8.43092e-07
6.98555e-07
4.87469e-07
4.06175e-07
2.15834e-07
1.57768e-07
2.68377e-07
5.44957e-07
3.03729e-07
5.61503e-07
3.4281e-06
0.000305661
0.00167769
0.00375285
0.00272115
0.000128518
2.99693e-05
1.29994e-05
5.92717e-06
1.30109e-05
2.91612e-05
9.699e-06
1.52005e-06
2.25168e-06
1.40659e-06
3.97497e-06
2.74378e-06
2.42742e-06
2.55534e-06
1.5027e-06
1.07228e-06
7.85059e-07
3.99357e-07
5.14034e-07
5.72583e-07
1.50964e-07
5.55647e-07
2.28039e-06
1.07285e-06
0.000339465
0.00144439
0.0038831
0.00512896
0.00387374
0.00241371
0.000208696
4.59689e-05
5.308e-05
1.67482e-05
0.000328518
0.0010687
0.00142985
0.000914625
3.49864e-05
3.98696e-06
1.35398e-05
3.66265e-06
4.27344e-06
8.26355e-06
5.82441e-06
2.46659e-06
1.43498e-06
2.25672e-07
7.93855e-07
3.33521e-06
4.43253e-07
8.47852e-06
0.000331445
0.00236953
0.00483786
0.00653002
0.00550938
0.000947188
6.7758e-07
0.000923373
0.000289208
0.000119744
0.000124655
0.000529562
0.0014194
0.00253619
0.00315071
0.00317133
0.00230578
0.00151721
0.00044818
6.2315e-06
9.14082e-06
3.43126e-05
1.25424e-05
7.21101e-06
2.67475e-06
5.71132e-07
2.96608e-05
0.000484144
0.00202965
0.00350147
0.00602911
0.00823788
0.00468095
0.000951503
1.21556e-07
4.55264e-07
1.99765e-06
0.000891766
0.000380307
0.000257892
0.000610836
0.00105216
0.000658249
0.000313954
0.00032723
0.000887623
0.00309711
0.00312883
0.0023761
0.00225882
0.00228693
0.000267642
8.36648e-05
4.44386e-05
0.000141694
0.00202822
0.00340064
0.00516354
0.0061802
0.00579373
0.00326584
0.00013684
1.59363e-07
1.09588e-06
1.17606e-06
6.60021e-07
9.39245e-07
0.000637012
0.000449002
0.000295958
0.000369685
3.58521e-05
4.56229e-07
3.48198e-06
7.31311e-06
3.16465e-05
7.6931e-05
0.000193659
0.000747976
0.00249691
0.00221789
0.00210091
0.00218762
0.00251054
0.0037005
0.00461075
0.00367219
0.00184006
0.000147654
6.09713e-06
4.04769e-07
2.22522e-07
6.61109e-07
1.28301e-06
1.06632e-06
8.87119e-07
1.08734e-06
0.000492834
0.000485934
8.52963e-05
3.85499e-05
7.15824e-07
1.53646e-06
7.01819e-06
1.36262e-05
1.08334e-05
1.79299e-06
5.66256e-07
6.28312e-07
1.9076e-06
1.67267e-06
0.000877632
0.00153277
0.00190847
0.00156913
4.91364e-05
5.45215e-06
2.66489e-06
2.7227e-06
1.69807e-06
6.79642e-07
2.52124e-07
8.37219e-07
1.85854e-06
1.38761e-06
6.52054e-07
7.82254e-07
0.000315008
0.000465007
2.97282e-05
5.27199e-05
1.56915e-07
2.44789e-06
6.36338e-06
1.52965e-06
6.42053e-07
5.87059e-07
9.75343e-07
9.77355e-07
1.91495e-06
9.66944e-07
7.37342e-07
1.22143e-05
1.71936e-05
5.36096e-06
2.01666e-06
1.38798e-06
1.31073e-06
1.88356e-06
1.49014e-06
6.15799e-07
2.50212e-07
8.30774e-07
2.60583e-06
2.17651e-06
8.56307e-07
3.05898e-07
0.000230999
0.00041753
3.66586e-05
8.02398e-05
4.55295e-07
1.5434e-06
2.62624e-07
2.20601e-07
4.25854e-07
8.188e-07
1.11452e-06
8.81757e-07
1.99241e-06
1.01673e-06
5.01526e-06
2.09094e-05
1.52371e-05
2.6895e-06
1.1615e-06
9.04765e-07
8.31693e-07
1.1115e-06
1.10067e-06
6.10263e-07
3.76139e-07
9.23503e-07
2.69835e-06
2.25885e-06
8.54999e-07
3.16974e-07
0.000149473
0.00038362
4.79881e-05
9.11679e-05
9.94966e-07
5.21609e-07
4.54016e-07
4.20066e-07
6.02676e-07
1.25062e-06
1.03429e-06
7.5448e-07
1.36659e-06
1.68896e-06
1.25402e-05
2.78753e-05
1.22176e-05
1.50596e-06
4.08924e-07
4.60294e-07
5.78869e-07
8.5275e-07
1.104e-06
6.48964e-07
3.37221e-07
9.11458e-07
3.63864e-06
3.24173e-06
9.89605e-07
2.093e-07
8.8012e-05
0.000371396
6.67925e-05
7.79763e-05
5.45314e-07
6.38307e-07
9.89823e-07
6.19712e-07
7.9532e-07
1.58433e-06
9.41644e-07
8.2831e-07
1.08309e-06
3.68033e-06
2.17813e-05
3.43697e-05
8.30035e-06
8.42689e-07
4.38202e-07
2.82775e-07
3.7177e-07
6.06776e-07
8.43837e-07
6.38704e-07
4.54332e-07
9.502e-07
3.69181e-06
4.03303e-06
1.16073e-06
1.6773e-07
5.24639e-05
0.000339976
8.17654e-05
6.54304e-05
3.35129e-07
8.84823e-07
1.36747e-06
6.42826e-07
1.38852e-06
1.34164e-06
8.93693e-07
6.71498e-07
1.52568e-06
8.64307e-06
2.99117e-05
3.06827e-05
4.6974e-06
7.14115e-07
4.38892e-07
4.22893e-07
4.09829e-07
5.79402e-07
9.09021e-07
7.42253e-07
5.09529e-07
8.05258e-07
3.33468e-06
4.65685e-06
1.427e-06
1.68513e-07
2.70045e-05
0.000302228
9.16655e-05
5.51219e-05
3.73148e-07
1.43335e-06
1.26109e-06
7.7215e-07
1.71607e-06
1.25664e-06
7.66942e-07
5.2547e-07
2.07897e-06
1.44698e-05
3.40515e-05
2.75628e-05
3.85887e-06
8.13727e-07
4.49413e-07
4.45252e-07
4.5594e-07
5.19768e-07
7.95153e-07
8.14954e-07
5.64809e-07
8.38785e-07
3.05128e-06
4.84456e-06
1.91779e-06
1.80441e-07
1.26072e-05
0.000280625
9.3355e-05
2.08886e-05
4.93744e-07
1.56592e-06
1.06068e-06
1.28187e-06
1.65874e-06
1.16933e-06
7.38457e-07
5.13899e-07
4.38583e-06
2.04507e-05
3.40505e-05
2.44345e-05
3.7169e-06
9.14422e-07
5.91554e-07
4.80768e-07
4.65786e-07
5.54413e-07
8.54749e-07
9.64725e-07
7.72242e-07
8.49655e-07
2.6887e-06
4.88845e-06
2.29572e-06
2.51345e-07
4.90972e-06
0.000258223
9.98116e-05
5.26017e-06
7.81434e-07
1.93841e-06
9.57066e-07
1.65161e-06
1.4544e-06
1.18189e-06
6.01163e-07
5.22076e-07
6.70029e-06
2.42829e-05
3.32901e-05
2.40224e-05
4.65951e-06
1.16441e-06
7.21773e-07
6.09641e-07
5.34455e-07
5.85488e-07
8.39007e-07
1.00784e-06
8.32926e-07
8.31246e-07
2.2434e-06
4.61655e-06
2.85939e-06
4.17264e-07
1.75125e-06
0.000207539
0.000101667
3.68957e-06
1.18257e-06
1.71163e-06
1.14807e-06
1.75456e-06
1.35685e-06
1.15897e-06
5.64661e-07
8.13357e-07
9.53039e-06
2.75337e-05
3.33764e-05
2.52128e-05
6.17018e-06
1.52882e-06
9.42756e-07
7.3055e-07
6.31579e-07
6.22737e-07
8.02156e-07
1.00663e-06
9.2999e-07
8.64839e-07
1.87306e-06
4.24555e-06
3.33037e-06
6.56518e-07
6.74634e-07
0.000174634
9.76909e-05
3.31131e-06
1.62337e-06
1.37663e-06
1.53018e-06
1.56581e-06
1.48267e-06
1.15893e-06
6.98906e-07
1.41988e-06
1.22213e-05
3.0265e-05
3.41e-05
2.68593e-05
8.32967e-06
2.00469e-06
1.21609e-06
9.33313e-07
7.84763e-07
7.60314e-07
8.35594e-07
1.02479e-06
1.02357e-06
9.06376e-07
1.49747e-06
3.56947e-06
3.85012e-06
9.94943e-07
3.44865e-07
0.000162512
7.83165e-05
1.16345e-06
2.27703e-06
1.20316e-06
1.69678e-06
1.65844e-06
1.5487e-06
1.12848e-06
9.58645e-07
2.334e-06
1.45423e-05
3.17016e-05
3.46543e-05
2.90506e-05
1.11858e-05
2.73485e-06
1.55163e-06
1.16182e-06
9.65751e-07
9.25067e-07
9.44445e-07
1.04157e-06
1.07467e-06
9.50538e-07
1.28458e-06
2.63508e-06
3.66815e-06
1.34997e-06
3.47057e-07
0.000130977
5.94063e-05
6.22218e-07
2.43979e-06
1.31862e-06
1.92051e-06
1.77515e-06
1.4987e-06
1.29205e-06
1.41168e-06
3.52356e-06
1.57568e-05
3.04317e-05
3.40802e-05
3.05769e-05
1.44706e-05
3.90323e-06
2.00752e-06
1.49038e-06
1.19952e-06
1.10507e-06
1.12316e-06
1.15099e-06
1.1395e-06
9.887e-07
1.19036e-06
2.12919e-06
3.1342e-06
1.53915e-06
4.75468e-07
0.000138775
5.82814e-05
8.21123e-07
2.33494e-06
1.63517e-06
2.00551e-06
1.71431e-06
1.55667e-06
1.73273e-06
2.00123e-06
4.76525e-06
1.52502e-05
2.64756e-05
3.08737e-05
3.01448e-05
1.75549e-05
5.71849e-06
2.62307e-06
1.94371e-06
1.53593e-06
1.34185e-06
1.31125e-06
1.30153e-06
1.25334e-06
1.04027e-06
1.10748e-06
1.85201e-06
2.53249e-06
1.53107e-06
5.83702e-07
0.000260203
4.89668e-06
2.31689e-06
2.73241e-06
1.94794e-06
1.89141e-06
1.7405e-06
1.98796e-06
2.25698e-06
2.74135e-06
5.74931e-06
1.3237e-05
2.09385e-05
2.4859e-05
2.6714e-05
1.94304e-05
8.122e-06
3.56094e-06
2.50112e-06
2.01418e-06
1.71496e-06
1.59352e-06
1.51478e-06
1.38523e-06
1.12334e-06
1.10251e-06
1.6407e-06
2.00527e-06
1.1993e-06
7.29161e-07
0.000206145
2.10522e-06
3.25654e-06
2.70536e-06
1.97584e-06
1.94165e-06
2.19612e-06
2.59807e-06
2.7766e-06
3.58326e-06
6.36879e-06
1.06686e-05
1.49188e-05
1.72713e-05
2.01701e-05
1.82276e-05
1.03283e-05
5.08306e-06
3.29362e-06
2.59707e-06
2.22077e-06
2.01419e-06
1.85832e-06
1.55075e-06
1.21625e-06
1.17103e-06
1.55187e-06
1.72629e-06
8.73323e-07
9.95841e-07
8.37374e-05
1.7897e-06
2.90294e-06
2.40475e-06
2.24391e-06
2.45278e-06
2.91243e-06
3.0865e-06
3.33978e-06
4.52116e-06
6.51159e-06
7.99538e-06
9.29032e-06
1.08178e-05
1.24482e-05
1.38159e-05
1.09061e-05
6.69865e-06
4.49516e-06
3.39712e-06
2.81787e-06
2.49251e-06
2.25534e-06
1.79533e-06
1.3995e-06
1.29222e-06
1.46755e-06
1.58266e-06
7.55987e-07
1.65274e-06
1.6168e-05
1.89829e-06
2.81425e-06
2.59254e-06
2.84463e-06
3.19383e-06
3.35393e-06
3.43706e-06
4.03712e-06
5.06677e-06
5.70868e-06
5.71117e-06
5.79072e-06
6.58882e-06
7.20112e-06
8.66015e-06
9.22171e-06
7.66606e-06
5.79897e-06
4.55187e-06
3.66655e-06
3.09938e-06
2.66947e-06
2.13816e-06
1.65681e-06
1.42745e-06
1.49334e-06
1.50626e-06
6.99751e-07
3.01035e-06
2.7984e-06
2.22798e-06
2.65605e-06
3.18577e-06
3.40669e-06
3.39285e-06
3.3708e-06
3.76925e-06
4.37125e-06
4.50914e-06
4.22232e-06
3.83053e-06
3.68425e-06
4.02811e-06
4.11971e-06
4.81544e-06
5.89027e-06
6.77637e-06
6.65354e-06
5.73758e-06
4.82984e-06
4.00732e-06
3.27571e-06
2.6044e-06
2.00537e-06
1.66784e-06
1.6185e-06
1.48724e-06
7.36668e-07
5.49682e-06
3.35291e-06
1.91387e-06
2.81728e-06
3.31325e-06
3.10402e-06
2.89606e-06
3.24138e-06
3.59618e-06
3.35995e-06
2.95102e-06
2.58702e-06
2.28642e-06
2.14547e-06
2.25884e-06
2.27708e-06
2.59932e-06
3.18311e-06
4.04306e-06
5.39695e-06
6.43207e-06
6.02121e-06
5.05129e-06
4.00771e-06
3.26749e-06
2.541e-06
2.09327e-06
1.86387e-06
1.57623e-06
8.7977e-07
1.00524e-05
6.85694e-06
2.0065e-06
2.65861e-06
2.49888e-06
2.14709e-06
2.44213e-06
2.52487e-06
2.24177e-06
1.98374e-06
1.77871e-06
1.61484e-06
1.50158e-06
1.45214e-06
1.4688e-06
1.54246e-06
1.70564e-06
1.98408e-06
2.35132e-06
2.95663e-06
4.29129e-06
6.34397e-06
6.45097e-06
4.59383e-06
3.72684e-06
3.26271e-06
2.76078e-06
2.35794e-06
1.80827e-06
1.11073e-06
1.85693e-05
1.32268e-05
2.03905e-06
1.49809e-06
1.37648e-06
1.63557e-06
1.51981e-06
1.37389e-06
1.30566e-06
1.25435e-06
1.21302e-06
1.19583e-06
1.20464e-06
1.23299e-06
1.27404e-06
1.33856e-06
1.42328e-06
1.5443e-06
1.7068e-06
1.92584e-06
2.33326e-06
3.41693e-06
6.08517e-06
6.3331e-06
3.67203e-06
3.46386e-06
3.49594e-06
3.07083e-06
2.39078e-06
1.5145e-06
3.18292e-05
2.32577e-05
1.02484e-06
6.62329e-07
8.38625e-07
8.38769e-07
8.32529e-07
8.66323e-07
8.82182e-07
8.93431e-07
9.1959e-07
9.65412e-07
1.02587e-06
1.09219e-06
1.15526e-06
1.21382e-06
1.26725e-06
1.32354e-06
1.39787e-06
1.50747e-06
1.68562e-06
2.01933e-06
2.91036e-06
5.65025e-06
5.8093e-06
2.76866e-06
3.28737e-06
3.76278e-06
3.22733e-06
2.23041e-06
4.80819e-05
3.68396e-05
7.87854e-06
2.82057e-07
3.2123e-07
5.15068e-07
6.13619e-07
6.46692e-07
6.54907e-07
6.69966e-07
7.05463e-07
7.61767e-07
8.32142e-07
9.06924e-07
9.76489e-07
1.0345e-06
1.07977e-06
1.11824e-06
1.16435e-06
1.2374e-06
1.36142e-06
1.56812e-06
1.89089e-06
2.62932e-06
4.99415e-06
5.0312e-06
2.1719e-06
3.33655e-06
3.41457e-06
3.60015e-06
7.27364e-05
4.89632e-05
3.25317e-06
7.47309e-08
2.59373e-07
4.31386e-07
5.00019e-07
5.03022e-07
4.9153e-07
4.93564e-07
5.1944e-07
5.67806e-07
6.31287e-07
7.00259e-07
7.65646e-07
8.20919e-07
8.64461e-07
9.00021e-07
9.37179e-07
9.90749e-07
1.08044e-06
1.23131e-06
1.46025e-06
1.74263e-06
2.2733e-06
3.84827e-06
4.30682e-06
2.60139e-06
3.0079e-06
4.9242e-06
0.000117303
1.83014e-05
5.91216e-07
6.31764e-08
1.70539e-07
3.10248e-07
3.68458e-07
3.57868e-07
3.36199e-07
3.32116e-07
3.53556e-07
3.96912e-07
4.53878e-07
5.15357e-07
5.73574e-07
6.23024e-07
6.62083e-07
6.92373e-07
7.18795e-07
7.50419e-07
8.01359e-07
8.90791e-07
1.03713e-06
1.232e-06
1.42157e-06
1.72963e-06
2.63989e-06
4.53288e-06
5.87922e-06
5.11987e-06
0.000179778
9.81748e-06
9.99273e-07
2.60394e-07
1.34567e-07
2.10288e-07
2.30417e-07
2.06091e-07
1.85168e-07
1.89205e-07
2.19006e-07
2.66923e-07
3.24015e-07
3.82638e-07
4.36445e-07
4.80667e-07
5.13626e-07
5.35074e-07
5.46797e-07
5.5404e-07
5.66733e-07
5.99135e-07
6.66256e-07
7.7686e-07
9.19338e-07
1.03082e-06
1.11599e-06
1.83534e-06
1.2316e-05
8.02946e-06
0.000237022
7.73366e-06
2.25766e-06
6.17116e-07
1.50291e-07
1.32382e-07
1.00144e-07
7.05001e-08
6.66585e-08
9.1802e-08
1.37104e-07
1.92727e-07
2.51639e-07
3.09137e-07
3.60306e-07
4.01111e-07
4.28531e-07
4.40489e-07
4.37132e-07
4.22219e-07
4.04262e-07
3.9623e-07
4.132e-07
4.71322e-07
5.84029e-07
6.99856e-07
6.43739e-07
5.77386e-07
4.01879e-06
2.52429e-05
0.00026643
5.56565e-06
4.23688e-06
5.12444e-07
1.40906e-07
2.58669e-08
5.57073e-09
3.40141e-09
2.40757e-08
6.65428e-08
1.19042e-07
1.74152e-07
2.29205e-07
2.82831e-07
3.31305e-07
3.69651e-07
3.92273e-07
3.95037e-07
3.77139e-07
3.42408e-07
3.00158e-07
2.6508e-07
2.5692e-07
3.0162e-07
4.28646e-07
5.91859e-07
5.1384e-07
2.30523e-07
6.16064e-07
2.26581e-05
0.000297186
8.81686e-06
3.64343e-06
1.19979e-06
1.15421e-07
1.52941e-08
3.10314e-08
4.20969e-08
7.0434e-08
1.09664e-07
1.51945e-07
1.94868e-07
2.39541e-07
2.86555e-07
3.32856e-07
3.70231e-07
3.89102e-07
3.82879e-07
3.50101e-07
2.9536e-07
2.29839e-07
1.71362e-07
1.47089e-07
1.97153e-07
3.80074e-07
7.20148e-07
6.98677e-07
1.98048e-07
1.13065e-07
1.17298e-05
0.000280651
5.76462e-06
2.45206e-05
2.04895e-06
3.28707e-07
2.54449e-07
2.21012e-07
1.83544e-07
1.79299e-07
1.91734e-07
2.11744e-07
2.36304e-07
2.66623e-07
3.05951e-07
3.52142e-07
3.92425e-07
4.10361e-07
3.9588e-07
3.47823e-07
2.72047e-07
1.81801e-07
9.92693e-08
5.91232e-08
1.13594e-07
3.66728e-07
1.07608e-06
9.62428e-07
1.53559e-07
2.21752e-06
1.05605e-05
0.000216357
2.25342e-06
5.09313e-06
6.24814e-06
1.25982e-06
6.68061e-07
4.1659e-07
3.2649e-07
2.94698e-07
2.86615e-07
2.88061e-07
2.93364e-07
3.04796e-07
3.30756e-07
3.77915e-07
4.28141e-07
4.52599e-07
4.36343e-07
3.74029e-07
2.74945e-07
1.6018e-07
5.74211e-08
6.67999e-09
5.25498e-08
3.56624e-07
1.41367e-06
1.20396e-06
4.55661e-08
1.06567e-06
9.59772e-06
0.000122099
2.62824e-05
1.95785e-06
5.32671e-06
1.16979e-06
6.51853e-07
4.95326e-07
4.33399e-07
4.11668e-07
4.02885e-07
3.9604e-07
3.8406e-07
3.6643e-07
3.63868e-07
3.99761e-07
4.67575e-07
5.16582e-07
5.13315e-07
4.3946e-07
3.13037e-07
1.75055e-07
6.01111e-08
6.55344e-09
4.13855e-08
3.42477e-07
1.98318e-06
1.26447e-06
2.12627e-07
5.63472e-07
7.36101e-06
4.47117e-05
1.92903e-05
4.86982e-06
2.3012e-06
8.94227e-07
7.17972e-07
6.83831e-07
6.05329e-07
5.78043e-07
5.90693e-07
5.9907e-07
6.10013e-07
5.6036e-07
4.51148e-07
4.23847e-07
5.10212e-07
6.01844e-07
6.0528e-07
5.28189e-07
3.92714e-07
2.32768e-07
1.09462e-07
5.92058e-08
9.07103e-08
3.9048e-07
3.20189e-06
4.21912e-06
1.60968e-06
1.99951e-06
8.91119e-06
3.20572e-05
1.74304e-05
7.05201e-06
1.36677e-06
1.38264e-06
1.10632e-06
8.66279e-07
7.75467e-07
7.941e-07
8.1316e-07
9.24823e-07
9.73402e-07
1.08116e-06
8.96435e-07
5.06497e-07
5.74192e-07
6.7902e-07
6.99625e-07
6.23979e-07
4.90541e-07
3.27176e-07
1.99627e-07
1.7668e-07
2.29505e-07
5.01106e-07
3.60613e-06
1.29335e-05
3.23348e-05
7.78001e-06
2.07327e-05
3.04344e-05
2.21663e-05
2.64346e-06
2.13488e-06
1.63664e-06
1.22894e-06
9.77044e-07
9.92538e-07
9.59355e-07
1.13263e-06
1.24657e-06
1.77792e-06
2.72076e-06
2.08488e-06
6.90233e-07
6.87123e-07
7.98992e-07
7.89775e-07
7.19272e-07
6.229e-07
4.46822e-07
3.21635e-07
3.48612e-07
5.34425e-07
6.12387e-07
3.69867e-06
1.02372e-05
8.22496e-05
9.73764e-05
6.65387e-05
0.000110578
1.36183e-05
2.01068e-06
2.36038e-06
1.60881e-06
1.14264e-06
1.16863e-06
1.02267e-06
1.19151e-06
1.25191e-06
1.91864e-06
2.93245e-06
3.33513e-06
5.60016e-06
1.95874e-06
1.08873e-06
1.04394e-06
9.08812e-07
8.05718e-07
7.75272e-07
5.99468e-07
4.43156e-07
5.048e-07
7.16907e-07
6.62975e-07
2.3288e-06
1.08743e-05
1.21021e-05
7.19068e-05
3.15693e-05
2.54257e-05
5.72805e-06
2.30969e-06
1.95327e-06
1.2668e-06
1.31152e-06
1.03026e-06
1.18219e-06
1.10944e-06
1.71457e-06
1.34639e-06
1.14266e-06
2.32052e-05
0.00010183
1.37121e-05
2.28674e-06
1.44513e-06
1.18378e-06
1.01013e-06
9.87068e-07
8.05382e-07
5.66124e-07
5.31605e-07
7.21315e-07
6.87406e-07
1.10058e-06
8.15864e-06
3.84848e-06
2.88357e-06
8.20012e-07
4.10572e-06
3.78318e-06
2.12365e-06
1.46205e-06
1.42039e-06
1.04464e-06
1.17551e-06
9.83873e-07
1.45646e-06
7.42818e-07
1.3421e-06
2.313e-05
0.000150326
0.000210476
5.51897e-05
8.16187e-06
2.89367e-06
1.86662e-06
1.51981e-06
1.42612e-06
1.18717e-06
7.24618e-07
4.85839e-07
5.88147e-07
6.39479e-07
7.37541e-07
2.96216e-06
3.84769e-06
2.57666e-06
1.0151e-06
3.19001e-06
3.00824e-06
1.843e-06
1.5464e-06
1.10795e-06
1.18719e-06
9.12759e-07
1.30109e-06
5.57152e-07
1.41032e-06
6.29142e-06
3.41275e-05
0.000174764
0.000235089
0.000108428
1.19995e-05
4.86408e-06
2.8253e-06
2.19136e-06
2.13227e-06
1.84954e-06
9.81425e-07
5.54118e-07
4.47515e-07
5.54833e-07
6.83946e-07
9.00341e-07
3.62902e-06
2.40758e-06
1.6234e-06
3.49009e-06
2.40606e-06
1.70857e-06
1.24788e-06
1.21778e-06
8.91916e-07
1.15081e-06
5.58385e-07
9.82515e-07
2.67347e-06
5.41132e-06
2.21037e-05
8.66741e-05
0.000161396
0.000121655
4.15275e-06
4.97092e-06
3.06277e-06
2.60977e-06
2.84006e-06
2.32783e-06
1.21362e-06
6.21944e-07
4.52019e-07
5.03359e-07
6.35159e-07
6.9776e-07
1.09216e-06
2.0924e-06
1.78675e-06
4.61925e-06
1.91711e-06
1.50418e-06
1.27747e-06
9.26298e-07
1.02238e-06
5.84647e-07
6.19001e-07
1.61863e-06
2.88961e-06
2.22392e-06
4.65127e-05
3.48319e-05
7.38164e-05
0.000229551
1.17751e-05
2.93283e-06
2.24311e-06
2.46511e-06
2.66421e-06
2.22718e-06
1.13705e-06
6.39923e-07
4.5733e-07
4.69672e-07
5.61665e-07
6.81847e-07
7.27049e-07
1.05778e-06
1.4231e-06
5.53837e-06
1.55158e-06
1.36967e-06
1.05638e-06
1.0525e-06
6.12071e-07
4.28984e-07
1.62555e-06
3.82004e-06
6.77327e-05
0.000305
0.000432089
0.000302244
8.59498e-05
0.000348926
6.86015e-05
7.09687e-07
9.97524e-07
1.64767e-06
1.88095e-06
1.70216e-06
9.47077e-07
5.89971e-07
4.18781e-07
4.32154e-07
5.21983e-07
6.14767e-07
7.1908e-07
7.62476e-07
1.24964e-06
5.47127e-06
1.31772e-06
1.22166e-06
1.16143e-06
7.51371e-07
4.75219e-07
1.26076e-06
6.30068e-06
0.000525843
0.0011108
0.00120836
0.000789043
0.000824654
0.000415303
0.000715789
0.000662822
4.81112e-07
4.28193e-07
8.63423e-07
1.18293e-06
1.02024e-06
7.33342e-07
5.06472e-07
3.45284e-07
3.92896e-07
4.91284e-07
5.57923e-07
6.98564e-07
8.79955e-07
1.3582e-06
3.95674e-06
1.36205e-06
1.26034e-06
7.92962e-07
8.63211e-07
1.57688e-06
7.14413e-06
0.000662078
0.00116057
0.000356466
0.000189397
0.000233231
0.000461517
0.000663907
0.000461548
0.00156847
0.000540664
9.84509e-07
5.95268e-07
6.78474e-07
6.39782e-07
6.62748e-07
4.46339e-07
2.79859e-07
3.86765e-07
4.74319e-07
5.20494e-07
6.34897e-07
9.40866e-07
1.44947e-06
2.52564e-06
1.44731e-06
1.21767e-06
1.52271e-06
2.68288e-06
7.81664e-06
0.000500415
0.00105813
1.24894e-05
3.86784e-06
3.4202e-06
1.04066e-05
7.40006e-05
0.000219008
0.000161151
0.000380967
0.00172194
0.000195446
1.88339e-06
4.84745e-07
5.0067e-07
9.32223e-07
5.65029e-07
4.50863e-07
5.52498e-07
5.009e-07
4.95709e-07
5.81921e-07
9.02569e-07
1.4947e-06
2.07715e-06
1.23756e-06
1.46656e-06
1.67149e-06
6.24403e-06
0.000164045
0.000609692
2.77767e-06
1.65905e-06
1.72535e-06
6.3725e-06
3.59527e-06
2.0709e-06
1.30958e-05
2.35441e-05
4.16649e-06
0.000661853
0.00125805
7.84161e-06
1.1862e-06
7.7933e-07
1.30683e-06
3.24745e-06
1.06455e-05
1.48012e-06
6.38634e-07
5.25934e-07
5.58628e-07
7.73502e-07
1.46266e-06
2.28481e-06
3.34282e-06
1.83518e-06
1.64605e-06
1.44313e-05
0.000408836
2.13312e-05
2.92207e-06
2.47504e-06
1.56282e-06
1.35689e-06
6.10875e-06
3.58286e-06
1.26926e-06
1.86087e-06
1.08072e-06
1.05118e-05
0.00087321
0.00033219
2.00848e-06
1.43087e-06
6.1054e-06
8.01473e-05
6.67023e-05
3.77649e-06
1.31841e-06
7.49799e-07
6.24456e-07
6.71897e-07
1.23058e-06
3.29325e-06
3.4481e-05
1.99731e-05
5.95948e-06
0.000168897
6.34416e-05
2.84647e-06
2.55953e-06
3.10335e-06
2.97223e-06
1.53795e-06
1.32227e-06
2.66855e-06
3.40078e-06
2.63261e-06
1.69358e-06
9.71876e-07
0.000121012
0.000711484
2.11058e-05
2.10327e-06
2.3898e-05
2.79414e-05
0.000120106
4.63908e-05
3.30932e-06
1.24907e-06
9.70128e-07
8.30396e-07
1.39864e-06
1.05209e-05
1.04184e-05
1.18096e-05
2.94746e-05
1.69255e-05
3.88091e-06
3.49086e-06
3.30979e-06
2.91657e-06
3.11782e-06
3.56529e-06
1.95513e-06
1.33268e-06
1.5113e-06
2.85078e-06
2.58745e-06
1.48272e-06
1.00243e-06
0.000261266
0.000614846
1.23337e-05
5.60067e-05
1.1286e-06
7.34584e-05
5.44648e-05
1.87199e-06
2.14042e-06
1.71179e-06
1.95669e-06
5.78482e-06
2.51025e-05
1.1368e-06
3.55744e-06
5.68244e-06
5.04679e-06
3.70693e-06
3.58684e-06
3.74109e-06
3.6019e-06
3.10926e-06
2.90323e-06
3.34625e-06
3.01068e-06
2.18025e-06
2.31632e-06
2.07542e-06
1.39539e-06
1.84675e-06
1.78422e-06
0.000264421
0.00023886
2.18687e-05
1.99018e-05
6.81644e-05
9.3556e-06
3.05014e-06
2.74924e-06
2.71239e-06
4.34645e-06
1.08953e-05
1.81514e-06
1.18176e-06
2.56722e-06
3.97026e-06
4.94559e-06
4.58478e-06
3.95725e-06
3.92136e-06
4.0762e-06
3.87278e-06
3.329e-06
3.26093e-06
4.09301e-06
4.26913e-06
3.36688e-06
2.57433e-06
1.36082e-06
1.92055e-06
2.39856e-06
2.96172e-06
9.12052e-05
6.77536e-05
7.13996e-05
1.05271e-05
1.75046e-07
1.66189e-06
1.54106e-06
1.88788e-06
2.87098e-06
2.37136e-06
6.38819e-07
1.90346e-06
1.94748e-06
3.02112e-06
4.63543e-06
5.94874e-06
6.41389e-06
5.93379e-06
5.53382e-06
5.26505e-06
4.44473e-06
3.42729e-06
3.34728e-06
3.9542e-06
4.4349e-06
3.18418e-06
2.60759e-06
2.67475e-06
2.26859e-06
4.0045e-06
1.68724e-05
0.000102889
9.57551e-05
2.40383e-06
4.68322e-07
2.25598e-07
3.94537e-07
7.3274e-07
1.05149e-06
7.59742e-07
8.50034e-07
2.97651e-06
1.5034e-06
2.204e-06
3.19327e-06
4.29635e-06
5.7435e-06
7.08458e-06
6.43269e-06
4.84584e-06
5.44618e-06
6.66412e-06
5.90166e-06
5.85054e-06
6.02639e-06
4.83609e-06
4.22863e-06
4.36261e-06
3.42987e-06
3.70493e-06
8.01643e-06
9.56071e-05
9.20308e-05
2.17151e-06
4.16451e-07
1.97048e-07
2.91859e-07
3.97379e-07
4.29806e-07
3.9802e-07
6.09424e-07
3.22608e-06
1.43318e-06
1.68512e-06
2.39761e-06
3.35643e-06
4.08244e-06
4.42913e-06
5.68609e-06
9.49592e-06
3.50109e-06
1.91322e-06
4.14137e-06
5.58932e-06
6.46081e-06
7.01084e-06
7.20002e-06
7.354e-06
7.4477e-06
6.04484e-06
6.98385e-06
6.56982e-05
9.04256e-05
6.31687e-06
4.79314e-07
3.19814e-07
2.91215e-07
2.95215e-07
3.35506e-07
4.57753e-07
6.73462e-07
3.01087e-06
1.87547e-06
1.74269e-06
2.22386e-06
2.59208e-06
2.34436e-06
1.57966e-06
7.18106e-07
4.8335e-07
3.75307e-06
1.72651e-05
2.3475e-06
1.04139e-06
3.57762e-06
5.68978e-06
7.54403e-06
1.34781e-05
1.5569e-05
8.12939e-06
3.6848e-06
2.98053e-05
0.000156749
1.50734e-05
8.02632e-07
4.4567e-07
2.80163e-07
2.57342e-07
3.34541e-07
5.57122e-07
8.82224e-07
3.14794e-06
4.21181e-06
4.87638e-06
3.61396e-06
2.77144e-06
1.8579e-06
7.30547e-07
2.37882e-07
8.00078e-08
6.07142e-08
1.64904e-07
2.01775e-06
2.01149e-06
8.36527e-08
3.17744e-07
7.30677e-07
2.76307e-06
7.21178e-06
9.92733e-06
3.24455e-06
3.61875e-05
0.000147394
1.99371e-06
5.97425e-07
3.87258e-07
2.76092e-07
2.62064e-07
3.55309e-07
6.41363e-07
1.08366e-06
6.55547e-06
7.79514e-06
3.80357e-06
5.9982e-06
2.86983e-06
9.51651e-07
2.50616e-07
4.68549e-08
2.22457e-08
2.58823e-08
4.01299e-08
5.55797e-08
7.94721e-08
4.86751e-08
2.58869e-08
3.4354e-08
1.00722e-07
3.17281e-07
7.13603e-07
6.97095e-06
7.85175e-05
2.14975e-05
5.14924e-07
3.37208e-07
3.27099e-07
2.76102e-07
2.73267e-07
3.84744e-07
7.26254e-07
1.25179e-06
9.92106e-06
6.19015e-06
8.55216e-06
5.27319e-06
3.90216e-06
1.49812e-06
6.71762e-07
2.24609e-07
4.94386e-08
1.77859e-08
1.82322e-08
2.14236e-08
2.37413e-08
1.81522e-08
7.51505e-09
1.17431e-08
4.76005e-08
1.33563e-07
4.35558e-07
5.16219e-06
2.99376e-05
2.71654e-06
3.64382e-07
2.9969e-07
3.96167e-07
3.22353e-07
3.02122e-07
4.05361e-07
7.85932e-07
1.39891e-06
3.81264e-06
1.10194e-05
7.68271e-06
6.33199e-06
7.50947e-06
4.4256e-06
1.70244e-06
5.48441e-07
1.40539e-07
3.01212e-08
1.19632e-08
1.02455e-08
8.19018e-09
4.52992e-09
3.35102e-09
1.64919e-08
6.30762e-08
1.60334e-07
4.33827e-07
1.85632e-06
3.7395e-06
1.22246e-06
3.24679e-07
2.60246e-07
4.15506e-07
3.85659e-07
3.62171e-07
4.61099e-07
8.06714e-07
1.47795e-06
1.59168e-05
4.95752e-06
1.46559e-05
9.62993e-06
4.25702e-06
2.32933e-06
1.08248e-06
4.03669e-07
1.18972e-07
2.4428e-08
8.07103e-09
6.86512e-09
5.47476e-09
4.42772e-09
9.8776e-09
3.75207e-08
1.02603e-07
2.16816e-07
4.3483e-07
8.95221e-07
1.44763e-06
9.2285e-07
3.46508e-07
2.13198e-07
2.58088e-07
3.51716e-07
4.03791e-07
5.87508e-07
8.48858e-07
1.44703e-06
1.75799e-05
1.62067e-05
6.60307e-06
6.99191e-06
3.81957e-06
1.49371e-06
6.81947e-07
2.49061e-07
6.15563e-08
1.22804e-08
6.95219e-09
7.13364e-09
6.01543e-09
6.84215e-09
2.05573e-08
6.58895e-08
1.48236e-07
2.606e-07
4.25829e-07
6.4809e-07
8.3702e-07
6.70608e-07
3.72747e-07
1.72157e-07
1.32144e-07
2.33211e-07
3.88285e-07
5.95028e-07
9.4745e-07
1.40666e-06
1.73994e-05
1.24775e-05
1.20817e-05
5.36312e-06
1.96736e-06
8.16615e-07
3.15212e-07
1.08448e-07
3.12419e-08
1.23483e-08
1.11947e-08
1.01192e-08
6.95461e-09
7.32411e-09
2.98748e-08
1.05859e-07
2.07131e-07
3.00068e-07
4.03482e-07
5.17152e-07
5.71975e-07
5.12791e-07
3.70531e-07
1.79205e-07
4.68361e-08
7.32569e-08
2.93289e-07
6.30745e-07
1.07945e-06
1.39474e-06
7.9536e-06
1.54782e-05
1.07511e-05
4.10276e-06
9.66057e-07
4.08896e-07
1.47599e-07
5.9116e-08
3.27876e-08
2.5558e-08
2.33413e-08
1.80654e-08
9.92753e-09
5.40029e-09
3.1755e-08
1.68354e-07
2.9679e-07
3.52895e-07
3.94867e-07
4.42436e-07
4.62912e-07
4.59597e-07
4.02276e-07
2.49598e-07
6.28816e-08
1.21094e-08
1.72823e-07
6.3923e-07
1.20222e-06
1.46296e-06
1.17409e-05
1.63852e-05
1.02534e-05
1.69203e-06
1.08781e-06
2.96122e-07
1.01541e-07
6.91373e-08
5.70821e-08
4.88492e-08
4.19133e-08
3.29813e-08
2.22712e-08
9.52341e-09
2.05976e-08
2.14561e-07
4.82927e-07
5.24671e-07
4.54325e-07
4.29962e-07
4.18397e-07
4.5094e-07
4.73145e-07
3.9162e-07
1.82604e-07
3.03655e-08
1.03145e-07
6.95136e-07
1.52382e-06
1.74363e-06
1.48948e-05
7.25459e-06
1.68438e-05
1.17196e-05
1.60223e-06
3.55247e-07
1.72919e-07
1.11147e-07
8.25052e-08
6.49173e-08
5.29105e-08
4.49144e-08
4.38258e-08
4.78493e-08
2.56352e-08
4.29146e-07
1.41049e-06
8.58787e-07
8.87638e-07
4.41465e-07
4.14277e-07
4.50252e-07
5.39886e-07
5.70502e-07
4.26918e-07
1.73259e-07
8.87463e-08
1.69955e-06
3.36731e-06
1.68468e-06
3.92158e-06
2.02886e-05
2.91374e-05
8.29966e-06
7.7756e-07
3.63343e-07
1.90551e-07
1.21552e-07
8.68008e-08
6.10418e-08
4.39533e-08
4.00505e-08
5.08137e-08
8.93086e-08
1.98615e-07
5.5916e-07
3.47741e-06
6.58621e-06
6.42902e-07
5.59139e-07
4.36225e-07
4.49913e-07
5.61734e-07
7.06248e-07
7.32014e-07
5.02973e-07
1.39076e-07
1.606e-06
6.28974e-06
2.16792e-06
1.74512e-05
3.22561e-05
8.13808e-06
2.98011e-07
1.50895e-07
1.86116e-07
1.45109e-07
1.09922e-07
8.11688e-08
4.84184e-08
2.11042e-08
2.4178e-08
5.16551e-08
9.66447e-08
2.44057e-07
1.67503e-06
2.82756e-06
2.0422e-05
4.14393e-07
5.7102e-07
4.73188e-07
4.5102e-07
5.32213e-07
7.33731e-07
9.70161e-07
1.05606e-06
4.18664e-07
9.35215e-07
4.46749e-06
6.00858e-06
0.000217697
5.42143e-06
1.40138e-05
2.16602e-06
2.09838e-07
1.52292e-07
1.3113e-07
1.10277e-07
8.60806e-08
4.51608e-08
3.23031e-08
1.02856e-08
6.60608e-08
1.31862e-07
1.47122e-07
1.74949e-06
3.24383e-05
1.83802e-06
1.15611e-05
5.40355e-07
6.01456e-07
4.18808e-07
4.7892e-07
6.64758e-07
1.04551e-06
1.62898e-06
1.61541e-06
2.47134e-07
4.49069e-06
1.43934e-05
0.000254696
9.16614e-06
3.90888e-05
4.46679e-06
6.21685e-07
1.63076e-07
1.45444e-07
1.36884e-07
1.24271e-07
6.78056e-08
3.15223e-07
3.74705e-07
1.43568e-07
1.40813e-07
1.2186e-07
1.34842e-07
3.96134e-06
1.41577e-05
1.13499e-05
3.8184e-07
3.77493e-07
4.23899e-07
4.4444e-07
5.60842e-07
9.01645e-07
2.01998e-06
3.89072e-06
1.4964e-07
5.4164e-06
1.9209e-05
0.000207766
1.18546e-06
8.71806e-06
9.56311e-06
1.04863e-06
2.15886e-07
2.08523e-07
2.13274e-07
2.3684e-07
5.63442e-07
5.26703e-07
5.69936e-07
6.39747e-07
8.68452e-08
9.38332e-08
7.83976e-08
8.6345e-08
9.48892e-06
3.27484e-06
6.44624e-06
3.62079e-07
4.80639e-07
4.4163e-07
4.90227e-07
7.14203e-07
2.10597e-06
7.19581e-06
8.94162e-07
5.00507e-06
1.93198e-05
0.000197937
1.7948e-06
7.10175e-06
8.95164e-06
1.24882e-06
3.60292e-07
3.41826e-07
3.33329e-07
3.66002e-07
3.07109e-06
6.46993e-07
6.05461e-07
6.2582e-07
8.43877e-08
3.24237e-08
6.00574e-08
8.53921e-08
6.01805e-07
1.24906e-05
1.36441e-05
3.05571e-07
4.06917e-07
4.85441e-07
4.61818e-07
5.40294e-07
1.85055e-06
9.60454e-06
3.37447e-06
3.63302e-06
1.79932e-05
0.000190406
1.5417e-05
2.7002e-05
2.68446e-05
2.04883e-06
5.05211e-07
4.47354e-07
6.09483e-07
8.29515e-07
3.3062e-06
8.62224e-07
3.81942e-07
4.27559e-07
3.11193e-07
1.37296e-07
1.79368e-07
3.08896e-07
9.24699e-07
1.76564e-05
3.69324e-06
8.31633e-07
4.28991e-07
4.93664e-07
4.48148e-07
3.93447e-07
1.37648e-06
9.73687e-06
6.79807e-06
1.68632e-06
1.83654e-05
0.000134691
1.28357e-05
1.60075e-05
1.28008e-05
1.94154e-06
4.56798e-07
4.87657e-07
6.39637e-07
2.27068e-06
3.57531e-06
1.01526e-06
4.43776e-07
4.90363e-07
1.07827e-06
1.36945e-06
1.64848e-06
1.52948e-06
1.11556e-06
3.60553e-06
1.10885e-05
2.08872e-06
4.61296e-07
4.49622e-07
4.16161e-07
2.88761e-07
1.13924e-06
1.07239e-05
3.27924e-05
2.14756e-06
1.8092e-05
5.0005e-05
1.17053e-05
1.62488e-05
6.06628e-06
1.81847e-06
3.75275e-07
5.18836e-07
8.77362e-07
2.32988e-06
2.1224e-06
8.45333e-07
6.57197e-07
8.67672e-07
1.51367e-06
6.30093e-06
3.89987e-06
1.75795e-06
2.81899e-06
3.1669e-06
9.08011e-06
1.89738e-06
5.24777e-07
4.08704e-07
3.98999e-07
2.69958e-07
1.32875e-06
1.59305e-05
0.000375383
0.000392282
0.000288691
1.7882e-05
1.94498e-05
1.73427e-05
8.23895e-06
2.87865e-06
3.95358e-07
4.81856e-07
8.64597e-07
1.72546e-06
7.58388e-07
6.27571e-07
4.34087e-07
5.48645e-07
8.06867e-06
2.20593e-05
2.03215e-05
3.2201e-06
6.42465e-07
2.43011e-06
2.32217e-06
2.06396e-06
5.23888e-07
3.79774e-07
4.26735e-07
2.93024e-07
1.45488e-06
6.06601e-05
0.000254221
0.000242439
0.000443224
1.12545e-05
5.31878e-05
0.000416645
2.96678e-05
6.21539e-06
6.7842e-07
3.87867e-07
5.9548e-07
6.02445e-07
4.03516e-07
3.10487e-07
3.80953e-07
3.88393e-06
1.87086e-05
3.34448e-05
2.9344e-05
9.4546e-06
1.75092e-06
9.08468e-07
2.20095e-06
1.58464e-06
5.91796e-07
4.13487e-07
4.79149e-07
2.81639e-07
9.34928e-07
3.22015e-05
1.07061e-05
8.49692e-06
1.03815e-05
8.14735e-06
0.000262269
0.000485088
0.000135518
9.41771e-06
1.39895e-06
4.73876e-07
3.14182e-07
3.35519e-07
3.17463e-07
4.54572e-07
1.71844e-06
7.03143e-06
1.59596e-05
2.63577e-05
6.62258e-05
6.76294e-05
1.40009e-05
2.16716e-06
2.9285e-06
2.09805e-06
7.61322e-07
4.95899e-07
5.35684e-07
4.06292e-07
6.11724e-07
5.23364e-06
5.95861e-05
0.000247252
3.42598e-06
5.59449e-05
0.000127375
3.60633e-05
0.000157216
7.17534e-06
1.98654e-06
3.74304e-07
2.54336e-07
3.20543e-07
4.84972e-07
7.43273e-07
1.09048e-06
2.23945e-06
4.5291e-06
7.32422e-06
1.28252e-05
0.000104499
8.7621e-05
9.85461e-06
6.08316e-06
3.55872e-06
9.19075e-07
7.54716e-07
6.34723e-07
1.07676e-06
3.66542e-06
2.76152e-05
0.000942245
0.00134331
0.000207397
0.00019384
1.96645e-06
2.58759e-05
8.89483e-05
1.67963e-06
1.73516e-06
2.56199e-07
3.08206e-07
5.14068e-07
7.37039e-07
5.6716e-08
2.81534e-06
1.13968e-06
1.22519e-06
7.17198e-07
1.15721e-07
4.17284e-05
0.000157777
0.00041704
9.44275e-05
1.00726e-05
6.51645e-07
1.40343e-06
1.05386e-06
3.2037e-06
6.07731e-05
0.00210777
0.00399089
0.00158014
0.00180775
0.000193588
1.65295e-05
2.27601e-05
3.98722e-06
8.17305e-07
8.36131e-07
3.27302e-07
8.49689e-07
2.57458e-06
0.000137318
0.00114167
0.000676121
0.00012679
2.00073e-05
1.75984e-05
1.87733e-05
3.55645e-05
0.000450637
0.00041018
0.0016475
0.000161595
7.7453e-07
1.71745e-06
1.09684e-06
7.70783e-06
0.000395167
0.00173815
0.00036724
0.000151867
0.00239662
7.4771e-05
2.89268e-05
6.8745e-06
4.11623e-07
9.69156e-07
5.78018e-07
1.06759e-06
0.00010203
0.00160916
0.00497123
0.00751268
0.00529409
0.000823802
2.48262e-05
1.34203e-05
6.5513e-06
2.91691e-05
0.000541991
0.000529476
0.00257905
0.00484651
3.33225e-05
1.09686e-06
8.52996e-07
8.26551e-06
0.000155118
8.01007e-05
2.03311e-05
3.54907e-06
0.00148926
1.78587e-05
2.39239e-05
2.56941e-06
9.90925e-07
8.96895e-07
1.4041e-05
0.00268242
0.00687918
0.0120652
0.0116544
0.00614247
0.00521825
0.00133508
8.11694e-05
1.31032e-05
1.07618e-05
0.000124476
0.00096074
0.000779474
0.00134734
0.00547349
0.00143335
2.69138e-06
1.01526e-06
9.07109e-06
5.30872e-05
6.78544e-05
0.000141825
6.47759e-06
0.000884703
5.57383e-06
2.96858e-05
6.62348e-06
2.93913e-06
5.14162e-05
0.00861289
0.0146635
0.0207971
0.00601544
4.75031e-05
1.61206e-05
0.000475915
0.00117704
0.000386978
9.26735e-06
7.12795e-06
0.000181472
0.00124785
0.00141779
0.00186377
0.00024294
0.00651181
7.32169e-05
2.02443e-05
2.48142e-05
2.37629e-05
0.00015034
0.000355646
3.1361e-06
0.000713287
1.01744e-06
6.73126e-05
1.49945e-05
0.00401423
0.0137025
0.0217326
0.00317891
3.67796e-06
1.44983e-05
2.72077e-05
1.29211e-05
7.23045e-05
0.00158858
0.0012357
9.25472e-05
1.26318e-05
0.000205467
0.00074335
0.00224896
0.00122425
8.72288e-05
0.00536496
0.00548768
0.00162709
3.86471e-05
2.19865e-05
0.000962207
0.000490929
4.47854e-06
0.00065273
0.00111887
0.00218455
0.00830637
0.0199768
0.0233262
0.000262207
4.3934e-05
1.48785e-05
2.89641e-05
4.68643e-05
1.95652e-05
1.29966e-05
0.00104297
0.00223498
0.00117544
0.000501835
0.000819523
0.00105271
0.00241487
0.000555766
5.60732e-05
3.32241e-05
0.006169
0.00438281
0.00247288
0.000397966
0.00335888
0.000101143
1.21998e-05
0.000499481
0.00528831
0.0155072
0.0226038
0.00151656
1.04633e-06
0.000121846
0.000124789
4.35899e-05
5.32159e-05
7.06421e-05
3.26123e-05
7.15892e-06
9.47595e-05
0.0015038
0.00228973
0.0017573
0.00255155
0.00168572
0.00154155
0.000337369
3.83121e-05
4.91105e-07
2.89429e-06
0.000354356
0.00271556
0.00407325
0.00236146
2.16601e-05
1.96887e-05
0.000416301
0.00528783
0.00229433
9.77818e-08
3.72689e-07
3.52722e-07
5.09621e-05
0.000230717
0.000126279
9.62933e-05
0.000130449
5.01497e-05
7.62625e-06
5.20986e-06
0.000288606
0.00123752
0.00190589
0.00218157
0.00108406
0.000810464
0.000216965
1.65854e-05
1.36409e-06
3.66161e-06
1.88313e-06
9.30008e-06
0.00160499
0.00051592
0.000174234
2.94042e-05
0.000353444
0.00328501
8.918e-06
1.34479e-06
7.1428e-07
4.85749e-07
1.07932e-05
0.00023742
0.00022688
0.000185563
0.000191436
9.51682e-05
1.43899e-05
5.4157e-06
1.94664e-05
0.000155727
0.000701776
0.000414197
0.000431553
0.00051258
0.000160935
9.55518e-06
1.70815e-06
3.52731e-06
2.10928e-06
7.69021e-07
2.07123e-06
0.000270554
0.000568586
7.31516e-05
0.000336596
0.00319401
3.8851e-06
1.65327e-06
9.87145e-07
8.34929e-07
3.45624e-06
0.000138438
0.000334044
0.000353043
0.000235865
0.000112702
2.53513e-05
7.86286e-06
7.20884e-06
4.36096e-07
9.13056e-07
2.39592e-05
0.000251385
0.000389352
0.000118593
7.04201e-06
1.51481e-06
3.22887e-06
1.63155e-06
1.07882e-06
9.72279e-07
1.23428e-05
0.000550758
0.000353785
0.000422961
0.00285686
2.22443e-06
3.00888e-06
1.993e-06
1.89261e-06
1.78035e-06
5.89508e-05
0.00038065
0.000660404
0.000341499
0.000131462
2.75536e-05
9.02749e-06
3.13433e-06
1.51012e-07
8.62366e-07
1.08105e-05
0.0001575
0.000279609
0.000103548
1.03507e-05
1.63643e-06
2.21528e-06
1.3181e-06
1.07851e-06
1.08156e-06
1.34071e-06
0.000163258
0.000535405
0.00065761
0.00254007
2.39756e-06
2.22338e-06
3.621e-06
2.47786e-06
8.50176e-07
1.35646e-05
0.000251693
0.000938656
0.000493663
0.000148223
3.24258e-05
9.53273e-06
2.43968e-06
6.87816e-08
1.35455e-06
6.90357e-06
0.000106515
0.000196468
0.000133068
2.24577e-05
2.05937e-06
1.84775e-06
1.4539e-06
6.97141e-07
1.30638e-06
2.25327e-06
2.90575e-06
0.000456485
0.0011198
0.00228241
2.08911e-06
8.6994e-07
4.17259e-06
3.62758e-06
9.8062e-07
2.83113e-06
0.000107255
0.00084807
0.000747864
0.00016638
3.80879e-05
1.08174e-05
2.2362e-06
3.84489e-08
2.07241e-06
5.5314e-06
6.4584e-05
0.000226057
0.000209116
3.43196e-05
2.60201e-06
1.82516e-06
1.4178e-06
1.257e-06
1.23875e-06
1.92207e-06
2.22077e-06
0.000144544
0.00175779
0.00211663
3.06972e-06
2.81108e-07
2.58082e-06
3.39076e-06
1.61159e-06
1.24231e-06
4.52748e-05
0.000570827
0.000889685
0.000196428
4.22583e-05
1.26571e-05
3.26895e-06
1.11489e-07
2.95043e-06
4.89644e-06
5.80008e-05
0.00040353
0.000216781
4.69763e-05
6.39251e-06
2.14899e-06
1.59919e-06
1.81323e-06
1.73952e-06
1.87246e-06
1.25157e-06
2.38538e-06
0.00239367
0.00186177
3.81087e-06
9.88641e-08
1.07773e-06
2.87377e-06
2.11544e-06
8.27283e-07
2.83526e-05
0.000410927
0.000803886
0.000214014
4.1094e-05
1.24268e-05
5.45789e-06
1.66698e-06
4.4982e-06
4.79448e-06
4.09366e-05
0.000256997
0.000168926
9.2512e-05
1.95937e-05
3.37474e-06
1.98687e-06
1.98323e-06
2.52402e-06
2.61125e-06
1.33099e-06
6.56022e-06
0.00182067
0.00159508
4.56422e-06
7.00702e-07
8.49228e-07
3.01089e-06
2.20262e-06
7.15989e-07
2.15742e-05
0.000336521
0.000699976
0.000205161
4.35268e-05
1.47635e-05
8.48962e-06
4.34459e-06
3.7979e-06
4.81472e-06
2.63351e-05
8.02939e-05
0.000201682
0.000160164
3.92231e-05
6.15472e-06
2.74821e-06
2.24449e-06
2.73643e-06
3.63988e-06
3.38849e-06
1.13075e-05
0.000915594
0.0013474
4.45336e-06
2.60531e-06
1.16188e-06
3.05962e-06
1.71032e-06
1.33209e-06
2.24991e-05
0.000269036
0.000552948
0.000166641
5.28218e-05
2.29405e-05
1.2411e-05
7.59386e-06
3.47206e-06
4.8549e-06
1.32868e-05
5.20574e-05
0.000123561
0.000140786
7.1696e-05
1.30262e-05
3.19854e-06
2.91624e-06
3.18668e-06
4.36887e-06
5.99431e-06
1.47675e-05
0.000519278
0.00115566
4.62971e-06
3.9153e-06
2.02612e-06
3.21095e-06
1.23211e-06
4.04111e-06
3.77279e-05
0.000163684
0.000334704
0.000108003
5.37685e-05
3.64062e-05
1.91951e-05
1.78588e-05
7.99025e-06
5.65967e-06
7.05906e-06
2.01931e-05
3.71907e-05
0.000179411
0.000162112
3.17343e-05
4.32448e-06
4.11267e-06
4.09287e-06
6.15446e-06
7.9166e-06
2.14439e-05
0.00040453
0.0010248
5.55471e-06
3.07929e-06
3.06721e-06
3.44935e-06
1.12331e-06
1.13225e-05
0.000102161
0.000108019
0.000128886
6.96586e-05
4.74375e-05
4.34638e-05
3.19799e-05
3.21069e-05
1.79355e-05
1.15273e-05
6.87368e-06
9.95042e-06
2.11789e-05
0.000133915
0.000257776
7.75703e-05
7.09237e-06
5.21776e-06
5.02804e-06
8.05182e-06
1.26451e-05
3.95489e-05
0.000332213
0.000903924
6.23972e-06
2.53849e-06
3.90283e-06
4.01531e-06
1.47706e-06
2.61128e-05
0.000165944
9.95445e-05
5.10123e-05
6.21527e-05
5.17013e-05
5.8064e-05
4.69024e-05
4.28735e-05
2.84237e-05
2.62058e-05
2.71719e-05
6.13215e-06
1.29667e-05
3.49317e-05
0.000300826
0.000204291
1.32358e-05
5.76502e-06
5.54264e-06
1.09296e-05
2.52656e-05
5.41726e-05
0.000116799
0.000790921
7.75932e-06
2.99359e-06
4.66904e-06
4.12953e-06
3.73367e-06
7.80038e-05
0.000101591
5.37884e-05
2.45963e-05
7.15982e-05
5.31396e-05
6.63698e-05
6.75512e-05
5.4697e-05
4.50786e-05
4.33569e-05
6.98619e-05
1.95103e-05
5.90639e-06
6.94869e-06
0.000577518
0.000520457
2.29484e-05
5.1767e-06
5.74211e-06
1.51635e-05
2.36799e-05
2.23338e-05
6.11338e-05
0.000675116
1.14158e-05
4.49357e-06
5.30689e-06
3.70645e-06
1.88068e-05
0.000253478
6.82771e-05
9.22997e-06
2.57488e-05
8.20613e-05
4.59387e-05
6.34796e-05
7.53077e-05
6.2023e-05
5.86023e-05
7.22329e-05
0.000115883
0.00010556
1.09443e-05
7.32954e-06
0.000990938
0.000726452
3.53647e-05
3.82426e-06
6.4641e-06
9.3546e-06
3.64765e-06
2.22722e-05
3.2308e-05
0.000558725
1.80358e-05
6.95216e-06
5.50358e-06
3.00157e-06
9.39815e-05
0.000338309
3.79339e-05
4.84716e-06
6.64941e-05
0.000103343
5.57599e-05
6.08954e-05
8.56189e-05
8.49505e-05
8.01721e-05
0.000124853
0.000157081
0.000172574
8.72956e-05
1.25375e-05
0.00117918
0.00101816
6.04459e-05
2.72131e-06
3.57437e-06
1.56766e-06
3.08015e-06
3.6559e-05
4.90715e-05
0.000430374
2.75179e-05
1.08309e-05
5.8543e-06
2.62853e-06
0.000282831
0.000462789
7.84887e-06
2.64293e-06
0.000108207
0.000113785
9.35844e-05
8.23847e-05
0.000105351
0.00012819
0.000117463
0.000172114
0.000157173
0.000144168
0.000212219
7.51829e-05
0.00105747
0.00170213
0.00012147
2.14903e-06
1.69949e-06
4.59274e-07
1.79033e-05
7.11301e-05
0.000292058
0.000269767
4.46035e-05
1.78855e-05
6.70717e-06
7.26364e-06
0.000405123
0.000576862
6.80258e-06
5.6982e-06
7.21404e-05
0.000116568
0.000139999
9.75046e-05
0.000118053
0.000134608
0.000128951
0.000173257
0.000123167
8.28953e-05
0.000193888
0.000227891
0.000688486
0.00297713
0.000379644
2.05941e-06
1.08087e-06
6.35261e-07
2.97506e-05
3.01981e-05
0.00119986
9.62241e-05
5.29552e-05
3.1288e-05
8.20195e-06
3.84937e-05
0.000628846
0.00054201
1.4933e-05
1.79892e-05
2.02381e-05
0.000116236
0.000164073
9.62985e-05
0.000106976
0.000113024
0.000105852
0.00011601
7.06486e-05
3.80984e-05
0.000107963
0.000109529
5.44731e-05
0.00391672
0.00168032
1.08993e-05
1.05029e-06
2.78133e-06
1.82286e-05
0.000646279
0.00152085
4.06077e-05
4.32331e-05
4.14536e-05
1.07712e-05
0.000207654
0.0010422
0.000169916
6.87352e-05
2.75031e-05
7.6366e-06
9.76874e-05
0.000153372
0.000109345
0.000158844
0.00013623
0.000126806
7.64095e-05
3.67652e-05
2.419e-05
3.71116e-05
5.54804e-06
1.16213e-06
0.00029989
0.0060401
0.00109945
1.01992e-05
2.45564e-06
0.000175434
0.000670522
0.00118923
6.0265e-05
4.54486e-05
3.82372e-05
1.55036e-05
0.000749771
0.00152017
3.46443e-06
5.49396e-05
4.32511e-05
1.3391e-05
3.33635e-05
0.000105837
0.000180934
0.000298171
0.000266064
0.000247405
9.78752e-05
4.1044e-05
2.84002e-05
7.26839e-06
4.07579e-07
3.38666e-07
2.31834e-06
0.00105917
0.00366025
0.0013708
0.000127724
0.000578389
2.85237e-05
0.00128344
6.602e-05
5.86181e-05
4.11297e-05
0.000220178
0.00191983
0.000386189
9.21829e-07
4.98719e-06
7.43971e-05
3.32511e-05
1.62194e-05
7.15289e-05
0.000234267
0.000275814
0.000331821
0.000302959
0.000190063
7.12804e-05
2.67388e-05
1.80618e-06
2.58811e-07
2.9427e-07
3.27262e-07
4.0777e-07
0.000764493
0.00201028
0.00113263
0.000240405
1.46565e-05
0.00119544
9.98255e-05
5.16429e-05
0.000169965
0.00164205
0.00149025
6.94111e-07
4.59722e-07
1.02192e-06
3.00851e-05
4.38377e-05
3.22976e-05
4.54395e-05
0.000106172
5.73847e-05
0.000109739
9.81672e-05
0.000113225
7.30807e-05
2.15803e-05
2.97733e-06
3.33016e-07
2.93719e-07
1.20135e-07
1.31658e-07
8.03525e-07
0.000159605
0.000803572
3.05788e-05
2.53235e-05
0.00117703
0.000128295
9.62664e-05
0.00179893
0.0050282
7.4752e-07
1.56627e-07
3.11375e-07
9.88663e-07
1.28837e-06
8.66305e-06
1.95233e-05
7.46921e-06
6.81883e-06
2.45179e-06
6.83044e-06
6.36901e-06
9.5983e-06
1.86428e-05
1.13215e-05
3.76108e-06
7.13566e-07
4.58218e-07
1.28555e-07
8.2598e-08
5.46732e-07
5.51777e-06
0.000196474
0.000161613
4.24912e-05
0.00116934
0.000187405
0.00102559
0.00327487
0.000169963
6.47071e-08
7.289e-08
3.54789e-07
8.96939e-07
3.38002e-07
7.01453e-07
1.25126e-06
9.10971e-07
1.20415e-06
1.13385e-06
1.28161e-06
1.28128e-06
1.42849e-06
1.91513e-06
1.93685e-06
1.68697e-06
1.21004e-06
9.80277e-07
2.6892e-07
3.35718e-07
5.84087e-07
4.05108e-06
0.000263323
0.000174651
6.35742e-05
0.0011532
0.000616791
0.0024994
0.000885327
3.32976e-07
8.69438e-08
1.5878e-07
4.42365e-07
1.27811e-06
4.8481e-07
5.27811e-07
5.85376e-07
7.82942e-07
1.69078e-06
3.37069e-06
2.12135e-06
1.9125e-06
1.71838e-06
1.09827e-06
8.031e-07
7.83772e-07
1.02823e-06
1.52328e-06
6.11851e-07
1.18682e-06
9.1729e-07
3.67882e-06
0.000284263
0.000189701
8.73466e-05
0.00111953
0.00137725
0.00198835
0.00105495
7.21521e-07
5.81379e-07
1.39989e-06
1.00765e-06
3.12891e-06
2.05839e-06
1.66859e-06
3.17874e-06
2.78036e-06
9.06576e-06
1.43132e-05
1.41114e-05
1.66628e-05
1.05192e-05
2.35272e-06
1.04456e-06
1.03186e-06
1.20641e-06
1.80485e-06
1.39913e-06
2.01969e-06
2.12394e-06
4.4412e-06
0.000155936
0.000250523
0.000110555
0.00103819
0.0014776
0.000639718
0.000716444
7.4108e-06
1.4881e-05
2.15989e-05
7.82472e-06
2.03886e-05
2.19568e-05
1.65332e-05
2.86482e-05
1.97256e-05
5.0302e-05
8.31148e-05
0.000112324
0.00010809
6.82465e-05
1.31825e-05
3.26883e-06
4.9405e-06
5.35544e-06
4.46858e-06
5.19965e-06
6.85409e-06
8.41709e-06
1.656e-05
0.00021957
0.000353586
0.000125732
0.000963086
0.00105366
0.000537029
0.00113402
0.000202926
0.000166542
0.000178876
9.68038e-05
0.000145361
0.000171071
0.000143404
0.000172395
0.000145977
0.000312003
0.000444438
0.000418792
0.000367045
0.000235365
8.73592e-05
2.15647e-05
4.06497e-05
4.31139e-05
1.99904e-05
4.06373e-05
5.83208e-05
8.22048e-05
0.000129592
0.000375148
0.000423874
0.000121128
0.000885564
0.00107553
0.000563645
0.0028862
0.000555085
0.000443353
0.000474776
0.000354123
0.000198915
0.000394571
0.000654817
0.000606326
0.000846833
0.000799802
0.000873312
0.000525522
0.000658169
0.000324369
0.000109655
7.51887e-05
0.000114421
0.000127646
0.000115667
0.000295673
0.000398178
0.00035572
0.000122083
0.000933723
0.000329415
7.38456e-05
0.000744908
0.0011835
0.000792305
0.00710045
0.000208614
4.83361e-05
5.18122e-05
6.63583e-05
2.95876e-06
3.52097e-05
0.00076796
0.000293454
0.00107201
8.05812e-05
5.65005e-07
1.04934e-08
1.10857e-06
4.28642e-07
2.16724e-06
9.03395e-06
1.87627e-05
3.19256e-05
0.000374659
0.00111072
0.000851493
0.000137607
8.64976e-08
0.00313067
0.000207199
1.39329e-05
0.000609611
0.00125637
0.00141214
0.00513481
0.000414941
1.31699e-07
1.05559e-07
1.0061e-07
5.72726e-08
1.52316e-07
1.04419e-06
2.69509e-07
2.79358e-07
5.33554e-09
1.1489e-07
4.57719e-07
5.6885e-07
1.84072e-07
2.39827e-08
1.25802e-07
3.47897e-07
4.68535e-07
6.85394e-05
0.000389394
1.03391e-05
6.20236e-08
5.13319e-06
0.00174634
9.81875e-05
3.3373e-06
0.000549947
0.000668752
0.000163125
0.000572677
4.87076e-05
1.47799e-07
1.90523e-07
2.87611e-07
3.70288e-07
2.84036e-07
8.40557e-08
3.37189e-08
8.05863e-08
5.35941e-07
2.37214e-06
1.82824e-06
1.96575e-06
1.6557e-06
7.77351e-07
5.14435e-07
2.77741e-07
2.35031e-07
1.32632e-06
1.84072e-07
2.5495e-08
3.21518e-06
5.8572e-05
0.000285297
3.22574e-06
8.81618e-07
0.000571503
0.000386741
2.03104e-05
2.00168e-05
7.34542e-06
5.43096e-06
7.01496e-06
8.69244e-06
1.01548e-05
7.44259e-06
1.19517e-06
9.88206e-08
4.34673e-07
7.30467e-06
1.30658e-05
5.77535e-06
3.39989e-06
2.46887e-06
4.34227e-06
3.42139e-06
8.66462e-07
4.09795e-07
5.46217e-07
2.06711e-08
5.10113e-06
5.66249e-05
9.18296e-05
2.34496e-05
8.05619e-07
3.42648e-07
0.000704469
0.000369535
1.3346e-05
2.83036e-06
4.55367e-06
1.98004e-05
2.43127e-05
2.31519e-05
2.37932e-05
2.80088e-05
1.25792e-05
7.97484e-07
1.5256e-06
0.000111517
0.0215643
0.0252419
0.0304268
0.0213215
1.07267e-05
3.24787e-06
2.22177e-06
9.78402e-07
1.69739e-07
2.221e-06
7.77184e-05
0.00011591
4.5718e-05
1.32405e-05
9.40731e-07
4.00058e-07
0.000922932
0.000201999
3.4157e-07
1.98247e-05
1.62264e-05
2.02432e-05
1.25878e-05
1.22093e-05
1.00198e-05
1.26279e-05
2.87389e-05
1.12227e-05
5.13032e-06
0.00381161
0.0113611
0.0168545
0.0179248
0.0148567
0.0076973
1.48047e-06
4.33782e-06
1.90924e-06
2.06137e-07
6.1804e-05
0.000168205
0.000159193
0.000109958
6.33931e-06
1.91329e-06
4.04271e-07
0.00130458
0.000121621
8.90759e-07
3.85816e-06
6.78892e-05
0.649604
0.667458
1.03393
1.25638
2.21639
1.02234e-05
1.98784e-05
1.95916e-05
0.000836869
0.00521301
0.00757698
0.00541715
0.000226544
1.23446e-05
4.21795e-06
5.01725e-06
1.72413e-06
2.26127e-06
0.00013098
0.000218944
3.66937e-05
6.38554e-05
8.46222e-06
5.18095e-06
2.27379e-06
0.00230965
0.000260613
4.8601e-07
2.66219e-07
0.129279
1.84355e-06
4.99815e-06
0.0278372
0.291791
0.497797
5.98382
4.35805e-05
2.74414e-05
0.000153098
0.0105752
0.0171324
0.0121263
0.00261492
3.27877e-05
9.98755e-06
2.87052e-06
7.63373e-07
1.81354e-05
0.000134119
0.00441053
0.000131578
3.25373e-05
4.60797e-05
9.41473e-06
6.86701e-05
0.00763546
0.000169437
1.33489e-07
4.73216e-07
1.58743e-05
5.27035e-06
1.80442e-05
0.000860216
0.0641997
0.245479
0.102846
15.3167
7.47779e-06
4.37964e-05
0.0280017
0.0481351
0.0357735
0.0151464
0.00205612
2.35566e-05
3.81937e-06
8.45725e-07
3.91059e-05
0.000230401
0.000121641
0.0491816
0.000163088
3.13071e-05
4.69732e-06
3.17718e-05
0.00862111
9.52618e-06
1.08917e-05
9.70824e-07
1.55664e-07
1.64044
0.892896
0.41739
0.415751
0.67628
0.0527485
9.54544e-06
5.9396e-05
0.000198897
0.0553212
0.0730157
0.0762097
0.0181294
0.0213719
4.84228e-05
1.55717e-05
8.66547e-06
1.7065e-05
0.000184994
7.7212e-05
8.44335e-05
7.9766e-05
3.94167e-06
1.75254e-06
1.44871e-06
0.00409174
0.000130404
2.92013e-06
2.07771e-05
1.92279
1.81821
0.846464
0.648074
0.720539
1.43214
1.52884
0.456214
2.91547e-05
4.46925e-05
0.0669165
0.0927215
0.091386
0.0379472
0.0132606
5.3066e-05
1.01932e-05
9.31255e-06
6.44672e-05
7.1988e-05
2.94855e-05
1.47059e-05
5.87762e-06
1.67703e-06
1.05843e-06
1.39281e-07
0.00150898
2.79364e-07
1.34802e-05
1.28775
0.618122
1.42594e-05
9.03985e-06
0.0289793
0.119676
0.650001
2.06341
0.889323
0.000872008
3.00078e-05
0.0530984
0.0952298
0.116837
0.0693353
0.0118062
0.000139238
0.0099334
0.751179
0.00352973
0.0001171
2.96628e-05
1.97805e-06
5.54822e-06
8.19744e-06
3.15213e-06
1.13755e-06
0.00100089
8.96846e-07
0.967494
0.000106304
4.39179e-06
4.0002e-06
0.00111574
2.74989e-05
1.88047e-06
6.62702e-07
1.282
1.15432
0.054704
8.66487e-05
0.0332194
0.128698
0.122264
0.127418
0.0530968
0.0410623
0.24634
4.43533e-06
0.000283033
6.8654e-06
2.17357e-06
1.26766e-06
3.1477e-07
3.50619e-06
1.72682e-06
6.43614e-06
0.00145475
2.32114e-05
4.82626e-06
1.30183e-05
2.85135e-06
0.180378
1.54574e-06
7.16256e-06
1.15354e-05
6.44445e-06
2.25644e-05
0.0654275
0.301979
0.0535216
0.0422076
0.12959
0.206842
0.181479
0.2147
0.110403
0.00111535
1.65051e-07
0.890941
4.0278e-06
5.1139e-06
5.19806e-06
1.69007e-07
2.77082e-07
2.03624e-06
1.47316e-07
0.00142002
1.83875e-05
2.25128e-05
6.56628e-06
6.1806e-06
0.187253
0.16702
0.103735
0.00579494
7.76293e-06
0.0068379
0.0405045
0.134924
0.240715
0.0498944
0.191374
0.193166
0.328342
0.203541
0.180537
0.0758907
0.0681385
7.94463e-05
6.88253e-05
3.61517e-05
0.000113443
0.033665
0.00730051
1.04466e-06
1.88885e-07
0.000393601
3.41857e-05
3.28515e-05
6.73926e-06
1.75805e-06
0.10173
0.205501
0.0869154
0.0800197
0.00718072
0.00726286
0.0195008
0.053215
0.187938
0.0869509
0.170177
0.331219
0.242748
0.255554
0.138215
0.198168
0.140186
0.0402882
0.000215922
0.000107921
0.0138943
0.1166
0.0514909
0.0116472
5.72793e-07
0.000384819
1.46599e-05
6.20882e-07
1.64247e-05
2.2017e-06
0.0641744
0.224643
0.113134
0.0965195
0.0768371
0.037764
0.0288321
0.0335499
0.109221
0.136908
0.133159
0.173612
0.10443
0.0722738
0.15502
0.0788973
0.00432362
3.38021e-05
4.24947e-05
0.00027223
0.00180687
0.143165
0.0758671
0.0266943
2.33406e-05
0.000572017
8.95812e-06
4.82476e-07
3.6066e-06
4.85462e-05
0.00396341
0.157452
0.138855
0.119502
0.103531
0.0772991
0.0519792
0.0357979
0.0306409
0.167033
0.0554068
0.0322764
0.000392014
0.000134927
8.71622e-05
0.000236825
5.13282e-05
7.10571e-06
0.317113
0.000106073
6.00642e-05
0.00118758
0.636127
0.0118535
3.83848e-05
0.000958948
0.160681
3.93669e-07
7.17449e-06
0.0154887
0.0344512
0.0687133
0.139071
0.152995
0.136569
0.0875262
0.0647323
0.0406412
0.00721394
0.00788765
0.000237062
5.87643e-05
7.95273e-05
0.00021901
6.91521e-06
1.75526e-05
0.000623825
0.417456
0.538657
1.35996
0.00117147
4.76843e-05
8.05571e-05
0.177086
0.000116939
0.00632879
0.0588994
1.00893e-05
0.00419165
0.0621253
0.0346834
0.0538157
0.109054
0.15572
0.133373
0.0988312
0.0722166
0.0216213
0.012993
3.87251e-07
1.04794e-05
0.00264374
2.08663
1.73275
2.34916
0.65696
1.72539
1.17954
0.720395
0.620927
1.03998
0.0162383
4.39262e-05
4.15013e-05
0.0132647
0.000692024
0.00141807
0.0368716
0.0181165
0.0453396
0.0556168
0.061317
0.0847096
0.102461
0.107535
0.0970464
0.0812005
0.0262884
8.07518e-06
1.01582e-06
0.346033
2.5232
2.81633
2.85535
3.16408
3.34017
3.24341
1.82717
0.745436
0.307733
0.34937
1.37838
2.06348e-05
1.63181e-05
3.41879e-05
0.00140948
0.00955272
0.0865774
0.0601065
0.0702914
0.0673606
0.0722104
0.071664
0.0681491
0.0861394
0.0673798
0.0303013
0.120733
4.66232e-05
0.000767172
1.93082
2.28655
2.91304
3.13826
3.45228
3.9273
4.51804
2.4335
0.770027
0.117319
0.188019
1.17338
8.12699e-05
1.05604e-05
0.000111874
1.46917
0.00625815
0.154997
0.084906
0.0711609
0.0699529
0.070194
0.0570735
0.0604353
0.0524289
0.0327459
0.00675077
0.0482071
0.0870063
1.02018
1.67394
2.21232
2.54724
2.72581
3.24441
3.66188
4.5206
3.5749
0.879367
0.025949
0.0424947
0.821149
5.29707e-05
7.07203e-06
4.04899
0.306759
0.002107
0.0697972
0.0556461
0.0548551
0.0589004
0.0549126
0.04479
0.0507921
0.0423705
0.00168338
6.45686e-05
0.473931
0.432196
0.845599
1.20253
1.44443
1.74224
2.22844
2.4715
2.74449
3.52162
4.13119
1.41076
0.00269559
0.0071779
0.589158
0.30995
2.17469
1.68169
0.00155177
0.00181699
0.0243488
0.0346404
0.044999
0.0527876
0.0425298
0.0365037
0.043846
0.0350166
0.0073343
0.000797737
0.16836
0.388087
0.465274
0.530141
0.577365
0.712608
1.1524
1.04588
1.06746
2.02253
3.71329
3.0613
0.000118926
0.000745183
0.711195
2.68141
1.24084
1.00672
0.000238954
0.00559022
0.00730955
0.0239987
0.0394117
0.0463901
0.0340225
0.026331
0.0224506
0.0252372
0.0133475
0.000141686
0.102609
0.17129
0.206497
0.239738
0.256532
0.316103
0.439031
0.205462
0.249485
0.744559
2.21079
0.903934
5.64177e-05
0.00271448
0.482701
0.635022
0.506942
7.23112e-05
0.000617028
0.0151377
0.00333496
0.0169557
0.0318349
0.0400449
0.0259698
0.014593
0.00504753
0.00271027
0.0703458
0.00311942
0.0296543
0.0796949
0.105232
0.126854
0.142773
0.193761
0.202244
0.0351725
0.0750629
0.396425
1.11613
1.39861
4.19695e-06
6.09872e-06
0.146137
0.00103063
7.4682e-05
0.000819217
3.42117
0.0166549
0.00206517
0.0152838
0.0168475
0.0395363
0.0265248
0.0143496
0.000164767
3.84534e-05
0.0569051
0.0322007
0.0270808
0.0422805
0.0639635
0.0848288
0.111485
0.166745
0.082341
0.000507776
0.0045247
0.266094
0.830255
0.381896
1.23251e-06
1.43535e-06
1.44853e-07
2.55669e-05
7.26681e-05
2.73134
1.82427
0.0143929
0.00470327
0.000875176
0.0145217
0.0612962
0.050061
0.0501507
0.00647484
1.25595e-05
0.000815946
0.0316952
0.0197724
0.0273034
0.0486936
0.0753364
0.115616
0.0961667
9.32636e-05
0.000115494
0.0503107
0.119914
0.686212
0.0478943
3.69393e-06
7.93769e-08
2.38724e-07
9.9666e-05
0.130056
0.00799711
0.838739
0.0124375
0.00470949
3.59756e-05
0.075136
0.0673809
0.0795061
0.0897212
0.109632
6.09169e-05
6.9928e-06
0.00505653
0.0151627
0.0182814
0.040586
0.0697828
0.0721163
0.000113718
9.97328e-05
0.0211072
0.0284927
0.0707569
0.284404
1.83684e-05
7.25109e-06
8.04073e-06
1.71095e-05
0.0188357
0.0310981
0.0885521
0.312309
0.0117812
0.00144174
0.000159631
0.101919
0.0581748
0.080214
0.0866259
0.107203
0.0696048
5.97656e-06
2.16011e-06
0.00641436
0.0123208
0.0279239
0.0342381
0.000187105
4.49079e-05
0.0115952
0.0246169
0.0269042
0.0622829
2.90418e-05
1.88047e-05
0.000470267
0.000784743
0.00737115
0.0132874
0.0275765
0.0663148
0.161916
0.015133
0.00055048
5.69596e-07
0.19137
0.0414647
0.07758
0.0843575
0.0922435
0.100592
0.00725884
1.33209e-06
7.44003e-07
0.007654
0.00896161
0.000145
2.33054e-05
0.00389507
0.0200876
0.0165741
0.0237592
0.000383039
1.30454e-05
1.72449e-05
0.000303861
0.00115631
0.00651281
0.0143894
0.0344953
0.084173
0.0692831
0.0187107
0.000993991
1.63479e-09
0.247413
0.0356109
0.0644864
0.0720713
0.0769357
0.0817225
0.0809975
8.10249e-07
8.65653e-07
0.000905273
7.19408e-06
4.47684e-06
0.00058156
0.0137561
0.0105945
0.0121456
0.00615949
2.38078e-05
2.98292e-06
1.87356e-05
0.00176812
0.00321096
0.00664092
0.017429
0.0363496
0.0606975
0.0401638
0.0175551
0.00368725
3.4604e-07
0.0244852
0.0657747
0.054635
0.0539051
0.0610135
0.0807423
0.0756358
5.80336e-07
1.32694e-06
2.49259e-06
2.61201e-07
1.92244e-06
0.00409
0.00543155
0.00514095
0.00541932
0.000401823
1.18614e-06
3.73977e-05
0.00367779
0.0031474
0.00504474
0.00848516
0.0153159
0.0275325
0.0400274
0.0323504
0.013161
0.00449013
1.18447e-06
0.00141466
0.0765233
0.0531451
0.0483201
0.048938
0.0648093
0.0289647
7.28065e-07
2.10973e-06
5.52859e-06
8.39689e-06
0.000646869
0.00159919
0.0029336
0.00485413
0.00228827
1.76587e-06
2.46911e-06
5.03519e-05
0.00212287
0.00371018
0.00585009
0.0104545
0.0118283
0.016901
0.0289737
0.0210911
0.00823028
0.00237964
3.06852e-06
0.000219481
0.0783348
0.0484468
0.0416041
0.0369176
0.0258903
2.36538e-09
1.02518e-06
5.67548e-06
4.06768e-05
0.000325311
0.000109646
6.90218e-05
0.00317541
0.00706689
0.00228832
6.90534e-06
0.000388231
1.41158e-05
0.000405239
0.00226137
0.00467387
0.0184882
0.012312
0.00593836
0.0138913
0.00778752
0.00319539
0.0259983
5.20871e-06
2.45454e-05
0.0877385
0.0474959
0.0324263
0.0214726
3.39147e-06
2.65929e-08
3.28039e-06
6.73148e-05
7.29379e-05
0.00035047
1.01455e-05
1.10276e-06
6.47498e-07
2.44727e-06
1.17781e-05
3.49929e-05
1.83938e-06
7.87989e-07
1.3083e-06
7.25709e-06
8.67019e-06
0.000198412
0.000282982
2.76037e-05
0.00226775
0.0021227
0.00101056
0.058918
4.21173e-06
7.76462e-06
0.000178557
0.0275381
0.013409
0.000478603
3.81648e-07
2.02209e-06
7.65512e-05
0.00022321
1.25928e-05
0.000249868
0.00354448
1.01225e-06
6.0385e-07
9.11634e-07
2.5715e-06
2.15267e-06
7.99946e-07
9.77071e-07
1.35714e-06
2.18541e-06
4.64238e-06
8.13555e-06
5.5688e-06
2.10488e-06
6.66802e-05
0.000931911
0.00494487
0.0183916
2.42368e-05
1.19451e-05
2.51487e-05
0.000163655
0.000206756
3.78331e-07
2.734e-07
0.00123939
0.00222427
4.18417e-05
5.12396e-06
1.42179e-06
3.73728e-06
4.51706e-06
2.1061e-06
1.8872e-06
2.64634e-06
2.19744e-06
1.53907e-06
1.72733e-06
2.34187e-06
3.03797e-06
3.2674e-06
4.25044e-06
1.2987e-06
8.20107e-07
3.18579e-05
0.000715213
0.0128965
0.00105532
0.0213175
0.0639101
4.01276e-05
2.99463e-05
3.50229e-06
3.70528e-07
0.000358693
0.0014329
0.00118767
3.29585e-05
6.42838e-07
4.77869e-07
2.73787e-06
6.92373e-06
2.95318e-06
1.50968e-06
1.38872e-06
1.65913e-06
2.24717e-06
1.48944e-06
1.50883e-06
1.57354e-06
7.48644e-07
2.69462e-06
1.81006e-06
3.10292e-06
6.98796e-05
0.000697909
0.0137299
0.00836317
0.012259
0.021777
0.0029958
1.72163e-05
5.04884e-06
4.52588e-05
0.00047226
1.40281e-05
2.85599e-05
2.17223e-06
7.12138e-07
1.49546e-06
2.86951e-06
3.33953e-06
1.76743e-06
6.53338e-07
4.77604e-07
6.73836e-07
8.08176e-07
7.70136e-07
1.955e-06
1.33504e-06
1.72004e-06
5.5205e-06
3.26369e-06
2.60786e-06
5.68876e-05
0.000410873
0.0228035
0.0140251
0.00978717
0.00575074
0.0113648
0.000765703
9.33055e-05
0.00104959
1.92351e-06
9.29449e-07
3.78716e-07
8.76333e-07
2.86071e-06
2.10739e-06
1.76817e-06
1.34155e-06
6.34074e-07
2.21793e-07
4.54723e-07
5.28692e-07
2.09631e-07
2.78491e-07
1.44521e-06
2.68193e-06
2.29465e-06
2.98641e-06
2.773e-06
2.17482e-06
1.64691e-05
0.000260737
0.016066
0.00813291
0.0100303
0.0100235
0.00968538
0.000790998
1.46379e-05
1.80124e-06
2.1881e-08
3.8609e-07
4.81617e-07
2.37672e-06
3.01518e-06
1.31238e-06
1.04459e-06
1.33694e-06
7.82564e-07
1.48789e-07
2.96648e-07
3.55129e-07
5.16161e-07
3.69528e-07
4.85519e-07
1.43709e-06
1.67618e-06
3.04803e-06
5.42795e-06
4.11235e-06
6.42017e-06
0.000276989
0.00582992
0.0113446
0.00605126
0.00954462
0.0021751
9.91348e-08
8.18583e-07
7.12439e-08
1.44545e-06
2.64805e-06
1.52631e-06
1.46824e-06
1.15584e-06
2.02817e-06
4.99574e-05
0.000234264
3.76249e-07
0.0897134
1.60921e-06
8.4719e-08
6.54334e-08
1.08978e-07
1.70553e-07
6.58645e-07
1.53344e-06
1.70861e-06
2.69418e-06
3.43981e-06
1.53118e-06
8.92736e-05
0.0019361
2.77325e-05
2.73506e-06
3.89513e-08
2.26768e-06
7.40938e-06
7.59551e-06
1.59008e-06
4.81865e-06
2.46268e-06
2.03382e-06
7.69159e-07
2.91939e-07
0.0125151
2.46907e-06
0.363481
0.249802
0.684356
0.827034
0.27283
3.96356e-09
9.61605e-09
5.34986e-08
1.49654e-07
3.71941e-07
4.68819e-07
6.81074e-07
1.4561e-05
6.8413e-07
2.04282e-05
7.41168e-06
2.50841e-05
1.4937e-05
7.33826e-06
1.89916e-05
1.40414e-05
1.20105e-05
6.41859e-06
1.90595e-06
4.8982e-07
1.40769e-06
2.44589e-06
1.12477e-06
8.00738e-08
2.61228e-06
5.71113e-06
0.688538
1.1726
2.3489
1.85924
1.23555
0.760384
0.568078
0.607043
0.542621
0.396062
0.247146
0.0580503
7.93531e-07
1.1715e-05
1.24621e-06
0.000103945
1.15423e-05
9.61357e-06
7.93143e-06
0.0229226
6.50445e-07
3.76551e-06
2.88812e-06
1.28184e-06
3.90326e-06
8.34077e-06
1.09323e-06
2.34383e-07
6.84024e-08
1.95298e-06
5.31308e-06
1.10004
1.4205e-06
3.45894
3.27174
4.0962
3.08214
1.88956
0.997583
0.462561
0.1901
0.0562246
3.15046e-07
1.26967e-05
6.18705e-07
0.0792438
0.0634144
3.52119e-06
0.096536
0.0129682
0.0491128
5.35788e-06
5.36585e-06
5.26344e-06
3.19804e-06
3.37991e-06
8.27512e-07
3.49376e-07
1.34537e-07
1.22231e-07
3.85098e-06
1.87764e-06
3.43014e-06
1.88269e-05
3.58547e-06
5.74781e-06
4.11941e-06
1.11973
0.687385
0.308256
0.0563735
2.85409e-08
3.81101e-06
1.29183e-05
5.20827e-05
0.0140361
0.0345576
0.0717536
0.122861
0.0109988
0.0281091
0.0751502
2.14423e-05
6.14174e-06
1.47704e-06
1.25928e-06
1.55594e-06
1.27489e-06
1.05865e-06
1.42584e-06
1.34011e-06
4.2678e-06
2.7392e-06
4.8418e-06
5.9182e-06
9.78647e-06
3.6926e-05
1.62127e-05
4.38951e-06
4.00561e-06
3.32853e-06
9.86578e-07
1.89621e-06
1.93054e-05
3.69752e-06
5.81736e-07
5.27336e-06
8.27224e-06
7.46746e-06
1.66299e-06
1.35363e-06
3.47511e-06
2.35198e-06
3.21997e-06
4.66801e-06
3.98315e-06
4.58594e-06
4.45428e-06
4.51507e-06
4.69062e-06
5.19457e-06
4.65465e-06
5.59626e-06
5.58421e-06
5.71875e-06
6.00808e-06
7.21613e-06
9.37203e-06
7.31279e-06
6.49498e-06
5.17225e-06
3.74217e-06
3.50492e-06
3.1326e-06
)
;
boundaryField
{
inlet
{
type fixedValue;
value uniform 0.0002;
}
outlet
{
type zeroGradient;
}
walls
{
type zeroGradient;
}
frontAndBackPlanes
{
type empty;
}
}
// ************************************************************************* //
| [
"mizuha.watanabe@gmail.com"
] | mizuha.watanabe@gmail.com |
e17096d7cbe1f30d05d71a93e148b1badcb8da1b | 09b594294973956482178ec173f27d899112ecd8 | /ugc/index_migration/utility.cpp | e97f9d8c1ed099867c0f836226d0bf08ba5f4e64 | [
"Apache-2.0"
] | permissive | jamll/omim | 305a15db9286c815209dd414b1a8a826f70ed9fe | 704fd74d8d709f643d38266e1b484c16a441fb8b | refs/heads/master | 2020-03-25T12:50:45.300220 | 2018-08-03T10:16:59 | 2018-08-06T11:09:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,027 | cpp | #include "ugc/index_migration/utility.hpp"
#include "ugc/serdes.hpp"
#include "platform/platform.hpp"
#include "platform/settings.hpp"
#include "coding/file_name_utils.hpp"
#include "coding/file_reader.hpp"
#include <algorithm>
#include <cstdint>
#include <iterator>
#include <string>
#include <unordered_map>
#include <utility>
using namespace std;
namespace
{
string const kBinExt = ".bin";
string const kMigrationDirName = "ugc_migration";
using MigrationTable = unordered_map<uint32_t, uint32_t>;
using MigrationTables = unordered_map<int64_t, MigrationTable>;
bool GetMigrationTable(int64_t tableVersion, MigrationTable & t)
{
auto const fileName = my::JoinPath(kMigrationDirName, to_string(tableVersion) + kBinExt);
try
{
auto reader = GetPlatform().GetReader(fileName);
NonOwningReaderSource source(*reader);
ugc::DeserializerV0<NonOwningReaderSource> des(source);
des(t);
}
catch (RootException const & ex)
{
LOG(LWARNING, (ex.what()));
return false;
}
if (t.empty())
{
ASSERT(false, ());
return false;
}
return true;
}
bool MigrateFromV0ToV1(ugc::UpdateIndexes & source)
{
MigrationTables tables;
for (auto & index : source)
{
auto const version = index.m_dataVersion;
if (tables.find(version) == tables.end())
{
MigrationTable t;
if (!GetMigrationTable(version, t))
return false;
tables.emplace(version, move(t));
}
auto & t = tables[version];
index.m_type = t[index.m_type];
index.m_matchingType = t[index.m_matchingType];
index.m_synchronized = false;
index.m_version = ugc::IndexVersion::Latest;
}
return true;
}
} // namespace
namespace ugc
{
namespace migration
{
Result Migrate(UpdateIndexes & source)
{
CHECK(!source.empty(), ());
if (source.front().m_version == IndexVersion::Latest)
return Result::UpToDate;
auto const result = MigrateFromV0ToV1(source);
return result ? Result::Success : Result::Failure;
}
} // namespace migration
} // namespace ugc
| [
"mpimenov@users.noreply.github.com"
] | mpimenov@users.noreply.github.com |
7bd17812b94a5146a5cb95ab37ef4040efee304b | 6583fdcb08cefeb86d3c5b1b57cad2ea5762cbc5 | /src/undo.h | f713e2281ffd3c7a1f54b349dd04a7aaa13c8e5e | [
"MIT"
] | permissive | SpecialCoins/bitcoincz | f67b4f7788cf9b93ee770c1d98e69fda393e64da | 9193ea2b7241467eec3cee51a802abd24e946413 | refs/heads/master | 2022-06-25T23:46:29.559817 | 2022-06-18T07:43:14 | 2022-06-18T07:43:14 | 242,184,811 | 8 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 3,428 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2013 The Bitcoin developers
// Copyright (c) 2020 The BCZ developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_UNDO_H
#define BITCOIN_UNDO_H
#include "chain.h"
#include "compressor.h"
#include "primitives/transaction.h"
#include "serialize.h"
/** Undo information for a CTxIn
*
* Contains the prevout's CTxOut being spent, and if this was the
* last output of the affected transaction, its metadata as well
* (coinbase or not, height, transaction version)
*/
class CTxInUndo
{
public:
CTxOut txout; // the txout data before being spent
bool fCoinBase; // if the outpoint was the last unspent: whether it belonged to a coinbase
bool fCoinStake;
unsigned int nHeight; // if the outpoint was the last unspent: its height
int nVersion; // if the outpoint was the last unspent: its version
CTxInUndo() : txout(), fCoinBase(false), fCoinStake(false), nHeight(0), nVersion(0) {}
CTxInUndo(const CTxOut& txoutIn, bool fCoinBaseIn = false, bool fCoinStakeIn = false, unsigned int nHeightIn = 0, int nVersionIn = 0) : txout(txoutIn), fCoinBase(fCoinBaseIn), fCoinStake(fCoinStakeIn), nHeight(nHeightIn), nVersion(nVersionIn) {}
unsigned int GetSerializeSize(int nType, int nVersion) const
{
return ::GetSerializeSize(VARINT(nHeight * 4 + (fCoinBase ? 2 : 0) + (fCoinStake ? 1 : 0)), nType, nVersion) +
(nHeight > 0 ? ::GetSerializeSize(VARINT(this->nVersion), nType, nVersion) : 0) +
::GetSerializeSize(CTxOutCompressor(REF(txout)), nType, nVersion);
}
template <typename Stream>
void Serialize(Stream& s, int nType, int nVersion) const
{
::Serialize(s, VARINT(nHeight * 4 + (fCoinBase ? 2 : 0) + (fCoinStake ? 1 : 0)), nType, nVersion);
if (nHeight > 0)
::Serialize(s, VARINT(this->nVersion), nType, nVersion);
::Serialize(s, CTxOutCompressor(REF(txout)), nType, nVersion);
}
template <typename Stream>
void Unserialize(Stream& s, int nType, int nVersion)
{
unsigned int nCode = 0;
::Unserialize(s, VARINT(nCode), nType, nVersion);
nHeight = nCode >> 2;
fCoinBase = nCode & 2;
fCoinStake = nCode & 1;
if (nHeight > 0)
::Unserialize(s, VARINT(this->nVersion), nType, nVersion);
::Unserialize(s, REF(CTxOutCompressor(REF(txout))), nType, nVersion);
}
};
/** Undo information for a CTransaction */
class CTxUndo
{
public:
// undo information for all txins
std::vector<CTxInUndo> vprevout;
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion)
{
READWRITE(vprevout);
}
};
/** Undo information for a CBlock */
class CBlockUndo
{
public:
std::vector<CTxUndo> vtxundo; // for all but the coinbase
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion)
{
READWRITE(vtxundo);
}
bool WriteToDisk(CDiskBlockPos& pos, const uint256& hashBlock);
bool ReadFromDisk(const CDiskBlockPos& pos, const uint256& hashBlock);
};
#endif // BITCOIN_UNDO_H
| [
"104713417+bitsz-coin@users.noreply.github.com"
] | 104713417+bitsz-coin@users.noreply.github.com |
eb11a8f88f7132f0eabe3eb5460337af90772f84 | 354a0778f08529d7e3dbdf2f782d65372db0517e | /Client/blocks/osc/ip/UdpSocket.h | f815df887b6f7c9464033cef471fe6b42d7c0499 | [] | no_license | stimulant/dBcube | b5b33241d1cac281f50184b81c809757435dbb04 | 278345878c8d53d2f390c3c844d0cb09f89c43e6 | refs/heads/master | 2020-05-18T15:41:53.708557 | 2014-10-21T16:49:00 | 2014-10-21T16:49:00 | 24,612,035 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,444 | h | /*
oscpack -- Open Sound Control packet manipulation library
http://www.audiomulch.com/~rossb/oscpack
Copyright (c) 2004-2005 Ross Bencina <rossb@audiomulch.com>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
Any person wishing to distribute modifications to the Software is
requested to send the modifications to the original developer so that
they can be incorporated into the canonical version.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef INCLUDED_UDPSOCKET_H
#define INCLUDED_UDPSOCKET_H
#ifndef INCLUDED_NETWORKINGUTILITIES_H
#include "NetworkingUtils.h"
#endif /* INCLUDED_NETWORKINGUTILITIES_H */
#ifndef INCLUDED_IPENDPOINTNAME_H
#include "IpEndpointName.h"
#endif /* INCLUDED_IPENDPOINTNAME_H */
class PacketListener;
class TimerListener;
class UdpSocket;
class SocketReceiveMultiplexer{
class Implementation;
Implementation *impl_;
friend class UdpSocket;
public:
SocketReceiveMultiplexer();
~SocketReceiveMultiplexer();
// only call the attach/detach methods _before_ calling Run
// only one listener per socket, each socket at most once
void AttachSocketListener( UdpSocket *socket, PacketListener *listener );
void DetachSocketListener( UdpSocket *socket, PacketListener *listener );
void AttachPeriodicTimerListener( int periodMilliseconds, TimerListener *listener );
void AttachPeriodicTimerListener(
int initialDelayMilliseconds, int periodMilliseconds, TimerListener *listener );
void DetachPeriodicTimerListener( TimerListener *listener );
void Run(); // loop and block processing messages indefinitely
void RunUntilSigInt();
void Break(); // call this from a listener to exit once the listener returns
void AsynchronousBreak(); // call this from another thread or signal handler to exit the Run() state
};
class UdpSocket{
class Implementation;
Implementation *impl_;
friend class SocketReceiveMultiplexer::Implementation;
public:
// ctor throws std::runtime_error if there's a problem
// initializing the socket.
UdpSocket();
virtual ~UdpSocket();
// the socket is created in an unbound, unconnected state
// such a socket can only be used to send to an arbitrary
// address using SendTo(). To use Send() you need to first
// connect to a remote endpoint using Connect(). To use
// ReceiveFrom you need to first bind to a local endpoint
// using Bind().
// retrieve the local endpoint name when sending to 'to'
IpEndpointName LocalEndpointFor( const IpEndpointName& remoteEndpoint ) const;
// Connect to a remote endpoint which is used as the target
// for calls to Send()
void Connect( const IpEndpointName& remoteEndpoint, bool multicast );
void Send( const char *data, int size );
void SendTo( const IpEndpointName& remoteEndpoint, const char *data, int size );
// Bind a local endpoint to receive incoming data. Endpoint
// can be 'any' for the system to choose an endpoint
void Bind( const IpEndpointName& localEndpoint );
bool IsBound() const;
int ReceiveFrom( IpEndpointName& remoteEndpoint, char *data, int size );
};
// convenience classes for transmitting and receiving
// they just call Connect and/or Bind in the ctor.
// note that you can still use a receive socket
// for transmitting etc
class UdpTransmitSocket : public UdpSocket{
public:
UdpTransmitSocket( const IpEndpointName& remoteEndpoint, bool multicast )
{ Connect( remoteEndpoint, multicast ); }
};
class UdpReceiveSocket : public UdpSocket{
public:
UdpReceiveSocket( const IpEndpointName& localEndpoint )
{ Bind( localEndpoint ); }
};
// UdpListeningReceiveSocket provides a simple way to bind one listener
// to a single socket without having to manually set up a SocketReceiveMultiplexer
class UdpListeningReceiveSocket : public UdpSocket{
SocketReceiveMultiplexer mux_;
PacketListener *listener_;
public:
UdpListeningReceiveSocket( const IpEndpointName& localEndpoint, PacketListener *listener )
: listener_( listener )
{
Bind( localEndpoint );
mux_.AttachSocketListener( this, listener_ );
}
~UdpListeningReceiveSocket()
{ mux_.DetachSocketListener( this, listener_ ); }
// see SocketReceiveMultiplexer above for the behaviour of these methods...
void Run() { mux_.Run(); }
void RunUntilSigInt() { mux_.RunUntilSigInt(); }
void Break() { mux_.Break(); }
void AsynchronousBreak() { mux_.AsynchronousBreak(); }
};
#endif /* INCLUDED_UDPSOCKET_H */
| [
"joel@stimulant.io"
] | joel@stimulant.io |
13126f946c126939b772130bb640da994f2f9607 | ca6160cab53706ff289e436ddfeeb898bdc856fe | /InteractiveAgents/Source/Engine/AI/Navigation/NavGraph.cpp | ee0148b7d8e8c5b25f8dfc1bad728d0e33ef67a1 | [] | no_license | IMDCGP210-1819/interactive-agents-MichaelRDavis | 9190e3b949d3a4be18559c22099cbc42205a1f68 | d4c10fa381702b980ec550a7faa069e563464f39 | refs/heads/master | 2020-04-21T02:01:35.049737 | 2019-08-25T11:29:28 | 2019-08-25T11:29:28 | 169,242,151 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,579 | cpp | #include "NavGraph.h"
#include "NavNode.h"
#include "Rendering/Drawing.h"
#include "GameObject/World.h"
#include "Math/Math.h"
#include <cstdint>
NavGraph::NavGraph(World* world)
: m_cachedWorld(world)
{
}
NavGraph::~NavGraph()
{
}
NavNode* NavGraph::GetRandomNode()
{
Random rand;
uint32_t nodes = m_nodes.size();
uint32_t node = rand.GetRangei(0, nodes);
if (node <= nodes / 2)
{
auto it = m_nodes.begin();
for (uint32_t i = 0; i < node; i++)
{
++it;
return (*it);
}
}
else
{
auto it = m_nodes.end();
for (uint32_t i = 0; i >= node; i--)
{
--it;
return (*it);
}
}
}
void NavGraph::BuildGraph()
{
int32_t index = 0;
for (int32_t x = -1000.0f; x < 1000.0f; x += 10.0f)
{
for (int32_t y = -1000.0f; y < 1000.0f; y += 10.0f)
{
NavNode* node = new NavNode(Vector2f(x, y));
m_nodes.push_back(node);
int32_t nodeIndex = index - 1;
if (nodeIndex >= 0)
{
LinkNodes(m_nodes[nodeIndex], node);
}
nodeIndex = index - 9;
if (nodeIndex >= 0)
{
LinkNodes(m_nodes[nodeIndex], node);
}
index++;
}
}
}
void NavGraph::DrawGraph()
{
for (int32_t x = -1000.0f; x < 1000.0f; x += 10.0f)
{
for (int32_t y = -1000.0f; y < 1000.0f; y += 10.0f)
{
Drawing::DrawPoint(m_cachedWorld->GetRenderer(), x, y, Vector4f(1.0f, 1.0f, 1.0f, 1.0f));
}
}
}
void NavGraph::LinkNodes(NavNode* firstNode, NavNode* secondNode)
{
NavLink* link = new NavLink();
link->from = firstNode;
link->to = secondNode;
firstNode->links.push_back(link);
secondNode->links.push_back(link);
m_links.push_back(link);
}
| [
"MichaelRDavis1991@protonmail.com"
] | MichaelRDavis1991@protonmail.com |
d6d8b6d33e8b4d891ded23f75b06f3c0ac56adbe | 81175406e7c3bb2c923e631a8dd222a10914f388 | /src/checkpoints.cpp | e4a967e2058becf2e19158a2367c54e26f53ab99 | [
"MIT"
] | permissive | scottie/WIRE | 5cedbdede52b9c1291fc34c95046849f8d5267af | 4e1b7f5492920432038897d6180860df73125803 | refs/heads/master | 2021-04-15T03:43:11.340556 | 2018-03-27T21:31:08 | 2018-03-27T21:31:08 | 124,241,900 | 0 | 0 | MIT | 2018-03-07T13:43:51 | 2018-03-07T13:43:51 | null | UTF-8 | C++ | false | false | 3,471 | cpp | // Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2017 The Wire developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "checkpoints.h"
#include "chainparams.h"
#include "main.h"
#include "uint256.h"
#include <stdint.h>
#include <boost/foreach.hpp>
namespace Checkpoints
{
/**
* How many times we expect transactions after the last checkpoint to
* be slower. This number is a compromise, as it can't be accurate for
* every system. When reindexing from a fast disk with a slow CPU, it
* can be up to 20, while when downloading from a slow network with a
* fast multicore CPU, it won't be much higher than 1.
*/
static const double SIGCHECK_VERIFICATION_FACTOR = 5.0;
bool fEnabled = true;
bool CheckBlock(int nHeight, const uint256& hash)
{
if (!fEnabled)
return true;
const MapCheckpoints& checkpoints = *Params().Checkpoints().mapCheckpoints;
MapCheckpoints::const_iterator i = checkpoints.find(nHeight);
if (i == checkpoints.end()) return true;
return hash == i->second;
}
//! Guess how far we are in the verification process at the given block index
double GuessVerificationProgress(CBlockIndex* pindex, bool fSigchecks)
{
if (pindex == NULL)
return 0.0;
int64_t nNow = time(NULL);
double fSigcheckVerificationFactor = fSigchecks ? SIGCHECK_VERIFICATION_FACTOR : 1.0;
double fWorkBefore = 0.0; // Amount of work done before pindex
double fWorkAfter = 0.0; // Amount of work left after pindex (estimated)
// Work is defined as: 1.0 per transaction before the last checkpoint, and
// fSigcheckVerificationFactor per transaction after.
const CCheckpointData& data = Params().Checkpoints();
if (pindex->nChainTx <= data.nTransactionsLastCheckpoint) {
double nCheapBefore = pindex->nChainTx;
double nCheapAfter = data.nTransactionsLastCheckpoint - pindex->nChainTx;
double nExpensiveAfter = (nNow - data.nTimeLastCheckpoint) / 86400.0 * data.fTransactionsPerDay;
fWorkBefore = nCheapBefore;
fWorkAfter = nCheapAfter + nExpensiveAfter * fSigcheckVerificationFactor;
} else {
double nCheapBefore = data.nTransactionsLastCheckpoint;
double nExpensiveBefore = pindex->nChainTx - data.nTransactionsLastCheckpoint;
double nExpensiveAfter = (nNow - pindex->GetBlockTime()) / 86400.0 * data.fTransactionsPerDay;
fWorkBefore = nCheapBefore + nExpensiveBefore * fSigcheckVerificationFactor;
fWorkAfter = nExpensiveAfter * fSigcheckVerificationFactor;
}
return fWorkBefore / (fWorkBefore + fWorkAfter);
}
int GetTotalBlocksEstimate()
{
if (!fEnabled)
return 0;
const MapCheckpoints& checkpoints = *Params().Checkpoints().mapCheckpoints;
return checkpoints.rbegin()->first;
}
CBlockIndex* GetLastCheckpoint()
{
if (!fEnabled)
return NULL;
const MapCheckpoints& checkpoints = *Params().Checkpoints().mapCheckpoints;
BOOST_REVERSE_FOREACH (const MapCheckpoints::value_type& i, checkpoints) {
const uint256& hash = i.second;
BlockMap::const_iterator t = mapBlockIndex.find(hash);
if (t != mapBlockIndex.end())
return t->second;
}
return NULL;
}
} // namespace Checkpoints
| [
"scottlindh@gmail.com"
] | scottlindh@gmail.com |
440253298f8c71e637cb35116604dd620178f86e | 08ec866f78484b951e80f4444dead0e150d61b9f | /android/external/pdfium/core/src/fpdfdoc/doc_vt.cpp | 3ae23ffcbc23e909442a45d6a27ba2ac0dc26c46 | [
"BSD-3-Clause"
] | permissive | BPI-SINOVOIP/BPI-A83T-Android6 | c7e2fbecb8e50f6cdc3f006d991c783452411258 | e0b8640e89e60371b64f765228b5ee1c35ebd705 | refs/heads/master | 2023-05-08T14:19:15.533806 | 2018-07-04T07:18:58 | 2018-07-04T07:18:58 | 112,411,954 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 68,756 | cpp | // Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "../../include/fpdfdoc/fpdf_doc.h"
#include "../../include/fpdfdoc/fpdf_vt.h"
#include "pdf_vt.h"
const FX_BYTE gFontSizeSteps[] = { 4, 6, 8, 9, 10, 12, 14, 18, 20, 25, 30, 35, 40, 45, 50, 55, 60, 70, 80, 90, 100, 110, 120, 130, 144};
#define PVT_RETURN_LENGTH 1
#define PVT_DEFAULT_FONTSIZE 18.0f
#define PVTWORD_SCRIPT_NORMAL 0
#define PVTWORD_SCRIPT_SUPER 1
#define PVTWORD_SCRIPT_SUB 2
#define PVT_FONTSCALE 0.001f
#define PVT_PERCENT 0.01f
#define PVT_HALF 0.5f
CLine::CLine()
{
}
CLine::~CLine()
{
}
CPVT_WordPlace CLine::GetBeginWordPlace() const
{
return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, -1);
}
CPVT_WordPlace CLine::GetEndWordPlace() const
{
return CPVT_WordPlace(LinePlace.nSecIndex, LinePlace.nLineIndex, m_LineInfo.nEndWordIndex);
}
CPVT_WordPlace CLine::GetPrevWordPlace(const CPVT_WordPlace & place) const
{
if (place.nWordIndex > m_LineInfo.nEndWordIndex) {
return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nEndWordIndex);
}
return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex - 1);
}
CPVT_WordPlace CLine::GetNextWordPlace(const CPVT_WordPlace & place) const
{
if (place.nWordIndex < m_LineInfo.nBeginWordIndex) {
return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, m_LineInfo.nBeginWordIndex);
}
return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, place.nWordIndex + 1);
}
CSection::CSection(CPDF_VariableText * pVT) : m_pVT(pVT)
{
}
CSection::~CSection()
{
ResetAll();
}
void CSection::ResetAll()
{
ResetWordArray();
ResetLineArray();
}
void CSection::ResetLineArray()
{
m_LineArray.RemoveAll();
}
void CSection::ResetWordArray()
{
for (FX_INT32 i = 0, sz = m_WordArray.GetSize(); i < sz; i++) {
delete m_WordArray.GetAt(i);
}
m_WordArray.RemoveAll();
}
void CSection::ResetLinePlace()
{
for (FX_INT32 i = 0, sz = m_LineArray.GetSize(); i < sz; i++) {
if (CLine * pLine = m_LineArray.GetAt(i)) {
pLine->LinePlace = CPVT_WordPlace(SecPlace.nSecIndex, i, -1);
}
}
}
CPVT_WordPlace CSection::AddWord(const CPVT_WordPlace & place, const CPVT_WordInfo & wordinfo)
{
CPVT_WordInfo * pWord = new CPVT_WordInfo(wordinfo);
FX_INT32 nWordIndex = FPDF_MAX(FPDF_MIN(place.nWordIndex, this->m_WordArray.GetSize()), 0);
if (nWordIndex == m_WordArray.GetSize()) {
m_WordArray.Add(pWord);
} else {
m_WordArray.InsertAt(nWordIndex, pWord);
}
return place;
}
CPVT_WordPlace CSection::AddLine(const CPVT_LineInfo & lineinfo)
{
return CPVT_WordPlace(SecPlace.nSecIndex, m_LineArray.Add(lineinfo), -1);
}
CPVT_FloatRect CSection::Rearrange()
{
ASSERT(m_pVT != NULL);
if (m_pVT->m_nCharArray > 0) {
return CTypeset(this).CharArray();
} else {
return CTypeset(this).Typeset();
}
}
CPVT_Size CSection::GetSectionSize(FX_FLOAT fFontSize)
{
return CTypeset(this).GetEditSize(fFontSize);
}
CPVT_WordPlace CSection::GetBeginWordPlace() const
{
if (CLine * pLine = m_LineArray.GetAt(0)) {
return pLine->GetBeginWordPlace();
} else {
return SecPlace;
}
}
CPVT_WordPlace CSection::GetEndWordPlace() const
{
if (CLine * pLine = m_LineArray.GetAt(m_LineArray.GetSize() - 1)) {
return pLine->GetEndWordPlace();
} else {
return this->SecPlace;
}
}
CPVT_WordPlace CSection::GetPrevWordPlace(const CPVT_WordPlace & place) const
{
if (place.nLineIndex < 0) {
return GetBeginWordPlace();
}
if (place.nLineIndex >= m_LineArray.GetSize()) {
return GetEndWordPlace();
}
if (CLine * pLine = m_LineArray.GetAt(place.nLineIndex)) {
if (place.nWordIndex == pLine->m_LineInfo.nBeginWordIndex) {
return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1);
} else if (place.nWordIndex < pLine->m_LineInfo.nBeginWordIndex) {
if (CLine * pPrevLine = m_LineArray.GetAt(place.nLineIndex - 1)) {
return pPrevLine->GetEndWordPlace();
}
} else {
return pLine->GetPrevWordPlace(place);
}
}
return place;
}
CPVT_WordPlace CSection::GetNextWordPlace(const CPVT_WordPlace & place) const
{
if (place.nLineIndex < 0) {
return GetBeginWordPlace();
}
if (place.nLineIndex >= m_LineArray.GetSize()) {
return GetEndWordPlace();
}
if (CLine * pLine = m_LineArray.GetAt(place.nLineIndex)) {
if (place.nWordIndex >= pLine->m_LineInfo.nEndWordIndex) {
if (CLine * pNextLine = m_LineArray.GetAt(place.nLineIndex + 1)) {
return pNextLine->GetBeginWordPlace();
}
} else {
return pLine->GetNextWordPlace(place);
}
}
return place;
}
void CSection::UpdateWordPlace(CPVT_WordPlace & place) const
{
FX_INT32 nLeft = 0;
FX_INT32 nRight = m_LineArray.GetSize() - 1;
FX_INT32 nMid = (nLeft + nRight) / 2;
while (nLeft <= nRight) {
if (CLine * pLine = m_LineArray.GetAt(nMid)) {
if (place.nWordIndex < pLine->m_LineInfo.nBeginWordIndex) {
nRight = nMid - 1;
nMid = (nLeft + nRight) / 2;
} else if (place.nWordIndex > pLine->m_LineInfo.nEndWordIndex) {
nLeft = nMid + 1;
nMid = (nLeft + nRight) / 2;
} else {
place.nLineIndex = nMid;
return;
}
} else {
break;
}
}
}
CPVT_WordPlace CSection::SearchWordPlace(const CPDF_Point & point) const
{
ASSERT(m_pVT != NULL);
CPVT_WordPlace place = GetBeginWordPlace();
FX_BOOL bUp = TRUE;
FX_BOOL bDown = TRUE;
FX_INT32 nLeft = 0;
FX_INT32 nRight = m_LineArray.GetSize() - 1;
FX_INT32 nMid = m_LineArray.GetSize() / 2;
FX_FLOAT fTop = 0;
FX_FLOAT fBottom = 0;
while (nLeft <= nRight) {
if (CLine * pLine = m_LineArray.GetAt(nMid)) {
fTop = pLine->m_LineInfo.fLineY - pLine->m_LineInfo.fLineAscent - m_pVT->GetLineLeading(m_SecInfo);
fBottom = pLine->m_LineInfo.fLineY - pLine->m_LineInfo.fLineDescent;
if (IsFloatBigger(point.y, fTop)) {
bUp = FALSE;
}
if (IsFloatSmaller(point.y, fBottom)) {
bDown = FALSE;
}
if (IsFloatSmaller(point.y, fTop)) {
nRight = nMid - 1;
nMid = (nLeft + nRight) / 2;
continue;
} else if (IsFloatBigger(point.y, fBottom)) {
nLeft = nMid + 1;
nMid = (nLeft + nRight) / 2;
continue;
} else {
place = SearchWordPlace(point.x,
CPVT_WordRange(pLine->GetNextWordPlace(pLine->GetBeginWordPlace()), pLine->GetEndWordPlace())
);
place.nLineIndex = nMid;
return place;
}
}
}
if (bUp) {
place = GetBeginWordPlace();
}
if (bDown) {
place = GetEndWordPlace();
}
return place;
}
CPVT_WordPlace CSection::SearchWordPlace(FX_FLOAT fx, const CPVT_WordPlace & lineplace) const
{
if (CLine * pLine = m_LineArray.GetAt(lineplace.nLineIndex)) {
return SearchWordPlace(fx - m_SecInfo.rcSection.left,
CPVT_WordRange(pLine->GetNextWordPlace(pLine->GetBeginWordPlace()), pLine->GetEndWordPlace()));
}
return GetBeginWordPlace();
}
CPVT_WordPlace CSection::SearchWordPlace(FX_FLOAT fx, const CPVT_WordRange & range) const
{
CPVT_WordPlace wordplace = range.BeginPos;
wordplace.nWordIndex = -1;
if (!m_pVT) {
return wordplace;
}
FX_INT32 nLeft = range.BeginPos.nWordIndex;
FX_INT32 nRight = range.EndPos.nWordIndex + 1;
FX_INT32 nMid = (nLeft + nRight) / 2;
while (nLeft < nRight) {
if (nMid == nLeft) {
break;
}
if (nMid == nRight) {
nMid--;
break;
}
if (CPVT_WordInfo * pWord = m_WordArray.GetAt(nMid)) {
if (fx > pWord->fWordX + m_pVT->GetWordWidth(*pWord) * PVT_HALF) {
nLeft = nMid;
nMid = (nLeft + nRight) / 2;
continue;
} else {
nRight = nMid;
nMid = (nLeft + nRight) / 2;
continue;
}
} else {
break;
}
}
if (CPVT_WordInfo * pWord = m_WordArray.GetAt(nMid)) {
if (fx > pWord->fWordX + m_pVT->GetWordWidth(*pWord) * PVT_HALF) {
wordplace.nWordIndex = nMid;
}
}
return wordplace;
}
void CSection::ClearLeftWords(FX_INT32 nWordIndex)
{
for (FX_INT32 i = nWordIndex; i >= 0; i--) {
delete m_WordArray.GetAt(i);
m_WordArray.RemoveAt(i);
}
}
void CSection::ClearRightWords(FX_INT32 nWordIndex)
{
for (FX_INT32 i = m_WordArray.GetSize() - 1; i > nWordIndex; i--) {
delete m_WordArray.GetAt(i);
m_WordArray.RemoveAt(i);
}
}
void CSection::ClearMidWords(FX_INT32 nBeginIndex, FX_INT32 nEndIndex)
{
for (FX_INT32 i = nEndIndex; i > nBeginIndex; i--) {
delete m_WordArray.GetAt(i);
m_WordArray.RemoveAt(i);
}
}
void CSection::ClearWords(const CPVT_WordRange & PlaceRange)
{
CPVT_WordPlace SecBeginPos = GetBeginWordPlace();
CPVT_WordPlace SecEndPos = GetEndWordPlace();
if (PlaceRange.BeginPos.WordCmp(SecBeginPos) >= 0) {
if (PlaceRange.EndPos.WordCmp(SecEndPos) <= 0) {
ClearMidWords(PlaceRange.BeginPos.nWordIndex, PlaceRange.EndPos.nWordIndex);
} else {
ClearRightWords(PlaceRange.BeginPos.nWordIndex);
}
} else if (PlaceRange.EndPos.WordCmp(SecEndPos) <= 0) {
ClearLeftWords(PlaceRange.EndPos.nWordIndex);
} else {
ResetWordArray();
}
}
void CSection::ClearWord(const CPVT_WordPlace & place)
{
delete m_WordArray.GetAt(place.nWordIndex);
m_WordArray.RemoveAt(place.nWordIndex);
}
CTypeset::CTypeset(CSection * pSection) : m_rcRet(0.0f, 0.0f, 0.0f, 0.0f), m_pVT(pSection->m_pVT), m_pSection(pSection)
{
}
CTypeset::~CTypeset()
{
}
CPVT_FloatRect CTypeset::CharArray()
{
ASSERT(m_pSection != NULL);
ASSERT(m_pVT != NULL);
FX_FLOAT fLineAscent = m_pVT->GetFontAscent(m_pVT->GetDefaultFontIndex(), m_pVT->GetFontSize());
FX_FLOAT fLineDescent = m_pVT->GetFontDescent(m_pVT->GetDefaultFontIndex(), m_pVT->GetFontSize());
m_rcRet.Default();
FX_FLOAT x = 0.0f, y = 0.0f;
FX_FLOAT fNextWidth;
FX_INT32 nStart = 0;
FX_FLOAT fNodeWidth = m_pVT->GetPlateWidth() / (m_pVT->m_nCharArray <= 0 ? 1 : m_pVT->m_nCharArray);
if (CLine * pLine = m_pSection->m_LineArray.GetAt(0)) {
x = 0.0f;
y += m_pVT->GetLineLeading(m_pSection->m_SecInfo);
y += fLineAscent;
nStart = 0;
switch (m_pVT->GetAlignment(m_pSection->m_SecInfo)) {
case 0:
pLine->m_LineInfo.fLineX = fNodeWidth * PVT_HALF;
break;
case 1:
nStart = (m_pVT->m_nCharArray - m_pSection->m_WordArray.GetSize()) / 2;
pLine->m_LineInfo.fLineX = fNodeWidth * nStart - fNodeWidth * PVT_HALF;
break;
case 2:
nStart = m_pVT->m_nCharArray - m_pSection->m_WordArray.GetSize();
pLine->m_LineInfo.fLineX = fNodeWidth * nStart - fNodeWidth * PVT_HALF;
break;
}
for (FX_INT32 w = 0, sz = m_pSection->m_WordArray.GetSize(); w < sz; w++) {
if (w >= m_pVT->m_nCharArray) {
break;
}
fNextWidth = 0;
if (CPVT_WordInfo * pNextWord = (CPVT_WordInfo *)m_pSection->m_WordArray.GetAt(w + 1)) {
pNextWord->fWordTail = 0;
fNextWidth = m_pVT->GetWordWidth(*pNextWord);
}
if (CPVT_WordInfo * pWord = (CPVT_WordInfo *)m_pSection->m_WordArray.GetAt(w)) {
pWord->fWordTail = 0;
FX_FLOAT fWordWidth = m_pVT->GetWordWidth(*pWord);
FX_FLOAT fWordAscent = m_pVT->GetWordAscent(*pWord);
FX_FLOAT fWordDescent = m_pVT->GetWordDescent(*pWord);
x = (FX_FLOAT)(fNodeWidth * (w + nStart + 0.5) - fWordWidth * PVT_HALF);
pWord->fWordX = x;
pWord->fWordY = y;
if (w == 0) {
pLine->m_LineInfo.fLineX = x;
}
if (w != m_pSection->m_WordArray.GetSize() - 1)
pWord->fWordTail = (fNodeWidth - (fWordWidth + fNextWidth) * PVT_HALF > 0 ?
fNodeWidth - (fWordWidth + fNextWidth) * PVT_HALF : 0);
else {
pWord->fWordTail = 0;
}
x += fWordWidth;
fLineAscent = FPDF_MAX(fLineAscent, fWordAscent);
fLineDescent = FPDF_MIN(fLineDescent, fWordDescent);
}
}
pLine->m_LineInfo.nBeginWordIndex = 0;
pLine->m_LineInfo.nEndWordIndex = m_pSection->m_WordArray.GetSize() - 1;
pLine->m_LineInfo.fLineY = y;
pLine->m_LineInfo.fLineWidth = x - pLine->m_LineInfo.fLineX;
pLine->m_LineInfo.fLineAscent = fLineAscent;
pLine->m_LineInfo.fLineDescent = fLineDescent;
y += (-fLineDescent);
}
return m_rcRet = CPVT_FloatRect(0, 0, x, y);
}
CPVT_Size CTypeset::GetEditSize(FX_FLOAT fFontSize)
{
ASSERT(m_pSection != NULL);
ASSERT(m_pVT != NULL);
SplitLines(FALSE, fFontSize);
return CPVT_Size(m_rcRet.Width(), m_rcRet.Height());
}
CPVT_FloatRect CTypeset::Typeset()
{
ASSERT(m_pSection != NULL);
ASSERT(m_pVT != NULL);
m_pSection->m_LineArray.Empty();
SplitLines(TRUE, 0.0f);
m_pSection->m_LineArray.Clear();
OutputLines();
return m_rcRet;
}
static int special_chars[128] = {
0x0000, 0x000C, 0x0008, 0x000C, 0x0008, 0x0000, 0x0020, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0008, 0x0008, 0x0000, 0x0010, 0x0000, 0x0000, 0x0028,
0x000C, 0x0008, 0x0000, 0x0000, 0x0028, 0x0028, 0x0028, 0x0028,
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
0x0002, 0x0002, 0x0008, 0x0008, 0x0000, 0x0000, 0x0000, 0x0008,
0x0000, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
0x0001, 0x0001, 0x0001, 0x000C, 0x0000, 0x0008, 0x0000, 0x0000,
0x0000, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001, 0x0001,
0x0001, 0x0001, 0x0001, 0x000C, 0x0000, 0x0008, 0x0000, 0x0000,
};
static FX_BOOL IsLatin(FX_WORD word)
{
if (word <= 0x007F) {
if (special_chars[word] & 0x0001) {
return TRUE;
}
}
if ((word >= 0x00C0 && word <= 0x00FF) ||
(word >= 0x0100 && word <= 0x024F) ||
(word >= 0x1E00 && word <= 0x1EFF) ||
(word >= 0x2C60 && word <= 0x2C7F) ||
(word >= 0xA720 && word <= 0xA7FF) ||
(word >= 0xFF21 && word <= 0xFF3A) ||
(word >= 0xFF41 && word <= 0xFF5A)) {
return TRUE;
}
return FALSE;
}
static FX_BOOL IsDigit(FX_DWORD word)
{
return (word >= 0x0030 && word <= 0x0039) ? TRUE : FALSE;
}
static FX_BOOL IsCJK(FX_DWORD word)
{
if ((word >= 0x1100 && word <= 0x11FF) ||
(word >= 0x2E80 && word <= 0x2FFF) ||
(word >= 0x3040 && word <= 0x9FBF) ||
(word >= 0xAC00 && word <= 0xD7AF) ||
(word >= 0xF900 && word <= 0xFAFF) ||
(word >= 0xFE30 && word <= 0xFE4F) ||
(word >= 0x20000 && word <= 0x2A6DF) ||
(word >= 0x2F800 && word <= 0x2FA1F)) {
return TRUE;
}
if (word >= 0x3000 && word <= 0x303F) {
if (word == 0x3005 || word == 0x3006 || word == 0x3021 || word == 0x3022 ||
word == 0x3023 || word == 0x3024 || word == 0x3025 || word == 0x3026 ||
word == 0x3027 || word == 0x3028 || word == 0x3029 || word == 0x3031 ||
word == 0x3032 || word == 0x3033 || word == 0x3034 || word == 0x3035) {
return TRUE;
}
return FALSE;
}
if (word >= 0xFF66 && word <= 0xFF9D) {
return TRUE;
}
return FALSE;
}
static FX_BOOL IsPunctuation(FX_DWORD word)
{
if (word <= 0x007F) {
if ((special_chars[word] >> 3) & 1) {
return TRUE;
}
} else if (word >= 0x0080 && word <= 0x00FF) {
if (word == 0x0082 || word == 0x0084 || word == 0x0085 || word == 0x0091 ||
word == 0x0092 || word == 0x0093 || word <= 0x0094 || word == 0x0096 ||
word == 0x00B4 || word == 0x00B8) {
return TRUE;
}
} else if (word >= 0x2000 && word <= 0x206F) {
if (word == 0x2010 || word == 0x2011 || word == 0x2012 || word == 0x2013 ||
word == 0x2018 || word == 0x2019 || word == 0x201A || word == 0x201B ||
word == 0x201C || word == 0x201D || word == 0x201E || word == 0x201F ||
word == 0x2032 || word == 0x2033 || word == 0x2034 || word == 0x2035 ||
word == 0x2036 || word == 0x2037 || word == 0x203C || word == 0x203D ||
word == 0x203E || word == 0x2044) {
return TRUE;
}
} else if (word >= 0x3000 && word <= 0x303F) {
if (word == 0x3001 || word == 0x3002 || word == 0x3003 || word == 0x3005 ||
word == 0x3009 || word == 0x300A || word == 0x300B || word == 0x300C ||
word == 0x300D || word == 0x300F || word == 0x300E || word == 0x3010 ||
word == 0x3011 || word == 0x3014 || word == 0x3015 || word == 0x3016 ||
word == 0x3017 || word == 0x3018 || word == 0x3019 || word == 0x301A ||
word == 0x301B || word == 0x301D || word == 0x301E || word == 0x301F) {
return TRUE;
}
} else if (word >= 0xFE50 && word <= 0xFE6F) {
if ((word >= 0xFE50 && word <= 0xFE5E) || word == 0xFE63) {
return TRUE;
}
} else if (word >= 0xFF00 && word <= 0xFFEF) {
if (word == 0xFF01 || word == 0xFF02 || word == 0xFF07 || word == 0xFF08 ||
word == 0xFF09 || word == 0xFF0C || word == 0xFF0E || word == 0xFF0F ||
word == 0xFF1A || word == 0xFF1B || word == 0xFF1F || word == 0xFF3B ||
word == 0xFF3D || word == 0xFF40 || word == 0xFF5B || word == 0xFF5C ||
word == 0xFF5D || word == 0xFF61 || word == 0xFF62 || word == 0xFF63 ||
word == 0xFF64 || word == 0xFF65 || word == 0xFF9E || word == 0xFF9F) {
return TRUE;
}
}
return FALSE;
}
static FX_BOOL IsConnectiveSymbol(FX_DWORD word)
{
if (word <= 0x007F) {
if ((special_chars[word] >> 5) & 1) {
return TRUE;
}
}
return FALSE;
}
static FX_BOOL IsOpenStylePunctuation(FX_DWORD word)
{
if (word <= 0x007F) {
if ((special_chars[word] >> 2) & 1) {
return TRUE;
}
} else if (word == 0x300A || word == 0x300C || word == 0x300E || word == 0x3010 ||
word == 0x3014 || word == 0x3016 || word == 0x3018 || word == 0x301A ||
word == 0xFF08 || word == 0xFF3B || word == 0xFF5B || word == 0xFF62) {
return TRUE;
}
return FALSE;
}
static FX_BOOL IsCurrencySymbol(FX_WORD word)
{
if (word == 0x0024 || word == 0x0080 || word == 0x00A2 || word == 0x00A3 ||
word == 0x00A4 || word == 0x00A5 || (word >= 0x20A0 && word <= 0x20CF) ||
word == 0xFE69 || word == 0xFF04 || word == 0xFFE0 || word == 0xFFE1 ||
word == 0xFFE5 || word == 0xFFE6) {
return TRUE;
}
return FALSE;
}
static FX_BOOL IsPrefixSymbol(FX_WORD word)
{
if (IsCurrencySymbol(word)) {
return TRUE;
}
if (word == 0x2116) {
return TRUE;
}
return FALSE;
}
static FX_BOOL IsSpace(FX_WORD word)
{
return (word == 0x0020 || word == 0x3000) ? TRUE : FALSE;
}
static FX_BOOL NeedDivision(FX_WORD prevWord, FX_WORD curWord)
{
if ((IsLatin(prevWord) || IsDigit(prevWord)) && (IsLatin(curWord) || IsDigit(curWord))) {
return FALSE;
} else if (IsSpace(curWord) || IsPunctuation(curWord)) {
return FALSE;
} else if (IsConnectiveSymbol(prevWord) || IsConnectiveSymbol(curWord)) {
return FALSE;
} else if (IsSpace(prevWord) || IsPunctuation(prevWord)) {
return TRUE;
} else if (IsPrefixSymbol(prevWord)) {
return FALSE;
} else if (IsPrefixSymbol(curWord) || IsCJK(curWord)) {
return TRUE;
} else if (IsCJK(prevWord)) {
return TRUE;
}
return FALSE;
}
void CTypeset::SplitLines(FX_BOOL bTypeset, FX_FLOAT fFontSize)
{
ASSERT(m_pVT != NULL);
ASSERT(m_pSection != NULL);
FX_INT32 nLineHead = 0;
FX_INT32 nLineTail = 0;
FX_FLOAT fMaxX = 0.0f, fMaxY = 0.0f;
FX_FLOAT fLineWidth = 0.0f, fBackupLineWidth = 0.0f;
FX_FLOAT fLineAscent = 0.0f, fBackupLineAscent = 0.0f;
FX_FLOAT fLineDescent = 0.0f, fBackupLineDescent = 0.0f;
FX_INT32 nWordStartPos = 0;
FX_BOOL bFullWord = FALSE;
FX_INT32 nLineFullWordIndex = 0;
FX_INT32 nCharIndex = 0;
CPVT_LineInfo line;
FX_FLOAT fWordWidth = 0;
FX_FLOAT fTypesetWidth = FPDF_MAX(m_pVT->GetPlateWidth() - m_pVT->GetLineIndent(m_pSection->m_SecInfo), 0.0f);
FX_INT32 nTotalWords = m_pSection->m_WordArray.GetSize();
FX_BOOL bOpened = FALSE;
if (nTotalWords > 0) {
FX_INT32 i = 0;
while (i < nTotalWords) {
CPVT_WordInfo * pWord = m_pSection->m_WordArray.GetAt(i);
CPVT_WordInfo* pOldWord = pWord;
if (i > 0) {
pOldWord = m_pSection->m_WordArray.GetAt(i - 1);
}
if (pWord) {
if (bTypeset) {
fLineAscent = FPDF_MAX(fLineAscent, m_pVT->GetWordAscent(*pWord, TRUE));
fLineDescent = FPDF_MIN(fLineDescent, m_pVT->GetWordDescent(*pWord, TRUE));
fWordWidth = m_pVT->GetWordWidth(*pWord);
} else {
fLineAscent = FPDF_MAX(fLineAscent, m_pVT->GetWordAscent(*pWord, fFontSize));
fLineDescent = FPDF_MIN(fLineDescent, m_pVT->GetWordDescent(*pWord, fFontSize));
fWordWidth = m_pVT->GetWordWidth(pWord->nFontIndex,
pWord->Word,
m_pVT->m_wSubWord,
m_pVT->m_fCharSpace,
m_pVT->m_nHorzScale,
fFontSize,
pWord->fWordTail,
0);
}
if (!bOpened) {
if (IsOpenStylePunctuation(pWord->Word)) {
bOpened = TRUE;
bFullWord = TRUE;
} else if (pOldWord != NULL) {
if (NeedDivision(pOldWord->Word, pWord->Word)) {
bFullWord = TRUE;
}
}
} else {
if (!IsSpace(pWord->Word) && !IsOpenStylePunctuation(pWord->Word)) {
bOpened = FALSE;
}
}
if (bFullWord) {
bFullWord = FALSE;
if (nCharIndex > 0) {
nLineFullWordIndex ++;
}
nWordStartPos = i;
fBackupLineWidth = fLineWidth;
fBackupLineAscent = fLineAscent;
fBackupLineDescent = fLineDescent;
}
nCharIndex++;
}
if (m_pVT->m_bLimitWidth && fTypesetWidth > 0 &&
fLineWidth + fWordWidth > fTypesetWidth) {
if (nLineFullWordIndex > 0) {
i = nWordStartPos;
fLineWidth = fBackupLineWidth;
fLineAscent = fBackupLineAscent;
fLineDescent = fBackupLineDescent;
}
if (nCharIndex == 1) {
fLineWidth = fWordWidth;
i++;
}
nLineTail = i - 1;
if (bTypeset) {
line.nBeginWordIndex = nLineHead;
line.nEndWordIndex = nLineTail;
line.nTotalWord = nLineTail - nLineHead + 1;
line.fLineWidth = fLineWidth;
line.fLineAscent = fLineAscent;
line.fLineDescent = fLineDescent;
m_pSection->AddLine(line);
}
fMaxY += (fLineAscent + m_pVT->GetLineLeading(m_pSection->m_SecInfo));
fMaxY += (-fLineDescent);
fMaxX = FPDF_MAX(fLineWidth, fMaxX);
nLineHead = i;
fLineWidth = 0.0f;
fLineAscent = 0.0f;
fLineDescent = 0.0f;
nCharIndex = 0;
nLineFullWordIndex = 0;
bFullWord = FALSE;
} else {
fLineWidth += fWordWidth;
i++;
}
}
if (nLineHead <= nTotalWords - 1) {
nLineTail = nTotalWords - 1;
if (bTypeset) {
line.nBeginWordIndex = nLineHead;
line.nEndWordIndex = nLineTail;
line.nTotalWord = nLineTail - nLineHead + 1;
line.fLineWidth = fLineWidth;
line.fLineAscent = fLineAscent;
line.fLineDescent = fLineDescent;
m_pSection->AddLine(line);
}
fMaxY += (fLineAscent + m_pVT->GetLineLeading(m_pSection->m_SecInfo));
fMaxY += (-fLineDescent);
fMaxX = FPDF_MAX(fLineWidth, fMaxX);
}
} else {
if (bTypeset) {
fLineAscent = m_pVT->GetLineAscent(m_pSection->m_SecInfo);
fLineDescent = m_pVT->GetLineDescent(m_pSection->m_SecInfo);
} else {
fLineAscent = m_pVT->GetFontAscent(m_pVT->GetDefaultFontIndex(), fFontSize);
fLineDescent = m_pVT->GetFontDescent(m_pVT->GetDefaultFontIndex(), fFontSize);
}
if (bTypeset) {
line.nBeginWordIndex = -1;
line.nEndWordIndex = -1;
line.nTotalWord = 0;
line.fLineWidth = 0;
line.fLineAscent = fLineAscent;
line.fLineDescent = fLineDescent;
m_pSection->AddLine(line);
}
fMaxY += (m_pVT->GetLineLeading(m_pSection->m_SecInfo) + fLineAscent + (-fLineDescent));
}
m_rcRet = CPVT_FloatRect(0, 0, fMaxX, fMaxY);
}
void CTypeset::OutputLines()
{
ASSERT(m_pVT != NULL);
ASSERT(m_pSection != NULL);
FX_FLOAT fMinX = 0.0f, fMinY = 0.0f, fMaxX = 0.0f, fMaxY = 0.0f;
FX_FLOAT fPosX = 0.0f, fPosY = 0.0f;
FX_FLOAT fLineIndent = m_pVT->GetLineIndent(m_pSection->m_SecInfo);
FX_FLOAT fTypesetWidth = FPDF_MAX(m_pVT->GetPlateWidth() - fLineIndent, 0.0f);
switch (m_pVT->GetAlignment(m_pSection->m_SecInfo)) {
default:
case 0:
fMinX = 0.0f;
break;
case 1:
fMinX = (fTypesetWidth - m_rcRet.Width()) * PVT_HALF;
break;
case 2:
fMinX = fTypesetWidth - m_rcRet.Width();
break;
}
fMaxX = fMinX + m_rcRet.Width();
fMinY = 0.0f;
fMaxY = m_rcRet.Height();
FX_INT32 nTotalLines = m_pSection->m_LineArray.GetSize();
if (nTotalLines > 0) {
m_pSection->m_SecInfo.nTotalLine = nTotalLines;
for (FX_INT32 l = 0; l < nTotalLines; l++) {
if (CLine * pLine = m_pSection->m_LineArray.GetAt(l)) {
switch (m_pVT->GetAlignment(m_pSection->m_SecInfo)) {
default:
case 0:
fPosX = 0;
break;
case 1:
fPosX = (fTypesetWidth - pLine->m_LineInfo.fLineWidth) * PVT_HALF;
break;
case 2:
fPosX = fTypesetWidth - pLine->m_LineInfo.fLineWidth;
break;
}
fPosX += fLineIndent;
fPosY += m_pVT->GetLineLeading(m_pSection->m_SecInfo);
fPosY += pLine->m_LineInfo.fLineAscent;
pLine->m_LineInfo.fLineX = fPosX - fMinX;
pLine->m_LineInfo.fLineY = fPosY - fMinY;
for (FX_INT32 w = pLine->m_LineInfo.nBeginWordIndex; w <= pLine->m_LineInfo.nEndWordIndex; w++) {
if (CPVT_WordInfo * pWord = m_pSection->m_WordArray.GetAt(w)) {
pWord->fWordX = fPosX - fMinX;
if (pWord->pWordProps) {
switch (pWord->pWordProps->nScriptType) {
default:
case PVTWORD_SCRIPT_NORMAL:
pWord->fWordY = fPosY - fMinY;
break;
case PVTWORD_SCRIPT_SUPER:
pWord->fWordY = fPosY - m_pVT->GetWordAscent(*pWord) - fMinY;
break;
case PVTWORD_SCRIPT_SUB:
pWord->fWordY = fPosY - m_pVT->GetWordDescent(*pWord) - fMinY;
break;
}
} else {
pWord->fWordY = fPosY - fMinY;
}
fPosX += m_pVT->GetWordWidth(*pWord);
}
}
fPosY += (-pLine->m_LineInfo.fLineDescent);
}
}
}
m_rcRet = CPVT_FloatRect(fMinX, fMinY, fMaxX, fMaxY);
}
CPDF_VariableText::CPDF_VariableText() :
m_nLimitChar(0),
m_nCharArray(0),
m_bMultiLine(FALSE),
m_bLimitWidth(FALSE),
m_bAutoFontSize(FALSE),
m_nAlignment(0),
m_fLineLeading(0.0f),
m_fCharSpace(0.0f),
m_nHorzScale(100),
m_wSubWord(0),
m_fFontSize(0.0f),
m_bInitial(FALSE),
m_bRichText(FALSE),
m_pVTProvider(NULL),
m_pVTIterator(NULL)
{
}
CPDF_VariableText::~CPDF_VariableText()
{
if (m_pVTIterator) {
delete m_pVTIterator;
m_pVTIterator = NULL;
}
ResetAll();
}
void CPDF_VariableText::Initialize()
{
if (!m_bInitial) {
CPVT_SectionInfo secinfo;
if (m_bRichText) {
secinfo.pSecProps = new CPVT_SecProps(0.0f, 0.0f, 0);
secinfo.pWordProps = new CPVT_WordProps(GetDefaultFontIndex(), PVT_DEFAULT_FONTSIZE, 0, 0, 0);
}
CPVT_WordPlace place;
place.nSecIndex = 0;
AddSection(place, secinfo);
CPVT_LineInfo lineinfo;
lineinfo.fLineAscent = GetFontAscent(GetDefaultFontIndex(), GetFontSize());
lineinfo.fLineDescent = GetFontDescent(GetDefaultFontIndex(), GetFontSize());
AddLine(place, lineinfo);
if (CSection * pSection = m_SectionArray.GetAt(0)) {
pSection->ResetLinePlace();
}
m_bInitial = TRUE;
}
}
void CPDF_VariableText::ResetAll()
{
m_bInitial = FALSE;
ResetSectionArray();
}
CPVT_WordPlace CPDF_VariableText::InsertWord(const CPVT_WordPlace & place, FX_WORD word, FX_INT32 charset,
const CPVT_WordProps * pWordProps)
{
FX_INT32 nTotlaWords = this->GetTotalWords();
if (m_nLimitChar > 0 && nTotlaWords >= m_nLimitChar) {
return place;
}
if (m_nCharArray > 0 && nTotlaWords >= m_nCharArray) {
return place;
}
CPVT_WordPlace newplace = place;
newplace.nWordIndex ++;
if (m_bRichText) {
CPVT_WordProps * pNewProps = pWordProps ? new CPVT_WordProps(*pWordProps) : new CPVT_WordProps();
pNewProps->nFontIndex = GetWordFontIndex(word, charset, pWordProps->nFontIndex);
return AddWord(newplace, CPVT_WordInfo(word, charset, -1, pNewProps));
} else {
FX_INT32 nFontIndex = GetSubWord() > 0 ? GetDefaultFontIndex() : GetWordFontIndex(word, charset, GetDefaultFontIndex());
return AddWord(newplace, CPVT_WordInfo(word, charset, nFontIndex, NULL));
}
return place;
}
CPVT_WordPlace CPDF_VariableText::InsertSection(const CPVT_WordPlace & place, const CPVT_SecProps * pSecProps,
const CPVT_WordProps * pWordProps)
{
FX_INT32 nTotlaWords = this->GetTotalWords();
if (m_nLimitChar > 0 && nTotlaWords >= m_nLimitChar) {
return place;
}
if (m_nCharArray > 0 && nTotlaWords >= m_nCharArray) {
return place;
}
if (!m_bMultiLine) {
return place;
}
CPVT_WordPlace wordplace = place;
UpdateWordPlace(wordplace);
CPVT_WordPlace newplace = place;
if (CSection * pSection = m_SectionArray.GetAt(wordplace.nSecIndex)) {
CPVT_WordPlace NewPlace(wordplace.nSecIndex + 1, 0, -1);
CPVT_SectionInfo secinfo;
if (m_bRichText) {
if (pSecProps) {
secinfo.pSecProps = new CPVT_SecProps(*pSecProps);
}
if (pWordProps) {
secinfo.pWordProps = new CPVT_WordProps(*pWordProps);
}
}
AddSection(NewPlace, secinfo);
newplace = NewPlace;
if (CSection * pNewSection = m_SectionArray.GetAt(NewPlace.nSecIndex)) {
for (FX_INT32 w = wordplace.nWordIndex + 1, sz = pSection->m_WordArray.GetSize(); w < sz; w++) {
if (CPVT_WordInfo * pWord = pSection->m_WordArray.GetAt(w)) {
NewPlace.nWordIndex++;
pNewSection->AddWord(NewPlace, *pWord);
}
}
}
ClearSectionRightWords(wordplace);
}
return newplace;
}
CPVT_WordPlace CPDF_VariableText::InsertText(const CPVT_WordPlace & place, FX_LPCWSTR text, FX_INT32 charset,
const CPVT_SecProps * pSecProps, const CPVT_WordProps * pProps)
{
CFX_WideString swText = text;
CPVT_WordPlace wp = place;
for (FX_INT32 i = 0, sz = swText.GetLength(); i < sz; i++) {
CPVT_WordPlace oldwp = wp;
FX_WORD word = swText.GetAt(i);
switch (word) {
case 0x0D:
if (m_bMultiLine) {
if (swText.GetAt(i + 1) == 0x0A) {
i += 1;
}
wp = InsertSection(wp, pSecProps, pProps);
}
break;
case 0x0A:
if (m_bMultiLine) {
if (swText.GetAt(i + 1) == 0x0D) {
i += 1;
}
wp = InsertSection(wp, pSecProps, pProps);
}
break;
case 0x09:
word = 0x20;
default:
wp = InsertWord(wp, word, charset, pProps);
break;
}
if (wp == oldwp) {
break;
}
}
return wp;
}
CPVT_WordPlace CPDF_VariableText::DeleteWords(const CPVT_WordRange & PlaceRange)
{
FX_BOOL bLastSecPos = FALSE;
if (CSection * pSection = m_SectionArray.GetAt(PlaceRange.EndPos.nSecIndex)) {
bLastSecPos = (PlaceRange.EndPos == pSection->GetEndWordPlace());
}
ClearWords(PlaceRange);
if (PlaceRange.BeginPos.nSecIndex != PlaceRange.EndPos.nSecIndex) {
ClearEmptySections(PlaceRange);
if (!bLastSecPos) {
LinkLatterSection(PlaceRange.BeginPos);
}
}
return PlaceRange.BeginPos;
}
CPVT_WordPlace CPDF_VariableText::DeleteWord(const CPVT_WordPlace & place)
{
return ClearRightWord(AjustLineHeader(place, TRUE));
}
CPVT_WordPlace CPDF_VariableText::BackSpaceWord(const CPVT_WordPlace & place)
{
return ClearLeftWord(AjustLineHeader(place, TRUE));
}
void CPDF_VariableText::SetText(FX_LPCWSTR text, FX_INT32 charset, const CPVT_SecProps * pSecProps,
const CPVT_WordProps * pWordProps)
{
DeleteWords(CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace()));
CFX_WideString swText = text;
CPVT_WordPlace wp(0, 0, -1);
CPVT_SectionInfo secinfo;
if (m_bRichText) {
if (pSecProps) {
secinfo.pSecProps = new CPVT_SecProps(*pSecProps);
}
if (pWordProps) {
secinfo.pWordProps = new CPVT_WordProps(*pWordProps);
}
}
if (CSection * pSection = m_SectionArray.GetAt(0)) {
pSection->m_SecInfo = secinfo;
}
FX_INT32 nCharCount = 0;
for (FX_INT32 i = 0, sz = swText.GetLength(); i < sz; i++) {
if (m_nLimitChar > 0 && nCharCount >= m_nLimitChar) {
break;
}
if (m_nCharArray > 0 && nCharCount >= m_nCharArray) {
break;
}
FX_WORD word = swText.GetAt(i);
switch (word) {
case 0x0D:
if (m_bMultiLine) {
if (swText.GetAt(i + 1) == 0x0A) {
i += 1;
}
wp.nSecIndex ++;
wp.nLineIndex = 0;
wp.nWordIndex = -1;
AddSection(wp, secinfo);
}
break;
case 0x0A:
if (m_bMultiLine) {
if (swText.GetAt(i + 1) == 0x0D) {
i += 1;
}
wp.nSecIndex ++;
wp.nLineIndex = 0;
wp.nWordIndex = -1;
AddSection(wp, secinfo);
}
break;
case 0x09:
word = 0x20;
default:
wp = InsertWord(wp, word, charset, pWordProps);
break;
}
nCharCount++;
}
}
void CPDF_VariableText::UpdateWordPlace(CPVT_WordPlace & place) const
{
if (place.nSecIndex < 0) {
place = GetBeginWordPlace();
}
if (place.nSecIndex >= m_SectionArray.GetSize()) {
place = GetEndWordPlace();
}
place = AjustLineHeader(place, TRUE);
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
pSection->UpdateWordPlace(place);
}
}
FX_INT32 CPDF_VariableText::WordPlaceToWordIndex(const CPVT_WordPlace & place) const
{
CPVT_WordPlace newplace = place;
UpdateWordPlace(newplace);
FX_INT32 nIndex = 0;
FX_INT32 i = 0;
FX_INT32 sz = 0;
for (i = 0, sz = m_SectionArray.GetSize(); i < sz && i < newplace.nSecIndex; i++) {
if (CSection * pSection = m_SectionArray.GetAt(i)) {
nIndex += pSection->m_WordArray.GetSize();
if (i != m_SectionArray.GetSize() - 1) {
nIndex += PVT_RETURN_LENGTH;
}
}
}
if (i >= 0 && i < m_SectionArray.GetSize()) {
nIndex += newplace.nWordIndex + PVT_RETURN_LENGTH;
}
return nIndex;
}
CPVT_WordPlace CPDF_VariableText::WordIndexToWordPlace(FX_INT32 index) const
{
CPVT_WordPlace place = GetBeginWordPlace();
FX_INT32 nOldIndex = 0 , nIndex = 0;
FX_BOOL bFind = FALSE;
for (FX_INT32 i = 0, sz = m_SectionArray.GetSize(); i < sz; i++) {
if (CSection * pSection = m_SectionArray.GetAt(i)) {
nIndex += pSection->m_WordArray.GetSize();
if (nIndex == index) {
place = pSection->GetEndWordPlace();
bFind = TRUE;
break;
} else if (nIndex > index) {
place.nSecIndex = i;
place.nWordIndex = index - nOldIndex - 1;
pSection->UpdateWordPlace(place);
bFind = TRUE;
break;
}
if (i != m_SectionArray.GetSize() - 1) {
nIndex += PVT_RETURN_LENGTH;
}
nOldIndex = nIndex;
}
}
if (!bFind) {
place = GetEndWordPlace();
}
return place;
}
CPVT_WordPlace CPDF_VariableText::GetBeginWordPlace() const
{
return m_bInitial ? CPVT_WordPlace(0, 0, -1) : CPVT_WordPlace();
}
CPVT_WordPlace CPDF_VariableText::GetEndWordPlace() const
{
if (CSection * pSection = m_SectionArray.GetAt(m_SectionArray.GetSize() - 1)) {
return pSection->GetEndWordPlace();
}
return CPVT_WordPlace();
}
CPVT_WordPlace CPDF_VariableText::GetPrevWordPlace(const CPVT_WordPlace & place) const
{
if( place.nSecIndex < 0) {
return GetBeginWordPlace();
}
if (place.nSecIndex >= m_SectionArray.GetSize()) {
return GetEndWordPlace();
}
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
if (place.WordCmp(pSection->GetBeginWordPlace()) <= 0) {
if (CSection * pPrevSection = m_SectionArray.GetAt(place.nSecIndex - 1)) {
return pPrevSection->GetEndWordPlace();
} else {
return GetBeginWordPlace();
}
} else {
return pSection->GetPrevWordPlace(place);
}
}
return place;
}
CPVT_WordPlace CPDF_VariableText::GetNextWordPlace(const CPVT_WordPlace & place) const
{
if (place.nSecIndex < 0) {
return GetBeginWordPlace();
}
if (place.nSecIndex >= m_SectionArray.GetSize()) {
return GetEndWordPlace();
}
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
if (place.WordCmp(pSection->GetEndWordPlace()) >= 0) {
if (CSection * pNextSection = m_SectionArray.GetAt(place.nSecIndex + 1)) {
return pNextSection->GetBeginWordPlace();
} else {
return GetEndWordPlace();
}
} else {
return pSection->GetNextWordPlace(place);
}
}
return place;
}
CPVT_WordPlace CPDF_VariableText::SearchWordPlace(const CPDF_Point & point) const
{
CPDF_Point pt = OutToIn(point);
CPVT_WordPlace place = GetBeginWordPlace();
FX_INT32 nLeft = 0;
FX_INT32 nRight = m_SectionArray.GetSize() - 1;
FX_INT32 nMid = m_SectionArray.GetSize() / 2;
FX_BOOL bUp = TRUE;
FX_BOOL bDown = TRUE;
while (nLeft <= nRight) {
if (CSection * pSection = m_SectionArray.GetAt(nMid)) {
if (IsFloatBigger(pt.y, pSection->m_SecInfo.rcSection.top)) {
bUp = FALSE;
}
if (IsFloatBigger(pSection->m_SecInfo.rcSection.bottom, pt.y)) {
bDown = FALSE;
}
if (IsFloatSmaller(pt.y, pSection->m_SecInfo.rcSection.top)) {
nRight = nMid - 1;
nMid = (nLeft + nRight) / 2;
continue;
} else if (IsFloatBigger(pt.y, pSection->m_SecInfo.rcSection.bottom)) {
nLeft = nMid + 1;
nMid = (nLeft + nRight) / 2;
continue;
} else {
place = pSection->SearchWordPlace(
CPDF_Point(pt.x - pSection->m_SecInfo.rcSection.left, pt.y - pSection->m_SecInfo.rcSection.top)
);
place.nSecIndex = nMid;
return place;
}
} else {
break;
}
}
if (bUp) {
place = GetBeginWordPlace();
}
if (bDown) {
place = GetEndWordPlace();
}
return place;
}
CPVT_WordPlace CPDF_VariableText::GetUpWordPlace(const CPVT_WordPlace & place, const CPDF_Point & point) const
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
CPVT_WordPlace temp = place;
CPDF_Point pt = OutToIn(point);
if (temp.nLineIndex-- > 0) {
return pSection->SearchWordPlace(pt.x - pSection->m_SecInfo.rcSection.left, temp);
} else {
if (temp.nSecIndex-- > 0) {
if (CSection * pLastSection = m_SectionArray.GetAt(temp.nSecIndex)) {
temp.nLineIndex = pLastSection->m_LineArray.GetSize() - 1;
return pLastSection->SearchWordPlace(pt.x - pLastSection->m_SecInfo.rcSection.left, temp);
}
}
}
}
return place;
}
CPVT_WordPlace CPDF_VariableText::GetDownWordPlace(const CPVT_WordPlace & place, const CPDF_Point & point) const
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
CPVT_WordPlace temp = place;
CPDF_Point pt = OutToIn(point);
if (temp.nLineIndex++ < pSection->m_LineArray.GetSize() - 1) {
return pSection->SearchWordPlace(pt.x - pSection->m_SecInfo.rcSection.left, temp);
} else {
if (temp.nSecIndex++ < m_SectionArray.GetSize() - 1) {
if (CSection * pNextSection = m_SectionArray.GetAt(temp.nSecIndex)) {
temp.nLineIndex = 0;
return pNextSection->SearchWordPlace(pt.x - pSection->m_SecInfo.rcSection.left, temp);
}
}
}
}
return place;
}
CPVT_WordPlace CPDF_VariableText::GetLineBeginPlace(const CPVT_WordPlace & place) const
{
return CPVT_WordPlace(place.nSecIndex, place.nLineIndex, -1);
}
CPVT_WordPlace CPDF_VariableText::GetLineEndPlace(const CPVT_WordPlace & place) const
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex))
if (CLine * pLine = pSection->m_LineArray.GetAt(place.nLineIndex)) {
return pLine->GetEndWordPlace();
}
return place;
}
CPVT_WordPlace CPDF_VariableText::GetSectionBeginPlace(const CPVT_WordPlace & place) const
{
return CPVT_WordPlace(place.nSecIndex, 0, -1);
}
CPVT_WordPlace CPDF_VariableText::GetSectionEndPlace(const CPVT_WordPlace & place) const
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
return pSection->GetEndWordPlace();
}
return place;
}
FX_INT32 CPDF_VariableText::GetTotalWords() const
{
FX_INT32 nTotal = 0;
for (FX_INT32 i = 0, sz = m_SectionArray.GetSize(); i < sz; i++)
if (CSection * pSection = m_SectionArray.GetAt(i)) {
nTotal += (pSection->m_WordArray.GetSize() + PVT_RETURN_LENGTH);
}
return nTotal - PVT_RETURN_LENGTH;
}
void CPDF_VariableText::ResetSectionArray()
{
for (FX_INT32 s = 0, sz = m_SectionArray.GetSize(); s < sz; s++) {
delete m_SectionArray.GetAt(s);
}
m_SectionArray.RemoveAll();
}
CPVT_WordPlace CPDF_VariableText::AddSection(const CPVT_WordPlace & place, const CPVT_SectionInfo & secinfo)
{
if (IsValid() && !m_bMultiLine) {
return place;
}
FX_INT32 nSecIndex = FPDF_MAX(FPDF_MIN(place.nSecIndex, m_SectionArray.GetSize()), 0);
CSection * pSection = new CSection(this);
pSection->m_SecInfo = secinfo;
pSection->SecPlace.nSecIndex = nSecIndex;
if (nSecIndex == m_SectionArray.GetSize()) {
m_SectionArray.Add(pSection);
} else {
m_SectionArray.InsertAt(nSecIndex, pSection);
}
return place;
}
CPVT_WordPlace CPDF_VariableText::AddLine(const CPVT_WordPlace & place, const CPVT_LineInfo & lineinfo)
{
if (m_SectionArray.IsEmpty()) {
return place;
}
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
return pSection->AddLine(lineinfo);
}
return place;
}
CPVT_WordPlace CPDF_VariableText::AddWord(const CPVT_WordPlace & place, const CPVT_WordInfo & wordinfo)
{
if (m_SectionArray.GetSize() <= 0) {
return place;
}
CPVT_WordPlace newplace = place;
newplace.nSecIndex = FPDF_MAX(FPDF_MIN(newplace.nSecIndex, m_SectionArray.GetSize() - 1), 0);
if (CSection * pSection = m_SectionArray.GetAt(newplace.nSecIndex)) {
return pSection->AddWord(newplace, wordinfo);
}
return place;
}
FX_BOOL CPDF_VariableText::GetWordInfo(const CPVT_WordPlace & place, CPVT_WordInfo & wordinfo)
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
if (CPVT_WordInfo * pWord = pSection->m_WordArray.GetAt(place.nWordIndex)) {
wordinfo = *pWord;
return TRUE;
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText::SetWordInfo(const CPVT_WordPlace & place, const CPVT_WordInfo & wordinfo)
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
if (CPVT_WordInfo * pWord = pSection->m_WordArray.GetAt(place.nWordIndex)) {
*pWord = wordinfo;
return TRUE;
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText::GetLineInfo(const CPVT_WordPlace & place, CPVT_LineInfo & lineinfo)
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
if (CLine * pLine = pSection->m_LineArray.GetAt(place.nLineIndex)) {
lineinfo = pLine->m_LineInfo;
return TRUE;
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText::GetSectionInfo(const CPVT_WordPlace & place, CPVT_SectionInfo & secinfo)
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
secinfo = pSection->m_SecInfo;
return TRUE;
}
return FALSE;
}
CPDF_Rect CPDF_VariableText::GetContentRect() const
{
return InToOut(CPDF_EditContainer::GetContentRect());
}
FX_FLOAT CPDF_VariableText::GetWordFontSize(const CPVT_WordInfo & WordInfo, FX_BOOL bFactFontSize)
{
return m_bRichText && WordInfo.pWordProps ? (WordInfo.pWordProps->nScriptType == PVTWORD_SCRIPT_NORMAL || bFactFontSize ? WordInfo.pWordProps->fFontSize : WordInfo.pWordProps->fFontSize * PVT_HALF) : GetFontSize();
}
FX_INT32 CPDF_VariableText::GetWordFontIndex(const CPVT_WordInfo & WordInfo)
{
return m_bRichText && WordInfo.pWordProps ? WordInfo.pWordProps->nFontIndex : WordInfo.nFontIndex;
}
FX_FLOAT CPDF_VariableText::GetWordWidth(FX_INT32 nFontIndex, FX_WORD Word, FX_WORD SubWord,
FX_FLOAT fCharSpace, FX_INT32 nHorzScale,
FX_FLOAT fFontSize, FX_FLOAT fWordTail, FX_INT32 nWordStyle)
{
return (GetCharWidth(nFontIndex, Word, SubWord, nWordStyle) * fFontSize * PVT_FONTSCALE + fCharSpace) * nHorzScale * PVT_PERCENT + fWordTail;
}
FX_FLOAT CPDF_VariableText::GetWordWidth(const CPVT_WordInfo & WordInfo)
{
return GetWordWidth(GetWordFontIndex(WordInfo), WordInfo.Word, GetSubWord(), GetCharSpace(WordInfo), GetHorzScale(WordInfo),
GetWordFontSize(WordInfo), WordInfo.fWordTail,
WordInfo.pWordProps ? WordInfo.pWordProps->nWordStyle : 0);
}
FX_FLOAT CPDF_VariableText::GetLineAscent(const CPVT_SectionInfo & SecInfo)
{
return m_bRichText && SecInfo.pWordProps ? GetFontAscent(SecInfo.pWordProps->nFontIndex, SecInfo.pWordProps->fFontSize) :
GetFontAscent(GetDefaultFontIndex(), GetFontSize());
}
FX_FLOAT CPDF_VariableText::GetLineDescent(const CPVT_SectionInfo & SecInfo)
{
return m_bRichText && SecInfo.pWordProps ? GetFontDescent(SecInfo.pWordProps->nFontIndex, SecInfo.pWordProps->fFontSize) :
GetFontDescent(GetDefaultFontIndex(), GetFontSize());
}
FX_FLOAT CPDF_VariableText::GetFontAscent(FX_INT32 nFontIndex, FX_FLOAT fFontSize)
{
return (FX_FLOAT)GetTypeAscent(nFontIndex) * fFontSize * PVT_FONTSCALE;
}
FX_FLOAT CPDF_VariableText::GetFontDescent(FX_INT32 nFontIndex, FX_FLOAT fFontSize)
{
return (FX_FLOAT)GetTypeDescent(nFontIndex) * fFontSize * PVT_FONTSCALE;
}
FX_FLOAT CPDF_VariableText::GetWordAscent(const CPVT_WordInfo & WordInfo, FX_FLOAT fFontSize)
{
return GetFontAscent(GetWordFontIndex(WordInfo), fFontSize);
}
FX_FLOAT CPDF_VariableText::GetWordDescent(const CPVT_WordInfo & WordInfo, FX_FLOAT fFontSize)
{
return GetFontDescent(GetWordFontIndex(WordInfo), fFontSize);
}
FX_FLOAT CPDF_VariableText::GetWordAscent(const CPVT_WordInfo & WordInfo, FX_BOOL bFactFontSize)
{
return GetFontAscent(GetWordFontIndex(WordInfo), GetWordFontSize(WordInfo, bFactFontSize));
}
FX_FLOAT CPDF_VariableText::GetWordDescent(const CPVT_WordInfo & WordInfo, FX_BOOL bFactFontSize)
{
return GetFontDescent(GetWordFontIndex(WordInfo), GetWordFontSize(WordInfo, bFactFontSize));
}
FX_FLOAT CPDF_VariableText::GetLineLeading(const CPVT_SectionInfo & SecInfo)
{
return m_bRichText && SecInfo.pSecProps ? SecInfo.pSecProps->fLineLeading : m_fLineLeading;
}
FX_FLOAT CPDF_VariableText::GetLineIndent(const CPVT_SectionInfo & SecInfo)
{
return m_bRichText && SecInfo.pSecProps ? SecInfo.pSecProps->fLineIndent : 0.0f;
}
FX_INT32 CPDF_VariableText::GetAlignment(const CPVT_SectionInfo& SecInfo)
{
return m_bRichText && SecInfo.pSecProps ? SecInfo.pSecProps->nAlignment : this->m_nAlignment;
}
FX_FLOAT CPDF_VariableText::GetCharSpace(const CPVT_WordInfo & WordInfo)
{
return m_bRichText && WordInfo.pWordProps ? WordInfo.pWordProps->fCharSpace : m_fCharSpace;
}
FX_INT32 CPDF_VariableText::GetHorzScale(const CPVT_WordInfo & WordInfo)
{
return m_bRichText && WordInfo.pWordProps ? WordInfo.pWordProps->nHorzScale : m_nHorzScale;
}
void CPDF_VariableText::ClearSectionRightWords(const CPVT_WordPlace & place)
{
CPVT_WordPlace wordplace = AjustLineHeader(place, TRUE);
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
for (FX_INT32 w = pSection->m_WordArray.GetSize() - 1; w > wordplace.nWordIndex; w--) {
delete pSection->m_WordArray.GetAt(w);
pSection->m_WordArray.RemoveAt(w);
}
}
}
CPVT_WordPlace CPDF_VariableText::AjustLineHeader(const CPVT_WordPlace & place, FX_BOOL bPrevOrNext) const
{
if (place.nWordIndex < 0 && place.nLineIndex > 0) {
if (bPrevOrNext) {
return GetPrevWordPlace(place);
} else {
return GetNextWordPlace(place);
}
}
return place;
}
FX_BOOL CPDF_VariableText::ClearEmptySection(const CPVT_WordPlace & place)
{
if (place.nSecIndex == 0 && m_SectionArray.GetSize() == 1) {
return FALSE;
}
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
if (pSection->m_WordArray.GetSize() == 0) {
delete pSection;
m_SectionArray.RemoveAt(place.nSecIndex);
return TRUE;
}
}
return FALSE;
}
void CPDF_VariableText::ClearEmptySections(const CPVT_WordRange & PlaceRange)
{
CPVT_WordPlace wordplace;
for (FX_INT32 s = PlaceRange.EndPos.nSecIndex; s > PlaceRange.BeginPos.nSecIndex; s--) {
wordplace.nSecIndex = s;
ClearEmptySection(wordplace);
}
}
void CPDF_VariableText::LinkLatterSection(const CPVT_WordPlace & place)
{
CPVT_WordPlace oldplace = AjustLineHeader(place, TRUE);
if (CSection * pNextSection = m_SectionArray.GetAt(place.nSecIndex + 1)) {
if (CSection * pSection = m_SectionArray.GetAt(oldplace.nSecIndex)) {
for (FX_INT32 w = 0, sz = pNextSection->m_WordArray.GetSize(); w < sz; w++) {
if (CPVT_WordInfo * pWord = pNextSection->m_WordArray.GetAt(w)) {
oldplace.nWordIndex ++;
pSection->AddWord(oldplace, *pWord);
}
}
}
delete pNextSection;
m_SectionArray.RemoveAt(place.nSecIndex + 1);
}
}
void CPDF_VariableText::ClearWords(const CPVT_WordRange & PlaceRange)
{
CPVT_WordRange NewRange;
NewRange.BeginPos = AjustLineHeader(PlaceRange.BeginPos, TRUE);
NewRange.EndPos = AjustLineHeader(PlaceRange.EndPos, TRUE);
for (FX_INT32 s = NewRange.EndPos.nSecIndex; s >= NewRange.BeginPos.nSecIndex; s--) {
if (CSection * pSection = m_SectionArray.GetAt(s)) {
pSection->ClearWords(NewRange);
}
}
}
CPVT_WordPlace CPDF_VariableText::ClearLeftWord(const CPVT_WordPlace & place)
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
CPVT_WordPlace leftplace = this->GetPrevWordPlace(place);
if (leftplace != place) {
if (leftplace.nSecIndex != place.nSecIndex) {
if (pSection->m_WordArray.GetSize() == 0) {
this->ClearEmptySection(place);
} else {
this->LinkLatterSection(leftplace);
}
} else {
pSection->ClearWord(place);
}
}
return leftplace;
}
return place;
}
CPVT_WordPlace CPDF_VariableText::ClearRightWord(const CPVT_WordPlace & place)
{
if (CSection * pSection = m_SectionArray.GetAt(place.nSecIndex)) {
CPVT_WordPlace rightplace = AjustLineHeader(this->GetNextWordPlace(place), FALSE);
if (rightplace != place) {
if(rightplace.nSecIndex != place.nSecIndex) {
LinkLatterSection(place);
} else {
pSection->ClearWord(rightplace);
}
}
}
return place;
}
void CPDF_VariableText::RearrangeAll()
{
Rearrange(CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace()));
}
void CPDF_VariableText::RearrangePart(const CPVT_WordRange & PlaceRange)
{
Rearrange(PlaceRange);
}
CPVT_FloatRect CPDF_VariableText::Rearrange(const CPVT_WordRange & PlaceRange)
{
CPVT_FloatRect rcRet;
if (IsValid()) {
if (m_bAutoFontSize) {
SetFontSize(GetAutoFontSize());
rcRet = RearrangeSections(CPVT_WordRange(GetBeginWordPlace(), GetEndWordPlace()));
} else {
rcRet = RearrangeSections(PlaceRange);
}
}
SetContentRect(rcRet);
return rcRet;
}
FX_FLOAT CPDF_VariableText::GetAutoFontSize()
{
FX_INT32 nTotal = sizeof(gFontSizeSteps) / sizeof(FX_BYTE);
if (IsMultiLine()) {
nTotal /= 4;
}
if (nTotal <= 0) {
return 0;
}
if (GetPlateWidth() <= 0) {
return 0;
}
FX_INT32 nLeft = 0;
FX_INT32 nRight = nTotal - 1;
FX_INT32 nMid = nTotal / 2;
while (nLeft <= nRight) {
if (IsBigger(gFontSizeSteps[nMid])) {
nRight = nMid - 1;
nMid = (nLeft + nRight) / 2;
continue;
} else {
nLeft = nMid + 1;
nMid = (nLeft + nRight) / 2;
continue;
}
}
return (FX_FLOAT)gFontSizeSteps[nMid];
}
FX_BOOL CPDF_VariableText::IsBigger(FX_FLOAT fFontSize)
{
FX_BOOL bBigger = FALSE;
CPVT_Size szTotal;
for (FX_INT32 s = 0, sz = m_SectionArray.GetSize(); s < sz; s++) {
if (CSection * pSection = m_SectionArray.GetAt(s)) {
CPVT_Size size = pSection->GetSectionSize(fFontSize);
szTotal.x = FPDF_MAX(size.x, szTotal.x);
szTotal.y += size.y;
if (IsFloatBigger(szTotal.x, GetPlateWidth())
|| IsFloatBigger(szTotal.y, GetPlateHeight())
) {
bBigger = TRUE;
break;
}
}
}
return bBigger;
}
CPVT_FloatRect CPDF_VariableText::RearrangeSections(const CPVT_WordRange & PlaceRange)
{
CPVT_WordPlace place;
FX_FLOAT fPosY = 0;
FX_FLOAT fOldHeight;
FX_INT32 nSSecIndex = PlaceRange.BeginPos.nSecIndex;
FX_INT32 nESecIndex = PlaceRange.EndPos.nSecIndex;
CPVT_FloatRect rcRet;
for (FX_INT32 s = 0, sz = m_SectionArray.GetSize(); s < sz; s++) {
place.nSecIndex = s;
if (CSection * pSection = m_SectionArray.GetAt(s)) {
pSection->SecPlace = place;
CPVT_FloatRect rcSec = pSection->m_SecInfo.rcSection;
if (s >= nSSecIndex) {
if (s <= nESecIndex) {
rcSec = pSection->Rearrange();
rcSec.top += fPosY;
rcSec.bottom += fPosY;
} else {
fOldHeight = pSection->m_SecInfo.rcSection.bottom - pSection->m_SecInfo.rcSection.top;
rcSec.top = fPosY;
rcSec.bottom = fPosY + fOldHeight;
}
pSection->m_SecInfo.rcSection = rcSec;
pSection->ResetLinePlace();
}
if (s == 0) {
rcRet = rcSec;
} else {
rcRet.left = FPDF_MIN(rcSec.left, rcRet.left);
rcRet.top = FPDF_MIN(rcSec.top, rcRet.top);
rcRet.right = FPDF_MAX(rcSec.right, rcRet.right);
rcRet.bottom = FPDF_MAX(rcSec.bottom, rcRet.bottom);
}
fPosY += rcSec.Height();
}
}
return rcRet;
}
FX_INT32 CPDF_VariableText::GetCharWidth(FX_INT32 nFontIndex, FX_WORD Word, FX_WORD SubWord, FX_INT32 nWordStyle)
{
if (m_pVTProvider) {
if (SubWord > 0) {
return m_pVTProvider->GetCharWidth(nFontIndex, SubWord, nWordStyle);
} else {
return m_pVTProvider->GetCharWidth(nFontIndex, Word, nWordStyle);
}
}
return 0;
}
FX_INT32 CPDF_VariableText::GetTypeAscent(FX_INT32 nFontIndex)
{
return m_pVTProvider ? m_pVTProvider->GetTypeAscent(nFontIndex) : 0;
}
FX_INT32 CPDF_VariableText::GetTypeDescent(FX_INT32 nFontIndex)
{
return m_pVTProvider ? m_pVTProvider->GetTypeDescent(nFontIndex) : 0;
}
FX_INT32 CPDF_VariableText::GetWordFontIndex(FX_WORD word, FX_INT32 charset, FX_INT32 nFontIndex)
{
return m_pVTProvider ? m_pVTProvider->GetWordFontIndex(word, charset, nFontIndex) : -1;
}
FX_INT32 CPDF_VariableText::GetDefaultFontIndex()
{
return m_pVTProvider ? m_pVTProvider->GetDefaultFontIndex() : -1;
}
FX_BOOL CPDF_VariableText::IsLatinWord(FX_WORD word)
{
return m_pVTProvider ? m_pVTProvider->IsLatinWord(word) : FALSE;
}
IPDF_VariableText_Iterator * CPDF_VariableText::GetIterator()
{
if (!m_pVTIterator) {
m_pVTIterator = new CPDF_VariableText_Iterator(this);
}
return m_pVTIterator;
}
IPDF_VariableText_Provider* CPDF_VariableText::SetProvider(IPDF_VariableText_Provider * pProvider)
{
IPDF_VariableText_Provider* pOld = m_pVTProvider;
m_pVTProvider = pProvider;
return pOld;
}
CPDF_VariableText_Iterator::CPDF_VariableText_Iterator(CPDF_VariableText * pVT):
m_CurPos(-1, -1, -1),
m_pVT(pVT)
{
}
CPDF_VariableText_Iterator::~CPDF_VariableText_Iterator()
{
}
void CPDF_VariableText_Iterator::SetAt(FX_INT32 nWordIndex)
{
ASSERT(m_pVT != NULL);
m_CurPos = m_pVT->WordIndexToWordPlace(nWordIndex);
}
void CPDF_VariableText_Iterator::SetAt(const CPVT_WordPlace & place)
{
ASSERT(m_pVT != NULL);
m_CurPos = place;
}
FX_BOOL CPDF_VariableText_Iterator::NextWord()
{
ASSERT(m_pVT != NULL);
if (m_CurPos == m_pVT->GetEndWordPlace()) {
return FALSE;
}
m_CurPos = m_pVT->GetNextWordPlace(m_CurPos);
return TRUE;
}
FX_BOOL CPDF_VariableText_Iterator::PrevWord()
{
ASSERT(m_pVT != NULL);
if (m_CurPos == m_pVT->GetBeginWordPlace()) {
return FALSE;
}
m_CurPos = m_pVT->GetPrevWordPlace(m_CurPos);
return TRUE;
}
FX_BOOL CPDF_VariableText_Iterator::NextLine()
{
ASSERT(m_pVT != NULL);
if (CSection * pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
if (m_CurPos.nLineIndex < pSection->m_LineArray.GetSize() - 1) {
m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex + 1, -1);
return TRUE;
} else {
if (m_CurPos.nSecIndex < m_pVT->m_SectionArray.GetSize() - 1) {
m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1);
return TRUE;
}
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::PrevLine()
{
ASSERT(m_pVT != NULL);
if (m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
if (m_CurPos.nLineIndex > 0) {
m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex - 1, -1);
return TRUE;
} else {
if (m_CurPos.nSecIndex > 0) {
if (CSection * pLastSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex - 1)) {
m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex - 1, pLastSection->m_LineArray.GetSize() - 1, -1);
return TRUE;
}
}
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::NextSection()
{
ASSERT(m_pVT != NULL);
if (m_CurPos.nSecIndex < m_pVT->m_SectionArray.GetSize() - 1) {
m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex + 1, 0, -1);
return TRUE;
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::PrevSection()
{
ASSERT(m_pVT != NULL);
if (m_CurPos.nSecIndex > 0) {
m_CurPos = CPVT_WordPlace(m_CurPos.nSecIndex - 1, 0, -1);
return TRUE;
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::GetWord(CPVT_Word & word) const
{
ASSERT(m_pVT != NULL);
word.WordPlace = m_CurPos;
if (CSection * pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
if (pSection->m_LineArray.GetAt(m_CurPos.nLineIndex)) {
if (CPVT_WordInfo * pWord = pSection->m_WordArray.GetAt(m_CurPos.nWordIndex)) {
word.Word = pWord->Word;
word.nCharset = pWord->nCharset;
word.fWidth = m_pVT->GetWordWidth(*pWord);
word.ptWord = m_pVT->InToOut(
CPDF_Point(pWord->fWordX + pSection->m_SecInfo.rcSection.left,
pWord->fWordY + pSection->m_SecInfo.rcSection.top) );
word.fAscent = m_pVT->GetWordAscent(*pWord);
word.fDescent = m_pVT->GetWordDescent(*pWord);
if (pWord->pWordProps) {
word.WordProps = *pWord->pWordProps;
}
word.nFontIndex = m_pVT->GetWordFontIndex(*pWord);
word.fFontSize = m_pVT->GetWordFontSize(*pWord);
return TRUE;
}
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::SetWord(const CPVT_Word & word)
{
ASSERT(m_pVT != NULL);
if (CSection * pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
if (CPVT_WordInfo * pWord = pSection->m_WordArray.GetAt(m_CurPos.nWordIndex)) {
if (pWord->pWordProps) {
*pWord->pWordProps = word.WordProps;
}
return TRUE;
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::GetLine(CPVT_Line & line) const
{
ASSERT(m_pVT != NULL);
line.lineplace = CPVT_WordPlace(m_CurPos.nSecIndex, m_CurPos.nLineIndex, -1);
if (CSection * pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
if (CLine * pLine = pSection->m_LineArray.GetAt(m_CurPos.nLineIndex)) {
line.ptLine = m_pVT->InToOut(
CPDF_Point(pLine->m_LineInfo.fLineX + pSection->m_SecInfo.rcSection.left,
pLine->m_LineInfo.fLineY + pSection->m_SecInfo.rcSection.top) );
line.fLineWidth = pLine->m_LineInfo.fLineWidth;
line.fLineAscent = pLine->m_LineInfo.fLineAscent;
line.fLineDescent = pLine->m_LineInfo.fLineDescent;
line.lineEnd = pLine->GetEndWordPlace();
return TRUE;
}
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::GetSection(CPVT_Section & section) const
{
ASSERT(m_pVT != NULL);
section.secplace = CPVT_WordPlace(m_CurPos.nSecIndex, 0, -1);
if (CSection * pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
section.rcSection = m_pVT->InToOut(pSection->m_SecInfo.rcSection);
if (pSection->m_SecInfo.pSecProps) {
section.SecProps = *pSection->m_SecInfo.pSecProps;
}
if (pSection->m_SecInfo.pWordProps) {
section.WordProps = *pSection->m_SecInfo.pWordProps;
}
return TRUE;
}
return FALSE;
}
FX_BOOL CPDF_VariableText_Iterator::SetSection(const CPVT_Section & section)
{
ASSERT(m_pVT != NULL);
if (CSection * pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
if (pSection->m_SecInfo.pSecProps) {
*pSection->m_SecInfo.pSecProps = section.SecProps;
}
if (pSection->m_SecInfo.pWordProps) {
*pSection->m_SecInfo.pWordProps = section.WordProps;
}
return TRUE;
}
return FALSE;
}
| [
"Justin"
] | Justin |
ac2d4db50c84c52145f34005770b5dc0c5d0839c | 02463bc1300315730580a4041ee07aaa10f7c992 | /src/Statement.cpp | 02c50bcf4c76f2e13cb3985d350baa6e389c50e1 | [] | no_license | jrharshath/dinner | 1291b11a0e835a51db72016e50a53676bb37c680 | c715936f38578cb027e8ad45176e8355f01d02bd | refs/heads/master | 2020-05-18T15:44:02.829083 | 2009-08-09T14:11:52 | 2009-08-09T14:11:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 211 | cpp | #include "Statement.h"
Statement::Statement(StatementType t, QList<void*>* a) : type(t), args(a) {
}
StatementType Statement::getType() {
return type;
}
QList<void*>* Statement::getArgs() {
return args;
}
| [
"harshath.jr@gmail.com"
] | harshath.jr@gmail.com |
6a45ecfa39e444958a9b6922195fa24ae5c154a6 | 646e50f4c939bfaafce87f36a639c99c664e6c7a | /include/brlandmarker.h | 5ed3aecc4dda186f7c354cf2683fc223a84495c6 | [
"Apache-2.0"
] | permissive | mitre/biqt-face | 536ea320a397c3eb83c686a437262bdac4d6a519 | 0ea2e42ddce72d940999cc90299c383d34bbffe9 | refs/heads/master | 2023-08-23T02:49:39.807502 | 2023-08-22T12:46:18 | 2023-08-22T12:46:18 | 194,310,086 | 16 | 39 | Apache-2.0 | 2023-08-22T12:46:20 | 2019-06-28T17:23:26 | C++ | UTF-8 | C++ | false | false | 1,797 | h | // #######################################################################
// NOTICE
//
// This software (or technical data) was produced for the U.S. Government
// under contract, and is subject to the Rights in Data-General Clause
// 52.227-14, Alt. IV (DEC 2007).
//
// Copyright 2019 The MITRE Corporation. All Rights Reserved.
// #######################################################################
#ifndef BRLANDMARKER_H
#define BRLANDMARKER_H
// #ifdef BRLANDMARKER_EXPORT
// #ifdef _WIN32
// #define BRLANDMARKER_LIBRARY __declspec(dllexport)
// #else
// #define BRLANDMARKER_LIBRARY
// __attribute__((__visibility__("default")))
// #endif
// #else
// #ifdef _WIN32
// #define BRLANDMARKER_LIBRARY __declspec(dllimport)
// #else
// #define BRLANDMARKER_LIBRARY
// #endif
// #endif
// #ifdef USE_OPENBR
#ifdef _WIN32
#include "opencv2/core/core.hpp"
#include <QRectF>
#include <QString>
#endif
#include "openbr/openbr_plugin.h"
#include <iostream>
class BrLandmarker
// class BRLANDMARKER_LIBRARY BrLandmarker
{
public:
BrLandmarker();
~BrLandmarker();
struct BrFace {
bool containsLandmarks;
bool fte;
cv::Rect faceRect;
cv::Point leftEye;
cv::Point rightEye;
cv::Point faceCenter;
cv::Point rightCornerMouth;
cv::Point leftCornerMouth;
cv::Point nose;
double DFFS; //(facenes or distance from face space, smaller is better)
};
void initialize(const std::string path);
std::map<std::string, int> registerImage(const cv::Mat &img,
const QRectF &faceRect,
bool useASEF, bool forceDetection);
};
#endif // BRLANDMARKER_H
| [
"mbartenschlag@mitre.org"
] | mbartenschlag@mitre.org |
1fda62f909d65e794fbfcb0465af9738ca92ebe9 | d61d05748a59a1a73bbf3c39dd2c1a52d649d6e3 | /chromium/chrome/browser/chromeos/diagnosticsd/diagnosticsd_bridge.h | 642e83774c2866eabd7d154f53e14200ad465b2d | [
"BSD-3-Clause"
] | permissive | Csineneo/Vivaldi | 4eaad20fc0ff306ca60b400cd5fad930a9082087 | d92465f71fb8e4345e27bd889532339204b26f1e | refs/heads/master | 2022-11-23T17:11:50.714160 | 2019-05-25T11:45:11 | 2019-05-25T11:45:11 | 144,489,531 | 5 | 4 | BSD-3-Clause | 2022-11-04T05:55:33 | 2018-08-12T18:04:37 | null | UTF-8 | C++ | false | false | 5,372 | h | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_DIAGNOSTICSD_DIAGNOSTICSD_BRIDGE_H_
#define CHROME_BROWSER_CHROMEOS_DIAGNOSTICSD_DIAGNOSTICSD_BRIDGE_H_
#include <memory>
#include <string>
#include <vector>
#include "base/files/scoped_file.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "chrome/browser/chromeos/diagnosticsd/diagnosticsd_web_request_service.h"
#include "chrome/services/diagnosticsd/public/mojom/diagnosticsd.mojom.h"
#include "mojo/public/cpp/bindings/binding.h"
#include "mojo/public/cpp/system/buffer.h"
namespace network {
class SharedURLLoaderFactory;
} // namespace network
namespace chromeos {
// Establishes Mojo communication to the diagnosticsd daemon. The Mojo pipe gets
// bootstrapped via D-Bus, and the class takes care of waiting until the
// diagnosticsd D-Bus service gets started and of repeating the bootstrapping
// after the daemon gets restarted.
class DiagnosticsdBridge final
: public diagnosticsd::mojom::DiagnosticsdClient {
public:
// Delegate class, allowing to stub out unwanted operations in unit tests.
class Delegate {
public:
virtual ~Delegate();
// Creates a Mojo invitation that requests the remote implementation of the
// DiagnosticsdServiceFactory interface.
// Returns |diagnosticsd_service_factory_mojo_ptr| - interface pointer that
// points to the remote implementation of the interface,
// |remote_endpoint_fd| - file descriptor of the remote endpoint to be sent.
virtual void CreateDiagnosticsdServiceFactoryMojoInvitation(
diagnosticsd::mojom::DiagnosticsdServiceFactoryPtr*
diagnosticsd_service_factory_mojo_ptr,
base::ScopedFD* remote_endpoint_fd) = 0;
};
// Returns the global singleton instance.
static DiagnosticsdBridge* Get();
static base::TimeDelta connection_attempt_interval_for_testing();
static int max_connection_attempt_count_for_testing();
explicit DiagnosticsdBridge(
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory);
// For use in tests.
DiagnosticsdBridge(
std::unique_ptr<Delegate> delegate,
scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory);
~DiagnosticsdBridge() override;
// Mojo proxy to the DiagnosticsdService implementation in the diagnosticsd
// daemon. Returns null when bootstrapping of Mojo connection hasn't started
// yet. Note that, however, non-null is already returned before the
// bootstrapping fully completes.
diagnosticsd::mojom::DiagnosticsdServiceProxy*
diagnosticsd_service_mojo_proxy() {
return diagnosticsd_service_mojo_ptr_ ? diagnosticsd_service_mojo_ptr_.get()
: nullptr;
}
private:
// Starts waiting until the diagnosticsd D-Bus service becomes available (or
// until this waiting fails).
void WaitForDBusService();
// Schedules a postponed execution of WaitForDBusService().
void ScheduleWaitingForDBusService();
// Called once waiting for the D-Bus service, started by WaitForDBusService(),
// finishes.
void OnWaitedForDBusService(bool service_is_available);
// Triggers Mojo bootstrapping via a D-Bus to the diagnosticsd daemon.
void BootstrapMojoConnection();
// Called once the result of the D-Bus call, made from
// BootstrapMojoConnection(), arrives.
void OnBootstrappedMojoConnection(bool success);
// Called once the GetService() Mojo request completes.
void OnMojoGetServiceCompleted();
// Called when Mojo signals a connection error.
void OnMojoConnectionError();
// diagnosticsd::mojom::DiagnosticsdClient overrides.
void PerformWebRequest(
diagnosticsd::mojom::DiagnosticsdWebRequestHttpMethod http_method,
mojo::ScopedHandle url,
std::vector<mojo::ScopedHandle> headers,
mojo::ScopedHandle request_body,
PerformWebRequestCallback callback) override;
void SendDiagnosticsProcessorMessageToUi(
mojo::ScopedHandle json_message,
SendDiagnosticsProcessorMessageToUiCallback callback) override;
std::unique_ptr<Delegate> delegate_;
// Mojo binding that binds |this| as an implementation of the
// DiagnosticsdClient Mojo interface.
mojo::Binding<diagnosticsd::mojom::DiagnosticsdClient> mojo_self_binding_{
this};
// Current consecutive connection attempt number.
int connection_attempt_ = 0;
// Interface pointers to the Mojo services exposed by the diagnosticsd daemon.
diagnosticsd::mojom::DiagnosticsdServiceFactoryPtr
diagnosticsd_service_factory_mojo_ptr_;
diagnosticsd::mojom::DiagnosticsdServicePtr diagnosticsd_service_mojo_ptr_;
// The service to perform diagnostics_processor's web requests.
DiagnosticsdWebRequestService web_request_service_;
// These weak pointer factories must be the last members:
// Used for cancelling previously posted tasks that wait for the D-Bus service
// availability.
base::WeakPtrFactory<DiagnosticsdBridge> dbus_waiting_weak_ptr_factory_{this};
base::WeakPtrFactory<DiagnosticsdBridge> weak_ptr_factory_{this};
DISALLOW_COPY_AND_ASSIGN(DiagnosticsdBridge);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_DIAGNOSTICSD_DIAGNOSTICSD_BRIDGE_H_
| [
"csineneo@gmail.com"
] | csineneo@gmail.com |
4efc11851be85a77f49929432d4aa1adefc64180 | e206ea09a316757e8028d803616634a4a9a50f72 | /atcoder/abc044/b.cpp | 1de17625c5d209c40491bfcc51629eb5cc53df93 | [] | no_license | seiichiinoue/procon | 46cdf27ab42079002c4c11b8abe84662775b34a4 | f0b33062a5f31cf0361c7973f4a5e81e8d5a428f | refs/heads/master | 2021-06-26T19:02:24.797354 | 2020-11-01T14:12:54 | 2020-11-01T14:12:54 | 140,285,300 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,607 | cpp | #include <bits/stdc++.h>
#define rep(i, n) for (int i=0; i<n; ++i)
#define rep1(i, n) for (int i=1; i<=n; ++i)
#define ALL(v) v.begin(), v.end()
#define RALL(v) v.rbegin(), v.rend()
#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
using namespace std;
typedef long long ll;
constexpr ll MOD = (1e9+7);
constexpr int gcd(int a, int b) { return b ? gcd(b, a % b) : a; }
template<class T> inline bool chmin(T& a, T b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template<class T> inline bool chmax(T& a, T b) {
if (a < b) {
a = b;
return true;
}
return false;
}
ll factorial(ll n, ll m=2) {
// calculate nPm
m = max(2LL, m);
ll rtn = 1;
for (ll i=m; i<=n; i++) {
rtn = (rtn * i) % MOD;
}
return rtn;
}
ll modinv(ll a, ll m) {
ll b = m, u = 1, v = 0;
while (b) {
ll t = a / b;
a -= t * b;
swap(a, b);
u -= t * v;
swap(u, v);
}
u %= m;
if (u < 0) u += m;
return u;
}
ll modpow(ll a, ll n) {
ll res = 1;
while (n > 0) {
if (n & 1)
res = res * a % MOD;
a = a * a % MOD;
n >>= 1;
}
return res;
}
int main() {
cin.tie(0);
ios::sync_with_stdio(0);
string w; cin >> w;
sort(ALL(w));
char tmp=w[0]; int cnt = 0;
rep(i, w.size()) {
if (w[i] != tmp) {
tmp = w[i];
if (cnt%2 != 0) { puts("No"); return 0; }
cnt = 0;
}
cnt += 1;
}
if (cnt%2 != 0) { puts("No"); return 0; }
puts("Yes");
return 0;
} | [
"d35inou108@gmail.com"
] | d35inou108@gmail.com |
fcb246c8458f59ce31de09386969d75af8cab9b8 | 903bd18adce150f1470c1d04cfdf020088e8444e | /build a game/MyGame.cpp | 436a1bfd2fd28aa84b6e313dda0cc9bb7d8b8c2a | [] | no_license | SaNeOr/Windows-Game-study | 0e36cdcee16542a00aba47401c869ea2d1c00a80 | c1ba41ff432019efc24cb7dd40e392b73e3eeeec | refs/heads/master | 2020-03-12T03:40:34.873846 | 2018-07-02T14:30:16 | 2018-07-02T14:30:16 | 130,428,941 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,583 | cpp | #include "MyDirectX.h"
const string APPTITLE = "LG&SW";
const int SCREENW = 1024;
const int SCREENH = 768;
LPDIRECT3DSURFACE9 bomb_surf = NULL;
LPDIRECT3DSURFACE9 bucket_surf = NULL;
struct BOMB
{
float x, y;
void reset()
{
x = (float)(rand() % (SCREENW - 128));
y = 0;
}
};
BOMB bomb;
struct BUCKET
{
float x, y;
};
BUCKET bucket;
int score = 0;
bool Game_Init(HWND window)
{
Direct3D_Init(window, SCREENW, SCREENH, false);
DirectInput_Init(window);
bomb_surf = LoadSurface("bomb.bmp");
if (!bomb_surf) {
MessageBox(window, "Error loading bomb","Error",0);
return false;
}
bucket_surf = LoadSurface("bucket.bmp");
if (!bucket_surf) {
MessageBox(window, "Error loading bucket","Error",0);
return false;
}
//position the bomb
srand( (unsigned int)time(NULL) );
bomb.reset();
//position the bucket
bucket.x = 500;
bucket.y = 630;
return true;
}
void Game_Run(HWND window)
{
//make sure the D3Ddev is valid
if (!d3ddev)return;
//upadte input dpint
DirectInput_Update();
//move the bomb down the screen
bomb.y += 2.0f;
//see if bomb hit the floor
char buf[50];
sprintf(buf, "u got %d", score);
if (bomb.y > SCREENH)
{
MessageBox(0,buf, "GAME OVER", 0);
gameover = true;
}
//move the bucket with the keyboard
if (Key_Down(DIK_LEFT))
bucket.x -= 6.0f;
if (Key_Down(DIK_RIGHT))
bucket.x += 6.0f;
//keep bucket inside the screen
if (bucket.x < 0) bucket.x = 0;
if (bucket.x > SCREENW - 128) bucket.x = SCREENW - 128;
//see if bucket caught the bomb
int cx = (int)bomb.x + 64;
int cy = (int)bomb.y + 64;
if (cx > bucket.x && cx < bucket.x + 128 && cy > bucket.y && cy < bucket.y + 128)
{
//update and display score
score++;
std::ostringstream os;
os << APPTITLE << " [SCORE " << score << "]";
string scoreStr = os.str();
SetWindowText(window, scoreStr.c_str());
//restart bomb
bomb.reset();
}
//clear the backbuffer
d3ddev->ColorFill(backbuffer, NULL, D3DCOLOR_XRGB(0, 0, 0));
//start rendering
if (d3ddev->BeginScene())
{
//draw the bomb
DrawSurface(backbuffer, bomb.x, bomb.y, bomb_surf);
//draw the bucket
DrawSurface(backbuffer, bucket.x, bucket.y, bucket_surf);
//stop rendering
d3ddev->EndScene();
d3ddev->Present(NULL, NULL, NULL, NULL);
}
//space or escape key exits
if (Key_Down(DIK_SPACE) || Key_Down(DIK_ESCAPE))
gameover = true;
}
void Game_End()
{
if (bomb_surf) bomb_surf->Release();
if (bucket_surf) bucket_surf->Release();
DirectInput_Shutdown();
Direct3D_Shutdown();
}
| [
"noreply@github.com"
] | SaNeOr.noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.