stanford-crypto-aes.js 419 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529
  1. /*
  2. Copyright (C) 2007 Apple Inc. All rights reserved.
  3. Redistribution and use in source and binary forms, with or without
  4. modification, are permitted provided that the following conditions
  5. are met:
  6. 1. Redistributions of source code must retain the above copyright
  7. notice, this list of conditions and the following disclaimer.
  8. 2. Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in the
  10. documentation and/or other materials provided with the distribution.
  11. THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
  12. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  13. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  14. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
  15. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  16. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  17. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  18. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  19. OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  20. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  21. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. */
  23. if(typeof(WScript) === "undefined")
  24. {
  25. var WScript = {
  26. Echo: print
  27. }
  28. }
  29. function record(time) {
  30. document.getElementById("console").innerHTML = time + "ms";
  31. if (window.parent) {
  32. parent.recordResult(time);
  33. }
  34. }
  35. "use strict";
  36. 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}}};
  37. 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]]^
  38. g[3][f[c&255]]}};
  39. 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=
  40. 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&
  41. 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}};
  42. 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/
  43. 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);
  44. 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]]}};
  45. 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}};
  46. 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)}};
  47. 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!");
  48. 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()};
  49. 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/
  50. 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^
  51. 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}};
  52. 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,
  53. 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");
  54. 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,
  55. 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)}}};
  56. 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,
  57. 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=
  58. 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]<<
  59. 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()};
  60. 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};
  61. 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]=
  62. (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,
  63. 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",
  64. 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];
  65. 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=
  66. 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||
  67. 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)}};
  68. 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>
  69. 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=
  70. 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,
  71. 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");
  72. }}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===
  73. 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={};
  74. 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)}};
  75. var browserUtil = {
  76. isRhino: true,
  77. pauseAndThen: function (cb) { cb(); },
  78. cpsIterate: function (f, start, end, pause, callback) {
  79. function go() {
  80. var called = false;
  81. if (start >= end) {
  82. callback && callback();
  83. } else {
  84. f(start, function () {
  85. if (!called) { called = true; start++; go(); }
  86. });
  87. }
  88. }
  89. go (start);
  90. },
  91. cpsMap: function (map, list, pause, callback) {
  92. browserUtil.cpsIterate(function (i, cb) { map(list[i], i, list.length, cb); },
  93. 0, list.length, pause, callback);
  94. },
  95. loadScripts: function(scriptNames, callback) {
  96. for (i=0; i<scriptNames.length; i++) {
  97. load(scriptNames[i]);
  98. callback && callback();
  99. }
  100. },
  101. write: function(type, message) {
  102. print(message);
  103. return { update: function (type2, message2) {
  104. if (type2 === 'pass') { print(" + " + message2); }
  105. else if (type2 === 'unimplemented') { print(" ? " + message2); }
  106. else { print(" - " + message2); }
  107. }};
  108. },
  109. writeNewline: function () { print(""); },
  110. status: function(message) {}
  111. };
  112. sjcl.test = { vector: {}, all: {} };
  113. /* A bit of a hack. Because sjcl.test will be reloaded several times
  114. * for different variants of sjcl, but browserUtils will not, this
  115. * variable keeps a permanent record of whether anything has failed.
  116. */
  117. if (typeof browserUtil.allPassed === 'undefined') {
  118. browserUtil.allPassed = true;
  119. }
  120. sjcl.test.TestCase = function(name, doRun) {
  121. this.doRun = doRun;
  122. this.name = name;
  123. this.passes = 0;
  124. this.failures = 0;
  125. this.isUnimplemented = false;
  126. sjcl.test.all[name] = this;
  127. };
  128. sjcl.test.TestCase.prototype = {
  129. /** Pass some subtest of this test */
  130. pass: function () { this.passes ++; },
  131. /** Fail some subtest of this test */
  132. fail: function (message) {
  133. if (message !== undefined) {
  134. this.log("fail", "*** FAIL *** " + this.name + ": " + message);
  135. } else {
  136. this.log("fail", "*** FAIL *** " + this.name);
  137. }
  138. this.failures ++;
  139. browserUtil.allPassed = false;
  140. },
  141. unimplemented: function() {
  142. this.isUnimplemented = true;
  143. },
  144. /** Log a message to the console */
  145. log: browserUtil.write,
  146. /** Require that the first argument is true; otherwise fail with the given message */
  147. require: function (bool, message) {
  148. if (bool) {
  149. this.pass();
  150. } else if (message !== undefined) {
  151. this.fail(message);
  152. } else {
  153. this.fail("requirement failed");
  154. }
  155. },
  156. /** Pause and then take the specified action. */
  157. pauseAndThen: browserUtil.pauseAndThen,
  158. /** Continuation-passing-style iteration */
  159. cpsIterate: browserUtil.cpsIterate,
  160. /** Continuation-passing-style iteration */
  161. cpsMap: browserUtil.cpsMap,
  162. /** Report the results of this test. */
  163. report: function (repo) {
  164. var t = (new Date()).valueOf() - this.startTime;
  165. if (this.failures !== 0) {
  166. repo.update("fail", "failed " + this.failures + " / " +
  167. (this.passes + this.failures) + " tests. (" + t + " ms)");
  168. } else if (this.passes === 1) {
  169. repo.update("pass", "passed. (" + t + " ms)");
  170. } else if (this.isUnimplemented) {
  171. repo.update("unimplemented", "unimplemented");
  172. } else {
  173. repo.update("pass", "passed all " + this.passes + " tests. (" + t + " ms)");
  174. }
  175. browserUtil.writeNewline();
  176. },
  177. /** Run the test. */
  178. run: function (ntests, i, cb) {
  179. var thiz = this;
  180. this.startTime = (new Date()).valueOf();
  181. this.pauseAndThen(function () {
  182. thiz.doRun(function () {
  183. cb && cb();
  184. })
  185. });
  186. }
  187. };
  188. // pass a list of tests to run, or pass nothing and it will run them all
  189. sjcl.test.run = function (tests, callback) {
  190. var t;
  191. if (tests === undefined || tests.length == 0) {
  192. tests = [];
  193. for (t in sjcl.test.all) {
  194. if (sjcl.test.all.hasOwnProperty(t)) {
  195. tests.push(t);
  196. }
  197. }
  198. }
  199. browserUtil.cpsMap(function (t, i, n, cb) {
  200. sjcl.test.all[tests[i]].run(n, i+1, cb);
  201. }, tests, true, callback);
  202. };
  203. /* Several test scripts rely on sjcl.codec.hex to parse their test
  204. * vectors, but we are not guaranteed that sjcl.codec.hex is
  205. * implemented.
  206. */
  207. sjcl.codec = sjcl.codec || {};
  208. sjcl.codec.hex = sjcl.codec.hex ||
  209. {
  210. fromBits: function (arr) {
  211. var out = "", i, x;
  212. for (i=0; i<arr.length; i++) {
  213. out += ((arr[i]|0)+0xF00000000000).toString(16).substr(4);
  214. }
  215. return out.substr(0, sjcl.bitArray.bitLength(arr)/4);//.replace(/(.{8})/g, "$1 ");
  216. },
  217. toBits: function (str) {
  218. var i, out=[], len;
  219. str = str.replace(/\s|0x/g, "");
  220. len = str.length;
  221. str = str + "00000000";
  222. for (i=0; i<str.length; i+=8) {
  223. out.push(parseInt(str.substr(i,8),16)^0);
  224. }
  225. return sjcl.bitArray.clamp(out, len*4);
  226. }
  227. };
  228. sjcl.test.vector.aes = [
  229. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  230. pt: [0xf34481ec,0x3cc627ba,0xcd5dc3fb,0x08f273e6],
  231. ct: [0x0336763e,0x966d9259,0x5a567cc9,0xce537f5e] },
  232. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  233. pt: [0x9798c464,0x0bad75c7,0xc3227db9,0x10174e72],
  234. ct: [0xa9a1631b,0xf4996954,0xebc09395,0x7b234589] },
  235. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  236. pt: [0x96ab5c2f,0xf612d9df,0xaae8c31f,0x30c42168],
  237. ct: [0xff4f8391,0xa6a40ca5,0xb25d23be,0xdd44a597] },
  238. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  239. pt: [0x6a118a87,0x4519e64e,0x9963798a,0x503f1d35],
  240. ct: [0xdc43be40,0xbe0e5371,0x2f7e2bf5,0xca707209] },
  241. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  242. pt: [0xcb9fceec,0x81286ca3,0xe989bd97,0x9b0cb284],
  243. ct: [0x92beedab,0x1895a94f,0xaa69b632,0xe5cc47ce] },
  244. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  245. pt: [0xb26aeb18,0x74e47ca8,0x358ff223,0x78f09144],
  246. ct: [0x459264f4,0x798f6a78,0xbacb89c1,0x5ed3d601] },
  247. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  248. pt: [0x58c8e00b,0x2631686d,0x54eab84b,0x91f0aca1],
  249. ct: [0x08a4e2ef,0xec8a8e33,0x12ca7460,0xb9040bbf] },
  250. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  251. pt: [0xf34481ec,0x3cc627ba,0xcd5dc3fb,0x08f273e6],
  252. ct: [0x0336763e,0x966d9259,0x5a567cc9,0xce537f5e] },
  253. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  254. pt: [0x9798c464,0x0bad75c7,0xc3227db9,0x10174e72],
  255. ct: [0xa9a1631b,0xf4996954,0xebc09395,0x7b234589] },
  256. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  257. pt: [0x96ab5c2f,0xf612d9df,0xaae8c31f,0x30c42168],
  258. ct: [0xff4f8391,0xa6a40ca5,0xb25d23be,0xdd44a597] },
  259. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  260. pt: [0x6a118a87,0x4519e64e,0x9963798a,0x503f1d35],
  261. ct: [0xdc43be40,0xbe0e5371,0x2f7e2bf5,0xca707209] },
  262. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  263. pt: [0xcb9fceec,0x81286ca3,0xe989bd97,0x9b0cb284],
  264. ct: [0x92beedab,0x1895a94f,0xaa69b632,0xe5cc47ce] },
  265. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  266. pt: [0xb26aeb18,0x74e47ca8,0x358ff223,0x78f09144],
  267. ct: [0x459264f4,0x798f6a78,0xbacb89c1,0x5ed3d601] },
  268. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  269. pt: [0x58c8e00b,0x2631686d,0x54eab84b,0x91f0aca1],
  270. ct: [0x08a4e2ef,0xec8a8e33,0x12ca7460,0xb9040bbf] },
  271. { key: [0x10a58869,0xd74be5a3,0x74cf867c,0xfb473859],
  272. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  273. ct: [0x6d251e69,0x44b051e0,0x4eaa6fb4,0xdbf78465] },
  274. { key: [0xcaea65cd,0xbb75e916,0x9ecd22eb,0xe6e54675],
  275. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  276. ct: [0x6e292011,0x90152df4,0xee058139,0xdef610bb] },
  277. { key: [0xa2e2fa9b,0xaf7d2082,0x2ca9f054,0x2f764a41],
  278. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  279. ct: [0xc3b44b95,0xd9d2f256,0x70eee9a0,0xde099fa3] },
  280. { key: [0xb6364ac4,0xe1de1e28,0x5eaf144a,0x2415f7a0],
  281. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  282. ct: [0x5d9b0557,0x8fc944b3,0xcf1ccf0e,0x746cd581] },
  283. { key: [0x64cf9c7a,0xbc50b888,0xaf65f49d,0x521944b2],
  284. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  285. ct: [0xf7efc89d,0x5dba5781,0x04016ce5,0xad659c05] },
  286. { key: [0x47d6742e,0xefcc0465,0xdc96355e,0x851b64d9],
  287. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  288. ct: [0x0306194f,0x666d1836,0x24aa230a,0x8b264ae7] },
  289. { key: [0x3eb39790,0x678c56be,0xe34bbcde,0xccf6cdb5],
  290. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  291. ct: [0x858075d5,0x36d79cce,0xe571f7d7,0x204b1f67] },
  292. { key: [0x64110a92,0x4f0743d5,0x00ccadae,0x72c13427],
  293. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  294. ct: [0x35870c6a,0x57e9e923,0x14bcb808,0x7cde72ce] },
  295. { key: [0x18d81265,0x16f8a12a,0xb1a36d9f,0x04d68e51],
  296. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  297. ct: [0x6c68e9be,0x5ec41e22,0xc825b7c7,0xaffb4363] },
  298. { key: [0xf5303579,0x68578480,0xb398a3c2,0x51cd1093],
  299. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  300. ct: [0xf5df3999,0x0fc688f1,0xb07224cc,0x03e86cea] },
  301. { key: [0xda84367f,0x325d42d6,0x01b43269,0x64802e8e],
  302. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  303. ct: [0xbba071bc,0xb470f8f6,0x586e5d3a,0xdd18bc66] },
  304. { key: [0xe37b1c6a,0xa2846f6f,0xdb413f23,0x8b089f23],
  305. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  306. ct: [0x43c9f7e6,0x2f5d288b,0xb27aa40e,0xf8fe1ea8] },
  307. { key: [0x6c002b68,0x2483e0ca,0xbcc731c2,0x53be5674],
  308. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  309. ct: [0x3580d19c,0xff44f101,0x4a7c966a,0x69059de5] },
  310. { key: [0x143ae8ed,0x6555aba9,0x6110ab58,0x893a8ae1],
  311. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  312. ct: [0x806da864,0xdd29d48d,0xeafbe764,0xf8202aef] },
  313. { key: [0xb69418a8,0x5332240d,0xc8249235,0x3956ae0c],
  314. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  315. ct: [0xa303d940,0xded8f0ba,0xff6f7541,0x4cac5243] },
  316. { key: [0x71b5c08a,0x1993e136,0x2e4d0ce9,0xb22b78d5],
  317. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  318. ct: [0xc2dabd11,0x7f8a3eca,0xbfbb11d1,0x2194d9d0] },
  319. { key: [0xe234cdca,0x2606b81f,0x29408d5f,0x6da21206],
  320. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  321. ct: [0xfff60a47,0x40086b3b,0x9c56195b,0x98d91a7b] },
  322. { key: [0x13237c49,0x074a3da0,0x78dc1d82,0x8bb78c6f],
  323. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  324. ct: [0x8146a08e,0x2357f0ca,0xa30ca8c9,0x4d1a0544] },
  325. { key: [0x3071a2a4,0x8fe6cbd0,0x4f1a1290,0x98e308f8],
  326. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  327. ct: [0x4b98e06d,0x356deb07,0xebb824e5,0x713f7be3] },
  328. { key: [0x90f42ec0,0xf68385f2,0xffc5dfc0,0x3a654dce],
  329. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  330. ct: [0x7a20a53d,0x460fc9ce,0x0423a7a0,0x764c6cf2] },
  331. { key: [0xfebd9a24,0xd8b65c1c,0x787d50a4,0xed3619a9],
  332. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  333. ct: [0xf4a70d8a,0xf877f9b0,0x2b4c40df,0x57d45b17] },
  334. { key: [0x10a58869,0xd74be5a3,0x74cf867c,0xfb473859],
  335. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  336. ct: [0x6d251e69,0x44b051e0,0x4eaa6fb4,0xdbf78465] },
  337. { key: [0xcaea65cd,0xbb75e916,0x9ecd22eb,0xe6e54675],
  338. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  339. ct: [0x6e292011,0x90152df4,0xee058139,0xdef610bb] },
  340. { key: [0xa2e2fa9b,0xaf7d2082,0x2ca9f054,0x2f764a41],
  341. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  342. ct: [0xc3b44b95,0xd9d2f256,0x70eee9a0,0xde099fa3] },
  343. { key: [0xb6364ac4,0xe1de1e28,0x5eaf144a,0x2415f7a0],
  344. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  345. ct: [0x5d9b0557,0x8fc944b3,0xcf1ccf0e,0x746cd581] },
  346. { key: [0x64cf9c7a,0xbc50b888,0xaf65f49d,0x521944b2],
  347. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  348. ct: [0xf7efc89d,0x5dba5781,0x04016ce5,0xad659c05] },
  349. { key: [0x47d6742e,0xefcc0465,0xdc96355e,0x851b64d9],
  350. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  351. ct: [0x0306194f,0x666d1836,0x24aa230a,0x8b264ae7] },
  352. { key: [0x3eb39790,0x678c56be,0xe34bbcde,0xccf6cdb5],
  353. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  354. ct: [0x858075d5,0x36d79cce,0xe571f7d7,0x204b1f67] },
  355. { key: [0x64110a92,0x4f0743d5,0x00ccadae,0x72c13427],
  356. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  357. ct: [0x35870c6a,0x57e9e923,0x14bcb808,0x7cde72ce] },
  358. { key: [0x18d81265,0x16f8a12a,0xb1a36d9f,0x04d68e51],
  359. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  360. ct: [0x6c68e9be,0x5ec41e22,0xc825b7c7,0xaffb4363] },
  361. { key: [0xf5303579,0x68578480,0xb398a3c2,0x51cd1093],
  362. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  363. ct: [0xf5df3999,0x0fc688f1,0xb07224cc,0x03e86cea] },
  364. { key: [0xda84367f,0x325d42d6,0x01b43269,0x64802e8e],
  365. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  366. ct: [0xbba071bc,0xb470f8f6,0x586e5d3a,0xdd18bc66] },
  367. { key: [0xe37b1c6a,0xa2846f6f,0xdb413f23,0x8b089f23],
  368. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  369. ct: [0x43c9f7e6,0x2f5d288b,0xb27aa40e,0xf8fe1ea8] },
  370. { key: [0x6c002b68,0x2483e0ca,0xbcc731c2,0x53be5674],
  371. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  372. ct: [0x3580d19c,0xff44f101,0x4a7c966a,0x69059de5] },
  373. { key: [0x143ae8ed,0x6555aba9,0x6110ab58,0x893a8ae1],
  374. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  375. ct: [0x806da864,0xdd29d48d,0xeafbe764,0xf8202aef] },
  376. { key: [0xb69418a8,0x5332240d,0xc8249235,0x3956ae0c],
  377. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  378. ct: [0xa303d940,0xded8f0ba,0xff6f7541,0x4cac5243] },
  379. { key: [0x71b5c08a,0x1993e136,0x2e4d0ce9,0xb22b78d5],
  380. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  381. ct: [0xc2dabd11,0x7f8a3eca,0xbfbb11d1,0x2194d9d0] },
  382. { key: [0xe234cdca,0x2606b81f,0x29408d5f,0x6da21206],
  383. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  384. ct: [0xfff60a47,0x40086b3b,0x9c56195b,0x98d91a7b] },
  385. { key: [0x13237c49,0x074a3da0,0x78dc1d82,0x8bb78c6f],
  386. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  387. ct: [0x8146a08e,0x2357f0ca,0xa30ca8c9,0x4d1a0544] },
  388. { key: [0x3071a2a4,0x8fe6cbd0,0x4f1a1290,0x98e308f8],
  389. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  390. ct: [0x4b98e06d,0x356deb07,0xebb824e5,0x713f7be3] },
  391. { key: [0x90f42ec0,0xf68385f2,0xffc5dfc0,0x3a654dce],
  392. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  393. ct: [0x7a20a53d,0x460fc9ce,0x0423a7a0,0x764c6cf2] },
  394. { key: [0xfebd9a24,0xd8b65c1c,0x787d50a4,0xed3619a9],
  395. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  396. ct: [0xf4a70d8a,0xf877f9b0,0x2b4c40df,0x57d45b17] },
  397. { key: [0x80000000,0x00000000,0x00000000,0x00000000],
  398. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  399. ct: [0x0edd33d3,0xc621e546,0x455bd8ba,0x1418bec8] },
  400. { key: [0xc0000000,0x00000000,0x00000000,0x00000000],
  401. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  402. ct: [0x4bc3f883,0x450c113c,0x64ca42e1,0x112a9e87] },
  403. { key: [0xe0000000,0x00000000,0x00000000,0x00000000],
  404. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  405. ct: [0x72a1da77,0x0f5d7ac4,0xc9ef94d8,0x22affd97] },
  406. { key: [0xf0000000,0x00000000,0x00000000,0x00000000],
  407. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  408. ct: [0x970014d6,0x34e2b765,0x0777e8e8,0x4d03ccd8] },
  409. { key: [0xf8000000,0x00000000,0x00000000,0x00000000],
  410. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  411. ct: [0xf17e79ae,0xd0db7e27,0x9e955b5f,0x493875a7] },
  412. { key: [0xfc000000,0x00000000,0x00000000,0x00000000],
  413. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  414. ct: [0x9ed5a751,0x36a940d0,0x963da379,0xdb4af26a] },
  415. { key: [0xfe000000,0x00000000,0x00000000,0x00000000],
  416. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  417. ct: [0xc4295f83,0x465c7755,0xe8fa364b,0xac6a7ea5] },
  418. { key: [0xff000000,0x00000000,0x00000000,0x00000000],
  419. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  420. ct: [0xb1d75825,0x6b28fd85,0x0ad49442,0x08cf1155] },
  421. { key: [0xff800000,0x00000000,0x00000000,0x00000000],
  422. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  423. ct: [0x42ffb34c,0x743de4d8,0x8ca38011,0xc990890b] },
  424. { key: [0xffc00000,0x00000000,0x00000000,0x00000000],
  425. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  426. ct: [0x9958f0ec,0xea8b2172,0xc0c1995f,0x9182c0f3] },
  427. { key: [0xffe00000,0x00000000,0x00000000,0x00000000],
  428. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  429. ct: [0x956d7798,0xfac20f82,0xa8823f98,0x4d06f7f5] },
  430. { key: [0xfff00000,0x00000000,0x00000000,0x00000000],
  431. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  432. ct: [0xa01bf44f,0x2d16be92,0x8ca44aaf,0x7b9b106b] },
  433. { key: [0xfff80000,0x00000000,0x00000000,0x00000000],
  434. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  435. ct: [0xb5f1a33e,0x50d40d10,0x3764c76b,0xd4c6b6f8] },
  436. { key: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  437. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  438. ct: [0x2637050c,0x9fc0d481,0x7e2d69de,0x878aee8d] },
  439. { key: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  440. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  441. ct: [0x113ecbe4,0xa453269a,0x0dd26069,0x467fb5b5] },
  442. { key: [0xffff0000,0x00000000,0x00000000,0x00000000],
  443. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  444. ct: [0x97d0754f,0xe68f11b9,0xe375d070,0xa608c884] },
  445. { key: [0xffff8000,0x00000000,0x00000000,0x00000000],
  446. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  447. ct: [0xc6a0b3e9,0x98d05068,0xa5399778,0x405200b4] },
  448. { key: [0xffffc000,0x00000000,0x00000000,0x00000000],
  449. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  450. ct: [0xdf556a33,0x438db87b,0xc41b1752,0xc55e5e49] },
  451. { key: [0xffffe000,0x00000000,0x00000000,0x00000000],
  452. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  453. ct: [0x90fb128d,0x3a1af6e5,0x48521bb9,0x62bf1f05] },
  454. { key: [0xfffff000,0x00000000,0x00000000,0x00000000],
  455. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  456. ct: [0x26298e9c,0x1db517c2,0x15fadfb7,0xd2a8d691] },
  457. { key: [0xfffff800,0x00000000,0x00000000,0x00000000],
  458. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  459. ct: [0xa6cb761d,0x61f8292d,0x0df393a2,0x79ad0380] },
  460. { key: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  461. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  462. ct: [0x12acd89b,0x13cd5f87,0x26e34d44,0xfd486108] },
  463. { key: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  464. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  465. ct: [0x95b1703f,0xc57ba09f,0xe0c3580f,0xebdd7ed4] },
  466. { key: [0xffffff00,0x00000000,0x00000000,0x00000000],
  467. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  468. ct: [0xde11722d,0x893e9f91,0x21c381be,0xcc1da59a] },
  469. { key: [0xffffff80,0x00000000,0x00000000,0x00000000],
  470. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  471. ct: [0x6d114ccb,0x27bf3910,0x12e8974c,0x546d9bf2] },
  472. { key: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  473. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  474. ct: [0x5ce37e17,0xeb4646ec,0xfac29b9c,0xc38d9340] },
  475. { key: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  476. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  477. ct: [0x18c1b6e2,0x15712205,0x6d0243d8,0xa165cddb] },
  478. { key: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  479. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  480. ct: [0x99693e6a,0x59d1366c,0x74d82356,0x2d7e1431] },
  481. { key: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  482. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  483. ct: [0x6c7c64dc,0x84a8bba7,0x58ed17eb,0x025a57e3] },
  484. { key: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  485. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  486. ct: [0xe17bc79f,0x30eaab2f,0xac2cbbe3,0x458d687a] },
  487. { key: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  488. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  489. ct: [0x1114bc20,0x28009b92,0x3f0b0191,0x5ce5e7c4] },
  490. { key: [0xffffffff,0x00000000,0x00000000,0x00000000],
  491. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  492. ct: [0x9c28524a,0x16a1e1c1,0x452971ca,0xa8d13476] },
  493. { key: [0xffffffff,0x80000000,0x00000000,0x00000000],
  494. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  495. ct: [0xed62e163,0x63638360,0xfdd6ad62,0x112794f0] },
  496. { key: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  497. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  498. ct: [0x5a8688f0,0xb2a2c162,0x24c16165,0x8ffd4044] },
  499. { key: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  500. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  501. ct: [0x23f71084,0x2b9bb9c3,0x2f26648c,0x786807ca] },
  502. { key: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  503. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  504. ct: [0x44a98bf1,0x1e163f63,0x2c47ec6a,0x49683a89] },
  505. { key: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  506. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  507. ct: [0x0f18aff9,0x4274696d,0x9b61848b,0xd50ac5e5] },
  508. { key: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  509. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  510. ct: [0x82408571,0xc3e24245,0x40207f83,0x3b6dda69] },
  511. { key: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  512. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  513. ct: [0x303ff996,0x947f0c7d,0x1f43c8f3,0x027b9b75] },
  514. { key: [0xffffffff,0xff000000,0x00000000,0x00000000],
  515. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  516. ct: [0x7df4daf4,0xad29a361,0x5a9b6ece,0x5c99518a] },
  517. { key: [0xffffffff,0xff800000,0x00000000,0x00000000],
  518. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  519. ct: [0xc72954a4,0x8d0774db,0x0b4971c5,0x26260415] },
  520. { key: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  521. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  522. ct: [0x1df9b761,0x12dc6531,0xe07d2cfd,0xa04411f0] },
  523. { key: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  524. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  525. ct: [0x8e4d8e69,0x9119e1fc,0x87545a64,0x7fb1d34f] },
  526. { key: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  527. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  528. ct: [0xe6c4807a,0xe11f36f0,0x91c57d9f,0xb68548d1] },
  529. { key: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  530. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  531. ct: [0x8ebf73aa,0xd49c8200,0x7f77a5c1,0xccec6ab4] },
  532. { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  533. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  534. ct: [0x4fb288cc,0x20400490,0x01d2c758,0x5ad123fc] },
  535. { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  536. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  537. ct: [0x04497110,0xefb9dceb,0x13e2b13f,0xb4465564] },
  538. { key: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  539. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  540. ct: [0x75550e6c,0xb5a88e49,0x634c9ab6,0x9eda0430] },
  541. { key: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  542. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  543. ct: [0xb6768473,0xce9843ea,0x66a81405,0xdd50b345] },
  544. { key: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  545. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  546. ct: [0xcb2f4303,0x83f9084e,0x03a65357,0x1e065de6] },
  547. { key: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  548. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  549. ct: [0xff4e66c0,0x7bae3e79,0xfb7d2108,0x47a3b0ba] },
  550. { key: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  551. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  552. ct: [0x7b907851,0x25505fad,0x59b13c18,0x6dd66ce3] },
  553. { key: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  554. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  555. ct: [0x8b527a6a,0xebdaec9e,0xaef8eda2,0xcb7783e5] },
  556. { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  557. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  558. ct: [0x43fdaf53,0xebbc9880,0xc228617d,0x6a9b548b] },
  559. { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  560. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  561. ct: [0x53786104,0xb9744b98,0xf052c46f,0x1c850d0b] },
  562. { key: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  563. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  564. ct: [0xb5ab3013,0xdd1e61df,0x06cbaf34,0xca2aee78] },
  565. { key: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  566. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  567. ct: [0x7470469b,0xe9723030,0xfdcc73a8,0xcd4fbb10] },
  568. { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  569. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  570. ct: [0xa35a63f5,0x343ebe9e,0xf8167bcb,0x48ad122e] },
  571. { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  572. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  573. ct: [0xfd8687f0,0x757a210e,0x9fdf1812,0x04c30863] },
  574. { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  575. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  576. ct: [0x7a181e84,0xbd5457d2,0x6a88fbae,0x96018fb0] },
  577. { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  578. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  579. ct: [0x653317b9,0x362b6f9b,0x9e1a580e,0x68d494b5] },
  580. { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  581. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  582. ct: [0x995c9dc0,0xb689f03c,0x45867b5f,0xaa5c18d1] },
  583. { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  584. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  585. ct: [0x77a4d96d,0x56dda398,0xb9aabecf,0xc75729fd] },
  586. { key: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  587. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  588. ct: [0x84be19e0,0x53635f09,0xf2665e7b,0xae85b42d] },
  589. { key: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  590. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  591. ct: [0x32cd6528,0x42926aea,0x4aa6137b,0xb2be2b5e] },
  592. { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  593. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  594. ct: [0x493d4a4f,0x38ebb337,0xd10aa84e,0x9171a554] },
  595. { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  596. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  597. ct: [0xd9bff7ff,0x454b0ec5,0xa4a2a695,0x66e2cb84] },
  598. { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  599. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  600. ct: [0x3535d565,0xace3f31e,0xb249ba2c,0xc6765d7a] },
  601. { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  602. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  603. ct: [0xf60e91fc,0x3269eecf,0x3231c6e9,0x945697c6] },
  604. { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  605. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  606. ct: [0xab69cfad,0xf51f8e60,0x4d9cc371,0x82f6635a] },
  607. { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  608. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  609. ct: [0x7866373f,0x24a0b6ed,0x56e0d96f,0xcdafb877] },
  610. { key: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  611. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  612. ct: [0x1ea448c2,0xaac954f5,0xd812e9d7,0x8494446a] },
  613. { key: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  614. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  615. ct: [0xacc5599d,0xd8ac0223,0x9a0fef4a,0x36dd1668] },
  616. { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  617. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  618. ct: [0xd8764468,0xbb103828,0xcf7e1473,0xce895073] },
  619. { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  620. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  621. ct: [0x1b0d0289,0x3683b9f1,0x80458e4a,0xa6b73982] },
  622. { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  623. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  624. ct: [0x96d9b017,0xd302df41,0x0a937dcd,0xb8bb6e43] },
  625. { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  626. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  627. ct: [0xef1623cc,0x44313cff,0x440b1594,0xa7e21cc6] },
  628. { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  629. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  630. ct: [0x284ca2fa,0x35807b8b,0x0ae4d19e,0x11d7dbd7] },
  631. { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  632. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  633. ct: [0xf2e97687,0x5755f940,0x1d54f36e,0x2a23a594] },
  634. { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  635. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  636. ct: [0xec198a18,0xe10e5324,0x03b7e208,0x87c8dd80] },
  637. { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  638. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  639. ct: [0x545d50eb,0xd919e4a6,0x949d96ad,0x47e46a80] },
  640. { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  641. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  642. ct: [0xdbdfb527,0x060e0a71,0x009c7bb0,0xc68f1d44] },
  643. { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  644. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  645. ct: [0x9cfa1322,0xea33da21,0x73a024f2,0xff0d896d] },
  646. { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  647. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  648. ct: [0x8785b1a7,0x5b0f3bd9,0x58dcd0e2,0x9318c521] },
  649. { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  650. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  651. ct: [0x38f67b9e,0x98e4a97b,0x6df030a9,0xfcdd0104] },
  652. { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  653. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  654. ct: [0x192afffb,0x2c880e82,0xb05926d0,0xfc6c448b] },
  655. { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  656. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  657. ct: [0x6a7980ce,0x7b105cf5,0x30952d74,0xdaaf798c] },
  658. { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  659. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  660. ct: [0xea3695e1,0x351b9d68,0x58bd958c,0xf513ef6c] },
  661. { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  662. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  663. ct: [0x6da0490b,0xa0ba0343,0xb935681d,0x2cce5ba1] },
  664. { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  665. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  666. ct: [0xf0ea23af,0x08534011,0xc60009ab,0x29ada2f1] },
  667. { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  668. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  669. ct: [0xff13806c,0xf19cc387,0x21554d7c,0x0fcdcd4b] },
  670. { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  671. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  672. ct: [0x6838af1f,0x4f69bae9,0xd85dd188,0xdcdf0688] },
  673. { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  674. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  675. ct: [0x36cf44c9,0x2d550bfb,0x1ed28ef5,0x83ddf5d7] },
  676. { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  677. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  678. ct: [0xd06e3195,0xb5376f10,0x9d5c4ec6,0xc5d62ced] },
  679. { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  680. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  681. ct: [0xc440de01,0x4d3d6107,0x07279b13,0x242a5c36] },
  682. { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  683. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  684. ct: [0xf0c5c6ff,0xa5e0bd3a,0x94c88f6b,0x6f7c16b9] },
  685. { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  686. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  687. ct: [0x3e40c390,0x1cd7effc,0x22bffc35,0xdee0b4d9] },
  688. { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  689. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  690. ct: [0xb63305c7,0x2bedfab9,0x7382c406,0xd0c49bc6] },
  691. { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  692. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  693. ct: [0x36bbaab2,0x2a6bd492,0x5a99a2b4,0x08d2dbae] },
  694. { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  695. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  696. ct: [0x307c5b8f,0xcd0533ab,0x98bc51e2,0x7a6ce461] },
  697. { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  698. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  699. ct: [0x829c04ff,0x4c07513c,0x0b3ef05c,0x03e337b5] },
  700. { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  701. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  702. ct: [0xf17af0e8,0x95dda5eb,0x98efc680,0x66e84c54] },
  703. { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  704. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  705. ct: [0x277167f3,0x812afff1,0xffacb4a9,0x34379fc3] },
  706. { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  707. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  708. ct: [0x2cb1dc3a,0x9c72972e,0x425ae2ef,0x3eb597cd] },
  709. { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  710. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  711. ct: [0x36aeaa3a,0x213e968d,0x4b5b679d,0x3a2c97fe] },
  712. { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  713. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  714. ct: [0x9241daca,0x4fdd034a,0x82372db5,0x0e1a0f3f] },
  715. { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  716. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  717. ct: [0xc14574d9,0xcd00cf2b,0x5a7f77e5,0x3cd57885] },
  718. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  719. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  720. ct: [0x793de392,0x36570aba,0x83ab9b73,0x7cb521c9] },
  721. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  722. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  723. ct: [0x16591c0f,0x27d60e29,0xb85a96c3,0x3861a7ef] },
  724. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  725. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  726. ct: [0x44fb5c4d,0x4f5cb79b,0xe5c174a3,0xb1c97348] },
  727. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  728. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  729. ct: [0x674d2b61,0x633d162b,0xe59dde04,0x222f4740] },
  730. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  731. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  732. ct: [0xb4750ff2,0x63a65e1f,0x9e924ccf,0xd98f3e37] },
  733. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  734. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  735. ct: [0x62d0662d,0x6eaedded,0xebae7f7e,0xa3a4f6b6] },
  736. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  737. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  738. ct: [0x70c46bb3,0x0692be65,0x7f7eaa93,0xebad9897] },
  739. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  740. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  741. ct: [0x323994cf,0xb9da285a,0x5d9642e1,0x759b224a] },
  742. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  743. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  744. ct: [0x1dbf5787,0x7b7b1738,0x5c85d0b5,0x4851e371] },
  745. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  746. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  747. ct: [0xdfa5c097,0xcdc1532a,0xc071d57b,0x1d28d1bd] },
  748. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  749. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  750. ct: [0x3a0c53fa,0x37311fc1,0x0bd2a998,0x1f513174] },
  751. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  752. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  753. ct: [0xba4f970c,0x0a25c418,0x14bdae2e,0x506be3b4] },
  754. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  755. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  756. ct: [0x2dce3acb,0x727cd13c,0xcd76d425,0xea56e4f6] },
  757. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  758. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  759. ct: [0x5160474d,0x504b9b3e,0xefb68d35,0xf245f4b3] },
  760. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  761. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  762. ct: [0x41a8a947,0x766635de,0xc37553d9,0xa6c0cbb7] },
  763. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  764. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  765. ct: [0x25d6cfe6,0x881f2bf4,0x97dd14cd,0x4ddf445b] },
  766. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  767. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  768. ct: [0x41c78c13,0x5ed9e98c,0x09664064,0x7265da1e] },
  769. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  770. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  771. ct: [0x5a4d404d,0x8917e353,0xe92a2107,0x2c3b2305] },
  772. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  773. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  774. ct: [0x02bc9684,0x6b3fdc71,0x643f384c,0xd3cc3eaf] },
  775. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  776. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  777. ct: [0x9ba4a914,0x3f4e5d40,0x48521c4f,0x8877d88e] },
  778. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  779. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  780. ct: [0xa1f6258c,0x877d5fcd,0x89644845,0x38bfc92c] },
  781. { key: [0x80000000,0x00000000,0x00000000,0x00000000],
  782. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  783. ct: [0x0edd33d3,0xc621e546,0x455bd8ba,0x1418bec8] },
  784. { key: [0xc0000000,0x00000000,0x00000000,0x00000000],
  785. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  786. ct: [0x4bc3f883,0x450c113c,0x64ca42e1,0x112a9e87] },
  787. { key: [0xe0000000,0x00000000,0x00000000,0x00000000],
  788. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  789. ct: [0x72a1da77,0x0f5d7ac4,0xc9ef94d8,0x22affd97] },
  790. { key: [0xf0000000,0x00000000,0x00000000,0x00000000],
  791. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  792. ct: [0x970014d6,0x34e2b765,0x0777e8e8,0x4d03ccd8] },
  793. { key: [0xf8000000,0x00000000,0x00000000,0x00000000],
  794. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  795. ct: [0xf17e79ae,0xd0db7e27,0x9e955b5f,0x493875a7] },
  796. { key: [0xfc000000,0x00000000,0x00000000,0x00000000],
  797. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  798. ct: [0x9ed5a751,0x36a940d0,0x963da379,0xdb4af26a] },
  799. { key: [0xfe000000,0x00000000,0x00000000,0x00000000],
  800. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  801. ct: [0xc4295f83,0x465c7755,0xe8fa364b,0xac6a7ea5] },
  802. { key: [0xff000000,0x00000000,0x00000000,0x00000000],
  803. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  804. ct: [0xb1d75825,0x6b28fd85,0x0ad49442,0x08cf1155] },
  805. { key: [0xff800000,0x00000000,0x00000000,0x00000000],
  806. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  807. ct: [0x42ffb34c,0x743de4d8,0x8ca38011,0xc990890b] },
  808. { key: [0xffc00000,0x00000000,0x00000000,0x00000000],
  809. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  810. ct: [0x9958f0ec,0xea8b2172,0xc0c1995f,0x9182c0f3] },
  811. { key: [0xffe00000,0x00000000,0x00000000,0x00000000],
  812. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  813. ct: [0x956d7798,0xfac20f82,0xa8823f98,0x4d06f7f5] },
  814. { key: [0xfff00000,0x00000000,0x00000000,0x00000000],
  815. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  816. ct: [0xa01bf44f,0x2d16be92,0x8ca44aaf,0x7b9b106b] },
  817. { key: [0xfff80000,0x00000000,0x00000000,0x00000000],
  818. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  819. ct: [0xb5f1a33e,0x50d40d10,0x3764c76b,0xd4c6b6f8] },
  820. { key: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  821. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  822. ct: [0x2637050c,0x9fc0d481,0x7e2d69de,0x878aee8d] },
  823. { key: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  824. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  825. ct: [0x113ecbe4,0xa453269a,0x0dd26069,0x467fb5b5] },
  826. { key: [0xffff0000,0x00000000,0x00000000,0x00000000],
  827. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  828. ct: [0x97d0754f,0xe68f11b9,0xe375d070,0xa608c884] },
  829. { key: [0xffff8000,0x00000000,0x00000000,0x00000000],
  830. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  831. ct: [0xc6a0b3e9,0x98d05068,0xa5399778,0x405200b4] },
  832. { key: [0xffffc000,0x00000000,0x00000000,0x00000000],
  833. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  834. ct: [0xdf556a33,0x438db87b,0xc41b1752,0xc55e5e49] },
  835. { key: [0xffffe000,0x00000000,0x00000000,0x00000000],
  836. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  837. ct: [0x90fb128d,0x3a1af6e5,0x48521bb9,0x62bf1f05] },
  838. { key: [0xfffff000,0x00000000,0x00000000,0x00000000],
  839. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  840. ct: [0x26298e9c,0x1db517c2,0x15fadfb7,0xd2a8d691] },
  841. { key: [0xfffff800,0x00000000,0x00000000,0x00000000],
  842. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  843. ct: [0xa6cb761d,0x61f8292d,0x0df393a2,0x79ad0380] },
  844. { key: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  845. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  846. ct: [0x12acd89b,0x13cd5f87,0x26e34d44,0xfd486108] },
  847. { key: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  848. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  849. ct: [0x95b1703f,0xc57ba09f,0xe0c3580f,0xebdd7ed4] },
  850. { key: [0xffffff00,0x00000000,0x00000000,0x00000000],
  851. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  852. ct: [0xde11722d,0x893e9f91,0x21c381be,0xcc1da59a] },
  853. { key: [0xffffff80,0x00000000,0x00000000,0x00000000],
  854. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  855. ct: [0x6d114ccb,0x27bf3910,0x12e8974c,0x546d9bf2] },
  856. { key: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  857. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  858. ct: [0x5ce37e17,0xeb4646ec,0xfac29b9c,0xc38d9340] },
  859. { key: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  860. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  861. ct: [0x18c1b6e2,0x15712205,0x6d0243d8,0xa165cddb] },
  862. { key: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  863. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  864. ct: [0x99693e6a,0x59d1366c,0x74d82356,0x2d7e1431] },
  865. { key: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  866. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  867. ct: [0x6c7c64dc,0x84a8bba7,0x58ed17eb,0x025a57e3] },
  868. { key: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  869. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  870. ct: [0xe17bc79f,0x30eaab2f,0xac2cbbe3,0x458d687a] },
  871. { key: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  872. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  873. ct: [0x1114bc20,0x28009b92,0x3f0b0191,0x5ce5e7c4] },
  874. { key: [0xffffffff,0x00000000,0x00000000,0x00000000],
  875. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  876. ct: [0x9c28524a,0x16a1e1c1,0x452971ca,0xa8d13476] },
  877. { key: [0xffffffff,0x80000000,0x00000000,0x00000000],
  878. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  879. ct: [0xed62e163,0x63638360,0xfdd6ad62,0x112794f0] },
  880. { key: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  881. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  882. ct: [0x5a8688f0,0xb2a2c162,0x24c16165,0x8ffd4044] },
  883. { key: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  884. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  885. ct: [0x23f71084,0x2b9bb9c3,0x2f26648c,0x786807ca] },
  886. { key: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  887. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  888. ct: [0x44a98bf1,0x1e163f63,0x2c47ec6a,0x49683a89] },
  889. { key: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  890. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  891. ct: [0x0f18aff9,0x4274696d,0x9b61848b,0xd50ac5e5] },
  892. { key: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  893. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  894. ct: [0x82408571,0xc3e24245,0x40207f83,0x3b6dda69] },
  895. { key: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  896. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  897. ct: [0x303ff996,0x947f0c7d,0x1f43c8f3,0x027b9b75] },
  898. { key: [0xffffffff,0xff000000,0x00000000,0x00000000],
  899. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  900. ct: [0x7df4daf4,0xad29a361,0x5a9b6ece,0x5c99518a] },
  901. { key: [0xffffffff,0xff800000,0x00000000,0x00000000],
  902. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  903. ct: [0xc72954a4,0x8d0774db,0x0b4971c5,0x26260415] },
  904. { key: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  905. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  906. ct: [0x1df9b761,0x12dc6531,0xe07d2cfd,0xa04411f0] },
  907. { key: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  908. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  909. ct: [0x8e4d8e69,0x9119e1fc,0x87545a64,0x7fb1d34f] },
  910. { key: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  911. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  912. ct: [0xe6c4807a,0xe11f36f0,0x91c57d9f,0xb68548d1] },
  913. { key: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  914. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  915. ct: [0x8ebf73aa,0xd49c8200,0x7f77a5c1,0xccec6ab4] },
  916. { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  917. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  918. ct: [0x4fb288cc,0x20400490,0x01d2c758,0x5ad123fc] },
  919. { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  920. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  921. ct: [0x04497110,0xefb9dceb,0x13e2b13f,0xb4465564] },
  922. { key: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  923. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  924. ct: [0x75550e6c,0xb5a88e49,0x634c9ab6,0x9eda0430] },
  925. { key: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  926. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  927. ct: [0xb6768473,0xce9843ea,0x66a81405,0xdd50b345] },
  928. { key: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  929. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  930. ct: [0xcb2f4303,0x83f9084e,0x03a65357,0x1e065de6] },
  931. { key: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  932. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  933. ct: [0xff4e66c0,0x7bae3e79,0xfb7d2108,0x47a3b0ba] },
  934. { key: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  935. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  936. ct: [0x7b907851,0x25505fad,0x59b13c18,0x6dd66ce3] },
  937. { key: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  938. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  939. ct: [0x8b527a6a,0xebdaec9e,0xaef8eda2,0xcb7783e5] },
  940. { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  941. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  942. ct: [0x43fdaf53,0xebbc9880,0xc228617d,0x6a9b548b] },
  943. { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  944. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  945. ct: [0x53786104,0xb9744b98,0xf052c46f,0x1c850d0b] },
  946. { key: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  947. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  948. ct: [0xb5ab3013,0xdd1e61df,0x06cbaf34,0xca2aee78] },
  949. { key: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  950. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  951. ct: [0x7470469b,0xe9723030,0xfdcc73a8,0xcd4fbb10] },
  952. { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  953. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  954. ct: [0xa35a63f5,0x343ebe9e,0xf8167bcb,0x48ad122e] },
  955. { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  956. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  957. ct: [0xfd8687f0,0x757a210e,0x9fdf1812,0x04c30863] },
  958. { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  959. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  960. ct: [0x7a181e84,0xbd5457d2,0x6a88fbae,0x96018fb0] },
  961. { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  962. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  963. ct: [0x653317b9,0x362b6f9b,0x9e1a580e,0x68d494b5] },
  964. { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  965. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  966. ct: [0x995c9dc0,0xb689f03c,0x45867b5f,0xaa5c18d1] },
  967. { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  968. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  969. ct: [0x77a4d96d,0x56dda398,0xb9aabecf,0xc75729fd] },
  970. { key: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  971. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  972. ct: [0x84be19e0,0x53635f09,0xf2665e7b,0xae85b42d] },
  973. { key: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  974. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  975. ct: [0x32cd6528,0x42926aea,0x4aa6137b,0xb2be2b5e] },
  976. { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  977. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  978. ct: [0x493d4a4f,0x38ebb337,0xd10aa84e,0x9171a554] },
  979. { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  980. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  981. ct: [0xd9bff7ff,0x454b0ec5,0xa4a2a695,0x66e2cb84] },
  982. { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  983. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  984. ct: [0x3535d565,0xace3f31e,0xb249ba2c,0xc6765d7a] },
  985. { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  986. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  987. ct: [0xf60e91fc,0x3269eecf,0x3231c6e9,0x945697c6] },
  988. { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  989. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  990. ct: [0xab69cfad,0xf51f8e60,0x4d9cc371,0x82f6635a] },
  991. { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  992. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  993. ct: [0x7866373f,0x24a0b6ed,0x56e0d96f,0xcdafb877] },
  994. { key: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  995. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  996. ct: [0x1ea448c2,0xaac954f5,0xd812e9d7,0x8494446a] },
  997. { key: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  998. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  999. ct: [0xacc5599d,0xd8ac0223,0x9a0fef4a,0x36dd1668] },
  1000. { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  1001. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1002. ct: [0xd8764468,0xbb103828,0xcf7e1473,0xce895073] },
  1003. { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  1004. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1005. ct: [0x1b0d0289,0x3683b9f1,0x80458e4a,0xa6b73982] },
  1006. { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  1007. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1008. ct: [0x96d9b017,0xd302df41,0x0a937dcd,0xb8bb6e43] },
  1009. { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  1010. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1011. ct: [0xef1623cc,0x44313cff,0x440b1594,0xa7e21cc6] },
  1012. { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  1013. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1014. ct: [0x284ca2fa,0x35807b8b,0x0ae4d19e,0x11d7dbd7] },
  1015. { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  1016. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1017. ct: [0xf2e97687,0x5755f940,0x1d54f36e,0x2a23a594] },
  1018. { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  1019. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1020. ct: [0xec198a18,0xe10e5324,0x03b7e208,0x87c8dd80] },
  1021. { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  1022. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1023. ct: [0x545d50eb,0xd919e4a6,0x949d96ad,0x47e46a80] },
  1024. { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  1025. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1026. ct: [0xdbdfb527,0x060e0a71,0x009c7bb0,0xc68f1d44] },
  1027. { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  1028. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1029. ct: [0x9cfa1322,0xea33da21,0x73a024f2,0xff0d896d] },
  1030. { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  1031. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1032. ct: [0x8785b1a7,0x5b0f3bd9,0x58dcd0e2,0x9318c521] },
  1033. { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  1034. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1035. ct: [0x38f67b9e,0x98e4a97b,0x6df030a9,0xfcdd0104] },
  1036. { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  1037. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1038. ct: [0x192afffb,0x2c880e82,0xb05926d0,0xfc6c448b] },
  1039. { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  1040. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1041. ct: [0x6a7980ce,0x7b105cf5,0x30952d74,0xdaaf798c] },
  1042. { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  1043. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1044. ct: [0xea3695e1,0x351b9d68,0x58bd958c,0xf513ef6c] },
  1045. { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  1046. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1047. ct: [0x6da0490b,0xa0ba0343,0xb935681d,0x2cce5ba1] },
  1048. { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  1049. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1050. ct: [0xf0ea23af,0x08534011,0xc60009ab,0x29ada2f1] },
  1051. { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  1052. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1053. ct: [0xff13806c,0xf19cc387,0x21554d7c,0x0fcdcd4b] },
  1054. { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  1055. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1056. ct: [0x6838af1f,0x4f69bae9,0xd85dd188,0xdcdf0688] },
  1057. { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  1058. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1059. ct: [0x36cf44c9,0x2d550bfb,0x1ed28ef5,0x83ddf5d7] },
  1060. { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  1061. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1062. ct: [0xd06e3195,0xb5376f10,0x9d5c4ec6,0xc5d62ced] },
  1063. { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  1064. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1065. ct: [0xc440de01,0x4d3d6107,0x07279b13,0x242a5c36] },
  1066. { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  1067. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1068. ct: [0xf0c5c6ff,0xa5e0bd3a,0x94c88f6b,0x6f7c16b9] },
  1069. { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  1070. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1071. ct: [0x3e40c390,0x1cd7effc,0x22bffc35,0xdee0b4d9] },
  1072. { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  1073. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1074. ct: [0xb63305c7,0x2bedfab9,0x7382c406,0xd0c49bc6] },
  1075. { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  1076. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1077. ct: [0x36bbaab2,0x2a6bd492,0x5a99a2b4,0x08d2dbae] },
  1078. { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  1079. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1080. ct: [0x307c5b8f,0xcd0533ab,0x98bc51e2,0x7a6ce461] },
  1081. { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  1082. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1083. ct: [0x829c04ff,0x4c07513c,0x0b3ef05c,0x03e337b5] },
  1084. { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  1085. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1086. ct: [0xf17af0e8,0x95dda5eb,0x98efc680,0x66e84c54] },
  1087. { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  1088. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1089. ct: [0x277167f3,0x812afff1,0xffacb4a9,0x34379fc3] },
  1090. { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  1091. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1092. ct: [0x2cb1dc3a,0x9c72972e,0x425ae2ef,0x3eb597cd] },
  1093. { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  1094. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1095. ct: [0x36aeaa3a,0x213e968d,0x4b5b679d,0x3a2c97fe] },
  1096. { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  1097. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1098. ct: [0x9241daca,0x4fdd034a,0x82372db5,0x0e1a0f3f] },
  1099. { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  1100. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1101. ct: [0xc14574d9,0xcd00cf2b,0x5a7f77e5,0x3cd57885] },
  1102. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  1103. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1104. ct: [0x793de392,0x36570aba,0x83ab9b73,0x7cb521c9] },
  1105. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  1106. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1107. ct: [0x16591c0f,0x27d60e29,0xb85a96c3,0x3861a7ef] },
  1108. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  1109. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1110. ct: [0x44fb5c4d,0x4f5cb79b,0xe5c174a3,0xb1c97348] },
  1111. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  1112. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1113. ct: [0x674d2b61,0x633d162b,0xe59dde04,0x222f4740] },
  1114. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  1115. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1116. ct: [0xb4750ff2,0x63a65e1f,0x9e924ccf,0xd98f3e37] },
  1117. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  1118. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1119. ct: [0x62d0662d,0x6eaedded,0xebae7f7e,0xa3a4f6b6] },
  1120. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  1121. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1122. ct: [0x70c46bb3,0x0692be65,0x7f7eaa93,0xebad9897] },
  1123. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  1124. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1125. ct: [0x323994cf,0xb9da285a,0x5d9642e1,0x759b224a] },
  1126. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  1127. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1128. ct: [0x1dbf5787,0x7b7b1738,0x5c85d0b5,0x4851e371] },
  1129. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  1130. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1131. ct: [0xdfa5c097,0xcdc1532a,0xc071d57b,0x1d28d1bd] },
  1132. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  1133. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1134. ct: [0x3a0c53fa,0x37311fc1,0x0bd2a998,0x1f513174] },
  1135. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  1136. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1137. ct: [0xba4f970c,0x0a25c418,0x14bdae2e,0x506be3b4] },
  1138. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  1139. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1140. ct: [0x2dce3acb,0x727cd13c,0xcd76d425,0xea56e4f6] },
  1141. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  1142. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1143. ct: [0x5160474d,0x504b9b3e,0xefb68d35,0xf245f4b3] },
  1144. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  1145. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1146. ct: [0x41a8a947,0x766635de,0xc37553d9,0xa6c0cbb7] },
  1147. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  1148. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1149. ct: [0x25d6cfe6,0x881f2bf4,0x97dd14cd,0x4ddf445b] },
  1150. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  1151. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1152. ct: [0x41c78c13,0x5ed9e98c,0x09664064,0x7265da1e] },
  1153. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  1154. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1155. ct: [0x5a4d404d,0x8917e353,0xe92a2107,0x2c3b2305] },
  1156. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  1157. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1158. ct: [0x02bc9684,0x6b3fdc71,0x643f384c,0xd3cc3eaf] },
  1159. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  1160. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1161. ct: [0x9ba4a914,0x3f4e5d40,0x48521c4f,0x8877d88e] },
  1162. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  1163. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  1164. ct: [0xa1f6258c,0x877d5fcd,0x89644845,0x38bfc92c] },
  1165. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1166. pt: [0x80000000,0x00000000,0x00000000,0x00000000],
  1167. ct: [0x3ad78e72,0x6c1ec02b,0x7ebfe92b,0x23d9ec34] },
  1168. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1169. pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
  1170. ct: [0xaae5939c,0x8efdf2f0,0x4e60b9fe,0x7117b2c2] },
  1171. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1172. pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
  1173. ct: [0xf031d4d7,0x4f5dcbf3,0x9daaf8ca,0x3af6e527] },
  1174. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1175. pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
  1176. ct: [0x96d9fd5c,0xc4f07441,0x727df0f3,0x3e401a36] },
  1177. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1178. pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
  1179. ct: [0x30ccdb04,0x4646d7e1,0xf3ccea3d,0xca08b8c0] },
  1180. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1181. pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
  1182. ct: [0x16ae4ce5,0x042a67ee,0x8e177b7c,0x587ecc82] },
  1183. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1184. pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
  1185. ct: [0xb6da0bb1,0x1a23855d,0x9c5cb1b4,0xc6412e0a] },
  1186. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1187. pt: [0xff000000,0x00000000,0x00000000,0x00000000],
  1188. ct: [0xdb4f1aa5,0x30967d67,0x32ce4715,0xeb0ee24b] },
  1189. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1190. pt: [0xff800000,0x00000000,0x00000000,0x00000000],
  1191. ct: [0xa8173825,0x2621dd18,0x0a34f345,0x5b4baa2f] },
  1192. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1193. pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
  1194. ct: [0x77e2b508,0xdb7fd892,0x34caf793,0x9ee5621a] },
  1195. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1196. pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
  1197. ct: [0xb8499c25,0x1f8442ee,0x13f0933b,0x688fcd19] },
  1198. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1199. pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
  1200. ct: [0x965135f8,0xa81f25c9,0xd630b175,0x02f68e53] },
  1201. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1202. pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
  1203. ct: [0x8b87145a,0x01ad1c6c,0xede995ea,0x3670454f] },
  1204. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1205. pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  1206. ct: [0x8eae3b10,0xa0c8ca6d,0x1d3b0fa6,0x1e56b0b2] },
  1207. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1208. pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  1209. ct: [0x64b4d629,0x810fda6b,0xafdf08f3,0xb0d8d2c5] },
  1210. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1211. pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
  1212. ct: [0xd7e5dbd3,0x324595f8,0xfdc7d7c5,0x71da6c2a] },
  1213. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1214. pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
  1215. ct: [0xf3f72375,0x264e167f,0xca9de2c1,0x527d9606] },
  1216. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1217. pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
  1218. ct: [0x8ee79dd4,0xf401ff9b,0x7ea945d8,0x6666c13b] },
  1219. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1220. pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
  1221. ct: [0xdd35cea2,0x799940b4,0x0db3f819,0xcb94c08b] },
  1222. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1223. pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
  1224. ct: [0x6941cb6b,0x3e08c2b7,0xafa581eb,0xdd607b87] },
  1225. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1226. pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
  1227. ct: [0x2c20f439,0xf6bb097b,0x29b8bd6d,0x99aad799] },
  1228. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1229. pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  1230. ct: [0x625d01f0,0x58e565f7,0x7ae86378,0xbd2c49b3] },
  1231. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1232. pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  1233. ct: [0xc0b5fd98,0x190ef45f,0xbb430143,0x8d095950] },
  1234. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1235. pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
  1236. ct: [0x13001ff5,0xd99806ef,0xd25da34f,0x56be854b] },
  1237. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1238. pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
  1239. ct: [0x3b594c60,0xf5c8277a,0x5113677f,0x94208d82] },
  1240. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1241. pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  1242. ct: [0xe9c0fc18,0x18e4aa46,0xbd2e39d6,0x38f89e05] },
  1243. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1244. pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  1245. ct: [0xf8023ee9,0xc3fdc45a,0x019b4e98,0x5c7e1a54] },
  1246. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1247. pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  1248. ct: [0x35f40182,0xab4662f3,0x023baec1,0xee796b57] },
  1249. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1250. pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  1251. ct: [0x3aebbad7,0x303649b4,0x194a6945,0xc6cc3694] },
  1252. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1253. pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  1254. ct: [0xa2124bea,0x53ec2834,0x279bed7f,0x7eb0f938] },
  1255. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1256. pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  1257. ct: [0xb9fb4399,0xfa4facc7,0x309e14ec,0x98360b0a] },
  1258. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1259. pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
  1260. ct: [0xc2627743,0x7420c5d6,0x34f715ae,0xa81a9132] },
  1261. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1262. pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
  1263. ct: [0x171a0e1b,0x2dd424f0,0xe089af2c,0x4c10f32f] },
  1264. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1265. pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  1266. ct: [0x7cadbe40,0x2d1b208f,0xe735edce,0x00aee7ce] },
  1267. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1268. pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  1269. ct: [0x43b02ff9,0x29a1485a,0xf6f5c6d6,0x558baa0f] },
  1270. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1271. pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  1272. ct: [0x092faacc,0x9bf43508,0xbf8fa861,0x3ca75dea] },
  1273. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1274. pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  1275. ct: [0xcb2bf828,0x0f3f9742,0xc7ed513f,0xe802629c] },
  1276. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1277. pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  1278. ct: [0x215a41ee,0x442fa992,0xa6e32398,0x6ded3f68] },
  1279. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1280. pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  1281. ct: [0xf21e99cf,0x4f0f77ce,0xa836e11a,0x2fe75fb1] },
  1282. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1283. pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
  1284. ct: [0x95e3a0ca,0x9079e646,0x331df8b4,0xe70d2cd6] },
  1285. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1286. pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
  1287. ct: [0x4afe7f12,0x0ce7613f,0x74fc12a0,0x1a828073] },
  1288. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1289. pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  1290. ct: [0x827f000e,0x75e2c8b9,0xd479beed,0x913fe678] },
  1291. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1292. pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  1293. ct: [0x35830c8e,0x7aaefe2d,0x30310ef3,0x81cbf691] },
  1294. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1295. pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  1296. ct: [0x191aa0f2,0xc8570144,0xf38657ea,0x4085ebe5] },
  1297. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1298. pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  1299. ct: [0x85062c2c,0x909f15d9,0x269b6c18,0xce99c4f0] },
  1300. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1301. pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  1302. ct: [0x678034dc,0x9e41b5a5,0x60ed239e,0xeab1bc78] },
  1303. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1304. pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  1305. ct: [0xc2f93a4c,0xe5ab6d5d,0x56f1b93c,0xf19911c1] },
  1306. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1307. pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  1308. ct: [0x1c3112bc,0xb0c1dcc7,0x49d79974,0x3691bf82] },
  1309. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1310. pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  1311. ct: [0x00c55bd7,0x5c7f9c88,0x1989d3ec,0x1911c0d4] },
  1312. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1313. pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  1314. ct: [0xea2e6b5e,0xf182b7df,0xf3629abd,0x6a12045f] },
  1315. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1316. pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  1317. ct: [0x22322327,0xe01780b1,0x7397f240,0x87f8cc6f] },
  1318. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1319. pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  1320. ct: [0xc9cacb5c,0xd11692c3,0x73b24117,0x68149ee7] },
  1321. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1322. pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  1323. ct: [0xa18e3dbb,0xca577860,0xdab6b80d,0xa3139256] },
  1324. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1325. pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  1326. ct: [0x79b61c37,0xbf328ecc,0xa8d74326,0x5a3d425c] },
  1327. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1328. pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  1329. ct: [0xd2d99c6b,0xcc1f06fd,0xa8e27e8a,0xe3f1ccc7] },
  1330. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1331. pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  1332. ct: [0x1bfd4b91,0xc701fd6b,0x61b7f997,0x829d663b] },
  1333. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1334. pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  1335. ct: [0x11005d52,0xf25f16bd,0xc9545a87,0x6a63490a] },
  1336. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1337. pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  1338. ct: [0x3a4d354f,0x02bb5a5e,0x47d39666,0x867f246a] },
  1339. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1340. pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  1341. ct: [0xd451b8d6,0xe1e1a0eb,0xb155fbbf,0x6e7b7dc3] },
  1342. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1343. pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  1344. ct: [0x6898d4f4,0x2fa7ba6a,0x10ac05e8,0x7b9f2080] },
  1345. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1346. pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  1347. ct: [0xb611295e,0x739ca7d9,0xb50f8e4c,0x0e754a3f] },
  1348. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1349. pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  1350. ct: [0x7d33fc7d,0x8abe3ca1,0x936759f8,0xf5deaf20] },
  1351. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1352. pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  1353. ct: [0x3b5e0f56,0x6dc96c29,0x8f0c1263,0x7539b25c] },
  1354. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1355. pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  1356. ct: [0xf807c3e7,0x985fe0f5,0xa50e2cdb,0x25c5109e] },
  1357. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1358. pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  1359. ct: [0x41f992a8,0x56fb278b,0x389a62f5,0xd274d7e9] },
  1360. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1361. pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  1362. ct: [0x10d3ed7a,0x6fe15ab4,0xd91acbc7,0xd0767ab1] },
  1363. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1364. pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  1365. ct: [0x21feecd4,0x5b2e6759,0x73ac33bf,0x0c5424fc] },
  1366. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1367. pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  1368. ct: [0x1480cb39,0x55ba62d0,0x9eea668f,0x7c708817] },
  1369. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1370. pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  1371. ct: [0x66404033,0xd6b72b60,0x9354d549,0x6e7eb511] },
  1372. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1373. pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  1374. ct: [0x1c317a22,0x0a7d700d,0xa2b1e075,0xb00266e1] },
  1375. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1376. pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  1377. ct: [0xab3b8954,0x2233f127,0x1bf8fd0c,0x0f403545] },
  1378. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1379. pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  1380. ct: [0xd93eae96,0x6fac46dc,0xa927d6b1,0x14fa3f9e] },
  1381. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1382. pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  1383. ct: [0x1bdec521,0x316503d9,0xd5ee65df,0x3ea94ddf] },
  1384. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1385. pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  1386. ct: [0xeef45643,0x1dea8b4a,0xcf83bdae,0x3717f75f] },
  1387. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1388. pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  1389. ct: [0x06f2519a,0x2fafaa59,0x6bfef5cf,0xa15c21b9] },
  1390. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1391. pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  1392. ct: [0x251a7eac,0x7e2fe809,0xe4aa8d0d,0x7012531a] },
  1393. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1394. pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  1395. ct: [0x3bffc16e,0x4c49b268,0xa20f8d96,0xa60b4058] },
  1396. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1397. pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  1398. ct: [0xe886f928,0x1999c5bb,0x3b3e8862,0xe2f7c988] },
  1399. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1400. pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  1401. ct: [0x563bf90d,0x61beef39,0xf48dd625,0xfcef1361] },
  1402. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1403. pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  1404. ct: [0x4d37c850,0x644563c6,0x9fd0acd9,0xa049325b] },
  1405. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1406. pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  1407. ct: [0xb87c921b,0x91829ef3,0xb13ca541,0xee1130a6] },
  1408. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1409. pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  1410. ct: [0x2e65eb6b,0x6ea383e1,0x09accce8,0x326b0393] },
  1411. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1412. pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  1413. ct: [0x9ca547f7,0x439edc3e,0x255c0f4d,0x49aa8990] },
  1414. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1415. pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  1416. ct: [0xa5e65261,0x4c9300f3,0x7816b1f9,0xfd0c87f9] },
  1417. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1418. pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  1419. ct: [0x14954f0b,0x4697776f,0x44494fe4,0x58d814ed] },
  1420. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1421. pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  1422. ct: [0x7c8d9ab6,0xc2761723,0xfe42f8bb,0x506cbcf7] },
  1423. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1424. pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  1425. ct: [0xdb7e1932,0x679fdd99,0x742aab04,0xaa0d5a80] },
  1426. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1427. pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  1428. ct: [0x4c6a1c83,0xe568cd10,0xf27c2d73,0xded19c28] },
  1429. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1430. pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  1431. ct: [0x90ecbe61,0x77e674c9,0x8de41241,0x3f7ac915] },
  1432. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1433. pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  1434. ct: [0x90684a2a,0xc55fe1ec,0x2b8ebd56,0x22520b73] },
  1435. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1436. pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  1437. ct: [0x7472f9a7,0x988607ca,0x79707795,0x991035e6] },
  1438. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1439. pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  1440. ct: [0x56aff089,0x878bf335,0x2f8df172,0xa3ae47d8] },
  1441. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1442. pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  1443. ct: [0x65c0526c,0xbe40161b,0x8019a2a3,0x171abd23] },
  1444. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1445. pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  1446. ct: [0x377be0be,0x33b4e3e3,0x10b4aabd,0xa173f84f] },
  1447. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1448. pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  1449. ct: [0x9402e9aa,0x6f69de65,0x04da8d20,0xc4fcaa2f] },
  1450. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1451. pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  1452. ct: [0x123c1f4a,0xf313ad8c,0x2ce648b2,0xe71fb6e1] },
  1453. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1454. pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  1455. ct: [0x1ffc626d,0x30203dcd,0xb0019fb8,0x0f726cf4] },
  1456. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1457. pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  1458. ct: [0x76da1fbe,0x3a50728c,0x50fd2e62,0x1b5ad885] },
  1459. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1460. pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  1461. ct: [0x082eb8be,0x35f442fb,0x52668e16,0xa591d1d6] },
  1462. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1463. pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  1464. ct: [0xe656f9ec,0xf5fe27ec,0x3e4a73d0,0x0c282fb3] },
  1465. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1466. pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  1467. ct: [0x2ca8209d,0x63274cd9,0xa29bb74b,0xcd77683a] },
  1468. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1469. pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  1470. ct: [0x79bf5dce,0x14bb7dd7,0x3a8e3611,0xde7ce026] },
  1471. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1472. pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  1473. ct: [0x3c849939,0xa5d29399,0xf344c4a0,0xeca8a576] },
  1474. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1475. pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  1476. ct: [0xed3c0a94,0xd59bece9,0x8835da7a,0xa4f07ca2] },
  1477. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1478. pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  1479. ct: [0x63919ed4,0xce101964,0x38b6ad09,0xd99cd795] },
  1480. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1481. pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  1482. ct: [0x7678f3a8,0x33f19fea,0x95f3c602,0x9e2bc610] },
  1483. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1484. pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  1485. ct: [0x3aa42683,0x1067d36b,0x92be7c5f,0x81c13c56] },
  1486. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1487. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  1488. ct: [0x9272e2d2,0xcdd11050,0x998c8450,0x77a30ea0] },
  1489. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1490. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  1491. ct: [0x088c4b53,0xf5ec0ff8,0x14c19ada,0xe7f6246c] },
  1492. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1493. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  1494. ct: [0x4010a5e4,0x01fdf0a0,0x354ddbcc,0x0d012b17] },
  1495. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1496. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  1497. ct: [0xa87a3857,0x36c0a618,0x9bd6589b,0xd8445a93] },
  1498. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1499. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  1500. ct: [0x545f2b83,0xd9616dcc,0xf60fa983,0x0e9cd287] },
  1501. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1502. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  1503. ct: [0x4b706f7f,0x92406352,0x394037a6,0xd4f4688d] },
  1504. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1505. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  1506. ct: [0xb7972b39,0x41c44b90,0xafa7b264,0xbfba7387] },
  1507. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1508. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  1509. ct: [0x6f45732c,0xf1088154,0x6f0fd238,0x96d2bb60] },
  1510. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1511. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  1512. ct: [0x2e3579ca,0x15af27f6,0x4b3c955a,0x5bfc30ba] },
  1513. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1514. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  1515. ct: [0x34a2c5a9,0x1ae2aec9,0x9b7d1b5f,0xa6780447] },
  1516. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1517. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  1518. ct: [0xa4d6616b,0xd04f8733,0x5b0e5335,0x1227a9ee] },
  1519. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1520. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  1521. ct: [0x7f692b03,0x945867d1,0x6179a8ce,0xfc83ea3f] },
  1522. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1523. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  1524. ct: [0x3bd141ee,0x84a0e641,0x4a26e7a4,0xf281f8a2] },
  1525. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1526. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  1527. ct: [0xd1788f57,0x2d98b2b1,0x6ec5d5f3,0x922b99bc] },
  1528. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1529. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  1530. ct: [0x0833ff6f,0x61d98a57,0xb288e8c3,0x586b85a6] },
  1531. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1532. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  1533. ct: [0x85682617,0x97de176b,0xf0b43bec,0xc6285afb] },
  1534. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1535. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  1536. ct: [0xf9b0fda0,0xc4a898f5,0xb9e6f661,0xc4ce4d07] },
  1537. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1538. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  1539. ct: [0x8ade8959,0x13685c67,0xc5269f8a,0xae42983e] },
  1540. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1541. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  1542. ct: [0x39bde67d,0x5c8ed8a8,0xb1c37eb8,0xfa9f5ac0] },
  1543. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1544. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  1545. ct: [0x5c005e72,0xc1418c44,0xf569f2ea,0x33ba54f3] },
  1546. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1547. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  1548. ct: [0x3f5b8cc9,0xea855a0a,0xfa7347d2,0x3e8d664e] },
  1549. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1550. pt: [0x80000000,0x00000000,0x00000000,0x00000000],
  1551. ct: [0x3ad78e72,0x6c1ec02b,0x7ebfe92b,0x23d9ec34] },
  1552. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1553. pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
  1554. ct: [0xaae5939c,0x8efdf2f0,0x4e60b9fe,0x7117b2c2] },
  1555. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1556. pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
  1557. ct: [0xf031d4d7,0x4f5dcbf3,0x9daaf8ca,0x3af6e527] },
  1558. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1559. pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
  1560. ct: [0x96d9fd5c,0xc4f07441,0x727df0f3,0x3e401a36] },
  1561. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1562. pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
  1563. ct: [0x30ccdb04,0x4646d7e1,0xf3ccea3d,0xca08b8c0] },
  1564. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1565. pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
  1566. ct: [0x16ae4ce5,0x042a67ee,0x8e177b7c,0x587ecc82] },
  1567. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1568. pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
  1569. ct: [0xb6da0bb1,0x1a23855d,0x9c5cb1b4,0xc6412e0a] },
  1570. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1571. pt: [0xff000000,0x00000000,0x00000000,0x00000000],
  1572. ct: [0xdb4f1aa5,0x30967d67,0x32ce4715,0xeb0ee24b] },
  1573. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1574. pt: [0xff800000,0x00000000,0x00000000,0x00000000],
  1575. ct: [0xa8173825,0x2621dd18,0x0a34f345,0x5b4baa2f] },
  1576. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1577. pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
  1578. ct: [0x77e2b508,0xdb7fd892,0x34caf793,0x9ee5621a] },
  1579. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1580. pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
  1581. ct: [0xb8499c25,0x1f8442ee,0x13f0933b,0x688fcd19] },
  1582. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1583. pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
  1584. ct: [0x965135f8,0xa81f25c9,0xd630b175,0x02f68e53] },
  1585. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1586. pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
  1587. ct: [0x8b87145a,0x01ad1c6c,0xede995ea,0x3670454f] },
  1588. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1589. pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  1590. ct: [0x8eae3b10,0xa0c8ca6d,0x1d3b0fa6,0x1e56b0b2] },
  1591. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1592. pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  1593. ct: [0x64b4d629,0x810fda6b,0xafdf08f3,0xb0d8d2c5] },
  1594. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1595. pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
  1596. ct: [0xd7e5dbd3,0x324595f8,0xfdc7d7c5,0x71da6c2a] },
  1597. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1598. pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
  1599. ct: [0xf3f72375,0x264e167f,0xca9de2c1,0x527d9606] },
  1600. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1601. pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
  1602. ct: [0x8ee79dd4,0xf401ff9b,0x7ea945d8,0x6666c13b] },
  1603. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1604. pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
  1605. ct: [0xdd35cea2,0x799940b4,0x0db3f819,0xcb94c08b] },
  1606. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1607. pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
  1608. ct: [0x6941cb6b,0x3e08c2b7,0xafa581eb,0xdd607b87] },
  1609. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1610. pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
  1611. ct: [0x2c20f439,0xf6bb097b,0x29b8bd6d,0x99aad799] },
  1612. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1613. pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  1614. ct: [0x625d01f0,0x58e565f7,0x7ae86378,0xbd2c49b3] },
  1615. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1616. pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  1617. ct: [0xc0b5fd98,0x190ef45f,0xbb430143,0x8d095950] },
  1618. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1619. pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
  1620. ct: [0x13001ff5,0xd99806ef,0xd25da34f,0x56be854b] },
  1621. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1622. pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
  1623. ct: [0x3b594c60,0xf5c8277a,0x5113677f,0x94208d82] },
  1624. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1625. pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  1626. ct: [0xe9c0fc18,0x18e4aa46,0xbd2e39d6,0x38f89e05] },
  1627. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1628. pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  1629. ct: [0xf8023ee9,0xc3fdc45a,0x019b4e98,0x5c7e1a54] },
  1630. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1631. pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  1632. ct: [0x35f40182,0xab4662f3,0x023baec1,0xee796b57] },
  1633. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1634. pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  1635. ct: [0x3aebbad7,0x303649b4,0x194a6945,0xc6cc3694] },
  1636. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1637. pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  1638. ct: [0xa2124bea,0x53ec2834,0x279bed7f,0x7eb0f938] },
  1639. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1640. pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  1641. ct: [0xb9fb4399,0xfa4facc7,0x309e14ec,0x98360b0a] },
  1642. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1643. pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
  1644. ct: [0xc2627743,0x7420c5d6,0x34f715ae,0xa81a9132] },
  1645. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1646. pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
  1647. ct: [0x171a0e1b,0x2dd424f0,0xe089af2c,0x4c10f32f] },
  1648. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1649. pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  1650. ct: [0x7cadbe40,0x2d1b208f,0xe735edce,0x00aee7ce] },
  1651. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1652. pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  1653. ct: [0x43b02ff9,0x29a1485a,0xf6f5c6d6,0x558baa0f] },
  1654. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1655. pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  1656. ct: [0x092faacc,0x9bf43508,0xbf8fa861,0x3ca75dea] },
  1657. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1658. pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  1659. ct: [0xcb2bf828,0x0f3f9742,0xc7ed513f,0xe802629c] },
  1660. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1661. pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  1662. ct: [0x215a41ee,0x442fa992,0xa6e32398,0x6ded3f68] },
  1663. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1664. pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  1665. ct: [0xf21e99cf,0x4f0f77ce,0xa836e11a,0x2fe75fb1] },
  1666. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1667. pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
  1668. ct: [0x95e3a0ca,0x9079e646,0x331df8b4,0xe70d2cd6] },
  1669. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1670. pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
  1671. ct: [0x4afe7f12,0x0ce7613f,0x74fc12a0,0x1a828073] },
  1672. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1673. pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  1674. ct: [0x827f000e,0x75e2c8b9,0xd479beed,0x913fe678] },
  1675. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1676. pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  1677. ct: [0x35830c8e,0x7aaefe2d,0x30310ef3,0x81cbf691] },
  1678. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1679. pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  1680. ct: [0x191aa0f2,0xc8570144,0xf38657ea,0x4085ebe5] },
  1681. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1682. pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  1683. ct: [0x85062c2c,0x909f15d9,0x269b6c18,0xce99c4f0] },
  1684. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1685. pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  1686. ct: [0x678034dc,0x9e41b5a5,0x60ed239e,0xeab1bc78] },
  1687. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1688. pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  1689. ct: [0xc2f93a4c,0xe5ab6d5d,0x56f1b93c,0xf19911c1] },
  1690. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1691. pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  1692. ct: [0x1c3112bc,0xb0c1dcc7,0x49d79974,0x3691bf82] },
  1693. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1694. pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  1695. ct: [0x00c55bd7,0x5c7f9c88,0x1989d3ec,0x1911c0d4] },
  1696. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1697. pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  1698. ct: [0xea2e6b5e,0xf182b7df,0xf3629abd,0x6a12045f] },
  1699. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1700. pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  1701. ct: [0x22322327,0xe01780b1,0x7397f240,0x87f8cc6f] },
  1702. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1703. pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  1704. ct: [0xc9cacb5c,0xd11692c3,0x73b24117,0x68149ee7] },
  1705. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1706. pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  1707. ct: [0xa18e3dbb,0xca577860,0xdab6b80d,0xa3139256] },
  1708. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1709. pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  1710. ct: [0x79b61c37,0xbf328ecc,0xa8d74326,0x5a3d425c] },
  1711. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1712. pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  1713. ct: [0xd2d99c6b,0xcc1f06fd,0xa8e27e8a,0xe3f1ccc7] },
  1714. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1715. pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  1716. ct: [0x1bfd4b91,0xc701fd6b,0x61b7f997,0x829d663b] },
  1717. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1718. pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  1719. ct: [0x11005d52,0xf25f16bd,0xc9545a87,0x6a63490a] },
  1720. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1721. pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  1722. ct: [0x3a4d354f,0x02bb5a5e,0x47d39666,0x867f246a] },
  1723. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1724. pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  1725. ct: [0xd451b8d6,0xe1e1a0eb,0xb155fbbf,0x6e7b7dc3] },
  1726. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1727. pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  1728. ct: [0x6898d4f4,0x2fa7ba6a,0x10ac05e8,0x7b9f2080] },
  1729. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1730. pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  1731. ct: [0xb611295e,0x739ca7d9,0xb50f8e4c,0x0e754a3f] },
  1732. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1733. pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  1734. ct: [0x7d33fc7d,0x8abe3ca1,0x936759f8,0xf5deaf20] },
  1735. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1736. pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  1737. ct: [0x3b5e0f56,0x6dc96c29,0x8f0c1263,0x7539b25c] },
  1738. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1739. pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  1740. ct: [0xf807c3e7,0x985fe0f5,0xa50e2cdb,0x25c5109e] },
  1741. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1742. pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  1743. ct: [0x41f992a8,0x56fb278b,0x389a62f5,0xd274d7e9] },
  1744. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1745. pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  1746. ct: [0x10d3ed7a,0x6fe15ab4,0xd91acbc7,0xd0767ab1] },
  1747. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1748. pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  1749. ct: [0x21feecd4,0x5b2e6759,0x73ac33bf,0x0c5424fc] },
  1750. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1751. pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  1752. ct: [0x1480cb39,0x55ba62d0,0x9eea668f,0x7c708817] },
  1753. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1754. pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  1755. ct: [0x66404033,0xd6b72b60,0x9354d549,0x6e7eb511] },
  1756. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1757. pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  1758. ct: [0x1c317a22,0x0a7d700d,0xa2b1e075,0xb00266e1] },
  1759. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1760. pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  1761. ct: [0xab3b8954,0x2233f127,0x1bf8fd0c,0x0f403545] },
  1762. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1763. pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  1764. ct: [0xd93eae96,0x6fac46dc,0xa927d6b1,0x14fa3f9e] },
  1765. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1766. pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  1767. ct: [0x1bdec521,0x316503d9,0xd5ee65df,0x3ea94ddf] },
  1768. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1769. pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  1770. ct: [0xeef45643,0x1dea8b4a,0xcf83bdae,0x3717f75f] },
  1771. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1772. pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  1773. ct: [0x06f2519a,0x2fafaa59,0x6bfef5cf,0xa15c21b9] },
  1774. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1775. pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  1776. ct: [0x251a7eac,0x7e2fe809,0xe4aa8d0d,0x7012531a] },
  1777. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1778. pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  1779. ct: [0x3bffc16e,0x4c49b268,0xa20f8d96,0xa60b4058] },
  1780. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1781. pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  1782. ct: [0xe886f928,0x1999c5bb,0x3b3e8862,0xe2f7c988] },
  1783. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1784. pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  1785. ct: [0x563bf90d,0x61beef39,0xf48dd625,0xfcef1361] },
  1786. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1787. pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  1788. ct: [0x4d37c850,0x644563c6,0x9fd0acd9,0xa049325b] },
  1789. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1790. pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  1791. ct: [0xb87c921b,0x91829ef3,0xb13ca541,0xee1130a6] },
  1792. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1793. pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  1794. ct: [0x2e65eb6b,0x6ea383e1,0x09accce8,0x326b0393] },
  1795. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1796. pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  1797. ct: [0x9ca547f7,0x439edc3e,0x255c0f4d,0x49aa8990] },
  1798. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1799. pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  1800. ct: [0xa5e65261,0x4c9300f3,0x7816b1f9,0xfd0c87f9] },
  1801. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1802. pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  1803. ct: [0x14954f0b,0x4697776f,0x44494fe4,0x58d814ed] },
  1804. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1805. pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  1806. ct: [0x7c8d9ab6,0xc2761723,0xfe42f8bb,0x506cbcf7] },
  1807. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1808. pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  1809. ct: [0xdb7e1932,0x679fdd99,0x742aab04,0xaa0d5a80] },
  1810. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1811. pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  1812. ct: [0x4c6a1c83,0xe568cd10,0xf27c2d73,0xded19c28] },
  1813. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1814. pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  1815. ct: [0x90ecbe61,0x77e674c9,0x8de41241,0x3f7ac915] },
  1816. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1817. pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  1818. ct: [0x90684a2a,0xc55fe1ec,0x2b8ebd56,0x22520b73] },
  1819. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1820. pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  1821. ct: [0x7472f9a7,0x988607ca,0x79707795,0x991035e6] },
  1822. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1823. pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  1824. ct: [0x56aff089,0x878bf335,0x2f8df172,0xa3ae47d8] },
  1825. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1826. pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  1827. ct: [0x65c0526c,0xbe40161b,0x8019a2a3,0x171abd23] },
  1828. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1829. pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  1830. ct: [0x377be0be,0x33b4e3e3,0x10b4aabd,0xa173f84f] },
  1831. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1832. pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  1833. ct: [0x9402e9aa,0x6f69de65,0x04da8d20,0xc4fcaa2f] },
  1834. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1835. pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  1836. ct: [0x123c1f4a,0xf313ad8c,0x2ce648b2,0xe71fb6e1] },
  1837. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1838. pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  1839. ct: [0x1ffc626d,0x30203dcd,0xb0019fb8,0x0f726cf4] },
  1840. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1841. pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  1842. ct: [0x76da1fbe,0x3a50728c,0x50fd2e62,0x1b5ad885] },
  1843. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1844. pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  1845. ct: [0x082eb8be,0x35f442fb,0x52668e16,0xa591d1d6] },
  1846. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1847. pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  1848. ct: [0xe656f9ec,0xf5fe27ec,0x3e4a73d0,0x0c282fb3] },
  1849. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1850. pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  1851. ct: [0x2ca8209d,0x63274cd9,0xa29bb74b,0xcd77683a] },
  1852. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1853. pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  1854. ct: [0x79bf5dce,0x14bb7dd7,0x3a8e3611,0xde7ce026] },
  1855. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1856. pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  1857. ct: [0x3c849939,0xa5d29399,0xf344c4a0,0xeca8a576] },
  1858. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1859. pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  1860. ct: [0xed3c0a94,0xd59bece9,0x8835da7a,0xa4f07ca2] },
  1861. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1862. pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  1863. ct: [0x63919ed4,0xce101964,0x38b6ad09,0xd99cd795] },
  1864. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1865. pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  1866. ct: [0x7678f3a8,0x33f19fea,0x95f3c602,0x9e2bc610] },
  1867. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1868. pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  1869. ct: [0x3aa42683,0x1067d36b,0x92be7c5f,0x81c13c56] },
  1870. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1871. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  1872. ct: [0x9272e2d2,0xcdd11050,0x998c8450,0x77a30ea0] },
  1873. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1874. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  1875. ct: [0x088c4b53,0xf5ec0ff8,0x14c19ada,0xe7f6246c] },
  1876. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1877. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  1878. ct: [0x4010a5e4,0x01fdf0a0,0x354ddbcc,0x0d012b17] },
  1879. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1880. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  1881. ct: [0xa87a3857,0x36c0a618,0x9bd6589b,0xd8445a93] },
  1882. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1883. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  1884. ct: [0x545f2b83,0xd9616dcc,0xf60fa983,0x0e9cd287] },
  1885. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1886. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  1887. ct: [0x4b706f7f,0x92406352,0x394037a6,0xd4f4688d] },
  1888. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1889. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  1890. ct: [0xb7972b39,0x41c44b90,0xafa7b264,0xbfba7387] },
  1891. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1892. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  1893. ct: [0x6f45732c,0xf1088154,0x6f0fd238,0x96d2bb60] },
  1894. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1895. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  1896. ct: [0x2e3579ca,0x15af27f6,0x4b3c955a,0x5bfc30ba] },
  1897. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1898. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  1899. ct: [0x34a2c5a9,0x1ae2aec9,0x9b7d1b5f,0xa6780447] },
  1900. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1901. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  1902. ct: [0xa4d6616b,0xd04f8733,0x5b0e5335,0x1227a9ee] },
  1903. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1904. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  1905. ct: [0x7f692b03,0x945867d1,0x6179a8ce,0xfc83ea3f] },
  1906. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1907. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  1908. ct: [0x3bd141ee,0x84a0e641,0x4a26e7a4,0xf281f8a2] },
  1909. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1910. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  1911. ct: [0xd1788f57,0x2d98b2b1,0x6ec5d5f3,0x922b99bc] },
  1912. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1913. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  1914. ct: [0x0833ff6f,0x61d98a57,0xb288e8c3,0x586b85a6] },
  1915. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1916. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  1917. ct: [0x85682617,0x97de176b,0xf0b43bec,0xc6285afb] },
  1918. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1919. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  1920. ct: [0xf9b0fda0,0xc4a898f5,0xb9e6f661,0xc4ce4d07] },
  1921. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1922. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  1923. ct: [0x8ade8959,0x13685c67,0xc5269f8a,0xae42983e] },
  1924. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1925. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  1926. ct: [0x39bde67d,0x5c8ed8a8,0xb1c37eb8,0xfa9f5ac0] },
  1927. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1928. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  1929. ct: [0x5c005e72,0xc1418c44,0xf569f2ea,0x33ba54f3] },
  1930. { key: [0x00000000,0x00000000,0x00000000,0x00000000],
  1931. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  1932. ct: [0x3f5b8cc9,0xea855a0a,0xfa7347d2,0x3e8d664e] },
  1933. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1934. pt: [0x80000000,0x00000000,0x00000000,0x00000000],
  1935. ct: [0x6cd02513,0xe8d4dc98,0x6b4afe08,0x7a60bd0c] },
  1936. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1937. pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
  1938. ct: [0x2ce1f8b7,0xe30627c1,0xc4519ead,0xa44bc436] },
  1939. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1940. pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
  1941. ct: [0x9946b5f8,0x7af446f5,0x796c1fee,0x63a2da24] },
  1942. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1943. pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
  1944. ct: [0x2a560364,0xce529efc,0x21788779,0x568d5555] },
  1945. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1946. pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
  1947. ct: [0x35c14718,0x37af4461,0x53bce55d,0x5ba72a0a] },
  1948. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1949. pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
  1950. ct: [0xce60bc52,0x386234f1,0x58f84341,0xe534cd9e] },
  1951. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1952. pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
  1953. ct: [0x8c7c27ff,0x32bcf8dc,0x2dc57c90,0xc2903961] },
  1954. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1955. pt: [0xff000000,0x00000000,0x00000000,0x00000000],
  1956. ct: [0x32bb6a7e,0xc84499e1,0x66f93600,0x3d55a5bb] },
  1957. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1958. pt: [0xff800000,0x00000000,0x00000000,0x00000000],
  1959. ct: [0xa5c772e5,0xc62631ef,0x660ee1d5,0x877f6d1b] },
  1960. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1961. pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
  1962. ct: [0x030d7e5b,0x64f380a7,0xe4ea5387,0xb5cd7f49] },
  1963. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1964. pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
  1965. ct: [0x0dc9a261,0x0037009b,0x698f11bb,0x7e86c83e] },
  1966. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1967. pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
  1968. ct: [0x0046612c,0x766d1840,0xc226364f,0x1fa7ed72] },
  1969. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1970. pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
  1971. ct: [0x4880c7e0,0x8f27befe,0x78590743,0xc05e698b] },
  1972. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1973. pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  1974. ct: [0x2520ce82,0x9a26577f,0x0f4822c4,0xecc87401] },
  1975. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1976. pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  1977. ct: [0x8765e8ac,0xc1697583,0x19cb46dc,0x7bcf3dca] },
  1978. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1979. pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
  1980. ct: [0xe98f4ba4,0xf073df4b,0xaa116d01,0x1dc24a28] },
  1981. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1982. pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
  1983. ct: [0xf378f68c,0x5dbf59e2,0x11b3a659,0xa7317d94] },
  1984. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1985. pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
  1986. ct: [0x283d3b06,0x9d8eb9fb,0x432d74b9,0x6ca762b4] },
  1987. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1988. pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
  1989. ct: [0xa7e1842e,0x8a87861c,0x221a5008,0x83245c51] },
  1990. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1991. pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
  1992. ct: [0x77aa2704,0x71881be0,0x70fb52c7,0x067ce732] },
  1993. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1994. pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
  1995. ct: [0x01b0f476,0xd484f43f,0x1aeb6efa,0x9361a8ac] },
  1996. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  1997. pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  1998. ct: [0x1c3a94f1,0xc052c55c,0x2d8359af,0xf2163b4f] },
  1999. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2000. pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  2001. ct: [0xe8a067b6,0x04d5373d,0x8b0f2e05,0xa03b341b] },
  2002. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2003. pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
  2004. ct: [0xa7876ec8,0x7f5a09bf,0xea42c77d,0xa30fd50e] },
  2005. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2006. pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
  2007. ct: [0x0cf3e9d3,0xa42be5b8,0x54ca65b1,0x3f35f48d] },
  2008. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2009. pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  2010. ct: [0x6c62f6bb,0xcab7c3e8,0x21c9290f,0x08892dda] },
  2011. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2012. pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  2013. ct: [0x7f5e05bd,0x20687381,0x96fee79a,0xce7e3aec] },
  2014. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2015. pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  2016. ct: [0x440e0d73,0x3255cda9,0x2fb46e84,0x2fe58054] },
  2017. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2018. pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  2019. ct: [0xaa5d5b1c,0x4ea1b7a2,0x2e5583ac,0x2e9ed8a7] },
  2020. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2021. pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  2022. ct: [0x77e537e8,0x9e8491e8,0x662aae3b,0xc809421d] },
  2023. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2024. pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  2025. ct: [0x997dd3e9,0xf1598bfa,0x73f75973,0xf7e93b76] },
  2026. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2027. pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
  2028. ct: [0x1b38d4f7,0x452afefc,0xb7fc7212,0x44e4b72e] },
  2029. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2030. pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
  2031. ct: [0x0be2b182,0x52e774dd,0xa30cdda0,0x2c6906e3] },
  2032. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2033. pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  2034. ct: [0xd2695e59,0xc20361d8,0x2652d7d5,0x8b6f11b2] },
  2035. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2036. pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  2037. ct: [0x902d88d1,0x3eae5208,0x9abd6143,0xcfe394e9] },
  2038. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2039. pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  2040. ct: [0xd49bceb3,0xb823fedd,0x602c3053,0x45734bd2] },
  2041. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2042. pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  2043. ct: [0x707b1dbb,0x0ffa40ef,0x7d95def4,0x21233fae] },
  2044. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2045. pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  2046. ct: [0x7ca0c1d9,0x3356d9eb,0x8aa95208,0x4d75f913] },
  2047. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2048. pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  2049. ct: [0xf2cbf9cb,0x186e270d,0xd7bdb0c2,0x8febc57d] },
  2050. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2051. pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
  2052. ct: [0xc94337c3,0x7c4e790a,0xb45780bd,0x9c3674a0] },
  2053. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2054. pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
  2055. ct: [0x8e3558c1,0x35252fb9,0xc9f367ed,0x609467a1] },
  2056. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2057. pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  2058. ct: [0x1b72eeae,0xe4899b44,0x3914e5b3,0xa57fba92] },
  2059. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2060. pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  2061. ct: [0x011865f9,0x1bc56868,0xd051e52c,0x9efd59b7] },
  2062. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2063. pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  2064. ct: [0xe4771318,0xad7a63dd,0x680f6e58,0x3b7747ea] },
  2065. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2066. pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  2067. ct: [0x61e3d194,0x088dc8d9,0x7e9e6db3,0x7457eac5] },
  2068. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2069. pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  2070. ct: [0x36ff1ec9,0xccfbc349,0xe5d356d0,0x63693ad6] },
  2071. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2072. pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  2073. ct: [0x3cc9e9a9,0xbe8cc3f6,0xfb2ea240,0x88e9bb19] },
  2074. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2075. pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  2076. ct: [0x1ee5ab00,0x3dc8722e,0x74905d9a,0x8fe3d350] },
  2077. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2078. pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  2079. ct: [0x24533931,0x9584b0a4,0x12412869,0xd6c2eada] },
  2080. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2081. pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  2082. ct: [0x7bd49691,0x8115d14e,0xd5380852,0x716c8814] },
  2083. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2084. pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  2085. ct: [0x273ab2f2,0xb4a366a5,0x7d582a33,0x9313c8b1] },
  2086. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2087. pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  2088. ct: [0x113365a9,0xffbe3b0c,0xa61e9850,0x7554168b] },
  2089. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2090. pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  2091. ct: [0xafa99c99,0x7ac478a0,0xdea4119c,0x9e45f8b1] },
  2092. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2093. pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  2094. ct: [0x9216309a,0x7842430b,0x83ffb986,0x38011512] },
  2095. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2096. pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  2097. ct: [0x62abc792,0x28825849,0x2a7cb451,0x45f4b759] },
  2098. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2099. pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  2100. ct: [0x534923c1,0x69d504d7,0x519c15d3,0x0e756c50] },
  2101. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2102. pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  2103. ct: [0xfa75e05b,0xcdc7e00c,0x273fa33f,0x6ee441d2] },
  2104. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2105. pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  2106. ct: [0x7d350fa6,0x057080f1,0x086a56b1,0x7ec240db] },
  2107. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2108. pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  2109. ct: [0xf34e4a63,0x24ea4a5c,0x39a661c8,0xfe5ada8f] },
  2110. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2111. pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  2112. ct: [0x0882a16f,0x44088d42,0x447a29ac,0x090ec17e] },
  2113. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2114. pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  2115. ct: [0x3a3c15bf,0xc11a9537,0xc1306870,0x04e136ee] },
  2116. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2117. pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  2118. ct: [0x22c0a767,0x8dc6d8cf,0x5c8a6d5a,0x9960767c] },
  2119. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2120. pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  2121. ct: [0xb46b0980,0x9d68b9a4,0x56432a79,0xbdc2e38c] },
  2122. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2123. pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  2124. ct: [0x93baaffb,0x35fbe739,0xc17c6ac2,0x2eecf18f] },
  2125. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2126. pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  2127. ct: [0xc8aa80a7,0x850675bc,0x007c46df,0x06b49868] },
  2128. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2129. pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  2130. ct: [0x12c6f387,0x7af421a9,0x18a84b77,0x5858021d] },
  2131. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2132. pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  2133. ct: [0x33f12328,0x2c5d6339,0x24f7d5ba,0x3f3cab11] },
  2134. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2135. pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  2136. ct: [0xa8f16100,0x2733e93c,0xa4527d22,0xc1a0c5bb] },
  2137. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2138. pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  2139. ct: [0xb72f70eb,0xf3e3fda2,0x3f508eec,0x76b42c02] },
  2140. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2141. pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  2142. ct: [0x6a9d965e,0x6274143f,0x25afdcfc,0x88ffd77c] },
  2143. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2144. pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  2145. ct: [0xa0c74fd0,0xb9361764,0xce91c520,0x0b095357] },
  2146. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2147. pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  2148. ct: [0x091d1fdc,0x2bd2c346,0xcd5046a8,0xc6209146] },
  2149. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2150. pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  2151. ct: [0xe2a37580,0x116cfb71,0x85625449,0x6ab0aca8] },
  2152. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2153. pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  2154. ct: [0xe0b3a007,0x85917c7e,0xfc9adba3,0x22813571] },
  2155. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2156. pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  2157. ct: [0x733d41f4,0x727b5ef0,0xdf4af4cf,0x3cffa0cb] },
  2158. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2159. pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  2160. ct: [0xa99ebb03,0x0260826f,0x981ad3e6,0x4490aa4f] },
  2161. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2162. pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  2163. ct: [0x73f34c7d,0x3eae5e80,0x082c1647,0x524308ee] },
  2164. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2165. pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  2166. ct: [0x40ebd5ad,0x082345b7,0xa2097ccd,0x3464da02] },
  2167. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2168. pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  2169. ct: [0x7cc4ae9a,0x424b2cec,0x90c97153,0xc2457ec5] },
  2170. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2171. pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  2172. ct: [0x54d632d0,0x3aba0bd0,0xf91877eb,0xdd4d09cb] },
  2173. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2174. pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  2175. ct: [0xd3427be7,0xe4d27cd5,0x4f5fe37b,0x03cf0897] },
  2176. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2177. pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  2178. ct: [0xb2099795,0xe88cc158,0xfd75ea13,0x3d7e7fbe] },
  2179. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2180. pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  2181. ct: [0xa6cae46f,0xb6fadfe7,0xa2c302a3,0x4242817b] },
  2182. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2183. pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  2184. ct: [0x026a7024,0xd6a902e0,0xb3ffccba,0xa910cc3f] },
  2185. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2186. pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  2187. ct: [0x156f0776,0x7a85a431,0x2321f639,0x68338a01] },
  2188. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2189. pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  2190. ct: [0x15eec9eb,0xf42b9ca7,0x6897d2cd,0x6c5a12e2] },
  2191. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2192. pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  2193. ct: [0xdb0d3a6f,0xdcc13f91,0x5e2b302c,0xeeb70fd8] },
  2194. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2195. pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  2196. ct: [0x71dbf37e,0x87a2e34d,0x15b20e8f,0x10e48924] },
  2197. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2198. pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  2199. ct: [0xc745c451,0xe96ff3c0,0x45e4367c,0x833e3b54] },
  2200. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2201. pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  2202. ct: [0x340da09c,0x2dd11c3b,0x679d08cc,0xd27dd595] },
  2203. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2204. pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  2205. ct: [0x8279f7c0,0xc2a03ee6,0x60c6d392,0xdb025d18] },
  2206. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2207. pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  2208. ct: [0xa4b2c7d8,0xeba531ff,0x47c5041a,0x55fbd1ec] },
  2209. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2210. pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  2211. ct: [0x74569a2c,0xa5a7bd51,0x31ce8dc7,0xcbfbf72f] },
  2212. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2213. pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  2214. ct: [0x3713da0c,0x0219b634,0x54035613,0xb5a403dd] },
  2215. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2216. pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  2217. ct: [0x8827551d,0xdcc9df23,0xfa72a3de,0x4e9f0b07] },
  2218. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2219. pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  2220. ct: [0x2e3febfd,0x625bfcd0,0xa2c06eb4,0x60da1732] },
  2221. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2222. pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  2223. ct: [0xee82e6ba,0x488156f7,0x6496311d,0xa6941deb] },
  2224. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2225. pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  2226. ct: [0x4770446f,0x01d1f391,0x256e85a1,0xb30d89d3] },
  2227. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2228. pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  2229. ct: [0xaf04b68f,0x104f21ef,0x2afb4767,0xcf74143c] },
  2230. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2231. pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  2232. ct: [0xcf3579a9,0xba38c8e4,0x3653173e,0x14f3a4c6] },
  2233. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2234. pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  2235. ct: [0xb3bba904,0xf4953e09,0xb54800af,0x2f62e7d4] },
  2236. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2237. pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  2238. ct: [0xfc424965,0x6e14b29e,0xb9c44829,0xb4c59a46] },
  2239. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2240. pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  2241. ct: [0x9b31568f,0xebe81cfc,0x2e65af1c,0x86d1a308] },
  2242. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2243. pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  2244. ct: [0x9ca09c25,0xf273a766,0xdb98a480,0xce8dfedc] },
  2245. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2246. pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  2247. ct: [0xb9099257,0x86f34c3c,0x92d97188,0x3c9fbedf] },
  2248. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2249. pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  2250. ct: [0x82647f13,0x32fe570a,0x9d4d92b2,0xee771d3b] },
  2251. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2252. pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  2253. ct: [0x3604a7e8,0x0832b3a9,0x9954bca6,0xf5b9f501] },
  2254. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2255. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  2256. ct: [0x884607b1,0x28c5de3a,0xb39a529a,0x1ef51bef] },
  2257. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2258. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  2259. ct: [0x670cfa09,0x3d1dbdb2,0x31704140,0x4102435e] },
  2260. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2261. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  2262. ct: [0x7a867195,0xf3ce8769,0xcbd33650,0x2fbb5130] },
  2263. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2264. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  2265. ct: [0x52efcf64,0xc72b2f7c,0xa5b3c836,0xb1078c15] },
  2266. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2267. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  2268. ct: [0x4019250f,0x6eefb2ac,0x5ccbcae0,0x44e75c7e] },
  2269. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2270. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  2271. ct: [0x022c4f6f,0x5a017d29,0x27856276,0x67ddef24] },
  2272. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2273. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  2274. ct: [0xe9c21078,0xa2eb7e03,0x250f7100,0x0fa9e3ed] },
  2275. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2276. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  2277. ct: [0xa13eaeeb,0x9cd391da,0x4e2b0949,0x0b3e7fad] },
  2278. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2279. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  2280. ct: [0xc958a171,0xdca1d4ed,0x53e1af1d,0x380803a9] },
  2281. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2282. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  2283. ct: [0x21442e07,0xa110667f,0x2583eaee,0xee44dc8c] },
  2284. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2285. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  2286. ct: [0x59bbb353,0xcf1dd867,0xa6e33737,0xaf655e99] },
  2287. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2288. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  2289. ct: [0x43cd3b25,0x375d0ce4,0x1087ff9f,0xe2829639] },
  2290. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2291. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  2292. ct: [0x6b98b17e,0x80d1118e,0x3516bd76,0x8b285a84] },
  2293. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2294. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  2295. ct: [0xae47ed36,0x76ca0c08,0xdeea02d9,0x5b81db58] },
  2296. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2297. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  2298. ct: [0x34ec40dc,0x20413795,0xed53628e,0xa748720b] },
  2299. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2300. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  2301. ct: [0x4dc68163,0xf8e98354,0x73253542,0xc8a65d46] },
  2302. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2303. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  2304. ct: [0x2aabb999,0xf4369317,0x5af65c6c,0x612c46fb] },
  2305. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2306. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  2307. ct: [0xe01f9449,0x9dac3547,0x515c5b1d,0x756f0f58] },
  2308. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2309. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  2310. ct: [0x9d12435a,0x46480ce0,0x0ea349f7,0x1799df9a] },
  2311. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2312. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  2313. ct: [0xcef41d16,0xd266bdfe,0x46938ad7,0x884cc0cf] },
  2314. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2315. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  2316. ct: [0xb13db4da,0x1f718bc6,0x904797c8,0x2bcf2d32] },
  2317. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2318. pt: [0x80000000,0x00000000,0x00000000,0x00000000],
  2319. ct: [0x6cd02513,0xe8d4dc98,0x6b4afe08,0x7a60bd0c] },
  2320. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2321. pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
  2322. ct: [0x2ce1f8b7,0xe30627c1,0xc4519ead,0xa44bc436] },
  2323. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2324. pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
  2325. ct: [0x9946b5f8,0x7af446f5,0x796c1fee,0x63a2da24] },
  2326. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2327. pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
  2328. ct: [0x2a560364,0xce529efc,0x21788779,0x568d5555] },
  2329. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2330. pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
  2331. ct: [0x35c14718,0x37af4461,0x53bce55d,0x5ba72a0a] },
  2332. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2333. pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
  2334. ct: [0xce60bc52,0x386234f1,0x58f84341,0xe534cd9e] },
  2335. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2336. pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
  2337. ct: [0x8c7c27ff,0x32bcf8dc,0x2dc57c90,0xc2903961] },
  2338. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2339. pt: [0xff000000,0x00000000,0x00000000,0x00000000],
  2340. ct: [0x32bb6a7e,0xc84499e1,0x66f93600,0x3d55a5bb] },
  2341. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2342. pt: [0xff800000,0x00000000,0x00000000,0x00000000],
  2343. ct: [0xa5c772e5,0xc62631ef,0x660ee1d5,0x877f6d1b] },
  2344. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2345. pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
  2346. ct: [0x030d7e5b,0x64f380a7,0xe4ea5387,0xb5cd7f49] },
  2347. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2348. pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
  2349. ct: [0x0dc9a261,0x0037009b,0x698f11bb,0x7e86c83e] },
  2350. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2351. pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
  2352. ct: [0x0046612c,0x766d1840,0xc226364f,0x1fa7ed72] },
  2353. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2354. pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
  2355. ct: [0x4880c7e0,0x8f27befe,0x78590743,0xc05e698b] },
  2356. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2357. pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  2358. ct: [0x2520ce82,0x9a26577f,0x0f4822c4,0xecc87401] },
  2359. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2360. pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  2361. ct: [0x8765e8ac,0xc1697583,0x19cb46dc,0x7bcf3dca] },
  2362. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2363. pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
  2364. ct: [0xe98f4ba4,0xf073df4b,0xaa116d01,0x1dc24a28] },
  2365. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2366. pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
  2367. ct: [0xf378f68c,0x5dbf59e2,0x11b3a659,0xa7317d94] },
  2368. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2369. pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
  2370. ct: [0x283d3b06,0x9d8eb9fb,0x432d74b9,0x6ca762b4] },
  2371. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2372. pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
  2373. ct: [0xa7e1842e,0x8a87861c,0x221a5008,0x83245c51] },
  2374. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2375. pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
  2376. ct: [0x77aa2704,0x71881be0,0x70fb52c7,0x067ce732] },
  2377. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2378. pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
  2379. ct: [0x01b0f476,0xd484f43f,0x1aeb6efa,0x9361a8ac] },
  2380. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2381. pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  2382. ct: [0x1c3a94f1,0xc052c55c,0x2d8359af,0xf2163b4f] },
  2383. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2384. pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  2385. ct: [0xe8a067b6,0x04d5373d,0x8b0f2e05,0xa03b341b] },
  2386. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2387. pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
  2388. ct: [0xa7876ec8,0x7f5a09bf,0xea42c77d,0xa30fd50e] },
  2389. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2390. pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
  2391. ct: [0x0cf3e9d3,0xa42be5b8,0x54ca65b1,0x3f35f48d] },
  2392. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2393. pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  2394. ct: [0x6c62f6bb,0xcab7c3e8,0x21c9290f,0x08892dda] },
  2395. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2396. pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  2397. ct: [0x7f5e05bd,0x20687381,0x96fee79a,0xce7e3aec] },
  2398. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2399. pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  2400. ct: [0x440e0d73,0x3255cda9,0x2fb46e84,0x2fe58054] },
  2401. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2402. pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  2403. ct: [0xaa5d5b1c,0x4ea1b7a2,0x2e5583ac,0x2e9ed8a7] },
  2404. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2405. pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  2406. ct: [0x77e537e8,0x9e8491e8,0x662aae3b,0xc809421d] },
  2407. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2408. pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  2409. ct: [0x997dd3e9,0xf1598bfa,0x73f75973,0xf7e93b76] },
  2410. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2411. pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
  2412. ct: [0x1b38d4f7,0x452afefc,0xb7fc7212,0x44e4b72e] },
  2413. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2414. pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
  2415. ct: [0x0be2b182,0x52e774dd,0xa30cdda0,0x2c6906e3] },
  2416. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2417. pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  2418. ct: [0xd2695e59,0xc20361d8,0x2652d7d5,0x8b6f11b2] },
  2419. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2420. pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  2421. ct: [0x902d88d1,0x3eae5208,0x9abd6143,0xcfe394e9] },
  2422. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2423. pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  2424. ct: [0xd49bceb3,0xb823fedd,0x602c3053,0x45734bd2] },
  2425. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2426. pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  2427. ct: [0x707b1dbb,0x0ffa40ef,0x7d95def4,0x21233fae] },
  2428. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2429. pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  2430. ct: [0x7ca0c1d9,0x3356d9eb,0x8aa95208,0x4d75f913] },
  2431. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2432. pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  2433. ct: [0xf2cbf9cb,0x186e270d,0xd7bdb0c2,0x8febc57d] },
  2434. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2435. pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
  2436. ct: [0xc94337c3,0x7c4e790a,0xb45780bd,0x9c3674a0] },
  2437. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2438. pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
  2439. ct: [0x8e3558c1,0x35252fb9,0xc9f367ed,0x609467a1] },
  2440. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2441. pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  2442. ct: [0x1b72eeae,0xe4899b44,0x3914e5b3,0xa57fba92] },
  2443. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2444. pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  2445. ct: [0x011865f9,0x1bc56868,0xd051e52c,0x9efd59b7] },
  2446. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2447. pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  2448. ct: [0xe4771318,0xad7a63dd,0x680f6e58,0x3b7747ea] },
  2449. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2450. pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  2451. ct: [0x61e3d194,0x088dc8d9,0x7e9e6db3,0x7457eac5] },
  2452. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2453. pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  2454. ct: [0x36ff1ec9,0xccfbc349,0xe5d356d0,0x63693ad6] },
  2455. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2456. pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  2457. ct: [0x3cc9e9a9,0xbe8cc3f6,0xfb2ea240,0x88e9bb19] },
  2458. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2459. pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  2460. ct: [0x1ee5ab00,0x3dc8722e,0x74905d9a,0x8fe3d350] },
  2461. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2462. pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  2463. ct: [0x24533931,0x9584b0a4,0x12412869,0xd6c2eada] },
  2464. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2465. pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  2466. ct: [0x7bd49691,0x8115d14e,0xd5380852,0x716c8814] },
  2467. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2468. pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  2469. ct: [0x273ab2f2,0xb4a366a5,0x7d582a33,0x9313c8b1] },
  2470. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2471. pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  2472. ct: [0x113365a9,0xffbe3b0c,0xa61e9850,0x7554168b] },
  2473. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2474. pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  2475. ct: [0xafa99c99,0x7ac478a0,0xdea4119c,0x9e45f8b1] },
  2476. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2477. pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  2478. ct: [0x9216309a,0x7842430b,0x83ffb986,0x38011512] },
  2479. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2480. pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  2481. ct: [0x62abc792,0x28825849,0x2a7cb451,0x45f4b759] },
  2482. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2483. pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  2484. ct: [0x534923c1,0x69d504d7,0x519c15d3,0x0e756c50] },
  2485. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2486. pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  2487. ct: [0xfa75e05b,0xcdc7e00c,0x273fa33f,0x6ee441d2] },
  2488. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2489. pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  2490. ct: [0x7d350fa6,0x057080f1,0x086a56b1,0x7ec240db] },
  2491. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2492. pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  2493. ct: [0xf34e4a63,0x24ea4a5c,0x39a661c8,0xfe5ada8f] },
  2494. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2495. pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  2496. ct: [0x0882a16f,0x44088d42,0x447a29ac,0x090ec17e] },
  2497. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2498. pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  2499. ct: [0x3a3c15bf,0xc11a9537,0xc1306870,0x04e136ee] },
  2500. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2501. pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  2502. ct: [0x22c0a767,0x8dc6d8cf,0x5c8a6d5a,0x9960767c] },
  2503. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2504. pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  2505. ct: [0xb46b0980,0x9d68b9a4,0x56432a79,0xbdc2e38c] },
  2506. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2507. pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  2508. ct: [0x93baaffb,0x35fbe739,0xc17c6ac2,0x2eecf18f] },
  2509. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2510. pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  2511. ct: [0xc8aa80a7,0x850675bc,0x007c46df,0x06b49868] },
  2512. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2513. pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  2514. ct: [0x12c6f387,0x7af421a9,0x18a84b77,0x5858021d] },
  2515. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2516. pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  2517. ct: [0x33f12328,0x2c5d6339,0x24f7d5ba,0x3f3cab11] },
  2518. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2519. pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  2520. ct: [0xa8f16100,0x2733e93c,0xa4527d22,0xc1a0c5bb] },
  2521. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2522. pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  2523. ct: [0xb72f70eb,0xf3e3fda2,0x3f508eec,0x76b42c02] },
  2524. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2525. pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  2526. ct: [0x6a9d965e,0x6274143f,0x25afdcfc,0x88ffd77c] },
  2527. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2528. pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  2529. ct: [0xa0c74fd0,0xb9361764,0xce91c520,0x0b095357] },
  2530. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2531. pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  2532. ct: [0x091d1fdc,0x2bd2c346,0xcd5046a8,0xc6209146] },
  2533. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2534. pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  2535. ct: [0xe2a37580,0x116cfb71,0x85625449,0x6ab0aca8] },
  2536. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2537. pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  2538. ct: [0xe0b3a007,0x85917c7e,0xfc9adba3,0x22813571] },
  2539. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2540. pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  2541. ct: [0x733d41f4,0x727b5ef0,0xdf4af4cf,0x3cffa0cb] },
  2542. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2543. pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  2544. ct: [0xa99ebb03,0x0260826f,0x981ad3e6,0x4490aa4f] },
  2545. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2546. pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  2547. ct: [0x73f34c7d,0x3eae5e80,0x082c1647,0x524308ee] },
  2548. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2549. pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  2550. ct: [0x40ebd5ad,0x082345b7,0xa2097ccd,0x3464da02] },
  2551. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2552. pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  2553. ct: [0x7cc4ae9a,0x424b2cec,0x90c97153,0xc2457ec5] },
  2554. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2555. pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  2556. ct: [0x54d632d0,0x3aba0bd0,0xf91877eb,0xdd4d09cb] },
  2557. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2558. pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  2559. ct: [0xd3427be7,0xe4d27cd5,0x4f5fe37b,0x03cf0897] },
  2560. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2561. pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  2562. ct: [0xb2099795,0xe88cc158,0xfd75ea13,0x3d7e7fbe] },
  2563. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2564. pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  2565. ct: [0xa6cae46f,0xb6fadfe7,0xa2c302a3,0x4242817b] },
  2566. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2567. pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  2568. ct: [0x026a7024,0xd6a902e0,0xb3ffccba,0xa910cc3f] },
  2569. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2570. pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  2571. ct: [0x156f0776,0x7a85a431,0x2321f639,0x68338a01] },
  2572. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2573. pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  2574. ct: [0x15eec9eb,0xf42b9ca7,0x6897d2cd,0x6c5a12e2] },
  2575. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2576. pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  2577. ct: [0xdb0d3a6f,0xdcc13f91,0x5e2b302c,0xeeb70fd8] },
  2578. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2579. pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  2580. ct: [0x71dbf37e,0x87a2e34d,0x15b20e8f,0x10e48924] },
  2581. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2582. pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  2583. ct: [0xc745c451,0xe96ff3c0,0x45e4367c,0x833e3b54] },
  2584. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2585. pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  2586. ct: [0x340da09c,0x2dd11c3b,0x679d08cc,0xd27dd595] },
  2587. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2588. pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  2589. ct: [0x8279f7c0,0xc2a03ee6,0x60c6d392,0xdb025d18] },
  2590. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2591. pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  2592. ct: [0xa4b2c7d8,0xeba531ff,0x47c5041a,0x55fbd1ec] },
  2593. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2594. pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  2595. ct: [0x74569a2c,0xa5a7bd51,0x31ce8dc7,0xcbfbf72f] },
  2596. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2597. pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  2598. ct: [0x3713da0c,0x0219b634,0x54035613,0xb5a403dd] },
  2599. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2600. pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  2601. ct: [0x8827551d,0xdcc9df23,0xfa72a3de,0x4e9f0b07] },
  2602. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2603. pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  2604. ct: [0x2e3febfd,0x625bfcd0,0xa2c06eb4,0x60da1732] },
  2605. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2606. pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  2607. ct: [0xee82e6ba,0x488156f7,0x6496311d,0xa6941deb] },
  2608. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2609. pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  2610. ct: [0x4770446f,0x01d1f391,0x256e85a1,0xb30d89d3] },
  2611. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2612. pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  2613. ct: [0xaf04b68f,0x104f21ef,0x2afb4767,0xcf74143c] },
  2614. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2615. pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  2616. ct: [0xcf3579a9,0xba38c8e4,0x3653173e,0x14f3a4c6] },
  2617. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2618. pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  2619. ct: [0xb3bba904,0xf4953e09,0xb54800af,0x2f62e7d4] },
  2620. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2621. pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  2622. ct: [0xfc424965,0x6e14b29e,0xb9c44829,0xb4c59a46] },
  2623. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2624. pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  2625. ct: [0x9b31568f,0xebe81cfc,0x2e65af1c,0x86d1a308] },
  2626. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2627. pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  2628. ct: [0x9ca09c25,0xf273a766,0xdb98a480,0xce8dfedc] },
  2629. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2630. pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  2631. ct: [0xb9099257,0x86f34c3c,0x92d97188,0x3c9fbedf] },
  2632. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2633. pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  2634. ct: [0x82647f13,0x32fe570a,0x9d4d92b2,0xee771d3b] },
  2635. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2636. pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  2637. ct: [0x3604a7e8,0x0832b3a9,0x9954bca6,0xf5b9f501] },
  2638. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2639. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  2640. ct: [0x884607b1,0x28c5de3a,0xb39a529a,0x1ef51bef] },
  2641. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2642. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  2643. ct: [0x670cfa09,0x3d1dbdb2,0x31704140,0x4102435e] },
  2644. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2645. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  2646. ct: [0x7a867195,0xf3ce8769,0xcbd33650,0x2fbb5130] },
  2647. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2648. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  2649. ct: [0x52efcf64,0xc72b2f7c,0xa5b3c836,0xb1078c15] },
  2650. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2651. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  2652. ct: [0x4019250f,0x6eefb2ac,0x5ccbcae0,0x44e75c7e] },
  2653. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2654. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  2655. ct: [0x022c4f6f,0x5a017d29,0x27856276,0x67ddef24] },
  2656. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2657. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  2658. ct: [0xe9c21078,0xa2eb7e03,0x250f7100,0x0fa9e3ed] },
  2659. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2660. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  2661. ct: [0xa13eaeeb,0x9cd391da,0x4e2b0949,0x0b3e7fad] },
  2662. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2663. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  2664. ct: [0xc958a171,0xdca1d4ed,0x53e1af1d,0x380803a9] },
  2665. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2666. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  2667. ct: [0x21442e07,0xa110667f,0x2583eaee,0xee44dc8c] },
  2668. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2669. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  2670. ct: [0x59bbb353,0xcf1dd867,0xa6e33737,0xaf655e99] },
  2671. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2672. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  2673. ct: [0x43cd3b25,0x375d0ce4,0x1087ff9f,0xe2829639] },
  2674. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2675. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  2676. ct: [0x6b98b17e,0x80d1118e,0x3516bd76,0x8b285a84] },
  2677. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2678. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  2679. ct: [0xae47ed36,0x76ca0c08,0xdeea02d9,0x5b81db58] },
  2680. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2681. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  2682. ct: [0x34ec40dc,0x20413795,0xed53628e,0xa748720b] },
  2683. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2684. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  2685. ct: [0x4dc68163,0xf8e98354,0x73253542,0xc8a65d46] },
  2686. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2687. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  2688. ct: [0x2aabb999,0xf4369317,0x5af65c6c,0x612c46fb] },
  2689. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2690. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  2691. ct: [0xe01f9449,0x9dac3547,0x515c5b1d,0x756f0f58] },
  2692. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2693. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  2694. ct: [0x9d12435a,0x46480ce0,0x0ea349f7,0x1799df9a] },
  2695. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2696. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  2697. ct: [0xcef41d16,0xd266bdfe,0x46938ad7,0x884cc0cf] },
  2698. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2699. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  2700. ct: [0xb13db4da,0x1f718bc6,0x904797c8,0x2bcf2d32] },
  2701. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2702. pt: [0x26aa49dc,0xfe7629a8,0x901a69a9,0x914e6dfd],
  2703. ct: [0xd5e08bf9,0xa182e857,0xcf40b3a3,0x6ee248cc] },
  2704. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2705. pt: [0x941a4773,0x058224e1,0xef66d10e,0x0a6ee782],
  2706. ct: [0x067cd9d3,0x74920779,0x18415625,0x07fa9626] },
  2707. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2708. pt: [0x1b077a6a,0xf4b7f982,0x29de786d,0x7516b639],
  2709. ct: [0x275cfc04,0x13d8ccb7,0x0513c385,0x9b1d0f72] },
  2710. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2711. pt: [0x9c2d8842,0xe5f48f57,0x648205d3,0x9a239af1],
  2712. ct: [0xc9b8135f,0xf1b5adc4,0x13dfd053,0xb21bd96d] },
  2713. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2714. pt: [0xbff52510,0x095f518e,0xcca60af4,0x205444bb],
  2715. ct: [0x4a3650c3,0x371ce2eb,0x35e389a1,0x71427440] },
  2716. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2717. pt: [0x51719783,0xd3185a53,0x5bd75adc,0x65071ce1],
  2718. ct: [0x4f354592,0xff7c8847,0xd2d0870c,0xa9481b7c] },
  2719. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2720. pt: [0x26aa49dc,0xfe7629a8,0x901a69a9,0x914e6dfd],
  2721. ct: [0xd5e08bf9,0xa182e857,0xcf40b3a3,0x6ee248cc] },
  2722. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2723. pt: [0x941a4773,0x058224e1,0xef66d10e,0x0a6ee782],
  2724. ct: [0x067cd9d3,0x74920779,0x18415625,0x07fa9626] },
  2725. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2726. pt: [0x1b077a6a,0xf4b7f982,0x29de786d,0x7516b639],
  2727. ct: [0x275cfc04,0x13d8ccb7,0x0513c385,0x9b1d0f72] },
  2728. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2729. pt: [0x9c2d8842,0xe5f48f57,0x648205d3,0x9a239af1],
  2730. ct: [0xc9b8135f,0xf1b5adc4,0x13dfd053,0xb21bd96d] },
  2731. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2732. pt: [0xbff52510,0x095f518e,0xcca60af4,0x205444bb],
  2733. ct: [0x4a3650c3,0x371ce2eb,0x35e389a1,0x71427440] },
  2734. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2735. pt: [0x51719783,0xd3185a53,0x5bd75adc,0x65071ce1],
  2736. ct: [0x4f354592,0xff7c8847,0xd2d0870c,0xa9481b7c] },
  2737. { key: [0xe9f065d7,0xc1357358,0x7f787535,0x7dfbb16c,0x53489f6a,0x4bd0f7cd],
  2738. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2739. ct: [0x0956259c,0x9cd5cfd0,0x181cca53,0x380cde06] },
  2740. { key: [0x15d20f6e,0xbc7e649f,0xd95b76b1,0x07e6daba,0x967c8a94,0x84797f29],
  2741. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2742. ct: [0x8e4e1842,0x4e591a3d,0x5b6f0876,0xf16f8594] },
  2743. { key: [0xa8a282ee,0x31c03fae,0x4f8e9b89,0x30d5473c,0x2ed695a3,0x47e88b7c],
  2744. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2745. ct: [0x93f3270c,0xfc877ef1,0x7e106ce9,0x38979cb0] },
  2746. { key: [0xcd62376d,0x5ebb4149,0x17f0c78f,0x05266433,0xdc9192a1,0xec943300],
  2747. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2748. ct: [0x7f6c25ff,0x41858561,0xbb62f364,0x92e93c29] },
  2749. { key: [0x502a6ab3,0x6984af26,0x8bf423c7,0xf5092052,0x07fc1552,0xaf4a91e5],
  2750. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2751. ct: [0x8e06556d,0xcbb00b80,0x9a025047,0xcff2a940] },
  2752. { key: [0x25a39dbf,0xd8034f71,0xa81f9ceb,0x55026e40,0x37f8f6aa,0x30ab44ce],
  2753. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2754. ct: [0x3608c344,0x868e9455,0x5d23a120,0xf8a5502d] },
  2755. { key: [0xe08c1541,0x1774ec4a,0x908b64ea,0xdc6ac419,0x9c7cd453,0xf3aaef53],
  2756. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2757. ct: [0x77da2021,0x935b840b,0x7f5dcc39,0x132da9e5] },
  2758. { key: [0x3b375a1f,0xf7e8d444,0x09696e63,0x26ec9dec,0x86138e2a,0xe010b980],
  2759. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2760. ct: [0x3b7c24f8,0x25e3bf98,0x73c9f14d,0x39a0e6f4] },
  2761. { key: [0x950bb9f2,0x2cc35be6,0xfe79f52c,0x320af93d,0xec5bc9c0,0xc2f9cd53],
  2762. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2763. ct: [0x64ebf956,0x86b35350,0x8c90ecd8,0xb6134316] },
  2764. { key: [0x7001c487,0xcc3e572c,0xfc92f4d0,0xe697d982,0xe8856fdc,0xc957da40],
  2765. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2766. ct: [0xff558c5d,0x27210b79,0x29b73fc7,0x08eb4cf1] },
  2767. { key: [0xf029ce61,0xd4e5a405,0xb41ead0a,0x883cc6a7,0x37da2cf5,0x0a6c92ae],
  2768. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2769. ct: [0xa2c3b2a8,0x18075490,0xa7b4c143,0x80f02702] },
  2770. { key: [0x61257134,0xa518a0d5,0x7d9d244d,0x45f6498c,0xbc32f2ba,0xfc522d79],
  2771. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2772. ct: [0xcfe4d740,0x02696ccf,0x7d87b14a,0x2f9cafc9] },
  2773. { key: [0xb0ab0a6a,0x818baef2,0xd11fa33e,0xac947284,0xfb7d748c,0xfb75e570],
  2774. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2775. ct: [0xd2eafd86,0xf63b109b,0x91f5dbb3,0xa3fb7e13] },
  2776. { key: [0xee053aa0,0x11c8b428,0xcdcc3636,0x313c54d6,0xa03cac01,0xc71579d6],
  2777. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2778. ct: [0x9b9fdd1c,0x5975655f,0x539998b3,0x06a324af] },
  2779. { key: [0xd2926527,0xe0aa9f37,0xb45e2ec2,0xade5853e,0xf8075761,0x04c7ace3],
  2780. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2781. ct: [0xdd619e1c,0xf2044461,0x12e0af2b,0x9afa8f8c] },
  2782. { key: [0x982215f4,0xe173dfa0,0xfcffe5d3,0xda41c481,0x2c7bcc8e,0xd3540f93],
  2783. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2784. ct: [0xd4f0aae1,0x3c8fe933,0x9fbf9e69,0xed0ad74d] },
  2785. { key: [0x98c6b8e0,0x1e379fbd,0x14e61af6,0xaf891596,0x583565f2,0xa27d59e9],
  2786. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2787. ct: [0x19c80ec4,0xa6deb7e5,0xed1033dd,0xa933498f] },
  2788. { key: [0xb3ad5cea,0x1dddc214,0xca969ac3,0x5f37dae1,0xa9a9d152,0x8f89bb35],
  2789. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2790. ct: [0x3cf5e1d2,0x1a17956d,0x1dffad6a,0x7c41c659] },
  2791. { key: [0x45899367,0xc3132849,0x763073c4,0x35a9288a,0x766c8b9e,0xc2308516],
  2792. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2793. ct: [0x69fd12e8,0x505f8ded,0x2fdcb197,0xa121b362] },
  2794. { key: [0xec250e04,0xc3903f60,0x2647b85a,0x401a1ae7,0xca2f02f6,0x7fa4253e],
  2795. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2796. ct: [0x8aa584e2,0xcc4d1741,0x7a97cb9a,0x28ba29c8] },
  2797. { key: [0xd077a03b,0xd8a38973,0x928ccafe,0x4a9d2f45,0x5130bd0a,0xf5ae46a9],
  2798. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2799. ct: [0xabc786fb,0x1edb5045,0x80c4d882,0xef29a0c7] },
  2800. { key: [0xd184c36c,0xf0dddfec,0x39e65419,0x50060222,0x37871a47,0xc33d3198],
  2801. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2802. ct: [0x2e19fb60,0xa3e1de01,0x66f483c9,0x7824a978] },
  2803. { key: [0x4c6994ff,0xa9dcdc80,0x5b60c2c0,0x095334c4,0x2d95a8fc,0x0ca5b080],
  2804. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2805. ct: [0x76567095,0x38dd5fec,0x41e0ce6a,0x0f8e207d] },
  2806. { key: [0xc88f5b00,0xa4ef9a68,0x40e2acaf,0x33f00a3b,0xdc4e2589,0x5303fa72],
  2807. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2808. ct: [0xa67cf333,0xb314d411,0xd3c0ae6e,0x1cfcd8f5] },
  2809. { key: [0xe9f065d7,0xc1357358,0x7f787535,0x7dfbb16c,0x53489f6a,0x4bd0f7cd],
  2810. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2811. ct: [0x0956259c,0x9cd5cfd0,0x181cca53,0x380cde06] },
  2812. { key: [0x15d20f6e,0xbc7e649f,0xd95b76b1,0x07e6daba,0x967c8a94,0x84797f29],
  2813. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2814. ct: [0x8e4e1842,0x4e591a3d,0x5b6f0876,0xf16f8594] },
  2815. { key: [0xa8a282ee,0x31c03fae,0x4f8e9b89,0x30d5473c,0x2ed695a3,0x47e88b7c],
  2816. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2817. ct: [0x93f3270c,0xfc877ef1,0x7e106ce9,0x38979cb0] },
  2818. { key: [0xcd62376d,0x5ebb4149,0x17f0c78f,0x05266433,0xdc9192a1,0xec943300],
  2819. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2820. ct: [0x7f6c25ff,0x41858561,0xbb62f364,0x92e93c29] },
  2821. { key: [0x502a6ab3,0x6984af26,0x8bf423c7,0xf5092052,0x07fc1552,0xaf4a91e5],
  2822. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2823. ct: [0x8e06556d,0xcbb00b80,0x9a025047,0xcff2a940] },
  2824. { key: [0x25a39dbf,0xd8034f71,0xa81f9ceb,0x55026e40,0x37f8f6aa,0x30ab44ce],
  2825. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2826. ct: [0x3608c344,0x868e9455,0x5d23a120,0xf8a5502d] },
  2827. { key: [0xe08c1541,0x1774ec4a,0x908b64ea,0xdc6ac419,0x9c7cd453,0xf3aaef53],
  2828. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2829. ct: [0x77da2021,0x935b840b,0x7f5dcc39,0x132da9e5] },
  2830. { key: [0x3b375a1f,0xf7e8d444,0x09696e63,0x26ec9dec,0x86138e2a,0xe010b980],
  2831. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2832. ct: [0x3b7c24f8,0x25e3bf98,0x73c9f14d,0x39a0e6f4] },
  2833. { key: [0x950bb9f2,0x2cc35be6,0xfe79f52c,0x320af93d,0xec5bc9c0,0xc2f9cd53],
  2834. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2835. ct: [0x64ebf956,0x86b35350,0x8c90ecd8,0xb6134316] },
  2836. { key: [0x7001c487,0xcc3e572c,0xfc92f4d0,0xe697d982,0xe8856fdc,0xc957da40],
  2837. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2838. ct: [0xff558c5d,0x27210b79,0x29b73fc7,0x08eb4cf1] },
  2839. { key: [0xf029ce61,0xd4e5a405,0xb41ead0a,0x883cc6a7,0x37da2cf5,0x0a6c92ae],
  2840. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2841. ct: [0xa2c3b2a8,0x18075490,0xa7b4c143,0x80f02702] },
  2842. { key: [0x61257134,0xa518a0d5,0x7d9d244d,0x45f6498c,0xbc32f2ba,0xfc522d79],
  2843. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2844. ct: [0xcfe4d740,0x02696ccf,0x7d87b14a,0x2f9cafc9] },
  2845. { key: [0xb0ab0a6a,0x818baef2,0xd11fa33e,0xac947284,0xfb7d748c,0xfb75e570],
  2846. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2847. ct: [0xd2eafd86,0xf63b109b,0x91f5dbb3,0xa3fb7e13] },
  2848. { key: [0xee053aa0,0x11c8b428,0xcdcc3636,0x313c54d6,0xa03cac01,0xc71579d6],
  2849. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2850. ct: [0x9b9fdd1c,0x5975655f,0x539998b3,0x06a324af] },
  2851. { key: [0xd2926527,0xe0aa9f37,0xb45e2ec2,0xade5853e,0xf8075761,0x04c7ace3],
  2852. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2853. ct: [0xdd619e1c,0xf2044461,0x12e0af2b,0x9afa8f8c] },
  2854. { key: [0x982215f4,0xe173dfa0,0xfcffe5d3,0xda41c481,0x2c7bcc8e,0xd3540f93],
  2855. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2856. ct: [0xd4f0aae1,0x3c8fe933,0x9fbf9e69,0xed0ad74d] },
  2857. { key: [0x98c6b8e0,0x1e379fbd,0x14e61af6,0xaf891596,0x583565f2,0xa27d59e9],
  2858. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2859. ct: [0x19c80ec4,0xa6deb7e5,0xed1033dd,0xa933498f] },
  2860. { key: [0xb3ad5cea,0x1dddc214,0xca969ac3,0x5f37dae1,0xa9a9d152,0x8f89bb35],
  2861. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2862. ct: [0x3cf5e1d2,0x1a17956d,0x1dffad6a,0x7c41c659] },
  2863. { key: [0x45899367,0xc3132849,0x763073c4,0x35a9288a,0x766c8b9e,0xc2308516],
  2864. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2865. ct: [0x69fd12e8,0x505f8ded,0x2fdcb197,0xa121b362] },
  2866. { key: [0xec250e04,0xc3903f60,0x2647b85a,0x401a1ae7,0xca2f02f6,0x7fa4253e],
  2867. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2868. ct: [0x8aa584e2,0xcc4d1741,0x7a97cb9a,0x28ba29c8] },
  2869. { key: [0xd077a03b,0xd8a38973,0x928ccafe,0x4a9d2f45,0x5130bd0a,0xf5ae46a9],
  2870. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2871. ct: [0xabc786fb,0x1edb5045,0x80c4d882,0xef29a0c7] },
  2872. { key: [0xd184c36c,0xf0dddfec,0x39e65419,0x50060222,0x37871a47,0xc33d3198],
  2873. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2874. ct: [0x2e19fb60,0xa3e1de01,0x66f483c9,0x7824a978] },
  2875. { key: [0x4c6994ff,0xa9dcdc80,0x5b60c2c0,0x095334c4,0x2d95a8fc,0x0ca5b080],
  2876. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2877. ct: [0x76567095,0x38dd5fec,0x41e0ce6a,0x0f8e207d] },
  2878. { key: [0xc88f5b00,0xa4ef9a68,0x40e2acaf,0x33f00a3b,0xdc4e2589,0x5303fa72],
  2879. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2880. ct: [0xa67cf333,0xb314d411,0xd3c0ae6e,0x1cfcd8f5] },
  2881. { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2882. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2883. ct: [0xde885dc8,0x7f5a9259,0x4082d02c,0xc1e1b42c] },
  2884. { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2885. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2886. ct: [0x132b074e,0x80f2a597,0xbf5febd8,0xea5da55e] },
  2887. { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2888. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2889. ct: [0x6eccedf8,0xde592c22,0xfb81347b,0x79f2db1f] },
  2890. { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2891. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2892. ct: [0x180b09f2,0x67c45145,0xdb2f826c,0x2582d35c] },
  2893. { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2894. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2895. ct: [0xedd807ef,0x7652d7eb,0x0e13c8b5,0xe15b3bc0] },
  2896. { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2897. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2898. ct: [0x9978bcf8,0xdd8fd722,0x41223ad2,0x4b31b8a4] },
  2899. { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2900. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2901. ct: [0x5310f654,0x343e8f27,0xe12c83a4,0x8d24ff81] },
  2902. { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2903. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2904. ct: [0x833f7125,0x8d53036b,0x02952c76,0xc744f5a1] },
  2905. { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2906. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2907. ct: [0xeba83ff2,0x00cff931,0x8a92f869,0x1a06b09f] },
  2908. { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2909. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2910. ct: [0xff620ccb,0xe9f3292a,0xbdf2176b,0x09f04eba] },
  2911. { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2912. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2913. ct: [0x7ababc4b,0x3f516c9a,0xafb35f41,0x40b548f9] },
  2914. { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2915. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2916. ct: [0xaa187824,0xd9c4582b,0x0916493e,0xcbde8c57] },
  2917. { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2918. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2919. ct: [0x1c0ad553,0x177fd5ea,0x1092c9d6,0x26a29dc4] },
  2920. { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2921. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2922. ct: [0xa5dc46c3,0x72611941,0x24ecaebd,0x680408ec] },
  2923. { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2924. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2925. ct: [0xe4f2f2ae,0x23e9b10b,0xacfa5860,0x1531ba54] },
  2926. { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2927. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2928. ct: [0xb7d67cf1,0xa1e91e8f,0xf3a57a17,0x2c7bf412] },
  2929. { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2930. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2931. ct: [0x26706be0,0x6967884e,0x847d1371,0x28ce47b3] },
  2932. { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2933. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2934. ct: [0xb2f8b409,0xb0585909,0xaad3a7b5,0xa219072a] },
  2935. { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2936. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2937. ct: [0x5e4b7bff,0x0290c783,0x44c54a23,0xb722cd20] },
  2938. { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2939. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2940. ct: [0x07093657,0x552d4414,0x227ce161,0xe9ebf7dd] },
  2941. { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2942. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2943. ct: [0xe1af1e7d,0x8bc225ed,0x4dffb771,0xecbb9e67] },
  2944. { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2945. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2946. ct: [0xef655525,0x3635d843,0x2156cfd9,0xc11b145a] },
  2947. { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2948. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2949. ct: [0xfb403507,0x4a5d4260,0xc90cbd6d,0xa6c3fceb] },
  2950. { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2951. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2952. ct: [0x446ee416,0xf9ad1c10,0x3eb0cc96,0x751c88e1] },
  2953. { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2954. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2955. ct: [0x198ae2a4,0x637ac0a7,0x890a8fd1,0x485445c9] },
  2956. { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2957. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2958. ct: [0x562012ec,0x8faded08,0x25fb2fa7,0x0ab30cbd] },
  2959. { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2960. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2961. ct: [0xcc8a64b4,0x6b5d88bf,0x7f247d4d,0xbaf38f05] },
  2962. { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2963. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2964. ct: [0xa1682537,0x62e2cc81,0xb42d1e50,0x01762699] },
  2965. { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2966. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2967. ct: [0x1b41f83b,0x38ce5032,0xc6cd7af9,0x8cf62061] },
  2968. { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2969. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2970. ct: [0x61a89990,0xcd141175,0x0d5fb0dc,0x988447d4] },
  2971. { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2972. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2973. ct: [0xb5accc8e,0xd629edf8,0xc68a5391,0x83b1ea82] },
  2974. { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2975. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2976. ct: [0xb16fa71f,0x846b81a1,0x3f361c43,0xa851f290] },
  2977. { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2978. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2979. ct: [0x4fad6efd,0xff5975ae,0xe7692234,0xbcd54488] },
  2980. { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2981. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2982. ct: [0xebfdb05a,0x783d0308,0x2dfe5fdd,0x80a00b17] },
  2983. { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2984. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2985. ct: [0xeb81b584,0x766997af,0x6ba5529d,0x3bdd8609] },
  2986. { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2987. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2988. ct: [0x0cf4ff4f,0x49c8a0ca,0x060c4434,0x99e29313] },
  2989. { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2990. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2991. ct: [0xcc4ba8a8,0xe029f8b2,0x6d8afff9,0xdf133bb6] },
  2992. { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2993. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2994. ct: [0xfefebf64,0x360f38e4,0xe63558f0,0xffc550c3] },
  2995. { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2996. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  2997. ct: [0x12ad98cb,0xf725137d,0x6a8108c2,0xbed99322] },
  2998. { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
  2999. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3000. ct: [0x6afaa996,0x226198b3,0xe2610413,0xce1b3f78] },
  3001. { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
  3002. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3003. ct: [0x2a8ce674,0x7a7e3936,0x7828e290,0x848502d9] },
  3004. { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
  3005. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3006. ct: [0x223736e8,0xb8f89ca1,0xe37b6dea,0xb40facf1] },
  3007. { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
  3008. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3009. ct: [0xc0f797e5,0x0418b95f,0xa6013333,0x917a9480] },
  3010. { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
  3011. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3012. ct: [0xa758de37,0xc2ece2a0,0x2c73c01f,0xedc9a132] },
  3013. { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
  3014. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3015. ct: [0x3a9b87ae,0x77bae706,0x803966c6,0x6c73adbd] },
  3016. { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
  3017. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3018. ct: [0xd365ab8d,0xf8ffd782,0xe358121a,0x4a4fc541] },
  3019. { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
  3020. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3021. ct: [0xc8dcd9e6,0xf75e6c36,0xc8daee04,0x66f0ed74] },
  3022. { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
  3023. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3024. ct: [0xc79a637b,0xeb1c0304,0xf14014c0,0x37e736dd] },
  3025. { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
  3026. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3027. ct: [0x105f0a25,0xe84ac930,0xd996281a,0x5f954dd9] },
  3028. { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
  3029. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3030. ct: [0x42e4074b,0x2927973e,0x8d17ffa9,0x2f7fe615] },
  3031. { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
  3032. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3033. ct: [0x4fe2a9d2,0xc1824449,0xc69e3e03,0x98f12963] },
  3034. { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
  3035. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3036. ct: [0xb7f29c1e,0x1f62847a,0x15253b28,0xa1e9d712] },
  3037. { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
  3038. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3039. ct: [0x36ed5d29,0xb903f31e,0x8983ef8b,0x0a2bf990] },
  3040. { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
  3041. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3042. ct: [0x27b80702,0x70810f9d,0x023f9dd7,0xff3b4aa2] },
  3043. { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
  3044. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3045. ct: [0x94d46e15,0x5c1228f6,0x1d1a0db4,0x815ecc4b] },
  3046. { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
  3047. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3048. ct: [0xca6108d1,0xd9807142,0x8eeceef1,0x714b96dd] },
  3049. { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
  3050. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3051. ct: [0xdc5b25b7,0x1b6296cf,0x73dd2cdc,0xac2f70b1] },
  3052. { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
  3053. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3054. ct: [0x44aba95e,0x8a06a2d9,0xd3530d26,0x77878c80] },
  3055. { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
  3056. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3057. ct: [0xa570d20e,0x89b467e8,0xf5176061,0xb81dd396] },
  3058. { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
  3059. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3060. ct: [0x758f4467,0xa5d8f1e7,0x307dc30b,0x34e404f4] },
  3061. { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
  3062. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3063. ct: [0xbcea28e9,0x071b5a23,0x02970ff3,0x52451bc5] },
  3064. { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
  3065. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3066. ct: [0x7523c00b,0xc177d331,0xad312e09,0xc9015c1c] },
  3067. { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
  3068. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3069. ct: [0xccac61e3,0x183747b3,0xf5836da2,0x1a1bc4f4] },
  3070. { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
  3071. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3072. ct: [0x707b0757,0x91878880,0xb44189d3,0x522b8c30] },
  3073. { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
  3074. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3075. ct: [0x7132d0c0,0xe4a07593,0xcf12ebb1,0x2be7688c] },
  3076. { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
  3077. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3078. ct: [0xeffbac16,0x44deb0c7,0x84275fe5,0x6e19ead3] },
  3079. { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
  3080. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3081. ct: [0xa005063f,0x30f4228b,0x374e2459,0x738f26bb] },
  3082. { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
  3083. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3084. ct: [0x29975b5f,0x48bb68fc,0xbbc7cea9,0x3b452ed7] },
  3085. { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
  3086. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3087. ct: [0xcf3f2576,0xe2afedc7,0x4bb1ca7e,0xeec1c0e7] },
  3088. { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
  3089. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3090. ct: [0x07c403f5,0xf966e0e3,0xd9f296d6,0x226dca28] },
  3091. { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
  3092. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3093. ct: [0xc8c20908,0x249ab4a3,0x4d6dd0a3,0x1327ff1a] },
  3094. { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
  3095. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3096. ct: [0xc0541329,0xecb6159a,0xb23b7fc5,0xe6a21bca] },
  3097. { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
  3098. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3099. ct: [0x7aa1acf1,0xa2ed9ba7,0x2bc6deb3,0x1d88b863] },
  3100. { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
  3101. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3102. ct: [0x808bd8ed,0xdabb6f3b,0xf0d5a8a2,0x7be1fe8a] },
  3103. { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
  3104. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3105. ct: [0x273c7d76,0x85e14ec6,0x6bbb96b8,0xf05b6ddd] },
  3106. { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
  3107. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3108. ct: [0x32752eef,0xc8c2a93f,0x91b6e73e,0xb07cca6e] },
  3109. { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
  3110. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3111. ct: [0xd893e7d6,0x2f6ce502,0xc64f75e2,0x81f9c000] },
  3112. { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
  3113. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3114. ct: [0x8dfd999b,0xe5d0cfa3,0x5732c0dd,0xc88ff5a5] },
  3115. { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
  3116. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3117. ct: [0x02647c76,0xa300c317,0x3b841487,0xeb2bae9f] },
  3118. { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
  3119. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3120. ct: [0x172df8b0,0x2f04b53a,0xdab028b4,0xe01acd87] },
  3121. { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
  3122. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3123. ct: [0x054b3bf4,0x998aeb05,0xafd87ec5,0x36533a36] },
  3124. { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
  3125. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3126. ct: [0x3783f7bf,0x44c97f06,0x5258a666,0xcae03020] },
  3127. { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
  3128. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3129. ct: [0xaad4c8a6,0x3f809541,0x04de7b92,0xcede1be1] },
  3130. { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
  3131. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3132. ct: [0xcbfe6181,0x0fd5467c,0xcdacb758,0x00f3ac07] },
  3133. { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
  3134. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3135. ct: [0x830d8a25,0x90f7d8e1,0xb55a737f,0x4af45f34] },
  3136. { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
  3137. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3138. ct: [0xfffcd468,0x3f858058,0xe7431467,0x1d43fa2c] },
  3139. { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
  3140. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3141. ct: [0x523d0bab,0xbb82f46e,0xbc9e70b1,0xcd41ddd0] },
  3142. { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
  3143. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3144. ct: [0x344aab37,0x080d7486,0xf7d542a3,0x09e53eed] },
  3145. { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
  3146. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3147. ct: [0x56c5609d,0x0906b23a,0xb9caca81,0x6f5dbebd] },
  3148. { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
  3149. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3150. ct: [0x7026026e,0xedd91adc,0x6d831cdf,0x9894bdc6] },
  3151. { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
  3152. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3153. ct: [0x88330baa,0x4f2b618f,0xc9d9b021,0xbf503d5a] },
  3154. { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
  3155. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3156. ct: [0xfc9e0ea2,0x2480b0ba,0xc935c8a8,0xebefcdcf] },
  3157. { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
  3158. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3159. ct: [0x29ca779f,0x398fb04f,0x867da7e8,0xa44756cb] },
  3160. { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
  3161. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3162. ct: [0x51f89c42,0x985786bf,0xc43c6df8,0xada36832] },
  3163. { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
  3164. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3165. ct: [0x6ac1de5f,0xb8f21d87,0x4e91c53b,0x560c50e3] },
  3166. { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
  3167. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3168. ct: [0x03aa9058,0x490eda30,0x6001a8a9,0xf48d0ca7] },
  3169. { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
  3170. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3171. ct: [0xe34ec71d,0x6128d487,0x1865d617,0xc30b37e3] },
  3172. { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
  3173. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3174. ct: [0x14be1c53,0x5b17cabd,0x0c4d9352,0x9d69bf47] },
  3175. { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
  3176. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3177. ct: [0xc9ef6775,0x6507beec,0x9dd38628,0x83478044] },
  3178. { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
  3179. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3180. ct: [0x40e231fa,0x5a5948ce,0x2134e92f,0xc0664d4b] },
  3181. { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
  3182. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3183. ct: [0x03194b8e,0x5dda5530,0xd0c678c0,0xb48f5d92] },
  3184. { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
  3185. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3186. ct: [0x90bd086f,0x237cc4fd,0x99f4d76b,0xde6b4826] },
  3187. { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
  3188. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3189. ct: [0x19259761,0xca17130d,0x6ed86d57,0xcd7951ee] },
  3190. { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
  3191. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3192. ct: [0xd7cbb3f3,0x4b9b450f,0x24b0e851,0x8e54da6d] },
  3193. { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
  3194. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3195. ct: [0x725b9cae,0xbe9f7f41,0x7f4068d0,0xd2ee20b3] },
  3196. { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
  3197. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3198. ct: [0x9d924b93,0x4a90ce1f,0xd39b8a97,0x94f82672] },
  3199. { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
  3200. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3201. ct: [0xc50562bf,0x094526a9,0x1c5bc63c,0x0c224995] },
  3202. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
  3203. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3204. ct: [0xd2f11805,0x046743bd,0x74f57188,0xd9188df7] },
  3205. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
  3206. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3207. ct: [0x8dd274bd,0x0f1b58ae,0x345d9e72,0x33f9b8f3] },
  3208. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
  3209. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3210. ct: [0x9d6bdc8f,0x4ce5feb0,0xf3bed2e4,0xb9a9bb0b] },
  3211. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
  3212. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3213. ct: [0xfd5548bc,0xf3f42565,0xf7efa945,0x62528d46] },
  3214. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
  3215. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3216. ct: [0xd2ccaebd,0x3a4c3e80,0xb0637481,0x31ba4a71] },
  3217. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
  3218. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3219. ct: [0xe03cb23d,0x9e11c9d9,0x3f117e9c,0x0a91b576] },
  3220. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
  3221. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3222. ct: [0x78f933a2,0x081ac1db,0x84f69d10,0xf4523fe0] },
  3223. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
  3224. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3225. ct: [0x4061f741,0x2ed320de,0x0edc8851,0xc2e2436f] },
  3226. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
  3227. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3228. ct: [0x9064ba1c,0xd04ce6ba,0xb9847433,0x0814b4d4] },
  3229. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
  3230. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3231. ct: [0x48391bff,0xb9cfff80,0xac238c88,0x6ef0a461] },
  3232. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
  3233. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3234. ct: [0xb8d2a67d,0xf5a999fd,0xbf93edd0,0x343296c9] },
  3235. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
  3236. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3237. ct: [0xaaca7367,0x396b69a2,0x21bd632b,0xea386eec] },
  3238. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
  3239. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3240. ct: [0xa80fd502,0x0dfe65f5,0xf16293ec,0x92c6fd89] },
  3241. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
  3242. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3243. ct: [0x2162995b,0x8217a67f,0x1abc342e,0x146406f8] },
  3244. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
  3245. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3246. ct: [0xc6a6164b,0x7a60bae4,0xe986ffac,0x28dfadd9] },
  3247. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
  3248. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3249. ct: [0x64e0d7f9,0x00e3d9c8,0x3e4b8f96,0x717b2146] },
  3250. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
  3251. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3252. ct: [0x1ad2561d,0xe8c1232f,0x5d8dbab4,0x739b6cbb] },
  3253. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
  3254. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3255. ct: [0x279689e9,0xa557f58b,0x1c3bf40c,0x97a90964] },
  3256. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
  3257. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3258. ct: [0xc4637e4a,0x5e6377f9,0xcc5a8638,0x045de029] },
  3259. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
  3260. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3261. ct: [0x492e607e,0x5aea4688,0x594b45f3,0xaee3df90] },
  3262. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
  3263. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3264. ct: [0xe8c4e438,0x1feec740,0x54954c05,0xb777a00a] },
  3265. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
  3266. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3267. ct: [0x91549514,0x605f3824,0x6c9b724a,0xd839f01d] },
  3268. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
  3269. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3270. ct: [0x74b24e3b,0x6fefe40a,0x4f9ef7ac,0x6e44d76a] },
  3271. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
  3272. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3273. ct: [0x2437a683,0xdc5d4b52,0xabb4a123,0xa8df86c6] },
  3274. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
  3275. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3276. ct: [0xbb2852c8,0x91c5947d,0x2ed44032,0xc421b85f] },
  3277. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
  3278. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3279. ct: [0x1b9f5fbd,0x5e8a4264,0xc0a85b80,0x409afa5e] },
  3280. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
  3281. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3282. ct: [0x30dab809,0xf85a917f,0xe924733f,0x424ac589] },
  3283. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
  3284. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3285. ct: [0xeaef5c1f,0x8d605192,0x646695ce,0xadc65f32] },
  3286. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
  3287. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3288. ct: [0xb8aa9004,0x0b4c15a1,0x2316b78e,0x0f9586fc] },
  3289. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
  3290. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3291. ct: [0x97fac829,0x7ceaabc8,0x7d454350,0x601e0673] },
  3292. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
  3293. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3294. ct: [0x9b47ef56,0x7ac28dfe,0x488492f1,0x57e2b2e0] },
  3295. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
  3296. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3297. ct: [0x1b842602,0x7ddb962b,0x5c5ba7eb,0x8bc9ab63] },
  3298. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
  3299. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3300. ct: [0xe917fc77,0xe71992a1,0x2dbe4c18,0x068bec82] },
  3301. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
  3302. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3303. ct: [0xdceebbc9,0x8840f8ae,0x6daf7657,0x3b7e56f4] },
  3304. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  3305. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3306. ct: [0x4e11a9f7,0x4205125b,0x61e0aee0,0x47eca20d] },
  3307. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  3308. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3309. ct: [0xf60467f5,0x5a1f17ea,0xb88e8001,0x20cbc284] },
  3310. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
  3311. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3312. ct: [0xd436649f,0x600b449e,0xe276530f,0x0cd83c11] },
  3313. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
  3314. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3315. ct: [0x3bc0e365,0x6a9e3ac7,0xcd378a73,0x7f53b637] },
  3316. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
  3317. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3318. ct: [0x6bacae63,0xd33b928a,0xa8380f8d,0x54d88c17] },
  3319. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
  3320. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3321. ct: [0x8935ffbc,0x75ae6251,0xbf8e859f,0x085adcb9] },
  3322. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
  3323. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3324. ct: [0x93dc4970,0xfe35f677,0x47cb0562,0xc06d875a] },
  3325. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
  3326. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3327. ct: [0x14f9df85,0x89758517,0x97ba604f,0xb0d16cc7] },
  3328. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  3329. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3330. ct: [0x02ea0c98,0xdca10b38,0xc21b3b14,0xe8d1b71f] },
  3331. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  3332. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3333. ct: [0x8f091b1b,0x5b0749b2,0xadc803e6,0x3dda9b72] },
  3334. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
  3335. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3336. ct: [0x05b389e3,0x322c6da0,0x8384345a,0x4137fd08] },
  3337. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
  3338. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3339. ct: [0x381308c4,0x38f35b39,0x9f10ad71,0xb05027d8] },
  3340. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  3341. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3342. ct: [0x68c230fc,0xfa9279c3,0x409fc423,0xe2acbe04] },
  3343. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  3344. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3345. ct: [0x1c84a475,0xacb011f3,0xf59f4f46,0xb76274c0] },
  3346. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  3347. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3348. ct: [0x45119b68,0xcb3f8399,0xee60066b,0x5611a4d7] },
  3349. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  3350. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3351. ct: [0x9423762f,0x527a4060,0xffca312d,0xcca22a16] },
  3352. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  3353. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3354. ct: [0xf361a274,0x5a33f056,0xa5ac6ace,0x2f08e344] },
  3355. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  3356. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3357. ct: [0x5ef14576,0x6eca849f,0x5d011536,0xa6557fdb] },
  3358. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
  3359. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3360. ct: [0xc9af27b2,0xc89c9b4c,0xf4a0c410,0x6ac80318] },
  3361. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
  3362. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3363. ct: [0xfb9c4f16,0xc621f4ea,0xb7e9ac1d,0x7551dd57] },
  3364. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  3365. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3366. ct: [0x138e06fb,0xa466fa70,0x854d8c2e,0x524cffb2] },
  3367. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  3368. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3369. ct: [0xfb4bc78b,0x22507077,0x3f04c404,0x66d4e90c] },
  3370. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  3371. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3372. ct: [0x8b2cbff1,0xed0150fe,0xda8a4799,0xbe94551f] },
  3373. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  3374. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3375. ct: [0x08b30d7b,0x3f279627,0x09a36bca,0xdfb974bd] },
  3376. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  3377. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3378. ct: [0xfdf6d32e,0x044d77ad,0xcf37fb97,0xac213326] },
  3379. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  3380. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3381. ct: [0x93cb284e,0xcdcfd781,0xa8afe320,0x77949e88] },
  3382. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
  3383. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3384. ct: [0x7b017bb0,0x2ec87b2b,0x94c96e40,0xa26fc71a] },
  3385. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
  3386. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3387. ct: [0xc5c038b6,0x990664ab,0x08a3aaa5,0xdf9f3266] },
  3388. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  3389. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3390. ct: [0x4b7020be,0x37fab625,0x9b2a27f4,0xec551576] },
  3391. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  3392. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3393. ct: [0x60136703,0x374f64e8,0x60b48ce3,0x1f930716] },
  3394. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  3395. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3396. ct: [0x8d63a269,0xb14d506c,0xcc401ab8,0xa9f1b591] },
  3397. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  3398. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3399. ct: [0xd317f81d,0xc6aa454a,0xee4bd4a5,0xa5cff4bd] },
  3400. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  3401. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3402. ct: [0xdddececd,0x5354f04d,0x530d76ed,0x884246eb] },
  3403. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  3404. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3405. ct: [0x41c5205c,0xc8fd8eda,0x9a3cffd2,0x518f365a] },
  3406. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  3407. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3408. ct: [0xcf42fb47,0x4293d96e,0xca9db1b3,0x7b1ba676] },
  3409. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  3410. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3411. ct: [0xa2316926,0x07169b4e,0xcdead5cd,0x3b10db3e] },
  3412. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  3413. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3414. ct: [0xace4b91c,0x9c669e77,0xe7acacd1,0x9859ed49] },
  3415. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  3416. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3417. ct: [0x75db7cfd,0x4a7b2b62,0xab78a48f,0x3ddaf4af] },
  3418. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  3419. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3420. ct: [0xc1faba2d,0x46e259cf,0x480d7c38,0xe4572a58] },
  3421. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  3422. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3423. ct: [0x241c45bc,0x6ae16dee,0x6eb7bea1,0x28701582] },
  3424. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  3425. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3426. ct: [0x8fd03057,0xcf136442,0x0c2b7806,0x9a3e2502] },
  3427. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  3428. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3429. ct: [0xddb505e6,0xcc1384cb,0xaec1df90,0xb80beb20] },
  3430. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  3431. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3432. ct: [0x5674a3be,0xd27bf4bd,0x3622f9f5,0xfe208306] },
  3433. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  3434. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3435. ct: [0xb687f26a,0x89cfbfbb,0x8e5eeac5,0x4055315e] },
  3436. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  3437. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3438. ct: [0x0547dd32,0xd3b29ab6,0xa4caeb60,0x6c5b6f78] },
  3439. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  3440. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3441. ct: [0x186861f8,0xbc5386d3,0x1fb77f72,0x0c3226e6] },
  3442. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  3443. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3444. ct: [0xeacf1e6c,0x4224efb3,0x8900b185,0xab1dfd42] },
  3445. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  3446. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3447. ct: [0xd241aab0,0x5a42d319,0xde81d874,0xf5c7b90d] },
  3448. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  3449. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3450. ct: [0x5eb9bc75,0x9e2ad8d2,0x140a6c76,0x2ae9e1ab] },
  3451. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  3452. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3453. ct: [0x018596e1,0x5e78e2c0,0x64159def,0xce5f3085] },
  3454. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  3455. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3456. ct: [0xdd8a4935,0x14231cbf,0x56eccee4,0xc40889fb] },
  3457. { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3458. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3459. ct: [0xde885dc8,0x7f5a9259,0x4082d02c,0xc1e1b42c] },
  3460. { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3461. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3462. ct: [0x132b074e,0x80f2a597,0xbf5febd8,0xea5da55e] },
  3463. { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3464. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3465. ct: [0x6eccedf8,0xde592c22,0xfb81347b,0x79f2db1f] },
  3466. { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3467. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3468. ct: [0x180b09f2,0x67c45145,0xdb2f826c,0x2582d35c] },
  3469. { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3470. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3471. ct: [0xedd807ef,0x7652d7eb,0x0e13c8b5,0xe15b3bc0] },
  3472. { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3473. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3474. ct: [0x9978bcf8,0xdd8fd722,0x41223ad2,0x4b31b8a4] },
  3475. { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3476. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3477. ct: [0x5310f654,0x343e8f27,0xe12c83a4,0x8d24ff81] },
  3478. { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3479. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3480. ct: [0x833f7125,0x8d53036b,0x02952c76,0xc744f5a1] },
  3481. { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3482. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3483. ct: [0xeba83ff2,0x00cff931,0x8a92f869,0x1a06b09f] },
  3484. { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3485. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3486. ct: [0xff620ccb,0xe9f3292a,0xbdf2176b,0x09f04eba] },
  3487. { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3488. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3489. ct: [0x7ababc4b,0x3f516c9a,0xafb35f41,0x40b548f9] },
  3490. { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3491. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3492. ct: [0xaa187824,0xd9c4582b,0x0916493e,0xcbde8c57] },
  3493. { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3494. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3495. ct: [0x1c0ad553,0x177fd5ea,0x1092c9d6,0x26a29dc4] },
  3496. { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3497. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3498. ct: [0xa5dc46c3,0x72611941,0x24ecaebd,0x680408ec] },
  3499. { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3500. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3501. ct: [0xe4f2f2ae,0x23e9b10b,0xacfa5860,0x1531ba54] },
  3502. { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3503. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3504. ct: [0xb7d67cf1,0xa1e91e8f,0xf3a57a17,0x2c7bf412] },
  3505. { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3506. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3507. ct: [0x26706be0,0x6967884e,0x847d1371,0x28ce47b3] },
  3508. { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3509. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3510. ct: [0xb2f8b409,0xb0585909,0xaad3a7b5,0xa219072a] },
  3511. { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3512. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3513. ct: [0x5e4b7bff,0x0290c783,0x44c54a23,0xb722cd20] },
  3514. { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3515. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3516. ct: [0x07093657,0x552d4414,0x227ce161,0xe9ebf7dd] },
  3517. { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3518. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3519. ct: [0xe1af1e7d,0x8bc225ed,0x4dffb771,0xecbb9e67] },
  3520. { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3521. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3522. ct: [0xef655525,0x3635d843,0x2156cfd9,0xc11b145a] },
  3523. { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3524. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3525. ct: [0xfb403507,0x4a5d4260,0xc90cbd6d,0xa6c3fceb] },
  3526. { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3527. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3528. ct: [0x446ee416,0xf9ad1c10,0x3eb0cc96,0x751c88e1] },
  3529. { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3530. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3531. ct: [0x198ae2a4,0x637ac0a7,0x890a8fd1,0x485445c9] },
  3532. { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3533. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3534. ct: [0x562012ec,0x8faded08,0x25fb2fa7,0x0ab30cbd] },
  3535. { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3536. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3537. ct: [0xcc8a64b4,0x6b5d88bf,0x7f247d4d,0xbaf38f05] },
  3538. { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3539. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3540. ct: [0xa1682537,0x62e2cc81,0xb42d1e50,0x01762699] },
  3541. { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3542. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3543. ct: [0x1b41f83b,0x38ce5032,0xc6cd7af9,0x8cf62061] },
  3544. { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3545. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3546. ct: [0x61a89990,0xcd141175,0x0d5fb0dc,0x988447d4] },
  3547. { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3548. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3549. ct: [0xb5accc8e,0xd629edf8,0xc68a5391,0x83b1ea82] },
  3550. { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3551. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3552. ct: [0xb16fa71f,0x846b81a1,0x3f361c43,0xa851f290] },
  3553. { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3554. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3555. ct: [0x4fad6efd,0xff5975ae,0xe7692234,0xbcd54488] },
  3556. { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3557. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3558. ct: [0xebfdb05a,0x783d0308,0x2dfe5fdd,0x80a00b17] },
  3559. { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3560. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3561. ct: [0xeb81b584,0x766997af,0x6ba5529d,0x3bdd8609] },
  3562. { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3563. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3564. ct: [0x0cf4ff4f,0x49c8a0ca,0x060c4434,0x99e29313] },
  3565. { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3566. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3567. ct: [0xcc4ba8a8,0xe029f8b2,0x6d8afff9,0xdf133bb6] },
  3568. { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3569. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3570. ct: [0xfefebf64,0x360f38e4,0xe63558f0,0xffc550c3] },
  3571. { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3572. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3573. ct: [0x12ad98cb,0xf725137d,0x6a8108c2,0xbed99322] },
  3574. { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
  3575. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3576. ct: [0x6afaa996,0x226198b3,0xe2610413,0xce1b3f78] },
  3577. { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
  3578. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3579. ct: [0x2a8ce674,0x7a7e3936,0x7828e290,0x848502d9] },
  3580. { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
  3581. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3582. ct: [0x223736e8,0xb8f89ca1,0xe37b6dea,0xb40facf1] },
  3583. { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
  3584. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3585. ct: [0xc0f797e5,0x0418b95f,0xa6013333,0x917a9480] },
  3586. { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
  3587. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3588. ct: [0xa758de37,0xc2ece2a0,0x2c73c01f,0xedc9a132] },
  3589. { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
  3590. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3591. ct: [0x3a9b87ae,0x77bae706,0x803966c6,0x6c73adbd] },
  3592. { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
  3593. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3594. ct: [0xd365ab8d,0xf8ffd782,0xe358121a,0x4a4fc541] },
  3595. { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
  3596. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3597. ct: [0xc8dcd9e6,0xf75e6c36,0xc8daee04,0x66f0ed74] },
  3598. { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
  3599. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3600. ct: [0xc79a637b,0xeb1c0304,0xf14014c0,0x37e736dd] },
  3601. { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
  3602. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3603. ct: [0x105f0a25,0xe84ac930,0xd996281a,0x5f954dd9] },
  3604. { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
  3605. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3606. ct: [0x42e4074b,0x2927973e,0x8d17ffa9,0x2f7fe615] },
  3607. { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
  3608. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3609. ct: [0x4fe2a9d2,0xc1824449,0xc69e3e03,0x98f12963] },
  3610. { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
  3611. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3612. ct: [0xb7f29c1e,0x1f62847a,0x15253b28,0xa1e9d712] },
  3613. { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
  3614. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3615. ct: [0x36ed5d29,0xb903f31e,0x8983ef8b,0x0a2bf990] },
  3616. { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
  3617. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3618. ct: [0x27b80702,0x70810f9d,0x023f9dd7,0xff3b4aa2] },
  3619. { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
  3620. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3621. ct: [0x94d46e15,0x5c1228f6,0x1d1a0db4,0x815ecc4b] },
  3622. { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
  3623. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3624. ct: [0xca6108d1,0xd9807142,0x8eeceef1,0x714b96dd] },
  3625. { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
  3626. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3627. ct: [0xdc5b25b7,0x1b6296cf,0x73dd2cdc,0xac2f70b1] },
  3628. { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
  3629. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3630. ct: [0x44aba95e,0x8a06a2d9,0xd3530d26,0x77878c80] },
  3631. { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
  3632. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3633. ct: [0xa570d20e,0x89b467e8,0xf5176061,0xb81dd396] },
  3634. { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
  3635. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3636. ct: [0x758f4467,0xa5d8f1e7,0x307dc30b,0x34e404f4] },
  3637. { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
  3638. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3639. ct: [0xbcea28e9,0x071b5a23,0x02970ff3,0x52451bc5] },
  3640. { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
  3641. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3642. ct: [0x7523c00b,0xc177d331,0xad312e09,0xc9015c1c] },
  3643. { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
  3644. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3645. ct: [0xccac61e3,0x183747b3,0xf5836da2,0x1a1bc4f4] },
  3646. { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
  3647. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3648. ct: [0x707b0757,0x91878880,0xb44189d3,0x522b8c30] },
  3649. { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
  3650. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3651. ct: [0x7132d0c0,0xe4a07593,0xcf12ebb1,0x2be7688c] },
  3652. { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
  3653. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3654. ct: [0xeffbac16,0x44deb0c7,0x84275fe5,0x6e19ead3] },
  3655. { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
  3656. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3657. ct: [0xa005063f,0x30f4228b,0x374e2459,0x738f26bb] },
  3658. { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
  3659. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3660. ct: [0x29975b5f,0x48bb68fc,0xbbc7cea9,0x3b452ed7] },
  3661. { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
  3662. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3663. ct: [0xcf3f2576,0xe2afedc7,0x4bb1ca7e,0xeec1c0e7] },
  3664. { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
  3665. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3666. ct: [0x07c403f5,0xf966e0e3,0xd9f296d6,0x226dca28] },
  3667. { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
  3668. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3669. ct: [0xc8c20908,0x249ab4a3,0x4d6dd0a3,0x1327ff1a] },
  3670. { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
  3671. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3672. ct: [0xc0541329,0xecb6159a,0xb23b7fc5,0xe6a21bca] },
  3673. { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
  3674. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3675. ct: [0x7aa1acf1,0xa2ed9ba7,0x2bc6deb3,0x1d88b863] },
  3676. { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
  3677. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3678. ct: [0x808bd8ed,0xdabb6f3b,0xf0d5a8a2,0x7be1fe8a] },
  3679. { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
  3680. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3681. ct: [0x273c7d76,0x85e14ec6,0x6bbb96b8,0xf05b6ddd] },
  3682. { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
  3683. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3684. ct: [0x32752eef,0xc8c2a93f,0x91b6e73e,0xb07cca6e] },
  3685. { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
  3686. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3687. ct: [0xd893e7d6,0x2f6ce502,0xc64f75e2,0x81f9c000] },
  3688. { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
  3689. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3690. ct: [0x8dfd999b,0xe5d0cfa3,0x5732c0dd,0xc88ff5a5] },
  3691. { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
  3692. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3693. ct: [0x02647c76,0xa300c317,0x3b841487,0xeb2bae9f] },
  3694. { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
  3695. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3696. ct: [0x172df8b0,0x2f04b53a,0xdab028b4,0xe01acd87] },
  3697. { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
  3698. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3699. ct: [0x054b3bf4,0x998aeb05,0xafd87ec5,0x36533a36] },
  3700. { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
  3701. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3702. ct: [0x3783f7bf,0x44c97f06,0x5258a666,0xcae03020] },
  3703. { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
  3704. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3705. ct: [0xaad4c8a6,0x3f809541,0x04de7b92,0xcede1be1] },
  3706. { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
  3707. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3708. ct: [0xcbfe6181,0x0fd5467c,0xcdacb758,0x00f3ac07] },
  3709. { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
  3710. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3711. ct: [0x830d8a25,0x90f7d8e1,0xb55a737f,0x4af45f34] },
  3712. { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
  3713. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3714. ct: [0xfffcd468,0x3f858058,0xe7431467,0x1d43fa2c] },
  3715. { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
  3716. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3717. ct: [0x523d0bab,0xbb82f46e,0xbc9e70b1,0xcd41ddd0] },
  3718. { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
  3719. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3720. ct: [0x344aab37,0x080d7486,0xf7d542a3,0x09e53eed] },
  3721. { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
  3722. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3723. ct: [0x56c5609d,0x0906b23a,0xb9caca81,0x6f5dbebd] },
  3724. { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
  3725. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3726. ct: [0x7026026e,0xedd91adc,0x6d831cdf,0x9894bdc6] },
  3727. { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
  3728. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3729. ct: [0x88330baa,0x4f2b618f,0xc9d9b021,0xbf503d5a] },
  3730. { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
  3731. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3732. ct: [0xfc9e0ea2,0x2480b0ba,0xc935c8a8,0xebefcdcf] },
  3733. { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
  3734. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3735. ct: [0x29ca779f,0x398fb04f,0x867da7e8,0xa44756cb] },
  3736. { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
  3737. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3738. ct: [0x51f89c42,0x985786bf,0xc43c6df8,0xada36832] },
  3739. { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
  3740. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3741. ct: [0x6ac1de5f,0xb8f21d87,0x4e91c53b,0x560c50e3] },
  3742. { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
  3743. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3744. ct: [0x03aa9058,0x490eda30,0x6001a8a9,0xf48d0ca7] },
  3745. { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
  3746. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3747. ct: [0xe34ec71d,0x6128d487,0x1865d617,0xc30b37e3] },
  3748. { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
  3749. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3750. ct: [0x14be1c53,0x5b17cabd,0x0c4d9352,0x9d69bf47] },
  3751. { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
  3752. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3753. ct: [0xc9ef6775,0x6507beec,0x9dd38628,0x83478044] },
  3754. { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
  3755. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3756. ct: [0x40e231fa,0x5a5948ce,0x2134e92f,0xc0664d4b] },
  3757. { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
  3758. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3759. ct: [0x03194b8e,0x5dda5530,0xd0c678c0,0xb48f5d92] },
  3760. { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
  3761. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3762. ct: [0x90bd086f,0x237cc4fd,0x99f4d76b,0xde6b4826] },
  3763. { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
  3764. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3765. ct: [0x19259761,0xca17130d,0x6ed86d57,0xcd7951ee] },
  3766. { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
  3767. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3768. ct: [0xd7cbb3f3,0x4b9b450f,0x24b0e851,0x8e54da6d] },
  3769. { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
  3770. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3771. ct: [0x725b9cae,0xbe9f7f41,0x7f4068d0,0xd2ee20b3] },
  3772. { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
  3773. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3774. ct: [0x9d924b93,0x4a90ce1f,0xd39b8a97,0x94f82672] },
  3775. { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
  3776. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3777. ct: [0xc50562bf,0x094526a9,0x1c5bc63c,0x0c224995] },
  3778. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
  3779. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3780. ct: [0xd2f11805,0x046743bd,0x74f57188,0xd9188df7] },
  3781. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
  3782. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3783. ct: [0x8dd274bd,0x0f1b58ae,0x345d9e72,0x33f9b8f3] },
  3784. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
  3785. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3786. ct: [0x9d6bdc8f,0x4ce5feb0,0xf3bed2e4,0xb9a9bb0b] },
  3787. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
  3788. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3789. ct: [0xfd5548bc,0xf3f42565,0xf7efa945,0x62528d46] },
  3790. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
  3791. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3792. ct: [0xd2ccaebd,0x3a4c3e80,0xb0637481,0x31ba4a71] },
  3793. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
  3794. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3795. ct: [0xe03cb23d,0x9e11c9d9,0x3f117e9c,0x0a91b576] },
  3796. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
  3797. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3798. ct: [0x78f933a2,0x081ac1db,0x84f69d10,0xf4523fe0] },
  3799. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
  3800. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3801. ct: [0x4061f741,0x2ed320de,0x0edc8851,0xc2e2436f] },
  3802. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
  3803. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3804. ct: [0x9064ba1c,0xd04ce6ba,0xb9847433,0x0814b4d4] },
  3805. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
  3806. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3807. ct: [0x48391bff,0xb9cfff80,0xac238c88,0x6ef0a461] },
  3808. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
  3809. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3810. ct: [0xb8d2a67d,0xf5a999fd,0xbf93edd0,0x343296c9] },
  3811. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
  3812. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3813. ct: [0xaaca7367,0x396b69a2,0x21bd632b,0xea386eec] },
  3814. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
  3815. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3816. ct: [0xa80fd502,0x0dfe65f5,0xf16293ec,0x92c6fd89] },
  3817. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
  3818. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3819. ct: [0x2162995b,0x8217a67f,0x1abc342e,0x146406f8] },
  3820. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
  3821. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3822. ct: [0xc6a6164b,0x7a60bae4,0xe986ffac,0x28dfadd9] },
  3823. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
  3824. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3825. ct: [0x64e0d7f9,0x00e3d9c8,0x3e4b8f96,0x717b2146] },
  3826. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
  3827. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3828. ct: [0x1ad2561d,0xe8c1232f,0x5d8dbab4,0x739b6cbb] },
  3829. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
  3830. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3831. ct: [0x279689e9,0xa557f58b,0x1c3bf40c,0x97a90964] },
  3832. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
  3833. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3834. ct: [0xc4637e4a,0x5e6377f9,0xcc5a8638,0x045de029] },
  3835. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
  3836. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3837. ct: [0x492e607e,0x5aea4688,0x594b45f3,0xaee3df90] },
  3838. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
  3839. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3840. ct: [0xe8c4e438,0x1feec740,0x54954c05,0xb777a00a] },
  3841. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
  3842. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3843. ct: [0x91549514,0x605f3824,0x6c9b724a,0xd839f01d] },
  3844. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
  3845. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3846. ct: [0x74b24e3b,0x6fefe40a,0x4f9ef7ac,0x6e44d76a] },
  3847. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
  3848. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3849. ct: [0x2437a683,0xdc5d4b52,0xabb4a123,0xa8df86c6] },
  3850. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
  3851. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3852. ct: [0xbb2852c8,0x91c5947d,0x2ed44032,0xc421b85f] },
  3853. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
  3854. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3855. ct: [0x1b9f5fbd,0x5e8a4264,0xc0a85b80,0x409afa5e] },
  3856. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
  3857. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3858. ct: [0x30dab809,0xf85a917f,0xe924733f,0x424ac589] },
  3859. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
  3860. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3861. ct: [0xeaef5c1f,0x8d605192,0x646695ce,0xadc65f32] },
  3862. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
  3863. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3864. ct: [0xb8aa9004,0x0b4c15a1,0x2316b78e,0x0f9586fc] },
  3865. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
  3866. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3867. ct: [0x97fac829,0x7ceaabc8,0x7d454350,0x601e0673] },
  3868. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
  3869. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3870. ct: [0x9b47ef56,0x7ac28dfe,0x488492f1,0x57e2b2e0] },
  3871. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
  3872. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3873. ct: [0x1b842602,0x7ddb962b,0x5c5ba7eb,0x8bc9ab63] },
  3874. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
  3875. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3876. ct: [0xe917fc77,0xe71992a1,0x2dbe4c18,0x068bec82] },
  3877. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
  3878. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3879. ct: [0xdceebbc9,0x8840f8ae,0x6daf7657,0x3b7e56f4] },
  3880. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  3881. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3882. ct: [0x4e11a9f7,0x4205125b,0x61e0aee0,0x47eca20d] },
  3883. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  3884. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3885. ct: [0xf60467f5,0x5a1f17ea,0xb88e8001,0x20cbc284] },
  3886. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
  3887. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3888. ct: [0xd436649f,0x600b449e,0xe276530f,0x0cd83c11] },
  3889. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
  3890. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3891. ct: [0x3bc0e365,0x6a9e3ac7,0xcd378a73,0x7f53b637] },
  3892. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
  3893. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3894. ct: [0x6bacae63,0xd33b928a,0xa8380f8d,0x54d88c17] },
  3895. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
  3896. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3897. ct: [0x8935ffbc,0x75ae6251,0xbf8e859f,0x085adcb9] },
  3898. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
  3899. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3900. ct: [0x93dc4970,0xfe35f677,0x47cb0562,0xc06d875a] },
  3901. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
  3902. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3903. ct: [0x14f9df85,0x89758517,0x97ba604f,0xb0d16cc7] },
  3904. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  3905. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3906. ct: [0x02ea0c98,0xdca10b38,0xc21b3b14,0xe8d1b71f] },
  3907. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  3908. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3909. ct: [0x8f091b1b,0x5b0749b2,0xadc803e6,0x3dda9b72] },
  3910. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
  3911. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3912. ct: [0x05b389e3,0x322c6da0,0x8384345a,0x4137fd08] },
  3913. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
  3914. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3915. ct: [0x381308c4,0x38f35b39,0x9f10ad71,0xb05027d8] },
  3916. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  3917. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3918. ct: [0x68c230fc,0xfa9279c3,0x409fc423,0xe2acbe04] },
  3919. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  3920. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3921. ct: [0x1c84a475,0xacb011f3,0xf59f4f46,0xb76274c0] },
  3922. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  3923. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3924. ct: [0x45119b68,0xcb3f8399,0xee60066b,0x5611a4d7] },
  3925. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  3926. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3927. ct: [0x9423762f,0x527a4060,0xffca312d,0xcca22a16] },
  3928. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  3929. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3930. ct: [0xf361a274,0x5a33f056,0xa5ac6ace,0x2f08e344] },
  3931. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  3932. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3933. ct: [0x5ef14576,0x6eca849f,0x5d011536,0xa6557fdb] },
  3934. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
  3935. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3936. ct: [0xc9af27b2,0xc89c9b4c,0xf4a0c410,0x6ac80318] },
  3937. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
  3938. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3939. ct: [0xfb9c4f16,0xc621f4ea,0xb7e9ac1d,0x7551dd57] },
  3940. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  3941. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3942. ct: [0x138e06fb,0xa466fa70,0x854d8c2e,0x524cffb2] },
  3943. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  3944. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3945. ct: [0xfb4bc78b,0x22507077,0x3f04c404,0x66d4e90c] },
  3946. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  3947. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3948. ct: [0x8b2cbff1,0xed0150fe,0xda8a4799,0xbe94551f] },
  3949. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  3950. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3951. ct: [0x08b30d7b,0x3f279627,0x09a36bca,0xdfb974bd] },
  3952. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  3953. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3954. ct: [0xfdf6d32e,0x044d77ad,0xcf37fb97,0xac213326] },
  3955. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  3956. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3957. ct: [0x93cb284e,0xcdcfd781,0xa8afe320,0x77949e88] },
  3958. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
  3959. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3960. ct: [0x7b017bb0,0x2ec87b2b,0x94c96e40,0xa26fc71a] },
  3961. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
  3962. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3963. ct: [0xc5c038b6,0x990664ab,0x08a3aaa5,0xdf9f3266] },
  3964. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  3965. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3966. ct: [0x4b7020be,0x37fab625,0x9b2a27f4,0xec551576] },
  3967. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  3968. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3969. ct: [0x60136703,0x374f64e8,0x60b48ce3,0x1f930716] },
  3970. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  3971. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3972. ct: [0x8d63a269,0xb14d506c,0xcc401ab8,0xa9f1b591] },
  3973. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  3974. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3975. ct: [0xd317f81d,0xc6aa454a,0xee4bd4a5,0xa5cff4bd] },
  3976. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  3977. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3978. ct: [0xdddececd,0x5354f04d,0x530d76ed,0x884246eb] },
  3979. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  3980. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3981. ct: [0x41c5205c,0xc8fd8eda,0x9a3cffd2,0x518f365a] },
  3982. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  3983. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3984. ct: [0xcf42fb47,0x4293d96e,0xca9db1b3,0x7b1ba676] },
  3985. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  3986. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3987. ct: [0xa2316926,0x07169b4e,0xcdead5cd,0x3b10db3e] },
  3988. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  3989. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3990. ct: [0xace4b91c,0x9c669e77,0xe7acacd1,0x9859ed49] },
  3991. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  3992. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3993. ct: [0x75db7cfd,0x4a7b2b62,0xab78a48f,0x3ddaf4af] },
  3994. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  3995. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3996. ct: [0xc1faba2d,0x46e259cf,0x480d7c38,0xe4572a58] },
  3997. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  3998. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  3999. ct: [0x241c45bc,0x6ae16dee,0x6eb7bea1,0x28701582] },
  4000. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  4001. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4002. ct: [0x8fd03057,0xcf136442,0x0c2b7806,0x9a3e2502] },
  4003. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  4004. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4005. ct: [0xddb505e6,0xcc1384cb,0xaec1df90,0xb80beb20] },
  4006. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  4007. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4008. ct: [0x5674a3be,0xd27bf4bd,0x3622f9f5,0xfe208306] },
  4009. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  4010. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4011. ct: [0xb687f26a,0x89cfbfbb,0x8e5eeac5,0x4055315e] },
  4012. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  4013. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4014. ct: [0x0547dd32,0xd3b29ab6,0xa4caeb60,0x6c5b6f78] },
  4015. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  4016. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4017. ct: [0x186861f8,0xbc5386d3,0x1fb77f72,0x0c3226e6] },
  4018. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  4019. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4020. ct: [0xeacf1e6c,0x4224efb3,0x8900b185,0xab1dfd42] },
  4021. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  4022. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4023. ct: [0xd241aab0,0x5a42d319,0xde81d874,0xf5c7b90d] },
  4024. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  4025. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4026. ct: [0x5eb9bc75,0x9e2ad8d2,0x140a6c76,0x2ae9e1ab] },
  4027. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  4028. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4029. ct: [0x018596e1,0x5e78e2c0,0x64159def,0xce5f3085] },
  4030. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  4031. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4032. ct: [0xdd8a4935,0x14231cbf,0x56eccee4,0xc40889fb] },
  4033. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4034. pt: [0x80000000,0x00000000,0x00000000,0x00000000],
  4035. ct: [0xddc6bf79,0x0c15760d,0x8d9aeb6f,0x9a75fd4e] },
  4036. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4037. pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
  4038. ct: [0x0a6bdc6d,0x4c1e6280,0x301fd8e9,0x7ddbe601] },
  4039. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4040. pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
  4041. ct: [0x9b80eefb,0x7ebe2d2b,0x16247aa0,0xefc72f5d] },
  4042. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4043. pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
  4044. ct: [0x7f2c5ece,0x07a98d8b,0xee13c511,0x77395ff7] },
  4045. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4046. pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
  4047. ct: [0x7818d800,0xdcf6f4be,0x1e0e94f4,0x03d1e4c2] },
  4048. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4049. pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
  4050. ct: [0xe74cd1c9,0x2f0919c3,0x5a032412,0x3d6177d3] },
  4051. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4052. pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
  4053. ct: [0x8092a4dc,0xf2da7e77,0xe93bdd37,0x1dfed82e] },
  4054. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4055. pt: [0xff000000,0x00000000,0x00000000,0x00000000],
  4056. ct: [0x49af6b37,0x2135acef,0x10132e54,0x8f217b17] },
  4057. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4058. pt: [0xff800000,0x00000000,0x00000000,0x00000000],
  4059. ct: [0x8bcd40f9,0x4ebb63b9,0xf7909676,0xe667f1e7] },
  4060. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4061. pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
  4062. ct: [0xfe1cffb8,0x3f45dcfb,0x38b29be4,0x38dbd3ab] },
  4063. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4064. pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
  4065. ct: [0x0dc58a8d,0x88662370,0x5aec15cb,0x1e70dc0e] },
  4066. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4067. pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
  4068. ct: [0xc218faa1,0x6056bd07,0x74c3e8d7,0x9c35a5e4] },
  4069. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4070. pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
  4071. ct: [0x047bba83,0xf7aa8417,0x31504e01,0x2208fc9e] },
  4072. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4073. pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  4074. ct: [0xdc8f0e49,0x15fd81ba,0x70a33131,0x0882f6da] },
  4075. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4076. pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  4077. ct: [0x1569859e,0xa6b7206c,0x30bf4fd0,0xcbfac33c] },
  4078. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4079. pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
  4080. ct: [0x300ade92,0xf88f48fa,0x2df730ec,0x16ef44cd] },
  4081. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4082. pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
  4083. ct: [0x1fe6cc3c,0x05965dc0,0x8eb0590c,0x95ac71d0] },
  4084. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4085. pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
  4086. ct: [0x59e858ea,0xaa97fec3,0x8111275b,0x6cf5abc0] },
  4087. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4088. pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
  4089. ct: [0x2239455e,0x7afe3b06,0x16100288,0xcc5a723b] },
  4090. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4091. pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
  4092. ct: [0x3ee500c5,0xc8d63479,0x717163e5,0x5c5c4522] },
  4093. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4094. pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
  4095. ct: [0xd5e38bf1,0x5f16d90e,0x3e214041,0xd774daa8] },
  4096. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4097. pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  4098. ct: [0xb1f4066e,0x6f4f187d,0xfe5f2ad1,0xb17819d0] },
  4099. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4100. pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  4101. ct: [0x6ef4cc4d,0xe49b1106,0x5d7af290,0x9854794a] },
  4102. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4103. pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
  4104. ct: [0xac86bc60,0x6b6640c3,0x09e782f2,0x32bf367f] },
  4105. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4106. pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
  4107. ct: [0x36aff0ef,0x7bf32807,0x72cf4cac,0x80a0d2b2] },
  4108. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4109. pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  4110. ct: [0x1f8eedea,0x0f62a140,0x6d58cfc3,0xecea72cf] },
  4111. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4112. pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  4113. ct: [0xabf4154a,0x3375a1d3,0xe6b1d454,0x438f95a6] },
  4114. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4115. pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  4116. ct: [0x96f96e9d,0x607f6615,0xfc192061,0xee648b07] },
  4117. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4118. pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  4119. ct: [0xcf37cdaa,0xa0d2d536,0xc7185763,0x4c792064] },
  4120. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4121. pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  4122. ct: [0xfbd6640c,0x80245c2b,0x805373f1,0x30703127] },
  4123. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4124. pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  4125. ct: [0x8d6a8afe,0x55a6e481,0xbadae0d1,0x46f436db] },
  4126. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4127. pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
  4128. ct: [0x6a4981f2,0x915e3e68,0xaf6c2238,0x5dd06756] },
  4129. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4130. pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
  4131. ct: [0x42a1136e,0x5f8d8d21,0xd3101998,0x642d573b] },
  4132. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4133. pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  4134. ct: [0x9b471596,0xdc69ae15,0x86cee615,0x8b0b0181] },
  4135. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4136. pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  4137. ct: [0x753665c4,0xaf1eff33,0xaa8b628b,0xf8741cfd] },
  4138. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4139. pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  4140. ct: [0x9a682acf,0x40be01f5,0xb2a4193c,0x9a82404d] },
  4141. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4142. pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  4143. ct: [0x54fafe26,0xe4287f17,0xd1935f87,0xeb9ade01] },
  4144. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4145. pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  4146. ct: [0x49d541b2,0xe74cfe73,0xe6a8e822,0x5f7bd449] },
  4147. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4148. pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  4149. ct: [0x11a45530,0xf624ff6f,0x76a1b382,0x6626ff7b] },
  4150. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4151. pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
  4152. ct: [0xf96b0c4a,0x8bc6c861,0x30289f60,0xb43b8fba] },
  4153. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4154. pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
  4155. ct: [0x48c7d0e8,0x0834ebdc,0x35b6735f,0x76b46c8b] },
  4156. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4157. pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  4158. ct: [0x2463531a,0xb54d6695,0x5e73edc4,0xcb8eaa45] },
  4159. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4160. pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  4161. ct: [0xac9bd8e2,0x53046913,0x4b9d5b06,0x5d4f565b] },
  4162. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4163. pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  4164. ct: [0x3f5f9106,0xd0e52f97,0x3d4890e6,0xf37e8a00] },
  4165. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4166. pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  4167. ct: [0x20ebc86f,0x1304d272,0xe2e207e5,0x9db639f0] },
  4168. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4169. pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  4170. ct: [0xe67ae642,0x6bf9526c,0x972cff07,0x2b52252c] },
  4171. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4172. pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  4173. ct: [0x1a518ddd,0xaf9efa0d,0x002cc58d,0x107edfc8] },
  4174. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4175. pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  4176. ct: [0xead731af,0x4d3a2fe3,0xb34bed04,0x7942a49f] },
  4177. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4178. pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  4179. ct: [0xb1d4efe4,0x0242f83e,0x93b6c8d7,0xefb5eae9] },
  4180. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4181. pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  4182. ct: [0xcd2b1fec,0x11fd906c,0x5c763009,0x9443610a] },
  4183. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4184. pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  4185. ct: [0xa1853fe4,0x7fe29289,0xd153161d,0x06387d21] },
  4186. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4187. pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  4188. ct: [0x46321541,0x79a555c1,0x7ea604d0,0x889fab14] },
  4189. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4190. pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  4191. ct: [0xdd27cac6,0x401a022e,0x8f38f9f9,0x3e774417] },
  4192. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4193. pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  4194. ct: [0xc090313e,0xb98674f3,0x5f312338,0x5fb95d4d] },
  4195. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4196. pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  4197. ct: [0xcc352626,0x2b92f02e,0xdce548f7,0x16b9f45c] },
  4198. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4199. pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  4200. ct: [0xc0838d1a,0x2b16a7c7,0xf0dfcc43,0x3c399c33] },
  4201. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4202. pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  4203. ct: [0x0d9ac756,0xeb297695,0xeed4d382,0xeb126d26] },
  4204. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4205. pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  4206. ct: [0x56ede9dd,0xa3f6f141,0xbff1757f,0xa689c3e1] },
  4207. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4208. pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  4209. ct: [0x768f520e,0xfe0f23e6,0x1d3ec8ad,0x9ce91774] },
  4210. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4211. pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  4212. ct: [0xb1144ddf,0xa7575521,0x3390e7c5,0x96660490] },
  4213. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4214. pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  4215. ct: [0x1d7c0c40,0x40b355b9,0xd107a993,0x25e3b050] },
  4216. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4217. pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  4218. ct: [0xd8e2bb1a,0xe8ee3dcf,0x5bf7d6c3,0x8da82a1a] },
  4219. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4220. pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  4221. ct: [0xfaf82d17,0x8af25a98,0x86a47e7f,0x789b98d7] },
  4222. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4223. pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  4224. ct: [0x9b58dbfd,0x77fe5aca,0x9cfc190c,0xd1b82d19] },
  4225. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4226. pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  4227. ct: [0x77f39208,0x9042e478,0xac16c0c8,0x6a0b5db5] },
  4228. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4229. pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  4230. ct: [0x19f08e34,0x20ee69b4,0x77ca1420,0x281c4782] },
  4231. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4232. pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  4233. ct: [0xa1b19bee,0xe4e11713,0x9f74b3c5,0x3fdcb875] },
  4234. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4235. pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  4236. ct: [0xa37a5869,0xb218a9f3,0xa0868d19,0xaea0ad6a] },
  4237. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4238. pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  4239. ct: [0xbc3594e8,0x65bcd026,0x1b132027,0x31f33580] },
  4240. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4241. pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  4242. ct: [0x811441ce,0x1d309eee,0x7185e8c7,0x52c07557] },
  4243. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4244. pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  4245. ct: [0x959971ce,0x41341905,0x63518e70,0x0b9874d1] },
  4246. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4247. pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  4248. ct: [0x76b5614a,0x042707c9,0x8e2132e2,0xe805fe63] },
  4249. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4250. pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  4251. ct: [0x7d9fa6a5,0x7530d0f0,0x36fec31c,0x230b0cc6] },
  4252. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4253. pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  4254. ct: [0x964153a8,0x3bf6989a,0x4ba80daa,0x91c3e081] },
  4255. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4256. pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  4257. ct: [0xa013014d,0x4ce8054c,0xf2591d06,0xf6f2f176] },
  4258. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4259. pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  4260. ct: [0xd1c5f639,0x9bf38250,0x2e385eee,0x1474a869] },
  4261. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4262. pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  4263. ct: [0x0007e20b,0x8298ec35,0x4f0f5fe7,0x470f36bd] },
  4264. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4265. pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  4266. ct: [0xb95ba05b,0x332da61e,0xf63a2b31,0xfcad9879] },
  4267. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4268. pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  4269. ct: [0x4620a49b,0xd9674915,0x61669ab2,0x5dce45f4] },
  4270. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4271. pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  4272. ct: [0x12e71214,0xae8e04f0,0xbb63d742,0x5c6f14d5] },
  4273. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4274. pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  4275. ct: [0x4cc42fc1,0x407b008f,0xe350907c,0x092e80ac] },
  4276. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4277. pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  4278. ct: [0x08b244ce,0x7cbc8ee9,0x7fbba808,0xcb146fda] },
  4279. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4280. pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  4281. ct: [0x39b333e8,0x694f2154,0x6ad1edd9,0xd87ed95b] },
  4282. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4283. pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  4284. ct: [0x3b271f8a,0xb2e6e4a2,0x0ba8090f,0x43ba78f3] },
  4285. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4286. pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  4287. ct: [0x9ad983f3,0xbf651cd0,0x393f0a73,0xcccdea50] },
  4288. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4289. pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  4290. ct: [0x8f476cbf,0xf75c1f72,0x5ce18e4b,0xbcd19b32] },
  4291. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4292. pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  4293. ct: [0x905b6267,0xf1d6ab53,0x20835a13,0x3f096f2a] },
  4294. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4295. pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  4296. ct: [0x145b60d6,0xd0193c23,0xf4221848,0xa892d61a] },
  4297. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4298. pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  4299. ct: [0x55cfb3fb,0x6d75cad0,0x445bbc8d,0xafa25b0f] },
  4300. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4301. pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  4302. ct: [0x7b8e7098,0xe357ef71,0x237d46d8,0xb075b0f5] },
  4303. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4304. pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  4305. ct: [0x2bf27229,0x901eb40f,0x2df9d839,0x8d1505ae] },
  4306. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4307. pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  4308. ct: [0x83a63402,0xa77f9ad5,0xc1e931a9,0x31ecd706] },
  4309. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4310. pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  4311. ct: [0x6f8ba652,0x1152d31f,0x2bada184,0x3e26b973] },
  4312. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4313. pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  4314. ct: [0xe5c3b8e3,0x0fd2d8e6,0x239b17b4,0x4bd23bbd] },
  4315. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4316. pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  4317. ct: [0x1ac1f710,0x2c59933e,0x8b2ddc3f,0x14e94baa] },
  4318. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4319. pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  4320. ct: [0x21d9ba49,0xf276b45f,0x11af8fc7,0x1a088e3d] },
  4321. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4322. pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  4323. ct: [0x649f1cdd,0xc3792b46,0x38635a39,0x2bc9bade] },
  4324. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4325. pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  4326. ct: [0xe2775e4b,0x59c1bc2e,0x31a2078c,0x11b5a08c] },
  4327. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4328. pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  4329. ct: [0x2be1fae5,0x048a2558,0x2a679ca1,0x0905eb80] },
  4330. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4331. pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  4332. ct: [0xda86f292,0xc6f41ea3,0x4fb2068d,0xf75ecc29] },
  4333. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4334. pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  4335. ct: [0x220df19f,0x85d69b1b,0x562fa69a,0x3c5beca5] },
  4336. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4337. pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  4338. ct: [0x1f11d5d0,0x355e0b55,0x6ccdb6c7,0xf5083b4d] },
  4339. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4340. pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  4341. ct: [0x62526b78,0xbe79cb38,0x4633c91f,0x83b4151b] },
  4342. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4343. pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  4344. ct: [0x90ddbcb9,0x50843592,0xdd47bbef,0x00fdc876] },
  4345. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4346. pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  4347. ct: [0x2fd0e41c,0x5b840227,0x7354a739,0x1d2618e2] },
  4348. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4349. pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  4350. ct: [0x3cdf13e7,0x2dee4c58,0x1bafec70,0xb85f9660] },
  4351. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4352. pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  4353. ct: [0xafa2ffc1,0x37577092,0xe2b654fa,0x199d2c43] },
  4354. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4355. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  4356. ct: [0x8d683ee6,0x3e60d208,0xe343ce48,0xdbc44cac] },
  4357. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4358. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  4359. ct: [0x705a4ef8,0xba213372,0x9c20185c,0x3d3a4763] },
  4360. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4361. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  4362. ct: [0x0861a861,0xc3db4e94,0x194211b7,0x7ed761b9] },
  4363. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4364. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  4365. ct: [0x4b00c27e,0x8b26da7e,0xab9d3a88,0xdec8b031] },
  4366. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4367. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  4368. ct: [0x5f397bf0,0x3084820c,0xc8810d52,0xe5b666e9] },
  4369. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4370. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  4371. ct: [0x63fafabb,0x72c07bfb,0xd3ddc9b1,0x203104b8] },
  4372. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4373. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  4374. ct: [0x683e2140,0x585b1845,0x2dd4ffbb,0x93c95df9] },
  4375. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4376. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  4377. ct: [0x286894e4,0x8e537f87,0x63b56707,0xd7d155c8] },
  4378. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4379. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  4380. ct: [0xa423deab,0xc173dcf7,0xe2c4c53e,0x77d37cd1] },
  4381. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4382. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  4383. ct: [0xeb816831,0x3e1cfdfd,0xb5e986d5,0x429cf172] },
  4384. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4385. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  4386. ct: [0x27127daa,0xfc9accd2,0xfb334ec3,0xeba52323] },
  4387. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4388. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  4389. ct: [0xee0715b9,0x6f72e3f7,0xa22a5064,0xfc592f4c] },
  4390. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4391. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  4392. ct: [0x29ee5267,0x70f2a11d,0xcfa989d1,0xce88830f] },
  4393. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4394. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  4395. ct: [0x0493370e,0x054b0987,0x1130fe49,0xaf730a5a] },
  4396. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4397. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  4398. ct: [0x9b7b940f,0x6c509f9e,0x44a4ee14,0x0448ee46] },
  4399. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4400. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  4401. ct: [0x2915be4a,0x1ecfdcbe,0x3e023811,0xa12bb6c7] },
  4402. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4403. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  4404. ct: [0x7240e524,0xbc51d8c4,0xd440b1be,0x55d1062c] },
  4405. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4406. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  4407. ct: [0xda63039d,0x38cb4612,0xb2dc36ba,0x26684b93] },
  4408. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4409. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  4410. ct: [0x0f59cb5a,0x4b522e2a,0xc56c1a64,0xf558ad9a] },
  4411. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4412. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  4413. ct: [0x7bfe9d87,0x6c6d63c1,0xd035da8f,0xe21c409d] },
  4414. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4415. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  4416. ct: [0xacdace80,0x78a32b1a,0x182bfa49,0x87ca1347] },
  4417. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4418. pt: [0x80000000,0x00000000,0x00000000,0x00000000],
  4419. ct: [0xddc6bf79,0x0c15760d,0x8d9aeb6f,0x9a75fd4e] },
  4420. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4421. pt: [0xc0000000,0x00000000,0x00000000,0x00000000],
  4422. ct: [0x0a6bdc6d,0x4c1e6280,0x301fd8e9,0x7ddbe601] },
  4423. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4424. pt: [0xe0000000,0x00000000,0x00000000,0x00000000],
  4425. ct: [0x9b80eefb,0x7ebe2d2b,0x16247aa0,0xefc72f5d] },
  4426. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4427. pt: [0xf0000000,0x00000000,0x00000000,0x00000000],
  4428. ct: [0x7f2c5ece,0x07a98d8b,0xee13c511,0x77395ff7] },
  4429. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4430. pt: [0xf8000000,0x00000000,0x00000000,0x00000000],
  4431. ct: [0x7818d800,0xdcf6f4be,0x1e0e94f4,0x03d1e4c2] },
  4432. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4433. pt: [0xfc000000,0x00000000,0x00000000,0x00000000],
  4434. ct: [0xe74cd1c9,0x2f0919c3,0x5a032412,0x3d6177d3] },
  4435. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4436. pt: [0xfe000000,0x00000000,0x00000000,0x00000000],
  4437. ct: [0x8092a4dc,0xf2da7e77,0xe93bdd37,0x1dfed82e] },
  4438. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4439. pt: [0xff000000,0x00000000,0x00000000,0x00000000],
  4440. ct: [0x49af6b37,0x2135acef,0x10132e54,0x8f217b17] },
  4441. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4442. pt: [0xff800000,0x00000000,0x00000000,0x00000000],
  4443. ct: [0x8bcd40f9,0x4ebb63b9,0xf7909676,0xe667f1e7] },
  4444. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4445. pt: [0xffc00000,0x00000000,0x00000000,0x00000000],
  4446. ct: [0xfe1cffb8,0x3f45dcfb,0x38b29be4,0x38dbd3ab] },
  4447. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4448. pt: [0xffe00000,0x00000000,0x00000000,0x00000000],
  4449. ct: [0x0dc58a8d,0x88662370,0x5aec15cb,0x1e70dc0e] },
  4450. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4451. pt: [0xfff00000,0x00000000,0x00000000,0x00000000],
  4452. ct: [0xc218faa1,0x6056bd07,0x74c3e8d7,0x9c35a5e4] },
  4453. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4454. pt: [0xfff80000,0x00000000,0x00000000,0x00000000],
  4455. ct: [0x047bba83,0xf7aa8417,0x31504e01,0x2208fc9e] },
  4456. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4457. pt: [0xfffc0000,0x00000000,0x00000000,0x00000000],
  4458. ct: [0xdc8f0e49,0x15fd81ba,0x70a33131,0x0882f6da] },
  4459. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4460. pt: [0xfffe0000,0x00000000,0x00000000,0x00000000],
  4461. ct: [0x1569859e,0xa6b7206c,0x30bf4fd0,0xcbfac33c] },
  4462. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4463. pt: [0xffff0000,0x00000000,0x00000000,0x00000000],
  4464. ct: [0x300ade92,0xf88f48fa,0x2df730ec,0x16ef44cd] },
  4465. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4466. pt: [0xffff8000,0x00000000,0x00000000,0x00000000],
  4467. ct: [0x1fe6cc3c,0x05965dc0,0x8eb0590c,0x95ac71d0] },
  4468. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4469. pt: [0xffffc000,0x00000000,0x00000000,0x00000000],
  4470. ct: [0x59e858ea,0xaa97fec3,0x8111275b,0x6cf5abc0] },
  4471. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4472. pt: [0xffffe000,0x00000000,0x00000000,0x00000000],
  4473. ct: [0x2239455e,0x7afe3b06,0x16100288,0xcc5a723b] },
  4474. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4475. pt: [0xfffff000,0x00000000,0x00000000,0x00000000],
  4476. ct: [0x3ee500c5,0xc8d63479,0x717163e5,0x5c5c4522] },
  4477. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4478. pt: [0xfffff800,0x00000000,0x00000000,0x00000000],
  4479. ct: [0xd5e38bf1,0x5f16d90e,0x3e214041,0xd774daa8] },
  4480. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4481. pt: [0xfffffc00,0x00000000,0x00000000,0x00000000],
  4482. ct: [0xb1f4066e,0x6f4f187d,0xfe5f2ad1,0xb17819d0] },
  4483. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4484. pt: [0xfffffe00,0x00000000,0x00000000,0x00000000],
  4485. ct: [0x6ef4cc4d,0xe49b1106,0x5d7af290,0x9854794a] },
  4486. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4487. pt: [0xffffff00,0x00000000,0x00000000,0x00000000],
  4488. ct: [0xac86bc60,0x6b6640c3,0x09e782f2,0x32bf367f] },
  4489. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4490. pt: [0xffffff80,0x00000000,0x00000000,0x00000000],
  4491. ct: [0x36aff0ef,0x7bf32807,0x72cf4cac,0x80a0d2b2] },
  4492. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4493. pt: [0xffffffc0,0x00000000,0x00000000,0x00000000],
  4494. ct: [0x1f8eedea,0x0f62a140,0x6d58cfc3,0xecea72cf] },
  4495. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4496. pt: [0xffffffe0,0x00000000,0x00000000,0x00000000],
  4497. ct: [0xabf4154a,0x3375a1d3,0xe6b1d454,0x438f95a6] },
  4498. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4499. pt: [0xfffffff0,0x00000000,0x00000000,0x00000000],
  4500. ct: [0x96f96e9d,0x607f6615,0xfc192061,0xee648b07] },
  4501. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4502. pt: [0xfffffff8,0x00000000,0x00000000,0x00000000],
  4503. ct: [0xcf37cdaa,0xa0d2d536,0xc7185763,0x4c792064] },
  4504. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4505. pt: [0xfffffffc,0x00000000,0x00000000,0x00000000],
  4506. ct: [0xfbd6640c,0x80245c2b,0x805373f1,0x30703127] },
  4507. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4508. pt: [0xfffffffe,0x00000000,0x00000000,0x00000000],
  4509. ct: [0x8d6a8afe,0x55a6e481,0xbadae0d1,0x46f436db] },
  4510. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4511. pt: [0xffffffff,0x00000000,0x00000000,0x00000000],
  4512. ct: [0x6a4981f2,0x915e3e68,0xaf6c2238,0x5dd06756] },
  4513. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4514. pt: [0xffffffff,0x80000000,0x00000000,0x00000000],
  4515. ct: [0x42a1136e,0x5f8d8d21,0xd3101998,0x642d573b] },
  4516. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4517. pt: [0xffffffff,0xc0000000,0x00000000,0x00000000],
  4518. ct: [0x9b471596,0xdc69ae15,0x86cee615,0x8b0b0181] },
  4519. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4520. pt: [0xffffffff,0xe0000000,0x00000000,0x00000000],
  4521. ct: [0x753665c4,0xaf1eff33,0xaa8b628b,0xf8741cfd] },
  4522. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4523. pt: [0xffffffff,0xf0000000,0x00000000,0x00000000],
  4524. ct: [0x9a682acf,0x40be01f5,0xb2a4193c,0x9a82404d] },
  4525. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4526. pt: [0xffffffff,0xf8000000,0x00000000,0x00000000],
  4527. ct: [0x54fafe26,0xe4287f17,0xd1935f87,0xeb9ade01] },
  4528. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4529. pt: [0xffffffff,0xfc000000,0x00000000,0x00000000],
  4530. ct: [0x49d541b2,0xe74cfe73,0xe6a8e822,0x5f7bd449] },
  4531. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4532. pt: [0xffffffff,0xfe000000,0x00000000,0x00000000],
  4533. ct: [0x11a45530,0xf624ff6f,0x76a1b382,0x6626ff7b] },
  4534. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4535. pt: [0xffffffff,0xff000000,0x00000000,0x00000000],
  4536. ct: [0xf96b0c4a,0x8bc6c861,0x30289f60,0xb43b8fba] },
  4537. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4538. pt: [0xffffffff,0xff800000,0x00000000,0x00000000],
  4539. ct: [0x48c7d0e8,0x0834ebdc,0x35b6735f,0x76b46c8b] },
  4540. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4541. pt: [0xffffffff,0xffc00000,0x00000000,0x00000000],
  4542. ct: [0x2463531a,0xb54d6695,0x5e73edc4,0xcb8eaa45] },
  4543. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4544. pt: [0xffffffff,0xffe00000,0x00000000,0x00000000],
  4545. ct: [0xac9bd8e2,0x53046913,0x4b9d5b06,0x5d4f565b] },
  4546. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4547. pt: [0xffffffff,0xfff00000,0x00000000,0x00000000],
  4548. ct: [0x3f5f9106,0xd0e52f97,0x3d4890e6,0xf37e8a00] },
  4549. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4550. pt: [0xffffffff,0xfff80000,0x00000000,0x00000000],
  4551. ct: [0x20ebc86f,0x1304d272,0xe2e207e5,0x9db639f0] },
  4552. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4553. pt: [0xffffffff,0xfffc0000,0x00000000,0x00000000],
  4554. ct: [0xe67ae642,0x6bf9526c,0x972cff07,0x2b52252c] },
  4555. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4556. pt: [0xffffffff,0xfffe0000,0x00000000,0x00000000],
  4557. ct: [0x1a518ddd,0xaf9efa0d,0x002cc58d,0x107edfc8] },
  4558. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4559. pt: [0xffffffff,0xffff0000,0x00000000,0x00000000],
  4560. ct: [0xead731af,0x4d3a2fe3,0xb34bed04,0x7942a49f] },
  4561. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4562. pt: [0xffffffff,0xffff8000,0x00000000,0x00000000],
  4563. ct: [0xb1d4efe4,0x0242f83e,0x93b6c8d7,0xefb5eae9] },
  4564. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4565. pt: [0xffffffff,0xffffc000,0x00000000,0x00000000],
  4566. ct: [0xcd2b1fec,0x11fd906c,0x5c763009,0x9443610a] },
  4567. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4568. pt: [0xffffffff,0xffffe000,0x00000000,0x00000000],
  4569. ct: [0xa1853fe4,0x7fe29289,0xd153161d,0x06387d21] },
  4570. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4571. pt: [0xffffffff,0xfffff000,0x00000000,0x00000000],
  4572. ct: [0x46321541,0x79a555c1,0x7ea604d0,0x889fab14] },
  4573. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4574. pt: [0xffffffff,0xfffff800,0x00000000,0x00000000],
  4575. ct: [0xdd27cac6,0x401a022e,0x8f38f9f9,0x3e774417] },
  4576. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4577. pt: [0xffffffff,0xfffffc00,0x00000000,0x00000000],
  4578. ct: [0xc090313e,0xb98674f3,0x5f312338,0x5fb95d4d] },
  4579. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4580. pt: [0xffffffff,0xfffffe00,0x00000000,0x00000000],
  4581. ct: [0xcc352626,0x2b92f02e,0xdce548f7,0x16b9f45c] },
  4582. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4583. pt: [0xffffffff,0xffffff00,0x00000000,0x00000000],
  4584. ct: [0xc0838d1a,0x2b16a7c7,0xf0dfcc43,0x3c399c33] },
  4585. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4586. pt: [0xffffffff,0xffffff80,0x00000000,0x00000000],
  4587. ct: [0x0d9ac756,0xeb297695,0xeed4d382,0xeb126d26] },
  4588. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4589. pt: [0xffffffff,0xffffffc0,0x00000000,0x00000000],
  4590. ct: [0x56ede9dd,0xa3f6f141,0xbff1757f,0xa689c3e1] },
  4591. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4592. pt: [0xffffffff,0xffffffe0,0x00000000,0x00000000],
  4593. ct: [0x768f520e,0xfe0f23e6,0x1d3ec8ad,0x9ce91774] },
  4594. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4595. pt: [0xffffffff,0xfffffff0,0x00000000,0x00000000],
  4596. ct: [0xb1144ddf,0xa7575521,0x3390e7c5,0x96660490] },
  4597. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4598. pt: [0xffffffff,0xfffffff8,0x00000000,0x00000000],
  4599. ct: [0x1d7c0c40,0x40b355b9,0xd107a993,0x25e3b050] },
  4600. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4601. pt: [0xffffffff,0xfffffffc,0x00000000,0x00000000],
  4602. ct: [0xd8e2bb1a,0xe8ee3dcf,0x5bf7d6c3,0x8da82a1a] },
  4603. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4604. pt: [0xffffffff,0xfffffffe,0x00000000,0x00000000],
  4605. ct: [0xfaf82d17,0x8af25a98,0x86a47e7f,0x789b98d7] },
  4606. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4607. pt: [0xffffffff,0xffffffff,0x00000000,0x00000000],
  4608. ct: [0x9b58dbfd,0x77fe5aca,0x9cfc190c,0xd1b82d19] },
  4609. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4610. pt: [0xffffffff,0xffffffff,0x80000000,0x00000000],
  4611. ct: [0x77f39208,0x9042e478,0xac16c0c8,0x6a0b5db5] },
  4612. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4613. pt: [0xffffffff,0xffffffff,0xc0000000,0x00000000],
  4614. ct: [0x19f08e34,0x20ee69b4,0x77ca1420,0x281c4782] },
  4615. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4616. pt: [0xffffffff,0xffffffff,0xe0000000,0x00000000],
  4617. ct: [0xa1b19bee,0xe4e11713,0x9f74b3c5,0x3fdcb875] },
  4618. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4619. pt: [0xffffffff,0xffffffff,0xf0000000,0x00000000],
  4620. ct: [0xa37a5869,0xb218a9f3,0xa0868d19,0xaea0ad6a] },
  4621. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4622. pt: [0xffffffff,0xffffffff,0xf8000000,0x00000000],
  4623. ct: [0xbc3594e8,0x65bcd026,0x1b132027,0x31f33580] },
  4624. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4625. pt: [0xffffffff,0xffffffff,0xfc000000,0x00000000],
  4626. ct: [0x811441ce,0x1d309eee,0x7185e8c7,0x52c07557] },
  4627. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4628. pt: [0xffffffff,0xffffffff,0xfe000000,0x00000000],
  4629. ct: [0x959971ce,0x41341905,0x63518e70,0x0b9874d1] },
  4630. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4631. pt: [0xffffffff,0xffffffff,0xff000000,0x00000000],
  4632. ct: [0x76b5614a,0x042707c9,0x8e2132e2,0xe805fe63] },
  4633. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4634. pt: [0xffffffff,0xffffffff,0xff800000,0x00000000],
  4635. ct: [0x7d9fa6a5,0x7530d0f0,0x36fec31c,0x230b0cc6] },
  4636. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4637. pt: [0xffffffff,0xffffffff,0xffc00000,0x00000000],
  4638. ct: [0x964153a8,0x3bf6989a,0x4ba80daa,0x91c3e081] },
  4639. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4640. pt: [0xffffffff,0xffffffff,0xffe00000,0x00000000],
  4641. ct: [0xa013014d,0x4ce8054c,0xf2591d06,0xf6f2f176] },
  4642. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4643. pt: [0xffffffff,0xffffffff,0xfff00000,0x00000000],
  4644. ct: [0xd1c5f639,0x9bf38250,0x2e385eee,0x1474a869] },
  4645. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4646. pt: [0xffffffff,0xffffffff,0xfff80000,0x00000000],
  4647. ct: [0x0007e20b,0x8298ec35,0x4f0f5fe7,0x470f36bd] },
  4648. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4649. pt: [0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  4650. ct: [0xb95ba05b,0x332da61e,0xf63a2b31,0xfcad9879] },
  4651. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4652. pt: [0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  4653. ct: [0x4620a49b,0xd9674915,0x61669ab2,0x5dce45f4] },
  4654. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4655. pt: [0xffffffff,0xffffffff,0xffff0000,0x00000000],
  4656. ct: [0x12e71214,0xae8e04f0,0xbb63d742,0x5c6f14d5] },
  4657. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4658. pt: [0xffffffff,0xffffffff,0xffff8000,0x00000000],
  4659. ct: [0x4cc42fc1,0x407b008f,0xe350907c,0x092e80ac] },
  4660. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4661. pt: [0xffffffff,0xffffffff,0xffffc000,0x00000000],
  4662. ct: [0x08b244ce,0x7cbc8ee9,0x7fbba808,0xcb146fda] },
  4663. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4664. pt: [0xffffffff,0xffffffff,0xffffe000,0x00000000],
  4665. ct: [0x39b333e8,0x694f2154,0x6ad1edd9,0xd87ed95b] },
  4666. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4667. pt: [0xffffffff,0xffffffff,0xfffff000,0x00000000],
  4668. ct: [0x3b271f8a,0xb2e6e4a2,0x0ba8090f,0x43ba78f3] },
  4669. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4670. pt: [0xffffffff,0xffffffff,0xfffff800,0x00000000],
  4671. ct: [0x9ad983f3,0xbf651cd0,0x393f0a73,0xcccdea50] },
  4672. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4673. pt: [0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  4674. ct: [0x8f476cbf,0xf75c1f72,0x5ce18e4b,0xbcd19b32] },
  4675. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4676. pt: [0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  4677. ct: [0x905b6267,0xf1d6ab53,0x20835a13,0x3f096f2a] },
  4678. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4679. pt: [0xffffffff,0xffffffff,0xffffff00,0x00000000],
  4680. ct: [0x145b60d6,0xd0193c23,0xf4221848,0xa892d61a] },
  4681. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4682. pt: [0xffffffff,0xffffffff,0xffffff80,0x00000000],
  4683. ct: [0x55cfb3fb,0x6d75cad0,0x445bbc8d,0xafa25b0f] },
  4684. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4685. pt: [0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  4686. ct: [0x7b8e7098,0xe357ef71,0x237d46d8,0xb075b0f5] },
  4687. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4688. pt: [0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  4689. ct: [0x2bf27229,0x901eb40f,0x2df9d839,0x8d1505ae] },
  4690. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4691. pt: [0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  4692. ct: [0x83a63402,0xa77f9ad5,0xc1e931a9,0x31ecd706] },
  4693. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4694. pt: [0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  4695. ct: [0x6f8ba652,0x1152d31f,0x2bada184,0x3e26b973] },
  4696. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4697. pt: [0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  4698. ct: [0xe5c3b8e3,0x0fd2d8e6,0x239b17b4,0x4bd23bbd] },
  4699. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4700. pt: [0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  4701. ct: [0x1ac1f710,0x2c59933e,0x8b2ddc3f,0x14e94baa] },
  4702. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4703. pt: [0xffffffff,0xffffffff,0xffffffff,0x00000000],
  4704. ct: [0x21d9ba49,0xf276b45f,0x11af8fc7,0x1a088e3d] },
  4705. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4706. pt: [0xffffffff,0xffffffff,0xffffffff,0x80000000],
  4707. ct: [0x649f1cdd,0xc3792b46,0x38635a39,0x2bc9bade] },
  4708. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4709. pt: [0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  4710. ct: [0xe2775e4b,0x59c1bc2e,0x31a2078c,0x11b5a08c] },
  4711. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4712. pt: [0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  4713. ct: [0x2be1fae5,0x048a2558,0x2a679ca1,0x0905eb80] },
  4714. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4715. pt: [0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  4716. ct: [0xda86f292,0xc6f41ea3,0x4fb2068d,0xf75ecc29] },
  4717. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4718. pt: [0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  4719. ct: [0x220df19f,0x85d69b1b,0x562fa69a,0x3c5beca5] },
  4720. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4721. pt: [0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  4722. ct: [0x1f11d5d0,0x355e0b55,0x6ccdb6c7,0xf5083b4d] },
  4723. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4724. pt: [0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  4725. ct: [0x62526b78,0xbe79cb38,0x4633c91f,0x83b4151b] },
  4726. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4727. pt: [0xffffffff,0xffffffff,0xffffffff,0xff000000],
  4728. ct: [0x90ddbcb9,0x50843592,0xdd47bbef,0x00fdc876] },
  4729. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4730. pt: [0xffffffff,0xffffffff,0xffffffff,0xff800000],
  4731. ct: [0x2fd0e41c,0x5b840227,0x7354a739,0x1d2618e2] },
  4732. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4733. pt: [0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  4734. ct: [0x3cdf13e7,0x2dee4c58,0x1bafec70,0xb85f9660] },
  4735. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4736. pt: [0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  4737. ct: [0xafa2ffc1,0x37577092,0xe2b654fa,0x199d2c43] },
  4738. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4739. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  4740. ct: [0x8d683ee6,0x3e60d208,0xe343ce48,0xdbc44cac] },
  4741. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4742. pt: [0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  4743. ct: [0x705a4ef8,0xba213372,0x9c20185c,0x3d3a4763] },
  4744. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4745. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  4746. ct: [0x0861a861,0xc3db4e94,0x194211b7,0x7ed761b9] },
  4747. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4748. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  4749. ct: [0x4b00c27e,0x8b26da7e,0xab9d3a88,0xdec8b031] },
  4750. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4751. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  4752. ct: [0x5f397bf0,0x3084820c,0xc8810d52,0xe5b666e9] },
  4753. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4754. pt: [0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  4755. ct: [0x63fafabb,0x72c07bfb,0xd3ddc9b1,0x203104b8] },
  4756. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4757. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  4758. ct: [0x683e2140,0x585b1845,0x2dd4ffbb,0x93c95df9] },
  4759. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4760. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  4761. ct: [0x286894e4,0x8e537f87,0x63b56707,0xd7d155c8] },
  4762. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4763. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  4764. ct: [0xa423deab,0xc173dcf7,0xe2c4c53e,0x77d37cd1] },
  4765. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4766. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  4767. ct: [0xeb816831,0x3e1cfdfd,0xb5e986d5,0x429cf172] },
  4768. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4769. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  4770. ct: [0x27127daa,0xfc9accd2,0xfb334ec3,0xeba52323] },
  4771. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4772. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  4773. ct: [0xee0715b9,0x6f72e3f7,0xa22a5064,0xfc592f4c] },
  4774. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4775. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  4776. ct: [0x29ee5267,0x70f2a11d,0xcfa989d1,0xce88830f] },
  4777. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4778. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  4779. ct: [0x0493370e,0x054b0987,0x1130fe49,0xaf730a5a] },
  4780. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4781. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  4782. ct: [0x9b7b940f,0x6c509f9e,0x44a4ee14,0x0448ee46] },
  4783. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4784. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  4785. ct: [0x2915be4a,0x1ecfdcbe,0x3e023811,0xa12bb6c7] },
  4786. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4787. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  4788. ct: [0x7240e524,0xbc51d8c4,0xd440b1be,0x55d1062c] },
  4789. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4790. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  4791. ct: [0xda63039d,0x38cb4612,0xb2dc36ba,0x26684b93] },
  4792. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4793. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  4794. ct: [0x0f59cb5a,0x4b522e2a,0xc56c1a64,0xf558ad9a] },
  4795. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4796. pt: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  4797. ct: [0x7bfe9d87,0x6c6d63c1,0xd035da8f,0xe21c409d] },
  4798. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4799. pt: [0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  4800. ct: [0xacdace80,0x78a32b1a,0x182bfa49,0x87ca1347] },
  4801. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4802. pt: [0x014730f8,0x0ac625fe,0x84f026c6,0x0bfd547d],
  4803. ct: [0x5c9d844e,0xd46f9885,0x085e5d6a,0x4f94c7d7] },
  4804. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4805. pt: [0x0b24af36,0x193ce466,0x5f2825d7,0xb4749c98],
  4806. ct: [0xa9ff75bd,0x7cf6613d,0x3731c77c,0x3b6d0c04] },
  4807. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4808. pt: [0x761c1fe4,0x1a18acf2,0x0d241650,0x611d90f1],
  4809. ct: [0x623a52fc,0xea5d443e,0x48d9181a,0xb32c7421] },
  4810. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4811. pt: [0x8a560769,0xd605868a,0xd80d819b,0xdba03771],
  4812. ct: [0x38f2c7ae,0x10612415,0xd27ca190,0xd27da8b4] },
  4813. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4814. pt: [0x91fbef2d,0x15a97816,0x060bee1f,0xeaa49afe],
  4815. ct: [0x1bc704f1,0xbce135ce,0xb810341b,0x216d7abe] },
  4816. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4817. pt: [0x014730f8,0x0ac625fe,0x84f026c6,0x0bfd547d],
  4818. ct: [0x5c9d844e,0xd46f9885,0x085e5d6a,0x4f94c7d7] },
  4819. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4820. pt: [0x0b24af36,0x193ce466,0x5f2825d7,0xb4749c98],
  4821. ct: [0xa9ff75bd,0x7cf6613d,0x3731c77c,0x3b6d0c04] },
  4822. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4823. pt: [0x761c1fe4,0x1a18acf2,0x0d241650,0x611d90f1],
  4824. ct: [0x623a52fc,0xea5d443e,0x48d9181a,0xb32c7421] },
  4825. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4826. pt: [0x8a560769,0xd605868a,0xd80d819b,0xdba03771],
  4827. ct: [0x38f2c7ae,0x10612415,0xd27ca190,0xd27da8b4] },
  4828. { key: [0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4829. pt: [0x91fbef2d,0x15a97816,0x060bee1f,0xeaa49afe],
  4830. ct: [0x1bc704f1,0xbce135ce,0xb810341b,0x216d7abe] },
  4831. { key: [0xc47b0294,0xdbbbee0f,0xec4757f2,0x2ffeee35,0x87ca4730,0xc3d33b69,0x1df38bab,0x076bc558],
  4832. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4833. ct: [0x46f2fb34,0x2d6f0ab4,0x77476fc5,0x01242c5f] },
  4834. { key: [0x28d46cff,0xa1585331,0x94214a91,0xe712fc2b,0x45b51807,0x6675affd,0x910edeca,0x5f41ac64],
  4835. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4836. ct: [0x4bf3b0a6,0x9aeb6657,0x794f2901,0xb1440ad4] },
  4837. { key: [0xc1cc358b,0x449909a1,0x9436cfbb,0x3f852ef8,0xbcb5ed12,0xac705832,0x5f56e609,0x9aab1a1c],
  4838. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4839. ct: [0x35206527,0x2169abf9,0x85684392,0x7d0674fd] },
  4840. { key: [0x984ca75f,0x4ee8d706,0xf46c2d98,0xc0bf4a45,0xf5b00d79,0x1c2dfeb1,0x91b5ed8e,0x420fd627],
  4841. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4842. ct: [0x4307456a,0x9e67813b,0x452e15fa,0x8fffe398] },
  4843. { key: [0xb43d08a4,0x47ac8609,0xbaadae4f,0xf12918b9,0xf68fc165,0x3f126922,0x2f123981,0xded7a92f],
  4844. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4845. ct: [0x46634466,0x07354989,0x477a5c6f,0x0f007ef4] },
  4846. { key: [0x1d85a181,0xb54cde51,0xf0e09809,0x5b2962fd,0xc93b51fe,0x9b88602b,0x3f54130b,0xf76a5bd9],
  4847. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4848. ct: [0x531c2c38,0x344578b8,0x4d50b3c9,0x17bbb6e1] },
  4849. { key: [0xdc0eba1f,0x2232a787,0x9ded34ed,0x8428eeb8,0x769b056b,0xbaf8ad77,0xcb65c354,0x1430b4cf],
  4850. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4851. ct: [0xfc6aec90,0x63234800,0x05c58e7e,0x1ab004ad] },
  4852. { key: [0xf8be9ba6,0x15c5a952,0xcabbca24,0xf68f8593,0x039624d5,0x24c816ac,0xda2c9183,0xbd917cb9],
  4853. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4854. ct: [0xa3944b95,0xca0b5204,0x3584ef02,0x151926a8] },
  4855. { key: [0x797f8b3d,0x176dac5b,0x7e34a2d5,0x39c4ef36,0x7a16f863,0x5f626473,0x7591c5c0,0x7bf57a3e],
  4856. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4857. ct: [0xa74289fe,0x73a4c123,0xca189ea1,0xe1b49ad5] },
  4858. { key: [0x6838d40c,0xaf927749,0xc13f0329,0xd331f448,0xe202c73e,0xf52c5f73,0xa37ca635,0xd4c47707],
  4859. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4860. ct: [0xb91d4ea4,0x488644b5,0x6cf0812f,0xa7fcf5fc] },
  4861. { key: [0xccd1bc3c,0x659cd3c5,0x9bc43748,0x4e3c5c72,0x4441da8d,0x6e90ce55,0x6cd57d07,0x52663bbc],
  4862. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4863. ct: [0x304f81ab,0x61a80c2e,0x743b94d5,0x002a126b] },
  4864. { key: [0x13428b5e,0x4c005e06,0x36dd3384,0x05d173ab,0x135dec2a,0x25c22c5d,0xf0722d69,0xdcc43887],
  4865. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4866. ct: [0x649a7154,0x5378c783,0xe368c9ad,0xe7114f6c] },
  4867. { key: [0x07eb03a0,0x8d291d1b,0x07408bf3,0x512ab40c,0x91097ac7,0x7461aad4,0xbb859647,0xf74f00ee],
  4868. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4869. ct: [0x47cb030d,0xa2ab051d,0xfc6c4bf6,0x910d12bb] },
  4870. { key: [0x90143ae2,0x0cd78c5d,0x8ebdd6cb,0x9dc17624,0x27a96c78,0xc639bccc,0x41a61424,0x564eafe1],
  4871. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4872. ct: [0x798c7c00,0x5dee432b,0x2c8ea5df,0xa381ecc3] },
  4873. { key: [0xb7a5794d,0x52737475,0xd53d5a37,0x7200849b,0xe0260a67,0xa2b22ced,0x8bbef128,0x82270d07],
  4874. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4875. ct: [0x637c31dc,0x2591a076,0x36f646b7,0x2daabbe7] },
  4876. { key: [0xfca02f3d,0x5011cfc5,0xc1e23165,0xd413a049,0xd4526a99,0x1827424d,0x896fe343,0x5e0bf68e],
  4877. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4878. ct: [0x179a49c7,0x12154bbf,0xfbe6e7a8,0x4a18e220] },
  4879. { key: [0xc47b0294,0xdbbbee0f,0xec4757f2,0x2ffeee35,0x87ca4730,0xc3d33b69,0x1df38bab,0x076bc558],
  4880. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4881. ct: [0x46f2fb34,0x2d6f0ab4,0x77476fc5,0x01242c5f] },
  4882. { key: [0x28d46cff,0xa1585331,0x94214a91,0xe712fc2b,0x45b51807,0x6675affd,0x910edeca,0x5f41ac64],
  4883. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4884. ct: [0x4bf3b0a6,0x9aeb6657,0x794f2901,0xb1440ad4] },
  4885. { key: [0xc1cc358b,0x449909a1,0x9436cfbb,0x3f852ef8,0xbcb5ed12,0xac705832,0x5f56e609,0x9aab1a1c],
  4886. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4887. ct: [0x35206527,0x2169abf9,0x85684392,0x7d0674fd] },
  4888. { key: [0x984ca75f,0x4ee8d706,0xf46c2d98,0xc0bf4a45,0xf5b00d79,0x1c2dfeb1,0x91b5ed8e,0x420fd627],
  4889. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4890. ct: [0x4307456a,0x9e67813b,0x452e15fa,0x8fffe398] },
  4891. { key: [0xb43d08a4,0x47ac8609,0xbaadae4f,0xf12918b9,0xf68fc165,0x3f126922,0x2f123981,0xded7a92f],
  4892. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4893. ct: [0x46634466,0x07354989,0x477a5c6f,0x0f007ef4] },
  4894. { key: [0x1d85a181,0xb54cde51,0xf0e09809,0x5b2962fd,0xc93b51fe,0x9b88602b,0x3f54130b,0xf76a5bd9],
  4895. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4896. ct: [0x531c2c38,0x344578b8,0x4d50b3c9,0x17bbb6e1] },
  4897. { key: [0xdc0eba1f,0x2232a787,0x9ded34ed,0x8428eeb8,0x769b056b,0xbaf8ad77,0xcb65c354,0x1430b4cf],
  4898. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4899. ct: [0xfc6aec90,0x63234800,0x05c58e7e,0x1ab004ad] },
  4900. { key: [0xf8be9ba6,0x15c5a952,0xcabbca24,0xf68f8593,0x039624d5,0x24c816ac,0xda2c9183,0xbd917cb9],
  4901. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4902. ct: [0xa3944b95,0xca0b5204,0x3584ef02,0x151926a8] },
  4903. { key: [0x797f8b3d,0x176dac5b,0x7e34a2d5,0x39c4ef36,0x7a16f863,0x5f626473,0x7591c5c0,0x7bf57a3e],
  4904. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4905. ct: [0xa74289fe,0x73a4c123,0xca189ea1,0xe1b49ad5] },
  4906. { key: [0x6838d40c,0xaf927749,0xc13f0329,0xd331f448,0xe202c73e,0xf52c5f73,0xa37ca635,0xd4c47707],
  4907. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4908. ct: [0xb91d4ea4,0x488644b5,0x6cf0812f,0xa7fcf5fc] },
  4909. { key: [0xccd1bc3c,0x659cd3c5,0x9bc43748,0x4e3c5c72,0x4441da8d,0x6e90ce55,0x6cd57d07,0x52663bbc],
  4910. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4911. ct: [0x304f81ab,0x61a80c2e,0x743b94d5,0x002a126b] },
  4912. { key: [0x13428b5e,0x4c005e06,0x36dd3384,0x05d173ab,0x135dec2a,0x25c22c5d,0xf0722d69,0xdcc43887],
  4913. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4914. ct: [0x649a7154,0x5378c783,0xe368c9ad,0xe7114f6c] },
  4915. { key: [0x07eb03a0,0x8d291d1b,0x07408bf3,0x512ab40c,0x91097ac7,0x7461aad4,0xbb859647,0xf74f00ee],
  4916. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4917. ct: [0x47cb030d,0xa2ab051d,0xfc6c4bf6,0x910d12bb] },
  4918. { key: [0x90143ae2,0x0cd78c5d,0x8ebdd6cb,0x9dc17624,0x27a96c78,0xc639bccc,0x41a61424,0x564eafe1],
  4919. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4920. ct: [0x798c7c00,0x5dee432b,0x2c8ea5df,0xa381ecc3] },
  4921. { key: [0xb7a5794d,0x52737475,0xd53d5a37,0x7200849b,0xe0260a67,0xa2b22ced,0x8bbef128,0x82270d07],
  4922. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4923. ct: [0x637c31dc,0x2591a076,0x36f646b7,0x2daabbe7] },
  4924. { key: [0xfca02f3d,0x5011cfc5,0xc1e23165,0xd413a049,0xd4526a99,0x1827424d,0x896fe343,0x5e0bf68e],
  4925. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4926. ct: [0x179a49c7,0x12154bbf,0xfbe6e7a8,0x4a18e220] },
  4927. { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4928. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4929. ct: [0xe35a6dcb,0x19b201a0,0x1ebcfa8a,0xa22b5759] },
  4930. { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4931. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4932. ct: [0xb29169cd,0xcf2d83e8,0x38125a12,0xee6aa400] },
  4933. { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4934. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4935. ct: [0xd8f3a72f,0xc3cdf74d,0xfaf6c3e6,0xb97b2fa6] },
  4936. { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4937. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4938. ct: [0x1c777679,0xd50037c7,0x9491a94d,0xa76a9a35] },
  4939. { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4940. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4941. ct: [0x9cf4893e,0xcafa0a02,0x47a898e0,0x40691559] },
  4942. { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4943. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4944. ct: [0x8fbb4137,0x03735326,0x310a269b,0xd3aa94b2] },
  4945. { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4946. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4947. ct: [0x60e32246,0xbed2b0e8,0x59e55c1c,0xc6b26502] },
  4948. { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4949. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4950. ct: [0xec52a212,0xf80a09df,0x6317021b,0xc2a9819e] },
  4951. { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4952. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4953. ct: [0xf23e5b60,0x0eb70dbc,0xcf6c0b1d,0x9a68182c] },
  4954. { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4955. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4956. ct: [0xa3f599d6,0x3a82a968,0xc33fe265,0x90745970] },
  4957. { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4958. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4959. ct: [0xd1ccb9b1,0x337002cb,0xac42c520,0xb5d67722] },
  4960. { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4961. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4962. ct: [0xcc111f6c,0x37cf40a1,0x159d00fb,0x59fb0488] },
  4963. { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4964. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4965. ct: [0xdc43b51a,0xb6090523,0x72989a26,0xe9cdd714] },
  4966. { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4967. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4968. ct: [0x4dcede8d,0xa9e2578f,0x39703d44,0x33dc6459] },
  4969. { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4970. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4971. ct: [0x1a4c1c26,0x3bbccfaf,0xc1178289,0x4685e3a8] },
  4972. { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4973. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4974. ct: [0x937ad848,0x80db5061,0x3423d6d5,0x27a2823d] },
  4975. { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4976. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4977. ct: [0x610b71df,0xc688e150,0xd8152c5b,0x35ebc14d] },
  4978. { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4979. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4980. ct: [0x27ef2495,0xdabf3238,0x85aab39c,0x80f18d8b] },
  4981. { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4982. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4983. ct: [0x633cafea,0x395bc03a,0xdae3a1e2,0x068e4b4e] },
  4984. { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4985. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4986. ct: [0x6e1b482b,0x53761cf6,0x31819b74,0x9a6f3724] },
  4987. { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4988. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4989. ct: [0x976e6f85,0x1ab52c77,0x1998dbb2,0xd71c75a9] },
  4990. { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4991. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4992. ct: [0x85f2ba84,0xf8c307cf,0x525e124c,0x3e22e6cc] },
  4993. { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4994. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4995. ct: [0x6bcca98b,0xf6a835fa,0x64955f72,0xde4115fe] },
  4996. { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  4997. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  4998. ct: [0x2c75e2d3,0x6eebd654,0x11f14fd0,0xeb1d2a06] },
  4999. { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5000. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5001. ct: [0xbd492950,0x06250ffc,0xa5100b60,0x07a0eade] },
  5002. { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5003. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5004. ct: [0xa190527d,0x0ef7c70f,0x459cd394,0x0df316ec] },
  5005. { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5006. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5007. ct: [0xbbd1097a,0x62433f79,0x449fa97d,0x4ee80dbf] },
  5008. { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5009. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5010. ct: [0x07058e40,0x8f5b99b0,0xe0f061a1,0x761b5b3b] },
  5011. { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5012. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5013. ct: [0x5fd1f13f,0xa0f31e37,0xfabde328,0xf894eac2] },
  5014. { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5015. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5016. ct: [0xfc4af7c9,0x48df26e2,0xef3e01c1,0xee5b8f6f] },
  5017. { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5018. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5019. ct: [0x829fd720,0x8fb92d44,0xa074a677,0xee9861ac] },
  5020. { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5021. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5022. ct: [0xad9fc613,0xa703251b,0x54c64a0e,0x76431711] },
  5023. { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5024. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5025. ct: [0x33ac9ecc,0xc4cc75e2,0x711618f8,0x0b1548e8] },
  5026. { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5027. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5028. ct: [0x2025c74b,0x8ad8f4cd,0xa17ee204,0x9c4c902d] },
  5029. { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5030. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5031. ct: [0xf85ca05f,0xe528f1ce,0x9b790166,0xe8d551e7] },
  5032. { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5033. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5034. ct: [0x6f6238d8,0x966048d4,0x967154e0,0xdad5a6c9] },
  5035. { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5036. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5037. ct: [0xf2b21b4e,0x7640a9b3,0x346de8b8,0x2fb41e49] },
  5038. { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5039. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5040. ct: [0xf836f251,0xad1d11d4,0x9dc34462,0x8b1884e1] },
  5041. { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5042. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5043. ct: [0x077e9470,0xae7abea5,0xa9769d49,0x182628c3] },
  5044. { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5045. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5046. ct: [0xe0dcc2d2,0x7fc98656,0x33f85223,0xcf0d611f] },
  5047. { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5048. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5049. ct: [0xbe66cfea,0x2fecd6bf,0x0ec7b435,0x2c99bcaa] },
  5050. { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5051. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5052. ct: [0xdf31144f,0x87a2ef52,0x3facdcf2,0x1a427804] },
  5053. { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5054. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5055. ct: [0xb5bb0f56,0x29fb6aae,0x5e1839a3,0xc3625d63] },
  5056. { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5057. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5058. ct: [0x3c9db333,0x5306fe1e,0xc612bdbf,0xae6b6028] },
  5059. { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5060. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5061. ct: [0x3dd5c346,0x34a79d3c,0xfcc83397,0x60e6f5f4] },
  5062. { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5063. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5064. ct: [0x82bda118,0xa3ed7af3,0x14fa2ccc,0x5c07b761] },
  5065. { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5066. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5067. ct: [0x2937a64f,0x7d4f46fe,0x6fea3b34,0x9ec78e38] },
  5068. { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5069. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5070. ct: [0x225f068c,0x28476605,0x735ad671,0xbb8f39f3] },
  5071. { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5072. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5073. ct: [0xae682c5e,0xcd71898e,0x08942ac9,0xaa89875c] },
  5074. { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5075. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5076. ct: [0x5e031cb9,0xd676c302,0x2d7f2622,0x7e85c38f] },
  5077. { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5078. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5079. ct: [0xa78463fb,0x064db5d5,0x2bb64bfe,0xf64f2dda] },
  5080. { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5081. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5082. ct: [0x8aa9b75e,0x78459387,0x6c53a00e,0xae5af52b] },
  5083. { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5084. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5085. ct: [0x3f84566d,0xf23da48a,0xf692722f,0xe980573a] },
  5086. { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5087. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5088. ct: [0x31690b5e,0xd41c7eb4,0x2a1e8327,0x0a7ff0e6] },
  5089. { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5090. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5091. ct: [0x77dd7702,0x646d55f0,0x8365e477,0xd3590eda] },
  5092. { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5093. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5094. ct: [0x4c022ac6,0x2b3cb78d,0x739cc67b,0x3e20bb7e] },
  5095. { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5096. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5097. ct: [0x092fa137,0xce18b5df,0xe7906f55,0x0bb13370] },
  5098. { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5099. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5100. ct: [0x3e0cdadf,0x2e68353c,0x0027672c,0x97144dd3] },
  5101. { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5102. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5103. ct: [0xd8c4b200,0xb383fc1f,0x2b2ea677,0x618a1d27] },
  5104. { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5105. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5106. ct: [0x11825f99,0xb0e9bb34,0x77c1c071,0x3b015aac] },
  5107. { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5108. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5109. ct: [0xf8b9fffb,0x5c187f7d,0xdc7ab10f,0x4fb77576] },
  5110. { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5111. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5112. ct: [0xffb4e87a,0x32b37d6f,0x2c8328d3,0xb5377802] },
  5113. { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5114. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5115. ct: [0xd276c13a,0x5d220f4d,0xa9224e74,0x896391ce] },
  5116. { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5117. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5118. ct: [0x94efe7a0,0xe2e031e2,0x536da01d,0xf799c927] },
  5119. { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5120. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5121. ct: [0x8f8fd822,0x680a8597,0x4e53a5a8,0xeb9d38de] },
  5122. { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5123. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5124. ct: [0xe0f0a91b,0x2e45f8cc,0x37b7805a,0x3042588d] },
  5125. { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5126. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5127. ct: [0x597a6252,0x255e46d6,0x364dbeed,0xa31e279c] },
  5128. { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5129. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5130. ct: [0xf51a0f69,0x4442b8f0,0x5571797f,0xec7ee8bf] },
  5131. { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5132. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5133. ct: [0x9ff071b1,0x65b5198a,0x93dddeeb,0xc54d09b5] },
  5134. { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5135. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5136. ct: [0xc20a19fd,0x5758b0c4,0xbc1a5df8,0x9cf73877] },
  5137. { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5138. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5139. ct: [0x97120166,0x307119ca,0x2280e931,0x5668e96f] },
  5140. { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5141. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5142. ct: [0x4b3b9f1e,0x099c2a09,0xdc091e90,0xe4f18f0a] },
  5143. { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5144. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5145. ct: [0xeb040b89,0x1d4b37f6,0x851f7ec2,0x19cd3f6d] },
  5146. { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5147. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5148. ct: [0x9f0fdec0,0x8b7fd79a,0xa39535be,0xa42db92a] },
  5149. { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5150. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5151. ct: [0x2e70f168,0xfc74bf91,0x1df240bc,0xd2cef236] },
  5152. { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5153. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5154. ct: [0x462ccd7f,0x5fd1108d,0xbc152f3c,0xacad328b] },
  5155. { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5156. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5157. ct: [0xa4af534a,0x7d0b643a,0x01868785,0xd86dfb95] },
  5158. { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5159. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5160. ct: [0xab980296,0x197e1a50,0x22326c31,0xda4bf6f3] },
  5161. { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5162. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5163. ct: [0xf97d57b3,0x333b6281,0xb07d486d,0xb2d4e20c] },
  5164. { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5165. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5166. ct: [0xf33fa367,0x20231afe,0x4c759ade,0x6bd62eb6] },
  5167. { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5168. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5169. ct: [0xfdcfac0c,0x02ca5383,0x43c68117,0xe0a15938] },
  5170. { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5171. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5172. ct: [0xad4916f5,0xee5772be,0x764fc027,0xb8a6e539] },
  5173. { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5174. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5175. ct: [0x2e16873e,0x1678610d,0x7e14c02d,0x002ea845] },
  5176. { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5177. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5178. ct: [0x4e6e627c,0x1acc5134,0x0053a823,0x6d579576] },
  5179. { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5180. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5181. ct: [0xab0c8410,0xaeeead92,0xfeec1eb4,0x30d652cb] },
  5182. { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5183. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5184. ct: [0xe86f7e23,0xe835e114,0x977f60e1,0xa592202e] },
  5185. { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5186. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5187. ct: [0xe68ad505,0x5a367041,0xfade09d9,0xa70a794b] },
  5188. { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5189. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5190. ct: [0x0791823a,0x3c666bb6,0x162825e7,0x8606a7fe] },
  5191. { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5192. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5193. ct: [0xdcca366a,0x9bf47b7b,0x868b77e2,0x5c18a364] },
  5194. { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5195. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5196. ct: [0x684c9efc,0x237e4a44,0x2965f84b,0xce20247a] },
  5197. { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5198. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5199. ct: [0xa858411f,0xfbe63fdb,0x9c8aa1bf,0xaed67b52] },
  5200. { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5201. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5202. ct: [0x04bc3da2,0x179c3015,0x498b0e03,0x910db5b8] },
  5203. { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5204. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5205. ct: [0x40071eea,0xb3f935db,0xc25d0084,0x1460260f] },
  5206. { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5207. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5208. ct: [0x0ebd7c30,0xed2016e0,0x8ba806dd,0xb008bcc8] },
  5209. { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5210. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5211. ct: [0x15c6becf,0x0f4cec71,0x29cbd22d,0x1a79b1b8] },
  5212. { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5213. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5214. ct: [0x0aeede5b,0x91f72170,0x0e9e62ed,0xbf60b781] },
  5215. { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5216. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5217. ct: [0x266581af,0x0dcfbed1,0x585e0a24,0x2c64b8df] },
  5218. { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5219. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5220. ct: [0x6693dc91,0x1662ae47,0x3216ba22,0x189a511a] },
  5221. { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5222. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5223. ct: [0x7606fa36,0xd86473e6,0xfb3a1bb0,0xe2c0adf5] },
  5224. { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5225. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5226. ct: [0x112078e9,0xe11fbb78,0xe26ffb88,0x99e96b9a] },
  5227. { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5228. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5229. ct: [0x40b264e9,0x21e9e4a8,0x2694589e,0xf3798262] },
  5230. { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5231. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5232. ct: [0x8d4595cb,0x4fa70267,0x15f55bd6,0x8e2882f9] },
  5233. { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5234. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5235. ct: [0xb588a302,0xbdbc0919,0x7df1edae,0x68926ed9] },
  5236. { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5237. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5238. ct: [0x33f75023,0x90b8a4a2,0x21cfecd0,0x666624ba] },
  5239. { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
  5240. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5241. ct: [0x3d20253a,0xdbce3be2,0x373767c4,0xd822c566] },
  5242. { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
  5243. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5244. ct: [0xa42734a3,0x929bf84c,0xf0116c98,0x56a3c18c] },
  5245. { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
  5246. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5247. ct: [0xe3abc493,0x9457422b,0xb957da3c,0x56938c6d] },
  5248. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
  5249. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5250. ct: [0x972bdd2e,0x7c525130,0xfadc8f76,0xfc6f4b3f] },
  5251. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
  5252. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5253. ct: [0x84a83d7b,0x94c699cb,0xcb8a7d9b,0x61f64093] },
  5254. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
  5255. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5256. ct: [0xce61d635,0x14aded03,0xd43e6ebf,0xc3a9001f] },
  5257. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
  5258. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5259. ct: [0x6c839dd5,0x8eeae6b8,0xa36af48e,0xd63d2dc9] },
  5260. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
  5261. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5262. ct: [0xcd5ece55,0xb8da3bf6,0x22c4100d,0xf5de46f9] },
  5263. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
  5264. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5265. ct: [0x3b6f46f4,0x0e0ac5fc,0x0a9c1105,0xf800f48d] },
  5266. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
  5267. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5268. ct: [0xba26d47d,0xa3aeb028,0xde4fb5b3,0xa854a24b] },
  5269. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
  5270. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5271. ct: [0x87f53bf6,0x20d36772,0x68445212,0x904389d5] },
  5272. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
  5273. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5274. ct: [0x10617d28,0xb5e0f460,0x5492b182,0xa5d7f9f6] },
  5275. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
  5276. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5277. ct: [0x9aaec4fa,0xbbf6fae2,0xa71feff0,0x2e372b39] },
  5278. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
  5279. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5280. ct: [0x3a90c62d,0x88b5c428,0x09abf782,0x488ed130] },
  5281. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
  5282. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5283. ct: [0xf1f1c5a4,0x0899e157,0x72857ccb,0x65c7a09a] },
  5284. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
  5285. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5286. ct: [0x190843d2,0x9b25a389,0x7c692ce1,0xdd81ee52] },
  5287. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
  5288. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5289. ct: [0xa866bc65,0xb6941d86,0xe8420a7f,0xfb0964db] },
  5290. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
  5291. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5292. ct: [0x8193c6ff,0x85225ced,0x4255e92f,0x6e078a14] },
  5293. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
  5294. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5295. ct: [0x9661cb24,0x24d7d4a3,0x80d547f9,0xe7ec1cb9] },
  5296. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
  5297. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5298. ct: [0x86f93d9e,0xc08453a0,0x71e2e287,0x7877a9c8] },
  5299. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
  5300. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5301. ct: [0x27eefa80,0xce6a4a9d,0x598e3fec,0x365434d2] },
  5302. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
  5303. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5304. ct: [0xd6206844,0x4578e3ab,0x39ce7ec9,0x5dd045dc] },
  5305. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
  5306. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5307. ct: [0xb5f71d4d,0xd9a71fe5,0xd8bc8ba7,0xe6ea3048] },
  5308. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
  5309. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5310. ct: [0x6825a347,0xac479d4f,0x9d95c5cb,0x8d3fd7e9] },
  5311. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
  5312. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5313. ct: [0xe3714e94,0xa5778955,0xcc034635,0x8e94783a] },
  5314. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
  5315. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5316. ct: [0xd836b44b,0xb29e0c7d,0x89fa4b2d,0x4b677d2a] },
  5317. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
  5318. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5319. ct: [0x5d454b75,0x021d76d4,0xb84f873a,0x8f877b92] },
  5320. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
  5321. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5322. ct: [0xc3498f7e,0xced20953,0x14fc2811,0x5885b33f] },
  5323. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
  5324. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5325. ct: [0x6e668856,0x539ad8e4,0x05bd123f,0xe6c88530] },
  5326. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
  5327. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5328. ct: [0x8680db7f,0x3a87b860,0x5543cfdb,0xe6754076] },
  5329. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
  5330. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5331. ct: [0x6c5d03b1,0x3069c365,0x8b3179be,0x91b0800c] },
  5332. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
  5333. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5334. ct: [0xef1b384a,0xc4d93eda,0x00c92add,0x0995ea5f] },
  5335. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
  5336. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5337. ct: [0xbf811580,0x5471741b,0xd5ad20a0,0x3944790f] },
  5338. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
  5339. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5340. ct: [0xc64c24b6,0x894b038b,0x3c0d09b1,0xdf068b0b] },
  5341. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
  5342. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5343. ct: [0x3967a10c,0xffe27d01,0x78545fbf,0x6a40544b] },
  5344. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
  5345. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5346. ct: [0x7c85e9c9,0x5de1a9ec,0x5a5363a8,0xa053472d] },
  5347. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
  5348. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5349. ct: [0xa9eec03c,0x8abec7ba,0x68315c2c,0x8c2316e0] },
  5350. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
  5351. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5352. ct: [0xcac8e414,0xc2f38822,0x7ae14986,0xfc983524] },
  5353. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
  5354. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5355. ct: [0x5d942b7f,0x4622ce05,0x6c3ce3ce,0x5f1dd9d6] },
  5356. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
  5357. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5358. ct: [0xd240d648,0xce21a302,0x0282c3f1,0xb528a0b6] },
  5359. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
  5360. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5361. ct: [0x45d089c3,0x6d5c5a4e,0xfc689e3b,0x0de10dd5] },
  5362. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
  5363. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5364. ct: [0xb4da5df4,0xbecb5462,0xe03a0ed0,0x0d295629] },
  5365. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
  5366. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5367. ct: [0xdcf4e129,0x136c1a4b,0x7a0f3893,0x5cc34b2b] },
  5368. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
  5369. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5370. ct: [0xd9a4c761,0x8b0ce48a,0x3d5aee1a,0x1c0114c4] },
  5371. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
  5372. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5373. ct: [0xca352df0,0x25c65c7b,0x0bf306fb,0xee0f36ba] },
  5374. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
  5375. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5376. ct: [0x238aca23,0xfd3409f3,0x8af63378,0xed2f5473] },
  5377. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
  5378. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5379. ct: [0x59836a0e,0x06a79691,0xb36667d5,0x380d8188] },
  5380. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
  5381. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5382. ct: [0x33905080,0xf7acf1cd,0xae0a91fc,0x3e85aee4] },
  5383. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
  5384. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5385. ct: [0x72c9e464,0x6dbc3d63,0x20fc6689,0xd93e8833] },
  5386. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
  5387. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5388. ct: [0xba77413d,0xea5925b7,0xf5417ea4,0x7ff19f59] },
  5389. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
  5390. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5391. ct: [0x6cae8129,0xf843d86d,0xc786a0fb,0x1a184970] },
  5392. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
  5393. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5394. ct: [0xfcfefb53,0x4100796e,0xebbd9902,0x06754e19] },
  5395. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
  5396. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5397. ct: [0x8c791d5f,0xdddf470d,0xa04f3e6d,0xc4a5b5b5] },
  5398. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
  5399. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5400. ct: [0xc93bbdc0,0x7a4611ae,0x4bb266ea,0x5034a387] },
  5401. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
  5402. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5403. ct: [0xc102e38e,0x489aa747,0x62f3efc5,0xbb23205a] },
  5404. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
  5405. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5406. ct: [0x93201481,0x665cbafc,0x1fcc220b,0xc545fb3d] },
  5407. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
  5408. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5409. ct: [0x4960757e,0xc6ce68cf,0x195e454c,0xfd0f32ca] },
  5410. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
  5411. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5412. ct: [0xfeec7ce6,0xa6cbd07c,0x04341673,0x7f1bbb33] },
  5413. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
  5414. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5415. ct: [0x11c54139,0x04487a80,0x5d70a8ed,0xd9c35527] },
  5416. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
  5417. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5418. ct: [0x347846b2,0xb2e36f1f,0x0324c86f,0x7f1b98e2] },
  5419. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
  5420. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5421. ct: [0x332eee1a,0x0cbd19ca,0x2d69b426,0x894044f0] },
  5422. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
  5423. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5424. ct: [0x866b5b39,0x77ba6efa,0x5128efbd,0xa9ff03cd] },
  5425. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
  5426. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5427. ct: [0xcc1445ee,0x94c0f08c,0xdee5c344,0xecd1e233] },
  5428. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
  5429. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5430. ct: [0xbe288319,0x029363c2,0x622feba4,0xb05dfdfe] },
  5431. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
  5432. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5433. ct: [0xcfd18755,0x23f3cd21,0xc395651e,0x6ee15e56] },
  5434. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
  5435. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5436. ct: [0xcb5a4086,0x57837c53,0xbf16f9d8,0x465dce19] },
  5437. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
  5438. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5439. ct: [0xca0bf42c,0xb107f55c,0xcff2fc09,0xee08ca15] },
  5440. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
  5441. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5442. ct: [0xfdd9bbb4,0xa7dc2e4a,0x23536a58,0x80a2db67] },
  5443. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
  5444. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5445. ct: [0xede447b3,0x62c48499,0x3dec9442,0xa3b46aef] },
  5446. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
  5447. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5448. ct: [0x10dffb05,0x904bff7c,0x4781df78,0x0ad26837] },
  5449. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
  5450. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5451. ct: [0xc33bc13e,0x8de88ac2,0x5232aa74,0x96398783] },
  5452. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
  5453. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5454. ct: [0xca359c70,0x803a3b2a,0x3d542e87,0x81dea975] },
  5455. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
  5456. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5457. ct: [0xbcc65b52,0x6f88d05b,0x89ce8a52,0x021fdb06] },
  5458. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
  5459. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5460. ct: [0xdb91a388,0x55c8c464,0x3851fbfb,0x358b0109] },
  5461. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
  5462. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5463. ct: [0xca6e8893,0xa114ae8e,0x27d5ab03,0xa5499610] },
  5464. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
  5465. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5466. ct: [0x6629d2b8,0xdf97da72,0x8cdd8b1e,0x7f945077] },
  5467. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
  5468. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5469. ct: [0x4570a5a1,0x8cfc0dd5,0x82f1d88d,0x5c9a1720] },
  5470. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
  5471. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5472. ct: [0x72bc65aa,0x8e89562e,0x3f274d45,0xaf1cd10b] },
  5473. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
  5474. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5475. ct: [0x98551da1,0xa6503276,0xae1c7762,0x5f9ea615] },
  5476. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
  5477. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5478. ct: [0x0ddfe51c,0xed7e3f4a,0xe927daa3,0xfe452cee] },
  5479. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
  5480. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5481. ct: [0xdb826251,0xe4ce384b,0x80218b0e,0x1da1dd4c] },
  5482. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
  5483. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5484. ct: [0x2cacf728,0xb88abbad,0x7011ed0e,0x64a1680c] },
  5485. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
  5486. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5487. ct: [0x330d8ee7,0xc5677e09,0x9ac74c99,0x94ee4cfb] },
  5488. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
  5489. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5490. ct: [0xedf61ae3,0x62e882dd,0xc0167474,0xa7a77f3a] },
  5491. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
  5492. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5493. ct: [0x6168b00b,0xa7859e09,0x70ecfd75,0x7efecf7c] },
  5494. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
  5495. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5496. ct: [0xd1415447,0x866230d2,0x8bb1ea18,0xa4cdfd02] },
  5497. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
  5498. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5499. ct: [0x51618339,0x2f7a8763,0xafec68a0,0x60264141] },
  5500. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
  5501. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5502. ct: [0x77565c8d,0x73cfd413,0x0b4aa14d,0x8911710f] },
  5503. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
  5504. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5505. ct: [0x37232a4e,0xd21ccc27,0xc19c9610,0x078cabac] },
  5506. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
  5507. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5508. ct: [0x804f32ea,0x71828c7d,0x329077e7,0x12231666] },
  5509. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
  5510. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5511. ct: [0xd64424f2,0x3cb97215,0xe9c2c6f2,0x8d29eab7] },
  5512. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
  5513. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5514. ct: [0x023e82b5,0x33f68c75,0xc238cebd,0xb2ee89a2] },
  5515. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
  5516. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5517. ct: [0x193a3d24,0x157a51f1,0xee0893f6,0x777417e7] },
  5518. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
  5519. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5520. ct: [0x84ecacfc,0xd400084d,0x078612b1,0x945f2ef5] },
  5521. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
  5522. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5523. ct: [0x1dcd8bb1,0x73259eb3,0x3a5242b0,0xde31a455] },
  5524. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
  5525. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5526. ct: [0x35e9eddb,0xc375e792,0xc19992c1,0x9165012b] },
  5527. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
  5528. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5529. ct: [0x8a772231,0xc01dfdd7,0xc98e4cfd,0xdcc0807a] },
  5530. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
  5531. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5532. ct: [0x6eda7ff6,0xb8319180,0xff0d6e65,0x629d01c3] },
  5533. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
  5534. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5535. ct: [0xc267ef0e,0x2d01a993,0x944dd397,0x101413cb] },
  5536. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
  5537. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5538. ct: [0xe9f80e9d,0x845bcc0f,0x62926af7,0x2eabca39] },
  5539. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
  5540. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5541. ct: [0x67029907,0x27aa0878,0x637b45dc,0xd3a3b074] },
  5542. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  5543. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5544. ct: [0x2e2e647d,0x5360e092,0x30a5d738,0xca33471e] },
  5545. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  5546. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5547. ct: [0x1f56413c,0x7add6f43,0xd1d56e4f,0x02190330] },
  5548. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
  5549. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5550. ct: [0x69cd0606,0xe15af729,0xd6bca143,0x016d9842] },
  5551. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
  5552. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5553. ct: [0xa085d7c1,0xa500873a,0x20099c4c,0xaa3c3f5b] },
  5554. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
  5555. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5556. ct: [0x4fc0d230,0xf8891415,0xb87b83f9,0x5f2e09d1] },
  5557. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
  5558. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5559. ct: [0x4327d08c,0x523d8eba,0x697a4336,0x507d1f42] },
  5560. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
  5561. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5562. ct: [0x7a15aab8,0x2701efa5,0xae36ab1d,0x6b76290f] },
  5563. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
  5564. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5565. ct: [0x5bf00518,0x93a18bb3,0x0e139a58,0xfed0fa54] },
  5566. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  5567. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5568. ct: [0x97e8adf6,0x5638fd9c,0xdf3bc22c,0x17fe4dbd] },
  5569. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  5570. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5571. ct: [0x1ee6ee32,0x6583a058,0x6491c964,0x18d1a35d] },
  5572. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
  5573. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5574. ct: [0x26b549c2,0xec756f82,0xecc48008,0xe529956b] },
  5575. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
  5576. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5577. ct: [0x70377b6d,0xa669b072,0x129e057c,0xc28e9ca5] },
  5578. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  5579. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5580. ct: [0x9c94b8b0,0xcb8bcc91,0x9072262b,0x3fa05ad9] },
  5581. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  5582. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5583. ct: [0x2fbb83df,0xd0d7abcb,0x05cd28ca,0xd2dfb523] },
  5584. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  5585. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5586. ct: [0x96877803,0xde77744b,0xb970d0a9,0x1f4debae] },
  5587. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  5588. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5589. ct: [0x7379f337,0x0cf6e5ce,0x12ae5969,0xc8eea312] },
  5590. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  5591. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5592. ct: [0x02dc99fa,0x3d4f98ce,0x80985e72,0x33889313] },
  5593. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  5594. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5595. ct: [0x1e38e759,0x075ba5ca,0xb6457da5,0x1844295a] },
  5596. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
  5597. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5598. ct: [0x70bed8db,0xf615868a,0x1f9d9b05,0xd3e7a267] },
  5599. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
  5600. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5601. ct: [0x234b148b,0x8cb1d8c3,0x2b287e89,0x6903d150] },
  5602. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  5603. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5604. ct: [0x294b033d,0xf4da853f,0x4be3e243,0xf7e513f4] },
  5605. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  5606. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5607. ct: [0x3f58c950,0xf0367160,0xadec45f2,0x441e7411] },
  5608. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  5609. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5610. ct: [0x37f65553,0x6a704e5a,0xce182d74,0x2a820cf4] },
  5611. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  5612. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5613. ct: [0xea7bd6bb,0x63418731,0xaeac790f,0xe42d61e8] },
  5614. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  5615. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5616. ct: [0xe74a4c99,0x9b4c064e,0x48bb1e41,0x3f51e5ea] },
  5617. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  5618. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5619. ct: [0xba9ebefd,0xb4ccf30f,0x296cecb3,0xbc1943e8] },
  5620. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
  5621. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5622. ct: [0x3194367a,0x4898c502,0xc13bb747,0x8640a72d] },
  5623. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
  5624. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5625. ct: [0xda797713,0x263d6f33,0xa5478a65,0xef60d412] },
  5626. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  5627. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5628. ct: [0xd1ac39bb,0x1ef86b9c,0x1344f214,0x679aa376] },
  5629. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  5630. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5631. ct: [0x2fdea9e6,0x50532be5,0xbc0e7325,0x337fd363] },
  5632. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  5633. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5634. ct: [0xd3a204db,0xd9c2af15,0x8b6ca67a,0x5156ce4a] },
  5635. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  5636. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5637. ct: [0x3a0a0e75,0xa8da3673,0x5aee6684,0xd965a778] },
  5638. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  5639. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5640. ct: [0x52fc3e62,0x0492ea99,0x641ea168,0xda5b6d52] },
  5641. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  5642. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5643. ct: [0xd2e0c7f1,0x5b477246,0x7d2cfc87,0x3000b2ca] },
  5644. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  5645. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5646. ct: [0x56353113,0x5e0c4d70,0xa38f8bdb,0x190ba04e] },
  5647. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  5648. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5649. ct: [0xa8a39a0f,0x5663f4c0,0xfe5f2d3c,0xafff421a] },
  5650. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  5651. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5652. ct: [0xd94b5e90,0xdb354c1e,0x42f61fab,0xe167b2c0] },
  5653. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  5654. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5655. ct: [0x50e6d3c9,0xb6698a7c,0xd276f96b,0x1473f35a] },
  5656. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  5657. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5658. ct: [0x9338f08e,0x0ebee969,0x05d8f2e8,0x25208f43] },
  5659. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  5660. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5661. ct: [0x8b378c86,0x672aa54a,0x3a266ba1,0x9d2580ca] },
  5662. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  5663. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5664. ct: [0xcca7c308,0x6f5f9511,0xb31233da,0x7cab9160] },
  5665. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  5666. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5667. ct: [0x5b40ff4e,0xc9be536b,0xa23035fa,0x4f06064c] },
  5668. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  5669. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5670. ct: [0x60eb5af8,0x416b2571,0x49372194,0xe8b88749] },
  5671. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  5672. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5673. ct: [0x2f005a8a,0xed8a361c,0x92e440c1,0x5520cbd1] },
  5674. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  5675. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5676. ct: [0x7b036276,0x11678a99,0x77175788,0x07a800e2] },
  5677. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  5678. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5679. ct: [0xcf78618f,0x74f6f369,0x6e0a4779,0xb90b5a77] },
  5680. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  5681. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5682. ct: [0x03720371,0xa04962ea,0xea0a852e,0x69972858] },
  5683. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  5684. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5685. ct: [0x1f8a8133,0xaa8ccf70,0xe2bd3285,0x831ca6b7] },
  5686. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  5687. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5688. ct: [0x27936bd2,0x7fb1468f,0xc8b48bc4,0x83321725] },
  5689. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  5690. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5691. ct: [0xb07d4f3e,0x2cd2ef2e,0xb5459807,0x54dfea0f] },
  5692. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  5693. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5694. ct: [0x4bf85f1b,0x5d54adbc,0x307b0a04,0x8389adcb] },
  5695. { key: [0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5696. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5697. ct: [0xe35a6dcb,0x19b201a0,0x1ebcfa8a,0xa22b5759] },
  5698. { key: [0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5699. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5700. ct: [0xb29169cd,0xcf2d83e8,0x38125a12,0xee6aa400] },
  5701. { key: [0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5702. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5703. ct: [0xd8f3a72f,0xc3cdf74d,0xfaf6c3e6,0xb97b2fa6] },
  5704. { key: [0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5705. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5706. ct: [0x1c777679,0xd50037c7,0x9491a94d,0xa76a9a35] },
  5707. { key: [0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5708. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5709. ct: [0x9cf4893e,0xcafa0a02,0x47a898e0,0x40691559] },
  5710. { key: [0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5711. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5712. ct: [0x8fbb4137,0x03735326,0x310a269b,0xd3aa94b2] },
  5713. { key: [0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5714. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5715. ct: [0x60e32246,0xbed2b0e8,0x59e55c1c,0xc6b26502] },
  5716. { key: [0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5717. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5718. ct: [0xec52a212,0xf80a09df,0x6317021b,0xc2a9819e] },
  5719. { key: [0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5720. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5721. ct: [0xf23e5b60,0x0eb70dbc,0xcf6c0b1d,0x9a68182c] },
  5722. { key: [0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5723. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5724. ct: [0xa3f599d6,0x3a82a968,0xc33fe265,0x90745970] },
  5725. { key: [0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5726. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5727. ct: [0xd1ccb9b1,0x337002cb,0xac42c520,0xb5d67722] },
  5728. { key: [0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5729. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5730. ct: [0xcc111f6c,0x37cf40a1,0x159d00fb,0x59fb0488] },
  5731. { key: [0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5732. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5733. ct: [0xdc43b51a,0xb6090523,0x72989a26,0xe9cdd714] },
  5734. { key: [0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5735. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5736. ct: [0x4dcede8d,0xa9e2578f,0x39703d44,0x33dc6459] },
  5737. { key: [0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5738. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5739. ct: [0x1a4c1c26,0x3bbccfaf,0xc1178289,0x4685e3a8] },
  5740. { key: [0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5741. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5742. ct: [0x937ad848,0x80db5061,0x3423d6d5,0x27a2823d] },
  5743. { key: [0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5744. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5745. ct: [0x610b71df,0xc688e150,0xd8152c5b,0x35ebc14d] },
  5746. { key: [0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5747. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5748. ct: [0x27ef2495,0xdabf3238,0x85aab39c,0x80f18d8b] },
  5749. { key: [0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5750. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5751. ct: [0x633cafea,0x395bc03a,0xdae3a1e2,0x068e4b4e] },
  5752. { key: [0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5753. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5754. ct: [0x6e1b482b,0x53761cf6,0x31819b74,0x9a6f3724] },
  5755. { key: [0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5756. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5757. ct: [0x976e6f85,0x1ab52c77,0x1998dbb2,0xd71c75a9] },
  5758. { key: [0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5759. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5760. ct: [0x85f2ba84,0xf8c307cf,0x525e124c,0x3e22e6cc] },
  5761. { key: [0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5762. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5763. ct: [0x6bcca98b,0xf6a835fa,0x64955f72,0xde4115fe] },
  5764. { key: [0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5765. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5766. ct: [0x2c75e2d3,0x6eebd654,0x11f14fd0,0xeb1d2a06] },
  5767. { key: [0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5768. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5769. ct: [0xbd492950,0x06250ffc,0xa5100b60,0x07a0eade] },
  5770. { key: [0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5771. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5772. ct: [0xa190527d,0x0ef7c70f,0x459cd394,0x0df316ec] },
  5773. { key: [0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5774. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5775. ct: [0xbbd1097a,0x62433f79,0x449fa97d,0x4ee80dbf] },
  5776. { key: [0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5777. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5778. ct: [0x07058e40,0x8f5b99b0,0xe0f061a1,0x761b5b3b] },
  5779. { key: [0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5780. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5781. ct: [0x5fd1f13f,0xa0f31e37,0xfabde328,0xf894eac2] },
  5782. { key: [0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5783. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5784. ct: [0xfc4af7c9,0x48df26e2,0xef3e01c1,0xee5b8f6f] },
  5785. { key: [0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5786. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5787. ct: [0x829fd720,0x8fb92d44,0xa074a677,0xee9861ac] },
  5788. { key: [0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5789. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5790. ct: [0xad9fc613,0xa703251b,0x54c64a0e,0x76431711] },
  5791. { key: [0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5792. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5793. ct: [0x33ac9ecc,0xc4cc75e2,0x711618f8,0x0b1548e8] },
  5794. { key: [0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5795. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5796. ct: [0x2025c74b,0x8ad8f4cd,0xa17ee204,0x9c4c902d] },
  5797. { key: [0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5798. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5799. ct: [0xf85ca05f,0xe528f1ce,0x9b790166,0xe8d551e7] },
  5800. { key: [0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5801. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5802. ct: [0x6f6238d8,0x966048d4,0x967154e0,0xdad5a6c9] },
  5803. { key: [0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5804. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5805. ct: [0xf2b21b4e,0x7640a9b3,0x346de8b8,0x2fb41e49] },
  5806. { key: [0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5807. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5808. ct: [0xf836f251,0xad1d11d4,0x9dc34462,0x8b1884e1] },
  5809. { key: [0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5810. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5811. ct: [0x077e9470,0xae7abea5,0xa9769d49,0x182628c3] },
  5812. { key: [0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5813. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5814. ct: [0xe0dcc2d2,0x7fc98656,0x33f85223,0xcf0d611f] },
  5815. { key: [0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5816. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5817. ct: [0xbe66cfea,0x2fecd6bf,0x0ec7b435,0x2c99bcaa] },
  5818. { key: [0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5819. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5820. ct: [0xdf31144f,0x87a2ef52,0x3facdcf2,0x1a427804] },
  5821. { key: [0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5822. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5823. ct: [0xb5bb0f56,0x29fb6aae,0x5e1839a3,0xc3625d63] },
  5824. { key: [0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5825. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5826. ct: [0x3c9db333,0x5306fe1e,0xc612bdbf,0xae6b6028] },
  5827. { key: [0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5828. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5829. ct: [0x3dd5c346,0x34a79d3c,0xfcc83397,0x60e6f5f4] },
  5830. { key: [0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5831. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5832. ct: [0x82bda118,0xa3ed7af3,0x14fa2ccc,0x5c07b761] },
  5833. { key: [0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5834. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5835. ct: [0x2937a64f,0x7d4f46fe,0x6fea3b34,0x9ec78e38] },
  5836. { key: [0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5837. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5838. ct: [0x225f068c,0x28476605,0x735ad671,0xbb8f39f3] },
  5839. { key: [0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5840. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5841. ct: [0xae682c5e,0xcd71898e,0x08942ac9,0xaa89875c] },
  5842. { key: [0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5843. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5844. ct: [0x5e031cb9,0xd676c302,0x2d7f2622,0x7e85c38f] },
  5845. { key: [0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5846. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5847. ct: [0xa78463fb,0x064db5d5,0x2bb64bfe,0xf64f2dda] },
  5848. { key: [0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5849. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5850. ct: [0x8aa9b75e,0x78459387,0x6c53a00e,0xae5af52b] },
  5851. { key: [0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5852. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5853. ct: [0x3f84566d,0xf23da48a,0xf692722f,0xe980573a] },
  5854. { key: [0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5855. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5856. ct: [0x31690b5e,0xd41c7eb4,0x2a1e8327,0x0a7ff0e6] },
  5857. { key: [0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5858. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5859. ct: [0x77dd7702,0x646d55f0,0x8365e477,0xd3590eda] },
  5860. { key: [0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5861. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5862. ct: [0x4c022ac6,0x2b3cb78d,0x739cc67b,0x3e20bb7e] },
  5863. { key: [0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5864. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5865. ct: [0x092fa137,0xce18b5df,0xe7906f55,0x0bb13370] },
  5866. { key: [0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5867. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5868. ct: [0x3e0cdadf,0x2e68353c,0x0027672c,0x97144dd3] },
  5869. { key: [0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5870. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5871. ct: [0xd8c4b200,0xb383fc1f,0x2b2ea677,0x618a1d27] },
  5872. { key: [0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5873. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5874. ct: [0x11825f99,0xb0e9bb34,0x77c1c071,0x3b015aac] },
  5875. { key: [0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5876. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5877. ct: [0xf8b9fffb,0x5c187f7d,0xdc7ab10f,0x4fb77576] },
  5878. { key: [0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5879. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5880. ct: [0xffb4e87a,0x32b37d6f,0x2c8328d3,0xb5377802] },
  5881. { key: [0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5882. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5883. ct: [0xd276c13a,0x5d220f4d,0xa9224e74,0x896391ce] },
  5884. { key: [0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5885. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5886. ct: [0x94efe7a0,0xe2e031e2,0x536da01d,0xf799c927] },
  5887. { key: [0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5888. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5889. ct: [0x8f8fd822,0x680a8597,0x4e53a5a8,0xeb9d38de] },
  5890. { key: [0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5891. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5892. ct: [0xe0f0a91b,0x2e45f8cc,0x37b7805a,0x3042588d] },
  5893. { key: [0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5894. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5895. ct: [0x597a6252,0x255e46d6,0x364dbeed,0xa31e279c] },
  5896. { key: [0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5897. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5898. ct: [0xf51a0f69,0x4442b8f0,0x5571797f,0xec7ee8bf] },
  5899. { key: [0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5900. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5901. ct: [0x9ff071b1,0x65b5198a,0x93dddeeb,0xc54d09b5] },
  5902. { key: [0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5903. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5904. ct: [0xc20a19fd,0x5758b0c4,0xbc1a5df8,0x9cf73877] },
  5905. { key: [0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5906. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5907. ct: [0x97120166,0x307119ca,0x2280e931,0x5668e96f] },
  5908. { key: [0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5909. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5910. ct: [0x4b3b9f1e,0x099c2a09,0xdc091e90,0xe4f18f0a] },
  5911. { key: [0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5912. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5913. ct: [0xeb040b89,0x1d4b37f6,0x851f7ec2,0x19cd3f6d] },
  5914. { key: [0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5915. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5916. ct: [0x9f0fdec0,0x8b7fd79a,0xa39535be,0xa42db92a] },
  5917. { key: [0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5918. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5919. ct: [0x2e70f168,0xfc74bf91,0x1df240bc,0xd2cef236] },
  5920. { key: [0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5921. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5922. ct: [0x462ccd7f,0x5fd1108d,0xbc152f3c,0xacad328b] },
  5923. { key: [0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5924. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5925. ct: [0xa4af534a,0x7d0b643a,0x01868785,0xd86dfb95] },
  5926. { key: [0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5927. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5928. ct: [0xab980296,0x197e1a50,0x22326c31,0xda4bf6f3] },
  5929. { key: [0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5930. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5931. ct: [0xf97d57b3,0x333b6281,0xb07d486d,0xb2d4e20c] },
  5932. { key: [0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5933. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5934. ct: [0xf33fa367,0x20231afe,0x4c759ade,0x6bd62eb6] },
  5935. { key: [0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5936. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5937. ct: [0xfdcfac0c,0x02ca5383,0x43c68117,0xe0a15938] },
  5938. { key: [0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5939. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5940. ct: [0xad4916f5,0xee5772be,0x764fc027,0xb8a6e539] },
  5941. { key: [0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5942. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5943. ct: [0x2e16873e,0x1678610d,0x7e14c02d,0x002ea845] },
  5944. { key: [0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5945. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5946. ct: [0x4e6e627c,0x1acc5134,0x0053a823,0x6d579576] },
  5947. { key: [0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5948. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5949. ct: [0xab0c8410,0xaeeead92,0xfeec1eb4,0x30d652cb] },
  5950. { key: [0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5951. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5952. ct: [0xe86f7e23,0xe835e114,0x977f60e1,0xa592202e] },
  5953. { key: [0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5954. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5955. ct: [0xe68ad505,0x5a367041,0xfade09d9,0xa70a794b] },
  5956. { key: [0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5957. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5958. ct: [0x0791823a,0x3c666bb6,0x162825e7,0x8606a7fe] },
  5959. { key: [0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5960. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5961. ct: [0xdcca366a,0x9bf47b7b,0x868b77e2,0x5c18a364] },
  5962. { key: [0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5963. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5964. ct: [0x684c9efc,0x237e4a44,0x2965f84b,0xce20247a] },
  5965. { key: [0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5966. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5967. ct: [0xa858411f,0xfbe63fdb,0x9c8aa1bf,0xaed67b52] },
  5968. { key: [0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5969. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5970. ct: [0x04bc3da2,0x179c3015,0x498b0e03,0x910db5b8] },
  5971. { key: [0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5972. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5973. ct: [0x40071eea,0xb3f935db,0xc25d0084,0x1460260f] },
  5974. { key: [0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5975. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5976. ct: [0x0ebd7c30,0xed2016e0,0x8ba806dd,0xb008bcc8] },
  5977. { key: [0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5978. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5979. ct: [0x15c6becf,0x0f4cec71,0x29cbd22d,0x1a79b1b8] },
  5980. { key: [0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5981. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5982. ct: [0x0aeede5b,0x91f72170,0x0e9e62ed,0xbf60b781] },
  5983. { key: [0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5984. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5985. ct: [0x266581af,0x0dcfbed1,0x585e0a24,0x2c64b8df] },
  5986. { key: [0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5987. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5988. ct: [0x6693dc91,0x1662ae47,0x3216ba22,0x189a511a] },
  5989. { key: [0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5990. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5991. ct: [0x7606fa36,0xd86473e6,0xfb3a1bb0,0xe2c0adf5] },
  5992. { key: [0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5993. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5994. ct: [0x112078e9,0xe11fbb78,0xe26ffb88,0x99e96b9a] },
  5995. { key: [0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5996. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  5997. ct: [0x40b264e9,0x21e9e4a8,0x2694589e,0xf3798262] },
  5998. { key: [0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000,0x00000000],
  5999. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6000. ct: [0x8d4595cb,0x4fa70267,0x15f55bd6,0x8e2882f9] },
  6001. { key: [0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000,0x00000000],
  6002. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6003. ct: [0xb588a302,0xbdbc0919,0x7df1edae,0x68926ed9] },
  6004. { key: [0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000,0x00000000],
  6005. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6006. ct: [0x33f75023,0x90b8a4a2,0x21cfecd0,0x666624ba] },
  6007. { key: [0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000,0x00000000],
  6008. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6009. ct: [0x3d20253a,0xdbce3be2,0x373767c4,0xd822c566] },
  6010. { key: [0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000,0x00000000],
  6011. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6012. ct: [0xa42734a3,0x929bf84c,0xf0116c98,0x56a3c18c] },
  6013. { key: [0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000,0x00000000],
  6014. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6015. ct: [0xe3abc493,0x9457422b,0xb957da3c,0x56938c6d] },
  6016. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000,0x00000000],
  6017. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6018. ct: [0x972bdd2e,0x7c525130,0xfadc8f76,0xfc6f4b3f] },
  6019. { key: [0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000,0x00000000],
  6020. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6021. ct: [0x84a83d7b,0x94c699cb,0xcb8a7d9b,0x61f64093] },
  6022. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000,0x00000000],
  6023. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6024. ct: [0xce61d635,0x14aded03,0xd43e6ebf,0xc3a9001f] },
  6025. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000,0x00000000],
  6026. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6027. ct: [0x6c839dd5,0x8eeae6b8,0xa36af48e,0xd63d2dc9] },
  6028. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000,0x00000000],
  6029. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6030. ct: [0xcd5ece55,0xb8da3bf6,0x22c4100d,0xf5de46f9] },
  6031. { key: [0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000,0x00000000],
  6032. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6033. ct: [0x3b6f46f4,0x0e0ac5fc,0x0a9c1105,0xf800f48d] },
  6034. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000,0x00000000],
  6035. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6036. ct: [0xba26d47d,0xa3aeb028,0xde4fb5b3,0xa854a24b] },
  6037. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000,0x00000000],
  6038. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6039. ct: [0x87f53bf6,0x20d36772,0x68445212,0x904389d5] },
  6040. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000,0x00000000],
  6041. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6042. ct: [0x10617d28,0xb5e0f460,0x5492b182,0xa5d7f9f6] },
  6043. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000,0x00000000],
  6044. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6045. ct: [0x9aaec4fa,0xbbf6fae2,0xa71feff0,0x2e372b39] },
  6046. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000,0x00000000],
  6047. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6048. ct: [0x3a90c62d,0x88b5c428,0x09abf782,0x488ed130] },
  6049. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000,0x00000000],
  6050. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6051. ct: [0xf1f1c5a4,0x0899e157,0x72857ccb,0x65c7a09a] },
  6052. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000,0x00000000],
  6053. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6054. ct: [0x190843d2,0x9b25a389,0x7c692ce1,0xdd81ee52] },
  6055. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000,0x00000000],
  6056. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6057. ct: [0xa866bc65,0xb6941d86,0xe8420a7f,0xfb0964db] },
  6058. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000,0x00000000],
  6059. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6060. ct: [0x8193c6ff,0x85225ced,0x4255e92f,0x6e078a14] },
  6061. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000,0x00000000],
  6062. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6063. ct: [0x9661cb24,0x24d7d4a3,0x80d547f9,0xe7ec1cb9] },
  6064. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000,0x00000000],
  6065. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6066. ct: [0x86f93d9e,0xc08453a0,0x71e2e287,0x7877a9c8] },
  6067. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000,0x00000000],
  6068. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6069. ct: [0x27eefa80,0xce6a4a9d,0x598e3fec,0x365434d2] },
  6070. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000,0x00000000],
  6071. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6072. ct: [0xd6206844,0x4578e3ab,0x39ce7ec9,0x5dd045dc] },
  6073. { key: [0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000,0x00000000],
  6074. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6075. ct: [0xb5f71d4d,0xd9a71fe5,0xd8bc8ba7,0xe6ea3048] },
  6076. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000,0x00000000],
  6077. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6078. ct: [0x6825a347,0xac479d4f,0x9d95c5cb,0x8d3fd7e9] },
  6079. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000,0x00000000],
  6080. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6081. ct: [0xe3714e94,0xa5778955,0xcc034635,0x8e94783a] },
  6082. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000,0x00000000],
  6083. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6084. ct: [0xd836b44b,0xb29e0c7d,0x89fa4b2d,0x4b677d2a] },
  6085. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000,0x00000000],
  6086. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6087. ct: [0x5d454b75,0x021d76d4,0xb84f873a,0x8f877b92] },
  6088. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000,0x00000000],
  6089. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6090. ct: [0xc3498f7e,0xced20953,0x14fc2811,0x5885b33f] },
  6091. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000,0x00000000],
  6092. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6093. ct: [0x6e668856,0x539ad8e4,0x05bd123f,0xe6c88530] },
  6094. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000,0x00000000],
  6095. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6096. ct: [0x8680db7f,0x3a87b860,0x5543cfdb,0xe6754076] },
  6097. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000,0x00000000],
  6098. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6099. ct: [0x6c5d03b1,0x3069c365,0x8b3179be,0x91b0800c] },
  6100. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000,0x00000000],
  6101. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6102. ct: [0xef1b384a,0xc4d93eda,0x00c92add,0x0995ea5f] },
  6103. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000,0x00000000],
  6104. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6105. ct: [0xbf811580,0x5471741b,0xd5ad20a0,0x3944790f] },
  6106. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000,0x00000000],
  6107. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6108. ct: [0xc64c24b6,0x894b038b,0x3c0d09b1,0xdf068b0b] },
  6109. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000,0x00000000],
  6110. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6111. ct: [0x3967a10c,0xffe27d01,0x78545fbf,0x6a40544b] },
  6112. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000,0x00000000],
  6113. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6114. ct: [0x7c85e9c9,0x5de1a9ec,0x5a5363a8,0xa053472d] },
  6115. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000,0x00000000],
  6116. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6117. ct: [0xa9eec03c,0x8abec7ba,0x68315c2c,0x8c2316e0] },
  6118. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000,0x00000000],
  6119. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6120. ct: [0xcac8e414,0xc2f38822,0x7ae14986,0xfc983524] },
  6121. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000,0x00000000],
  6122. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6123. ct: [0x5d942b7f,0x4622ce05,0x6c3ce3ce,0x5f1dd9d6] },
  6124. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000,0x00000000],
  6125. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6126. ct: [0xd240d648,0xce21a302,0x0282c3f1,0xb528a0b6] },
  6127. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000,0x00000000],
  6128. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6129. ct: [0x45d089c3,0x6d5c5a4e,0xfc689e3b,0x0de10dd5] },
  6130. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000,0x00000000],
  6131. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6132. ct: [0xb4da5df4,0xbecb5462,0xe03a0ed0,0x0d295629] },
  6133. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000,0x00000000],
  6134. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6135. ct: [0xdcf4e129,0x136c1a4b,0x7a0f3893,0x5cc34b2b] },
  6136. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000,0x00000000],
  6137. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6138. ct: [0xd9a4c761,0x8b0ce48a,0x3d5aee1a,0x1c0114c4] },
  6139. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000,0x00000000],
  6140. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6141. ct: [0xca352df0,0x25c65c7b,0x0bf306fb,0xee0f36ba] },
  6142. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000,0x00000000],
  6143. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6144. ct: [0x238aca23,0xfd3409f3,0x8af63378,0xed2f5473] },
  6145. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000,0x00000000],
  6146. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6147. ct: [0x59836a0e,0x06a79691,0xb36667d5,0x380d8188] },
  6148. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000,0x00000000],
  6149. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6150. ct: [0x33905080,0xf7acf1cd,0xae0a91fc,0x3e85aee4] },
  6151. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000,0x00000000],
  6152. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6153. ct: [0x72c9e464,0x6dbc3d63,0x20fc6689,0xd93e8833] },
  6154. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000,0x00000000],
  6155. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6156. ct: [0xba77413d,0xea5925b7,0xf5417ea4,0x7ff19f59] },
  6157. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000,0x00000000],
  6158. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6159. ct: [0x6cae8129,0xf843d86d,0xc786a0fb,0x1a184970] },
  6160. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000,0x00000000],
  6161. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6162. ct: [0xfcfefb53,0x4100796e,0xebbd9902,0x06754e19] },
  6163. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000,0x00000000],
  6164. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6165. ct: [0x8c791d5f,0xdddf470d,0xa04f3e6d,0xc4a5b5b5] },
  6166. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000,0x00000000],
  6167. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6168. ct: [0xc93bbdc0,0x7a4611ae,0x4bb266ea,0x5034a387] },
  6169. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000,0x00000000],
  6170. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6171. ct: [0xc102e38e,0x489aa747,0x62f3efc5,0xbb23205a] },
  6172. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000,0x00000000],
  6173. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6174. ct: [0x93201481,0x665cbafc,0x1fcc220b,0xc545fb3d] },
  6175. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000,0x00000000],
  6176. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6177. ct: [0x4960757e,0xc6ce68cf,0x195e454c,0xfd0f32ca] },
  6178. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000,0x00000000],
  6179. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6180. ct: [0xfeec7ce6,0xa6cbd07c,0x04341673,0x7f1bbb33] },
  6181. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000,0x00000000],
  6182. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6183. ct: [0x11c54139,0x04487a80,0x5d70a8ed,0xd9c35527] },
  6184. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000,0x00000000],
  6185. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6186. ct: [0x347846b2,0xb2e36f1f,0x0324c86f,0x7f1b98e2] },
  6187. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000,0x00000000],
  6188. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6189. ct: [0x332eee1a,0x0cbd19ca,0x2d69b426,0x894044f0] },
  6190. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000,0x00000000],
  6191. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6192. ct: [0x866b5b39,0x77ba6efa,0x5128efbd,0xa9ff03cd] },
  6193. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000,0x00000000],
  6194. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6195. ct: [0xcc1445ee,0x94c0f08c,0xdee5c344,0xecd1e233] },
  6196. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000,0x00000000],
  6197. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6198. ct: [0xbe288319,0x029363c2,0x622feba4,0xb05dfdfe] },
  6199. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000,0x00000000],
  6200. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6201. ct: [0xcfd18755,0x23f3cd21,0xc395651e,0x6ee15e56] },
  6202. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000,0x00000000],
  6203. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6204. ct: [0xcb5a4086,0x57837c53,0xbf16f9d8,0x465dce19] },
  6205. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000,0x00000000],
  6206. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6207. ct: [0xca0bf42c,0xb107f55c,0xcff2fc09,0xee08ca15] },
  6208. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000,0x00000000],
  6209. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6210. ct: [0xfdd9bbb4,0xa7dc2e4a,0x23536a58,0x80a2db67] },
  6211. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000,0x00000000],
  6212. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6213. ct: [0xede447b3,0x62c48499,0x3dec9442,0xa3b46aef] },
  6214. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000,0x00000000],
  6215. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6216. ct: [0x10dffb05,0x904bff7c,0x4781df78,0x0ad26837] },
  6217. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000,0x00000000],
  6218. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6219. ct: [0xc33bc13e,0x8de88ac2,0x5232aa74,0x96398783] },
  6220. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000,0x00000000],
  6221. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6222. ct: [0xca359c70,0x803a3b2a,0x3d542e87,0x81dea975] },
  6223. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000,0x00000000],
  6224. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6225. ct: [0xbcc65b52,0x6f88d05b,0x89ce8a52,0x021fdb06] },
  6226. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000,0x00000000],
  6227. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6228. ct: [0xdb91a388,0x55c8c464,0x3851fbfb,0x358b0109] },
  6229. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000,0x00000000],
  6230. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6231. ct: [0xca6e8893,0xa114ae8e,0x27d5ab03,0xa5499610] },
  6232. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000,0x00000000],
  6233. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6234. ct: [0x6629d2b8,0xdf97da72,0x8cdd8b1e,0x7f945077] },
  6235. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000,0x00000000],
  6236. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6237. ct: [0x4570a5a1,0x8cfc0dd5,0x82f1d88d,0x5c9a1720] },
  6238. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000,0x00000000],
  6239. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6240. ct: [0x72bc65aa,0x8e89562e,0x3f274d45,0xaf1cd10b] },
  6241. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000,0x00000000],
  6242. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6243. ct: [0x98551da1,0xa6503276,0xae1c7762,0x5f9ea615] },
  6244. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000,0x00000000],
  6245. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6246. ct: [0x0ddfe51c,0xed7e3f4a,0xe927daa3,0xfe452cee] },
  6247. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000,0x00000000],
  6248. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6249. ct: [0xdb826251,0xe4ce384b,0x80218b0e,0x1da1dd4c] },
  6250. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000,0x00000000],
  6251. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6252. ct: [0x2cacf728,0xb88abbad,0x7011ed0e,0x64a1680c] },
  6253. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000,0x00000000],
  6254. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6255. ct: [0x330d8ee7,0xc5677e09,0x9ac74c99,0x94ee4cfb] },
  6256. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000,0x00000000],
  6257. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6258. ct: [0xedf61ae3,0x62e882dd,0xc0167474,0xa7a77f3a] },
  6259. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000,0x00000000],
  6260. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6261. ct: [0x6168b00b,0xa7859e09,0x70ecfd75,0x7efecf7c] },
  6262. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000,0x00000000],
  6263. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6264. ct: [0xd1415447,0x866230d2,0x8bb1ea18,0xa4cdfd02] },
  6265. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000,0x00000000],
  6266. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6267. ct: [0x51618339,0x2f7a8763,0xafec68a0,0x60264141] },
  6268. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000,0x00000000],
  6269. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6270. ct: [0x77565c8d,0x73cfd413,0x0b4aa14d,0x8911710f] },
  6271. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000,0x00000000],
  6272. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6273. ct: [0x37232a4e,0xd21ccc27,0xc19c9610,0x078cabac] },
  6274. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000,0x00000000],
  6275. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6276. ct: [0x804f32ea,0x71828c7d,0x329077e7,0x12231666] },
  6277. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000,0x00000000],
  6278. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6279. ct: [0xd64424f2,0x3cb97215,0xe9c2c6f2,0x8d29eab7] },
  6280. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000,0x00000000],
  6281. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6282. ct: [0x023e82b5,0x33f68c75,0xc238cebd,0xb2ee89a2] },
  6283. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000,0x00000000],
  6284. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6285. ct: [0x193a3d24,0x157a51f1,0xee0893f6,0x777417e7] },
  6286. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000,0x00000000],
  6287. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6288. ct: [0x84ecacfc,0xd400084d,0x078612b1,0x945f2ef5] },
  6289. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000,0x00000000],
  6290. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6291. ct: [0x1dcd8bb1,0x73259eb3,0x3a5242b0,0xde31a455] },
  6292. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000,0x00000000],
  6293. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6294. ct: [0x35e9eddb,0xc375e792,0xc19992c1,0x9165012b] },
  6295. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000,0x00000000],
  6296. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6297. ct: [0x8a772231,0xc01dfdd7,0xc98e4cfd,0xdcc0807a] },
  6298. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000,0x00000000],
  6299. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6300. ct: [0x6eda7ff6,0xb8319180,0xff0d6e65,0x629d01c3] },
  6301. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000,0x00000000],
  6302. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6303. ct: [0xc267ef0e,0x2d01a993,0x944dd397,0x101413cb] },
  6304. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000,0x00000000],
  6305. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6306. ct: [0xe9f80e9d,0x845bcc0f,0x62926af7,0x2eabca39] },
  6307. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000,0x00000000],
  6308. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6309. ct: [0x67029907,0x27aa0878,0x637b45dc,0xd3a3b074] },
  6310. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000,0x00000000],
  6311. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6312. ct: [0x2e2e647d,0x5360e092,0x30a5d738,0xca33471e] },
  6313. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000,0x00000000],
  6314. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6315. ct: [0x1f56413c,0x7add6f43,0xd1d56e4f,0x02190330] },
  6316. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000,0x00000000],
  6317. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6318. ct: [0x69cd0606,0xe15af729,0xd6bca143,0x016d9842] },
  6319. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000,0x00000000],
  6320. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6321. ct: [0xa085d7c1,0xa500873a,0x20099c4c,0xaa3c3f5b] },
  6322. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000,0x00000000],
  6323. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6324. ct: [0x4fc0d230,0xf8891415,0xb87b83f9,0x5f2e09d1] },
  6325. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000,0x00000000],
  6326. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6327. ct: [0x4327d08c,0x523d8eba,0x697a4336,0x507d1f42] },
  6328. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000,0x00000000],
  6329. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6330. ct: [0x7a15aab8,0x2701efa5,0xae36ab1d,0x6b76290f] },
  6331. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800,0x00000000],
  6332. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6333. ct: [0x5bf00518,0x93a18bb3,0x0e139a58,0xfed0fa54] },
  6334. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00,0x00000000],
  6335. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6336. ct: [0x97e8adf6,0x5638fd9c,0xdf3bc22c,0x17fe4dbd] },
  6337. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00,0x00000000],
  6338. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6339. ct: [0x1ee6ee32,0x6583a058,0x6491c964,0x18d1a35d] },
  6340. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00,0x00000000],
  6341. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6342. ct: [0x26b549c2,0xec756f82,0xecc48008,0xe529956b] },
  6343. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80,0x00000000],
  6344. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6345. ct: [0x70377b6d,0xa669b072,0x129e057c,0xc28e9ca5] },
  6346. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0,0x00000000],
  6347. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6348. ct: [0x9c94b8b0,0xcb8bcc91,0x9072262b,0x3fa05ad9] },
  6349. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0,0x00000000],
  6350. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6351. ct: [0x2fbb83df,0xd0d7abcb,0x05cd28ca,0xd2dfb523] },
  6352. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0,0x00000000],
  6353. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6354. ct: [0x96877803,0xde77744b,0xb970d0a9,0x1f4debae] },
  6355. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8,0x00000000],
  6356. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6357. ct: [0x7379f337,0x0cf6e5ce,0x12ae5969,0xc8eea312] },
  6358. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc,0x00000000],
  6359. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6360. ct: [0x02dc99fa,0x3d4f98ce,0x80985e72,0x33889313] },
  6361. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe,0x00000000],
  6362. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6363. ct: [0x1e38e759,0x075ba5ca,0xb6457da5,0x1844295a] },
  6364. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x00000000],
  6365. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6366. ct: [0x70bed8db,0xf615868a,0x1f9d9b05,0xd3e7a267] },
  6367. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0x80000000],
  6368. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6369. ct: [0x234b148b,0x8cb1d8c3,0x2b287e89,0x6903d150] },
  6370. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xc0000000],
  6371. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6372. ct: [0x294b033d,0xf4da853f,0x4be3e243,0xf7e513f4] },
  6373. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xe0000000],
  6374. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6375. ct: [0x3f58c950,0xf0367160,0xadec45f2,0x441e7411] },
  6376. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf0000000],
  6377. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6378. ct: [0x37f65553,0x6a704e5a,0xce182d74,0x2a820cf4] },
  6379. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xf8000000],
  6380. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6381. ct: [0xea7bd6bb,0x63418731,0xaeac790f,0xe42d61e8] },
  6382. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfc000000],
  6383. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6384. ct: [0xe74a4c99,0x9b4c064e,0x48bb1e41,0x3f51e5ea] },
  6385. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfe000000],
  6386. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6387. ct: [0xba9ebefd,0xb4ccf30f,0x296cecb3,0xbc1943e8] },
  6388. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff000000],
  6389. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6390. ct: [0x3194367a,0x4898c502,0xc13bb747,0x8640a72d] },
  6391. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xff800000],
  6392. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6393. ct: [0xda797713,0x263d6f33,0xa5478a65,0xef60d412] },
  6394. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffc00000],
  6395. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6396. ct: [0xd1ac39bb,0x1ef86b9c,0x1344f214,0x679aa376] },
  6397. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffe00000],
  6398. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6399. ct: [0x2fdea9e6,0x50532be5,0xbc0e7325,0x337fd363] },
  6400. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff00000],
  6401. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6402. ct: [0xd3a204db,0xd9c2af15,0x8b6ca67a,0x5156ce4a] },
  6403. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfff80000],
  6404. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6405. ct: [0x3a0a0e75,0xa8da3673,0x5aee6684,0xd965a778] },
  6406. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffc0000],
  6407. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6408. ct: [0x52fc3e62,0x0492ea99,0x641ea168,0xda5b6d52] },
  6409. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffe0000],
  6410. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6411. ct: [0xd2e0c7f1,0x5b477246,0x7d2cfc87,0x3000b2ca] },
  6412. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff0000],
  6413. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6414. ct: [0x56353113,0x5e0c4d70,0xa38f8bdb,0x190ba04e] },
  6415. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffff8000],
  6416. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6417. ct: [0xa8a39a0f,0x5663f4c0,0xfe5f2d3c,0xafff421a] },
  6418. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffc000],
  6419. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6420. ct: [0xd94b5e90,0xdb354c1e,0x42f61fab,0xe167b2c0] },
  6421. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffe000],
  6422. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6423. ct: [0x50e6d3c9,0xb6698a7c,0xd276f96b,0x1473f35a] },
  6424. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff000],
  6425. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6426. ct: [0x9338f08e,0x0ebee969,0x05d8f2e8,0x25208f43] },
  6427. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffff800],
  6428. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6429. ct: [0x8b378c86,0x672aa54a,0x3a266ba1,0x9d2580ca] },
  6430. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffc00],
  6431. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6432. ct: [0xcca7c308,0x6f5f9511,0xb31233da,0x7cab9160] },
  6433. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffe00],
  6434. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6435. ct: [0x5b40ff4e,0xc9be536b,0xa23035fa,0x4f06064c] },
  6436. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff00],
  6437. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6438. ct: [0x60eb5af8,0x416b2571,0x49372194,0xe8b88749] },
  6439. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffff80],
  6440. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6441. ct: [0x2f005a8a,0xed8a361c,0x92e440c1,0x5520cbd1] },
  6442. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffc0],
  6443. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6444. ct: [0x7b036276,0x11678a99,0x77175788,0x07a800e2] },
  6445. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffe0],
  6446. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6447. ct: [0xcf78618f,0x74f6f369,0x6e0a4779,0xb90b5a77] },
  6448. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff0],
  6449. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6450. ct: [0x03720371,0xa04962ea,0xea0a852e,0x69972858] },
  6451. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffff8],
  6452. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6453. ct: [0x1f8a8133,0xaa8ccf70,0xe2bd3285,0x831ca6b7] },
  6454. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffc],
  6455. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6456. ct: [0x27936bd2,0x7fb1468f,0xc8b48bc4,0x83321725] },
  6457. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xfffffffe],
  6458. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6459. ct: [0xb07d4f3e,0x2cd2ef2e,0xb5459807,0x54dfea0f] },
  6460. { key: [0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff,0xffffffff],
  6461. pt: [0x00000000,0x00000000,0x00000000,0x00000000],
  6462. ct: [0x4bf85f1b,0x5d54adbc,0x307b0a04,0x8389adcb] }
  6463. ];
  6464. var _sunSpiderStartDate = new Date();
  6465. new sjcl.test.TestCase("AES official known-answer tests", function (cb) {
  6466. if (!sjcl.cipher.aes) {
  6467. this.unimplemented();
  6468. cb && cb();
  6469. return;
  6470. }
  6471. var i, kat = sjcl.test.vector.aes, tv, len, aes;
  6472. //XXX add more vectors instead of looping
  6473. for (var index = 0; index < 8; index++) {
  6474. for (i=0; i<kat.length; i++) {
  6475. tv = kat[i];
  6476. len = 32 * tv.key.length;
  6477. aes = new sjcl.cipher.aes(tv.key);
  6478. this.require(sjcl.bitArray.equal(aes.encrypt(tv.pt), tv.ct), "encrypt "+len+" #"+i);
  6479. this.require(sjcl.bitArray.equal(aes.decrypt(tv.ct), tv.pt), "decrypt "+len+" #"+i);
  6480. }
  6481. }
  6482. cb && cb();
  6483. });
  6484. sjcl.test.run();
  6485. var _sunSpiderInterval = new Date() - _sunSpiderStartDate;
  6486. WScript.Echo("### TIME:", _sunSpiderInterval, "ms");