3 var sjcl={cipher:{},hash:{},mode:{},misc:{},codec:{},exception:{corrupt:function(a){this.toString=function(){return"CORRUPT: "+this.message};this.message=a},invalid:function(a){this.toString=function(){return"INVALID: "+this.message};this.message=a},bug:function(a){this.toString=function(){return"BUG: "+this.message};this.message=a}}};
4 sjcl.cipher.aes=function(a){this.h[0][0][0]||this.w();var b,c,d,e,f=this.h[0][4],g=this.h[1];b=a.length;var h=1;if(b!==4&&b!==6&&b!==8)throw new sjcl.exception.invalid("invalid aes key size");this.a=[d=a.slice(0),e=[]];for(a=b;a<4*b+28;a++){c=d[a-1];if(a%b===0||b===8&&a%b===4){c=f[c>>>24]<<24^f[c>>16&255]<<16^f[c>>8&255]<<8^f[c&255];if(a%b===0){c=c<<8^c>>>24^h<<24;h=h<<1^(h>>7)*283}}d[a]=d[a-b]^c}for(b=0;a;b++,a--){c=d[b&3?a:a-4];e[b]=a<=4||b<4?c:g[0][f[c>>>24]]^g[1][f[c>>16&255]]^g[2][f[c>>8&255]]^
6 sjcl.cipher.aes.prototype={encrypt:function(a){return this.H(a,0)},decrypt:function(a){return this.H(a,1)},h:[[[],[],[],[],[]],[[],[],[],[],[]]],w:function(){var a=this.h[0],b=this.h[1],c=a[4],d=b[4],e,f,g,h=[],i=[],k,j,l,m;for(e=0;e<0x100;e++)i[(h[e]=e<<1^(e>>7)*283)^e]=e;for(f=g=0;!c[f];f^=k||1,g=i[g]||1){l=g^g<<1^g<<2^g<<3^g<<4;l=l>>8^l&255^99;c[f]=l;d[l]=f;j=h[e=h[k=h[f]]];m=j*0x1010101^e*0x10001^k*0x101^f*0x1010100;j=h[l]*0x101^l*0x1010100;for(e=0;e<4;e++){a[e][f]=j=j<<24^j>>>8;b[e][l]=m=m<<24^m>>>8}}for(e=
7 0;e<5;e++){a[e]=a[e].slice(0);b[e]=b[e].slice(0)}},H:function(a,b){if(a.length!==4)throw new sjcl.exception.invalid("invalid aes block size");var c=this.a[b],d=a[0]^c[0],e=a[b?3:1]^c[1],f=a[2]^c[2];a=a[b?1:3]^c[3];var g,h,i,k=c.length/4-2,j,l=4,m=[0,0,0,0];g=this.h[b];var n=g[0],o=g[1],p=g[2],q=g[3],r=g[4];for(j=0;j<k;j++){g=n[d>>>24]^o[e>>16&255]^p[f>>8&255]^q[a&255]^c[l];h=n[e>>>24]^o[f>>16&255]^p[a>>8&255]^q[d&255]^c[l+1];i=n[f>>>24]^o[a>>16&255]^p[d>>8&255]^q[e&255]^c[l+2];a=n[a>>>24]^o[d>>16&
8 255]^p[e>>8&255]^q[f&255]^c[l+3];l+=4;d=g;e=h;f=i}for(j=0;j<4;j++){m[b?3&-j:j]=r[d>>>24]<<24^r[e>>16&255]<<16^r[f>>8&255]<<8^r[a&255]^c[l++];g=d;d=e;e=f;f=a;a=g}return m}};
9 sjcl.bitArray={bitSlice:function(a,b,c){a=sjcl.bitArray.P(a.slice(b/32),32-(b&31)).slice(1);return c===undefined?a:sjcl.bitArray.clamp(a,c-b)},concat:function(a,b){if(a.length===0||b.length===0)return a.concat(b);var c=a[a.length-1],d=sjcl.bitArray.getPartial(c);return d===32?a.concat(b):sjcl.bitArray.P(b,d,c|0,a.slice(0,a.length-1))},bitLength:function(a){var b=a.length;if(b===0)return 0;return(b-1)*32+sjcl.bitArray.getPartial(a[b-1])},clamp:function(a,b){if(a.length*32<b)return a;a=a.slice(0,Math.ceil(b/
10 32));var c=a.length;b&=31;if(c>0&&b)a[c-1]=sjcl.bitArray.partial(b,a[c-1]&2147483648>>b-1,1);return a},partial:function(a,b,c){if(a===32)return b;return(c?b|0:b<<32-a)+a*0x10000000000},getPartial:function(a){return Math.round(a/0x10000000000)||32},equal:function(a,b){if(sjcl.bitArray.bitLength(a)!==sjcl.bitArray.bitLength(b))return false;var c=0,d;for(d=0;d<a.length;d++)c|=a[d]^b[d];return c===0},P:function(a,b,c,d){var e;e=0;if(d===undefined)d=[];for(;b>=32;b-=32){d.push(c);c=0}if(b===0)return d.concat(a);
11 for(e=0;e<a.length;e++){d.push(c|a[e]>>>b);c=a[e]<<32-b}e=a.length?a[a.length-1]:0;a=sjcl.bitArray.getPartial(e);d.push(sjcl.bitArray.partial(b+a&31,b+a>32?c:d.pop(),1));return d},k:function(a,b){return[a[0]^b[0],a[1]^b[1],a[2]^b[2],a[3]^b[3]]}};
12 sjcl.codec.utf8String={fromBits:function(a){var b="",c=sjcl.bitArray.bitLength(a),d,e;for(d=0;d<c/8;d++){if((d&3)===0)e=a[d/4];b+=String.fromCharCode(e>>>24);e<<=8}return decodeURIComponent(escape(b))},toBits:function(a){a=unescape(encodeURIComponent(a));var b=[],c,d=0;for(c=0;c<a.length;c++){d=d<<8|a.charCodeAt(c);if((c&3)===3){b.push(d);d=0}}c&3&&b.push(sjcl.bitArray.partial(8*(c&3),d));return b}};
13 sjcl.codec.hex={fromBits:function(a){var b="",c;for(c=0;c<a.length;c++)b+=((a[c]|0)+0xf00000000000).toString(16).substr(4);return b.substr(0,sjcl.bitArray.bitLength(a)/4)},toBits:function(a){var b,c=[],d;a=a.replace(/\s|0x/g,"");d=a.length;a+="00000000";for(b=0;b<a.length;b+=8)c.push(parseInt(a.substr(b,8),16)^0);return sjcl.bitArray.clamp(c,d*4)}};
14 sjcl.codec.base64={D:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",fromBits:function(a,b){var c="",d,e=0,f=sjcl.codec.base64.D,g=0,h=sjcl.bitArray.bitLength(a);for(d=0;c.length*6<h;){c+=f.charAt((g^a[d]>>>e)>>>26);if(e<6){g=a[d]<<6-e;e+=26;d++}else{g<<=6;e-=6}}for(;c.length&3&&!b;)c+="=";return c},toBits:function(a){a=a.replace(/\s|=/g,"");var b=[],c,d=0,e=sjcl.codec.base64.D,f=0,g;for(c=0;c<a.length;c++){g=e.indexOf(a.charAt(c));if(g<0)throw new sjcl.exception.invalid("this isn't base64!");
15 if(d>26){d-=26;b.push(f^g>>>d);f=g<<32-d}else{d+=6;f^=g<<32-d}}d&56&&b.push(sjcl.bitArray.partial(d&56,f,1));return b}};sjcl.hash.sha256=function(a){this.a[0]||this.w();if(a){this.n=a.n.slice(0);this.i=a.i.slice(0);this.e=a.e}else this.reset()};sjcl.hash.sha256.hash=function(a){return(new sjcl.hash.sha256).update(a).finalize()};
16 sjcl.hash.sha256.prototype={blockSize:512,reset:function(){this.n=this.N.slice(0);this.i=[];this.e=0;return this},update:function(a){if(typeof a==="string")a=sjcl.codec.utf8String.toBits(a);var b,c=this.i=sjcl.bitArray.concat(this.i,a);b=this.e;a=this.e=b+sjcl.bitArray.bitLength(a);for(b=512+b&-512;b<=a;b+=512)this.C(c.splice(0,16));return this},finalize:function(){var a,b=this.i,c=this.n;b=sjcl.bitArray.concat(b,[sjcl.bitArray.partial(1,1)]);for(a=b.length+2;a&15;a++)b.push(0);b.push(Math.floor(this.e/
17 4294967296));for(b.push(this.e|0);b.length;)this.C(b.splice(0,16));this.reset();return c},N:[],a:[],w:function(){function a(e){return(e-Math.floor(e))*0x100000000|0}var b=0,c=2,d;a:for(;b<64;c++){for(d=2;d*d<=c;d++)if(c%d===0)continue a;if(b<8)this.N[b]=a(Math.pow(c,0.5));this.a[b]=a(Math.pow(c,1/3));b++}},C:function(a){var b,c,d=a.slice(0),e=this.n,f=this.a,g=e[0],h=e[1],i=e[2],k=e[3],j=e[4],l=e[5],m=e[6],n=e[7];for(a=0;a<64;a++){if(a<16)b=d[a];else{b=d[a+1&15];c=d[a+14&15];b=d[a&15]=(b>>>7^b>>>18^
18 b>>>3^b<<25^b<<14)+(c>>>17^c>>>19^c>>>10^c<<15^c<<13)+d[a&15]+d[a+9&15]|0}b=b+n+(j>>>6^j>>>11^j>>>25^j<<26^j<<21^j<<7)+(m^j&(l^m))+f[a];n=m;m=l;l=j;j=k+b|0;k=i;i=h;h=g;g=b+(h&i^k&(h^i))+(h>>>2^h>>>13^h>>>22^h<<30^h<<19^h<<10)|0}e[0]=e[0]+g|0;e[1]=e[1]+h|0;e[2]=e[2]+i|0;e[3]=e[3]+k|0;e[4]=e[4]+j|0;e[5]=e[5]+l|0;e[6]=e[6]+m|0;e[7]=e[7]+n|0}};
19 sjcl.mode.ccm={name:"ccm",encrypt:function(a,b,c,d,e){var f,g=b.slice(0),h=sjcl.bitArray,i=h.bitLength(c)/8,k=h.bitLength(g)/8;e=e||64;d=d||[];if(i<7)throw new sjcl.exception.invalid("ccm: iv must be at least 7 bytes");for(f=2;f<4&&k>>>8*f;f++);if(f<15-i)f=15-i;c=h.clamp(c,8*(15-f));b=sjcl.mode.ccm.G(a,b,c,d,e,f);g=sjcl.mode.ccm.I(a,g,c,b,e,f);return h.concat(g.data,g.tag)},decrypt:function(a,b,c,d,e){e=e||64;d=d||[];var f=sjcl.bitArray,g=f.bitLength(c)/8,h=f.bitLength(b),i=f.clamp(b,h-e),k=f.bitSlice(b,
20 h-e);h=(h-e)/8;if(g<7)throw new sjcl.exception.invalid("ccm: iv must be at least 7 bytes");for(b=2;b<4&&h>>>8*b;b++);if(b<15-g)b=15-g;c=f.clamp(c,8*(15-b));i=sjcl.mode.ccm.I(a,i,c,k,e,b);a=sjcl.mode.ccm.G(a,i.data,c,d,e,b);if(!f.equal(i.tag,a))throw new sjcl.exception.corrupt("ccm: tag doesn't match");return i.data},G:function(a,b,c,d,e,f){var g=[],h=sjcl.bitArray,i=h.k;e/=8;if(e%2||e<4||e>16)throw new sjcl.exception.invalid("ccm: invalid tag length");if(d.length>0xffffffff||b.length>0xffffffff)throw new sjcl.exception.bug("ccm: can't deal with 4GiB or more data");
21 f=[h.partial(8,(d.length?64:0)|e-2<<2|f-1)];f=h.concat(f,c);f[3]|=h.bitLength(b)/8;f=a.encrypt(f);if(d.length){c=h.bitLength(d)/8;if(c<=65279)g=[h.partial(16,c)];else if(c<=0xffffffff)g=h.concat([h.partial(16,65534)],[c]);g=h.concat(g,d);for(d=0;d<g.length;d+=4)f=a.encrypt(i(f,g.slice(d,d+4)))}for(d=0;d<b.length;d+=4)f=a.encrypt(i(f,b.slice(d,d+4)));return h.clamp(f,e*8)},I:function(a,b,c,d,e,f){var g,h=sjcl.bitArray;g=h.k;var i=b.length,k=h.bitLength(b);c=h.concat([h.partial(8,f-1)],c).concat([0,
22 0,0]).slice(0,4);d=h.bitSlice(g(d,a.encrypt(c)),0,e);if(!i)return{tag:d,data:[]};for(g=0;g<i;g+=4){c[3]++;e=a.encrypt(c);b[g]^=e[0];b[g+1]^=e[1];b[g+2]^=e[2];b[g+3]^=e[3]}return{tag:d,data:h.clamp(b,k)}}};
23 sjcl.mode.ocb2={name:"ocb2",encrypt:function(a,b,c,d,e,f){if(sjcl.bitArray.bitLength(c)!==128)throw new sjcl.exception.invalid("ocb iv must be 128 bits");var g,h=sjcl.mode.ocb2.A,i=sjcl.bitArray,k=i.k,j=[0,0,0,0];c=h(a.encrypt(c));var l,m=[];d=d||[];e=e||64;for(g=0;g+4<b.length;g+=4){l=b.slice(g,g+4);j=k(j,l);m=m.concat(k(c,a.encrypt(k(c,l))));c=h(c)}l=b.slice(g);b=i.bitLength(l);g=a.encrypt(k(c,[0,0,0,b]));l=i.clamp(k(l,g),b);j=k(j,k(l,g));j=a.encrypt(k(j,k(c,h(c))));if(d.length)j=k(j,f?d:sjcl.mode.ocb2.pmac(a,
24 d));return m.concat(i.concat(l,i.clamp(j,e)))},decrypt:function(a,b,c,d,e,f){if(sjcl.bitArray.bitLength(c)!==128)throw new sjcl.exception.invalid("ocb iv must be 128 bits");e=e||64;var g=sjcl.mode.ocb2.A,h=sjcl.bitArray,i=h.k,k=[0,0,0,0],j=g(a.encrypt(c)),l,m,n=sjcl.bitArray.bitLength(b)-e,o=[];d=d||[];for(c=0;c+4<n/32;c+=4){l=i(j,a.decrypt(i(j,b.slice(c,c+4))));k=i(k,l);o=o.concat(l);j=g(j)}m=n-c*32;l=a.encrypt(i(j,[0,0,0,m]));l=i(l,h.clamp(b.slice(c),m));k=i(k,l);k=a.encrypt(i(k,i(j,g(j))));if(d.length)k=
25 i(k,f?d:sjcl.mode.ocb2.pmac(a,d));if(!h.equal(h.clamp(k,e),h.bitSlice(b,n)))throw new sjcl.exception.corrupt("ocb: tag doesn't match");return o.concat(h.clamp(l,m))},pmac:function(a,b){var c,d=sjcl.mode.ocb2.A,e=sjcl.bitArray,f=e.k,g=[0,0,0,0],h=a.encrypt([0,0,0,0]);h=f(h,d(d(h)));for(c=0;c+4<b.length;c+=4){h=d(h);g=f(g,a.encrypt(f(h,b.slice(c,c+4))))}b=b.slice(c);if(e.bitLength(b)<128){h=f(h,d(h));b=e.concat(b,[2147483648|0])}g=f(g,b);return a.encrypt(f(d(f(h,d(h))),g))},A:function(a){return[a[0]<<
26 1^a[1]>>>31,a[1]<<1^a[2]>>>31,a[2]<<1^a[3]>>>31,a[3]<<1^(a[0]>>>31)*135]}};sjcl.misc.hmac=function(a,b){this.M=b=b||sjcl.hash.sha256;var c=[[],[]],d=b.prototype.blockSize/32;this.l=[new b,new b];if(a.length>d)a=b.hash(a);for(b=0;b<d;b++){c[0][b]=a[b]^909522486;c[1][b]=a[b]^1549556828}this.l[0].update(c[0]);this.l[1].update(c[1])};sjcl.misc.hmac.prototype.encrypt=sjcl.misc.hmac.prototype.mac=function(a,b){a=(new this.M(this.l[0])).update(a,b).finalize();return(new this.M(this.l[1])).update(a).finalize()};
27 sjcl.misc.pbkdf2=function(a,b,c,d,e){c=c||1E3;if(d<0||c<0)throw sjcl.exception.invalid("invalid params to pbkdf2");if(typeof a==="string")a=sjcl.codec.utf8String.toBits(a);e=e||sjcl.misc.hmac;a=new e(a);var f,g,h,i,k=[],j=sjcl.bitArray;for(i=1;32*k.length<(d||1);i++){e=f=a.encrypt(j.concat(b,[i]));for(g=1;g<c;g++){f=a.encrypt(f);for(h=0;h<f.length;h++)e[h]^=f[h]}k=k.concat(e)}if(d)k=j.clamp(k,d);return k};
28 sjcl.random={randomWords:function(a,b){var c=[];b=this.isReady(b);var d;if(b===0)throw new sjcl.exception.notready("generator isn't seeded");else b&2&&this.U(!(b&1));for(b=0;b<a;b+=4){(b+1)%0x10000===0&&this.L();d=this.u();c.push(d[0],d[1],d[2],d[3])}this.L();return c.slice(0,a)},setDefaultParanoia:function(a){this.t=a},addEntropy:function(a,b,c){c=c||"user";var d,e,f=(new Date).valueOf(),g=this.q[c],h=this.isReady();d=this.F[c];if(d===undefined)d=this.F[c]=this.R++;if(g===undefined)g=this.q[c]=0;this.q[c]=
29 (this.q[c]+1)%this.b.length;switch(typeof a){case "number":break;case "object":if(b===undefined)for(c=b=0;c<a.length;c++)for(e=a[c];e>0;){b++;e>>>=1}this.b[g].update([d,this.J++,2,b,f,a.length].concat(a));break;case "string":if(b===undefined)b=a.length;this.b[g].update([d,this.J++,3,b,f,a.length]);this.b[g].update(a);break;default:throw new sjcl.exception.bug("random: addEntropy only supports number, array or string");}this.j[g]+=b;this.f+=b;if(h===0){this.isReady()!==0&&this.K("seeded",Math.max(this.g,
30 this.f));this.K("progress",this.getProgress())}},isReady:function(a){a=this.B[a!==undefined?a:this.t];return this.g&&this.g>=a?this.j[0]>80&&(new Date).valueOf()>this.O?3:1:this.f>=a?2:0},getProgress:function(a){a=this.B[a?a:this.t];return this.g>=a?1["0"]:this.f>a?1["0"]:this.f/a},startCollectors:function(){if(!this.m){if(window.addEventListener){window.addEventListener("load",this.o,false);window.addEventListener("mousemove",this.p,false)}else if(document.attachEvent){document.attachEvent("onload",
31 this.o);document.attachEvent("onmousemove",this.p)}else throw new sjcl.exception.bug("can't attach event");this.m=true}},stopCollectors:function(){if(this.m){if(window.removeEventListener){window.removeEventListener("load",this.o);window.removeEventListener("mousemove",this.p)}else if(window.detachEvent){window.detachEvent("onload",this.o);window.detachEvent("onmousemove",this.p)}this.m=false}},addEventListener:function(a,b){this.r[a][this.Q++]=b},removeEventListener:function(a,b){var c;a=this.r[a];
32 var d=[];for(c in a)a.hasOwnProperty[c]&&a[c]===b&&d.push(c);for(b=0;b<d.length;b++){c=d[b];delete a[c]}},b:[new sjcl.hash.sha256],j:[0],z:0,q:{},J:0,F:{},R:0,g:0,f:0,O:0,a:[0,0,0,0,0,0,0,0],d:[0,0,0,0],s:undefined,t:6,m:false,r:{progress:{},seeded:{}},Q:0,B:[0,48,64,96,128,192,0x100,384,512,768,1024],u:function(){for(var a=0;a<4;a++){this.d[a]=this.d[a]+1|0;if(this.d[a])break}return this.s.encrypt(this.d)},L:function(){this.a=this.u().concat(this.u());this.s=new sjcl.cipher.aes(this.a)},T:function(a){this.a=
33 sjcl.hash.sha256.hash(this.a.concat(a));this.s=new sjcl.cipher.aes(this.a);for(a=0;a<4;a++){this.d[a]=this.d[a]+1|0;if(this.d[a])break}},U:function(a){var b=[],c=0,d;this.O=b[0]=(new Date).valueOf()+3E4;for(d=0;d<16;d++)b.push(Math.random()*0x100000000|0);for(d=0;d<this.b.length;d++){b=b.concat(this.b[d].finalize());c+=this.j[d];this.j[d]=0;if(!a&&this.z&1<<d)break}if(this.z>=1<<this.b.length){this.b.push(new sjcl.hash.sha256);this.j.push(0)}this.f-=c;if(c>this.g)this.g=c;this.z++;this.T(b)},p:function(a){sjcl.random.addEntropy([a.x||
34 a.clientX||a.offsetX,a.y||a.clientY||a.offsetY],2,"mouse")},o:function(){sjcl.random.addEntropy(new Date,2,"loadtime")},K:function(a,b){var c;a=sjcl.random.r[a];var d=[];for(c in a)a.hasOwnProperty(c)&&d.push(a[c]);for(c=0;c<d.length;c++)d[c](b)}};
35 sjcl.json={defaults:{v:1,iter:1E3,ks:128,ts:64,mode:"ccm",adata:"",cipher:"aes"},encrypt:function(a,b,c,d){c=c||{};d=d||{};var e=sjcl.json,f=e.c({iv:sjcl.random.randomWords(4,0)},e.defaults);e.c(f,c);if(typeof f.salt==="string")f.salt=sjcl.codec.base64.toBits(f.salt);if(typeof f.iv==="string")f.iv=sjcl.codec.base64.toBits(f.iv);if(!sjcl.mode[f.mode]||!sjcl.cipher[f.cipher]||typeof a==="string"&&f.iter<=100||f.ts!==64&&f.ts!==96&&f.ts!==128||f.ks!==128&&f.ks!==192&&f.ks!==0x100||f.iv.length<2||f.iv.length>
36 4)throw new sjcl.exception.invalid("json encrypt: invalid parameters");if(typeof a==="string"){c=sjcl.misc.cachedPbkdf2(a,f);a=c.key.slice(0,f.ks/32);f.salt=c.salt}if(typeof b==="string")b=sjcl.codec.utf8String.toBits(b);c=new sjcl.cipher[f.cipher](a);e.c(d,f);d.key=a;f.ct=sjcl.mode[f.mode].encrypt(c,b,f.iv,f.adata,f.tag);return e.encode(e.V(f,e.defaults))},decrypt:function(a,b,c,d){c=c||{};d=d||{};var e=sjcl.json;b=e.c(e.c(e.c({},e.defaults),e.decode(b)),c,true);if(typeof b.salt==="string")b.salt=
37 sjcl.codec.base64.toBits(b.salt);if(typeof b.iv==="string")b.iv=sjcl.codec.base64.toBits(b.iv);if(!sjcl.mode[b.mode]||!sjcl.cipher[b.cipher]||typeof a==="string"&&b.iter<=100||b.ts!==64&&b.ts!==96&&b.ts!==128||b.ks!==128&&b.ks!==192&&b.ks!==0x100||!b.iv||b.iv.length<2||b.iv.length>4)throw new sjcl.exception.invalid("json decrypt: invalid parameters");if(typeof a==="string"){c=sjcl.misc.cachedPbkdf2(a,b);a=c.key.slice(0,b.ks/32);b.salt=c.salt}c=new sjcl.cipher[b.cipher](a);c=sjcl.mode[b.mode].decrypt(c,
38 b.ct,b.iv,b.adata,b.tag);e.c(d,b);d.key=a;return sjcl.codec.utf8String.fromBits(c)},encode:function(a){var b,c="{",d="";for(b in a)if(a.hasOwnProperty(b)){if(!b.match(/^[a-z0-9]+$/i))throw new sjcl.exception.invalid("json encode: invalid property name");c+=d+b+":";d=",";switch(typeof a[b]){case "number":case "boolean":c+=a[b];break;case "string":c+='"'+escape(a[b])+'"';break;case "object":c+='"'+sjcl.codec.base64.fromBits(a[b],1)+'"';break;default:throw new sjcl.exception.bug("json encode: unsupported type");
39 }}return c+"}"},decode:function(a){a=a.replace(/\s/g,"");if(!a.match(/^\{.*\}$/))throw new sjcl.exception.invalid("json decode: this isn't json!");a=a.replace(/^\{|\}$/g,"").split(/,/);var b={},c,d;for(c=0;c<a.length;c++){if(!(d=a[c].match(/^([a-z][a-z0-9]*):(?:(\d+)|"([a-z0-9+\/%*_.@=\-]*)")$/i)))throw new sjcl.exception.invalid("json decode: this isn't json!");b[d[1]]=d[2]?parseInt(d[2],10):d[1].match(/^(ct|salt|iv)$/)?sjcl.codec.base64.toBits(d[3]):unescape(d[3])}return b},c:function(a,b,c){if(a===
40 undefined)a={};if(b===undefined)return a;var d;for(d in b)if(b.hasOwnProperty(d)){if(c&&a[d]!==undefined&&a[d]!==b[d])throw new sjcl.exception.invalid("required parameter overridden");a[d]=b[d]}return a},V:function(a,b){var c={},d;for(d in a)if(a.hasOwnProperty(d)&&a[d]!==b[d])c[d]=a[d];return c},W:function(a,b){var c={},d;for(d=0;d<b.length;d++)if(a[b[d]]!==undefined)c[b[d]]=a[b[d]];return c}};sjcl.encrypt=sjcl.json.encrypt;sjcl.decrypt=sjcl.json.decrypt;sjcl.misc.S={};
41 sjcl.misc.cachedPbkdf2=function(a,b){var c=sjcl.misc.S,d;b=b||{};d=b.iter||1E3;c=c[a]=c[a]||{};d=c[d]=c[d]||{firstSalt:b.salt&&b.salt.length?b.salt.slice(0):sjcl.random.randomWords(2,0)};c=b.salt===undefined?d.firstSalt:b.salt;d[c]=d[c]||sjcl.misc.pbkdf2(a,c,b.iter);return{key:d[c].slice(0),salt:c.slice(0)}};
47 pauseAndThen: function (cb) { cb(); },
49 cpsIterate: function (f, start, end, pause, callback) {
53 callback && callback();
55 f(start, function () {
56 if (!called) { called = true; start++; go(); }
63 cpsMap: function (map, list, pause, callback) {
64 browserUtil.cpsIterate(function (i, cb) { map(list[i], i, list.length, cb); },
65 0, list.length, pause, callback);
68 loadScripts: function(scriptNames, callback) {
69 for (i=0; i<scriptNames.length; i++) {
71 callback && callback();
75 write: function(type, message) {
77 return { update: function (type2, message2) {
78 if (type2 === 'pass') { print(" + " + message2); }
79 else if (type2 === 'unimplemented') { print(" ? " + message2); }
80 else { print(" - " + message2); }
84 writeNewline: function () { print(""); },
86 status: function(message) {}
89 sjcl.test = { vector: {}, all: {} };
91 /* A bit of a hack. Because sjcl.test will be reloaded several times
92 * for different variants of sjcl, but browserUtils will not, this
93 * variable keeps a permanent record of whether anything has failed.
95 if (typeof browserUtil.allPassed === 'undefined') {
96 browserUtil.allPassed = true;
99 sjcl.test.TestCase = function(name, doRun) {
104 this.isUnimplemented = false;
105 sjcl.test.all[name] = this;
108 sjcl.test.TestCase.prototype = {
109 /** Pass some subtest of this test */
110 pass: function () { this.passes ++; },
112 /** Fail some subtest of this test */
113 fail: function (message) {
114 if (message !== undefined) {
115 this.log("fail", "*** FAIL *** " + this.name + ": " + message);
117 this.log("fail", "*** FAIL *** " + this.name);
120 browserUtil.allPassed = false;
123 unimplemented: function() {
124 this.isUnimplemented = true;
127 /** Log a message to the console */
128 log: browserUtil.write,
130 /** Require that the first argument is true; otherwise fail with the given message */
131 require: function (bool, message) {
134 } else if (message !== undefined) {
137 this.fail("requirement failed");
141 /** Pause and then take the specified action. */
142 pauseAndThen: browserUtil.pauseAndThen,
144 /** Continuation-passing-style iteration */
145 cpsIterate: browserUtil.cpsIterate,
147 /** Continuation-passing-style iteration */
148 cpsMap: browserUtil.cpsMap,
150 /** Report the results of this test. */
151 report: function (repo) {
152 var t = (new Date()).valueOf() - this.startTime;
153 if (this.failures !== 0) {
154 repo.update("fail", "failed " + this.failures + " / " +
155 (this.passes + this.failures) + " tests. (" + t + " ms)");
156 } else if (this.passes === 1) {
157 repo.update("pass", "passed. (" + t + " ms)");
158 } else if (this.isUnimplemented) {
159 repo.update("unimplemented", "unimplemented");
161 repo.update("pass", "passed all " + this.passes + " tests. (" + t + " ms)");
163 browserUtil.writeNewline();
168 run: function (ntests, i, cb) {
170 this.startTime = (new Date()).valueOf();
171 this.pauseAndThen(function () {
172 thiz.doRun(function () {
179 // pass a list of tests to run, or pass nothing and it will run them all
180 sjcl.test.run = function (tests, callback) {
183 if (tests === undefined || tests.length == 0) {
185 for (t in sjcl.test.all) {
186 if (sjcl.test.all.hasOwnProperty(t)) {
192 browserUtil.cpsMap(function (t, i, n, cb) {
193 sjcl.test.all[tests[i]].run(n, i+1, cb);
194 }, tests, true, callback);
197 /* Several test scripts rely on sjcl.codec.hex to parse their test
198 * vectors, but we are not guaranteed that sjcl.codec.hex is
201 sjcl.codec = sjcl.codec || {};
202 sjcl.codec.hex = sjcl.codec.hex ||
204 fromBits: function (arr) {
206 for (i=0; i<arr.length; i++) {
207 out += ((arr[i]|0)+0xF00000000000).toString(16).substr(4);
209 return out.substr(0, sjcl.bitArray.bitLength(arr)/4);//.replace(/(.{8})/g, "$1 ");
211 toBits: function (str) {
213 str = str.replace(/\s|0x/g, "");
215 str = str + "00000000";
216 for (i=0; i<str.length; i+=8) {
217 out.push(parseInt(str.substr(i,8),16)^0);
219 return sjcl.bitArray.clamp(out, len*4);
223 sjcl.test.vector.aes = [
224 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
225 pt: [0xf34481ec,0x3cc627ba,0xcd5dc3fb,0x08f273e6],
226 ct: [0x0336763e,0x966d9259,0x5a567cc9,0xce537f5e] },
227 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
228 pt: [0x9798c464,0x0bad75c7,0xc3227db9,0x10174e72],
229 ct: [0xa9a1631b,0xf4996954,0xebc09395,0x7b234589] },
230 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
231 pt: [0x96ab5c2f,0xf612d9df,0xaae8c31f,0x30c42168],
232 ct: [0xff4f8391,0xa6a40ca5,0xb25d23be,0xdd44a597] },
233 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
234 pt: [0x6a118a87,0x4519e64e,0x9963798a,0x503f1d35],
235 ct: [0xdc43be40,0xbe0e5371,0x2f7e2bf5,0xca707209] },
236 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
237 pt: [0xcb9fceec,0x81286ca3,0xe989bd97,0x9b0cb284],
238 ct: [0x92beedab,0x1895a94f,0xaa69b632,0xe5cc47ce] },
239 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
240 pt: [0xb26aeb18,0x74e47ca8,0x358ff223,0x78f09144],
241 ct: [0x459264f4,0x798f6a78,0xbacb89c1,0x5ed3d601] },
242 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
243 pt: [0x58c8e00b,0x2631686d,0x54eab84b,0x91f0aca1],
244 ct: [0x08a4e2ef,0xec8a8e33,0x12ca7460,0xb9040bbf] },
245 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
246 pt: [0xf34481ec,0x3cc627ba,0xcd5dc3fb,0x08f273e6],
247 ct: [0x0336763e,0x966d9259,0x5a567cc9,0xce537f5e] },
248 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
249 pt: [0x9798c464,0x0bad75c7,0xc3227db9,0x10174e72],
250 ct: [0xa9a1631b,0xf4996954,0xebc09395,0x7b234589] },
251 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
252 pt: [0x96ab5c2f,0xf612d9df,0xaae8c31f,0x30c42168],
253 ct: [0xff4f8391,0xa6a40ca5,0xb25d23be,0xdd44a597] },
254 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
255 pt: [0x6a118a87,0x4519e64e,0x9963798a,0x503f1d35],
256 ct: [0xdc43be40,0xbe0e5371,0x2f7e2bf5,0xca707209] },
257 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
258 pt: [0xcb9fceec,0x81286ca3,0xe989bd97,0x9b0cb284],
259 ct: [0x92beedab,0x1895a94f,0xaa69b632,0xe5cc47ce] },
260 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
261 pt: [0xb26aeb18,0x74e47ca8,0x358ff223,0x78f09144],
262 ct: [0x459264f4,0x798f6a78,0xbacb89c1,0x5ed3d601] },
263 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
264 pt: [0x58c8e00b,0x2631686d,0x54eab84b,0x91f0aca1],
265 ct: [0x08a4e2ef,0xec8a8e33,0x12ca7460,0xb9040bbf] },
266 { key: [0x10a58869,0xd74be5a3,0x74cf867c,0xfb473859],
267 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
268 ct: [0x6d251e69,0x44b051e0,0x4eaa6fb4,0xdbf78465] },
269 { key: [0xcaea65cd,0xbb75e916,0x9ecd22eb,0xe6e54675],
270 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
271 ct: [0x6e292011,0x90152df4,0xee058139,0xdef610bb] },
272 { key: [0xa2e2fa9b,0xaf7d2082,0x2ca9f054,0x2f764a41],
273 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
274 ct: [0xc3b44b95,0xd9d2f256,0x70eee9a0,0xde099fa3] },
275 { key: [0xb6364ac4,0xe1de1e28,0x5eaf144a,0x2415f7a0],
276 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
277 ct: [0x5d9b0557,0x8fc944b3,0xcf1ccf0e,0x746cd581] },
278 { key: [0x64cf9c7a,0xbc50b888,0xaf65f49d,0x521944b2],
279 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
280 ct: [0xf7efc89d,0x5dba5781,0x04016ce5,0xad659c05] },
281 { key: [0x47d6742e,0xefcc0465,0xdc96355e,0x851b64d9],
282 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
283 ct: [0x0306194f,0x666d1836,0x24aa230a,0x8b264ae7] },
284 { key: [0x3eb39790,0x678c56be,0xe34bbcde,0xccf6cdb5],
285 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
286 ct: [0x858075d5,0x36d79cce,0xe571f7d7,0x204b1f67] },
287 { key: [0x64110a92,0x4f0743d5,0x00ccadae,0x72c13427],
288 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
289 ct: [0x35870c6a,0x57e9e923,0x14bcb808,0x7cde72ce] },
290 { key: [0x18d81265,0x16f8a12a,0xb1a36d9f,0x04d68e51],
291 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
292 ct: [0x6c68e9be,0x5ec41e22,0xc825b7c7,0xaffb4363] },
293 { key: [0xf5303579,0x68578480,0xb398a3c2,0x51cd1093],
294 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
295 ct: [0xf5df3999,0x0fc688f1,0xb07224cc,0x03e86cea] },
296 { key: [0xda84367f,0x325d42d6,0x01b43269,0x64802e8e],
297 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
298 ct: [0xbba071bc,0xb470f8f6,0x586e5d3a,0xdd18bc66] },
299 { key: [0xe37b1c6a,0xa2846f6f,0xdb413f23,0x8b089f23],
300 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
301 ct: [0x43c9f7e6,0x2f5d288b,0xb27aa40e,0xf8fe1ea8] },
302 { key: [0x6c002b68,0x2483e0ca,0xbcc731c2,0x53be5674],
303 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
304 ct: [0x3580d19c,0xff44f101,0x4a7c966a,0x69059de5] },
305 { key: [0x143ae8ed,0x6555aba9,0x6110ab58,0x893a8ae1],
306 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
307 ct: [0x806da864,0xdd29d48d,0xeafbe764,0xf8202aef] },
308 { key: [0xb69418a8,0x5332240d,0xc8249235,0x3956ae0c],
309 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
310 ct: [0xa303d940,0xded8f0ba,0xff6f7541,0x4cac5243] },
311 { key: [0x71b5c08a,0x1993e136,0x2e4d0ce9,0xb22b78d5],
312 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
313 ct: [0xc2dabd11,0x7f8a3eca,0xbfbb11d1,0x2194d9d0] },
314 { key: [0xe234cdca,0x2606b81f,0x29408d5f,0x6da21206],
315 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
316 ct: [0xfff60a47,0x40086b3b,0x9c56195b,0x98d91a7b] },
317 { key: [0x13237c49,0x074a3da0,0x78dc1d82,0x8bb78c6f],
318 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
319 ct: [0x8146a08e,0x2357f0ca,0xa30ca8c9,0x4d1a0544] },
320 { key: [0x3071a2a4,0x8fe6cbd0,0x4f1a1290,0x98e308f8],
321 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
322 ct: [0x4b98e06d,0x356deb07,0xebb824e5,0x713f7be3] },
323 { key: [0x90f42ec0,0xf68385f2,0xffc5dfc0,0x3a654dce],
324 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
325 ct: [0x7a20a53d,0x460fc9ce,0x0423a7a0,0x764c6cf2] },
326 { key: [0xfebd9a24,0xd8b65c1c,0x787d50a4,0xed3619a9],
327 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
328 ct: [0xf4a70d8a,0xf877f9b0,0x2b4c40df,0x57d45b17] },
329 { key: [0x10a58869,0xd74be5a3,0x74cf867c,0xfb473859],
330 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
331 ct: [0x6d251e69,0x44b051e0,0x4eaa6fb4,0xdbf78465] },
332 { key: [0xcaea65cd,0xbb75e916,0x9ecd22eb,0xe6e54675],
333 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
334 ct: [0x6e292011,0x90152df4,0xee058139,0xdef610bb] },
335 { key: [0xa2e2fa9b,0xaf7d2082,0x2ca9f054,0x2f764a41],
336 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
337 ct: [0xc3b44b95,0xd9d2f256,0x70eee9a0,0xde099fa3] },
338 { key: [0xb6364ac4,0xe1de1e28,0x5eaf144a,0x2415f7a0],
339 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
340 ct: [0x5d9b0557,0x8fc944b3,0xcf1ccf0e,0x746cd581] },
341 { key: [0x64cf9c7a,0xbc50b888,0xaf65f49d,0x521944b2],
342 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
343 ct: [0xf7efc89d,0x5dba5781,0x04016ce5,0xad659c05] },
344 { key: [0x47d6742e,0xefcc0465,0xdc96355e,0x851b64d9],
345 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
346 ct: [0x0306194f,0x666d1836,0x24aa230a,0x8b264ae7] },
347 { key: [0x3eb39790,0x678c56be,0xe34bbcde,0xccf6cdb5],
348 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
349 ct: [0x858075d5,0x36d79cce,0xe571f7d7,0x204b1f67] },
350 { key: [0x64110a92,0x4f0743d5,0x00ccadae,0x72c13427],
351 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
352 ct: [0x35870c6a,0x57e9e923,0x14bcb808,0x7cde72ce] },
353 { key: [0x18d81265,0x16f8a12a,0xb1a36d9f,0x04d68e51],
354 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
355 ct: [0x6c68e9be,0x5ec41e22,0xc825b7c7,0xaffb4363] },
356 { key: [0xf5303579,0x68578480,0xb398a3c2,0x51cd1093],
357 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
358 ct: [0xf5df3999,0x0fc688f1,0xb07224cc,0x03e86cea] },
359 { key: [0xda84367f,0x325d42d6,0x01b43269,0x64802e8e],
360 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
361 ct: [0xbba071bc,0xb470f8f6,0x586e5d3a,0xdd18bc66] },
362 { key: [0xe37b1c6a,0xa2846f6f,0xdb413f23,0x8b089f23],
363 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
364 ct: [0x43c9f7e6,0x2f5d288b,0xb27aa40e,0xf8fe1ea8] },
365 { key: [0x6c002b68,0x2483e0ca,0xbcc731c2,0x53be5674],
366 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
367 ct: [0x3580d19c,0xff44f101,0x4a7c966a,0x69059de5] },
368 { key: [0x143ae8ed,0x6555aba9,0x6110ab58,0x893a8ae1],
369 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
370 ct: [0x806da864,0xdd29d48d,0xeafbe764,0xf8202aef] },
371 { key: [0xb69418a8,0x5332240d,0xc8249235,0x3956ae0c],
372 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
373 ct: [0xa303d940,0xded8f0ba,0xff6f7541,0x4cac5243] },
374 { key: [0x71b5c08a,0x1993e136,0x2e4d0ce9,0xb22b78d5],
375 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
376 ct: [0xc2dabd11,0x7f8a3eca,0xbfbb11d1,0x2194d9d0] },
377 { key: [0xe234cdca,0x2606b81f,0x29408d5f,0x6da21206],
378 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
379 ct: [0xfff60a47,0x40086b3b,0x9c56195b,0x98d91a7b] },
380 { key: [0x13237c49,0x074a3da0,0x78dc1d82,0x8bb78c6f],
381 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
382 ct: [0x8146a08e,0x2357f0ca,0xa30ca8c9,0x4d1a0544] },
383 { key: [0x3071a2a4,0x8fe6cbd0,0x4f1a1290,0x98e308f8],
384 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
385 ct: [0x4b98e06d,0x356deb07,0xebb824e5,0x713f7be3] },
386 { key: [0x90f42ec0,0xf68385f2,0xffc5dfc0,0x3a654dce],
387 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
388 ct: [0x7a20a53d,0x460fc9ce,0x0423a7a0,0x764c6cf2] },
389 { key: [0xfebd9a24,0xd8b65c1c,0x787d50a4,0xed3619a9],
390 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
391 ct: [0xf4a70d8a,0xf877f9b0,0x2b4c40df,0x57d45b17] },
392 { key: [0x80000000,0x00000000,0x00000000,0x00000000],
393 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
394 ct: [0x0edd33d3,0xc621e546,0x455bd8ba,0x1418bec8] },
395 { key: [0xc0000000,0x00000000,0x00000000,0x00000000],
396 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
397 ct: [0x4bc3f883,0x450c113c,0x64ca42e1,0x112a9e87] },
398 { key: [0xe0000000,0x00000000,0x00000000,0x00000000],
399 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
400 ct: [0x72a1da77,0x0f5d7ac4,0xc9ef94d8,0x22affd97] },
401 { key: [0xf0000000,0x00000000,0x00000000,0x00000000],
402 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
403 ct: [0x970014d6,0x34e2b765,0x0777e8e8,0x4d03ccd8] },
404 { key: [0xf8000000,0x00000000,0x00000000,0x00000000],
405 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
406 ct: [0xf17e79ae,0xd0db7e27,0x9e955b5f,0x493875a7] },
407 { key: [0xfc000000,0x00000000,0x00000000,0x00000000],
408 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
409 ct: [0x9ed5a751,0x36a940d0,0x963da379,0xdb4af26a] },
410 { key: [0xfe000000,0x00000000,0x00000000,0x00000000],
411 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
412 ct: [0xc4295f83,0x465c7755,0xe8fa364b,0xac6a7ea5] },
413 { key: [0xff000000,0x00000000,0x00000000,0x00000000],
414 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
415 ct: [0xb1d75825,0x6b28fd85,0x0ad49442,0x08cf1155] },
416 { key: [0xff800000,0x00000000,0x00000000,0x00000000],
417 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
418 ct: [0x42ffb34c,0x743de4d8,0x8ca38011,0xc990890b] },
419 { key: [0xffc00000,0x00000000,0x00000000,0x00000000],
420 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
421 ct: [0x9958f0ec,0xea8b2172,0xc0c1995f,0x9182c0f3] },
422 { key: [0xffe00000,0x00000000,0x00000000,0x00000000],
423 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
424 ct: [0x956d7798,0xfac20f82,0xa8823f98,0x4d06f7f5] },
425 { key: [0xfff00000,0x00000000,0x00000000,0x00000000],
426 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
427 ct: [0xa01bf44f,0x2d16be92,0x8ca44aaf,0x7b9b106b] },
428 { key: [0xfff80000,0x00000000,0x00000000,0x00000000],
429 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
430 ct: [0xb5f1a33e,0x50d40d10,0x3764c76b,0xd4c6b6f8] },
431 { key: [0xfffc0000,0x00000000,0x00000000,0x00000000],
432 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
433 ct: [0x2637050c,0x9fc0d481,0x7e2d69de,0x878aee8d] },
434 { key: [0xfffe0000,0x00000000,0x00000000,0x00000000],
435 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
436 ct: [0x113ecbe4,0xa453269a,0x0dd26069,0x467fb5b5] },
437 { key: [0xffff0000,0x00000000,0x00000000,0x00000000],
438 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
439 ct: [0x97d0754f,0xe68f11b9,0xe375d070,0xa608c884] },
440 { key: [0xffff8000,0x00000000,0x00000000,0x00000000],
441 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
442 ct: [0xc6a0b3e9,0x98d05068,0xa5399778,0x405200b4] },
443 { key: [0xffffc000,0x00000000,0x00000000,0x00000000],
444 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
445 ct: [0xdf556a33,0x438db87b,0xc41b1752,0xc55e5e49] },
446 { key: [0xffffe000,0x00000000,0x00000000,0x00000000],
447 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
448 ct: [0x90fb128d,0x3a1af6e5,0x48521bb9,0x62bf1f05] },
449 { key: [0xfffff000,0x00000000,0x00000000,0x00000000],
450 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
451 ct: [0x26298e9c,0x1db517c2,0x15fadfb7,0xd2a8d691] },
452 { key: [0xfffff800,0x00000000,0x00000000,0x00000000],
453 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
454 ct: [0xa6cb761d,0x61f8292d,0x0df393a2,0x79ad0380] },
455 { key: [0xfffffc00,0x00000000,0x00000000,0x00000000],
456 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
457 ct: [0x12acd89b,0x13cd5f87,0x26e34d44,0xfd486108] },
458 { key: [0xfffffe00,0x00000000,0x00000000,0x00000000],
459 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
460 ct: [0x95b1703f,0xc57ba09f,0xe0c3580f,0xebdd7ed4] },
461 { key: [0xffffff00,0x00000000,0x00000000,0x00000000],
462 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
463 ct: [0xde11722d,0x893e9f91,0x21c381be,0xcc1da59a] },
464 { key: [0xffffff80,0x00000000,0x00000000,0x00000000],
465 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
466 ct: [0x6d114ccb,0x27bf3910,0x12e8974c,0x546d9bf2] },
467 { key: [0xffffffc0,0x00000000,0x00000000,0x00000000],
468 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
469 ct: [0x5ce37e17,0xeb4646ec,0xfac29b9c,0xc38d9340] },
470 { key: [0xffffffe0,0x00000000,0x00000000,0x00000000],
471 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
472 ct: [0x18c1b6e2,0x15712205,0x6d0243d8,0xa165cddb] },
473 { key: [0xfffffff0,0x00000000,0x00000000,0x00000000],
474 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
475 ct: [0x99693e6a,0x59d1366c,0x74d82356,0x2d7e1431] },
476 { key: [0xfffffff8,0x00000000,0x00000000,0x00000000],
477 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
478 ct: [0x6c7c64dc,0x84a8bba7,0x58ed17eb,0x025a57e3] },
479 { key: [0xfffffffc,0x00000000,0x00000000,0x00000000],
480 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
481 ct: [0xe17bc79f,0x30eaab2f,0xac2cbbe3,0x458d687a] },
482 { key: [0xfffffffe,0x00000000,0x00000000,0x00000000],
483 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
484 ct: [0x1114bc20,0x28009b92,0x3f0b0191,0x5ce5e7c4] },
485 { key: [0xffffffff,0x00000000,0x00000000,0x00000000],
486 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
487 ct: [0x9c28524a,0x16a1e1c1,0x452971ca,0xa8d13476] },
488 { key: [0xffffffff,0x80000000,0x00000000,0x00000000],
489 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
490 ct: [0xed62e163,0x63638360,0xfdd6ad62,0x112794f0] },
491 { key: [0xffffffff,0xc0000000,0x00000000,0x00000000],
492 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
493 ct: [0x5a8688f0,0xb2a2c162,0x24c16165,0x8ffd4044] },
494 { key: [0xffffffff,0xe0000000,0x00000000,0x00000000],
495 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
496 ct: [0x23f71084,0x2b9bb9c3,0x2f26648c,0x786807ca] },
497 { key: [0xffffffff,0xf0000000,0x00000000,0x00000000],
498 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
499 ct: [0x44a98bf1,0x1e163f63,0x2c47ec6a,0x49683a89] },
500 { key: [0xffffffff,0xf8000000,0x00000000,0x00000000],
501 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
502 ct: [0x0f18aff9,0x4274696d,0x9b61848b,0xd50ac5e5] },
503 { key: [0xffffffff,0xfc000000,0x00000000,0x00000000],
504 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
505 ct: [0x82408571,0xc3e24245,0x40207f83,0x3b6dda69] },
506 { key: [0xffffffff,0xfe000000,0x00000000,0x00000000],
507 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
508 ct: [0x303ff996,0x947f0c7d,0x1f43c8f3,0x027b9b75] },
509 { key: [0xffffffff,0xff000000,0x00000000,0x00000000],
510 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
511 ct: [0x7df4daf4,0xad29a361,0x5a9b6ece,0x5c99518a] },
512 { key: [0xffffffff,0xff800000,0x00000000,0x00000000],
513 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
514 ct: [0xc72954a4,0x8d0774db,0x0b4971c5,0x26260415] },
515 { key: [0xffffffff,0xffc00000,0x00000000,0x00000000],
516 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
517 ct: [0x1df9b761,0x12dc6531,0xe07d2cfd,0xa04411f0] },
518 { key: [0xffffffff,0xffe00000,0x00000000,0x00000000],
519 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
520 ct: [0x8e4d8e69,0x9119e1fc,0x87545a64,0x7fb1d34f] },
521 { key: [0xffffffff,0xfff00000,0x00000000,0x00000000],
522 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
523 ct: [0xe6c4807a,0xe11f36f0,0x91c57d9f,0xb68548d1] },
524 { key: [0xffffffff,0xfff80000,0x00000000,0x00000000],
525 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
526 ct: [0x8ebf73aa,0xd49c8200,0x7f77a5c1,0xccec6ab4] },
527 { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
528 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
529 ct: [0x4fb288cc,0x20400490,0x01d2c758,0x5ad123fc] },
530 { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
531 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
532 ct: [0x04497110,0xefb9dceb,0x13e2b13f,0xb4465564] },
533 { key: [0xffffffff,0xffff0000,0x00000000,0x00000000],
534 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
535 ct: [0x75550e6c,0xb5a88e49,0x634c9ab6,0x9eda0430] },
536 { key: [0xffffffff,0xffff8000,0x00000000,0x00000000],
537 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
538 ct: [0xb6768473,0xce9843ea,0x66a81405,0xdd50b345] },
539 { key: [0xffffffff,0xffffc000,0x00000000,0x00000000],
540 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
541 ct: [0xcb2f4303,0x83f9084e,0x03a65357,0x1e065de6] },
542 { key: [0xffffffff,0xffffe000,0x00000000,0x00000000],
543 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
544 ct: [0xff4e66c0,0x7bae3e79,0xfb7d2108,0x47a3b0ba] },
545 { key: [0xffffffff,0xfffff000,0x00000000,0x00000000],
546 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
547 ct: [0x7b907851,0x25505fad,0x59b13c18,0x6dd66ce3] },
548 { key: [0xffffffff,0xfffff800,0x00000000,0x00000000],
549 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
550 ct: [0x8b527a6a,0xebdaec9e,0xaef8eda2,0xcb7783e5] },
551 { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
552 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
553 ct: [0x43fdaf53,0xebbc9880,0xc228617d,0x6a9b548b] },
554 { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
555 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
556 ct: [0x53786104,0xb9744b98,0xf052c46f,0x1c850d0b] },
557 { key: [0xffffffff,0xffffff00,0x00000000,0x00000000],
558 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
559 ct: [0xb5ab3013,0xdd1e61df,0x06cbaf34,0xca2aee78] },
560 { key: [0xffffffff,0xffffff80,0x00000000,0x00000000],
561 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
562 ct: [0x7470469b,0xe9723030,0xfdcc73a8,0xcd4fbb10] },
563 { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
564 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
565 ct: [0xa35a63f5,0x343ebe9e,0xf8167bcb,0x48ad122e] },
566 { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
567 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
568 ct: [0xfd8687f0,0x757a210e,0x9fdf1812,0x04c30863] },
569 { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
570 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
571 ct: [0x7a181e84,0xbd5457d2,0x6a88fbae,0x96018fb0] },
572 { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
573 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
574 ct: [0x653317b9,0x362b6f9b,0x9e1a580e,0x68d494b5] },
575 { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
576 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
577 ct: [0x995c9dc0,0xb689f03c,0x45867b5f,0xaa5c18d1] },
578 { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
579 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
580 ct: [0x77a4d96d,0x56dda398,0xb9aabecf,0xc75729fd] },
581 { key: [0xffffffff,0xffffffff,0x00000000,0x00000000],
582 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
583 ct: [0x84be19e0,0x53635f09,0xf2665e7b,0xae85b42d] },
584 { key: [0xffffffff,0xffffffff,0x80000000,0x00000000],
585 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
586 ct: [0x32cd6528,0x42926aea,0x4aa6137b,0xb2be2b5e] },
587 { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
588 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
589 ct: [0x493d4a4f,0x38ebb337,0xd10aa84e,0x9171a554] },
590 { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
591 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
592 ct: [0xd9bff7ff,0x454b0ec5,0xa4a2a695,0x66e2cb84] },
593 { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
594 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
595 ct: [0x3535d565,0xace3f31e,0xb249ba2c,0xc6765d7a] },
596 { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
597 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
598 ct: [0xf60e91fc,0x3269eecf,0x3231c6e9,0x945697c6] },
599 { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
600 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
601 ct: [0xab69cfad,0xf51f8e60,0x4d9cc371,0x82f6635a] },
602 { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
603 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
604 ct: [0x7866373f,0x24a0b6ed,0x56e0d96f,0xcdafb877] },
605 { key: [0xffffffff,0xffffffff,0xff000000,0x00000000],
606 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
607 ct: [0x1ea448c2,0xaac954f5,0xd812e9d7,0x8494446a] },
608 { key: [0xffffffff,0xffffffff,0xff800000,0x00000000],
609 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
610 ct: [0xacc5599d,0xd8ac0223,0x9a0fef4a,0x36dd1668] },
611 { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
612 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
613 ct: [0xd8764468,0xbb103828,0xcf7e1473,0xce895073] },
614 { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
615 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
616 ct: [0x1b0d0289,0x3683b9f1,0x80458e4a,0xa6b73982] },
617 { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
618 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
619 ct: [0x96d9b017,0xd302df41,0x0a937dcd,0xb8bb6e43] },
620 { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
621 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
622 ct: [0xef1623cc,0x44313cff,0x440b1594,0xa7e21cc6] },
623 { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
624 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
625 ct: [0x284ca2fa,0x35807b8b,0x0ae4d19e,0x11d7dbd7] },
626 { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
627 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
628 ct: [0xf2e97687,0x5755f940,0x1d54f36e,0x2a23a594] },
629 { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
630 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
631 ct: [0xec198a18,0xe10e5324,0x03b7e208,0x87c8dd80] },
632 { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
633 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
634 ct: [0x545d50eb,0xd919e4a6,0x949d96ad,0x47e46a80] },
635 { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
636 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
637 ct: [0xdbdfb527,0x060e0a71,0x009c7bb0,0xc68f1d44] },
638 { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
639 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
640 ct: [0x9cfa1322,0xea33da21,0x73a024f2,0xff0d896d] },
641 { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
642 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
643 ct: [0x8785b1a7,0x5b0f3bd9,0x58dcd0e2,0x9318c521] },
644 { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
645 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
646 ct: [0x38f67b9e,0x98e4a97b,0x6df030a9,0xfcdd0104] },
647 { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
648 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
649 ct: [0x192afffb,0x2c880e82,0xb05926d0,0xfc6c448b] },
650 { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
651 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
652 ct: [0x6a7980ce,0x7b105cf5,0x30952d74,0xdaaf798c] },
653 { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
654 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
655 ct: [0xea3695e1,0x351b9d68,0x58bd958c,0xf513ef6c] },
656 { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
657 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
658 ct: [0x6da0490b,0xa0ba0343,0xb935681d,0x2cce5ba1] },
659 { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
660 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
661 ct: [0xf0ea23af,0x08534011,0xc60009ab,0x29ada2f1] },
662 { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
663 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
664 ct: [0xff13806c,0xf19cc387,0x21554d7c,0x0fcdcd4b] },
665 { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
666 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
667 ct: [0x6838af1f,0x4f69bae9,0xd85dd188,0xdcdf0688] },
668 { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
669 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
670 ct: [0x36cf44c9,0x2d550bfb,0x1ed28ef5,0x83ddf5d7] },
671 { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
672 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
673 ct: [0xd06e3195,0xb5376f10,0x9d5c4ec6,0xc5d62ced] },
674 { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
675 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
676 ct: [0xc440de01,0x4d3d6107,0x07279b13,0x242a5c36] },
677 { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
678 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
679 ct: [0xf0c5c6ff,0xa5e0bd3a,0x94c88f6b,0x6f7c16b9] },
680 { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
681 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
682 ct: [0x3e40c390,0x1cd7effc,0x22bffc35,0xdee0b4d9] },
683 { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
684 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
685 ct: [0xb63305c7,0x2bedfab9,0x7382c406,0xd0c49bc6] },
686 { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
687 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
688 ct: [0x36bbaab2,0x2a6bd492,0x5a99a2b4,0x08d2dbae] },
689 { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
690 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
691 ct: [0x307c5b8f,0xcd0533ab,0x98bc51e2,0x7a6ce461] },
692 { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
693 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
694 ct: [0x829c04ff,0x4c07513c,0x0b3ef05c,0x03e337b5] },
695 { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
696 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
697 ct: [0xf17af0e8,0x95dda5eb,0x98efc680,0x66e84c54] },
698 { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
699 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
700 ct: [0x277167f3,0x812afff1,0xffacb4a9,0x34379fc3] },
701 { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
702 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
703 ct: [0x2cb1dc3a,0x9c72972e,0x425ae2ef,0x3eb597cd] },
704 { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
705 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
706 ct: [0x36aeaa3a,0x213e968d,0x4b5b679d,0x3a2c97fe] },
707 { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
708 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
709 ct: [0x9241daca,0x4fdd034a,0x82372db5,0x0e1a0f3f] },
710 { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
711 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
712 ct: [0xc14574d9,0xcd00cf2b,0x5a7f77e5,0x3cd57885] },
713 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
714 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
715 ct: [0x793de392,0x36570aba,0x83ab9b73,0x7cb521c9] },
716 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
717 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
718 ct: [0x16591c0f,0x27d60e29,0xb85a96c3,0x3861a7ef] },
719 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
720 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
721 ct: [0x44fb5c4d,0x4f5cb79b,0xe5c174a3,0xb1c97348] },
722 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
723 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
724 ct: [0x674d2b61,0x633d162b,0xe59dde04,0x222f4740] },
725 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
726 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
727 ct: [0xb4750ff2,0x63a65e1f,0x9e924ccf,0xd98f3e37] },
728 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
729 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
730 ct: [0x62d0662d,0x6eaedded,0xebae7f7e,0xa3a4f6b6] },
731 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
732 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
733 ct: [0x70c46bb3,0x0692be65,0x7f7eaa93,0xebad9897] },
734 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
735 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
736 ct: [0x323994cf,0xb9da285a,0x5d9642e1,0x759b224a] },
737 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
738 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
739 ct: [0x1dbf5787,0x7b7b1738,0x5c85d0b5,0x4851e371] },
740 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
741 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
742 ct: [0xdfa5c097,0xcdc1532a,0xc071d57b,0x1d28d1bd] },
743 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
744 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
745 ct: [0x3a0c53fa,0x37311fc1,0x0bd2a998,0x1f513174] },
746 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
747 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
748 ct: [0xba4f970c,0x0a25c418,0x14bdae2e,0x506be3b4] },
749 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
750 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
751 ct: [0x2dce3acb,0x727cd13c,0xcd76d425,0xea56e4f6] },
752 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
753 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
754 ct: [0x5160474d,0x504b9b3e,0xefb68d35,0xf245f4b3] },
755 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
756 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
757 ct: [0x41a8a947,0x766635de,0xc37553d9,0xa6c0cbb7] },
758 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
759 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
760 ct: [0x25d6cfe6,0x881f2bf4,0x97dd14cd,0x4ddf445b] },
761 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
762 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
763 ct: [0x41c78c13,0x5ed9e98c,0x09664064,0x7265da1e] },
764 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
765 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
766 ct: [0x5a4d404d,0x8917e353,0xe92a2107,0x2c3b2305] },
767 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
768 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
769 ct: [0x02bc9684,0x6b3fdc71,0x643f384c,0xd3cc3eaf] },
770 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
771 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
772 ct: [0x9ba4a914,0x3f4e5d40,0x48521c4f,0x8877d88e] },
773 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
774 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
775 ct: [0xa1f6258c,0x877d5fcd,0x89644845,0x38bfc92c] },
776 { key: [0x80000000,0x00000000,0x00000000,0x00000000],
777 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
778 ct: [0x0edd33d3,0xc621e546,0x455bd8ba,0x1418bec8] },
779 { key: [0xc0000000,0x00000000,0x00000000,0x00000000],
780 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
781 ct: [0x4bc3f883,0x450c113c,0x64ca42e1,0x112a9e87] },
782 { key: [0xe0000000,0x00000000,0x00000000,0x00000000],
783 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
784 ct: [0x72a1da77,0x0f5d7ac4,0xc9ef94d8,0x22affd97] },
785 { key: [0xf0000000,0x00000000,0x00000000,0x00000000],
786 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
787 ct: [0x970014d6,0x34e2b765,0x0777e8e8,0x4d03ccd8] },
788 { key: [0xf8000000,0x00000000,0x00000000,0x00000000],
789 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
790 ct: [0xf17e79ae,0xd0db7e27,0x9e955b5f,0x493875a7] },
791 { key: [0xfc000000,0x00000000,0x00000000,0x00000000],
792 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
793 ct: [0x9ed5a751,0x36a940d0,0x963da379,0xdb4af26a] },
794 { key: [0xfe000000,0x00000000,0x00000000,0x00000000],
795 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
796 ct: [0xc4295f83,0x465c7755,0xe8fa364b,0xac6a7ea5] },
797 { key: [0xff000000,0x00000000,0x00000000,0x00000000],
798 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
799 ct: [0xb1d75825,0x6b28fd85,0x0ad49442,0x08cf1155] },
800 { key: [0xff800000,0x00000000,0x00000000,0x00000000],
801 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
802 ct: [0x42ffb34c,0x743de4d8,0x8ca38011,0xc990890b] },
803 { key: [0xffc00000,0x00000000,0x00000000,0x00000000],
804 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
805 ct: [0x9958f0ec,0xea8b2172,0xc0c1995f,0x9182c0f3] },
806 { key: [0xffe00000,0x00000000,0x00000000,0x00000000],
807 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
808 ct: [0x956d7798,0xfac20f82,0xa8823f98,0x4d06f7f5] },
809 { key: [0xfff00000,0x00000000,0x00000000,0x00000000],
810 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
811 ct: [0xa01bf44f,0x2d16be92,0x8ca44aaf,0x7b9b106b] },
812 { key: [0xfff80000,0x00000000,0x00000000,0x00000000],
813 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
814 ct: [0xb5f1a33e,0x50d40d10,0x3764c76b,0xd4c6b6f8] },
815 { key: [0xfffc0000,0x00000000,0x00000000,0x00000000],
816 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
817 ct: [0x2637050c,0x9fc0d481,0x7e2d69de,0x878aee8d] },
818 { key: [0xfffe0000,0x00000000,0x00000000,0x00000000],
819 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
820 ct: [0x113ecbe4,0xa453269a,0x0dd26069,0x467fb5b5] },
821 { key: [0xffff0000,0x00000000,0x00000000,0x00000000],
822 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
823 ct: [0x97d0754f,0xe68f11b9,0xe375d070,0xa608c884] },
824 { key: [0xffff8000,0x00000000,0x00000000,0x00000000],
825 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
826 ct: [0xc6a0b3e9,0x98d05068,0xa5399778,0x405200b4] },
827 { key: [0xffffc000,0x00000000,0x00000000,0x00000000],
828 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
829 ct: [0xdf556a33,0x438db87b,0xc41b1752,0xc55e5e49] },
830 { key: [0xffffe000,0x00000000,0x00000000,0x00000000],
831 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
832 ct: [0x90fb128d,0x3a1af6e5,0x48521bb9,0x62bf1f05] },
833 { key: [0xfffff000,0x00000000,0x00000000,0x00000000],
834 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
835 ct: [0x26298e9c,0x1db517c2,0x15fadfb7,0xd2a8d691] },
836 { key: [0xfffff800,0x00000000,0x00000000,0x00000000],
837 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
838 ct: [0xa6cb761d,0x61f8292d,0x0df393a2,0x79ad0380] },
839 { key: [0xfffffc00,0x00000000,0x00000000,0x00000000],
840 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
841 ct: [0x12acd89b,0x13cd5f87,0x26e34d44,0xfd486108] },
842 { key: [0xfffffe00,0x00000000,0x00000000,0x00000000],
843 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
844 ct: [0x95b1703f,0xc57ba09f,0xe0c3580f,0xebdd7ed4] },
845 { key: [0xffffff00,0x00000000,0x00000000,0x00000000],
846 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
847 ct: [0xde11722d,0x893e9f91,0x21c381be,0xcc1da59a] },
848 { key: [0xffffff80,0x00000000,0x00000000,0x00000000],
849 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
850 ct: [0x6d114ccb,0x27bf3910,0x12e8974c,0x546d9bf2] },
851 { key: [0xffffffc0,0x00000000,0x00000000,0x00000000],
852 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
853 ct: [0x5ce37e17,0xeb4646ec,0xfac29b9c,0xc38d9340] },
854 { key: [0xffffffe0,0x00000000,0x00000000,0x00000000],
855 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
856 ct: [0x18c1b6e2,0x15712205,0x6d0243d8,0xa165cddb] },
857 { key: [0xfffffff0,0x00000000,0x00000000,0x00000000],
858 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
859 ct: [0x99693e6a,0x59d1366c,0x74d82356,0x2d7e1431] },
860 { key: [0xfffffff8,0x00000000,0x00000000,0x00000000],
861 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
862 ct: [0x6c7c64dc,0x84a8bba7,0x58ed17eb,0x025a57e3] },
863 { key: [0xfffffffc,0x00000000,0x00000000,0x00000000],
864 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
865 ct: [0xe17bc79f,0x30eaab2f,0xac2cbbe3,0x458d687a] },
866 { key: [0xfffffffe,0x00000000,0x00000000,0x00000000],
867 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
868 ct: [0x1114bc20,0x28009b92,0x3f0b0191,0x5ce5e7c4] },
869 { key: [0xffffffff,0x00000000,0x00000000,0x00000000],
870 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
871 ct: [0x9c28524a,0x16a1e1c1,0x452971ca,0xa8d13476] },
872 { key: [0xffffffff,0x80000000,0x00000000,0x00000000],
873 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
874 ct: [0xed62e163,0x63638360,0xfdd6ad62,0x112794f0] },
875 { key: [0xffffffff,0xc0000000,0x00000000,0x00000000],
876 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
877 ct: [0x5a8688f0,0xb2a2c162,0x24c16165,0x8ffd4044] },
878 { key: [0xffffffff,0xe0000000,0x00000000,0x00000000],
879 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
880 ct: [0x23f71084,0x2b9bb9c3,0x2f26648c,0x786807ca] },
881 { key: [0xffffffff,0xf0000000,0x00000000,0x00000000],
882 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
883 ct: [0x44a98bf1,0x1e163f63,0x2c47ec6a,0x49683a89] },
884 { key: [0xffffffff,0xf8000000,0x00000000,0x00000000],
885 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
886 ct: [0x0f18aff9,0x4274696d,0x9b61848b,0xd50ac5e5] },
887 { key: [0xffffffff,0xfc000000,0x00000000,0x00000000],
888 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
889 ct: [0x82408571,0xc3e24245,0x40207f83,0x3b6dda69] },
890 { key: [0xffffffff,0xfe000000,0x00000000,0x00000000],
891 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
892 ct: [0x303ff996,0x947f0c7d,0x1f43c8f3,0x027b9b75] },
893 { key: [0xffffffff,0xff000000,0x00000000,0x00000000],
894 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
895 ct: [0x7df4daf4,0xad29a361,0x5a9b6ece,0x5c99518a] },
896 { key: [0xffffffff,0xff800000,0x00000000,0x00000000],
897 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
898 ct: [0xc72954a4,0x8d0774db,0x0b4971c5,0x26260415] },
899 { key: [0xffffffff,0xffc00000,0x00000000,0x00000000],
900 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
901 ct: [0x1df9b761,0x12dc6531,0xe07d2cfd,0xa04411f0] },
902 { key: [0xffffffff,0xffe00000,0x00000000,0x00000000],
903 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
904 ct: [0x8e4d8e69,0x9119e1fc,0x87545a64,0x7fb1d34f] },
905 { key: [0xffffffff,0xfff00000,0x00000000,0x00000000],
906 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
907 ct: [0xe6c4807a,0xe11f36f0,0x91c57d9f,0xb68548d1] },
908 { key: [0xffffffff,0xfff80000,0x00000000,0x00000000],
909 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
910 ct: [0x8ebf73aa,0xd49c8200,0x7f77a5c1,0xccec6ab4] },
911 { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
912 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
913 ct: [0x4fb288cc,0x20400490,0x01d2c758,0x5ad123fc] },
914 { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
915 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
916 ct: [0x04497110,0xefb9dceb,0x13e2b13f,0xb4465564] },
917 { key: [0xffffffff,0xffff0000,0x00000000,0x00000000],
918 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
919 ct: [0x75550e6c,0xb5a88e49,0x634c9ab6,0x9eda0430] },
920 { key: [0xffffffff,0xffff8000,0x00000000,0x00000000],
921 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
922 ct: [0xb6768473,0xce9843ea,0x66a81405,0xdd50b345] },
923 { key: [0xffffffff,0xffffc000,0x00000000,0x00000000],
924 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
925 ct: [0xcb2f4303,0x83f9084e,0x03a65357,0x1e065de6] },
926 { key: [0xffffffff,0xffffe000,0x00000000,0x00000000],
927 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
928 ct: [0xff4e66c0,0x7bae3e79,0xfb7d2108,0x47a3b0ba] },
929 { key: [0xffffffff,0xfffff000,0x00000000,0x00000000],
930 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
931 ct: [0x7b907851,0x25505fad,0x59b13c18,0x6dd66ce3] },
932 { key: [0xffffffff,0xfffff800,0x00000000,0x00000000],
933 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
934 ct: [0x8b527a6a,0xebdaec9e,0xaef8eda2,0xcb7783e5] },
935 { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
936 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
937 ct: [0x43fdaf53,0xebbc9880,0xc228617d,0x6a9b548b] },
938 { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
939 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
940 ct: [0x53786104,0xb9744b98,0xf052c46f,0x1c850d0b] },
941 { key: [0xffffffff,0xffffff00,0x00000000,0x00000000],
942 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
943 ct: [0xb5ab3013,0xdd1e61df,0x06cbaf34,0xca2aee78] },
944 { key: [0xffffffff,0xffffff80,0x00000000,0x00000000],
945 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
946 ct: [0x7470469b,0xe9723030,0xfdcc73a8,0xcd4fbb10] },
947 { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
948 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
949 ct: [0xa35a63f5,0x343ebe9e,0xf8167bcb,0x48ad122e] },
950 { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
951 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
952 ct: [0xfd8687f0,0x757a210e,0x9fdf1812,0x04c30863] },
953 { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
954 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
955 ct: [0x7a181e84,0xbd5457d2,0x6a88fbae,0x96018fb0] },
956 { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
957 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
958 ct: [0x653317b9,0x362b6f9b,0x9e1a580e,0x68d494b5] },
959 { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
960 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
961 ct: [0x995c9dc0,0xb689f03c,0x45867b5f,0xaa5c18d1] },
962 { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
963 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
964 ct: [0x77a4d96d,0x56dda398,0xb9aabecf,0xc75729fd] },
965 { key: [0xffffffff,0xffffffff,0x00000000,0x00000000],
966 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
967 ct: [0x84be19e0,0x53635f09,0xf2665e7b,0xae85b42d] },
968 { key: [0xffffffff,0xffffffff,0x80000000,0x00000000],
969 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
970 ct: [0x32cd6528,0x42926aea,0x4aa6137b,0xb2be2b5e] },
971 { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
972 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
973 ct: [0x493d4a4f,0x38ebb337,0xd10aa84e,0x9171a554] },
974 { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
975 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
976 ct: [0xd9bff7ff,0x454b0ec5,0xa4a2a695,0x66e2cb84] },
977 { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
978 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
979 ct: [0x3535d565,0xace3f31e,0xb249ba2c,0xc6765d7a] },
980 { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
981 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
982 ct: [0xf60e91fc,0x3269eecf,0x3231c6e9,0x945697c6] },
983 { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
984 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
985 ct: [0xab69cfad,0xf51f8e60,0x4d9cc371,0x82f6635a] },
986 { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
987 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
988 ct: [0x7866373f,0x24a0b6ed,0x56e0d96f,0xcdafb877] },
989 { key: [0xffffffff,0xffffffff,0xff000000,0x00000000],
990 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
991 ct: [0x1ea448c2,0xaac954f5,0xd812e9d7,0x8494446a] },
992 { key: [0xffffffff,0xffffffff,0xff800000,0x00000000],
993 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
994 ct: [0xacc5599d,0xd8ac0223,0x9a0fef4a,0x36dd1668] },
995 { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
996 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
997 ct: [0xd8764468,0xbb103828,0xcf7e1473,0xce895073] },
998 { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
999 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1000 ct: [0x1b0d0289,0x3683b9f1,0x80458e4a,0xa6b73982] },
1001 { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
1002 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1003 ct: [0x96d9b017,0xd302df41,0x0a937dcd,0xb8bb6e43] },
1004 { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
1005 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1006 ct: [0xef1623cc,0x44313cff,0x440b1594,0xa7e21cc6] },
1007 { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
1008 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1009 ct: [0x284ca2fa,0x35807b8b,0x0ae4d19e,0x11d7dbd7] },
1010 { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
1011 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1012 ct: [0xf2e97687,0x5755f940,0x1d54f36e,0x2a23a594] },
1013 { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
1014 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1015 ct: [0xec198a18,0xe10e5324,0x03b7e208,0x87c8dd80] },
1016 { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
1017 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1018 ct: [0x545d50eb,0xd919e4a6,0x949d96ad,0x47e46a80] },
1019 { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
1020 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1021 ct: [0xdbdfb527,0x060e0a71,0x009c7bb0,0xc68f1d44] },
1022 { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
1023 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1024 ct: [0x9cfa1322,0xea33da21,0x73a024f2,0xff0d896d] },
1025 { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
1026 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1027 ct: [0x8785b1a7,0x5b0f3bd9,0x58dcd0e2,0x9318c521] },
1028 { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
1029 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1030 ct: [0x38f67b9e,0x98e4a97b,0x6df030a9,0xfcdd0104] },
1031 { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
1032 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1033 ct: [0x192afffb,0x2c880e82,0xb05926d0,0xfc6c448b] },
1034 { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
1035 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1036 ct: [0x6a7980ce,0x7b105cf5,0x30952d74,0xdaaf798c] },
1037 { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
1038 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1039 ct: [0xea3695e1,0x351b9d68,0x58bd958c,0xf513ef6c] },
1040 { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
1041 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1042 ct: [0x6da0490b,0xa0ba0343,0xb935681d,0x2cce5ba1] },
1043 { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
1044 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1045 ct: [0xf0ea23af,0x08534011,0xc60009ab,0x29ada2f1] },
1046 { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
1047 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1048 ct: [0xff13806c,0xf19cc387,0x21554d7c,0x0fcdcd4b] },
1049 { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
1050 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1051 ct: [0x6838af1f,0x4f69bae9,0xd85dd188,0xdcdf0688] },
1052 { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
1053 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1054 ct: [0x36cf44c9,0x2d550bfb,0x1ed28ef5,0x83ddf5d7] },
1055 { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
1056 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1057 ct: [0xd06e3195,0xb5376f10,0x9d5c4ec6,0xc5d62ced] },
1058 { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
1059 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1060 ct: [0xc440de01,0x4d3d6107,0x07279b13,0x242a5c36] },
1061 { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
1062 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1063 ct: [0xf0c5c6ff,0xa5e0bd3a,0x94c88f6b,0x6f7c16b9] },
1064 { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
1065 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1066 ct: [0x3e40c390,0x1cd7effc,0x22bffc35,0xdee0b4d9] },
1067 { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
1068 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1069 ct: [0xb63305c7,0x2bedfab9,0x7382c406,0xd0c49bc6] },
1070 { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
1071 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1072 ct: [0x36bbaab2,0x2a6bd492,0x5a99a2b4,0x08d2dbae] },
1073 { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
1074 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1075 ct: [0x307c5b8f,0xcd0533ab,0x98bc51e2,0x7a6ce461] },
1076 { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
1077 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1078 ct: [0x829c04ff,0x4c07513c,0x0b3ef05c,0x03e337b5] },
1079 { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
1080 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1081 ct: [0xf17af0e8,0x95dda5eb,0x98efc680,0x66e84c54] },
1082 { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
1083 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1084 ct: [0x277167f3,0x812afff1,0xffacb4a9,0x34379fc3] },
1085 { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
1086 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1087 ct: [0x2cb1dc3a,0x9c72972e,0x425ae2ef,0x3eb597cd] },
1088 { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
1089 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1090 ct: [0x36aeaa3a,0x213e968d,0x4b5b679d,0x3a2c97fe] },
1091 { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
1092 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1093 ct: [0x9241daca,0x4fdd034a,0x82372db5,0x0e1a0f3f] },
1094 { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
1095 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1096 ct: [0xc14574d9,0xcd00cf2b,0x5a7f77e5,0x3cd57885] },
1097 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
1098 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1099 ct: [0x793de392,0x36570aba,0x83ab9b73,0x7cb521c9] },
1100 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
1101 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1102 ct: [0x16591c0f,0x27d60e29,0xb85a96c3,0x3861a7ef] },
1103 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
1104 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1105 ct: [0x44fb5c4d,0x4f5cb79b,0xe5c174a3,0xb1c97348] },
1106 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
1107 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1108 ct: [0x674d2b61,0x633d162b,0xe59dde04,0x222f4740] },
1109 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
1110 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1111 ct: [0xb4750ff2,0x63a65e1f,0x9e924ccf,0xd98f3e37] },
1112 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
1113 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1114 ct: [0x62d0662d,0x6eaedded,0xebae7f7e,0xa3a4f6b6] },
1115 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
1116 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1117 ct: [0x70c46bb3,0x0692be65,0x7f7eaa93,0xebad9897] },
1118 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
1119 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1120 ct: [0x323994cf,0xb9da285a,0x5d9642e1,0x759b224a] },
1121 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
1122 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1123 ct: [0x1dbf5787,0x7b7b1738,0x5c85d0b5,0x4851e371] },
1124 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
1125 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1126 ct: [0xdfa5c097,0xcdc1532a,0xc071d57b,0x1d28d1bd] },
1127 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
1128 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1129 ct: [0x3a0c53fa,0x37311fc1,0x0bd2a998,0x1f513174] },
1130 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
1131 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1132 ct: [0xba4f970c,0x0a25c418,0x14bdae2e,0x506be3b4] },
1133 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
1134 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1135 ct: [0x2dce3acb,0x727cd13c,0xcd76d425,0xea56e4f6] },
1136 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
1137 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1138 ct: [0x5160474d,0x504b9b3e,0xefb68d35,0xf245f4b3] },
1139 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
1140 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1141 ct: [0x41a8a947,0x766635de,0xc37553d9,0xa6c0cbb7] },
1142 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
1143 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1144 ct: [0x25d6cfe6,0x881f2bf4,0x97dd14cd,0x4ddf445b] },
1145 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
1146 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1147 ct: [0x41c78c13,0x5ed9e98c,0x09664064,0x7265da1e] },
1148 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
1149 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1150 ct: [0x5a4d404d,0x8917e353,0xe92a2107,0x2c3b2305] },
1151 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
1152 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1153 ct: [0x02bc9684,0x6b3fdc71,0x643f384c,0xd3cc3eaf] },
1154 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
1155 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1156 ct: [0x9ba4a914,0x3f4e5d40,0x48521c4f,0x8877d88e] },
1157 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
1158 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
1159 ct: [0xa1f6258c,0x877d5fcd,0x89644845,0x38bfc92c] },
1160 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1161 pt: [0x80000000,0x00000000,0x00000000,0x00000000],
1162 ct: [0x3ad78e72,0x6c1ec02b,0x7ebfe92b,0x23d9ec34] },
1163 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1164 pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
1165 ct: [0xaae5939c,0x8efdf2f0,0x4e60b9fe,0x7117b2c2] },
1166 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1167 pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
1168 ct: [0xf031d4d7,0x4f5dcbf3,0x9daaf8ca,0x3af6e527] },
1169 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1170 pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
1171 ct: [0x96d9fd5c,0xc4f07441,0x727df0f3,0x3e401a36] },
1172 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1173 pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
1174 ct: [0x30ccdb04,0x4646d7e1,0xf3ccea3d,0xca08b8c0] },
1175 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1176 pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
1177 ct: [0x16ae4ce5,0x042a67ee,0x8e177b7c,0x587ecc82] },
1178 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1179 pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
1180 ct: [0xb6da0bb1,0x1a23855d,0x9c5cb1b4,0xc6412e0a] },
1181 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1182 pt: [0xff000000,0x00000000,0x00000000,0x00000000],
1183 ct: [0xdb4f1aa5,0x30967d67,0x32ce4715,0xeb0ee24b] },
1184 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1185 pt: [0xff800000,0x00000000,0x00000000,0x00000000],
1186 ct: [0xa8173825,0x2621dd18,0x0a34f345,0x5b4baa2f] },
1187 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1188 pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
1189 ct: [0x77e2b508,0xdb7fd892,0x34caf793,0x9ee5621a] },
1190 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1191 pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
1192 ct: [0xb8499c25,0x1f8442ee,0x13f0933b,0x688fcd19] },
1193 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1194 pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
1195 ct: [0x965135f8,0xa81f25c9,0xd630b175,0x02f68e53] },
1196 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1197 pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
1198 ct: [0x8b87145a,0x01ad1c6c,0xede995ea,0x3670454f] },
1199 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1200 pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
1201 ct: [0x8eae3b10,0xa0c8ca6d,0x1d3b0fa6,0x1e56b0b2] },
1202 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1203 pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
1204 ct: [0x64b4d629,0x810fda6b,0xafdf08f3,0xb0d8d2c5] },
1205 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1206 pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
1207 ct: [0xd7e5dbd3,0x324595f8,0xfdc7d7c5,0x71da6c2a] },
1208 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1209 pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
1210 ct: [0xf3f72375,0x264e167f,0xca9de2c1,0x527d9606] },
1211 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1212 pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
1213 ct: [0x8ee79dd4,0xf401ff9b,0x7ea945d8,0x6666c13b] },
1214 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1215 pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
1216 ct: [0xdd35cea2,0x799940b4,0x0db3f819,0xcb94c08b] },
1217 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1218 pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
1219 ct: [0x6941cb6b,0x3e08c2b7,0xafa581eb,0xdd607b87] },
1220 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1221 pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
1222 ct: [0x2c20f439,0xf6bb097b,0x29b8bd6d,0x99aad799] },
1223 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1224 pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
1225 ct: [0x625d01f0,0x58e565f7,0x7ae86378,0xbd2c49b3] },
1226 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1227 pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
1228 ct: [0xc0b5fd98,0x190ef45f,0xbb430143,0x8d095950] },
1229 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1230 pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
1231 ct: [0x13001ff5,0xd99806ef,0xd25da34f,0x56be854b] },
1232 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1233 pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
1234 ct: [0x3b594c60,0xf5c8277a,0x5113677f,0x94208d82] },
1235 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1236 pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
1237 ct: [0xe9c0fc18,0x18e4aa46,0xbd2e39d6,0x38f89e05] },
1238 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1239 pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
1240 ct: [0xf8023ee9,0xc3fdc45a,0x019b4e98,0x5c7e1a54] },
1241 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1242 pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
1243 ct: [0x35f40182,0xab4662f3,0x023baec1,0xee796b57] },
1244 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1245 pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
1246 ct: [0x3aebbad7,0x303649b4,0x194a6945,0xc6cc3694] },
1247 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1248 pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
1249 ct: [0xa2124bea,0x53ec2834,0x279bed7f,0x7eb0f938] },
1250 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1251 pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
1252 ct: [0xb9fb4399,0xfa4facc7,0x309e14ec,0x98360b0a] },
1253 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1254 pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
1255 ct: [0xc2627743,0x7420c5d6,0x34f715ae,0xa81a9132] },
1256 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1257 pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
1258 ct: [0x171a0e1b,0x2dd424f0,0xe089af2c,0x4c10f32f] },
1259 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1260 pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
1261 ct: [0x7cadbe40,0x2d1b208f,0xe735edce,0x00aee7ce] },
1262 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1263 pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
1264 ct: [0x43b02ff9,0x29a1485a,0xf6f5c6d6,0x558baa0f] },
1265 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1266 pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
1267 ct: [0x092faacc,0x9bf43508,0xbf8fa861,0x3ca75dea] },
1268 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1269 pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
1270 ct: [0xcb2bf828,0x0f3f9742,0xc7ed513f,0xe802629c] },
1271 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1272 pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
1273 ct: [0x215a41ee,0x442fa992,0xa6e32398,0x6ded3f68] },
1274 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1275 pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
1276 ct: [0xf21e99cf,0x4f0f77ce,0xa836e11a,0x2fe75fb1] },
1277 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1278 pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
1279 ct: [0x95e3a0ca,0x9079e646,0x331df8b4,0xe70d2cd6] },
1280 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1281 pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
1282 ct: [0x4afe7f12,0x0ce7613f,0x74fc12a0,0x1a828073] },
1283 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1284 pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
1285 ct: [0x827f000e,0x75e2c8b9,0xd479beed,0x913fe678] },
1286 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1287 pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
1288 ct: [0x35830c8e,0x7aaefe2d,0x30310ef3,0x81cbf691] },
1289 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1290 pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
1291 ct: [0x191aa0f2,0xc8570144,0xf38657ea,0x4085ebe5] },
1292 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1293 pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
1294 ct: [0x85062c2c,0x909f15d9,0x269b6c18,0xce99c4f0] },
1295 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1296 pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
1297 ct: [0x678034dc,0x9e41b5a5,0x60ed239e,0xeab1bc78] },
1298 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1299 pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
1300 ct: [0xc2f93a4c,0xe5ab6d5d,0x56f1b93c,0xf19911c1] },
1301 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1302 pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
1303 ct: [0x1c3112bc,0xb0c1dcc7,0x49d79974,0x3691bf82] },
1304 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1305 pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
1306 ct: [0x00c55bd7,0x5c7f9c88,0x1989d3ec,0x1911c0d4] },
1307 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1308 pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
1309 ct: [0xea2e6b5e,0xf182b7df,0xf3629abd,0x6a12045f] },
1310 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1311 pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
1312 ct: [0x22322327,0xe01780b1,0x7397f240,0x87f8cc6f] },
1313 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1314 pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
1315 ct: [0xc9cacb5c,0xd11692c3,0x73b24117,0x68149ee7] },
1316 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1317 pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
1318 ct: [0xa18e3dbb,0xca577860,0xdab6b80d,0xa3139256] },
1319 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1320 pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
1321 ct: [0x79b61c37,0xbf328ecc,0xa8d74326,0x5a3d425c] },
1322 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1323 pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
1324 ct: [0xd2d99c6b,0xcc1f06fd,0xa8e27e8a,0xe3f1ccc7] },
1325 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1326 pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
1327 ct: [0x1bfd4b91,0xc701fd6b,0x61b7f997,0x829d663b] },
1328 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1329 pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
1330 ct: [0x11005d52,0xf25f16bd,0xc9545a87,0x6a63490a] },
1331 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1332 pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
1333 ct: [0x3a4d354f,0x02bb5a5e,0x47d39666,0x867f246a] },
1334 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1335 pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
1336 ct: [0xd451b8d6,0xe1e1a0eb,0xb155fbbf,0x6e7b7dc3] },
1337 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1338 pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
1339 ct: [0x6898d4f4,0x2fa7ba6a,0x10ac05e8,0x7b9f2080] },
1340 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1341 pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
1342 ct: [0xb611295e,0x739ca7d9,0xb50f8e4c,0x0e754a3f] },
1343 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1344 pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
1345 ct: [0x7d33fc7d,0x8abe3ca1,0x936759f8,0xf5deaf20] },
1346 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1347 pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
1348 ct: [0x3b5e0f56,0x6dc96c29,0x8f0c1263,0x7539b25c] },
1349 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1350 pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
1351 ct: [0xf807c3e7,0x985fe0f5,0xa50e2cdb,0x25c5109e] },
1352 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1353 pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
1354 ct: [0x41f992a8,0x56fb278b,0x389a62f5,0xd274d7e9] },
1355 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1356 pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
1357 ct: [0x10d3ed7a,0x6fe15ab4,0xd91acbc7,0xd0767ab1] },
1358 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1359 pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
1360 ct: [0x21feecd4,0x5b2e6759,0x73ac33bf,0x0c5424fc] },
1361 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1362 pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
1363 ct: [0x1480cb39,0x55ba62d0,0x9eea668f,0x7c708817] },
1364 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1365 pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
1366 ct: [0x66404033,0xd6b72b60,0x9354d549,0x6e7eb511] },
1367 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1368 pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
1369 ct: [0x1c317a22,0x0a7d700d,0xa2b1e075,0xb00266e1] },
1370 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1371 pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
1372 ct: [0xab3b8954,0x2233f127,0x1bf8fd0c,0x0f403545] },
1373 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1374 pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
1375 ct: [0xd93eae96,0x6fac46dc,0xa927d6b1,0x14fa3f9e] },
1376 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1377 pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
1378 ct: [0x1bdec521,0x316503d9,0xd5ee65df,0x3ea94ddf] },
1379 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1380 pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
1381 ct: [0xeef45643,0x1dea8b4a,0xcf83bdae,0x3717f75f] },
1382 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1383 pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
1384 ct: [0x06f2519a,0x2fafaa59,0x6bfef5cf,0xa15c21b9] },
1385 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1386 pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
1387 ct: [0x251a7eac,0x7e2fe809,0xe4aa8d0d,0x7012531a] },
1388 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1389 pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
1390 ct: [0x3bffc16e,0x4c49b268,0xa20f8d96,0xa60b4058] },
1391 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1392 pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
1393 ct: [0xe886f928,0x1999c5bb,0x3b3e8862,0xe2f7c988] },
1394 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1395 pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
1396 ct: [0x563bf90d,0x61beef39,0xf48dd625,0xfcef1361] },
1397 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1398 pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
1399 ct: [0x4d37c850,0x644563c6,0x9fd0acd9,0xa049325b] },
1400 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1401 pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
1402 ct: [0xb87c921b,0x91829ef3,0xb13ca541,0xee1130a6] },
1403 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1404 pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
1405 ct: [0x2e65eb6b,0x6ea383e1,0x09accce8,0x326b0393] },
1406 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1407 pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
1408 ct: [0x9ca547f7,0x439edc3e,0x255c0f4d,0x49aa8990] },
1409 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1410 pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
1411 ct: [0xa5e65261,0x4c9300f3,0x7816b1f9,0xfd0c87f9] },
1412 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1413 pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
1414 ct: [0x14954f0b,0x4697776f,0x44494fe4,0x58d814ed] },
1415 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1416 pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
1417 ct: [0x7c8d9ab6,0xc2761723,0xfe42f8bb,0x506cbcf7] },
1418 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1419 pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
1420 ct: [0xdb7e1932,0x679fdd99,0x742aab04,0xaa0d5a80] },
1421 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1422 pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
1423 ct: [0x4c6a1c83,0xe568cd10,0xf27c2d73,0xded19c28] },
1424 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1425 pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
1426 ct: [0x90ecbe61,0x77e674c9,0x8de41241,0x3f7ac915] },
1427 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1428 pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
1429 ct: [0x90684a2a,0xc55fe1ec,0x2b8ebd56,0x22520b73] },
1430 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1431 pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
1432 ct: [0x7472f9a7,0x988607ca,0x79707795,0x991035e6] },
1433 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1434 pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
1435 ct: [0x56aff089,0x878bf335,0x2f8df172,0xa3ae47d8] },
1436 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1437 pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
1438 ct: [0x65c0526c,0xbe40161b,0x8019a2a3,0x171abd23] },
1439 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1440 pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
1441 ct: [0x377be0be,0x33b4e3e3,0x10b4aabd,0xa173f84f] },
1442 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1443 pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
1444 ct: [0x9402e9aa,0x6f69de65,0x04da8d20,0xc4fcaa2f] },
1445 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1446 pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
1447 ct: [0x123c1f4a,0xf313ad8c,0x2ce648b2,0xe71fb6e1] },
1448 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1449 pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
1450 ct: [0x1ffc626d,0x30203dcd,0xb0019fb8,0x0f726cf4] },
1451 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1452 pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
1453 ct: [0x76da1fbe,0x3a50728c,0x50fd2e62,0x1b5ad885] },
1454 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1455 pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
1456 ct: [0x082eb8be,0x35f442fb,0x52668e16,0xa591d1d6] },
1457 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1458 pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
1459 ct: [0xe656f9ec,0xf5fe27ec,0x3e4a73d0,0x0c282fb3] },
1460 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1461 pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
1462 ct: [0x2ca8209d,0x63274cd9,0xa29bb74b,0xcd77683a] },
1463 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1464 pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
1465 ct: [0x79bf5dce,0x14bb7dd7,0x3a8e3611,0xde7ce026] },
1466 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1467 pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
1468 ct: [0x3c849939,0xa5d29399,0xf344c4a0,0xeca8a576] },
1469 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1470 pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
1471 ct: [0xed3c0a94,0xd59bece9,0x8835da7a,0xa4f07ca2] },
1472 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1473 pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
1474 ct: [0x63919ed4,0xce101964,0x38b6ad09,0xd99cd795] },
1475 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1476 pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
1477 ct: [0x7678f3a8,0x33f19fea,0x95f3c602,0x9e2bc610] },
1478 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1479 pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
1480 ct: [0x3aa42683,0x1067d36b,0x92be7c5f,0x81c13c56] },
1481 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1482 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
1483 ct: [0x9272e2d2,0xcdd11050,0x998c8450,0x77a30ea0] },
1484 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1485 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
1486 ct: [0x088c4b53,0xf5ec0ff8,0x14c19ada,0xe7f6246c] },
1487 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1488 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
1489 ct: [0x4010a5e4,0x01fdf0a0,0x354ddbcc,0x0d012b17] },
1490 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1491 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
1492 ct: [0xa87a3857,0x36c0a618,0x9bd6589b,0xd8445a93] },
1493 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1494 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
1495 ct: [0x545f2b83,0xd9616dcc,0xf60fa983,0x0e9cd287] },
1496 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1497 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
1498 ct: [0x4b706f7f,0x92406352,0x394037a6,0xd4f4688d] },
1499 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1500 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
1501 ct: [0xb7972b39,0x41c44b90,0xafa7b264,0xbfba7387] },
1502 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1503 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
1504 ct: [0x6f45732c,0xf1088154,0x6f0fd238,0x96d2bb60] },
1505 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1506 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
1507 ct: [0x2e3579ca,0x15af27f6,0x4b3c955a,0x5bfc30ba] },
1508 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1509 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
1510 ct: [0x34a2c5a9,0x1ae2aec9,0x9b7d1b5f,0xa6780447] },
1511 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1512 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
1513 ct: [0xa4d6616b,0xd04f8733,0x5b0e5335,0x1227a9ee] },
1514 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1515 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
1516 ct: [0x7f692b03,0x945867d1,0x6179a8ce,0xfc83ea3f] },
1517 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1518 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
1519 ct: [0x3bd141ee,0x84a0e641,0x4a26e7a4,0xf281f8a2] },
1520 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1521 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
1522 ct: [0xd1788f57,0x2d98b2b1,0x6ec5d5f3,0x922b99bc] },
1523 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1524 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
1525 ct: [0x0833ff6f,0x61d98a57,0xb288e8c3,0x586b85a6] },
1526 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1527 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
1528 ct: [0x85682617,0x97de176b,0xf0b43bec,0xc6285afb] },
1529 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1530 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
1531 ct: [0xf9b0fda0,0xc4a898f5,0xb9e6f661,0xc4ce4d07] },
1532 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1533 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
1534 ct: [0x8ade8959,0x13685c67,0xc5269f8a,0xae42983e] },
1535 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1536 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
1537 ct: [0x39bde67d,0x5c8ed8a8,0xb1c37eb8,0xfa9f5ac0] },
1538 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1539 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
1540 ct: [0x5c005e72,0xc1418c44,0xf569f2ea,0x33ba54f3] },
1541 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1542 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
1543 ct: [0x3f5b8cc9,0xea855a0a,0xfa7347d2,0x3e8d664e] },
1544 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1545 pt: [0x80000000,0x00000000,0x00000000,0x00000000],
1546 ct: [0x3ad78e72,0x6c1ec02b,0x7ebfe92b,0x23d9ec34] },
1547 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1548 pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
1549 ct: [0xaae5939c,0x8efdf2f0,0x4e60b9fe,0x7117b2c2] },
1550 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1551 pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
1552 ct: [0xf031d4d7,0x4f5dcbf3,0x9daaf8ca,0x3af6e527] },
1553 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1554 pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
1555 ct: [0x96d9fd5c,0xc4f07441,0x727df0f3,0x3e401a36] },
1556 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1557 pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
1558 ct: [0x30ccdb04,0x4646d7e1,0xf3ccea3d,0xca08b8c0] },
1559 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1560 pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
1561 ct: [0x16ae4ce5,0x042a67ee,0x8e177b7c,0x587ecc82] },
1562 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1563 pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
1564 ct: [0xb6da0bb1,0x1a23855d,0x9c5cb1b4,0xc6412e0a] },
1565 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1566 pt: [0xff000000,0x00000000,0x00000000,0x00000000],
1567 ct: [0xdb4f1aa5,0x30967d67,0x32ce4715,0xeb0ee24b] },
1568 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1569 pt: [0xff800000,0x00000000,0x00000000,0x00000000],
1570 ct: [0xa8173825,0x2621dd18,0x0a34f345,0x5b4baa2f] },
1571 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1572 pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
1573 ct: [0x77e2b508,0xdb7fd892,0x34caf793,0x9ee5621a] },
1574 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1575 pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
1576 ct: [0xb8499c25,0x1f8442ee,0x13f0933b,0x688fcd19] },
1577 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1578 pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
1579 ct: [0x965135f8,0xa81f25c9,0xd630b175,0x02f68e53] },
1580 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1581 pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
1582 ct: [0x8b87145a,0x01ad1c6c,0xede995ea,0x3670454f] },
1583 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1584 pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
1585 ct: [0x8eae3b10,0xa0c8ca6d,0x1d3b0fa6,0x1e56b0b2] },
1586 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1587 pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
1588 ct: [0x64b4d629,0x810fda6b,0xafdf08f3,0xb0d8d2c5] },
1589 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1590 pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
1591 ct: [0xd7e5dbd3,0x324595f8,0xfdc7d7c5,0x71da6c2a] },
1592 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1593 pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
1594 ct: [0xf3f72375,0x264e167f,0xca9de2c1,0x527d9606] },
1595 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1596 pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
1597 ct: [0x8ee79dd4,0xf401ff9b,0x7ea945d8,0x6666c13b] },
1598 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1599 pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
1600 ct: [0xdd35cea2,0x799940b4,0x0db3f819,0xcb94c08b] },
1601 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1602 pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
1603 ct: [0x6941cb6b,0x3e08c2b7,0xafa581eb,0xdd607b87] },
1604 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1605 pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
1606 ct: [0x2c20f439,0xf6bb097b,0x29b8bd6d,0x99aad799] },
1607 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1608 pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
1609 ct: [0x625d01f0,0x58e565f7,0x7ae86378,0xbd2c49b3] },
1610 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1611 pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
1612 ct: [0xc0b5fd98,0x190ef45f,0xbb430143,0x8d095950] },
1613 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1614 pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
1615 ct: [0x13001ff5,0xd99806ef,0xd25da34f,0x56be854b] },
1616 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1617 pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
1618 ct: [0x3b594c60,0xf5c8277a,0x5113677f,0x94208d82] },
1619 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1620 pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
1621 ct: [0xe9c0fc18,0x18e4aa46,0xbd2e39d6,0x38f89e05] },
1622 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1623 pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
1624 ct: [0xf8023ee9,0xc3fdc45a,0x019b4e98,0x5c7e1a54] },
1625 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1626 pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
1627 ct: [0x35f40182,0xab4662f3,0x023baec1,0xee796b57] },
1628 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1629 pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
1630 ct: [0x3aebbad7,0x303649b4,0x194a6945,0xc6cc3694] },
1631 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1632 pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
1633 ct: [0xa2124bea,0x53ec2834,0x279bed7f,0x7eb0f938] },
1634 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1635 pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
1636 ct: [0xb9fb4399,0xfa4facc7,0x309e14ec,0x98360b0a] },
1637 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1638 pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
1639 ct: [0xc2627743,0x7420c5d6,0x34f715ae,0xa81a9132] },
1640 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1641 pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
1642 ct: [0x171a0e1b,0x2dd424f0,0xe089af2c,0x4c10f32f] },
1643 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1644 pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
1645 ct: [0x7cadbe40,0x2d1b208f,0xe735edce,0x00aee7ce] },
1646 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1647 pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
1648 ct: [0x43b02ff9,0x29a1485a,0xf6f5c6d6,0x558baa0f] },
1649 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1650 pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
1651 ct: [0x092faacc,0x9bf43508,0xbf8fa861,0x3ca75dea] },
1652 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1653 pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
1654 ct: [0xcb2bf828,0x0f3f9742,0xc7ed513f,0xe802629c] },
1655 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1656 pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
1657 ct: [0x215a41ee,0x442fa992,0xa6e32398,0x6ded3f68] },
1658 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1659 pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
1660 ct: [0xf21e99cf,0x4f0f77ce,0xa836e11a,0x2fe75fb1] },
1661 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1662 pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
1663 ct: [0x95e3a0ca,0x9079e646,0x331df8b4,0xe70d2cd6] },
1664 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1665 pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
1666 ct: [0x4afe7f12,0x0ce7613f,0x74fc12a0,0x1a828073] },
1667 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1668 pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
1669 ct: [0x827f000e,0x75e2c8b9,0xd479beed,0x913fe678] },
1670 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1671 pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
1672 ct: [0x35830c8e,0x7aaefe2d,0x30310ef3,0x81cbf691] },
1673 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1674 pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
1675 ct: [0x191aa0f2,0xc8570144,0xf38657ea,0x4085ebe5] },
1676 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1677 pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
1678 ct: [0x85062c2c,0x909f15d9,0x269b6c18,0xce99c4f0] },
1679 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1680 pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
1681 ct: [0x678034dc,0x9e41b5a5,0x60ed239e,0xeab1bc78] },
1682 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1683 pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
1684 ct: [0xc2f93a4c,0xe5ab6d5d,0x56f1b93c,0xf19911c1] },
1685 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1686 pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
1687 ct: [0x1c3112bc,0xb0c1dcc7,0x49d79974,0x3691bf82] },
1688 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1689 pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
1690 ct: [0x00c55bd7,0x5c7f9c88,0x1989d3ec,0x1911c0d4] },
1691 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1692 pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
1693 ct: [0xea2e6b5e,0xf182b7df,0xf3629abd,0x6a12045f] },
1694 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1695 pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
1696 ct: [0x22322327,0xe01780b1,0x7397f240,0x87f8cc6f] },
1697 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1698 pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
1699 ct: [0xc9cacb5c,0xd11692c3,0x73b24117,0x68149ee7] },
1700 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1701 pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
1702 ct: [0xa18e3dbb,0xca577860,0xdab6b80d,0xa3139256] },
1703 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1704 pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
1705 ct: [0x79b61c37,0xbf328ecc,0xa8d74326,0x5a3d425c] },
1706 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1707 pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
1708 ct: [0xd2d99c6b,0xcc1f06fd,0xa8e27e8a,0xe3f1ccc7] },
1709 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1710 pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
1711 ct: [0x1bfd4b91,0xc701fd6b,0x61b7f997,0x829d663b] },
1712 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1713 pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
1714 ct: [0x11005d52,0xf25f16bd,0xc9545a87,0x6a63490a] },
1715 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1716 pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
1717 ct: [0x3a4d354f,0x02bb5a5e,0x47d39666,0x867f246a] },
1718 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1719 pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
1720 ct: [0xd451b8d6,0xe1e1a0eb,0xb155fbbf,0x6e7b7dc3] },
1721 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1722 pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
1723 ct: [0x6898d4f4,0x2fa7ba6a,0x10ac05e8,0x7b9f2080] },
1724 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1725 pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
1726 ct: [0xb611295e,0x739ca7d9,0xb50f8e4c,0x0e754a3f] },
1727 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1728 pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
1729 ct: [0x7d33fc7d,0x8abe3ca1,0x936759f8,0xf5deaf20] },
1730 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1731 pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
1732 ct: [0x3b5e0f56,0x6dc96c29,0x8f0c1263,0x7539b25c] },
1733 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1734 pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
1735 ct: [0xf807c3e7,0x985fe0f5,0xa50e2cdb,0x25c5109e] },
1736 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1737 pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
1738 ct: [0x41f992a8,0x56fb278b,0x389a62f5,0xd274d7e9] },
1739 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1740 pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
1741 ct: [0x10d3ed7a,0x6fe15ab4,0xd91acbc7,0xd0767ab1] },
1742 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1743 pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
1744 ct: [0x21feecd4,0x5b2e6759,0x73ac33bf,0x0c5424fc] },
1745 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1746 pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
1747 ct: [0x1480cb39,0x55ba62d0,0x9eea668f,0x7c708817] },
1748 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1749 pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
1750 ct: [0x66404033,0xd6b72b60,0x9354d549,0x6e7eb511] },
1751 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1752 pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
1753 ct: [0x1c317a22,0x0a7d700d,0xa2b1e075,0xb00266e1] },
1754 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1755 pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
1756 ct: [0xab3b8954,0x2233f127,0x1bf8fd0c,0x0f403545] },
1757 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1758 pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
1759 ct: [0xd93eae96,0x6fac46dc,0xa927d6b1,0x14fa3f9e] },
1760 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1761 pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
1762 ct: [0x1bdec521,0x316503d9,0xd5ee65df,0x3ea94ddf] },
1763 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1764 pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
1765 ct: [0xeef45643,0x1dea8b4a,0xcf83bdae,0x3717f75f] },
1766 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1767 pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
1768 ct: [0x06f2519a,0x2fafaa59,0x6bfef5cf,0xa15c21b9] },
1769 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1770 pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
1771 ct: [0x251a7eac,0x7e2fe809,0xe4aa8d0d,0x7012531a] },
1772 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1773 pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
1774 ct: [0x3bffc16e,0x4c49b268,0xa20f8d96,0xa60b4058] },
1775 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1776 pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
1777 ct: [0xe886f928,0x1999c5bb,0x3b3e8862,0xe2f7c988] },
1778 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1779 pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
1780 ct: [0x563bf90d,0x61beef39,0xf48dd625,0xfcef1361] },
1781 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1782 pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
1783 ct: [0x4d37c850,0x644563c6,0x9fd0acd9,0xa049325b] },
1784 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1785 pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
1786 ct: [0xb87c921b,0x91829ef3,0xb13ca541,0xee1130a6] },
1787 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1788 pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
1789 ct: [0x2e65eb6b,0x6ea383e1,0x09accce8,0x326b0393] },
1790 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1791 pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
1792 ct: [0x9ca547f7,0x439edc3e,0x255c0f4d,0x49aa8990] },
1793 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1794 pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
1795 ct: [0xa5e65261,0x4c9300f3,0x7816b1f9,0xfd0c87f9] },
1796 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1797 pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
1798 ct: [0x14954f0b,0x4697776f,0x44494fe4,0x58d814ed] },
1799 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1800 pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
1801 ct: [0x7c8d9ab6,0xc2761723,0xfe42f8bb,0x506cbcf7] },
1802 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1803 pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
1804 ct: [0xdb7e1932,0x679fdd99,0x742aab04,0xaa0d5a80] },
1805 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1806 pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
1807 ct: [0x4c6a1c83,0xe568cd10,0xf27c2d73,0xded19c28] },
1808 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1809 pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
1810 ct: [0x90ecbe61,0x77e674c9,0x8de41241,0x3f7ac915] },
1811 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1812 pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
1813 ct: [0x90684a2a,0xc55fe1ec,0x2b8ebd56,0x22520b73] },
1814 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1815 pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
1816 ct: [0x7472f9a7,0x988607ca,0x79707795,0x991035e6] },
1817 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1818 pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
1819 ct: [0x56aff089,0x878bf335,0x2f8df172,0xa3ae47d8] },
1820 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1821 pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
1822 ct: [0x65c0526c,0xbe40161b,0x8019a2a3,0x171abd23] },
1823 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1824 pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
1825 ct: [0x377be0be,0x33b4e3e3,0x10b4aabd,0xa173f84f] },
1826 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1827 pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
1828 ct: [0x9402e9aa,0x6f69de65,0x04da8d20,0xc4fcaa2f] },
1829 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1830 pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
1831 ct: [0x123c1f4a,0xf313ad8c,0x2ce648b2,0xe71fb6e1] },
1832 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1833 pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
1834 ct: [0x1ffc626d,0x30203dcd,0xb0019fb8,0x0f726cf4] },
1835 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1836 pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
1837 ct: [0x76da1fbe,0x3a50728c,0x50fd2e62,0x1b5ad885] },
1838 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1839 pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
1840 ct: [0x082eb8be,0x35f442fb,0x52668e16,0xa591d1d6] },
1841 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1842 pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
1843 ct: [0xe656f9ec,0xf5fe27ec,0x3e4a73d0,0x0c282fb3] },
1844 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1845 pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
1846 ct: [0x2ca8209d,0x63274cd9,0xa29bb74b,0xcd77683a] },
1847 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1848 pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
1849 ct: [0x79bf5dce,0x14bb7dd7,0x3a8e3611,0xde7ce026] },
1850 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1851 pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
1852 ct: [0x3c849939,0xa5d29399,0xf344c4a0,0xeca8a576] },
1853 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1854 pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
1855 ct: [0xed3c0a94,0xd59bece9,0x8835da7a,0xa4f07ca2] },
1856 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1857 pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
1858 ct: [0x63919ed4,0xce101964,0x38b6ad09,0xd99cd795] },
1859 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1860 pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
1861 ct: [0x7678f3a8,0x33f19fea,0x95f3c602,0x9e2bc610] },
1862 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1863 pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
1864 ct: [0x3aa42683,0x1067d36b,0x92be7c5f,0x81c13c56] },
1865 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1866 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
1867 ct: [0x9272e2d2,0xcdd11050,0x998c8450,0x77a30ea0] },
1868 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1869 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
1870 ct: [0x088c4b53,0xf5ec0ff8,0x14c19ada,0xe7f6246c] },
1871 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1872 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
1873 ct: [0x4010a5e4,0x01fdf0a0,0x354ddbcc,0x0d012b17] },
1874 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1875 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
1876 ct: [0xa87a3857,0x36c0a618,0x9bd6589b,0xd8445a93] },
1877 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1878 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
1879 ct: [0x545f2b83,0xd9616dcc,0xf60fa983,0x0e9cd287] },
1880 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1881 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
1882 ct: [0x4b706f7f,0x92406352,0x394037a6,0xd4f4688d] },
1883 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1884 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
1885 ct: [0xb7972b39,0x41c44b90,0xafa7b264,0xbfba7387] },
1886 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1887 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
1888 ct: [0x6f45732c,0xf1088154,0x6f0fd238,0x96d2bb60] },
1889 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1890 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
1891 ct: [0x2e3579ca,0x15af27f6,0x4b3c955a,0x5bfc30ba] },
1892 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1893 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
1894 ct: [0x34a2c5a9,0x1ae2aec9,0x9b7d1b5f,0xa6780447] },
1895 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1896 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
1897 ct: [0xa4d6616b,0xd04f8733,0x5b0e5335,0x1227a9ee] },
1898 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1899 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
1900 ct: [0x7f692b03,0x945867d1,0x6179a8ce,0xfc83ea3f] },
1901 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1902 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
1903 ct: [0x3bd141ee,0x84a0e641,0x4a26e7a4,0xf281f8a2] },
1904 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1905 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
1906 ct: [0xd1788f57,0x2d98b2b1,0x6ec5d5f3,0x922b99bc] },
1907 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1908 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
1909 ct: [0x0833ff6f,0x61d98a57,0xb288e8c3,0x586b85a6] },
1910 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1911 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
1912 ct: [0x85682617,0x97de176b,0xf0b43bec,0xc6285afb] },
1913 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1914 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
1915 ct: [0xf9b0fda0,0xc4a898f5,0xb9e6f661,0xc4ce4d07] },
1916 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1917 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
1918 ct: [0x8ade8959,0x13685c67,0xc5269f8a,0xae42983e] },
1919 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1920 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
1921 ct: [0x39bde67d,0x5c8ed8a8,0xb1c37eb8,0xfa9f5ac0] },
1922 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1923 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
1924 ct: [0x5c005e72,0xc1418c44,0xf569f2ea,0x33ba54f3] },
1925 { key: [0x00000000,0x00000000,0x00000000,0x00000000],
1926 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
1927 ct: [0x3f5b8cc9,0xea855a0a,0xfa7347d2,0x3e8d664e] },
1928 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1929 pt: [0x80000000,0x00000000,0x00000000,0x00000000],
1930 ct: [0x6cd02513,0xe8d4dc98,0x6b4afe08,0x7a60bd0c] },
1931 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1932 pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
1933 ct: [0x2ce1f8b7,0xe30627c1,0xc4519ead,0xa44bc436] },
1934 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1935 pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
1936 ct: [0x9946b5f8,0x7af446f5,0x796c1fee,0x63a2da24] },
1937 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1938 pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
1939 ct: [0x2a560364,0xce529efc,0x21788779,0x568d5555] },
1940 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1941 pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
1942 ct: [0x35c14718,0x37af4461,0x53bce55d,0x5ba72a0a] },
1943 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1944 pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
1945 ct: [0xce60bc52,0x386234f1,0x58f84341,0xe534cd9e] },
1946 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1947 pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
1948 ct: [0x8c7c27ff,0x32bcf8dc,0x2dc57c90,0xc2903961] },
1949 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1950 pt: [0xff000000,0x00000000,0x00000000,0x00000000],
1951 ct: [0x32bb6a7e,0xc84499e1,0x66f93600,0x3d55a5bb] },
1952 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1953 pt: [0xff800000,0x00000000,0x00000000,0x00000000],
1954 ct: [0xa5c772e5,0xc62631ef,0x660ee1d5,0x877f6d1b] },
1955 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1956 pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
1957 ct: [0x030d7e5b,0x64f380a7,0xe4ea5387,0xb5cd7f49] },
1958 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1959 pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
1960 ct: [0x0dc9a261,0x0037009b,0x698f11bb,0x7e86c83e] },
1961 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1962 pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
1963 ct: [0x0046612c,0x766d1840,0xc226364f,0x1fa7ed72] },
1964 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1965 pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
1966 ct: [0x4880c7e0,0x8f27befe,0x78590743,0xc05e698b] },
1967 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1968 pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
1969 ct: [0x2520ce82,0x9a26577f,0x0f4822c4,0xecc87401] },
1970 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1971 pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
1972 ct: [0x8765e8ac,0xc1697583,0x19cb46dc,0x7bcf3dca] },
1973 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1974 pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
1975 ct: [0xe98f4ba4,0xf073df4b,0xaa116d01,0x1dc24a28] },
1976 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1977 pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
1978 ct: [0xf378f68c,0x5dbf59e2,0x11b3a659,0xa7317d94] },
1979 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1980 pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
1981 ct: [0x283d3b06,0x9d8eb9fb,0x432d74b9,0x6ca762b4] },
1982 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1983 pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
1984 ct: [0xa7e1842e,0x8a87861c,0x221a5008,0x83245c51] },
1985 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1986 pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
1987 ct: [0x77aa2704,0x71881be0,0x70fb52c7,0x067ce732] },
1988 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1989 pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
1990 ct: [0x01b0f476,0xd484f43f,0x1aeb6efa,0x9361a8ac] },
1991 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1992 pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
1993 ct: [0x1c3a94f1,0xc052c55c,0x2d8359af,0xf2163b4f] },
1994 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1995 pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
1996 ct: [0xe8a067b6,0x04d5373d,0x8b0f2e05,0xa03b341b] },
1997 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
1998 pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
1999 ct: [0xa7876ec8,0x7f5a09bf,0xea42c77d,0xa30fd50e] },
2000 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2001 pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
2002 ct: [0x0cf3e9d3,0xa42be5b8,0x54ca65b1,0x3f35f48d] },
2003 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2004 pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
2005 ct: [0x6c62f6bb,0xcab7c3e8,0x21c9290f,0x08892dda] },
2006 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2007 pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
2008 ct: [0x7f5e05bd,0x20687381,0x96fee79a,0xce7e3aec] },
2009 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2010 pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
2011 ct: [0x440e0d73,0x3255cda9,0x2fb46e84,0x2fe58054] },
2012 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2013 pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
2014 ct: [0xaa5d5b1c,0x4ea1b7a2,0x2e5583ac,0x2e9ed8a7] },
2015 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2016 pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
2017 ct: [0x77e537e8,0x9e8491e8,0x662aae3b,0xc809421d] },
2018 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2019 pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
2020 ct: [0x997dd3e9,0xf1598bfa,0x73f75973,0xf7e93b76] },
2021 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2022 pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
2023 ct: [0x1b38d4f7,0x452afefc,0xb7fc7212,0x44e4b72e] },
2024 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2025 pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
2026 ct: [0x0be2b182,0x52e774dd,0xa30cdda0,0x2c6906e3] },
2027 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2028 pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
2029 ct: [0xd2695e59,0xc20361d8,0x2652d7d5,0x8b6f11b2] },
2030 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2031 pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
2032 ct: [0x902d88d1,0x3eae5208,0x9abd6143,0xcfe394e9] },
2033 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2034 pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
2035 ct: [0xd49bceb3,0xb823fedd,0x602c3053,0x45734bd2] },
2036 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2037 pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
2038 ct: [0x707b1dbb,0x0ffa40ef,0x7d95def4,0x21233fae] },
2039 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2040 pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
2041 ct: [0x7ca0c1d9,0x3356d9eb,0x8aa95208,0x4d75f913] },
2042 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2043 pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
2044 ct: [0xf2cbf9cb,0x186e270d,0xd7bdb0c2,0x8febc57d] },
2045 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2046 pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
2047 ct: [0xc94337c3,0x7c4e790a,0xb45780bd,0x9c3674a0] },
2048 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2049 pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
2050 ct: [0x8e3558c1,0x35252fb9,0xc9f367ed,0x609467a1] },
2051 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2052 pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
2053 ct: [0x1b72eeae,0xe4899b44,0x3914e5b3,0xa57fba92] },
2054 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2055 pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
2056 ct: [0x011865f9,0x1bc56868,0xd051e52c,0x9efd59b7] },
2057 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2058 pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
2059 ct: [0xe4771318,0xad7a63dd,0x680f6e58,0x3b7747ea] },
2060 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2061 pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
2062 ct: [0x61e3d194,0x088dc8d9,0x7e9e6db3,0x7457eac5] },
2063 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2064 pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
2065 ct: [0x36ff1ec9,0xccfbc349,0xe5d356d0,0x63693ad6] },
2066 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2067 pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
2068 ct: [0x3cc9e9a9,0xbe8cc3f6,0xfb2ea240,0x88e9bb19] },
2069 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2070 pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
2071 ct: [0x1ee5ab00,0x3dc8722e,0x74905d9a,0x8fe3d350] },
2072 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2073 pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
2074 ct: [0x24533931,0x9584b0a4,0x12412869,0xd6c2eada] },
2075 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2076 pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
2077 ct: [0x7bd49691,0x8115d14e,0xd5380852,0x716c8814] },
2078 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2079 pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
2080 ct: [0x273ab2f2,0xb4a366a5,0x7d582a33,0x9313c8b1] },
2081 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2082 pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
2083 ct: [0x113365a9,0xffbe3b0c,0xa61e9850,0x7554168b] },
2084 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2085 pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
2086 ct: [0xafa99c99,0x7ac478a0,0xdea4119c,0x9e45f8b1] },
2087 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2088 pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
2089 ct: [0x9216309a,0x7842430b,0x83ffb986,0x38011512] },
2090 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2091 pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
2092 ct: [0x62abc792,0x28825849,0x2a7cb451,0x45f4b759] },
2093 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2094 pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
2095 ct: [0x534923c1,0x69d504d7,0x519c15d3,0x0e756c50] },
2096 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2097 pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
2098 ct: [0xfa75e05b,0xcdc7e00c,0x273fa33f,0x6ee441d2] },
2099 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2100 pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
2101 ct: [0x7d350fa6,0x057080f1,0x086a56b1,0x7ec240db] },
2102 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2103 pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
2104 ct: [0xf34e4a63,0x24ea4a5c,0x39a661c8,0xfe5ada8f] },
2105 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2106 pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
2107 ct: [0x0882a16f,0x44088d42,0x447a29ac,0x090ec17e] },
2108 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2109 pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
2110 ct: [0x3a3c15bf,0xc11a9537,0xc1306870,0x04e136ee] },
2111 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2112 pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
2113 ct: [0x22c0a767,0x8dc6d8cf,0x5c8a6d5a,0x9960767c] },
2114 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2115 pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
2116 ct: [0xb46b0980,0x9d68b9a4,0x56432a79,0xbdc2e38c] },
2117 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2118 pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
2119 ct: [0x93baaffb,0x35fbe739,0xc17c6ac2,0x2eecf18f] },
2120 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2121 pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
2122 ct: [0xc8aa80a7,0x850675bc,0x007c46df,0x06b49868] },
2123 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2124 pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
2125 ct: [0x12c6f387,0x7af421a9,0x18a84b77,0x5858021d] },
2126 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2127 pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
2128 ct: [0x33f12328,0x2c5d6339,0x24f7d5ba,0x3f3cab11] },
2129 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2130 pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
2131 ct: [0xa8f16100,0x2733e93c,0xa4527d22,0xc1a0c5bb] },
2132 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2133 pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
2134 ct: [0xb72f70eb,0xf3e3fda2,0x3f508eec,0x76b42c02] },
2135 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2136 pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
2137 ct: [0x6a9d965e,0x6274143f,0x25afdcfc,0x88ffd77c] },
2138 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2139 pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
2140 ct: [0xa0c74fd0,0xb9361764,0xce91c520,0x0b095357] },
2141 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2142 pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
2143 ct: [0x091d1fdc,0x2bd2c346,0xcd5046a8,0xc6209146] },
2144 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2145 pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
2146 ct: [0xe2a37580,0x116cfb71,0x85625449,0x6ab0aca8] },
2147 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2148 pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
2149 ct: [0xe0b3a007,0x85917c7e,0xfc9adba3,0x22813571] },
2150 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2151 pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
2152 ct: [0x733d41f4,0x727b5ef0,0xdf4af4cf,0x3cffa0cb] },
2153 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2154 pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
2155 ct: [0xa99ebb03,0x0260826f,0x981ad3e6,0x4490aa4f] },
2156 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2157 pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
2158 ct: [0x73f34c7d,0x3eae5e80,0x082c1647,0x524308ee] },
2159 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2160 pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
2161 ct: [0x40ebd5ad,0x082345b7,0xa2097ccd,0x3464da02] },
2162 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2163 pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
2164 ct: [0x7cc4ae9a,0x424b2cec,0x90c97153,0xc2457ec5] },
2165 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2166 pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
2167 ct: [0x54d632d0,0x3aba0bd0,0xf91877eb,0xdd4d09cb] },
2168 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2169 pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
2170 ct: [0xd3427be7,0xe4d27cd5,0x4f5fe37b,0x03cf0897] },
2171 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2172 pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
2173 ct: [0xb2099795,0xe88cc158,0xfd75ea13,0x3d7e7fbe] },
2174 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2175 pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
2176 ct: [0xa6cae46f,0xb6fadfe7,0xa2c302a3,0x4242817b] },
2177 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2178 pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
2179 ct: [0x026a7024,0xd6a902e0,0xb3ffccba,0xa910cc3f] },
2180 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2181 pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
2182 ct: [0x156f0776,0x7a85a431,0x2321f639,0x68338a01] },
2183 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2184 pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
2185 ct: [0x15eec9eb,0xf42b9ca7,0x6897d2cd,0x6c5a12e2] },
2186 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2187 pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
2188 ct: [0xdb0d3a6f,0xdcc13f91,0x5e2b302c,0xeeb70fd8] },
2189 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2190 pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
2191 ct: [0x71dbf37e,0x87a2e34d,0x15b20e8f,0x10e48924] },
2192 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2193 pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
2194 ct: [0xc745c451,0xe96ff3c0,0x45e4367c,0x833e3b54] },
2195 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2196 pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
2197 ct: [0x340da09c,0x2dd11c3b,0x679d08cc,0xd27dd595] },
2198 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2199 pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
2200 ct: [0x8279f7c0,0xc2a03ee6,0x60c6d392,0xdb025d18] },
2201 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2202 pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
2203 ct: [0xa4b2c7d8,0xeba531ff,0x47c5041a,0x55fbd1ec] },
2204 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2205 pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
2206 ct: [0x74569a2c,0xa5a7bd51,0x31ce8dc7,0xcbfbf72f] },
2207 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2208 pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
2209 ct: [0x3713da0c,0x0219b634,0x54035613,0xb5a403dd] },
2210 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2211 pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
2212 ct: [0x8827551d,0xdcc9df23,0xfa72a3de,0x4e9f0b07] },
2213 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2214 pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
2215 ct: [0x2e3febfd,0x625bfcd0,0xa2c06eb4,0x60da1732] },
2216 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2217 pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
2218 ct: [0xee82e6ba,0x488156f7,0x6496311d,0xa6941deb] },
2219 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2220 pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
2221 ct: [0x4770446f,0x01d1f391,0x256e85a1,0xb30d89d3] },
2222 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2223 pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
2224 ct: [0xaf04b68f,0x104f21ef,0x2afb4767,0xcf74143c] },
2225 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2226 pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
2227 ct: [0xcf3579a9,0xba38c8e4,0x3653173e,0x14f3a4c6] },
2228 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2229 pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
2230 ct: [0xb3bba904,0xf4953e09,0xb54800af,0x2f62e7d4] },
2231 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2232 pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
2233 ct: [0xfc424965,0x6e14b29e,0xb9c44829,0xb4c59a46] },
2234 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2235 pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
2236 ct: [0x9b31568f,0xebe81cfc,0x2e65af1c,0x86d1a308] },
2237 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2238 pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
2239 ct: [0x9ca09c25,0xf273a766,0xdb98a480,0xce8dfedc] },
2240 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2241 pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
2242 ct: [0xb9099257,0x86f34c3c,0x92d97188,0x3c9fbedf] },
2243 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2244 pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
2245 ct: [0x82647f13,0x32fe570a,0x9d4d92b2,0xee771d3b] },
2246 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2247 pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
2248 ct: [0x3604a7e8,0x0832b3a9,0x9954bca6,0xf5b9f501] },
2249 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2250 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
2251 ct: [0x884607b1,0x28c5de3a,0xb39a529a,0x1ef51bef] },
2252 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2253 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
2254 ct: [0x670cfa09,0x3d1dbdb2,0x31704140,0x4102435e] },
2255 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2256 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
2257 ct: [0x7a867195,0xf3ce8769,0xcbd33650,0x2fbb5130] },
2258 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2259 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
2260 ct: [0x52efcf64,0xc72b2f7c,0xa5b3c836,0xb1078c15] },
2261 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2262 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
2263 ct: [0x4019250f,0x6eefb2ac,0x5ccbcae0,0x44e75c7e] },
2264 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2265 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
2266 ct: [0x022c4f6f,0x5a017d29,0x27856276,0x67ddef24] },
2267 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2268 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
2269 ct: [0xe9c21078,0xa2eb7e03,0x250f7100,0x0fa9e3ed] },
2270 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2271 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
2272 ct: [0xa13eaeeb,0x9cd391da,0x4e2b0949,0x0b3e7fad] },
2273 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2274 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
2275 ct: [0xc958a171,0xdca1d4ed,0x53e1af1d,0x380803a9] },
2276 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2277 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
2278 ct: [0x21442e07,0xa110667f,0x2583eaee,0xee44dc8c] },
2279 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2280 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
2281 ct: [0x59bbb353,0xcf1dd867,0xa6e33737,0xaf655e99] },
2282 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2283 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
2284 ct: [0x43cd3b25,0x375d0ce4,0x1087ff9f,0xe2829639] },
2285 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2286 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
2287 ct: [0x6b98b17e,0x80d1118e,0x3516bd76,0x8b285a84] },
2288 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2289 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
2290 ct: [0xae47ed36,0x76ca0c08,0xdeea02d9,0x5b81db58] },
2291 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2292 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
2293 ct: [0x34ec40dc,0x20413795,0xed53628e,0xa748720b] },
2294 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2295 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
2296 ct: [0x4dc68163,0xf8e98354,0x73253542,0xc8a65d46] },
2297 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2298 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
2299 ct: [0x2aabb999,0xf4369317,0x5af65c6c,0x612c46fb] },
2300 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2301 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
2302 ct: [0xe01f9449,0x9dac3547,0x515c5b1d,0x756f0f58] },
2303 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2304 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
2305 ct: [0x9d12435a,0x46480ce0,0x0ea349f7,0x1799df9a] },
2306 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2307 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
2308 ct: [0xcef41d16,0xd266bdfe,0x46938ad7,0x884cc0cf] },
2309 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2310 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
2311 ct: [0xb13db4da,0x1f718bc6,0x904797c8,0x2bcf2d32] },
2312 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2313 pt: [0x80000000,0x00000000,0x00000000,0x00000000],
2314 ct: [0x6cd02513,0xe8d4dc98,0x6b4afe08,0x7a60bd0c] },
2315 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2316 pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
2317 ct: [0x2ce1f8b7,0xe30627c1,0xc4519ead,0xa44bc436] },
2318 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2319 pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
2320 ct: [0x9946b5f8,0x7af446f5,0x796c1fee,0x63a2da24] },
2321 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2322 pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
2323 ct: [0x2a560364,0xce529efc,0x21788779,0x568d5555] },
2324 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2325 pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
2326 ct: [0x35c14718,0x37af4461,0x53bce55d,0x5ba72a0a] },
2327 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2328 pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
2329 ct: [0xce60bc52,0x386234f1,0x58f84341,0xe534cd9e] },
2330 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2331 pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
2332 ct: [0x8c7c27ff,0x32bcf8dc,0x2dc57c90,0xc2903961] },
2333 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2334 pt: [0xff000000,0x00000000,0x00000000,0x00000000],
2335 ct: [0x32bb6a7e,0xc84499e1,0x66f93600,0x3d55a5bb] },
2336 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2337 pt: [0xff800000,0x00000000,0x00000000,0x00000000],
2338 ct: [0xa5c772e5,0xc62631ef,0x660ee1d5,0x877f6d1b] },
2339 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2340 pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
2341 ct: [0x030d7e5b,0x64f380a7,0xe4ea5387,0xb5cd7f49] },
2342 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2343 pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
2344 ct: [0x0dc9a261,0x0037009b,0x698f11bb,0x7e86c83e] },
2345 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2346 pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
2347 ct: [0x0046612c,0x766d1840,0xc226364f,0x1fa7ed72] },
2348 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2349 pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
2350 ct: [0x4880c7e0,0x8f27befe,0x78590743,0xc05e698b] },
2351 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2352 pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
2353 ct: [0x2520ce82,0x9a26577f,0x0f4822c4,0xecc87401] },
2354 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2355 pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
2356 ct: [0x8765e8ac,0xc1697583,0x19cb46dc,0x7bcf3dca] },
2357 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2358 pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
2359 ct: [0xe98f4ba4,0xf073df4b,0xaa116d01,0x1dc24a28] },
2360 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2361 pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
2362 ct: [0xf378f68c,0x5dbf59e2,0x11b3a659,0xa7317d94] },
2363 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2364 pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
2365 ct: [0x283d3b06,0x9d8eb9fb,0x432d74b9,0x6ca762b4] },
2366 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2367 pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
2368 ct: [0xa7e1842e,0x8a87861c,0x221a5008,0x83245c51] },
2369 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2370 pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
2371 ct: [0x77aa2704,0x71881be0,0x70fb52c7,0x067ce732] },
2372 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2373 pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
2374 ct: [0x01b0f476,0xd484f43f,0x1aeb6efa,0x9361a8ac] },
2375 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2376 pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
2377 ct: [0x1c3a94f1,0xc052c55c,0x2d8359af,0xf2163b4f] },
2378 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2379 pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
2380 ct: [0xe8a067b6,0x04d5373d,0x8b0f2e05,0xa03b341b] },
2381 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2382 pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
2383 ct: [0xa7876ec8,0x7f5a09bf,0xea42c77d,0xa30fd50e] },
2384 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2385 pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
2386 ct: [0x0cf3e9d3,0xa42be5b8,0x54ca65b1,0x3f35f48d] },
2387 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2388 pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
2389 ct: [0x6c62f6bb,0xcab7c3e8,0x21c9290f,0x08892dda] },
2390 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2391 pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
2392 ct: [0x7f5e05bd,0x20687381,0x96fee79a,0xce7e3aec] },
2393 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2394 pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
2395 ct: [0x440e0d73,0x3255cda9,0x2fb46e84,0x2fe58054] },
2396 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2397 pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
2398 ct: [0xaa5d5b1c,0x4ea1b7a2,0x2e5583ac,0x2e9ed8a7] },
2399 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2400 pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
2401 ct: [0x77e537e8,0x9e8491e8,0x662aae3b,0xc809421d] },
2402 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2403 pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
2404 ct: [0x997dd3e9,0xf1598bfa,0x73f75973,0xf7e93b76] },
2405 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2406 pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
2407 ct: [0x1b38d4f7,0x452afefc,0xb7fc7212,0x44e4b72e] },
2408 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2409 pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
2410 ct: [0x0be2b182,0x52e774dd,0xa30cdda0,0x2c6906e3] },
2411 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2412 pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
2413 ct: [0xd2695e59,0xc20361d8,0x2652d7d5,0x8b6f11b2] },
2414 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2415 pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
2416 ct: [0x902d88d1,0x3eae5208,0x9abd6143,0xcfe394e9] },
2417 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2418 pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
2419 ct: [0xd49bceb3,0xb823fedd,0x602c3053,0x45734bd2] },
2420 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2421 pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
2422 ct: [0x707b1dbb,0x0ffa40ef,0x7d95def4,0x21233fae] },
2423 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2424 pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
2425 ct: [0x7ca0c1d9,0x3356d9eb,0x8aa95208,0x4d75f913] },
2426 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2427 pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
2428 ct: [0xf2cbf9cb,0x186e270d,0xd7bdb0c2,0x8febc57d] },
2429 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2430 pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
2431 ct: [0xc94337c3,0x7c4e790a,0xb45780bd,0x9c3674a0] },
2432 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2433 pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
2434 ct: [0x8e3558c1,0x35252fb9,0xc9f367ed,0x609467a1] },
2435 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2436 pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
2437 ct: [0x1b72eeae,0xe4899b44,0x3914e5b3,0xa57fba92] },
2438 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2439 pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
2440 ct: [0x011865f9,0x1bc56868,0xd051e52c,0x9efd59b7] },
2441 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2442 pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
2443 ct: [0xe4771318,0xad7a63dd,0x680f6e58,0x3b7747ea] },
2444 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2445 pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
2446 ct: [0x61e3d194,0x088dc8d9,0x7e9e6db3,0x7457eac5] },
2447 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2448 pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
2449 ct: [0x36ff1ec9,0xccfbc349,0xe5d356d0,0x63693ad6] },
2450 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2451 pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
2452 ct: [0x3cc9e9a9,0xbe8cc3f6,0xfb2ea240,0x88e9bb19] },
2453 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2454 pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
2455 ct: [0x1ee5ab00,0x3dc8722e,0x74905d9a,0x8fe3d350] },
2456 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2457 pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
2458 ct: [0x24533931,0x9584b0a4,0x12412869,0xd6c2eada] },
2459 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2460 pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
2461 ct: [0x7bd49691,0x8115d14e,0xd5380852,0x716c8814] },
2462 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2463 pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
2464 ct: [0x273ab2f2,0xb4a366a5,0x7d582a33,0x9313c8b1] },
2465 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2466 pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
2467 ct: [0x113365a9,0xffbe3b0c,0xa61e9850,0x7554168b] },
2468 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2469 pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
2470 ct: [0xafa99c99,0x7ac478a0,0xdea4119c,0x9e45f8b1] },
2471 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2472 pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
2473 ct: [0x9216309a,0x7842430b,0x83ffb986,0x38011512] },
2474 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2475 pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
2476 ct: [0x62abc792,0x28825849,0x2a7cb451,0x45f4b759] },
2477 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2478 pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
2479 ct: [0x534923c1,0x69d504d7,0x519c15d3,0x0e756c50] },
2480 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2481 pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
2482 ct: [0xfa75e05b,0xcdc7e00c,0x273fa33f,0x6ee441d2] },
2483 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2484 pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
2485 ct: [0x7d350fa6,0x057080f1,0x086a56b1,0x7ec240db] },
2486 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2487 pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
2488 ct: [0xf34e4a63,0x24ea4a5c,0x39a661c8,0xfe5ada8f] },
2489 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2490 pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
2491 ct: [0x0882a16f,0x44088d42,0x447a29ac,0x090ec17e] },
2492 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2493 pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
2494 ct: [0x3a3c15bf,0xc11a9537,0xc1306870,0x04e136ee] },
2495 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2496 pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
2497 ct: [0x22c0a767,0x8dc6d8cf,0x5c8a6d5a,0x9960767c] },
2498 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2499 pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
2500 ct: [0xb46b0980,0x9d68b9a4,0x56432a79,0xbdc2e38c] },
2501 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2502 pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
2503 ct: [0x93baaffb,0x35fbe739,0xc17c6ac2,0x2eecf18f] },
2504 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2505 pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
2506 ct: [0xc8aa80a7,0x850675bc,0x007c46df,0x06b49868] },
2507 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2508 pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
2509 ct: [0x12c6f387,0x7af421a9,0x18a84b77,0x5858021d] },
2510 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2511 pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
2512 ct: [0x33f12328,0x2c5d6339,0x24f7d5ba,0x3f3cab11] },
2513 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2514 pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
2515 ct: [0xa8f16100,0x2733e93c,0xa4527d22,0xc1a0c5bb] },
2516 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2517 pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
2518 ct: [0xb72f70eb,0xf3e3fda2,0x3f508eec,0x76b42c02] },
2519 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2520 pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
2521 ct: [0x6a9d965e,0x6274143f,0x25afdcfc,0x88ffd77c] },
2522 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2523 pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
2524 ct: [0xa0c74fd0,0xb9361764,0xce91c520,0x0b095357] },
2525 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2526 pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
2527 ct: [0x091d1fdc,0x2bd2c346,0xcd5046a8,0xc6209146] },
2528 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2529 pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
2530 ct: [0xe2a37580,0x116cfb71,0x85625449,0x6ab0aca8] },
2531 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2532 pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
2533 ct: [0xe0b3a007,0x85917c7e,0xfc9adba3,0x22813571] },
2534 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2535 pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
2536 ct: [0x733d41f4,0x727b5ef0,0xdf4af4cf,0x3cffa0cb] },
2537 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2538 pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
2539 ct: [0xa99ebb03,0x0260826f,0x981ad3e6,0x4490aa4f] },
2540 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2541 pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
2542 ct: [0x73f34c7d,0x3eae5e80,0x082c1647,0x524308ee] },
2543 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2544 pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
2545 ct: [0x40ebd5ad,0x082345b7,0xa2097ccd,0x3464da02] },
2546 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2547 pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
2548 ct: [0x7cc4ae9a,0x424b2cec,0x90c97153,0xc2457ec5] },
2549 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2550 pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
2551 ct: [0x54d632d0,0x3aba0bd0,0xf91877eb,0xdd4d09cb] },
2552 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2553 pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
2554 ct: [0xd3427be7,0xe4d27cd5,0x4f5fe37b,0x03cf0897] },
2555 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2556 pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
2557 ct: [0xb2099795,0xe88cc158,0xfd75ea13,0x3d7e7fbe] },
2558 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2559 pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
2560 ct: [0xa6cae46f,0xb6fadfe7,0xa2c302a3,0x4242817b] },
2561 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2562 pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
2563 ct: [0x026a7024,0xd6a902e0,0xb3ffccba,0xa910cc3f] },
2564 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2565 pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
2566 ct: [0x156f0776,0x7a85a431,0x2321f639,0x68338a01] },
2567 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2568 pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
2569 ct: [0x15eec9eb,0xf42b9ca7,0x6897d2cd,0x6c5a12e2] },
2570 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2571 pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
2572 ct: [0xdb0d3a6f,0xdcc13f91,0x5e2b302c,0xeeb70fd8] },
2573 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2574 pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
2575 ct: [0x71dbf37e,0x87a2e34d,0x15b20e8f,0x10e48924] },
2576 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2577 pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
2578 ct: [0xc745c451,0xe96ff3c0,0x45e4367c,0x833e3b54] },
2579 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2580 pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
2581 ct: [0x340da09c,0x2dd11c3b,0x679d08cc,0xd27dd595] },
2582 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2583 pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
2584 ct: [0x8279f7c0,0xc2a03ee6,0x60c6d392,0xdb025d18] },
2585 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2586 pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
2587 ct: [0xa4b2c7d8,0xeba531ff,0x47c5041a,0x55fbd1ec] },
2588 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2589 pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
2590 ct: [0x74569a2c,0xa5a7bd51,0x31ce8dc7,0xcbfbf72f] },
2591 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2592 pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
2593 ct: [0x3713da0c,0x0219b634,0x54035613,0xb5a403dd] },
2594 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2595 pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
2596 ct: [0x8827551d,0xdcc9df23,0xfa72a3de,0x4e9f0b07] },
2597 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2598 pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
2599 ct: [0x2e3febfd,0x625bfcd0,0xa2c06eb4,0x60da1732] },
2600 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2601 pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
2602 ct: [0xee82e6ba,0x488156f7,0x6496311d,0xa6941deb] },
2603 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2604 pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
2605 ct: [0x4770446f,0x01d1f391,0x256e85a1,0xb30d89d3] },
2606 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2607 pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
2608 ct: [0xaf04b68f,0x104f21ef,0x2afb4767,0xcf74143c] },
2609 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2610 pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
2611 ct: [0xcf3579a9,0xba38c8e4,0x3653173e,0x14f3a4c6] },
2612 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2613 pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
2614 ct: [0xb3bba904,0xf4953e09,0xb54800af,0x2f62e7d4] },
2615 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2616 pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
2617 ct: [0xfc424965,0x6e14b29e,0xb9c44829,0xb4c59a46] },
2618 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2619 pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
2620 ct: [0x9b31568f,0xebe81cfc,0x2e65af1c,0x86d1a308] },
2621 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2622 pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
2623 ct: [0x9ca09c25,0xf273a766,0xdb98a480,0xce8dfedc] },
2624 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2625 pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
2626 ct: [0xb9099257,0x86f34c3c,0x92d97188,0x3c9fbedf] },
2627 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2628 pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
2629 ct: [0x82647f13,0x32fe570a,0x9d4d92b2,0xee771d3b] },
2630 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2631 pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
2632 ct: [0x3604a7e8,0x0832b3a9,0x9954bca6,0xf5b9f501] },
2633 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2634 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
2635 ct: [0x884607b1,0x28c5de3a,0xb39a529a,0x1ef51bef] },
2636 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2637 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
2638 ct: [0x670cfa09,0x3d1dbdb2,0x31704140,0x4102435e] },
2639 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2640 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
2641 ct: [0x7a867195,0xf3ce8769,0xcbd33650,0x2fbb5130] },
2642 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2643 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
2644 ct: [0x52efcf64,0xc72b2f7c,0xa5b3c836,0xb1078c15] },
2645 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2646 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
2647 ct: [0x4019250f,0x6eefb2ac,0x5ccbcae0,0x44e75c7e] },
2648 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2649 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
2650 ct: [0x022c4f6f,0x5a017d29,0x27856276,0x67ddef24] },
2651 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2652 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
2653 ct: [0xe9c21078,0xa2eb7e03,0x250f7100,0x0fa9e3ed] },
2654 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2655 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
2656 ct: [0xa13eaeeb,0x9cd391da,0x4e2b0949,0x0b3e7fad] },
2657 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2658 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
2659 ct: [0xc958a171,0xdca1d4ed,0x53e1af1d,0x380803a9] },
2660 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2661 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
2662 ct: [0x21442e07,0xa110667f,0x2583eaee,0xee44dc8c] },
2663 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2664 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
2665 ct: [0x59bbb353,0xcf1dd867,0xa6e33737,0xaf655e99] },
2666 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2667 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
2668 ct: [0x43cd3b25,0x375d0ce4,0x1087ff9f,0xe2829639] },
2669 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2670 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
2671 ct: [0x6b98b17e,0x80d1118e,0x3516bd76,0x8b285a84] },
2672 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2673 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
2674 ct: [0xae47ed36,0x76ca0c08,0xdeea02d9,0x5b81db58] },
2675 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2676 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
2677 ct: [0x34ec40dc,0x20413795,0xed53628e,0xa748720b] },
2678 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2679 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
2680 ct: [0x4dc68163,0xf8e98354,0x73253542,0xc8a65d46] },
2681 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2682 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
2683 ct: [0x2aabb999,0xf4369317,0x5af65c6c,0x612c46fb] },
2684 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2685 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
2686 ct: [0xe01f9449,0x9dac3547,0x515c5b1d,0x756f0f58] },
2687 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2688 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
2689 ct: [0x9d12435a,0x46480ce0,0x0ea349f7,0x1799df9a] },
2690 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2691 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
2692 ct: [0xcef41d16,0xd266bdfe,0x46938ad7,0x884cc0cf] },
2693 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2694 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
2695 ct: [0xb13db4da,0x1f718bc6,0x904797c8,0x2bcf2d32] },
2696 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2697 pt: [0x26aa49dc,0xfe7629a8,0x901a69a9,0x914e6dfd],
2698 ct: [0xd5e08bf9,0xa182e857,0xcf40b3a3,0x6ee248cc] },
2699 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2700 pt: [0x941a4773,0x058224e1,0xef66d10e,0x0a6ee782],
2701 ct: [0x067cd9d3,0x74920779,0x18415625,0x07fa9626] },
2702 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2703 pt: [0x1b077a6a,0xf4b7f982,0x29de786d,0x7516b639],
2704 ct: [0x275cfc04,0x13d8ccb7,0x0513c385,0x9b1d0f72] },
2705 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2706 pt: [0x9c2d8842,0xe5f48f57,0x648205d3,0x9a239af1],
2707 ct: [0xc9b8135f,0xf1b5adc4,0x13dfd053,0xb21bd96d] },
2708 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2709 pt: [0xbff52510,0x095f518e,0xcca60af4,0x205444bb],
2710 ct: [0x4a3650c3,0x371ce2eb,0x35e389a1,0x71427440] },
2711 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2712 pt: [0x51719783,0xd3185a53,0x5bd75adc,0x65071ce1],
2713 ct: [0x4f354592,0xff7c8847,0xd2d0870c,0xa9481b7c] },
2714 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2715 pt: [0x26aa49dc,0xfe7629a8,0x901a69a9,0x914e6dfd],
2716 ct: [0xd5e08bf9,0xa182e857,0xcf40b3a3,0x6ee248cc] },
2717 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2718 pt: [0x941a4773,0x058224e1,0xef66d10e,0x0a6ee782],
2719 ct: [0x067cd9d3,0x74920779,0x18415625,0x07fa9626] },
2720 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2721 pt: [0x1b077a6a,0xf4b7f982,0x29de786d,0x7516b639],
2722 ct: [0x275cfc04,0x13d8ccb7,0x0513c385,0x9b1d0f72] },
2723 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2724 pt: [0x9c2d8842,0xe5f48f57,0x648205d3,0x9a239af1],
2725 ct: [0xc9b8135f,0xf1b5adc4,0x13dfd053,0xb21bd96d] },
2726 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2727 pt: [0xbff52510,0x095f518e,0xcca60af4,0x205444bb],
2728 ct: [0x4a3650c3,0x371ce2eb,0x35e389a1,0x71427440] },
2729 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2730 pt: [0x51719783,0xd3185a53,0x5bd75adc,0x65071ce1],
2731 ct: [0x4f354592,0xff7c8847,0xd2d0870c,0xa9481b7c] },
2732 { key: [0xe9f065d7,0xc1357358,0x7f787535,0x7dfbb16c,0x53489f6a,0x4bd0f7cd],
2733 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2734 ct: [0x0956259c,0x9cd5cfd0,0x181cca53,0x380cde06] },
2735 { key: [0x15d20f6e,0xbc7e649f,0xd95b76b1,0x07e6daba,0x967c8a94,0x84797f29],
2736 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2737 ct: [0x8e4e1842,0x4e591a3d,0x5b6f0876,0xf16f8594] },
2738 { key: [0xa8a282ee,0x31c03fae,0x4f8e9b89,0x30d5473c,0x2ed695a3,0x47e88b7c],
2739 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2740 ct: [0x93f3270c,0xfc877ef1,0x7e106ce9,0x38979cb0] },
2741 { key: [0xcd62376d,0x5ebb4149,0x17f0c78f,0x05266433,0xdc9192a1,0xec943300],
2742 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2743 ct: [0x7f6c25ff,0x41858561,0xbb62f364,0x92e93c29] },
2744 { key: [0x502a6ab3,0x6984af26,0x8bf423c7,0xf5092052,0x07fc1552,0xaf4a91e5],
2745 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2746 ct: [0x8e06556d,0xcbb00b80,0x9a025047,0xcff2a940] },
2747 { key: [0x25a39dbf,0xd8034f71,0xa81f9ceb,0x55026e40,0x37f8f6aa,0x30ab44ce],
2748 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2749 ct: [0x3608c344,0x868e9455,0x5d23a120,0xf8a5502d] },
2750 { key: [0xe08c1541,0x1774ec4a,0x908b64ea,0xdc6ac419,0x9c7cd453,0xf3aaef53],
2751 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2752 ct: [0x77da2021,0x935b840b,0x7f5dcc39,0x132da9e5] },
2753 { key: [0x3b375a1f,0xf7e8d444,0x09696e63,0x26ec9dec,0x86138e2a,0xe010b980],
2754 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2755 ct: [0x3b7c24f8,0x25e3bf98,0x73c9f14d,0x39a0e6f4] },
2756 { key: [0x950bb9f2,0x2cc35be6,0xfe79f52c,0x320af93d,0xec5bc9c0,0xc2f9cd53],
2757 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2758 ct: [0x64ebf956,0x86b35350,0x8c90ecd8,0xb6134316] },
2759 { key: [0x7001c487,0xcc3e572c,0xfc92f4d0,0xe697d982,0xe8856fdc,0xc957da40],
2760 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2761 ct: [0xff558c5d,0x27210b79,0x29b73fc7,0x08eb4cf1] },
2762 { key: [0xf029ce61,0xd4e5a405,0xb41ead0a,0x883cc6a7,0x37da2cf5,0x0a6c92ae],
2763 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2764 ct: [0xa2c3b2a8,0x18075490,0xa7b4c143,0x80f02702] },
2765 { key: [0x61257134,0xa518a0d5,0x7d9d244d,0x45f6498c,0xbc32f2ba,0xfc522d79],
2766 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2767 ct: [0xcfe4d740,0x02696ccf,0x7d87b14a,0x2f9cafc9] },
2768 { key: [0xb0ab0a6a,0x818baef2,0xd11fa33e,0xac947284,0xfb7d748c,0xfb75e570],
2769 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2770 ct: [0xd2eafd86,0xf63b109b,0x91f5dbb3,0xa3fb7e13] },
2771 { key: [0xee053aa0,0x11c8b428,0xcdcc3636,0x313c54d6,0xa03cac01,0xc71579d6],
2772 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2773 ct: [0x9b9fdd1c,0x5975655f,0x539998b3,0x06a324af] },
2774 { key: [0xd2926527,0xe0aa9f37,0xb45e2ec2,0xade5853e,0xf8075761,0x04c7ace3],
2775 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2776 ct: [0xdd619e1c,0xf2044461,0x12e0af2b,0x9afa8f8c] },
2777 { key: [0x982215f4,0xe173dfa0,0xfcffe5d3,0xda41c481,0x2c7bcc8e,0xd3540f93],
2778 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2779 ct: [0xd4f0aae1,0x3c8fe933,0x9fbf9e69,0xed0ad74d] },
2780 { key: [0x98c6b8e0,0x1e379fbd,0x14e61af6,0xaf891596,0x583565f2,0xa27d59e9],
2781 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2782 ct: [0x19c80ec4,0xa6deb7e5,0xed1033dd,0xa933498f] },
2783 { key: [0xb3ad5cea,0x1dddc214,0xca969ac3,0x5f37dae1,0xa9a9d152,0x8f89bb35],
2784 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2785 ct: [0x3cf5e1d2,0x1a17956d,0x1dffad6a,0x7c41c659] },
2786 { key: [0x45899367,0xc3132849,0x763073c4,0x35a9288a,0x766c8b9e,0xc2308516],
2787 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2788 ct: [0x69fd12e8,0x505f8ded,0x2fdcb197,0xa121b362] },
2789 { key: [0xec250e04,0xc3903f60,0x2647b85a,0x401a1ae7,0xca2f02f6,0x7fa4253e],
2790 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2791 ct: [0x8aa584e2,0xcc4d1741,0x7a97cb9a,0x28ba29c8] },
2792 { key: [0xd077a03b,0xd8a38973,0x928ccafe,0x4a9d2f45,0x5130bd0a,0xf5ae46a9],
2793 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2794 ct: [0xabc786fb,0x1edb5045,0x80c4d882,0xef29a0c7] },
2795 { key: [0xd184c36c,0xf0dddfec,0x39e65419,0x50060222,0x37871a47,0xc33d3198],
2796 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2797 ct: [0x2e19fb60,0xa3e1de01,0x66f483c9,0x7824a978] },
2798 { key: [0x4c6994ff,0xa9dcdc80,0x5b60c2c0,0x095334c4,0x2d95a8fc,0x0ca5b080],
2799 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2800 ct: [0x76567095,0x38dd5fec,0x41e0ce6a,0x0f8e207d] },
2801 { key: [0xc88f5b00,0xa4ef9a68,0x40e2acaf,0x33f00a3b,0xdc4e2589,0x5303fa72],
2802 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2803 ct: [0xa67cf333,0xb314d411,0xd3c0ae6e,0x1cfcd8f5] },
2804 { key: [0xe9f065d7,0xc1357358,0x7f787535,0x7dfbb16c,0x53489f6a,0x4bd0f7cd],
2805 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2806 ct: [0x0956259c,0x9cd5cfd0,0x181cca53,0x380cde06] },
2807 { key: [0x15d20f6e,0xbc7e649f,0xd95b76b1,0x07e6daba,0x967c8a94,0x84797f29],
2808 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2809 ct: [0x8e4e1842,0x4e591a3d,0x5b6f0876,0xf16f8594] },
2810 { key: [0xa8a282ee,0x31c03fae,0x4f8e9b89,0x30d5473c,0x2ed695a3,0x47e88b7c],
2811 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2812 ct: [0x93f3270c,0xfc877ef1,0x7e106ce9,0x38979cb0] },
2813 { key: [0xcd62376d,0x5ebb4149,0x17f0c78f,0x05266433,0xdc9192a1,0xec943300],
2814 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2815 ct: [0x7f6c25ff,0x41858561,0xbb62f364,0x92e93c29] },
2816 { key: [0x502a6ab3,0x6984af26,0x8bf423c7,0xf5092052,0x07fc1552,0xaf4a91e5],
2817 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2818 ct: [0x8e06556d,0xcbb00b80,0x9a025047,0xcff2a940] },
2819 { key: [0x25a39dbf,0xd8034f71,0xa81f9ceb,0x55026e40,0x37f8f6aa,0x30ab44ce],
2820 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2821 ct: [0x3608c344,0x868e9455,0x5d23a120,0xf8a5502d] },
2822 { key: [0xe08c1541,0x1774ec4a,0x908b64ea,0xdc6ac419,0x9c7cd453,0xf3aaef53],
2823 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2824 ct: [0x77da2021,0x935b840b,0x7f5dcc39,0x132da9e5] },
2825 { key: [0x3b375a1f,0xf7e8d444,0x09696e63,0x26ec9dec,0x86138e2a,0xe010b980],
2826 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2827 ct: [0x3b7c24f8,0x25e3bf98,0x73c9f14d,0x39a0e6f4] },
2828 { key: [0x950bb9f2,0x2cc35be6,0xfe79f52c,0x320af93d,0xec5bc9c0,0xc2f9cd53],
2829 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2830 ct: [0x64ebf956,0x86b35350,0x8c90ecd8,0xb6134316] },
2831 { key: [0x7001c487,0xcc3e572c,0xfc92f4d0,0xe697d982,0xe8856fdc,0xc957da40],
2832 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2833 ct: [0xff558c5d,0x27210b79,0x29b73fc7,0x08eb4cf1] },
2834 { key: [0xf029ce61,0xd4e5a405,0xb41ead0a,0x883cc6a7,0x37da2cf5,0x0a6c92ae],
2835 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2836 ct: [0xa2c3b2a8,0x18075490,0xa7b4c143,0x80f02702] },
2837 { key: [0x61257134,0xa518a0d5,0x7d9d244d,0x45f6498c,0xbc32f2ba,0xfc522d79],
2838 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2839 ct: [0xcfe4d740,0x02696ccf,0x7d87b14a,0x2f9cafc9] },
2840 { key: [0xb0ab0a6a,0x818baef2,0xd11fa33e,0xac947284,0xfb7d748c,0xfb75e570],
2841 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2842 ct: [0xd2eafd86,0xf63b109b,0x91f5dbb3,0xa3fb7e13] },
2843 { key: [0xee053aa0,0x11c8b428,0xcdcc3636,0x313c54d6,0xa03cac01,0xc71579d6],
2844 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2845 ct: [0x9b9fdd1c,0x5975655f,0x539998b3,0x06a324af] },
2846 { key: [0xd2926527,0xe0aa9f37,0xb45e2ec2,0xade5853e,0xf8075761,0x04c7ace3],
2847 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2848 ct: [0xdd619e1c,0xf2044461,0x12e0af2b,0x9afa8f8c] },
2849 { key: [0x982215f4,0xe173dfa0,0xfcffe5d3,0xda41c481,0x2c7bcc8e,0xd3540f93],
2850 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2851 ct: [0xd4f0aae1,0x3c8fe933,0x9fbf9e69,0xed0ad74d] },
2852 { key: [0x98c6b8e0,0x1e379fbd,0x14e61af6,0xaf891596,0x583565f2,0xa27d59e9],
2853 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2854 ct: [0x19c80ec4,0xa6deb7e5,0xed1033dd,0xa933498f] },
2855 { key: [0xb3ad5cea,0x1dddc214,0xca969ac3,0x5f37dae1,0xa9a9d152,0x8f89bb35],
2856 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2857 ct: [0x3cf5e1d2,0x1a17956d,0x1dffad6a,0x7c41c659] },
2858 { key: [0x45899367,0xc3132849,0x763073c4,0x35a9288a,0x766c8b9e,0xc2308516],
2859 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2860 ct: [0x69fd12e8,0x505f8ded,0x2fdcb197,0xa121b362] },
2861 { key: [0xec250e04,0xc3903f60,0x2647b85a,0x401a1ae7,0xca2f02f6,0x7fa4253e],
2862 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2863 ct: [0x8aa584e2,0xcc4d1741,0x7a97cb9a,0x28ba29c8] },
2864 { key: [0xd077a03b,0xd8a38973,0x928ccafe,0x4a9d2f45,0x5130bd0a,0xf5ae46a9],
2865 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2866 ct: [0xabc786fb,0x1edb5045,0x80c4d882,0xef29a0c7] },
2867 { key: [0xd184c36c,0xf0dddfec,0x39e65419,0x50060222,0x37871a47,0xc33d3198],
2868 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2869 ct: [0x2e19fb60,0xa3e1de01,0x66f483c9,0x7824a978] },
2870 { key: [0x4c6994ff,0xa9dcdc80,0x5b60c2c0,0x095334c4,0x2d95a8fc,0x0ca5b080],
2871 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2872 ct: [0x76567095,0x38dd5fec,0x41e0ce6a,0x0f8e207d] },
2873 { key: [0xc88f5b00,0xa4ef9a68,0x40e2acaf,0x33f00a3b,0xdc4e2589,0x5303fa72],
2874 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2875 ct: [0xa67cf333,0xb314d411,0xd3c0ae6e,0x1cfcd8f5] },
2876 { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2877 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2878 ct: [0xde885dc8,0x7f5a9259,0x4082d02c,0xc1e1b42c] },
2879 { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2880 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2881 ct: [0x132b074e,0x80f2a597,0xbf5febd8,0xea5da55e] },
2882 { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2883 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2884 ct: [0x6eccedf8,0xde592c22,0xfb81347b,0x79f2db1f] },
2885 { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2886 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2887 ct: [0x180b09f2,0x67c45145,0xdb2f826c,0x2582d35c] },
2888 { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2889 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2890 ct: [0xedd807ef,0x7652d7eb,0x0e13c8b5,0xe15b3bc0] },
2891 { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2892 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2893 ct: [0x9978bcf8,0xdd8fd722,0x41223ad2,0x4b31b8a4] },
2894 { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2895 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2896 ct: [0x5310f654,0x343e8f27,0xe12c83a4,0x8d24ff81] },
2897 { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2898 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2899 ct: [0x833f7125,0x8d53036b,0x02952c76,0xc744f5a1] },
2900 { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2901 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2902 ct: [0xeba83ff2,0x00cff931,0x8a92f869,0x1a06b09f] },
2903 { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2904 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2905 ct: [0xff620ccb,0xe9f3292a,0xbdf2176b,0x09f04eba] },
2906 { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2907 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2908 ct: [0x7ababc4b,0x3f516c9a,0xafb35f41,0x40b548f9] },
2909 { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2910 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2911 ct: [0xaa187824,0xd9c4582b,0x0916493e,0xcbde8c57] },
2912 { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2913 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2914 ct: [0x1c0ad553,0x177fd5ea,0x1092c9d6,0x26a29dc4] },
2915 { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2916 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2917 ct: [0xa5dc46c3,0x72611941,0x24ecaebd,0x680408ec] },
2918 { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2919 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2920 ct: [0xe4f2f2ae,0x23e9b10b,0xacfa5860,0x1531ba54] },
2921 { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2922 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2923 ct: [0xb7d67cf1,0xa1e91e8f,0xf3a57a17,0x2c7bf412] },
2924 { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2925 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2926 ct: [0x26706be0,0x6967884e,0x847d1371,0x28ce47b3] },
2927 { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2928 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2929 ct: [0xb2f8b409,0xb0585909,0xaad3a7b5,0xa219072a] },
2930 { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2931 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2932 ct: [0x5e4b7bff,0x0290c783,0x44c54a23,0xb722cd20] },
2933 { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2934 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2935 ct: [0x07093657,0x552d4414,0x227ce161,0xe9ebf7dd] },
2936 { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2937 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2938 ct: [0xe1af1e7d,0x8bc225ed,0x4dffb771,0xecbb9e67] },
2939 { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2940 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2941 ct: [0xef655525,0x3635d843,0x2156cfd9,0xc11b145a] },
2942 { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2943 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2944 ct: [0xfb403507,0x4a5d4260,0xc90cbd6d,0xa6c3fceb] },
2945 { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2946 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2947 ct: [0x446ee416,0xf9ad1c10,0x3eb0cc96,0x751c88e1] },
2948 { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2949 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2950 ct: [0x198ae2a4,0x637ac0a7,0x890a8fd1,0x485445c9] },
2951 { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2952 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2953 ct: [0x562012ec,0x8faded08,0x25fb2fa7,0x0ab30cbd] },
2954 { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2955 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2956 ct: [0xcc8a64b4,0x6b5d88bf,0x7f247d4d,0xbaf38f05] },
2957 { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2958 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2959 ct: [0xa1682537,0x62e2cc81,0xb42d1e50,0x01762699] },
2960 { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2961 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2962 ct: [0x1b41f83b,0x38ce5032,0xc6cd7af9,0x8cf62061] },
2963 { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2964 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2965 ct: [0x61a89990,0xcd141175,0x0d5fb0dc,0x988447d4] },
2966 { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2967 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2968 ct: [0xb5accc8e,0xd629edf8,0xc68a5391,0x83b1ea82] },
2969 { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
2970 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2971 ct: [0xb16fa71f,0x846b81a1,0x3f361c43,0xa851f290] },
2972 { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
2973 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2974 ct: [0x4fad6efd,0xff5975ae,0xe7692234,0xbcd54488] },
2975 { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
2976 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2977 ct: [0xebfdb05a,0x783d0308,0x2dfe5fdd,0x80a00b17] },
2978 { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
2979 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2980 ct: [0xeb81b584,0x766997af,0x6ba5529d,0x3bdd8609] },
2981 { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
2982 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2983 ct: [0x0cf4ff4f,0x49c8a0ca,0x060c4434,0x99e29313] },
2984 { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
2985 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2986 ct: [0xcc4ba8a8,0xe029f8b2,0x6d8afff9,0xdf133bb6] },
2987 { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
2988 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2989 ct: [0xfefebf64,0x360f38e4,0xe63558f0,0xffc550c3] },
2990 { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
2991 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2992 ct: [0x12ad98cb,0xf725137d,0x6a8108c2,0xbed99322] },
2993 { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
2994 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2995 ct: [0x6afaa996,0x226198b3,0xe2610413,0xce1b3f78] },
2996 { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
2997 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
2998 ct: [0x2a8ce674,0x7a7e3936,0x7828e290,0x848502d9] },
2999 { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
3000 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3001 ct: [0x223736e8,0xb8f89ca1,0xe37b6dea,0xb40facf1] },
3002 { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
3003 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3004 ct: [0xc0f797e5,0x0418b95f,0xa6013333,0x917a9480] },
3005 { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
3006 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3007 ct: [0xa758de37,0xc2ece2a0,0x2c73c01f,0xedc9a132] },
3008 { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
3009 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3010 ct: [0x3a9b87ae,0x77bae706,0x803966c6,0x6c73adbd] },
3011 { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
3012 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3013 ct: [0xd365ab8d,0xf8ffd782,0xe358121a,0x4a4fc541] },
3014 { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
3015 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3016 ct: [0xc8dcd9e6,0xf75e6c36,0xc8daee04,0x66f0ed74] },
3017 { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
3018 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3019 ct: [0xc79a637b,0xeb1c0304,0xf14014c0,0x37e736dd] },
3020 { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
3021 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3022 ct: [0x105f0a25,0xe84ac930,0xd996281a,0x5f954dd9] },
3023 { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
3024 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3025 ct: [0x42e4074b,0x2927973e,0x8d17ffa9,0x2f7fe615] },
3026 { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
3027 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3028 ct: [0x4fe2a9d2,0xc1824449,0xc69e3e03,0x98f12963] },
3029 { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
3030 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3031 ct: [0xb7f29c1e,0x1f62847a,0x15253b28,0xa1e9d712] },
3032 { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
3033 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3034 ct: [0x36ed5d29,0xb903f31e,0x8983ef8b,0x0a2bf990] },
3035 { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
3036 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3037 ct: [0x27b80702,0x70810f9d,0x023f9dd7,0xff3b4aa2] },
3038 { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
3039 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3040 ct: [0x94d46e15,0x5c1228f6,0x1d1a0db4,0x815ecc4b] },
3041 { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
3042 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3043 ct: [0xca6108d1,0xd9807142,0x8eeceef1,0x714b96dd] },
3044 { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
3045 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3046 ct: [0xdc5b25b7,0x1b6296cf,0x73dd2cdc,0xac2f70b1] },
3047 { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
3048 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3049 ct: [0x44aba95e,0x8a06a2d9,0xd3530d26,0x77878c80] },
3050 { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
3051 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3052 ct: [0xa570d20e,0x89b467e8,0xf5176061,0xb81dd396] },
3053 { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
3054 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3055 ct: [0x758f4467,0xa5d8f1e7,0x307dc30b,0x34e404f4] },
3056 { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
3057 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3058 ct: [0xbcea28e9,0x071b5a23,0x02970ff3,0x52451bc5] },
3059 { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
3060 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3061 ct: [0x7523c00b,0xc177d331,0xad312e09,0xc9015c1c] },
3062 { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
3063 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3064 ct: [0xccac61e3,0x183747b3,0xf5836da2,0x1a1bc4f4] },
3065 { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
3066 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3067 ct: [0x707b0757,0x91878880,0xb44189d3,0x522b8c30] },
3068 { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
3069 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3070 ct: [0x7132d0c0,0xe4a07593,0xcf12ebb1,0x2be7688c] },
3071 { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
3072 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3073 ct: [0xeffbac16,0x44deb0c7,0x84275fe5,0x6e19ead3] },
3074 { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
3075 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3076 ct: [0xa005063f,0x30f4228b,0x374e2459,0x738f26bb] },
3077 { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
3078 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3079 ct: [0x29975b5f,0x48bb68fc,0xbbc7cea9,0x3b452ed7] },
3080 { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
3081 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3082 ct: [0xcf3f2576,0xe2afedc7,0x4bb1ca7e,0xeec1c0e7] },
3083 { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
3084 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3085 ct: [0x07c403f5,0xf966e0e3,0xd9f296d6,0x226dca28] },
3086 { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
3087 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3088 ct: [0xc8c20908,0x249ab4a3,0x4d6dd0a3,0x1327ff1a] },
3089 { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
3090 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3091 ct: [0xc0541329,0xecb6159a,0xb23b7fc5,0xe6a21bca] },
3092 { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
3093 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3094 ct: [0x7aa1acf1,0xa2ed9ba7,0x2bc6deb3,0x1d88b863] },
3095 { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
3096 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3097 ct: [0x808bd8ed,0xdabb6f3b,0xf0d5a8a2,0x7be1fe8a] },
3098 { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
3099 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3100 ct: [0x273c7d76,0x85e14ec6,0x6bbb96b8,0xf05b6ddd] },
3101 { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
3102 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3103 ct: [0x32752eef,0xc8c2a93f,0x91b6e73e,0xb07cca6e] },
3104 { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
3105 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3106 ct: [0xd893e7d6,0x2f6ce502,0xc64f75e2,0x81f9c000] },
3107 { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
3108 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3109 ct: [0x8dfd999b,0xe5d0cfa3,0x5732c0dd,0xc88ff5a5] },
3110 { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
3111 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3112 ct: [0x02647c76,0xa300c317,0x3b841487,0xeb2bae9f] },
3113 { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
3114 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3115 ct: [0x172df8b0,0x2f04b53a,0xdab028b4,0xe01acd87] },
3116 { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
3117 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3118 ct: [0x054b3bf4,0x998aeb05,0xafd87ec5,0x36533a36] },
3119 { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
3120 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3121 ct: [0x3783f7bf,0x44c97f06,0x5258a666,0xcae03020] },
3122 { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
3123 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3124 ct: [0xaad4c8a6,0x3f809541,0x04de7b92,0xcede1be1] },
3125 { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
3126 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3127 ct: [0xcbfe6181,0x0fd5467c,0xcdacb758,0x00f3ac07] },
3128 { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
3129 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3130 ct: [0x830d8a25,0x90f7d8e1,0xb55a737f,0x4af45f34] },
3131 { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
3132 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3133 ct: [0xfffcd468,0x3f858058,0xe7431467,0x1d43fa2c] },
3134 { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
3135 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3136 ct: [0x523d0bab,0xbb82f46e,0xbc9e70b1,0xcd41ddd0] },
3137 { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
3138 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3139 ct: [0x344aab37,0x080d7486,0xf7d542a3,0x09e53eed] },
3140 { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
3141 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3142 ct: [0x56c5609d,0x0906b23a,0xb9caca81,0x6f5dbebd] },
3143 { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
3144 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3145 ct: [0x7026026e,0xedd91adc,0x6d831cdf,0x9894bdc6] },
3146 { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
3147 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3148 ct: [0x88330baa,0x4f2b618f,0xc9d9b021,0xbf503d5a] },
3149 { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
3150 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3151 ct: [0xfc9e0ea2,0x2480b0ba,0xc935c8a8,0xebefcdcf] },
3152 { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
3153 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3154 ct: [0x29ca779f,0x398fb04f,0x867da7e8,0xa44756cb] },
3155 { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
3156 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3157 ct: [0x51f89c42,0x985786bf,0xc43c6df8,0xada36832] },
3158 { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
3159 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3160 ct: [0x6ac1de5f,0xb8f21d87,0x4e91c53b,0x560c50e3] },
3161 { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
3162 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3163 ct: [0x03aa9058,0x490eda30,0x6001a8a9,0xf48d0ca7] },
3164 { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
3165 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3166 ct: [0xe34ec71d,0x6128d487,0x1865d617,0xc30b37e3] },
3167 { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
3168 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3169 ct: [0x14be1c53,0x5b17cabd,0x0c4d9352,0x9d69bf47] },
3170 { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
3171 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3172 ct: [0xc9ef6775,0x6507beec,0x9dd38628,0x83478044] },
3173 { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
3174 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3175 ct: [0x40e231fa,0x5a5948ce,0x2134e92f,0xc0664d4b] },
3176 { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
3177 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3178 ct: [0x03194b8e,0x5dda5530,0xd0c678c0,0xb48f5d92] },
3179 { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
3180 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3181 ct: [0x90bd086f,0x237cc4fd,0x99f4d76b,0xde6b4826] },
3182 { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
3183 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3184 ct: [0x19259761,0xca17130d,0x6ed86d57,0xcd7951ee] },
3185 { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
3186 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3187 ct: [0xd7cbb3f3,0x4b9b450f,0x24b0e851,0x8e54da6d] },
3188 { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
3189 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3190 ct: [0x725b9cae,0xbe9f7f41,0x7f4068d0,0xd2ee20b3] },
3191 { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
3192 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3193 ct: [0x9d924b93,0x4a90ce1f,0xd39b8a97,0x94f82672] },
3194 { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
3195 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3196 ct: [0xc50562bf,0x094526a9,0x1c5bc63c,0x0c224995] },
3197 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
3198 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3199 ct: [0xd2f11805,0x046743bd,0x74f57188,0xd9188df7] },
3200 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
3201 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3202 ct: [0x8dd274bd,0x0f1b58ae,0x345d9e72,0x33f9b8f3] },
3203 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
3204 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3205 ct: [0x9d6bdc8f,0x4ce5feb0,0xf3bed2e4,0xb9a9bb0b] },
3206 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
3207 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3208 ct: [0xfd5548bc,0xf3f42565,0xf7efa945,0x62528d46] },
3209 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
3210 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3211 ct: [0xd2ccaebd,0x3a4c3e80,0xb0637481,0x31ba4a71] },
3212 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
3213 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3214 ct: [0xe03cb23d,0x9e11c9d9,0x3f117e9c,0x0a91b576] },
3215 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
3216 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3217 ct: [0x78f933a2,0x081ac1db,0x84f69d10,0xf4523fe0] },
3218 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
3219 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3220 ct: [0x4061f741,0x2ed320de,0x0edc8851,0xc2e2436f] },
3221 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
3222 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3223 ct: [0x9064ba1c,0xd04ce6ba,0xb9847433,0x0814b4d4] },
3224 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
3225 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3226 ct: [0x48391bff,0xb9cfff80,0xac238c88,0x6ef0a461] },
3227 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
3228 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3229 ct: [0xb8d2a67d,0xf5a999fd,0xbf93edd0,0x343296c9] },
3230 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
3231 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3232 ct: [0xaaca7367,0x396b69a2,0x21bd632b,0xea386eec] },
3233 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
3234 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3235 ct: [0xa80fd502,0x0dfe65f5,0xf16293ec,0x92c6fd89] },
3236 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
3237 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3238 ct: [0x2162995b,0x8217a67f,0x1abc342e,0x146406f8] },
3239 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
3240 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3241 ct: [0xc6a6164b,0x7a60bae4,0xe986ffac,0x28dfadd9] },
3242 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
3243 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3244 ct: [0x64e0d7f9,0x00e3d9c8,0x3e4b8f96,0x717b2146] },
3245 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
3246 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3247 ct: [0x1ad2561d,0xe8c1232f,0x5d8dbab4,0x739b6cbb] },
3248 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
3249 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3250 ct: [0x279689e9,0xa557f58b,0x1c3bf40c,0x97a90964] },
3251 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
3252 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3253 ct: [0xc4637e4a,0x5e6377f9,0xcc5a8638,0x045de029] },
3254 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
3255 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3256 ct: [0x492e607e,0x5aea4688,0x594b45f3,0xaee3df90] },
3257 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
3258 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3259 ct: [0xe8c4e438,0x1feec740,0x54954c05,0xb777a00a] },
3260 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
3261 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3262 ct: [0x91549514,0x605f3824,0x6c9b724a,0xd839f01d] },
3263 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
3264 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3265 ct: [0x74b24e3b,0x6fefe40a,0x4f9ef7ac,0x6e44d76a] },
3266 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
3267 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3268 ct: [0x2437a683,0xdc5d4b52,0xabb4a123,0xa8df86c6] },
3269 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
3270 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3271 ct: [0xbb2852c8,0x91c5947d,0x2ed44032,0xc421b85f] },
3272 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
3273 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3274 ct: [0x1b9f5fbd,0x5e8a4264,0xc0a85b80,0x409afa5e] },
3275 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
3276 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3277 ct: [0x30dab809,0xf85a917f,0xe924733f,0x424ac589] },
3278 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
3279 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3280 ct: [0xeaef5c1f,0x8d605192,0x646695ce,0xadc65f32] },
3281 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
3282 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3283 ct: [0xb8aa9004,0x0b4c15a1,0x2316b78e,0x0f9586fc] },
3284 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
3285 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3286 ct: [0x97fac829,0x7ceaabc8,0x7d454350,0x601e0673] },
3287 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
3288 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3289 ct: [0x9b47ef56,0x7ac28dfe,0x488492f1,0x57e2b2e0] },
3290 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
3291 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3292 ct: [0x1b842602,0x7ddb962b,0x5c5ba7eb,0x8bc9ab63] },
3293 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
3294 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3295 ct: [0xe917fc77,0xe71992a1,0x2dbe4c18,0x068bec82] },
3296 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
3297 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3298 ct: [0xdceebbc9,0x8840f8ae,0x6daf7657,0x3b7e56f4] },
3299 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
3300 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3301 ct: [0x4e11a9f7,0x4205125b,0x61e0aee0,0x47eca20d] },
3302 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
3303 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3304 ct: [0xf60467f5,0x5a1f17ea,0xb88e8001,0x20cbc284] },
3305 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
3306 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3307 ct: [0xd436649f,0x600b449e,0xe276530f,0x0cd83c11] },
3308 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
3309 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3310 ct: [0x3bc0e365,0x6a9e3ac7,0xcd378a73,0x7f53b637] },
3311 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
3312 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3313 ct: [0x6bacae63,0xd33b928a,0xa8380f8d,0x54d88c17] },
3314 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
3315 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3316 ct: [0x8935ffbc,0x75ae6251,0xbf8e859f,0x085adcb9] },
3317 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
3318 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3319 ct: [0x93dc4970,0xfe35f677,0x47cb0562,0xc06d875a] },
3320 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
3321 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3322 ct: [0x14f9df85,0x89758517,0x97ba604f,0xb0d16cc7] },
3323 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
3324 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3325 ct: [0x02ea0c98,0xdca10b38,0xc21b3b14,0xe8d1b71f] },
3326 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
3327 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3328 ct: [0x8f091b1b,0x5b0749b2,0xadc803e6,0x3dda9b72] },
3329 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
3330 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3331 ct: [0x05b389e3,0x322c6da0,0x8384345a,0x4137fd08] },
3332 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
3333 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3334 ct: [0x381308c4,0x38f35b39,0x9f10ad71,0xb05027d8] },
3335 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
3336 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3337 ct: [0x68c230fc,0xfa9279c3,0x409fc423,0xe2acbe04] },
3338 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
3339 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3340 ct: [0x1c84a475,0xacb011f3,0xf59f4f46,0xb76274c0] },
3341 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
3342 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3343 ct: [0x45119b68,0xcb3f8399,0xee60066b,0x5611a4d7] },
3344 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
3345 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3346 ct: [0x9423762f,0x527a4060,0xffca312d,0xcca22a16] },
3347 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
3348 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3349 ct: [0xf361a274,0x5a33f056,0xa5ac6ace,0x2f08e344] },
3350 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
3351 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3352 ct: [0x5ef14576,0x6eca849f,0x5d011536,0xa6557fdb] },
3353 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
3354 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3355 ct: [0xc9af27b2,0xc89c9b4c,0xf4a0c410,0x6ac80318] },
3356 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
3357 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3358 ct: [0xfb9c4f16,0xc621f4ea,0xb7e9ac1d,0x7551dd57] },
3359 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
3360 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3361 ct: [0x138e06fb,0xa466fa70,0x854d8c2e,0x524cffb2] },
3362 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
3363 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3364 ct: [0xfb4bc78b,0x22507077,0x3f04c404,0x66d4e90c] },
3365 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
3366 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3367 ct: [0x8b2cbff1,0xed0150fe,0xda8a4799,0xbe94551f] },
3368 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
3369 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3370 ct: [0x08b30d7b,0x3f279627,0x09a36bca,0xdfb974bd] },
3371 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
3372 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3373 ct: [0xfdf6d32e,0x044d77ad,0xcf37fb97,0xac213326] },
3374 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
3375 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3376 ct: [0x93cb284e,0xcdcfd781,0xa8afe320,0x77949e88] },
3377 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
3378 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3379 ct: [0x7b017bb0,0x2ec87b2b,0x94c96e40,0xa26fc71a] },
3380 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
3381 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3382 ct: [0xc5c038b6,0x990664ab,0x08a3aaa5,0xdf9f3266] },
3383 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
3384 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3385 ct: [0x4b7020be,0x37fab625,0x9b2a27f4,0xec551576] },
3386 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
3387 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3388 ct: [0x60136703,0x374f64e8,0x60b48ce3,0x1f930716] },
3389 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
3390 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3391 ct: [0x8d63a269,0xb14d506c,0xcc401ab8,0xa9f1b591] },
3392 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
3393 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3394 ct: [0xd317f81d,0xc6aa454a,0xee4bd4a5,0xa5cff4bd] },
3395 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
3396 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3397 ct: [0xdddececd,0x5354f04d,0x530d76ed,0x884246eb] },
3398 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
3399 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3400 ct: [0x41c5205c,0xc8fd8eda,0x9a3cffd2,0x518f365a] },
3401 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
3402 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3403 ct: [0xcf42fb47,0x4293d96e,0xca9db1b3,0x7b1ba676] },
3404 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
3405 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3406 ct: [0xa2316926,0x07169b4e,0xcdead5cd,0x3b10db3e] },
3407 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
3408 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3409 ct: [0xace4b91c,0x9c669e77,0xe7acacd1,0x9859ed49] },
3410 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
3411 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3412 ct: [0x75db7cfd,0x4a7b2b62,0xab78a48f,0x3ddaf4af] },
3413 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
3414 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3415 ct: [0xc1faba2d,0x46e259cf,0x480d7c38,0xe4572a58] },
3416 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
3417 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3418 ct: [0x241c45bc,0x6ae16dee,0x6eb7bea1,0x28701582] },
3419 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
3420 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3421 ct: [0x8fd03057,0xcf136442,0x0c2b7806,0x9a3e2502] },
3422 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
3423 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3424 ct: [0xddb505e6,0xcc1384cb,0xaec1df90,0xb80beb20] },
3425 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
3426 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3427 ct: [0x5674a3be,0xd27bf4bd,0x3622f9f5,0xfe208306] },
3428 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
3429 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3430 ct: [0xb687f26a,0x89cfbfbb,0x8e5eeac5,0x4055315e] },
3431 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
3432 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3433 ct: [0x0547dd32,0xd3b29ab6,0xa4caeb60,0x6c5b6f78] },
3434 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
3435 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3436 ct: [0x186861f8,0xbc5386d3,0x1fb77f72,0x0c3226e6] },
3437 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
3438 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3439 ct: [0xeacf1e6c,0x4224efb3,0x8900b185,0xab1dfd42] },
3440 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
3441 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3442 ct: [0xd241aab0,0x5a42d319,0xde81d874,0xf5c7b90d] },
3443 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
3444 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3445 ct: [0x5eb9bc75,0x9e2ad8d2,0x140a6c76,0x2ae9e1ab] },
3446 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
3447 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3448 ct: [0x018596e1,0x5e78e2c0,0x64159def,0xce5f3085] },
3449 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
3450 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3451 ct: [0xdd8a4935,0x14231cbf,0x56eccee4,0xc40889fb] },
3452 { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3453 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3454 ct: [0xde885dc8,0x7f5a9259,0x4082d02c,0xc1e1b42c] },
3455 { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3456 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3457 ct: [0x132b074e,0x80f2a597,0xbf5febd8,0xea5da55e] },
3458 { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3459 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3460 ct: [0x6eccedf8,0xde592c22,0xfb81347b,0x79f2db1f] },
3461 { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3462 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3463 ct: [0x180b09f2,0x67c45145,0xdb2f826c,0x2582d35c] },
3464 { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3465 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3466 ct: [0xedd807ef,0x7652d7eb,0x0e13c8b5,0xe15b3bc0] },
3467 { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3468 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3469 ct: [0x9978bcf8,0xdd8fd722,0x41223ad2,0x4b31b8a4] },
3470 { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3471 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3472 ct: [0x5310f654,0x343e8f27,0xe12c83a4,0x8d24ff81] },
3473 { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3474 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3475 ct: [0x833f7125,0x8d53036b,0x02952c76,0xc744f5a1] },
3476 { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3477 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3478 ct: [0xeba83ff2,0x00cff931,0x8a92f869,0x1a06b09f] },
3479 { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3480 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3481 ct: [0xff620ccb,0xe9f3292a,0xbdf2176b,0x09f04eba] },
3482 { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3483 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3484 ct: [0x7ababc4b,0x3f516c9a,0xafb35f41,0x40b548f9] },
3485 { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3486 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3487 ct: [0xaa187824,0xd9c4582b,0x0916493e,0xcbde8c57] },
3488 { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3489 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3490 ct: [0x1c0ad553,0x177fd5ea,0x1092c9d6,0x26a29dc4] },
3491 { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3492 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3493 ct: [0xa5dc46c3,0x72611941,0x24ecaebd,0x680408ec] },
3494 { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3495 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3496 ct: [0xe4f2f2ae,0x23e9b10b,0xacfa5860,0x1531ba54] },
3497 { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3498 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3499 ct: [0xb7d67cf1,0xa1e91e8f,0xf3a57a17,0x2c7bf412] },
3500 { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3501 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3502 ct: [0x26706be0,0x6967884e,0x847d1371,0x28ce47b3] },
3503 { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3504 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3505 ct: [0xb2f8b409,0xb0585909,0xaad3a7b5,0xa219072a] },
3506 { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3507 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3508 ct: [0x5e4b7bff,0x0290c783,0x44c54a23,0xb722cd20] },
3509 { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3510 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3511 ct: [0x07093657,0x552d4414,0x227ce161,0xe9ebf7dd] },
3512 { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3513 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3514 ct: [0xe1af1e7d,0x8bc225ed,0x4dffb771,0xecbb9e67] },
3515 { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3516 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3517 ct: [0xef655525,0x3635d843,0x2156cfd9,0xc11b145a] },
3518 { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3519 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3520 ct: [0xfb403507,0x4a5d4260,0xc90cbd6d,0xa6c3fceb] },
3521 { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3522 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3523 ct: [0x446ee416,0xf9ad1c10,0x3eb0cc96,0x751c88e1] },
3524 { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3525 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3526 ct: [0x198ae2a4,0x637ac0a7,0x890a8fd1,0x485445c9] },
3527 { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3528 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3529 ct: [0x562012ec,0x8faded08,0x25fb2fa7,0x0ab30cbd] },
3530 { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3531 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3532 ct: [0xcc8a64b4,0x6b5d88bf,0x7f247d4d,0xbaf38f05] },
3533 { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3534 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3535 ct: [0xa1682537,0x62e2cc81,0xb42d1e50,0x01762699] },
3536 { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3537 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3538 ct: [0x1b41f83b,0x38ce5032,0xc6cd7af9,0x8cf62061] },
3539 { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3540 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3541 ct: [0x61a89990,0xcd141175,0x0d5fb0dc,0x988447d4] },
3542 { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3543 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3544 ct: [0xb5accc8e,0xd629edf8,0xc68a5391,0x83b1ea82] },
3545 { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
3546 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3547 ct: [0xb16fa71f,0x846b81a1,0x3f361c43,0xa851f290] },
3548 { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
3549 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3550 ct: [0x4fad6efd,0xff5975ae,0xe7692234,0xbcd54488] },
3551 { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
3552 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3553 ct: [0xebfdb05a,0x783d0308,0x2dfe5fdd,0x80a00b17] },
3554 { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
3555 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3556 ct: [0xeb81b584,0x766997af,0x6ba5529d,0x3bdd8609] },
3557 { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
3558 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3559 ct: [0x0cf4ff4f,0x49c8a0ca,0x060c4434,0x99e29313] },
3560 { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
3561 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3562 ct: [0xcc4ba8a8,0xe029f8b2,0x6d8afff9,0xdf133bb6] },
3563 { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
3564 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3565 ct: [0xfefebf64,0x360f38e4,0xe63558f0,0xffc550c3] },
3566 { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
3567 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3568 ct: [0x12ad98cb,0xf725137d,0x6a8108c2,0xbed99322] },
3569 { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
3570 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3571 ct: [0x6afaa996,0x226198b3,0xe2610413,0xce1b3f78] },
3572 { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
3573 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3574 ct: [0x2a8ce674,0x7a7e3936,0x7828e290,0x848502d9] },
3575 { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
3576 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3577 ct: [0x223736e8,0xb8f89ca1,0xe37b6dea,0xb40facf1] },
3578 { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
3579 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3580 ct: [0xc0f797e5,0x0418b95f,0xa6013333,0x917a9480] },
3581 { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
3582 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3583 ct: [0xa758de37,0xc2ece2a0,0x2c73c01f,0xedc9a132] },
3584 { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
3585 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3586 ct: [0x3a9b87ae,0x77bae706,0x803966c6,0x6c73adbd] },
3587 { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
3588 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3589 ct: [0xd365ab8d,0xf8ffd782,0xe358121a,0x4a4fc541] },
3590 { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
3591 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3592 ct: [0xc8dcd9e6,0xf75e6c36,0xc8daee04,0x66f0ed74] },
3593 { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
3594 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3595 ct: [0xc79a637b,0xeb1c0304,0xf14014c0,0x37e736dd] },
3596 { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
3597 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3598 ct: [0x105f0a25,0xe84ac930,0xd996281a,0x5f954dd9] },
3599 { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
3600 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3601 ct: [0x42e4074b,0x2927973e,0x8d17ffa9,0x2f7fe615] },
3602 { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
3603 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3604 ct: [0x4fe2a9d2,0xc1824449,0xc69e3e03,0x98f12963] },
3605 { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
3606 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3607 ct: [0xb7f29c1e,0x1f62847a,0x15253b28,0xa1e9d712] },
3608 { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
3609 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3610 ct: [0x36ed5d29,0xb903f31e,0x8983ef8b,0x0a2bf990] },
3611 { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
3612 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3613 ct: [0x27b80702,0x70810f9d,0x023f9dd7,0xff3b4aa2] },
3614 { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
3615 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3616 ct: [0x94d46e15,0x5c1228f6,0x1d1a0db4,0x815ecc4b] },
3617 { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
3618 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3619 ct: [0xca6108d1,0xd9807142,0x8eeceef1,0x714b96dd] },
3620 { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
3621 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3622 ct: [0xdc5b25b7,0x1b6296cf,0x73dd2cdc,0xac2f70b1] },
3623 { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
3624 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3625 ct: [0x44aba95e,0x8a06a2d9,0xd3530d26,0x77878c80] },
3626 { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
3627 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3628 ct: [0xa570d20e,0x89b467e8,0xf5176061,0xb81dd396] },
3629 { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
3630 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3631 ct: [0x758f4467,0xa5d8f1e7,0x307dc30b,0x34e404f4] },
3632 { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
3633 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3634 ct: [0xbcea28e9,0x071b5a23,0x02970ff3,0x52451bc5] },
3635 { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
3636 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3637 ct: [0x7523c00b,0xc177d331,0xad312e09,0xc9015c1c] },
3638 { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
3639 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3640 ct: [0xccac61e3,0x183747b3,0xf5836da2,0x1a1bc4f4] },
3641 { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
3642 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3643 ct: [0x707b0757,0x91878880,0xb44189d3,0x522b8c30] },
3644 { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
3645 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3646 ct: [0x7132d0c0,0xe4a07593,0xcf12ebb1,0x2be7688c] },
3647 { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
3648 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3649 ct: [0xeffbac16,0x44deb0c7,0x84275fe5,0x6e19ead3] },
3650 { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
3651 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3652 ct: [0xa005063f,0x30f4228b,0x374e2459,0x738f26bb] },
3653 { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
3654 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3655 ct: [0x29975b5f,0x48bb68fc,0xbbc7cea9,0x3b452ed7] },
3656 { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
3657 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3658 ct: [0xcf3f2576,0xe2afedc7,0x4bb1ca7e,0xeec1c0e7] },
3659 { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
3660 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3661 ct: [0x07c403f5,0xf966e0e3,0xd9f296d6,0x226dca28] },
3662 { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
3663 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3664 ct: [0xc8c20908,0x249ab4a3,0x4d6dd0a3,0x1327ff1a] },
3665 { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
3666 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3667 ct: [0xc0541329,0xecb6159a,0xb23b7fc5,0xe6a21bca] },
3668 { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
3669 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3670 ct: [0x7aa1acf1,0xa2ed9ba7,0x2bc6deb3,0x1d88b863] },
3671 { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
3672 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3673 ct: [0x808bd8ed,0xdabb6f3b,0xf0d5a8a2,0x7be1fe8a] },
3674 { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
3675 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3676 ct: [0x273c7d76,0x85e14ec6,0x6bbb96b8,0xf05b6ddd] },
3677 { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
3678 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3679 ct: [0x32752eef,0xc8c2a93f,0x91b6e73e,0xb07cca6e] },
3680 { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
3681 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3682 ct: [0xd893e7d6,0x2f6ce502,0xc64f75e2,0x81f9c000] },
3683 { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
3684 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3685 ct: [0x8dfd999b,0xe5d0cfa3,0x5732c0dd,0xc88ff5a5] },
3686 { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
3687 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3688 ct: [0x02647c76,0xa300c317,0x3b841487,0xeb2bae9f] },
3689 { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
3690 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3691 ct: [0x172df8b0,0x2f04b53a,0xdab028b4,0xe01acd87] },
3692 { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
3693 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3694 ct: [0x054b3bf4,0x998aeb05,0xafd87ec5,0x36533a36] },
3695 { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
3696 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3697 ct: [0x3783f7bf,0x44c97f06,0x5258a666,0xcae03020] },
3698 { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
3699 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3700 ct: [0xaad4c8a6,0x3f809541,0x04de7b92,0xcede1be1] },
3701 { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
3702 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3703 ct: [0xcbfe6181,0x0fd5467c,0xcdacb758,0x00f3ac07] },
3704 { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
3705 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3706 ct: [0x830d8a25,0x90f7d8e1,0xb55a737f,0x4af45f34] },
3707 { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
3708 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3709 ct: [0xfffcd468,0x3f858058,0xe7431467,0x1d43fa2c] },
3710 { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
3711 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3712 ct: [0x523d0bab,0xbb82f46e,0xbc9e70b1,0xcd41ddd0] },
3713 { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
3714 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3715 ct: [0x344aab37,0x080d7486,0xf7d542a3,0x09e53eed] },
3716 { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
3717 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3718 ct: [0x56c5609d,0x0906b23a,0xb9caca81,0x6f5dbebd] },
3719 { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
3720 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3721 ct: [0x7026026e,0xedd91adc,0x6d831cdf,0x9894bdc6] },
3722 { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
3723 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3724 ct: [0x88330baa,0x4f2b618f,0xc9d9b021,0xbf503d5a] },
3725 { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
3726 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3727 ct: [0xfc9e0ea2,0x2480b0ba,0xc935c8a8,0xebefcdcf] },
3728 { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
3729 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3730 ct: [0x29ca779f,0x398fb04f,0x867da7e8,0xa44756cb] },
3731 { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
3732 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3733 ct: [0x51f89c42,0x985786bf,0xc43c6df8,0xada36832] },
3734 { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
3735 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3736 ct: [0x6ac1de5f,0xb8f21d87,0x4e91c53b,0x560c50e3] },
3737 { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
3738 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3739 ct: [0x03aa9058,0x490eda30,0x6001a8a9,0xf48d0ca7] },
3740 { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
3741 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3742 ct: [0xe34ec71d,0x6128d487,0x1865d617,0xc30b37e3] },
3743 { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
3744 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3745 ct: [0x14be1c53,0x5b17cabd,0x0c4d9352,0x9d69bf47] },
3746 { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
3747 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3748 ct: [0xc9ef6775,0x6507beec,0x9dd38628,0x83478044] },
3749 { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
3750 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3751 ct: [0x40e231fa,0x5a5948ce,0x2134e92f,0xc0664d4b] },
3752 { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
3753 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3754 ct: [0x03194b8e,0x5dda5530,0xd0c678c0,0xb48f5d92] },
3755 { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
3756 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3757 ct: [0x90bd086f,0x237cc4fd,0x99f4d76b,0xde6b4826] },
3758 { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
3759 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3760 ct: [0x19259761,0xca17130d,0x6ed86d57,0xcd7951ee] },
3761 { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
3762 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3763 ct: [0xd7cbb3f3,0x4b9b450f,0x24b0e851,0x8e54da6d] },
3764 { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
3765 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3766 ct: [0x725b9cae,0xbe9f7f41,0x7f4068d0,0xd2ee20b3] },
3767 { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
3768 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3769 ct: [0x9d924b93,0x4a90ce1f,0xd39b8a97,0x94f82672] },
3770 { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
3771 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3772 ct: [0xc50562bf,0x094526a9,0x1c5bc63c,0x0c224995] },
3773 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
3774 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3775 ct: [0xd2f11805,0x046743bd,0x74f57188,0xd9188df7] },
3776 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
3777 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3778 ct: [0x8dd274bd,0x0f1b58ae,0x345d9e72,0x33f9b8f3] },
3779 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
3780 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3781 ct: [0x9d6bdc8f,0x4ce5feb0,0xf3bed2e4,0xb9a9bb0b] },
3782 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
3783 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3784 ct: [0xfd5548bc,0xf3f42565,0xf7efa945,0x62528d46] },
3785 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
3786 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3787 ct: [0xd2ccaebd,0x3a4c3e80,0xb0637481,0x31ba4a71] },
3788 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
3789 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3790 ct: [0xe03cb23d,0x9e11c9d9,0x3f117e9c,0x0a91b576] },
3791 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
3792 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3793 ct: [0x78f933a2,0x081ac1db,0x84f69d10,0xf4523fe0] },
3794 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
3795 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3796 ct: [0x4061f741,0x2ed320de,0x0edc8851,0xc2e2436f] },
3797 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
3798 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3799 ct: [0x9064ba1c,0xd04ce6ba,0xb9847433,0x0814b4d4] },
3800 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
3801 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3802 ct: [0x48391bff,0xb9cfff80,0xac238c88,0x6ef0a461] },
3803 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
3804 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3805 ct: [0xb8d2a67d,0xf5a999fd,0xbf93edd0,0x343296c9] },
3806 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
3807 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3808 ct: [0xaaca7367,0x396b69a2,0x21bd632b,0xea386eec] },
3809 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
3810 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3811 ct: [0xa80fd502,0x0dfe65f5,0xf16293ec,0x92c6fd89] },
3812 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
3813 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3814 ct: [0x2162995b,0x8217a67f,0x1abc342e,0x146406f8] },
3815 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
3816 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3817 ct: [0xc6a6164b,0x7a60bae4,0xe986ffac,0x28dfadd9] },
3818 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
3819 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3820 ct: [0x64e0d7f9,0x00e3d9c8,0x3e4b8f96,0x717b2146] },
3821 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
3822 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3823 ct: [0x1ad2561d,0xe8c1232f,0x5d8dbab4,0x739b6cbb] },
3824 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
3825 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3826 ct: [0x279689e9,0xa557f58b,0x1c3bf40c,0x97a90964] },
3827 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
3828 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3829 ct: [0xc4637e4a,0x5e6377f9,0xcc5a8638,0x045de029] },
3830 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
3831 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3832 ct: [0x492e607e,0x5aea4688,0x594b45f3,0xaee3df90] },
3833 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
3834 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3835 ct: [0xe8c4e438,0x1feec740,0x54954c05,0xb777a00a] },
3836 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
3837 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3838 ct: [0x91549514,0x605f3824,0x6c9b724a,0xd839f01d] },
3839 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
3840 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3841 ct: [0x74b24e3b,0x6fefe40a,0x4f9ef7ac,0x6e44d76a] },
3842 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
3843 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3844 ct: [0x2437a683,0xdc5d4b52,0xabb4a123,0xa8df86c6] },
3845 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
3846 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3847 ct: [0xbb2852c8,0x91c5947d,0x2ed44032,0xc421b85f] },
3848 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
3849 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3850 ct: [0x1b9f5fbd,0x5e8a4264,0xc0a85b80,0x409afa5e] },
3851 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
3852 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3853 ct: [0x30dab809,0xf85a917f,0xe924733f,0x424ac589] },
3854 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
3855 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3856 ct: [0xeaef5c1f,0x8d605192,0x646695ce,0xadc65f32] },
3857 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
3858 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3859 ct: [0xb8aa9004,0x0b4c15a1,0x2316b78e,0x0f9586fc] },
3860 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
3861 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3862 ct: [0x97fac829,0x7ceaabc8,0x7d454350,0x601e0673] },
3863 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
3864 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3865 ct: [0x9b47ef56,0x7ac28dfe,0x488492f1,0x57e2b2e0] },
3866 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
3867 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3868 ct: [0x1b842602,0x7ddb962b,0x5c5ba7eb,0x8bc9ab63] },
3869 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
3870 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3871 ct: [0xe917fc77,0xe71992a1,0x2dbe4c18,0x068bec82] },
3872 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
3873 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3874 ct: [0xdceebbc9,0x8840f8ae,0x6daf7657,0x3b7e56f4] },
3875 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
3876 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3877 ct: [0x4e11a9f7,0x4205125b,0x61e0aee0,0x47eca20d] },
3878 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
3879 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3880 ct: [0xf60467f5,0x5a1f17ea,0xb88e8001,0x20cbc284] },
3881 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
3882 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3883 ct: [0xd436649f,0x600b449e,0xe276530f,0x0cd83c11] },
3884 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
3885 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3886 ct: [0x3bc0e365,0x6a9e3ac7,0xcd378a73,0x7f53b637] },
3887 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
3888 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3889 ct: [0x6bacae63,0xd33b928a,0xa8380f8d,0x54d88c17] },
3890 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
3891 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3892 ct: [0x8935ffbc,0x75ae6251,0xbf8e859f,0x085adcb9] },
3893 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
3894 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3895 ct: [0x93dc4970,0xfe35f677,0x47cb0562,0xc06d875a] },
3896 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
3897 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3898 ct: [0x14f9df85,0x89758517,0x97ba604f,0xb0d16cc7] },
3899 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
3900 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3901 ct: [0x02ea0c98,0xdca10b38,0xc21b3b14,0xe8d1b71f] },
3902 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
3903 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3904 ct: [0x8f091b1b,0x5b0749b2,0xadc803e6,0x3dda9b72] },
3905 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
3906 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3907 ct: [0x05b389e3,0x322c6da0,0x8384345a,0x4137fd08] },
3908 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
3909 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3910 ct: [0x381308c4,0x38f35b39,0x9f10ad71,0xb05027d8] },
3911 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
3912 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3913 ct: [0x68c230fc,0xfa9279c3,0x409fc423,0xe2acbe04] },
3914 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
3915 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3916 ct: [0x1c84a475,0xacb011f3,0xf59f4f46,0xb76274c0] },
3917 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
3918 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3919 ct: [0x45119b68,0xcb3f8399,0xee60066b,0x5611a4d7] },
3920 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
3921 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3922 ct: [0x9423762f,0x527a4060,0xffca312d,0xcca22a16] },
3923 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
3924 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3925 ct: [0xf361a274,0x5a33f056,0xa5ac6ace,0x2f08e344] },
3926 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
3927 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3928 ct: [0x5ef14576,0x6eca849f,0x5d011536,0xa6557fdb] },
3929 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
3930 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3931 ct: [0xc9af27b2,0xc89c9b4c,0xf4a0c410,0x6ac80318] },
3932 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
3933 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3934 ct: [0xfb9c4f16,0xc621f4ea,0xb7e9ac1d,0x7551dd57] },
3935 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
3936 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3937 ct: [0x138e06fb,0xa466fa70,0x854d8c2e,0x524cffb2] },
3938 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
3939 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3940 ct: [0xfb4bc78b,0x22507077,0x3f04c404,0x66d4e90c] },
3941 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
3942 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3943 ct: [0x8b2cbff1,0xed0150fe,0xda8a4799,0xbe94551f] },
3944 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
3945 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3946 ct: [0x08b30d7b,0x3f279627,0x09a36bca,0xdfb974bd] },
3947 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
3948 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3949 ct: [0xfdf6d32e,0x044d77ad,0xcf37fb97,0xac213326] },
3950 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
3951 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3952 ct: [0x93cb284e,0xcdcfd781,0xa8afe320,0x77949e88] },
3953 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
3954 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3955 ct: [0x7b017bb0,0x2ec87b2b,0x94c96e40,0xa26fc71a] },
3956 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
3957 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3958 ct: [0xc5c038b6,0x990664ab,0x08a3aaa5,0xdf9f3266] },
3959 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
3960 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3961 ct: [0x4b7020be,0x37fab625,0x9b2a27f4,0xec551576] },
3962 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
3963 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3964 ct: [0x60136703,0x374f64e8,0x60b48ce3,0x1f930716] },
3965 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
3966 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3967 ct: [0x8d63a269,0xb14d506c,0xcc401ab8,0xa9f1b591] },
3968 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
3969 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3970 ct: [0xd317f81d,0xc6aa454a,0xee4bd4a5,0xa5cff4bd] },
3971 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
3972 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3973 ct: [0xdddececd,0x5354f04d,0x530d76ed,0x884246eb] },
3974 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
3975 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3976 ct: [0x41c5205c,0xc8fd8eda,0x9a3cffd2,0x518f365a] },
3977 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
3978 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3979 ct: [0xcf42fb47,0x4293d96e,0xca9db1b3,0x7b1ba676] },
3980 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
3981 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3982 ct: [0xa2316926,0x07169b4e,0xcdead5cd,0x3b10db3e] },
3983 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
3984 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3985 ct: [0xace4b91c,0x9c669e77,0xe7acacd1,0x9859ed49] },
3986 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
3987 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3988 ct: [0x75db7cfd,0x4a7b2b62,0xab78a48f,0x3ddaf4af] },
3989 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
3990 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3991 ct: [0xc1faba2d,0x46e259cf,0x480d7c38,0xe4572a58] },
3992 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
3993 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3994 ct: [0x241c45bc,0x6ae16dee,0x6eb7bea1,0x28701582] },
3995 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
3996 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
3997 ct: [0x8fd03057,0xcf136442,0x0c2b7806,0x9a3e2502] },
3998 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
3999 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4000 ct: [0xddb505e6,0xcc1384cb,0xaec1df90,0xb80beb20] },
4001 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
4002 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4003 ct: [0x5674a3be,0xd27bf4bd,0x3622f9f5,0xfe208306] },
4004 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
4005 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4006 ct: [0xb687f26a,0x89cfbfbb,0x8e5eeac5,0x4055315e] },
4007 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
4008 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4009 ct: [0x0547dd32,0xd3b29ab6,0xa4caeb60,0x6c5b6f78] },
4010 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
4011 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4012 ct: [0x186861f8,0xbc5386d3,0x1fb77f72,0x0c3226e6] },
4013 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
4014 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4015 ct: [0xeacf1e6c,0x4224efb3,0x8900b185,0xab1dfd42] },
4016 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
4017 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4018 ct: [0xd241aab0,0x5a42d319,0xde81d874,0xf5c7b90d] },
4019 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
4020 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4021 ct: [0x5eb9bc75,0x9e2ad8d2,0x140a6c76,0x2ae9e1ab] },
4022 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
4023 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4024 ct: [0x018596e1,0x5e78e2c0,0x64159def,0xce5f3085] },
4025 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
4026 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4027 ct: [0xdd8a4935,0x14231cbf,0x56eccee4,0xc40889fb] },
4028 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4029 pt: [0x80000000,0x00000000,0x00000000,0x00000000],
4030 ct: [0xddc6bf79,0x0c15760d,0x8d9aeb6f,0x9a75fd4e] },
4031 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4032 pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
4033 ct: [0x0a6bdc6d,0x4c1e6280,0x301fd8e9,0x7ddbe601] },
4034 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4035 pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
4036 ct: [0x9b80eefb,0x7ebe2d2b,0x16247aa0,0xefc72f5d] },
4037 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4038 pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
4039 ct: [0x7f2c5ece,0x07a98d8b,0xee13c511,0x77395ff7] },
4040 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4041 pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
4042 ct: [0x7818d800,0xdcf6f4be,0x1e0e94f4,0x03d1e4c2] },
4043 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4044 pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
4045 ct: [0xe74cd1c9,0x2f0919c3,0x5a032412,0x3d6177d3] },
4046 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4047 pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
4048 ct: [0x8092a4dc,0xf2da7e77,0xe93bdd37,0x1dfed82e] },
4049 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4050 pt: [0xff000000,0x00000000,0x00000000,0x00000000],
4051 ct: [0x49af6b37,0x2135acef,0x10132e54,0x8f217b17] },
4052 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4053 pt: [0xff800000,0x00000000,0x00000000,0x00000000],
4054 ct: [0x8bcd40f9,0x4ebb63b9,0xf7909676,0xe667f1e7] },
4055 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4056 pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
4057 ct: [0xfe1cffb8,0x3f45dcfb,0x38b29be4,0x38dbd3ab] },
4058 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4059 pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
4060 ct: [0x0dc58a8d,0x88662370,0x5aec15cb,0x1e70dc0e] },
4061 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4062 pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
4063 ct: [0xc218faa1,0x6056bd07,0x74c3e8d7,0x9c35a5e4] },
4064 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4065 pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
4066 ct: [0x047bba83,0xf7aa8417,0x31504e01,0x2208fc9e] },
4067 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4068 pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
4069 ct: [0xdc8f0e49,0x15fd81ba,0x70a33131,0x0882f6da] },
4070 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4071 pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
4072 ct: [0x1569859e,0xa6b7206c,0x30bf4fd0,0xcbfac33c] },
4073 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4074 pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
4075 ct: [0x300ade92,0xf88f48fa,0x2df730ec,0x16ef44cd] },
4076 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4077 pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
4078 ct: [0x1fe6cc3c,0x05965dc0,0x8eb0590c,0x95ac71d0] },
4079 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4080 pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
4081 ct: [0x59e858ea,0xaa97fec3,0x8111275b,0x6cf5abc0] },
4082 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4083 pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
4084 ct: [0x2239455e,0x7afe3b06,0x16100288,0xcc5a723b] },
4085 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4086 pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
4087 ct: [0x3ee500c5,0xc8d63479,0x717163e5,0x5c5c4522] },
4088 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4089 pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
4090 ct: [0xd5e38bf1,0x5f16d90e,0x3e214041,0xd774daa8] },
4091 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4092 pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
4093 ct: [0xb1f4066e,0x6f4f187d,0xfe5f2ad1,0xb17819d0] },
4094 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4095 pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
4096 ct: [0x6ef4cc4d,0xe49b1106,0x5d7af290,0x9854794a] },
4097 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4098 pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
4099 ct: [0xac86bc60,0x6b6640c3,0x09e782f2,0x32bf367f] },
4100 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4101 pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
4102 ct: [0x36aff0ef,0x7bf32807,0x72cf4cac,0x80a0d2b2] },
4103 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4104 pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
4105 ct: [0x1f8eedea,0x0f62a140,0x6d58cfc3,0xecea72cf] },
4106 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4107 pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
4108 ct: [0xabf4154a,0x3375a1d3,0xe6b1d454,0x438f95a6] },
4109 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4110 pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
4111 ct: [0x96f96e9d,0x607f6615,0xfc192061,0xee648b07] },
4112 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4113 pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
4114 ct: [0xcf37cdaa,0xa0d2d536,0xc7185763,0x4c792064] },
4115 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4116 pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
4117 ct: [0xfbd6640c,0x80245c2b,0x805373f1,0x30703127] },
4118 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4119 pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
4120 ct: [0x8d6a8afe,0x55a6e481,0xbadae0d1,0x46f436db] },
4121 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4122 pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
4123 ct: [0x6a4981f2,0x915e3e68,0xaf6c2238,0x5dd06756] },
4124 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4125 pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
4126 ct: [0x42a1136e,0x5f8d8d21,0xd3101998,0x642d573b] },
4127 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4128 pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
4129 ct: [0x9b471596,0xdc69ae15,0x86cee615,0x8b0b0181] },
4130 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4131 pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
4132 ct: [0x753665c4,0xaf1eff33,0xaa8b628b,0xf8741cfd] },
4133 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4134 pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
4135 ct: [0x9a682acf,0x40be01f5,0xb2a4193c,0x9a82404d] },
4136 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4137 pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
4138 ct: [0x54fafe26,0xe4287f17,0xd1935f87,0xeb9ade01] },
4139 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4140 pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
4141 ct: [0x49d541b2,0xe74cfe73,0xe6a8e822,0x5f7bd449] },
4142 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4143 pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
4144 ct: [0x11a45530,0xf624ff6f,0x76a1b382,0x6626ff7b] },
4145 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4146 pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
4147 ct: [0xf96b0c4a,0x8bc6c861,0x30289f60,0xb43b8fba] },
4148 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4149 pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
4150 ct: [0x48c7d0e8,0x0834ebdc,0x35b6735f,0x76b46c8b] },
4151 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4152 pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
4153 ct: [0x2463531a,0xb54d6695,0x5e73edc4,0xcb8eaa45] },
4154 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4155 pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
4156 ct: [0xac9bd8e2,0x53046913,0x4b9d5b06,0x5d4f565b] },
4157 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4158 pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
4159 ct: [0x3f5f9106,0xd0e52f97,0x3d4890e6,0xf37e8a00] },
4160 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4161 pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
4162 ct: [0x20ebc86f,0x1304d272,0xe2e207e5,0x9db639f0] },
4163 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4164 pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
4165 ct: [0xe67ae642,0x6bf9526c,0x972cff07,0x2b52252c] },
4166 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4167 pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
4168 ct: [0x1a518ddd,0xaf9efa0d,0x002cc58d,0x107edfc8] },
4169 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4170 pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
4171 ct: [0xead731af,0x4d3a2fe3,0xb34bed04,0x7942a49f] },
4172 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4173 pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
4174 ct: [0xb1d4efe4,0x0242f83e,0x93b6c8d7,0xefb5eae9] },
4175 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4176 pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
4177 ct: [0xcd2b1fec,0x11fd906c,0x5c763009,0x9443610a] },
4178 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4179 pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
4180 ct: [0xa1853fe4,0x7fe29289,0xd153161d,0x06387d21] },
4181 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4182 pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
4183 ct: [0x46321541,0x79a555c1,0x7ea604d0,0x889fab14] },
4184 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4185 pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
4186 ct: [0xdd27cac6,0x401a022e,0x8f38f9f9,0x3e774417] },
4187 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4188 pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
4189 ct: [0xc090313e,0xb98674f3,0x5f312338,0x5fb95d4d] },
4190 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4191 pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
4192 ct: [0xcc352626,0x2b92f02e,0xdce548f7,0x16b9f45c] },
4193 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4194 pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
4195 ct: [0xc0838d1a,0x2b16a7c7,0xf0dfcc43,0x3c399c33] },
4196 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4197 pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
4198 ct: [0x0d9ac756,0xeb297695,0xeed4d382,0xeb126d26] },
4199 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4200 pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
4201 ct: [0x56ede9dd,0xa3f6f141,0xbff1757f,0xa689c3e1] },
4202 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4203 pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
4204 ct: [0x768f520e,0xfe0f23e6,0x1d3ec8ad,0x9ce91774] },
4205 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4206 pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
4207 ct: [0xb1144ddf,0xa7575521,0x3390e7c5,0x96660490] },
4208 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4209 pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
4210 ct: [0x1d7c0c40,0x40b355b9,0xd107a993,0x25e3b050] },
4211 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4212 pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
4213 ct: [0xd8e2bb1a,0xe8ee3dcf,0x5bf7d6c3,0x8da82a1a] },
4214 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4215 pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
4216 ct: [0xfaf82d17,0x8af25a98,0x86a47e7f,0x789b98d7] },
4217 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4218 pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
4219 ct: [0x9b58dbfd,0x77fe5aca,0x9cfc190c,0xd1b82d19] },
4220 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4221 pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
4222 ct: [0x77f39208,0x9042e478,0xac16c0c8,0x6a0b5db5] },
4223 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4224 pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
4225 ct: [0x19f08e34,0x20ee69b4,0x77ca1420,0x281c4782] },
4226 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4227 pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
4228 ct: [0xa1b19bee,0xe4e11713,0x9f74b3c5,0x3fdcb875] },
4229 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4230 pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
4231 ct: [0xa37a5869,0xb218a9f3,0xa0868d19,0xaea0ad6a] },
4232 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4233 pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
4234 ct: [0xbc3594e8,0x65bcd026,0x1b132027,0x31f33580] },
4235 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4236 pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
4237 ct: [0x811441ce,0x1d309eee,0x7185e8c7,0x52c07557] },
4238 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4239 pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
4240 ct: [0x959971ce,0x41341905,0x63518e70,0x0b9874d1] },
4241 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4242 pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
4243 ct: [0x76b5614a,0x042707c9,0x8e2132e2,0xe805fe63] },
4244 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4245 pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
4246 ct: [0x7d9fa6a5,0x7530d0f0,0x36fec31c,0x230b0cc6] },
4247 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4248 pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
4249 ct: [0x964153a8,0x3bf6989a,0x4ba80daa,0x91c3e081] },
4250 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4251 pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
4252 ct: [0xa013014d,0x4ce8054c,0xf2591d06,0xf6f2f176] },
4253 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4254 pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
4255 ct: [0xd1c5f639,0x9bf38250,0x2e385eee,0x1474a869] },
4256 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4257 pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
4258 ct: [0x0007e20b,0x8298ec35,0x4f0f5fe7,0x470f36bd] },
4259 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4260 pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
4261 ct: [0xb95ba05b,0x332da61e,0xf63a2b31,0xfcad9879] },
4262 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4263 pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
4264 ct: [0x4620a49b,0xd9674915,0x61669ab2,0x5dce45f4] },
4265 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4266 pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
4267 ct: [0x12e71214,0xae8e04f0,0xbb63d742,0x5c6f14d5] },
4268 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4269 pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
4270 ct: [0x4cc42fc1,0x407b008f,0xe350907c,0x092e80ac] },
4271 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4272 pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
4273 ct: [0x08b244ce,0x7cbc8ee9,0x7fbba808,0xcb146fda] },
4274 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4275 pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
4276 ct: [0x39b333e8,0x694f2154,0x6ad1edd9,0xd87ed95b] },
4277 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4278 pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
4279 ct: [0x3b271f8a,0xb2e6e4a2,0x0ba8090f,0x43ba78f3] },
4280 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4281 pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
4282 ct: [0x9ad983f3,0xbf651cd0,0x393f0a73,0xcccdea50] },
4283 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4284 pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
4285 ct: [0x8f476cbf,0xf75c1f72,0x5ce18e4b,0xbcd19b32] },
4286 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4287 pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
4288 ct: [0x905b6267,0xf1d6ab53,0x20835a13,0x3f096f2a] },
4289 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4290 pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
4291 ct: [0x145b60d6,0xd0193c23,0xf4221848,0xa892d61a] },
4292 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4293 pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
4294 ct: [0x55cfb3fb,0x6d75cad0,0x445bbc8d,0xafa25b0f] },
4295 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4296 pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
4297 ct: [0x7b8e7098,0xe357ef71,0x237d46d8,0xb075b0f5] },
4298 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4299 pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
4300 ct: [0x2bf27229,0x901eb40f,0x2df9d839,0x8d1505ae] },
4301 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4302 pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
4303 ct: [0x83a63402,0xa77f9ad5,0xc1e931a9,0x31ecd706] },
4304 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4305 pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
4306 ct: [0x6f8ba652,0x1152d31f,0x2bada184,0x3e26b973] },
4307 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4308 pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
4309 ct: [0xe5c3b8e3,0x0fd2d8e6,0x239b17b4,0x4bd23bbd] },
4310 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4311 pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
4312 ct: [0x1ac1f710,0x2c59933e,0x8b2ddc3f,0x14e94baa] },
4313 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4314 pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
4315 ct: [0x21d9ba49,0xf276b45f,0x11af8fc7,0x1a088e3d] },
4316 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4317 pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
4318 ct: [0x649f1cdd,0xc3792b46,0x38635a39,0x2bc9bade] },
4319 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4320 pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
4321 ct: [0xe2775e4b,0x59c1bc2e,0x31a2078c,0x11b5a08c] },
4322 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4323 pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
4324 ct: [0x2be1fae5,0x048a2558,0x2a679ca1,0x0905eb80] },
4325 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4326 pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
4327 ct: [0xda86f292,0xc6f41ea3,0x4fb2068d,0xf75ecc29] },
4328 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4329 pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
4330 ct: [0x220df19f,0x85d69b1b,0x562fa69a,0x3c5beca5] },
4331 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4332 pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
4333 ct: [0x1f11d5d0,0x355e0b55,0x6ccdb6c7,0xf5083b4d] },
4334 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4335 pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
4336 ct: [0x62526b78,0xbe79cb38,0x4633c91f,0x83b4151b] },
4337 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4338 pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
4339 ct: [0x90ddbcb9,0x50843592,0xdd47bbef,0x00fdc876] },
4340 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4341 pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
4342 ct: [0x2fd0e41c,0x5b840227,0x7354a739,0x1d2618e2] },
4343 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4344 pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
4345 ct: [0x3cdf13e7,0x2dee4c58,0x1bafec70,0xb85f9660] },
4346 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4347 pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
4348 ct: [0xafa2ffc1,0x37577092,0xe2b654fa,0x199d2c43] },
4349 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4350 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
4351 ct: [0x8d683ee6,0x3e60d208,0xe343ce48,0xdbc44cac] },
4352 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4353 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
4354 ct: [0x705a4ef8,0xba213372,0x9c20185c,0x3d3a4763] },
4355 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4356 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
4357 ct: [0x0861a861,0xc3db4e94,0x194211b7,0x7ed761b9] },
4358 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4359 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
4360 ct: [0x4b00c27e,0x8b26da7e,0xab9d3a88,0xdec8b031] },
4361 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4362 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
4363 ct: [0x5f397bf0,0x3084820c,0xc8810d52,0xe5b666e9] },
4364 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4365 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
4366 ct: [0x63fafabb,0x72c07bfb,0xd3ddc9b1,0x203104b8] },
4367 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4368 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
4369 ct: [0x683e2140,0x585b1845,0x2dd4ffbb,0x93c95df9] },
4370 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4371 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
4372 ct: [0x286894e4,0x8e537f87,0x63b56707,0xd7d155c8] },
4373 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4374 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
4375 ct: [0xa423deab,0xc173dcf7,0xe2c4c53e,0x77d37cd1] },
4376 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4377 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
4378 ct: [0xeb816831,0x3e1cfdfd,0xb5e986d5,0x429cf172] },
4379 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4380 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
4381 ct: [0x27127daa,0xfc9accd2,0xfb334ec3,0xeba52323] },
4382 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4383 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
4384 ct: [0xee0715b9,0x6f72e3f7,0xa22a5064,0xfc592f4c] },
4385 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4386 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
4387 ct: [0x29ee5267,0x70f2a11d,0xcfa989d1,0xce88830f] },
4388 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4389 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
4390 ct: [0x0493370e,0x054b0987,0x1130fe49,0xaf730a5a] },
4391 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4392 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
4393 ct: [0x9b7b940f,0x6c509f9e,0x44a4ee14,0x0448ee46] },
4394 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4395 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
4396 ct: [0x2915be4a,0x1ecfdcbe,0x3e023811,0xa12bb6c7] },
4397 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4398 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
4399 ct: [0x7240e524,0xbc51d8c4,0xd440b1be,0x55d1062c] },
4400 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4401 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
4402 ct: [0xda63039d,0x38cb4612,0xb2dc36ba,0x26684b93] },
4403 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4404 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
4405 ct: [0x0f59cb5a,0x4b522e2a,0xc56c1a64,0xf558ad9a] },
4406 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4407 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
4408 ct: [0x7bfe9d87,0x6c6d63c1,0xd035da8f,0xe21c409d] },
4409 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4410 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
4411 ct: [0xacdace80,0x78a32b1a,0x182bfa49,0x87ca1347] },
4412 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4413 pt: [0x80000000,0x00000000,0x00000000,0x00000000],
4414 ct: [0xddc6bf79,0x0c15760d,0x8d9aeb6f,0x9a75fd4e] },
4415 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4416 pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
4417 ct: [0x0a6bdc6d,0x4c1e6280,0x301fd8e9,0x7ddbe601] },
4418 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4419 pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
4420 ct: [0x9b80eefb,0x7ebe2d2b,0x16247aa0,0xefc72f5d] },
4421 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4422 pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
4423 ct: [0x7f2c5ece,0x07a98d8b,0xee13c511,0x77395ff7] },
4424 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4425 pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
4426 ct: [0x7818d800,0xdcf6f4be,0x1e0e94f4,0x03d1e4c2] },
4427 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4428 pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
4429 ct: [0xe74cd1c9,0x2f0919c3,0x5a032412,0x3d6177d3] },
4430 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4431 pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
4432 ct: [0x8092a4dc,0xf2da7e77,0xe93bdd37,0x1dfed82e] },
4433 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4434 pt: [0xff000000,0x00000000,0x00000000,0x00000000],
4435 ct: [0x49af6b37,0x2135acef,0x10132e54,0x8f217b17] },
4436 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4437 pt: [0xff800000,0x00000000,0x00000000,0x00000000],
4438 ct: [0x8bcd40f9,0x4ebb63b9,0xf7909676,0xe667f1e7] },
4439 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4440 pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
4441 ct: [0xfe1cffb8,0x3f45dcfb,0x38b29be4,0x38dbd3ab] },
4442 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4443 pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
4444 ct: [0x0dc58a8d,0x88662370,0x5aec15cb,0x1e70dc0e] },
4445 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4446 pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
4447 ct: [0xc218faa1,0x6056bd07,0x74c3e8d7,0x9c35a5e4] },
4448 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4449 pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
4450 ct: [0x047bba83,0xf7aa8417,0x31504e01,0x2208fc9e] },
4451 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4452 pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
4453 ct: [0xdc8f0e49,0x15fd81ba,0x70a33131,0x0882f6da] },
4454 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4455 pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
4456 ct: [0x1569859e,0xa6b7206c,0x30bf4fd0,0xcbfac33c] },
4457 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4458 pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
4459 ct: [0x300ade92,0xf88f48fa,0x2df730ec,0x16ef44cd] },
4460 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4461 pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
4462 ct: [0x1fe6cc3c,0x05965dc0,0x8eb0590c,0x95ac71d0] },
4463 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4464 pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
4465 ct: [0x59e858ea,0xaa97fec3,0x8111275b,0x6cf5abc0] },
4466 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4467 pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
4468 ct: [0x2239455e,0x7afe3b06,0x16100288,0xcc5a723b] },
4469 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4470 pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
4471 ct: [0x3ee500c5,0xc8d63479,0x717163e5,0x5c5c4522] },
4472 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4473 pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
4474 ct: [0xd5e38bf1,0x5f16d90e,0x3e214041,0xd774daa8] },
4475 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4476 pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
4477 ct: [0xb1f4066e,0x6f4f187d,0xfe5f2ad1,0xb17819d0] },
4478 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4479 pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
4480 ct: [0x6ef4cc4d,0xe49b1106,0x5d7af290,0x9854794a] },
4481 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4482 pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
4483 ct: [0xac86bc60,0x6b6640c3,0x09e782f2,0x32bf367f] },
4484 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4485 pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
4486 ct: [0x36aff0ef,0x7bf32807,0x72cf4cac,0x80a0d2b2] },
4487 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4488 pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
4489 ct: [0x1f8eedea,0x0f62a140,0x6d58cfc3,0xecea72cf] },
4490 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4491 pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
4492 ct: [0xabf4154a,0x3375a1d3,0xe6b1d454,0x438f95a6] },
4493 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4494 pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
4495 ct: [0x96f96e9d,0x607f6615,0xfc192061,0xee648b07] },
4496 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4497 pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
4498 ct: [0xcf37cdaa,0xa0d2d536,0xc7185763,0x4c792064] },
4499 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4500 pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
4501 ct: [0xfbd6640c,0x80245c2b,0x805373f1,0x30703127] },
4502 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4503 pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
4504 ct: [0x8d6a8afe,0x55a6e481,0xbadae0d1,0x46f436db] },
4505 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4506 pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
4507 ct: [0x6a4981f2,0x915e3e68,0xaf6c2238,0x5dd06756] },
4508 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4509 pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
4510 ct: [0x42a1136e,0x5f8d8d21,0xd3101998,0x642d573b] },
4511 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4512 pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
4513 ct: [0x9b471596,0xdc69ae15,0x86cee615,0x8b0b0181] },
4514 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4515 pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
4516 ct: [0x753665c4,0xaf1eff33,0xaa8b628b,0xf8741cfd] },
4517 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4518 pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
4519 ct: [0x9a682acf,0x40be01f5,0xb2a4193c,0x9a82404d] },
4520 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4521 pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
4522 ct: [0x54fafe26,0xe4287f17,0xd1935f87,0xeb9ade01] },
4523 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4524 pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
4525 ct: [0x49d541b2,0xe74cfe73,0xe6a8e822,0x5f7bd449] },
4526 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4527 pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
4528 ct: [0x11a45530,0xf624ff6f,0x76a1b382,0x6626ff7b] },
4529 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4530 pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
4531 ct: [0xf96b0c4a,0x8bc6c861,0x30289f60,0xb43b8fba] },
4532 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4533 pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
4534 ct: [0x48c7d0e8,0x0834ebdc,0x35b6735f,0x76b46c8b] },
4535 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4536 pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
4537 ct: [0x2463531a,0xb54d6695,0x5e73edc4,0xcb8eaa45] },
4538 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4539 pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
4540 ct: [0xac9bd8e2,0x53046913,0x4b9d5b06,0x5d4f565b] },
4541 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4542 pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
4543 ct: [0x3f5f9106,0xd0e52f97,0x3d4890e6,0xf37e8a00] },
4544 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4545 pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
4546 ct: [0x20ebc86f,0x1304d272,0xe2e207e5,0x9db639f0] },
4547 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4548 pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
4549 ct: [0xe67ae642,0x6bf9526c,0x972cff07,0x2b52252c] },
4550 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4551 pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
4552 ct: [0x1a518ddd,0xaf9efa0d,0x002cc58d,0x107edfc8] },
4553 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4554 pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
4555 ct: [0xead731af,0x4d3a2fe3,0xb34bed04,0x7942a49f] },
4556 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4557 pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
4558 ct: [0xb1d4efe4,0x0242f83e,0x93b6c8d7,0xefb5eae9] },
4559 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4560 pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
4561 ct: [0xcd2b1fec,0x11fd906c,0x5c763009,0x9443610a] },
4562 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4563 pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
4564 ct: [0xa1853fe4,0x7fe29289,0xd153161d,0x06387d21] },
4565 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4566 pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
4567 ct: [0x46321541,0x79a555c1,0x7ea604d0,0x889fab14] },
4568 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4569 pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
4570 ct: [0xdd27cac6,0x401a022e,0x8f38f9f9,0x3e774417] },
4571 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4572 pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
4573 ct: [0xc090313e,0xb98674f3,0x5f312338,0x5fb95d4d] },
4574 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4575 pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
4576 ct: [0xcc352626,0x2b92f02e,0xdce548f7,0x16b9f45c] },
4577 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4578 pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
4579 ct: [0xc0838d1a,0x2b16a7c7,0xf0dfcc43,0x3c399c33] },
4580 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4581 pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
4582 ct: [0x0d9ac756,0xeb297695,0xeed4d382,0xeb126d26] },
4583 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4584 pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
4585 ct: [0x56ede9dd,0xa3f6f141,0xbff1757f,0xa689c3e1] },
4586 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4587 pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
4588 ct: [0x768f520e,0xfe0f23e6,0x1d3ec8ad,0x9ce91774] },
4589 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4590 pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
4591 ct: [0xb1144ddf,0xa7575521,0x3390e7c5,0x96660490] },
4592 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4593 pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
4594 ct: [0x1d7c0c40,0x40b355b9,0xd107a993,0x25e3b050] },
4595 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4596 pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
4597 ct: [0xd8e2bb1a,0xe8ee3dcf,0x5bf7d6c3,0x8da82a1a] },
4598 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4599 pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
4600 ct: [0xfaf82d17,0x8af25a98,0x86a47e7f,0x789b98d7] },
4601 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4602 pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
4603 ct: [0x9b58dbfd,0x77fe5aca,0x9cfc190c,0xd1b82d19] },
4604 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4605 pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
4606 ct: [0x77f39208,0x9042e478,0xac16c0c8,0x6a0b5db5] },
4607 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4608 pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
4609 ct: [0x19f08e34,0x20ee69b4,0x77ca1420,0x281c4782] },
4610 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4611 pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
4612 ct: [0xa1b19bee,0xe4e11713,0x9f74b3c5,0x3fdcb875] },
4613 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4614 pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
4615 ct: [0xa37a5869,0xb218a9f3,0xa0868d19,0xaea0ad6a] },
4616 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4617 pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
4618 ct: [0xbc3594e8,0x65bcd026,0x1b132027,0x31f33580] },
4619 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4620 pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
4621 ct: [0x811441ce,0x1d309eee,0x7185e8c7,0x52c07557] },
4622 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4623 pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
4624 ct: [0x959971ce,0x41341905,0x63518e70,0x0b9874d1] },
4625 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4626 pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
4627 ct: [0x76b5614a,0x042707c9,0x8e2132e2,0xe805fe63] },
4628 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4629 pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
4630 ct: [0x7d9fa6a5,0x7530d0f0,0x36fec31c,0x230b0cc6] },
4631 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4632 pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
4633 ct: [0x964153a8,0x3bf6989a,0x4ba80daa,0x91c3e081] },
4634 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4635 pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
4636 ct: [0xa013014d,0x4ce8054c,0xf2591d06,0xf6f2f176] },
4637 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4638 pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
4639 ct: [0xd1c5f639,0x9bf38250,0x2e385eee,0x1474a869] },
4640 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4641 pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
4642 ct: [0x0007e20b,0x8298ec35,0x4f0f5fe7,0x470f36bd] },
4643 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4644 pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
4645 ct: [0xb95ba05b,0x332da61e,0xf63a2b31,0xfcad9879] },
4646 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4647 pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
4648 ct: [0x4620a49b,0xd9674915,0x61669ab2,0x5dce45f4] },
4649 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4650 pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
4651 ct: [0x12e71214,0xae8e04f0,0xbb63d742,0x5c6f14d5] },
4652 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4653 pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
4654 ct: [0x4cc42fc1,0x407b008f,0xe350907c,0x092e80ac] },
4655 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4656 pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
4657 ct: [0x08b244ce,0x7cbc8ee9,0x7fbba808,0xcb146fda] },
4658 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4659 pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
4660 ct: [0x39b333e8,0x694f2154,0x6ad1edd9,0xd87ed95b] },
4661 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4662 pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
4663 ct: [0x3b271f8a,0xb2e6e4a2,0x0ba8090f,0x43ba78f3] },
4664 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4665 pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
4666 ct: [0x9ad983f3,0xbf651cd0,0x393f0a73,0xcccdea50] },
4667 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4668 pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
4669 ct: [0x8f476cbf,0xf75c1f72,0x5ce18e4b,0xbcd19b32] },
4670 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4671 pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
4672 ct: [0x905b6267,0xf1d6ab53,0x20835a13,0x3f096f2a] },
4673 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4674 pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
4675 ct: [0x145b60d6,0xd0193c23,0xf4221848,0xa892d61a] },
4676 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4677 pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
4678 ct: [0x55cfb3fb,0x6d75cad0,0x445bbc8d,0xafa25b0f] },
4679 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4680 pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
4681 ct: [0x7b8e7098,0xe357ef71,0x237d46d8,0xb075b0f5] },
4682 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4683 pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
4684 ct: [0x2bf27229,0x901eb40f,0x2df9d839,0x8d1505ae] },
4685 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4686 pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
4687 ct: [0x83a63402,0xa77f9ad5,0xc1e931a9,0x31ecd706] },
4688 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4689 pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
4690 ct: [0x6f8ba652,0x1152d31f,0x2bada184,0x3e26b973] },
4691 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4692 pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
4693 ct: [0xe5c3b8e3,0x0fd2d8e6,0x239b17b4,0x4bd23bbd] },
4694 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4695 pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
4696 ct: [0x1ac1f710,0x2c59933e,0x8b2ddc3f,0x14e94baa] },
4697 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4698 pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
4699 ct: [0x21d9ba49,0xf276b45f,0x11af8fc7,0x1a088e3d] },
4700 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4701 pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
4702 ct: [0x649f1cdd,0xc3792b46,0x38635a39,0x2bc9bade] },
4703 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4704 pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
4705 ct: [0xe2775e4b,0x59c1bc2e,0x31a2078c,0x11b5a08c] },
4706 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4707 pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
4708 ct: [0x2be1fae5,0x048a2558,0x2a679ca1,0x0905eb80] },
4709 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4710 pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
4711 ct: [0xda86f292,0xc6f41ea3,0x4fb2068d,0xf75ecc29] },
4712 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4713 pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
4714 ct: [0x220df19f,0x85d69b1b,0x562fa69a,0x3c5beca5] },
4715 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4716 pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
4717 ct: [0x1f11d5d0,0x355e0b55,0x6ccdb6c7,0xf5083b4d] },
4718 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4719 pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
4720 ct: [0x62526b78,0xbe79cb38,0x4633c91f,0x83b4151b] },
4721 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4722 pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
4723 ct: [0x90ddbcb9,0x50843592,0xdd47bbef,0x00fdc876] },
4724 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4725 pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
4726 ct: [0x2fd0e41c,0x5b840227,0x7354a739,0x1d2618e2] },
4727 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4728 pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
4729 ct: [0x3cdf13e7,0x2dee4c58,0x1bafec70,0xb85f9660] },
4730 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4731 pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
4732 ct: [0xafa2ffc1,0x37577092,0xe2b654fa,0x199d2c43] },
4733 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4734 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
4735 ct: [0x8d683ee6,0x3e60d208,0xe343ce48,0xdbc44cac] },
4736 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4737 pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
4738 ct: [0x705a4ef8,0xba213372,0x9c20185c,0x3d3a4763] },
4739 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4740 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
4741 ct: [0x0861a861,0xc3db4e94,0x194211b7,0x7ed761b9] },
4742 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4743 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
4744 ct: [0x4b00c27e,0x8b26da7e,0xab9d3a88,0xdec8b031] },
4745 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4746 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
4747 ct: [0x5f397bf0,0x3084820c,0xc8810d52,0xe5b666e9] },
4748 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4749 pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
4750 ct: [0x63fafabb,0x72c07bfb,0xd3ddc9b1,0x203104b8] },
4751 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4752 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
4753 ct: [0x683e2140,0x585b1845,0x2dd4ffbb,0x93c95df9] },
4754 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4755 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
4756 ct: [0x286894e4,0x8e537f87,0x63b56707,0xd7d155c8] },
4757 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4758 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
4759 ct: [0xa423deab,0xc173dcf7,0xe2c4c53e,0x77d37cd1] },
4760 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4761 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
4762 ct: [0xeb816831,0x3e1cfdfd,0xb5e986d5,0x429cf172] },
4763 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4764 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
4765 ct: [0x27127daa,0xfc9accd2,0xfb334ec3,0xeba52323] },
4766 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4767 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
4768 ct: [0xee0715b9,0x6f72e3f7,0xa22a5064,0xfc592f4c] },
4769 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4770 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
4771 ct: [0x29ee5267,0x70f2a11d,0xcfa989d1,0xce88830f] },
4772 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4773 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
4774 ct: [0x0493370e,0x054b0987,0x1130fe49,0xaf730a5a] },
4775 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4776 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
4777 ct: [0x9b7b940f,0x6c509f9e,0x44a4ee14,0x0448ee46] },
4778 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4779 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
4780 ct: [0x2915be4a,0x1ecfdcbe,0x3e023811,0xa12bb6c7] },
4781 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4782 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
4783 ct: [0x7240e524,0xbc51d8c4,0xd440b1be,0x55d1062c] },
4784 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4785 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
4786 ct: [0xda63039d,0x38cb4612,0xb2dc36ba,0x26684b93] },
4787 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4788 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
4789 ct: [0x0f59cb5a,0x4b522e2a,0xc56c1a64,0xf558ad9a] },
4790 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4791 pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
4792 ct: [0x7bfe9d87,0x6c6d63c1,0xd035da8f,0xe21c409d] },
4793 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4794 pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
4795 ct: [0xacdace80,0x78a32b1a,0x182bfa49,0x87ca1347] },
4796 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4797 pt: [0x014730f8,0x0ac625fe,0x84f026c6,0x0bfd547d],
4798 ct: [0x5c9d844e,0xd46f9885,0x085e5d6a,0x4f94c7d7] },
4799 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4800 pt: [0x0b24af36,0x193ce466,0x5f2825d7,0xb4749c98],
4801 ct: [0xa9ff75bd,0x7cf6613d,0x3731c77c,0x3b6d0c04] },
4802 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4803 pt: [0x761c1fe4,0x1a18acf2,0x0d241650,0x611d90f1],
4804 ct: [0x623a52fc,0xea5d443e,0x48d9181a,0xb32c7421] },
4805 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4806 pt: [0x8a560769,0xd605868a,0xd80d819b,0xdba03771],
4807 ct: [0x38f2c7ae,0x10612415,0xd27ca190,0xd27da8b4] },
4808 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4809 pt: [0x91fbef2d,0x15a97816,0x060bee1f,0xeaa49afe],
4810 ct: [0x1bc704f1,0xbce135ce,0xb810341b,0x216d7abe] },
4811 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4812 pt: [0x014730f8,0x0ac625fe,0x84f026c6,0x0bfd547d],
4813 ct: [0x5c9d844e,0xd46f9885,0x085e5d6a,0x4f94c7d7] },
4814 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4815 pt: [0x0b24af36,0x193ce466,0x5f2825d7,0xb4749c98],
4816 ct: [0xa9ff75bd,0x7cf6613d,0x3731c77c,0x3b6d0c04] },
4817 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4818 pt: [0x761c1fe4,0x1a18acf2,0x0d241650,0x611d90f1],
4819 ct: [0x623a52fc,0xea5d443e,0x48d9181a,0xb32c7421] },
4820 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4821 pt: [0x8a560769,0xd605868a,0xd80d819b,0xdba03771],
4822 ct: [0x38f2c7ae,0x10612415,0xd27ca190,0xd27da8b4] },
4823 { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4824 pt: [0x91fbef2d,0x15a97816,0x060bee1f,0xeaa49afe],
4825 ct: [0x1bc704f1,0xbce135ce,0xb810341b,0x216d7abe] },
4826 { key: [0xc47b0294,0xdbbbee0f,0xec4757f2,0x2ffeee35,0x87ca4730,0xc3d33b69,0x1df38bab,0x076bc558],
4827 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4828 ct: [0x46f2fb34,0x2d6f0ab4,0x77476fc5,0x01242c5f] },
4829 { key: [0x28d46cff,0xa1585331,0x94214a91,0xe712fc2b,0x45b51807,0x6675affd,0x910edeca,0x5f41ac64],
4830 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4831 ct: [0x4bf3b0a6,0x9aeb6657,0x794f2901,0xb1440ad4] },
4832 { key: [0xc1cc358b,0x449909a1,0x9436cfbb,0x3f852ef8,0xbcb5ed12,0xac705832,0x5f56e609,0x9aab1a1c],
4833 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4834 ct: [0x35206527,0x2169abf9,0x85684392,0x7d0674fd] },
4835 { key: [0x984ca75f,0x4ee8d706,0xf46c2d98,0xc0bf4a45,0xf5b00d79,0x1c2dfeb1,0x91b5ed8e,0x420fd627],
4836 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4837 ct: [0x4307456a,0x9e67813b,0x452e15fa,0x8fffe398] },
4838 { key: [0xb43d08a4,0x47ac8609,0xbaadae4f,0xf12918b9,0xf68fc165,0x3f126922,0x2f123981,0xded7a92f],
4839 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4840 ct: [0x46634466,0x07354989,0x477a5c6f,0x0f007ef4] },
4841 { key: [0x1d85a181,0xb54cde51,0xf0e09809,0x5b2962fd,0xc93b51fe,0x9b88602b,0x3f54130b,0xf76a5bd9],
4842 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4843 ct: [0x531c2c38,0x344578b8,0x4d50b3c9,0x17bbb6e1] },
4844 { key: [0xdc0eba1f,0x2232a787,0x9ded34ed,0x8428eeb8,0x769b056b,0xbaf8ad77,0xcb65c354,0x1430b4cf],
4845 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4846 ct: [0xfc6aec90,0x63234800,0x05c58e7e,0x1ab004ad] },
4847 { key: [0xf8be9ba6,0x15c5a952,0xcabbca24,0xf68f8593,0x039624d5,0x24c816ac,0xda2c9183,0xbd917cb9],
4848 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4849 ct: [0xa3944b95,0xca0b5204,0x3584ef02,0x151926a8] },
4850 { key: [0x797f8b3d,0x176dac5b,0x7e34a2d5,0x39c4ef36,0x7a16f863,0x5f626473,0x7591c5c0,0x7bf57a3e],
4851 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4852 ct: [0xa74289fe,0x73a4c123,0xca189ea1,0xe1b49ad5] },
4853 { key: [0x6838d40c,0xaf927749,0xc13f0329,0xd331f448,0xe202c73e,0xf52c5f73,0xa37ca635,0xd4c47707],
4854 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4855 ct: [0xb91d4ea4,0x488644b5,0x6cf0812f,0xa7fcf5fc] },
4856 { key: [0xccd1bc3c,0x659cd3c5,0x9bc43748,0x4e3c5c72,0x4441da8d,0x6e90ce55,0x6cd57d07,0x52663bbc],
4857 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4858 ct: [0x304f81ab,0x61a80c2e,0x743b94d5,0x002a126b] },
4859 { key: [0x13428b5e,0x4c005e06,0x36dd3384,0x05d173ab,0x135dec2a,0x25c22c5d,0xf0722d69,0xdcc43887],
4860 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4861 ct: [0x649a7154,0x5378c783,0xe368c9ad,0xe7114f6c] },
4862 { key: [0x07eb03a0,0x8d291d1b,0x07408bf3,0x512ab40c,0x91097ac7,0x7461aad4,0xbb859647,0xf74f00ee],
4863 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4864 ct: [0x47cb030d,0xa2ab051d,0xfc6c4bf6,0x910d12bb] },
4865 { key: [0x90143ae2,0x0cd78c5d,0x8ebdd6cb,0x9dc17624,0x27a96c78,0xc639bccc,0x41a61424,0x564eafe1],
4866 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4867 ct: [0x798c7c00,0x5dee432b,0x2c8ea5df,0xa381ecc3] },
4868 { key: [0xb7a5794d,0x52737475,0xd53d5a37,0x7200849b,0xe0260a67,0xa2b22ced,0x8bbef128,0x82270d07],
4869 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4870 ct: [0x637c31dc,0x2591a076,0x36f646b7,0x2daabbe7] },
4871 { key: [0xfca02f3d,0x5011cfc5,0xc1e23165,0xd413a049,0xd4526a99,0x1827424d,0x896fe343,0x5e0bf68e],
4872 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4873 ct: [0x179a49c7,0x12154bbf,0xfbe6e7a8,0x4a18e220] },
4874 { key: [0xc47b0294,0xdbbbee0f,0xec4757f2,0x2ffeee35,0x87ca4730,0xc3d33b69,0x1df38bab,0x076bc558],
4875 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4876 ct: [0x46f2fb34,0x2d6f0ab4,0x77476fc5,0x01242c5f] },
4877 { key: [0x28d46cff,0xa1585331,0x94214a91,0xe712fc2b,0x45b51807,0x6675affd,0x910edeca,0x5f41ac64],
4878 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4879 ct: [0x4bf3b0a6,0x9aeb6657,0x794f2901,0xb1440ad4] },
4880 { key: [0xc1cc358b,0x449909a1,0x9436cfbb,0x3f852ef8,0xbcb5ed12,0xac705832,0x5f56e609,0x9aab1a1c],
4881 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4882 ct: [0x35206527,0x2169abf9,0x85684392,0x7d0674fd] },
4883 { key: [0x984ca75f,0x4ee8d706,0xf46c2d98,0xc0bf4a45,0xf5b00d79,0x1c2dfeb1,0x91b5ed8e,0x420fd627],
4884 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4885 ct: [0x4307456a,0x9e67813b,0x452e15fa,0x8fffe398] },
4886 { key: [0xb43d08a4,0x47ac8609,0xbaadae4f,0xf12918b9,0xf68fc165,0x3f126922,0x2f123981,0xded7a92f],
4887 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4888 ct: [0x46634466,0x07354989,0x477a5c6f,0x0f007ef4] },
4889 { key: [0x1d85a181,0xb54cde51,0xf0e09809,0x5b2962fd,0xc93b51fe,0x9b88602b,0x3f54130b,0xf76a5bd9],
4890 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4891 ct: [0x531c2c38,0x344578b8,0x4d50b3c9,0x17bbb6e1] },
4892 { key: [0xdc0eba1f,0x2232a787,0x9ded34ed,0x8428eeb8,0x769b056b,0xbaf8ad77,0xcb65c354,0x1430b4cf],
4893 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4894 ct: [0xfc6aec90,0x63234800,0x05c58e7e,0x1ab004ad] },
4895 { key: [0xf8be9ba6,0x15c5a952,0xcabbca24,0xf68f8593,0x039624d5,0x24c816ac,0xda2c9183,0xbd917cb9],
4896 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4897 ct: [0xa3944b95,0xca0b5204,0x3584ef02,0x151926a8] },
4898 { key: [0x797f8b3d,0x176dac5b,0x7e34a2d5,0x39c4ef36,0x7a16f863,0x5f626473,0x7591c5c0,0x7bf57a3e],
4899 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4900 ct: [0xa74289fe,0x73a4c123,0xca189ea1,0xe1b49ad5] },
4901 { key: [0x6838d40c,0xaf927749,0xc13f0329,0xd331f448,0xe202c73e,0xf52c5f73,0xa37ca635,0xd4c47707],
4902 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4903 ct: [0xb91d4ea4,0x488644b5,0x6cf0812f,0xa7fcf5fc] },
4904 { key: [0xccd1bc3c,0x659cd3c5,0x9bc43748,0x4e3c5c72,0x4441da8d,0x6e90ce55,0x6cd57d07,0x52663bbc],
4905 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4906 ct: [0x304f81ab,0x61a80c2e,0x743b94d5,0x002a126b] },
4907 { key: [0x13428b5e,0x4c005e06,0x36dd3384,0x05d173ab,0x135dec2a,0x25c22c5d,0xf0722d69,0xdcc43887],
4908 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4909 ct: [0x649a7154,0x5378c783,0xe368c9ad,0xe7114f6c] },
4910 { key: [0x07eb03a0,0x8d291d1b,0x07408bf3,0x512ab40c,0x91097ac7,0x7461aad4,0xbb859647,0xf74f00ee],
4911 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4912 ct: [0x47cb030d,0xa2ab051d,0xfc6c4bf6,0x910d12bb] },
4913 { key: [0x90143ae2,0x0cd78c5d,0x8ebdd6cb,0x9dc17624,0x27a96c78,0xc639bccc,0x41a61424,0x564eafe1],
4914 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4915 ct: [0x798c7c00,0x5dee432b,0x2c8ea5df,0xa381ecc3] },
4916 { key: [0xb7a5794d,0x52737475,0xd53d5a37,0x7200849b,0xe0260a67,0xa2b22ced,0x8bbef128,0x82270d07],
4917 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4918 ct: [0x637c31dc,0x2591a076,0x36f646b7,0x2daabbe7] },
4919 { key: [0xfca02f3d,0x5011cfc5,0xc1e23165,0xd413a049,0xd4526a99,0x1827424d,0x896fe343,0x5e0bf68e],
4920 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4921 ct: [0x179a49c7,0x12154bbf,0xfbe6e7a8,0x4a18e220] },
4922 { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4923 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4924 ct: [0xe35a6dcb,0x19b201a0,0x1ebcfa8a,0xa22b5759] },
4925 { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4926 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4927 ct: [0xb29169cd,0xcf2d83e8,0x38125a12,0xee6aa400] },
4928 { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4929 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4930 ct: [0xd8f3a72f,0xc3cdf74d,0xfaf6c3e6,0xb97b2fa6] },
4931 { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4932 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4933 ct: [0x1c777679,0xd50037c7,0x9491a94d,0xa76a9a35] },
4934 { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4935 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4936 ct: [0x9cf4893e,0xcafa0a02,0x47a898e0,0x40691559] },
4937 { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4938 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4939 ct: [0x8fbb4137,0x03735326,0x310a269b,0xd3aa94b2] },
4940 { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4941 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4942 ct: [0x60e32246,0xbed2b0e8,0x59e55c1c,0xc6b26502] },
4943 { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4944 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4945 ct: [0xec52a212,0xf80a09df,0x6317021b,0xc2a9819e] },
4946 { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4947 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4948 ct: [0xf23e5b60,0x0eb70dbc,0xcf6c0b1d,0x9a68182c] },
4949 { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4950 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4951 ct: [0xa3f599d6,0x3a82a968,0xc33fe265,0x90745970] },
4952 { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4953 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4954 ct: [0xd1ccb9b1,0x337002cb,0xac42c520,0xb5d67722] },
4955 { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4956 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4957 ct: [0xcc111f6c,0x37cf40a1,0x159d00fb,0x59fb0488] },
4958 { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4959 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4960 ct: [0xdc43b51a,0xb6090523,0x72989a26,0xe9cdd714] },
4961 { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4962 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4963 ct: [0x4dcede8d,0xa9e2578f,0x39703d44,0x33dc6459] },
4964 { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4965 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4966 ct: [0x1a4c1c26,0x3bbccfaf,0xc1178289,0x4685e3a8] },
4967 { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4968 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4969 ct: [0x937ad848,0x80db5061,0x3423d6d5,0x27a2823d] },
4970 { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4971 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4972 ct: [0x610b71df,0xc688e150,0xd8152c5b,0x35ebc14d] },
4973 { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4974 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4975 ct: [0x27ef2495,0xdabf3238,0x85aab39c,0x80f18d8b] },
4976 { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4977 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4978 ct: [0x633cafea,0x395bc03a,0xdae3a1e2,0x068e4b4e] },
4979 { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4980 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4981 ct: [0x6e1b482b,0x53761cf6,0x31819b74,0x9a6f3724] },
4982 { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4983 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4984 ct: [0x976e6f85,0x1ab52c77,0x1998dbb2,0xd71c75a9] },
4985 { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4986 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4987 ct: [0x85f2ba84,0xf8c307cf,0x525e124c,0x3e22e6cc] },
4988 { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4989 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4990 ct: [0x6bcca98b,0xf6a835fa,0x64955f72,0xde4115fe] },
4991 { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4992 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4993 ct: [0x2c75e2d3,0x6eebd654,0x11f14fd0,0xeb1d2a06] },
4994 { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4995 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4996 ct: [0xbd492950,0x06250ffc,0xa5100b60,0x07a0eade] },
4997 { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
4998 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
4999 ct: [0xa190527d,0x0ef7c70f,0x459cd394,0x0df316ec] },
5000 { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5001 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5002 ct: [0xbbd1097a,0x62433f79,0x449fa97d,0x4ee80dbf] },
5003 { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5004 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5005 ct: [0x07058e40,0x8f5b99b0,0xe0f061a1,0x761b5b3b] },
5006 { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5007 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5008 ct: [0x5fd1f13f,0xa0f31e37,0xfabde328,0xf894eac2] },
5009 { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5010 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5011 ct: [0xfc4af7c9,0x48df26e2,0xef3e01c1,0xee5b8f6f] },
5012 { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5013 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5014 ct: [0x829fd720,0x8fb92d44,0xa074a677,0xee9861ac] },
5015 { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5016 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5017 ct: [0xad9fc613,0xa703251b,0x54c64a0e,0x76431711] },
5018 { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5019 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5020 ct: [0x33ac9ecc,0xc4cc75e2,0x711618f8,0x0b1548e8] },
5021 { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5022 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5023 ct: [0x2025c74b,0x8ad8f4cd,0xa17ee204,0x9c4c902d] },
5024 { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5025 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5026 ct: [0xf85ca05f,0xe528f1ce,0x9b790166,0xe8d551e7] },
5027 { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5028 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5029 ct: [0x6f6238d8,0x966048d4,0x967154e0,0xdad5a6c9] },
5030 { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5031 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5032 ct: [0xf2b21b4e,0x7640a9b3,0x346de8b8,0x2fb41e49] },
5033 { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5034 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5035 ct: [0xf836f251,0xad1d11d4,0x9dc34462,0x8b1884e1] },
5036 { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5037 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5038 ct: [0x077e9470,0xae7abea5,0xa9769d49,0x182628c3] },
5039 { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5040 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5041 ct: [0xe0dcc2d2,0x7fc98656,0x33f85223,0xcf0d611f] },
5042 { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5043 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5044 ct: [0xbe66cfea,0x2fecd6bf,0x0ec7b435,0x2c99bcaa] },
5045 { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5046 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5047 ct: [0xdf31144f,0x87a2ef52,0x3facdcf2,0x1a427804] },
5048 { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5049 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5050 ct: [0xb5bb0f56,0x29fb6aae,0x5e1839a3,0xc3625d63] },
5051 { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5052 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5053 ct: [0x3c9db333,0x5306fe1e,0xc612bdbf,0xae6b6028] },
5054 { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5055 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5056 ct: [0x3dd5c346,0x34a79d3c,0xfcc83397,0x60e6f5f4] },
5057 { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5058 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5059 ct: [0x82bda118,0xa3ed7af3,0x14fa2ccc,0x5c07b761] },
5060 { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5061 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5062 ct: [0x2937a64f,0x7d4f46fe,0x6fea3b34,0x9ec78e38] },
5063 { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5064 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5065 ct: [0x225f068c,0x28476605,0x735ad671,0xbb8f39f3] },
5066 { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5067 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5068 ct: [0xae682c5e,0xcd71898e,0x08942ac9,0xaa89875c] },
5069 { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5070 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5071 ct: [0x5e031cb9,0xd676c302,0x2d7f2622,0x7e85c38f] },
5072 { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5073 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5074 ct: [0xa78463fb,0x064db5d5,0x2bb64bfe,0xf64f2dda] },
5075 { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5076 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5077 ct: [0x8aa9b75e,0x78459387,0x6c53a00e,0xae5af52b] },
5078 { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5079 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5080 ct: [0x3f84566d,0xf23da48a,0xf692722f,0xe980573a] },
5081 { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5082 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5083 ct: [0x31690b5e,0xd41c7eb4,0x2a1e8327,0x0a7ff0e6] },
5084 { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5085 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5086 ct: [0x77dd7702,0x646d55f0,0x8365e477,0xd3590eda] },
5087 { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5088 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5089 ct: [0x4c022ac6,0x2b3cb78d,0x739cc67b,0x3e20bb7e] },
5090 { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5091 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5092 ct: [0x092fa137,0xce18b5df,0xe7906f55,0x0bb13370] },
5093 { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5094 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5095 ct: [0x3e0cdadf,0x2e68353c,0x0027672c,0x97144dd3] },
5096 { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5097 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5098 ct: [0xd8c4b200,0xb383fc1f,0x2b2ea677,0x618a1d27] },
5099 { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5100 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5101 ct: [0x11825f99,0xb0e9bb34,0x77c1c071,0x3b015aac] },
5102 { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5103 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5104 ct: [0xf8b9fffb,0x5c187f7d,0xdc7ab10f,0x4fb77576] },
5105 { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5106 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5107 ct: [0xffb4e87a,0x32b37d6f,0x2c8328d3,0xb5377802] },
5108 { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5109 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5110 ct: [0xd276c13a,0x5d220f4d,0xa9224e74,0x896391ce] },
5111 { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5112 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5113 ct: [0x94efe7a0,0xe2e031e2,0x536da01d,0xf799c927] },
5114 { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5115 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5116 ct: [0x8f8fd822,0x680a8597,0x4e53a5a8,0xeb9d38de] },
5117 { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5118 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5119 ct: [0xe0f0a91b,0x2e45f8cc,0x37b7805a,0x3042588d] },
5120 { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5121 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5122 ct: [0x597a6252,0x255e46d6,0x364dbeed,0xa31e279c] },
5123 { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5124 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5125 ct: [0xf51a0f69,0x4442b8f0,0x5571797f,0xec7ee8bf] },
5126 { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5127 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5128 ct: [0x9ff071b1,0x65b5198a,0x93dddeeb,0xc54d09b5] },
5129 { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5130 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5131 ct: [0xc20a19fd,0x5758b0c4,0xbc1a5df8,0x9cf73877] },
5132 { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5133 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5134 ct: [0x97120166,0x307119ca,0x2280e931,0x5668e96f] },
5135 { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5136 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5137 ct: [0x4b3b9f1e,0x099c2a09,0xdc091e90,0xe4f18f0a] },
5138 { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5139 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5140 ct: [0xeb040b89,0x1d4b37f6,0x851f7ec2,0x19cd3f6d] },
5141 { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5142 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5143 ct: [0x9f0fdec0,0x8b7fd79a,0xa39535be,0xa42db92a] },
5144 { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5145 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5146 ct: [0x2e70f168,0xfc74bf91,0x1df240bc,0xd2cef236] },
5147 { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5148 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5149 ct: [0x462ccd7f,0x5fd1108d,0xbc152f3c,0xacad328b] },
5150 { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5151 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5152 ct: [0xa4af534a,0x7d0b643a,0x01868785,0xd86dfb95] },
5153 { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5154 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5155 ct: [0xab980296,0x197e1a50,0x22326c31,0xda4bf6f3] },
5156 { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5157 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5158 ct: [0xf97d57b3,0x333b6281,0xb07d486d,0xb2d4e20c] },
5159 { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5160 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5161 ct: [0xf33fa367,0x20231afe,0x4c759ade,0x6bd62eb6] },
5162 { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5163 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5164 ct: [0xfdcfac0c,0x02ca5383,0x43c68117,0xe0a15938] },
5165 { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5166 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5167 ct: [0xad4916f5,0xee5772be,0x764fc027,0xb8a6e539] },
5168 { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5169 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5170 ct: [0x2e16873e,0x1678610d,0x7e14c02d,0x002ea845] },
5171 { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5172 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5173 ct: [0x4e6e627c,0x1acc5134,0x0053a823,0x6d579576] },
5174 { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5175 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5176 ct: [0xab0c8410,0xaeeead92,0xfeec1eb4,0x30d652cb] },
5177 { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5178 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5179 ct: [0xe86f7e23,0xe835e114,0x977f60e1,0xa592202e] },
5180 { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5181 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5182 ct: [0xe68ad505,0x5a367041,0xfade09d9,0xa70a794b] },
5183 { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5184 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5185 ct: [0x0791823a,0x3c666bb6,0x162825e7,0x8606a7fe] },
5186 { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5187 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5188 ct: [0xdcca366a,0x9bf47b7b,0x868b77e2,0x5c18a364] },
5189 { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5190 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5191 ct: [0x684c9efc,0x237e4a44,0x2965f84b,0xce20247a] },
5192 { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5193 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5194 ct: [0xa858411f,0xfbe63fdb,0x9c8aa1bf,0xaed67b52] },
5195 { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5196 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5197 ct: [0x04bc3da2,0x179c3015,0x498b0e03,0x910db5b8] },
5198 { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5199 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5200 ct: [0x40071eea,0xb3f935db,0xc25d0084,0x1460260f] },
5201 { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5202 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5203 ct: [0x0ebd7c30,0xed2016e0,0x8ba806dd,0xb008bcc8] },
5204 { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5205 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5206 ct: [0x15c6becf,0x0f4cec71,0x29cbd22d,0x1a79b1b8] },
5207 { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5208 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5209 ct: [0x0aeede5b,0x91f72170,0x0e9e62ed,0xbf60b781] },
5210 { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
5211 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5212 ct: [0x266581af,0x0dcfbed1,0x585e0a24,0x2c64b8df] },
5213 { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
5214 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5215 ct: [0x6693dc91,0x1662ae47,0x3216ba22,0x189a511a] },
5216 { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
5217 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5218 ct: [0x7606fa36,0xd86473e6,0xfb3a1bb0,0xe2c0adf5] },
5219 { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
5220 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5221 ct: [0x112078e9,0xe11fbb78,0xe26ffb88,0x99e96b9a] },
5222 { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
5223 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5224 ct: [0x40b264e9,0x21e9e4a8,0x2694589e,0xf3798262] },
5225 { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
5226 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5227 ct: [0x8d4595cb,0x4fa70267,0x15f55bd6,0x8e2882f9] },
5228 { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
5229 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5230 ct: [0xb588a302,0xbdbc0919,0x7df1edae,0x68926ed9] },
5231 { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
5232 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5233 ct: [0x33f75023,0x90b8a4a2,0x21cfecd0,0x666624ba] },
5234 { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
5235 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5236 ct: [0x3d20253a,0xdbce3be2,0x373767c4,0xd822c566] },
5237 { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
5238 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5239 ct: [0xa42734a3,0x929bf84c,0xf0116c98,0x56a3c18c] },
5240 { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
5241 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5242 ct: [0xe3abc493,0x9457422b,0xb957da3c,0x56938c6d] },
5243 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
5244 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5245 ct: [0x972bdd2e,0x7c525130,0xfadc8f76,0xfc6f4b3f] },
5246 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
5247 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5248 ct: [0x84a83d7b,0x94c699cb,0xcb8a7d9b,0x61f64093] },
5249 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
5250 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5251 ct: [0xce61d635,0x14aded03,0xd43e6ebf,0xc3a9001f] },
5252 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
5253 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5254 ct: [0x6c839dd5,0x8eeae6b8,0xa36af48e,0xd63d2dc9] },
5255 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
5256 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5257 ct: [0xcd5ece55,0xb8da3bf6,0x22c4100d,0xf5de46f9] },
5258 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
5259 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5260 ct: [0x3b6f46f4,0x0e0ac5fc,0x0a9c1105,0xf800f48d] },
5261 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
5262 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5263 ct: [0xba26d47d,0xa3aeb028,0xde4fb5b3,0xa854a24b] },
5264 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
5265 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5266 ct: [0x87f53bf6,0x20d36772,0x68445212,0x904389d5] },
5267 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
5268 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5269 ct: [0x10617d28,0xb5e0f460,0x5492b182,0xa5d7f9f6] },
5270 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
5271 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5272 ct: [0x9aaec4fa,0xbbf6fae2,0xa71feff0,0x2e372b39] },
5273 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
5274 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5275 ct: [0x3a90c62d,0x88b5c428,0x09abf782,0x488ed130] },
5276 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
5277 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5278 ct: [0xf1f1c5a4,0x0899e157,0x72857ccb,0x65c7a09a] },
5279 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
5280 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5281 ct: [0x190843d2,0x9b25a389,0x7c692ce1,0xdd81ee52] },
5282 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
5283 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5284 ct: [0xa866bc65,0xb6941d86,0xe8420a7f,0xfb0964db] },
5285 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
5286 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5287 ct: [0x8193c6ff,0x85225ced,0x4255e92f,0x6e078a14] },
5288 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
5289 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5290 ct: [0x9661cb24,0x24d7d4a3,0x80d547f9,0xe7ec1cb9] },
5291 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
5292 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5293 ct: [0x86f93d9e,0xc08453a0,0x71e2e287,0x7877a9c8] },
5294 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
5295 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5296 ct: [0x27eefa80,0xce6a4a9d,0x598e3fec,0x365434d2] },
5297 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
5298 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5299 ct: [0xd6206844,0x4578e3ab,0x39ce7ec9,0x5dd045dc] },
5300 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
5301 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5302 ct: [0xb5f71d4d,0xd9a71fe5,0xd8bc8ba7,0xe6ea3048] },
5303 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
5304 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5305 ct: [0x6825a347,0xac479d4f,0x9d95c5cb,0x8d3fd7e9] },
5306 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
5307 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5308 ct: [0xe3714e94,0xa5778955,0xcc034635,0x8e94783a] },
5309 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
5310 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5311 ct: [0xd836b44b,0xb29e0c7d,0x89fa4b2d,0x4b677d2a] },
5312 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
5313 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5314 ct: [0x5d454b75,0x021d76d4,0xb84f873a,0x8f877b92] },
5315 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
5316 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5317 ct: [0xc3498f7e,0xced20953,0x14fc2811,0x5885b33f] },
5318 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
5319 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5320 ct: [0x6e668856,0x539ad8e4,0x05bd123f,0xe6c88530] },
5321 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
5322 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5323 ct: [0x8680db7f,0x3a87b860,0x5543cfdb,0xe6754076] },
5324 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
5325 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5326 ct: [0x6c5d03b1,0x3069c365,0x8b3179be,0x91b0800c] },
5327 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
5328 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5329 ct: [0xef1b384a,0xc4d93eda,0x00c92add,0x0995ea5f] },
5330 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
5331 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5332 ct: [0xbf811580,0x5471741b,0xd5ad20a0,0x3944790f] },
5333 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
5334 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5335 ct: [0xc64c24b6,0x894b038b,0x3c0d09b1,0xdf068b0b] },
5336 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
5337 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5338 ct: [0x3967a10c,0xffe27d01,0x78545fbf,0x6a40544b] },
5339 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
5340 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5341 ct: [0x7c85e9c9,0x5de1a9ec,0x5a5363a8,0xa053472d] },
5342 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
5343 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5344 ct: [0xa9eec03c,0x8abec7ba,0x68315c2c,0x8c2316e0] },
5345 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
5346 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5347 ct: [0xcac8e414,0xc2f38822,0x7ae14986,0xfc983524] },
5348 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
5349 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5350 ct: [0x5d942b7f,0x4622ce05,0x6c3ce3ce,0x5f1dd9d6] },
5351 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
5352 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5353 ct: [0xd240d648,0xce21a302,0x0282c3f1,0xb528a0b6] },
5354 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
5355 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5356 ct: [0x45d089c3,0x6d5c5a4e,0xfc689e3b,0x0de10dd5] },
5357 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
5358 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5359 ct: [0xb4da5df4,0xbecb5462,0xe03a0ed0,0x0d295629] },
5360 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
5361 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5362 ct: [0xdcf4e129,0x136c1a4b,0x7a0f3893,0x5cc34b2b] },
5363 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
5364 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5365 ct: [0xd9a4c761,0x8b0ce48a,0x3d5aee1a,0x1c0114c4] },
5366 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
5367 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5368 ct: [0xca352df0,0x25c65c7b,0x0bf306fb,0xee0f36ba] },
5369 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
5370 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5371 ct: [0x238aca23,0xfd3409f3,0x8af63378,0xed2f5473] },
5372 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
5373 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5374 ct: [0x59836a0e,0x06a79691,0xb36667d5,0x380d8188] },
5375 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
5376 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5377 ct: [0x33905080,0xf7acf1cd,0xae0a91fc,0x3e85aee4] },
5378 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
5379 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5380 ct: [0x72c9e464,0x6dbc3d63,0x20fc6689,0xd93e8833] },
5381 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
5382 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5383 ct: [0xba77413d,0xea5925b7,0xf5417ea4,0x7ff19f59] },
5384 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
5385 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5386 ct: [0x6cae8129,0xf843d86d,0xc786a0fb,0x1a184970] },
5387 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
5388 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5389 ct: [0xfcfefb53,0x4100796e,0xebbd9902,0x06754e19] },
5390 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
5391 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5392 ct: [0x8c791d5f,0xdddf470d,0xa04f3e6d,0xc4a5b5b5] },
5393 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
5394 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5395 ct: [0xc93bbdc0,0x7a4611ae,0x4bb266ea,0x5034a387] },
5396 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
5397 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5398 ct: [0xc102e38e,0x489aa747,0x62f3efc5,0xbb23205a] },
5399 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
5400 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5401 ct: [0x93201481,0x665cbafc,0x1fcc220b,0xc545fb3d] },
5402 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
5403 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5404 ct: [0x4960757e,0xc6ce68cf,0x195e454c,0xfd0f32ca] },
5405 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
5406 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5407 ct: [0xfeec7ce6,0xa6cbd07c,0x04341673,0x7f1bbb33] },
5408 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
5409 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5410 ct: [0x11c54139,0x04487a80,0x5d70a8ed,0xd9c35527] },
5411 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
5412 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5413 ct: [0x347846b2,0xb2e36f1f,0x0324c86f,0x7f1b98e2] },
5414 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
5415 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5416 ct: [0x332eee1a,0x0cbd19ca,0x2d69b426,0x894044f0] },
5417 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
5418 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5419 ct: [0x866b5b39,0x77ba6efa,0x5128efbd,0xa9ff03cd] },
5420 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
5421 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5422 ct: [0xcc1445ee,0x94c0f08c,0xdee5c344,0xecd1e233] },
5423 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
5424 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5425 ct: [0xbe288319,0x029363c2,0x622feba4,0xb05dfdfe] },
5426 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
5427 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5428 ct: [0xcfd18755,0x23f3cd21,0xc395651e,0x6ee15e56] },
5429 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
5430 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5431 ct: [0xcb5a4086,0x57837c53,0xbf16f9d8,0x465dce19] },
5432 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
5433 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5434 ct: [0xca0bf42c,0xb107f55c,0xcff2fc09,0xee08ca15] },
5435 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
5436 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5437 ct: [0xfdd9bbb4,0xa7dc2e4a,0x23536a58,0x80a2db67] },
5438 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
5439 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5440 ct: [0xede447b3,0x62c48499,0x3dec9442,0xa3b46aef] },
5441 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
5442 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5443 ct: [0x10dffb05,0x904bff7c,0x4781df78,0x0ad26837] },
5444 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
5445 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5446 ct: [0xc33bc13e,0x8de88ac2,0x5232aa74,0x96398783] },
5447 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
5448 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5449 ct: [0xca359c70,0x803a3b2a,0x3d542e87,0x81dea975] },
5450 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
5451 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5452 ct: [0xbcc65b52,0x6f88d05b,0x89ce8a52,0x021fdb06] },
5453 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
5454 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5455 ct: [0xdb91a388,0x55c8c464,0x3851fbfb,0x358b0109] },
5456 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
5457 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5458 ct: [0xca6e8893,0xa114ae8e,0x27d5ab03,0xa5499610] },
5459 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
5460 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5461 ct: [0x6629d2b8,0xdf97da72,0x8cdd8b1e,0x7f945077] },
5462 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
5463 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5464 ct: [0x4570a5a1,0x8cfc0dd5,0x82f1d88d,0x5c9a1720] },
5465 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
5466 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5467 ct: [0x72bc65aa,0x8e89562e,0x3f274d45,0xaf1cd10b] },
5468 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
5469 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5470 ct: [0x98551da1,0xa6503276,0xae1c7762,0x5f9ea615] },
5471 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
5472 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5473 ct: [0x0ddfe51c,0xed7e3f4a,0xe927daa3,0xfe452cee] },
5474 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
5475 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5476 ct: [0xdb826251,0xe4ce384b,0x80218b0e,0x1da1dd4c] },
5477 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
5478 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5479 ct: [0x2cacf728,0xb88abbad,0x7011ed0e,0x64a1680c] },
5480 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
5481 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5482 ct: [0x330d8ee7,0xc5677e09,0x9ac74c99,0x94ee4cfb] },
5483 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
5484 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5485 ct: [0xedf61ae3,0x62e882dd,0xc0167474,0xa7a77f3a] },
5486 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
5487 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5488 ct: [0x6168b00b,0xa7859e09,0x70ecfd75,0x7efecf7c] },
5489 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
5490 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5491 ct: [0xd1415447,0x866230d2,0x8bb1ea18,0xa4cdfd02] },
5492 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
5493 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5494 ct: [0x51618339,0x2f7a8763,0xafec68a0,0x60264141] },
5495 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
5496 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5497 ct: [0x77565c8d,0x73cfd413,0x0b4aa14d,0x8911710f] },
5498 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
5499 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5500 ct: [0x37232a4e,0xd21ccc27,0xc19c9610,0x078cabac] },
5501 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
5502 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5503 ct: [0x804f32ea,0x71828c7d,0x329077e7,0x12231666] },
5504 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
5505 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5506 ct: [0xd64424f2,0x3cb97215,0xe9c2c6f2,0x8d29eab7] },
5507 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
5508 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5509 ct: [0x023e82b5,0x33f68c75,0xc238cebd,0xb2ee89a2] },
5510 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
5511 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5512 ct: [0x193a3d24,0x157a51f1,0xee0893f6,0x777417e7] },
5513 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
5514 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5515 ct: [0x84ecacfc,0xd400084d,0x078612b1,0x945f2ef5] },
5516 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
5517 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5518 ct: [0x1dcd8bb1,0x73259eb3,0x3a5242b0,0xde31a455] },
5519 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
5520 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5521 ct: [0x35e9eddb,0xc375e792,0xc19992c1,0x9165012b] },
5522 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
5523 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5524 ct: [0x8a772231,0xc01dfdd7,0xc98e4cfd,0xdcc0807a] },
5525 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
5526 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5527 ct: [0x6eda7ff6,0xb8319180,0xff0d6e65,0x629d01c3] },
5528 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
5529 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5530 ct: [0xc267ef0e,0x2d01a993,0x944dd397,0x101413cb] },
5531 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
5532 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5533 ct: [0xe9f80e9d,0x845bcc0f,0x62926af7,0x2eabca39] },
5534 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
5535 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5536 ct: [0x67029907,0x27aa0878,0x637b45dc,0xd3a3b074] },
5537 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
5538 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5539 ct: [0x2e2e647d,0x5360e092,0x30a5d738,0xca33471e] },
5540 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
5541 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5542 ct: [0x1f56413c,0x7add6f43,0xd1d56e4f,0x02190330] },
5543 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
5544 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5545 ct: [0x69cd0606,0xe15af729,0xd6bca143,0x016d9842] },
5546 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
5547 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5548 ct: [0xa085d7c1,0xa500873a,0x20099c4c,0xaa3c3f5b] },
5549 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
5550 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5551 ct: [0x4fc0d230,0xf8891415,0xb87b83f9,0x5f2e09d1] },
5552 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
5553 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5554 ct: [0x4327d08c,0x523d8eba,0x697a4336,0x507d1f42] },
5555 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
5556 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5557 ct: [0x7a15aab8,0x2701efa5,0xae36ab1d,0x6b76290f] },
5558 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
5559 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5560 ct: [0x5bf00518,0x93a18bb3,0x0e139a58,0xfed0fa54] },
5561 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
5562 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5563 ct: [0x97e8adf6,0x5638fd9c,0xdf3bc22c,0x17fe4dbd] },
5564 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
5565 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5566 ct: [0x1ee6ee32,0x6583a058,0x6491c964,0x18d1a35d] },
5567 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
5568 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5569 ct: [0x26b549c2,0xec756f82,0xecc48008,0xe529956b] },
5570 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
5571 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5572 ct: [0x70377b6d,0xa669b072,0x129e057c,0xc28e9ca5] },
5573 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
5574 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5575 ct: [0x9c94b8b0,0xcb8bcc91,0x9072262b,0x3fa05ad9] },
5576 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
5577 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5578 ct: [0x2fbb83df,0xd0d7abcb,0x05cd28ca,0xd2dfb523] },
5579 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
5580 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5581 ct: [0x96877803,0xde77744b,0xb970d0a9,0x1f4debae] },
5582 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
5583 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5584 ct: [0x7379f337,0x0cf6e5ce,0x12ae5969,0xc8eea312] },
5585 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
5586 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5587 ct: [0x02dc99fa,0x3d4f98ce,0x80985e72,0x33889313] },
5588 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
5589 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5590 ct: [0x1e38e759,0x075ba5ca,0xb6457da5,0x1844295a] },
5591 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
5592 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5593 ct: [0x70bed8db,0xf615868a,0x1f9d9b05,0xd3e7a267] },
5594 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
5595 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5596 ct: [0x234b148b,0x8cb1d8c3,0x2b287e89,0x6903d150] },
5597 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
5598 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5599 ct: [0x294b033d,0xf4da853f,0x4be3e243,0xf7e513f4] },
5600 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
5601 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5602 ct: [0x3f58c950,0xf0367160,0xadec45f2,0x441e7411] },
5603 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
5604 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5605 ct: [0x37f65553,0x6a704e5a,0xce182d74,0x2a820cf4] },
5606 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
5607 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5608 ct: [0xea7bd6bb,0x63418731,0xaeac790f,0xe42d61e8] },
5609 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
5610 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5611 ct: [0xe74a4c99,0x9b4c064e,0x48bb1e41,0x3f51e5ea] },
5612 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
5613 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5614 ct: [0xba9ebefd,0xb4ccf30f,0x296cecb3,0xbc1943e8] },
5615 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
5616 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5617 ct: [0x3194367a,0x4898c502,0xc13bb747,0x8640a72d] },
5618 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
5619 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5620 ct: [0xda797713,0x263d6f33,0xa5478a65,0xef60d412] },
5621 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
5622 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5623 ct: [0xd1ac39bb,0x1ef86b9c,0x1344f214,0x679aa376] },
5624 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
5625 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5626 ct: [0x2fdea9e6,0x50532be5,0xbc0e7325,0x337fd363] },
5627 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
5628 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5629 ct: [0xd3a204db,0xd9c2af15,0x8b6ca67a,0x5156ce4a] },
5630 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
5631 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5632 ct: [0x3a0a0e75,0xa8da3673,0x5aee6684,0xd965a778] },
5633 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
5634 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5635 ct: [0x52fc3e62,0x0492ea99,0x641ea168,0xda5b6d52] },
5636 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
5637 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5638 ct: [0xd2e0c7f1,0x5b477246,0x7d2cfc87,0x3000b2ca] },
5639 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
5640 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5641 ct: [0x56353113,0x5e0c4d70,0xa38f8bdb,0x190ba04e] },
5642 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
5643 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5644 ct: [0xa8a39a0f,0x5663f4c0,0xfe5f2d3c,0xafff421a] },
5645 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
5646 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5647 ct: [0xd94b5e90,0xdb354c1e,0x42f61fab,0xe167b2c0] },
5648 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
5649 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5650 ct: [0x50e6d3c9,0xb6698a7c,0xd276f96b,0x1473f35a] },
5651 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
5652 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5653 ct: [0x9338f08e,0x0ebee969,0x05d8f2e8,0x25208f43] },
5654 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
5655 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5656 ct: [0x8b378c86,0x672aa54a,0x3a266ba1,0x9d2580ca] },
5657 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
5658 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5659 ct: [0xcca7c308,0x6f5f9511,0xb31233da,0x7cab9160] },
5660 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
5661 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5662 ct: [0x5b40ff4e,0xc9be536b,0xa23035fa,0x4f06064c] },
5663 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
5664 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5665 ct: [0x60eb5af8,0x416b2571,0x49372194,0xe8b88749] },
5666 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
5667 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5668 ct: [0x2f005a8a,0xed8a361c,0x92e440c1,0x5520cbd1] },
5669 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
5670 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5671 ct: [0x7b036276,0x11678a99,0x77175788,0x07a800e2] },
5672 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
5673 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5674 ct: [0xcf78618f,0x74f6f369,0x6e0a4779,0xb90b5a77] },
5675 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
5676 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5677 ct: [0x03720371,0xa04962ea,0xea0a852e,0x69972858] },
5678 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
5679 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5680 ct: [0x1f8a8133,0xaa8ccf70,0xe2bd3285,0x831ca6b7] },
5681 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
5682 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5683 ct: [0x27936bd2,0x7fb1468f,0xc8b48bc4,0x83321725] },
5684 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
5685 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5686 ct: [0xb07d4f3e,0x2cd2ef2e,0xb5459807,0x54dfea0f] },
5687 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
5688 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5689 ct: [0x4bf85f1b,0x5d54adbc,0x307b0a04,0x8389adcb] },
5690 { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5691 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5692 ct: [0xe35a6dcb,0x19b201a0,0x1ebcfa8a,0xa22b5759] },
5693 { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5694 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5695 ct: [0xb29169cd,0xcf2d83e8,0x38125a12,0xee6aa400] },
5696 { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5697 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5698 ct: [0xd8f3a72f,0xc3cdf74d,0xfaf6c3e6,0xb97b2fa6] },
5699 { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5700 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5701 ct: [0x1c777679,0xd50037c7,0x9491a94d,0xa76a9a35] },
5702 { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5703 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5704 ct: [0x9cf4893e,0xcafa0a02,0x47a898e0,0x40691559] },
5705 { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5706 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5707 ct: [0x8fbb4137,0x03735326,0x310a269b,0xd3aa94b2] },
5708 { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5709 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5710 ct: [0x60e32246,0xbed2b0e8,0x59e55c1c,0xc6b26502] },
5711 { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5712 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5713 ct: [0xec52a212,0xf80a09df,0x6317021b,0xc2a9819e] },
5714 { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5715 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5716 ct: [0xf23e5b60,0x0eb70dbc,0xcf6c0b1d,0x9a68182c] },
5717 { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5718 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5719 ct: [0xa3f599d6,0x3a82a968,0xc33fe265,0x90745970] },
5720 { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5721 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5722 ct: [0xd1ccb9b1,0x337002cb,0xac42c520,0xb5d67722] },
5723 { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5724 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5725 ct: [0xcc111f6c,0x37cf40a1,0x159d00fb,0x59fb0488] },
5726 { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5727 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5728 ct: [0xdc43b51a,0xb6090523,0x72989a26,0xe9cdd714] },
5729 { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5730 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5731 ct: [0x4dcede8d,0xa9e2578f,0x39703d44,0x33dc6459] },
5732 { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5733 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5734 ct: [0x1a4c1c26,0x3bbccfaf,0xc1178289,0x4685e3a8] },
5735 { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5736 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5737 ct: [0x937ad848,0x80db5061,0x3423d6d5,0x27a2823d] },
5738 { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5739 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5740 ct: [0x610b71df,0xc688e150,0xd8152c5b,0x35ebc14d] },
5741 { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5742 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5743 ct: [0x27ef2495,0xdabf3238,0x85aab39c,0x80f18d8b] },
5744 { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5745 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5746 ct: [0x633cafea,0x395bc03a,0xdae3a1e2,0x068e4b4e] },
5747 { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5748 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5749 ct: [0x6e1b482b,0x53761cf6,0x31819b74,0x9a6f3724] },
5750 { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5751 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5752 ct: [0x976e6f85,0x1ab52c77,0x1998dbb2,0xd71c75a9] },
5753 { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5754 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5755 ct: [0x85f2ba84,0xf8c307cf,0x525e124c,0x3e22e6cc] },
5756 { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5757 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5758 ct: [0x6bcca98b,0xf6a835fa,0x64955f72,0xde4115fe] },
5759 { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5760 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5761 ct: [0x2c75e2d3,0x6eebd654,0x11f14fd0,0xeb1d2a06] },
5762 { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5763 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5764 ct: [0xbd492950,0x06250ffc,0xa5100b60,0x07a0eade] },
5765 { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5766 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5767 ct: [0xa190527d,0x0ef7c70f,0x459cd394,0x0df316ec] },
5768 { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5769 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5770 ct: [0xbbd1097a,0x62433f79,0x449fa97d,0x4ee80dbf] },
5771 { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5772 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5773 ct: [0x07058e40,0x8f5b99b0,0xe0f061a1,0x761b5b3b] },
5774 { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5775 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5776 ct: [0x5fd1f13f,0xa0f31e37,0xfabde328,0xf894eac2] },
5777 { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5778 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5779 ct: [0xfc4af7c9,0x48df26e2,0xef3e01c1,0xee5b8f6f] },
5780 { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5781 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5782 ct: [0x829fd720,0x8fb92d44,0xa074a677,0xee9861ac] },
5783 { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5784 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5785 ct: [0xad9fc613,0xa703251b,0x54c64a0e,0x76431711] },
5786 { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5787 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5788 ct: [0x33ac9ecc,0xc4cc75e2,0x711618f8,0x0b1548e8] },
5789 { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5790 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5791 ct: [0x2025c74b,0x8ad8f4cd,0xa17ee204,0x9c4c902d] },
5792 { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5793 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5794 ct: [0xf85ca05f,0xe528f1ce,0x9b790166,0xe8d551e7] },
5795 { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5796 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5797 ct: [0x6f6238d8,0x966048d4,0x967154e0,0xdad5a6c9] },
5798 { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5799 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5800 ct: [0xf2b21b4e,0x7640a9b3,0x346de8b8,0x2fb41e49] },
5801 { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5802 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5803 ct: [0xf836f251,0xad1d11d4,0x9dc34462,0x8b1884e1] },
5804 { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5805 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5806 ct: [0x077e9470,0xae7abea5,0xa9769d49,0x182628c3] },
5807 { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5808 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5809 ct: [0xe0dcc2d2,0x7fc98656,0x33f85223,0xcf0d611f] },
5810 { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5811 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5812 ct: [0xbe66cfea,0x2fecd6bf,0x0ec7b435,0x2c99bcaa] },
5813 { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5814 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5815 ct: [0xdf31144f,0x87a2ef52,0x3facdcf2,0x1a427804] },
5816 { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5817 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5818 ct: [0xb5bb0f56,0x29fb6aae,0x5e1839a3,0xc3625d63] },
5819 { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5820 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5821 ct: [0x3c9db333,0x5306fe1e,0xc612bdbf,0xae6b6028] },
5822 { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5823 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5824 ct: [0x3dd5c346,0x34a79d3c,0xfcc83397,0x60e6f5f4] },
5825 { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5826 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5827 ct: [0x82bda118,0xa3ed7af3,0x14fa2ccc,0x5c07b761] },
5828 { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5829 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5830 ct: [0x2937a64f,0x7d4f46fe,0x6fea3b34,0x9ec78e38] },
5831 { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5832 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5833 ct: [0x225f068c,0x28476605,0x735ad671,0xbb8f39f3] },
5834 { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5835 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5836 ct: [0xae682c5e,0xcd71898e,0x08942ac9,0xaa89875c] },
5837 { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5838 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5839 ct: [0x5e031cb9,0xd676c302,0x2d7f2622,0x7e85c38f] },
5840 { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5841 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5842 ct: [0xa78463fb,0x064db5d5,0x2bb64bfe,0xf64f2dda] },
5843 { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5844 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5845 ct: [0x8aa9b75e,0x78459387,0x6c53a00e,0xae5af52b] },
5846 { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5847 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5848 ct: [0x3f84566d,0xf23da48a,0xf692722f,0xe980573a] },
5849 { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5850 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5851 ct: [0x31690b5e,0xd41c7eb4,0x2a1e8327,0x0a7ff0e6] },
5852 { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5853 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5854 ct: [0x77dd7702,0x646d55f0,0x8365e477,0xd3590eda] },
5855 { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5856 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5857 ct: [0x4c022ac6,0x2b3cb78d,0x739cc67b,0x3e20bb7e] },
5858 { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5859 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5860 ct: [0x092fa137,0xce18b5df,0xe7906f55,0x0bb13370] },
5861 { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5862 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5863 ct: [0x3e0cdadf,0x2e68353c,0x0027672c,0x97144dd3] },
5864 { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5865 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5866 ct: [0xd8c4b200,0xb383fc1f,0x2b2ea677,0x618a1d27] },
5867 { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5868 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5869 ct: [0x11825f99,0xb0e9bb34,0x77c1c071,0x3b015aac] },
5870 { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5871 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5872 ct: [0xf8b9fffb,0x5c187f7d,0xdc7ab10f,0x4fb77576] },
5873 { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5874 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5875 ct: [0xffb4e87a,0x32b37d6f,0x2c8328d3,0xb5377802] },
5876 { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5877 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5878 ct: [0xd276c13a,0x5d220f4d,0xa9224e74,0x896391ce] },
5879 { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5880 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5881 ct: [0x94efe7a0,0xe2e031e2,0x536da01d,0xf799c927] },
5882 { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5883 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5884 ct: [0x8f8fd822,0x680a8597,0x4e53a5a8,0xeb9d38de] },
5885 { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5886 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5887 ct: [0xe0f0a91b,0x2e45f8cc,0x37b7805a,0x3042588d] },
5888 { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5889 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5890 ct: [0x597a6252,0x255e46d6,0x364dbeed,0xa31e279c] },
5891 { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5892 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5893 ct: [0xf51a0f69,0x4442b8f0,0x5571797f,0xec7ee8bf] },
5894 { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5895 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5896 ct: [0x9ff071b1,0x65b5198a,0x93dddeeb,0xc54d09b5] },
5897 { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5898 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5899 ct: [0xc20a19fd,0x5758b0c4,0xbc1a5df8,0x9cf73877] },
5900 { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5901 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5902 ct: [0x97120166,0x307119ca,0x2280e931,0x5668e96f] },
5903 { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5904 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5905 ct: [0x4b3b9f1e,0x099c2a09,0xdc091e90,0xe4f18f0a] },
5906 { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5907 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5908 ct: [0xeb040b89,0x1d4b37f6,0x851f7ec2,0x19cd3f6d] },
5909 { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5910 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5911 ct: [0x9f0fdec0,0x8b7fd79a,0xa39535be,0xa42db92a] },
5912 { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5913 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5914 ct: [0x2e70f168,0xfc74bf91,0x1df240bc,0xd2cef236] },
5915 { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5916 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5917 ct: [0x462ccd7f,0x5fd1108d,0xbc152f3c,0xacad328b] },
5918 { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5919 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5920 ct: [0xa4af534a,0x7d0b643a,0x01868785,0xd86dfb95] },
5921 { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5922 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5923 ct: [0xab980296,0x197e1a50,0x22326c31,0xda4bf6f3] },
5924 { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5925 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5926 ct: [0xf97d57b3,0x333b6281,0xb07d486d,0xb2d4e20c] },
5927 { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5928 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5929 ct: [0xf33fa367,0x20231afe,0x4c759ade,0x6bd62eb6] },
5930 { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5931 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5932 ct: [0xfdcfac0c,0x02ca5383,0x43c68117,0xe0a15938] },
5933 { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5934 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5935 ct: [0xad4916f5,0xee5772be,0x764fc027,0xb8a6e539] },
5936 { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5937 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5938 ct: [0x2e16873e,0x1678610d,0x7e14c02d,0x002ea845] },
5939 { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5940 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5941 ct: [0x4e6e627c,0x1acc5134,0x0053a823,0x6d579576] },
5942 { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5943 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5944 ct: [0xab0c8410,0xaeeead92,0xfeec1eb4,0x30d652cb] },
5945 { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5946 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5947 ct: [0xe86f7e23,0xe835e114,0x977f60e1,0xa592202e] },
5948 { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5949 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5950 ct: [0xe68ad505,0x5a367041,0xfade09d9,0xa70a794b] },
5951 { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5952 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5953 ct: [0x0791823a,0x3c666bb6,0x162825e7,0x8606a7fe] },
5954 { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5955 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5956 ct: [0xdcca366a,0x9bf47b7b,0x868b77e2,0x5c18a364] },
5957 { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5958 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5959 ct: [0x684c9efc,0x237e4a44,0x2965f84b,0xce20247a] },
5960 { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5961 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5962 ct: [0xa858411f,0xfbe63fdb,0x9c8aa1bf,0xaed67b52] },
5963 { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5964 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5965 ct: [0x04bc3da2,0x179c3015,0x498b0e03,0x910db5b8] },
5966 { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5967 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5968 ct: [0x40071eea,0xb3f935db,0xc25d0084,0x1460260f] },
5969 { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5970 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5971 ct: [0x0ebd7c30,0xed2016e0,0x8ba806dd,0xb008bcc8] },
5972 { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5973 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5974 ct: [0x15c6becf,0x0f4cec71,0x29cbd22d,0x1a79b1b8] },
5975 { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
5976 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5977 ct: [0x0aeede5b,0x91f72170,0x0e9e62ed,0xbf60b781] },
5978 { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
5979 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5980 ct: [0x266581af,0x0dcfbed1,0x585e0a24,0x2c64b8df] },
5981 { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
5982 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5983 ct: [0x6693dc91,0x1662ae47,0x3216ba22,0x189a511a] },
5984 { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
5985 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5986 ct: [0x7606fa36,0xd86473e6,0xfb3a1bb0,0xe2c0adf5] },
5987 { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
5988 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5989 ct: [0x112078e9,0xe11fbb78,0xe26ffb88,0x99e96b9a] },
5990 { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
5991 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5992 ct: [0x40b264e9,0x21e9e4a8,0x2694589e,0xf3798262] },
5993 { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
5994 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5995 ct: [0x8d4595cb,0x4fa70267,0x15f55bd6,0x8e2882f9] },
5996 { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
5997 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
5998 ct: [0xb588a302,0xbdbc0919,0x7df1edae,0x68926ed9] },
5999 { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
6000 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6001 ct: [0x33f75023,0x90b8a4a2,0x21cfecd0,0x666624ba] },
6002 { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
6003 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6004 ct: [0x3d20253a,0xdbce3be2,0x373767c4,0xd822c566] },
6005 { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
6006 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6007 ct: [0xa42734a3,0x929bf84c,0xf0116c98,0x56a3c18c] },
6008 { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
6009 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6010 ct: [0xe3abc493,0x9457422b,0xb957da3c,0x56938c6d] },
6011 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
6012 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6013 ct: [0x972bdd2e,0x7c525130,0xfadc8f76,0xfc6f4b3f] },
6014 { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
6015 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6016 ct: [0x84a83d7b,0x94c699cb,0xcb8a7d9b,0x61f64093] },
6017 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
6018 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6019 ct: [0xce61d635,0x14aded03,0xd43e6ebf,0xc3a9001f] },
6020 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
6021 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6022 ct: [0x6c839dd5,0x8eeae6b8,0xa36af48e,0xd63d2dc9] },
6023 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
6024 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6025 ct: [0xcd5ece55,0xb8da3bf6,0x22c4100d,0xf5de46f9] },
6026 { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
6027 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6028 ct: [0x3b6f46f4,0x0e0ac5fc,0x0a9c1105,0xf800f48d] },
6029 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
6030 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6031 ct: [0xba26d47d,0xa3aeb028,0xde4fb5b3,0xa854a24b] },
6032 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
6033 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6034 ct: [0x87f53bf6,0x20d36772,0x68445212,0x904389d5] },
6035 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
6036 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6037 ct: [0x10617d28,0xb5e0f460,0x5492b182,0xa5d7f9f6] },
6038 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
6039 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6040 ct: [0x9aaec4fa,0xbbf6fae2,0xa71feff0,0x2e372b39] },
6041 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
6042 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6043 ct: [0x3a90c62d,0x88b5c428,0x09abf782,0x488ed130] },
6044 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
6045 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6046 ct: [0xf1f1c5a4,0x0899e157,0x72857ccb,0x65c7a09a] },
6047 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
6048 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6049 ct: [0x190843d2,0x9b25a389,0x7c692ce1,0xdd81ee52] },
6050 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
6051 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6052 ct: [0xa866bc65,0xb6941d86,0xe8420a7f,0xfb0964db] },
6053 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
6054 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6055 ct: [0x8193c6ff,0x85225ced,0x4255e92f,0x6e078a14] },
6056 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
6057 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6058 ct: [0x9661cb24,0x24d7d4a3,0x80d547f9,0xe7ec1cb9] },
6059 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
6060 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6061 ct: [0x86f93d9e,0xc08453a0,0x71e2e287,0x7877a9c8] },
6062 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
6063 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6064 ct: [0x27eefa80,0xce6a4a9d,0x598e3fec,0x365434d2] },
6065 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
6066 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6067 ct: [0xd6206844,0x4578e3ab,0x39ce7ec9,0x5dd045dc] },
6068 { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
6069 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6070 ct: [0xb5f71d4d,0xd9a71fe5,0xd8bc8ba7,0xe6ea3048] },
6071 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
6072 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6073 ct: [0x6825a347,0xac479d4f,0x9d95c5cb,0x8d3fd7e9] },
6074 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
6075 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6076 ct: [0xe3714e94,0xa5778955,0xcc034635,0x8e94783a] },
6077 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
6078 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6079 ct: [0xd836b44b,0xb29e0c7d,0x89fa4b2d,0x4b677d2a] },
6080 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
6081 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6082 ct: [0x5d454b75,0x021d76d4,0xb84f873a,0x8f877b92] },
6083 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
6084 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6085 ct: [0xc3498f7e,0xced20953,0x14fc2811,0x5885b33f] },
6086 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
6087 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6088 ct: [0x6e668856,0x539ad8e4,0x05bd123f,0xe6c88530] },
6089 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
6090 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6091 ct: [0x8680db7f,0x3a87b860,0x5543cfdb,0xe6754076] },
6092 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
6093 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6094 ct: [0x6c5d03b1,0x3069c365,0x8b3179be,0x91b0800c] },
6095 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
6096 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6097 ct: [0xef1b384a,0xc4d93eda,0x00c92add,0x0995ea5f] },
6098 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
6099 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6100 ct: [0xbf811580,0x5471741b,0xd5ad20a0,0x3944790f] },
6101 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
6102 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6103 ct: [0xc64c24b6,0x894b038b,0x3c0d09b1,0xdf068b0b] },
6104 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
6105 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6106 ct: [0x3967a10c,0xffe27d01,0x78545fbf,0x6a40544b] },
6107 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
6108 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6109 ct: [0x7c85e9c9,0x5de1a9ec,0x5a5363a8,0xa053472d] },
6110 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
6111 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6112 ct: [0xa9eec03c,0x8abec7ba,0x68315c2c,0x8c2316e0] },
6113 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
6114 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6115 ct: [0xcac8e414,0xc2f38822,0x7ae14986,0xfc983524] },
6116 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
6117 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6118 ct: [0x5d942b7f,0x4622ce05,0x6c3ce3ce,0x5f1dd9d6] },
6119 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
6120 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6121 ct: [0xd240d648,0xce21a302,0x0282c3f1,0xb528a0b6] },
6122 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
6123 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6124 ct: [0x45d089c3,0x6d5c5a4e,0xfc689e3b,0x0de10dd5] },
6125 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
6126 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6127 ct: [0xb4da5df4,0xbecb5462,0xe03a0ed0,0x0d295629] },
6128 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
6129 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6130 ct: [0xdcf4e129,0x136c1a4b,0x7a0f3893,0x5cc34b2b] },
6131 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
6132 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6133 ct: [0xd9a4c761,0x8b0ce48a,0x3d5aee1a,0x1c0114c4] },
6134 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
6135 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6136 ct: [0xca352df0,0x25c65c7b,0x0bf306fb,0xee0f36ba] },
6137 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
6138 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6139 ct: [0x238aca23,0xfd3409f3,0x8af63378,0xed2f5473] },
6140 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
6141 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6142 ct: [0x59836a0e,0x06a79691,0xb36667d5,0x380d8188] },
6143 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
6144 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6145 ct: [0x33905080,0xf7acf1cd,0xae0a91fc,0x3e85aee4] },
6146 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
6147 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6148 ct: [0x72c9e464,0x6dbc3d63,0x20fc6689,0xd93e8833] },
6149 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
6150 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6151 ct: [0xba77413d,0xea5925b7,0xf5417ea4,0x7ff19f59] },
6152 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
6153 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6154 ct: [0x6cae8129,0xf843d86d,0xc786a0fb,0x1a184970] },
6155 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
6156 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6157 ct: [0xfcfefb53,0x4100796e,0xebbd9902,0x06754e19] },
6158 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
6159 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6160 ct: [0x8c791d5f,0xdddf470d,0xa04f3e6d,0xc4a5b5b5] },
6161 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
6162 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6163 ct: [0xc93bbdc0,0x7a4611ae,0x4bb266ea,0x5034a387] },
6164 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
6165 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6166 ct: [0xc102e38e,0x489aa747,0x62f3efc5,0xbb23205a] },
6167 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
6168 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6169 ct: [0x93201481,0x665cbafc,0x1fcc220b,0xc545fb3d] },
6170 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
6171 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6172 ct: [0x4960757e,0xc6ce68cf,0x195e454c,0xfd0f32ca] },
6173 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
6174 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6175 ct: [0xfeec7ce6,0xa6cbd07c,0x04341673,0x7f1bbb33] },
6176 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
6177 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6178 ct: [0x11c54139,0x04487a80,0x5d70a8ed,0xd9c35527] },
6179 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
6180 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6181 ct: [0x347846b2,0xb2e36f1f,0x0324c86f,0x7f1b98e2] },
6182 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
6183 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6184 ct: [0x332eee1a,0x0cbd19ca,0x2d69b426,0x894044f0] },
6185 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
6186 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6187 ct: [0x866b5b39,0x77ba6efa,0x5128efbd,0xa9ff03cd] },
6188 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
6189 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6190 ct: [0xcc1445ee,0x94c0f08c,0xdee5c344,0xecd1e233] },
6191 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
6192 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6193 ct: [0xbe288319,0x029363c2,0x622feba4,0xb05dfdfe] },
6194 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
6195 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6196 ct: [0xcfd18755,0x23f3cd21,0xc395651e,0x6ee15e56] },
6197 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
6198 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6199 ct: [0xcb5a4086,0x57837c53,0xbf16f9d8,0x465dce19] },
6200 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
6201 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6202 ct: [0xca0bf42c,0xb107f55c,0xcff2fc09,0xee08ca15] },
6203 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
6204 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6205 ct: [0xfdd9bbb4,0xa7dc2e4a,0x23536a58,0x80a2db67] },
6206 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
6207 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6208 ct: [0xede447b3,0x62c48499,0x3dec9442,0xa3b46aef] },
6209 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
6210 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6211 ct: [0x10dffb05,0x904bff7c,0x4781df78,0x0ad26837] },
6212 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
6213 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6214 ct: [0xc33bc13e,0x8de88ac2,0x5232aa74,0x96398783] },
6215 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
6216 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6217 ct: [0xca359c70,0x803a3b2a,0x3d542e87,0x81dea975] },
6218 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
6219 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6220 ct: [0xbcc65b52,0x6f88d05b,0x89ce8a52,0x021fdb06] },
6221 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
6222 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6223 ct: [0xdb91a388,0x55c8c464,0x3851fbfb,0x358b0109] },
6224 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
6225 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6226 ct: [0xca6e8893,0xa114ae8e,0x27d5ab03,0xa5499610] },
6227 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
6228 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6229 ct: [0x6629d2b8,0xdf97da72,0x8cdd8b1e,0x7f945077] },
6230 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
6231 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6232 ct: [0x4570a5a1,0x8cfc0dd5,0x82f1d88d,0x5c9a1720] },
6233 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
6234 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6235 ct: [0x72bc65aa,0x8e89562e,0x3f274d45,0xaf1cd10b] },
6236 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
6237 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6238 ct: [0x98551da1,0xa6503276,0xae1c7762,0x5f9ea615] },
6239 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
6240 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6241 ct: [0x0ddfe51c,0xed7e3f4a,0xe927daa3,0xfe452cee] },
6242 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
6243 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6244 ct: [0xdb826251,0xe4ce384b,0x80218b0e,0x1da1dd4c] },
6245 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
6246 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6247 ct: [0x2cacf728,0xb88abbad,0x7011ed0e,0x64a1680c] },
6248 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
6249 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6250 ct: [0x330d8ee7,0xc5677e09,0x9ac74c99,0x94ee4cfb] },
6251 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
6252 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6253 ct: [0xedf61ae3,0x62e882dd,0xc0167474,0xa7a77f3a] },
6254 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
6255 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6256 ct: [0x6168b00b,0xa7859e09,0x70ecfd75,0x7efecf7c] },
6257 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
6258 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6259 ct: [0xd1415447,0x866230d2,0x8bb1ea18,0xa4cdfd02] },
6260 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
6261 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6262 ct: [0x51618339,0x2f7a8763,0xafec68a0,0x60264141] },
6263 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
6264 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6265 ct: [0x77565c8d,0x73cfd413,0x0b4aa14d,0x8911710f] },
6266 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
6267 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6268 ct: [0x37232a4e,0xd21ccc27,0xc19c9610,0x078cabac] },
6269 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
6270 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6271 ct: [0x804f32ea,0x71828c7d,0x329077e7,0x12231666] },
6272 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
6273 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6274 ct: [0xd64424f2,0x3cb97215,0xe9c2c6f2,0x8d29eab7] },
6275 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
6276 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6277 ct: [0x023e82b5,0x33f68c75,0xc238cebd,0xb2ee89a2] },
6278 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
6279 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6280 ct: [0x193a3d24,0x157a51f1,0xee0893f6,0x777417e7] },
6281 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
6282 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6283 ct: [0x84ecacfc,0xd400084d,0x078612b1,0x945f2ef5] },
6284 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
6285 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6286 ct: [0x1dcd8bb1,0x73259eb3,0x3a5242b0,0xde31a455] },
6287 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
6288 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6289 ct: [0x35e9eddb,0xc375e792,0xc19992c1,0x9165012b] },
6290 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
6291 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6292 ct: [0x8a772231,0xc01dfdd7,0xc98e4cfd,0xdcc0807a] },
6293 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
6294 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6295 ct: [0x6eda7ff6,0xb8319180,0xff0d6e65,0x629d01c3] },
6296 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
6297 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6298 ct: [0xc267ef0e,0x2d01a993,0x944dd397,0x101413cb] },
6299 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
6300 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6301 ct: [0xe9f80e9d,0x845bcc0f,0x62926af7,0x2eabca39] },
6302 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
6303 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6304 ct: [0x67029907,0x27aa0878,0x637b45dc,0xd3a3b074] },
6305 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
6306 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6307 ct: [0x2e2e647d,0x5360e092,0x30a5d738,0xca33471e] },
6308 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
6309 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6310 ct: [0x1f56413c,0x7add6f43,0xd1d56e4f,0x02190330] },
6311 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
6312 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6313 ct: [0x69cd0606,0xe15af729,0xd6bca143,0x016d9842] },
6314 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
6315 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6316 ct: [0xa085d7c1,0xa500873a,0x20099c4c,0xaa3c3f5b] },
6317 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
6318 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6319 ct: [0x4fc0d230,0xf8891415,0xb87b83f9,0x5f2e09d1] },
6320 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
6321 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6322 ct: [0x4327d08c,0x523d8eba,0x697a4336,0x507d1f42] },
6323 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
6324 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6325 ct: [0x7a15aab8,0x2701efa5,0xae36ab1d,0x6b76290f] },
6326 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
6327 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6328 ct: [0x5bf00518,0x93a18bb3,0x0e139a58,0xfed0fa54] },
6329 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
6330 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6331 ct: [0x97e8adf6,0x5638fd9c,0xdf3bc22c,0x17fe4dbd] },
6332 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
6333 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6334 ct: [0x1ee6ee32,0x6583a058,0x6491c964,0x18d1a35d] },
6335 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
6336 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6337 ct: [0x26b549c2,0xec756f82,0xecc48008,0xe529956b] },
6338 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
6339 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6340 ct: [0x70377b6d,0xa669b072,0x129e057c,0xc28e9ca5] },
6341 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
6342 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6343 ct: [0x9c94b8b0,0xcb8bcc91,0x9072262b,0x3fa05ad9] },
6344 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
6345 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6346 ct: [0x2fbb83df,0xd0d7abcb,0x05cd28ca,0xd2dfb523] },
6347 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
6348 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6349 ct: [0x96877803,0xde77744b,0xb970d0a9,0x1f4debae] },
6350 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
6351 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6352 ct: [0x7379f337,0x0cf6e5ce,0x12ae5969,0xc8eea312] },
6353 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
6354 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6355 ct: [0x02dc99fa,0x3d4f98ce,0x80985e72,0x33889313] },
6356 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
6357 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6358 ct: [0x1e38e759,0x075ba5ca,0xb6457da5,0x1844295a] },
6359 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
6360 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6361 ct: [0x70bed8db,0xf615868a,0x1f9d9b05,0xd3e7a267] },
6362 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
6363 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6364 ct: [0x234b148b,0x8cb1d8c3,0x2b287e89,0x6903d150] },
6365 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
6366 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6367 ct: [0x294b033d,0xf4da853f,0x4be3e243,0xf7e513f4] },
6368 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
6369 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6370 ct: [0x3f58c950,0xf0367160,0xadec45f2,0x441e7411] },
6371 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
6372 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6373 ct: [0x37f65553,0x6a704e5a,0xce182d74,0x2a820cf4] },
6374 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
6375 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6376 ct: [0xea7bd6bb,0x63418731,0xaeac790f,0xe42d61e8] },
6377 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
6378 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6379 ct: [0xe74a4c99,0x9b4c064e,0x48bb1e41,0x3f51e5ea] },
6380 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
6381 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6382 ct: [0xba9ebefd,0xb4ccf30f,0x296cecb3,0xbc1943e8] },
6383 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
6384 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6385 ct: [0x3194367a,0x4898c502,0xc13bb747,0x8640a72d] },
6386 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
6387 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6388 ct: [0xda797713,0x263d6f33,0xa5478a65,0xef60d412] },
6389 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
6390 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6391 ct: [0xd1ac39bb,0x1ef86b9c,0x1344f214,0x679aa376] },
6392 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
6393 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6394 ct: [0x2fdea9e6,0x50532be5,0xbc0e7325,0x337fd363] },
6395 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
6396 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6397 ct: [0xd3a204db,0xd9c2af15,0x8b6ca67a,0x5156ce4a] },
6398 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
6399 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6400 ct: [0x3a0a0e75,0xa8da3673,0x5aee6684,0xd965a778] },
6401 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
6402 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6403 ct: [0x52fc3e62,0x0492ea99,0x641ea168,0xda5b6d52] },
6404 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
6405 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6406 ct: [0xd2e0c7f1,0x5b477246,0x7d2cfc87,0x3000b2ca] },
6407 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
6408 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6409 ct: [0x56353113,0x5e0c4d70,0xa38f8bdb,0x190ba04e] },
6410 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
6411 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6412 ct: [0xa8a39a0f,0x5663f4c0,0xfe5f2d3c,0xafff421a] },
6413 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
6414 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6415 ct: [0xd94b5e90,0xdb354c1e,0x42f61fab,0xe167b2c0] },
6416 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
6417 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6418 ct: [0x50e6d3c9,0xb6698a7c,0xd276f96b,0x1473f35a] },
6419 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
6420 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6421 ct: [0x9338f08e,0x0ebee969,0x05d8f2e8,0x25208f43] },
6422 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
6423 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6424 ct: [0x8b378c86,0x672aa54a,0x3a266ba1,0x9d2580ca] },
6425 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
6426 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6427 ct: [0xcca7c308,0x6f5f9511,0xb31233da,0x7cab9160] },
6428 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
6429 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6430 ct: [0x5b40ff4e,0xc9be536b,0xa23035fa,0x4f06064c] },
6431 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
6432 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6433 ct: [0x60eb5af8,0x416b2571,0x49372194,0xe8b88749] },
6434 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
6435 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6436 ct: [0x2f005a8a,0xed8a361c,0x92e440c1,0x5520cbd1] },
6437 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
6438 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6439 ct: [0x7b036276,0x11678a99,0x77175788,0x07a800e2] },
6440 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
6441 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6442 ct: [0xcf78618f,0x74f6f369,0x6e0a4779,0xb90b5a77] },
6443 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
6444 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6445 ct: [0x03720371,0xa04962ea,0xea0a852e,0x69972858] },
6446 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
6447 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6448 ct: [0x1f8a8133,0xaa8ccf70,0xe2bd3285,0x831ca6b7] },
6449 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
6450 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6451 ct: [0x27936bd2,0x7fb1468f,0xc8b48bc4,0x83321725] },
6452 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
6453 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6454 ct: [0xb07d4f3e,0x2cd2ef2e,0xb5459807,0x54dfea0f] },
6455 { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
6456 pt: [0x00000000,0x00000000,0x00000000,0x00000000],
6457 ct: [0x4bf85f1b,0x5d54adbc,0x307b0a04,0x8389adcb] }